From 936bfa8cd75b4f0db84816bc6f0bf265d2d43519 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 4 Aug 2025 16:53:16 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 4 ++-- .../com/increase/api/models/achtransfers/AchTransfer.kt | 9 +++++++++ .../api/models/achtransfers/AchTransferCreateParams.kt | 9 +++++++++ 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index 00b0b5aa0..7168a74e1 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 202 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-5afe14a5606cebef2ccc6c4781d566b43509e01513e8e02e41adbdeaf3275f48.yml -openapi_spec_hash: 56857e37c0c6131096bf519d91ef76d2 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-aceb2cce1f9a46b1059a04de979b4c40210190639a4c264944b4402042168804.yml +openapi_spec_hash: 5b4ea7615676e742cea44d107b8038ca config_hash: a185e9a72778cc4658ea73fb3a7f1354 diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransfer.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransfer.kt index 99bbdfc57..04de3b597 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransfer.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransfer.kt @@ -4898,6 +4898,9 @@ private constructor( /** A savings account. */ @JvmField val SAVINGS = of("savings") + /** A bank's general ledger. Uncommon. */ + @JvmField val GENERAL_LEDGER = of("general_ledger") + @JvmStatic fun of(value: String) = Funding(JsonField.of(value)) } @@ -4907,6 +4910,8 @@ private constructor( CHECKING, /** A savings account. */ SAVINGS, + /** A bank's general ledger. Uncommon. */ + GENERAL_LEDGER, } /** @@ -4923,6 +4928,8 @@ private constructor( CHECKING, /** A savings account. */ SAVINGS, + /** A bank's general ledger. Uncommon. */ + GENERAL_LEDGER, /** An enum member indicating that [Funding] was instantiated with an unknown value. */ _UNKNOWN, } @@ -4938,6 +4945,7 @@ private constructor( when (this) { CHECKING -> Value.CHECKING SAVINGS -> Value.SAVINGS + GENERAL_LEDGER -> Value.GENERAL_LEDGER else -> Value._UNKNOWN } @@ -4954,6 +4962,7 @@ private constructor( when (this) { CHECKING -> Known.CHECKING SAVINGS -> Known.SAVINGS + GENERAL_LEDGER -> Known.GENERAL_LEDGER else -> throw IncreaseInvalidDataException("Unknown Funding: $value") } diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferCreateParams.kt index 57a17eb43..d74d31641 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferCreateParams.kt @@ -3193,6 +3193,9 @@ private constructor( /** A savings account. */ @JvmField val SAVINGS = of("savings") + /** A bank's general ledger. Uncommon. */ + @JvmField val GENERAL_LEDGER = of("general_ledger") + @JvmStatic fun of(value: String) = Funding(JsonField.of(value)) } @@ -3202,6 +3205,8 @@ private constructor( CHECKING, /** A savings account. */ SAVINGS, + /** A bank's general ledger. Uncommon. */ + GENERAL_LEDGER, } /** @@ -3218,6 +3223,8 @@ private constructor( CHECKING, /** A savings account. */ SAVINGS, + /** A bank's general ledger. Uncommon. */ + GENERAL_LEDGER, /** An enum member indicating that [Funding] was instantiated with an unknown value. */ _UNKNOWN, } @@ -3233,6 +3240,7 @@ private constructor( when (this) { CHECKING -> Value.CHECKING SAVINGS -> Value.SAVINGS + GENERAL_LEDGER -> Value.GENERAL_LEDGER else -> Value._UNKNOWN } @@ -3249,6 +3257,7 @@ private constructor( when (this) { CHECKING -> Known.CHECKING SAVINGS -> Known.SAVINGS + GENERAL_LEDGER -> Known.GENERAL_LEDGER else -> throw IncreaseInvalidDataException("Unknown Funding: $value") } From 314182acc84a4bd5d9389798f3fde90cfbd0b568 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 4 Aug 2025 16:53:43 +0000 Subject: [PATCH 2/2] release: 0.272.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 a5928db68..5dc618705 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.271.0" + ".": "0.272.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 94439d71e..5bbc27836 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.272.0 (2025-08-04) + +Full Changelog: [v0.271.0...v0.272.0](https://github.com/Increase/increase-java/compare/v0.271.0...v0.272.0) + +### Features + +* **api:** api update ([936bfa8](https://github.com/Increase/increase-java/commit/936bfa8cd75b4f0db84816bc6f0bf265d2d43519)) + ## 0.271.0 (2025-08-02) Full Changelog: [v0.270.0...v0.271.0](https://github.com/Increase/increase-java/compare/v0.270.0...v0.271.0) diff --git a/README.md b/README.md index fcaf602b6..5ecb453fa 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.271.0) -[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.271.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.271.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.272.0) +[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.272.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.272.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.271.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.272.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.271.0") +implementation("com.increase.api:increase-java:0.272.0") ``` ### Maven @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.271.0") com.increase.api increase-java - 0.271.0 + 0.272.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index 848829797..34ff363bc 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "com.increase.api" - version = "0.271.0" // x-release-please-version + version = "0.272.0" // x-release-please-version } subprojects {