Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.2.0"
".": "1.3.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 116
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-d4db2933d3d6b8c855e3351dcce658777ec9a413eb78f176b2e63b1e99fddf68.yml
openapi_spec_hash: 858adc7f2e0c8c631ef733dfd8f9ea0a
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-0db984d367f9ae04249fb6c72789b0a38ef1785d156b438fe03290fa4e262a7d.yml
openapi_spec_hash: c901c8b4fc2b0399a33b1346f8521850
config_hash: 3c3524be9607afb24d2139ce26ce5389
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.3.0 (2025-07-08)

Full Changelog: [v1.2.0...v1.3.0](https://github.com/orbcorp/orb-java/compare/v1.2.0...v1.3.0)

### Features

* **api:** api update ([a00c440](https://github.com/orbcorp/orb-java/commit/a00c44048af7b073e3ec72ea61239f57aa46c291))

## 1.2.0 (2025-07-04)

Full Changelog: [v1.1.0...v1.2.0](https://github.com/orbcorp/orb-java/compare/v1.1.0...v1.2.0)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!-- x-release-please-start-version -->

[![Maven Central](https://img.shields.io/maven-central/v/com.withorb.api/orb-java)](https://central.sonatype.com/artifact/com.withorb.api/orb-java/1.2.0)
[![Maven Central](https://img.shields.io/maven-central/v/com.withorb.api/orb-java)](https://central.sonatype.com/artifact/com.withorb.api/orb-java/1.3.0)

<!-- x-release-please-end -->

Expand All @@ -19,7 +19,7 @@ The REST API documentation can be found on [docs.withorb.com](https://docs.witho
### Gradle

```kotlin
implementation("com.withorb.api:orb-java:1.2.0")
implementation("com.withorb.api:orb-java:1.3.0")
```

### Maven
Expand All @@ -28,7 +28,7 @@ implementation("com.withorb.api:orb-java:1.2.0")
<dependency>
<groupId>com.withorb.api</groupId>
<artifactId>orb-java</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
allprojects {
group = "com.withorb.api"
version = "1.2.0" // x-release-please-version
version = "1.3.0" // x-release-please-version
}

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
package com.withorb.api.models

import com.withorb.api.core.JsonValue
import java.time.LocalDate
import java.time.OffsetDateTime
import org.assertj.core.api.Assertions.assertThat
import org.junit.jupiter.api.Test
Expand All @@ -26,6 +27,7 @@ internal class CustomerCreditLedgerCreateEntryByExternalIdParamsTest {
.builder()
.autoCollection(true)
.netTerms(0L)
.invoiceDate(LocalDate.parse("2019-12-27"))
.memo("memo")
.requireSuccessfulPayment(true)
.build()
Expand Down Expand Up @@ -73,6 +75,7 @@ internal class CustomerCreditLedgerCreateEntryByExternalIdParamsTest {
.builder()
.autoCollection(true)
.netTerms(0L)
.invoiceDate(LocalDate.parse("2019-12-27"))
.memo("memo")
.requireSuccessfulPayment(true)
.build()
Expand Down Expand Up @@ -106,6 +109,7 @@ internal class CustomerCreditLedgerCreateEntryByExternalIdParamsTest {
.builder()
.autoCollection(true)
.netTerms(0L)
.invoiceDate(LocalDate.parse("2019-12-27"))
.memo("memo")
.requireSuccessfulPayment(true)
.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
package com.withorb.api.models

import com.withorb.api.core.JsonValue
import java.time.LocalDate
import java.time.OffsetDateTime
import org.assertj.core.api.Assertions.assertThat
import org.junit.jupiter.api.Test
Expand All @@ -25,6 +26,7 @@ internal class CustomerCreditLedgerCreateEntryParamsTest {
.builder()
.autoCollection(true)
.netTerms(0L)
.invoiceDate(LocalDate.parse("2019-12-27"))
.memo("memo")
.requireSuccessfulPayment(true)
.build()
Expand Down Expand Up @@ -70,6 +72,7 @@ internal class CustomerCreditLedgerCreateEntryParamsTest {
.builder()
.autoCollection(true)
.netTerms(0L)
.invoiceDate(LocalDate.parse("2019-12-27"))
.memo("memo")
.requireSuccessfulPayment(true)
.build()
Expand Down Expand Up @@ -100,6 +103,7 @@ internal class CustomerCreditLedgerCreateEntryParamsTest {
.builder()
.autoCollection(true)
.netTerms(0L)
.invoiceDate(LocalDate.parse("2019-12-27"))
.memo("memo")
.requireSuccessfulPayment(true)
.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import com.withorb.api.client.okhttp.OrbOkHttpClientAsync
import com.withorb.api.core.JsonValue
import com.withorb.api.models.CustomerCreditLedgerCreateEntryByExternalIdParams
import com.withorb.api.models.CustomerCreditLedgerCreateEntryParams
import java.time.LocalDate
import java.time.OffsetDateTime
import org.junit.jupiter.api.Test
import org.junit.jupiter.api.extension.ExtendWith
Expand Down Expand Up @@ -54,6 +55,7 @@ internal class LedgerServiceAsyncTest {
.builder()
.autoCollection(true)
.netTerms(0L)
.invoiceDate(LocalDate.parse("2019-12-27"))
.memo("memo")
.requireSuccessfulPayment(true)
.build()
Expand Down Expand Up @@ -100,6 +102,7 @@ internal class LedgerServiceAsyncTest {
.builder()
.autoCollection(true)
.netTerms(0L)
.invoiceDate(LocalDate.parse("2019-12-27"))
.memo("memo")
.requireSuccessfulPayment(true)
.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import com.withorb.api.client.okhttp.OrbOkHttpClient
import com.withorb.api.core.JsonValue
import com.withorb.api.models.CustomerCreditLedgerCreateEntryByExternalIdParams
import com.withorb.api.models.CustomerCreditLedgerCreateEntryParams
import java.time.LocalDate
import java.time.OffsetDateTime
import org.junit.jupiter.api.Test
import org.junit.jupiter.api.extension.ExtendWith
Expand Down Expand Up @@ -53,6 +54,7 @@ internal class LedgerServiceTest {
.builder()
.autoCollection(true)
.netTerms(0L)
.invoiceDate(LocalDate.parse("2019-12-27"))
.memo("memo")
.requireSuccessfulPayment(true)
.build()
Expand Down Expand Up @@ -98,6 +100,7 @@ internal class LedgerServiceTest {
.builder()
.autoCollection(true)
.netTerms(0L)
.invoiceDate(LocalDate.parse("2019-12-27"))
.memo("memo")
.requireSuccessfulPayment(true)
.build()
Expand Down
Loading