From d03a7ce3285f6ab41896c14b015d9a0df1de190c Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 30 Apr 2026 19:08:35 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 6 ++--- .../com/increase/api/client/IncreaseClient.kt | 8 +++--- .../api/client/IncreaseClientAsync.kt | 8 +++--- .../api/client/IncreaseClientAsyncImpl.kt | 26 +++++++++---------- .../increase/api/client/IncreaseClientImpl.kt | 26 +++++++++---------- .../api/proguard/ProGuardCompatibilityTest.kt | 2 +- 6 files changed, 38 insertions(+), 38 deletions(-) diff --git a/.stats.yml b/.stats.yml index 745aaa818..074cbe61a 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 237 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase/increase-5745b1b899954b526cc89e2e9403fae739a1357b82914847896497a02000a579.yml -openapi_spec_hash: ec9d610488410e9962a64139a5756d34 -config_hash: 9dd89544e7c0403ccb0e0827de6a9cbf +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase/increase-bd2f5c49181098955f0dbdee1511e28d4a8b9d2a16433f747defd59430bb961f.yml +openapi_spec_hash: 206afcc5ec5f6294d1f185ee808d675c +config_hash: b4f1725275c973bb61f07d1bdc2b71d5 diff --git a/increase-java-core/src/main/kotlin/com/increase/api/client/IncreaseClient.kt b/increase-java-core/src/main/kotlin/com/increase/api/client/IncreaseClient.kt index 4f752c65f..319f50649 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/client/IncreaseClient.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/client/IncreaseClient.kt @@ -128,10 +128,10 @@ interface IncreaseClient { fun achTransfers(): AchTransferService - fun achPrenotifications(): AchPrenotificationService - fun inboundAchTransfers(): InboundAchTransferService + fun achPrenotifications(): AchPrenotificationService + fun wireTransfers(): WireTransferService fun inboundWireTransfers(): InboundWireTransferService @@ -265,10 +265,10 @@ interface IncreaseClient { fun achTransfers(): AchTransferService.WithRawResponse - fun achPrenotifications(): AchPrenotificationService.WithRawResponse - fun inboundAchTransfers(): InboundAchTransferService.WithRawResponse + fun achPrenotifications(): AchPrenotificationService.WithRawResponse + fun wireTransfers(): WireTransferService.WithRawResponse fun inboundWireTransfers(): InboundWireTransferService.WithRawResponse diff --git a/increase-java-core/src/main/kotlin/com/increase/api/client/IncreaseClientAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/client/IncreaseClientAsync.kt index 7bd3c733c..4458e4a1c 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/client/IncreaseClientAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/client/IncreaseClientAsync.kt @@ -128,10 +128,10 @@ interface IncreaseClientAsync { fun achTransfers(): AchTransferServiceAsync - fun achPrenotifications(): AchPrenotificationServiceAsync - fun inboundAchTransfers(): InboundAchTransferServiceAsync + fun achPrenotifications(): AchPrenotificationServiceAsync + fun wireTransfers(): WireTransferServiceAsync fun inboundWireTransfers(): InboundWireTransferServiceAsync @@ -269,10 +269,10 @@ interface IncreaseClientAsync { fun achTransfers(): AchTransferServiceAsync.WithRawResponse - fun achPrenotifications(): AchPrenotificationServiceAsync.WithRawResponse - fun inboundAchTransfers(): InboundAchTransferServiceAsync.WithRawResponse + fun achPrenotifications(): AchPrenotificationServiceAsync.WithRawResponse + fun wireTransfers(): WireTransferServiceAsync.WithRawResponse fun inboundWireTransfers(): InboundWireTransferServiceAsync.WithRawResponse diff --git a/increase-java-core/src/main/kotlin/com/increase/api/client/IncreaseClientAsyncImpl.kt b/increase-java-core/src/main/kotlin/com/increase/api/client/IncreaseClientAsyncImpl.kt index e0396b387..57c76a9ab 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/client/IncreaseClientAsyncImpl.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/client/IncreaseClientAsyncImpl.kt @@ -195,14 +195,14 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa AchTransferServiceAsyncImpl(clientOptionsWithUserAgent) } - private val achPrenotifications: AchPrenotificationServiceAsync by lazy { - AchPrenotificationServiceAsyncImpl(clientOptionsWithUserAgent) - } - private val inboundAchTransfers: InboundAchTransferServiceAsync by lazy { InboundAchTransferServiceAsyncImpl(clientOptionsWithUserAgent) } + private val achPrenotifications: AchPrenotificationServiceAsync by lazy { + AchPrenotificationServiceAsyncImpl(clientOptionsWithUserAgent) + } + private val wireTransfers: WireTransferServiceAsync by lazy { WireTransferServiceAsyncImpl(clientOptionsWithUserAgent) } @@ -400,10 +400,10 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa override fun achTransfers(): AchTransferServiceAsync = achTransfers - override fun achPrenotifications(): AchPrenotificationServiceAsync = achPrenotifications - override fun inboundAchTransfers(): InboundAchTransferServiceAsync = inboundAchTransfers + override fun achPrenotifications(): AchPrenotificationServiceAsync = achPrenotifications + override fun wireTransfers(): WireTransferServiceAsync = wireTransfers override fun inboundWireTransfers(): InboundWireTransferServiceAsync = inboundWireTransfers @@ -556,14 +556,14 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa AchTransferServiceAsyncImpl.WithRawResponseImpl(clientOptions) } - private val achPrenotifications: AchPrenotificationServiceAsync.WithRawResponse by lazy { - AchPrenotificationServiceAsyncImpl.WithRawResponseImpl(clientOptions) - } - private val inboundAchTransfers: InboundAchTransferServiceAsync.WithRawResponse by lazy { InboundAchTransferServiceAsyncImpl.WithRawResponseImpl(clientOptions) } + private val achPrenotifications: AchPrenotificationServiceAsync.WithRawResponse by lazy { + AchPrenotificationServiceAsyncImpl.WithRawResponseImpl(clientOptions) + } + private val wireTransfers: WireTransferServiceAsync.WithRawResponse by lazy { WireTransferServiceAsyncImpl.WithRawResponseImpl(clientOptions) } @@ -775,12 +775,12 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa override fun achTransfers(): AchTransferServiceAsync.WithRawResponse = achTransfers - override fun achPrenotifications(): AchPrenotificationServiceAsync.WithRawResponse = - achPrenotifications - override fun inboundAchTransfers(): InboundAchTransferServiceAsync.WithRawResponse = inboundAchTransfers + override fun achPrenotifications(): AchPrenotificationServiceAsync.WithRawResponse = + achPrenotifications + override fun wireTransfers(): WireTransferServiceAsync.WithRawResponse = wireTransfers override fun inboundWireTransfers(): InboundWireTransferServiceAsync.WithRawResponse = diff --git a/increase-java-core/src/main/kotlin/com/increase/api/client/IncreaseClientImpl.kt b/increase-java-core/src/main/kotlin/com/increase/api/client/IncreaseClientImpl.kt index b7abfb3bb..d94c87b21 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/client/IncreaseClientImpl.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/client/IncreaseClientImpl.kt @@ -193,14 +193,14 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli AchTransferServiceImpl(clientOptionsWithUserAgent) } - private val achPrenotifications: AchPrenotificationService by lazy { - AchPrenotificationServiceImpl(clientOptionsWithUserAgent) - } - private val inboundAchTransfers: InboundAchTransferService by lazy { InboundAchTransferServiceImpl(clientOptionsWithUserAgent) } + private val achPrenotifications: AchPrenotificationService by lazy { + AchPrenotificationServiceImpl(clientOptionsWithUserAgent) + } + private val wireTransfers: WireTransferService by lazy { WireTransferServiceImpl(clientOptionsWithUserAgent) } @@ -386,10 +386,10 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli override fun achTransfers(): AchTransferService = achTransfers - override fun achPrenotifications(): AchPrenotificationService = achPrenotifications - override fun inboundAchTransfers(): InboundAchTransferService = inboundAchTransfers + override fun achPrenotifications(): AchPrenotificationService = achPrenotifications + override fun wireTransfers(): WireTransferService = wireTransfers override fun inboundWireTransfers(): InboundWireTransferService = inboundWireTransfers @@ -540,14 +540,14 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli AchTransferServiceImpl.WithRawResponseImpl(clientOptions) } - private val achPrenotifications: AchPrenotificationService.WithRawResponse by lazy { - AchPrenotificationServiceImpl.WithRawResponseImpl(clientOptions) - } - private val inboundAchTransfers: InboundAchTransferService.WithRawResponse by lazy { InboundAchTransferServiceImpl.WithRawResponseImpl(clientOptions) } + private val achPrenotifications: AchPrenotificationService.WithRawResponse by lazy { + AchPrenotificationServiceImpl.WithRawResponseImpl(clientOptions) + } + private val wireTransfers: WireTransferService.WithRawResponse by lazy { WireTransferServiceImpl.WithRawResponseImpl(clientOptions) } @@ -756,12 +756,12 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli override fun achTransfers(): AchTransferService.WithRawResponse = achTransfers - override fun achPrenotifications(): AchPrenotificationService.WithRawResponse = - achPrenotifications - override fun inboundAchTransfers(): InboundAchTransferService.WithRawResponse = inboundAchTransfers + override fun achPrenotifications(): AchPrenotificationService.WithRawResponse = + achPrenotifications + override fun wireTransfers(): WireTransferService.WithRawResponse = wireTransfers override fun inboundWireTransfers(): InboundWireTransferService.WithRawResponse = diff --git a/increase-java-proguard-test/src/test/kotlin/com/increase/api/proguard/ProGuardCompatibilityTest.kt b/increase-java-proguard-test/src/test/kotlin/com/increase/api/proguard/ProGuardCompatibilityTest.kt index b948afa10..d6e16d692 100644 --- a/increase-java-proguard-test/src/test/kotlin/com/increase/api/proguard/ProGuardCompatibilityTest.kt +++ b/increase-java-proguard-test/src/test/kotlin/com/increase/api/proguard/ProGuardCompatibilityTest.kt @@ -64,8 +64,8 @@ internal class ProGuardCompatibilityTest { assertThat(client.pendingTransactions()).isNotNull() assertThat(client.declinedTransactions()).isNotNull() assertThat(client.achTransfers()).isNotNull() - assertThat(client.achPrenotifications()).isNotNull() assertThat(client.inboundAchTransfers()).isNotNull() + assertThat(client.achPrenotifications()).isNotNull() assertThat(client.wireTransfers()).isNotNull() assertThat(client.inboundWireTransfers()).isNotNull() assertThat(client.wireDrawdownRequests()).isNotNull() From f0d708666cab0591da3607e9ac9a3779dbcce1cd Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 30 Apr 2026 19:09:21 +0000 Subject: [PATCH 2/2] release: 0.532.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 51e1d1f34..dac2a9006 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.531.0" + ".": "0.532.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d7c9d6ed..84ff9f63e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.532.0 (2026-04-30) + +Full Changelog: [v0.531.0...v0.532.0](https://github.com/Increase/increase-java/compare/v0.531.0...v0.532.0) + +### Features + +* **api:** api update ([d03a7ce](https://github.com/Increase/increase-java/commit/d03a7ce3285f6ab41896c14b015d9a0df1de190c)) + ## 0.531.0 (2026-04-30) Full Changelog: [v0.530.0...v0.531.0](https://github.com/Increase/increase-java/compare/v0.530.0...v0.531.0) diff --git a/README.md b/README.md index a72506465..db4c7a1fe 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.531.0) -[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.531.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.531.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.532.0) +[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.532.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.532.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.531.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.532.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.531.0") +implementation("com.increase.api:increase-java:0.532.0") ``` ### Maven @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.531.0") com.increase.api increase-java - 0.531.0 + 0.532.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index 04e930a83..78ce82b12 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "com.increase.api" - version = "0.531.0" // x-release-please-version + version = "0.532.0" // x-release-please-version } subprojects {