From 93e1351525757bfd83381934bb85e08a69ccb3af Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 16 Dec 2025 02:50:59 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 4 ++-- .../increase/api/models/transactions/Transaction.kt | 12 ++++++------ .../api/models/wiretransfers/WireTransfer.kt | 11 +++++------ 3 files changed, 13 insertions(+), 14 deletions(-) diff --git a/.stats.yml b/.stats.yml index 01dd0f602..c34fe88d8 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 230 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-86f5f21622005ed0d2488066a1194b09fb6add92314eb797edc1ced57d7e0435.yml -openapi_spec_hash: e2e09186517e41d2332a8b59cff9b6e7 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-01b0246dcddc851a762ec864d0a728fb63f4020fe94039d2403518b22f3af120.yml +openapi_spec_hash: 773dfed2baf70342616421533b9b5a56 config_hash: ff2eb5f192b4de36611b37b27961c2d8 diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/Transaction.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/Transaction.kt index a54727a30..536001295 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/Transaction.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/Transaction.kt @@ -44009,9 +44009,9 @@ private constructor( ) /** - * A code provided by the sending bank giving a reason for the reversal. It will - * generally be one of the codes defined in the ISO20022 `ExternalReturnReason1Code` - * code set, but this is not enforced by the network. + * A code provided by the sending bank giving a reason for the reversal. The common + * return reason codes are + * [documented here](/documentation/wire-reversals#reversal-reason-codes). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. * if the server responded with an unexpected value). @@ -44443,9 +44443,9 @@ private constructor( } /** - * A code provided by the sending bank giving a reason for the reversal. It will - * generally be one of the codes defined in the ISO20022 `ExternalReturnReason1Code` - * code set, but this is not enforced by the network. + * A code provided by the sending bank giving a reason for the reversal. The common + * return reason codes are + * [documented here](/documentation/wire-reversals#reversal-reason-codes). */ fun returnReasonCode(returnReasonCode: String?) = returnReasonCode(JsonField.ofNullable(returnReasonCode)) diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransfer.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransfer.kt index 7168677ae..0bbf33214 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransfer.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransfer.kt @@ -5131,9 +5131,8 @@ private constructor( returnReasonAdditionalInformation.getOptional("return_reason_additional_information") /** - * A code provided by the sending bank giving a reason for the reversal. It will generally - * be one of the codes defined in the ISO20022 `ExternalReturnReason1Code` code set, but - * this is not enforced by the network. + * A code provided by the sending bank giving a reason for the reversal. The common return + * reason codes are [documented here](/documentation/wire-reversals#reversal-reason-codes). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if * the server responded with an unexpected value). @@ -5553,9 +5552,9 @@ private constructor( ) = apply { this.returnReasonAdditionalInformation = returnReasonAdditionalInformation } /** - * A code provided by the sending bank giving a reason for the reversal. It will - * generally be one of the codes defined in the ISO20022 `ExternalReturnReason1Code` - * code set, but this is not enforced by the network. + * A code provided by the sending bank giving a reason for the reversal. The common + * return reason codes are + * [documented here](/documentation/wire-reversals#reversal-reason-codes). */ fun returnReasonCode(returnReasonCode: String?) = returnReasonCode(JsonField.ofNullable(returnReasonCode)) From 4e9ee212229d95f131a230db05dc41b2f79d5069 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 16 Dec 2025 02:51:25 +0000 Subject: [PATCH 2/2] release: 0.383.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 10 +++++----- build.gradle.kts | 2 +- 4 files changed, 15 insertions(+), 7 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3c0bbe3e9..7fdabc0be 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.382.0" + ".": "0.383.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c6e4dbd1..1284b14c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.383.0 (2025-12-16) + +Full Changelog: [v0.382.0...v0.383.0](https://github.com/Increase/increase-java/compare/v0.382.0...v0.383.0) + +### Features + +* **api:** api update ([93e1351](https://github.com/Increase/increase-java/commit/93e1351525757bfd83381934bb85e08a69ccb3af)) + ## 0.382.0 (2025-12-15) Full Changelog: [v0.381.0...v0.382.0](https://github.com/Increase/increase-java/compare/v0.381.0...v0.382.0) diff --git a/README.md b/README.md index 2464d5ff7..7b983d2dd 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ -[![Maven Central](https://img.shields.io/maven-central/v/com.increase.api/increase-java)](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.382.0) -[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.382.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.382.0) +[![Maven Central](https://img.shields.io/maven-central/v/com.increase.api/increase-java)](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.383.0) +[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.383.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.383.0) @@ -13,7 +13,7 @@ The Increase Java SDK is similar to the Increase Kotlin SDK but with minor diffe -The REST API documentation can be found on [increase.com](https://increase.com/documentation). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.increase.api/increase-java/0.382.0). +The REST API documentation can be found on [increase.com](https://increase.com/documentation). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.increase.api/increase-java/0.383.0). @@ -24,7 +24,7 @@ The REST API documentation can be found on [increase.com](https://increase.com/d ### Gradle ```kotlin -implementation("com.increase.api:increase-java:0.382.0") +implementation("com.increase.api:increase-java:0.383.0") ``` ### Maven @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.382.0") com.increase.api increase-java - 0.382.0 + 0.383.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index cb467379c..fe55d2139 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "com.increase.api" - version = "0.382.0" // x-release-please-version + version = "0.383.0" // x-release-please-version } subprojects {