From d316ac1135c6074bf190e9255644ba130dd9f1af Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 26 Jan 2026 19:53:06 +0000 Subject: [PATCH 1/3] codegen metadata --- .stats.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index aad7cba8f..79423d31f 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 232 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-1a3093fde00ba57a88035a89fca1627e3343e5c6cba2854ee6ebf8bac9640489.yml -openapi_spec_hash: 547e0e84b0d09880a8305ddac57cc44a +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-8c14214fe620b72e4667dc96bab3be38311397f63ee477fed5138ba3a61d101b.yml +openapi_spec_hash: 0bc956c12e8c8bb14c1002fb4618a214 config_hash: 27e44ed36b9c5617b580ead7231a594a From b42510cd9682c12470db13d16e55f652bc5404a2 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 26 Jan 2026 23:58:40 +0000 Subject: [PATCH 2/3] feat(api): api update --- .stats.yml | 4 ++-- .../models/inboundcheckdeposits/InboundCheckDeposit.kt | 9 +++++++++ .../InboundCheckDepositReturnParams.kt | 9 +++++++++ 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index 79423d31f..88866e5d5 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 232 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-8c14214fe620b72e4667dc96bab3be38311397f63ee477fed5138ba3a61d101b.yml -openapi_spec_hash: 0bc956c12e8c8bb14c1002fb4618a214 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-742384c2f763b7fb4e6534ac57539f4f1854d9bd126ea173f3caeffdf1642462.yml +openapi_spec_hash: 49897b127960069cd3fe917475ad4b5b config_hash: 27e44ed36b9c5617b580ead7231a594a diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDeposit.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDeposit.kt index 214a5c7e4..22dc23034 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDeposit.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDeposit.kt @@ -1937,6 +1937,9 @@ private constructor( /** The check was not endorsed by the payee. */ @JvmField val ENDORSEMENT_IRREGULAR = of("endorsement_irregular") + /** The maker of the check requested its return. */ + @JvmField val REFER_TO_MAKER = of("refer_to_maker") + @JvmStatic fun of(value: String) = Reason(JsonField.of(value)) } @@ -1952,6 +1955,8 @@ private constructor( ENDORSEMENT_MISSING, /** The check was not endorsed by the payee. */ ENDORSEMENT_IRREGULAR, + /** The maker of the check requested its return. */ + REFER_TO_MAKER, } /** @@ -1974,6 +1979,8 @@ private constructor( ENDORSEMENT_MISSING, /** The check was not endorsed by the payee. */ ENDORSEMENT_IRREGULAR, + /** The maker of the check requested its return. */ + REFER_TO_MAKER, /** * An enum member indicating that [Reason] was instantiated with an unknown value. */ @@ -1994,6 +2001,7 @@ private constructor( DUPLICATE_PRESENTMENT -> Value.DUPLICATE_PRESENTMENT ENDORSEMENT_MISSING -> Value.ENDORSEMENT_MISSING ENDORSEMENT_IRREGULAR -> Value.ENDORSEMENT_IRREGULAR + REFER_TO_MAKER -> Value.REFER_TO_MAKER else -> Value._UNKNOWN } @@ -2013,6 +2021,7 @@ private constructor( DUPLICATE_PRESENTMENT -> Known.DUPLICATE_PRESENTMENT ENDORSEMENT_MISSING -> Known.ENDORSEMENT_MISSING ENDORSEMENT_IRREGULAR -> Known.ENDORSEMENT_IRREGULAR + REFER_TO_MAKER -> Known.REFER_TO_MAKER else -> throw IncreaseInvalidDataException("Unknown Reason: $value") } diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositReturnParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositReturnParams.kt index 037d05e96..c2b7d3a96 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositReturnParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositReturnParams.kt @@ -457,6 +457,9 @@ private constructor( /** The check was not endorsed by the payee. */ @JvmField val ENDORSEMENT_IRREGULAR = of("endorsement_irregular") + /** The maker of the check requested its return. */ + @JvmField val REFER_TO_MAKER = of("refer_to_maker") + @JvmStatic fun of(value: String) = Reason(JsonField.of(value)) } @@ -472,6 +475,8 @@ private constructor( ENDORSEMENT_MISSING, /** The check was not endorsed by the payee. */ ENDORSEMENT_IRREGULAR, + /** The maker of the check requested its return. */ + REFER_TO_MAKER, } /** @@ -494,6 +499,8 @@ private constructor( ENDORSEMENT_MISSING, /** The check was not endorsed by the payee. */ ENDORSEMENT_IRREGULAR, + /** The maker of the check requested its return. */ + REFER_TO_MAKER, /** An enum member indicating that [Reason] was instantiated with an unknown value. */ _UNKNOWN, } @@ -512,6 +519,7 @@ private constructor( DUPLICATE_PRESENTMENT -> Value.DUPLICATE_PRESENTMENT ENDORSEMENT_MISSING -> Value.ENDORSEMENT_MISSING ENDORSEMENT_IRREGULAR -> Value.ENDORSEMENT_IRREGULAR + REFER_TO_MAKER -> Value.REFER_TO_MAKER else -> Value._UNKNOWN } @@ -531,6 +539,7 @@ private constructor( DUPLICATE_PRESENTMENT -> Known.DUPLICATE_PRESENTMENT ENDORSEMENT_MISSING -> Known.ENDORSEMENT_MISSING ENDORSEMENT_IRREGULAR -> Known.ENDORSEMENT_IRREGULAR + REFER_TO_MAKER -> Known.REFER_TO_MAKER else -> throw IncreaseInvalidDataException("Unknown Reason: $value") } From 2867a1dc32eb84b3f8ebfb7ae213c6a750bd0692 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 26 Jan 2026 23:59:06 +0000 Subject: [PATCH 3/3] release: 0.404.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 d484554e9..68b7001a1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.403.0" + ".": "0.404.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index c13668869..5027f93c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.404.0 (2026-01-26) + +Full Changelog: [v0.403.0...v0.404.0](https://github.com/Increase/increase-java/compare/v0.403.0...v0.404.0) + +### Features + +* **api:** api update ([b42510c](https://github.com/Increase/increase-java/commit/b42510cd9682c12470db13d16e55f652bc5404a2)) + ## 0.403.0 (2026-01-23) Full Changelog: [v0.402.0...v0.403.0](https://github.com/Increase/increase-java/compare/v0.402.0...v0.403.0) diff --git a/README.md b/README.md index a14218359..825d0730d 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.403.0) -[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.403.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.403.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.404.0) +[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.404.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.404.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.403.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.404.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.403.0") +implementation("com.increase.api:increase-java:0.404.0") ``` ### Maven @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.403.0") com.increase.api increase-java - 0.403.0 + 0.404.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index f777dacec..54279e58f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "com.increase.api" - version = "0.403.0" // x-release-please-version + version = "0.404.0" // x-release-please-version } subprojects {