From 805821268c75be80ef612710d4c7b445f48f7e91 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 4 Nov 2025 15:38:10 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 4 ++-- .../WireDrawdownRequest.kt | 18 +++++++++--------- .../WireDrawdownRequestListParams.kt | 18 +++++++++--------- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.stats.yml b/.stats.yml index fff512bc2..d73422845 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 228 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-e9e51b3c9b5c8d9e6e0267b62a12a00fedbce419b765192aa4e2470984192e1f.yml -openapi_spec_hash: 84bc91dd8b8a80edf447dddad15c23fc +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-776b1bee3036836b954fa0db1e6d0349a04f76799402089994a9147a05967c0e.yml +openapi_spec_hash: 185a637305e75b302860dce8d352f54f config_hash: eb2035151c7b49c2f12caf55469b8f9a diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequest.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequest.kt index fabdc58cc..b9c3167eb 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequest.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequest.kt @@ -1686,12 +1686,12 @@ private constructor( /** The drawdown request is queued to be submitted to Fedwire. */ @JvmField val PENDING_SUBMISSION = of("pending_submission") - /** The drawdown request has been sent and the recipient should respond in some way. */ - @JvmField val PENDING_RESPONSE = of("pending_response") - /** The drawdown request has been fulfilled by the recipient. */ @JvmField val FULFILLED = of("fulfilled") + /** The drawdown request has been sent and the recipient should respond in some way. */ + @JvmField val PENDING_RESPONSE = of("pending_response") + /** The drawdown request has been refused by the recipient. */ @JvmField val REFUSED = of("refused") @@ -1702,10 +1702,10 @@ private constructor( enum class Known { /** The drawdown request is queued to be submitted to Fedwire. */ PENDING_SUBMISSION, - /** The drawdown request has been sent and the recipient should respond in some way. */ - PENDING_RESPONSE, /** The drawdown request has been fulfilled by the recipient. */ FULFILLED, + /** The drawdown request has been sent and the recipient should respond in some way. */ + PENDING_RESPONSE, /** The drawdown request has been refused by the recipient. */ REFUSED, } @@ -1722,10 +1722,10 @@ private constructor( enum class Value { /** The drawdown request is queued to be submitted to Fedwire. */ PENDING_SUBMISSION, - /** The drawdown request has been sent and the recipient should respond in some way. */ - PENDING_RESPONSE, /** The drawdown request has been fulfilled by the recipient. */ FULFILLED, + /** The drawdown request has been sent and the recipient should respond in some way. */ + PENDING_RESPONSE, /** The drawdown request has been refused by the recipient. */ REFUSED, /** An enum member indicating that [Status] was instantiated with an unknown value. */ @@ -1742,8 +1742,8 @@ private constructor( fun value(): Value = when (this) { PENDING_SUBMISSION -> Value.PENDING_SUBMISSION - PENDING_RESPONSE -> Value.PENDING_RESPONSE FULFILLED -> Value.FULFILLED + PENDING_RESPONSE -> Value.PENDING_RESPONSE REFUSED -> Value.REFUSED else -> Value._UNKNOWN } @@ -1760,8 +1760,8 @@ private constructor( fun known(): Known = when (this) { PENDING_SUBMISSION -> Known.PENDING_SUBMISSION - PENDING_RESPONSE -> Known.PENDING_RESPONSE FULFILLED -> Known.FULFILLED + PENDING_RESPONSE -> Known.PENDING_RESPONSE REFUSED -> Known.REFUSED else -> throw IncreaseInvalidDataException("Unknown Status: $value") } diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListParams.kt index 49321da08..df59d577d 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListParams.kt @@ -375,14 +375,14 @@ private constructor( /** The drawdown request is queued to be submitted to Fedwire. */ @JvmField val PENDING_SUBMISSION = of("pending_submission") + /** The drawdown request has been fulfilled by the recipient. */ + @JvmField val FULFILLED = of("fulfilled") + /** * The drawdown request has been sent and the recipient should respond in some way. */ @JvmField val PENDING_RESPONSE = of("pending_response") - /** The drawdown request has been fulfilled by the recipient. */ - @JvmField val FULFILLED = of("fulfilled") - /** The drawdown request has been refused by the recipient. */ @JvmField val REFUSED = of("refused") @@ -393,12 +393,12 @@ private constructor( enum class Known { /** The drawdown request is queued to be submitted to Fedwire. */ PENDING_SUBMISSION, + /** The drawdown request has been fulfilled by the recipient. */ + FULFILLED, /** * The drawdown request has been sent and the recipient should respond in some way. */ PENDING_RESPONSE, - /** The drawdown request has been fulfilled by the recipient. */ - FULFILLED, /** The drawdown request has been refused by the recipient. */ REFUSED, } @@ -415,12 +415,12 @@ private constructor( enum class Value { /** The drawdown request is queued to be submitted to Fedwire. */ PENDING_SUBMISSION, + /** The drawdown request has been fulfilled by the recipient. */ + FULFILLED, /** * The drawdown request has been sent and the recipient should respond in some way. */ PENDING_RESPONSE, - /** The drawdown request has been fulfilled by the recipient. */ - FULFILLED, /** The drawdown request has been refused by the recipient. */ REFUSED, /** An enum member indicating that [In] was instantiated with an unknown value. */ @@ -437,8 +437,8 @@ private constructor( fun value(): Value = when (this) { PENDING_SUBMISSION -> Value.PENDING_SUBMISSION - PENDING_RESPONSE -> Value.PENDING_RESPONSE FULFILLED -> Value.FULFILLED + PENDING_RESPONSE -> Value.PENDING_RESPONSE REFUSED -> Value.REFUSED else -> Value._UNKNOWN } @@ -455,8 +455,8 @@ private constructor( fun known(): Known = when (this) { PENDING_SUBMISSION -> Known.PENDING_SUBMISSION - PENDING_RESPONSE -> Known.PENDING_RESPONSE FULFILLED -> Known.FULFILLED + PENDING_RESPONSE -> Known.PENDING_RESPONSE REFUSED -> Known.REFUSED else -> throw IncreaseInvalidDataException("Unknown In: $value") } From b621aba34c26ee91a28ab49c372b17ccb48b5fd0 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 4 Nov 2025 15:38:45 +0000 Subject: [PATCH 2/2] release: 0.349.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 1a931c1e0..18dbf0405 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.348.0" + ".": "0.349.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d84720d8..908437b6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.349.0 (2025-11-04) + +Full Changelog: [v0.348.0...v0.349.0](https://github.com/Increase/increase-java/compare/v0.348.0...v0.349.0) + +### Features + +* **api:** api update ([8058212](https://github.com/Increase/increase-java/commit/805821268c75be80ef612710d4c7b445f48f7e91)) + ## 0.348.0 (2025-10-31) Full Changelog: [v0.347.0...v0.348.0](https://github.com/Increase/increase-java/compare/v0.347.0...v0.348.0) diff --git a/README.md b/README.md index becda8379..b83397bc8 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.348.0) -[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.348.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.348.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.349.0) +[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.349.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.349.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.348.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.349.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.348.0") +implementation("com.increase.api:increase-java:0.349.0") ``` ### Maven @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.348.0") com.increase.api increase-java - 0.348.0 + 0.349.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index 2ef7968f5..67be31626 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "com.increase.api" - version = "0.348.0" // x-release-please-version + version = "0.349.0" // x-release-please-version } subprojects {