From 0791906452e6fb161b51751b0e2e191de4cf9cd4 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 5 Sep 2025 21:53:05 +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 | 24 ++++++++--------- .../services/async/SimulationServiceAsync.kt | 8 +++--- .../async/SimulationServiceAsyncImpl.kt | 26 +++++++++---------- .../services/blocking/SimulationService.kt | 8 +++--- .../blocking/SimulationServiceImpl.kt | 24 ++++++++--------- .../api/proguard/ProGuardCompatibilityTest.kt | 2 +- 10 files changed, 70 insertions(+), 70 deletions(-) diff --git a/.stats.yml b/.stats.yml index 602fdb7cc..11b34180d 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 217 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-6d1cfc3f93b6829318d0905c04d24008ab3576d5c00d8eb17c7d55fc34beef9e.yml -openapi_spec_hash: 12f331a1ebc9c7c8465a850736a8d8c6 -config_hash: 2a4a1945e6eefa24fa5b0590cf580fb4 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-e74540ca75fc4e7a0e28d2c41c53c6131dff74e1e3c1472601db19509bb77451.yml +openapi_spec_hash: 4030ac2965b556670d1b427ffc5c554b +config_hash: e1885b38eded054b77308a024c5d80cc 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 c7b07e157..4de8c0ea2 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 @@ -101,6 +101,8 @@ interface IncreaseClient { fun accountNumbers(): AccountNumberService + fun accountTransfers(): AccountTransferService + fun cards(): CardService fun cardPayments(): CardPaymentService @@ -123,8 +125,6 @@ interface IncreaseClient { fun declinedTransactions(): DeclinedTransactionService - fun accountTransfers(): AccountTransferService - fun achTransfers(): AchTransferService fun achPrenotifications(): AchPrenotificationService @@ -236,6 +236,8 @@ interface IncreaseClient { fun accountNumbers(): AccountNumberService.WithRawResponse + fun accountTransfers(): AccountTransferService.WithRawResponse + fun cards(): CardService.WithRawResponse fun cardPayments(): CardPaymentService.WithRawResponse @@ -258,8 +260,6 @@ interface IncreaseClient { fun declinedTransactions(): DeclinedTransactionService.WithRawResponse - fun accountTransfers(): AccountTransferService.WithRawResponse - fun achTransfers(): AchTransferService.WithRawResponse fun achPrenotifications(): AchPrenotificationService.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 8c7a92a9e..ac800b994 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 @@ -101,6 +101,8 @@ interface IncreaseClientAsync { fun accountNumbers(): AccountNumberServiceAsync + fun accountTransfers(): AccountTransferServiceAsync + fun cards(): CardServiceAsync fun cardPayments(): CardPaymentServiceAsync @@ -123,8 +125,6 @@ interface IncreaseClientAsync { fun declinedTransactions(): DeclinedTransactionServiceAsync - fun accountTransfers(): AccountTransferServiceAsync - fun achTransfers(): AchTransferServiceAsync fun achPrenotifications(): AchPrenotificationServiceAsync @@ -240,6 +240,8 @@ interface IncreaseClientAsync { fun accountNumbers(): AccountNumberServiceAsync.WithRawResponse + fun accountTransfers(): AccountTransferServiceAsync.WithRawResponse + fun cards(): CardServiceAsync.WithRawResponse fun cardPayments(): CardPaymentServiceAsync.WithRawResponse @@ -262,8 +264,6 @@ interface IncreaseClientAsync { fun declinedTransactions(): DeclinedTransactionServiceAsync.WithRawResponse - fun accountTransfers(): AccountTransferServiceAsync.WithRawResponse - fun achTransfers(): AchTransferServiceAsync.WithRawResponse fun achPrenotifications(): AchPrenotificationServiceAsync.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 24b0ae717..1adb82f42 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 @@ -143,6 +143,10 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa AccountNumberServiceAsyncImpl(clientOptionsWithUserAgent) } + private val accountTransfers: AccountTransferServiceAsync by lazy { + AccountTransferServiceAsyncImpl(clientOptionsWithUserAgent) + } + private val cards: CardServiceAsync by lazy { CardServiceAsyncImpl(clientOptionsWithUserAgent) } private val cardPayments: CardPaymentServiceAsync by lazy { @@ -185,10 +189,6 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa DeclinedTransactionServiceAsyncImpl(clientOptionsWithUserAgent) } - private val accountTransfers: AccountTransferServiceAsync by lazy { - AccountTransferServiceAsyncImpl(clientOptionsWithUserAgent) - } - private val achTransfers: AchTransferServiceAsync by lazy { AchTransferServiceAsyncImpl(clientOptionsWithUserAgent) } @@ -365,6 +365,8 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa override fun accountNumbers(): AccountNumberServiceAsync = accountNumbers + override fun accountTransfers(): AccountTransferServiceAsync = accountTransfers + override fun cards(): CardServiceAsync = cards override fun cardPayments(): CardPaymentServiceAsync = cardPayments @@ -388,8 +390,6 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa override fun declinedTransactions(): DeclinedTransactionServiceAsync = declinedTransactions - override fun accountTransfers(): AccountTransferServiceAsync = accountTransfers - override fun achTransfers(): AchTransferServiceAsync = achTransfers override fun achPrenotifications(): AchPrenotificationServiceAsync = achPrenotifications @@ -491,6 +491,10 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa AccountNumberServiceAsyncImpl.WithRawResponseImpl(clientOptions) } + private val accountTransfers: AccountTransferServiceAsync.WithRawResponse by lazy { + AccountTransferServiceAsyncImpl.WithRawResponseImpl(clientOptions) + } + private val cards: CardServiceAsync.WithRawResponse by lazy { CardServiceAsyncImpl.WithRawResponseImpl(clientOptions) } @@ -536,10 +540,6 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa DeclinedTransactionServiceAsyncImpl.WithRawResponseImpl(clientOptions) } - private val accountTransfers: AccountTransferServiceAsync.WithRawResponse by lazy { - AccountTransferServiceAsyncImpl.WithRawResponseImpl(clientOptions) - } - private val achTransfers: AchTransferServiceAsync.WithRawResponse by lazy { AchTransferServiceAsyncImpl.WithRawResponseImpl(clientOptions) } @@ -720,6 +720,9 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa override fun accountNumbers(): AccountNumberServiceAsync.WithRawResponse = accountNumbers + override fun accountTransfers(): AccountTransferServiceAsync.WithRawResponse = + accountTransfers + override fun cards(): CardServiceAsync.WithRawResponse = cards override fun cardPayments(): CardPaymentServiceAsync.WithRawResponse = cardPayments @@ -748,9 +751,6 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa override fun declinedTransactions(): DeclinedTransactionServiceAsync.WithRawResponse = declinedTransactions - override fun accountTransfers(): AccountTransferServiceAsync.WithRawResponse = - accountTransfers - override fun achTransfers(): AchTransferServiceAsync.WithRawResponse = achTransfers override fun achPrenotifications(): AchPrenotificationServiceAsync.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 5a524ea23..0f57c4411 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 @@ -141,6 +141,10 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli AccountNumberServiceImpl(clientOptionsWithUserAgent) } + private val accountTransfers: AccountTransferService by lazy { + AccountTransferServiceImpl(clientOptionsWithUserAgent) + } + private val cards: CardService by lazy { CardServiceImpl(clientOptionsWithUserAgent) } private val cardPayments: CardPaymentService by lazy { @@ -183,10 +187,6 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli DeclinedTransactionServiceImpl(clientOptionsWithUserAgent) } - private val accountTransfers: AccountTransferService by lazy { - AccountTransferServiceImpl(clientOptionsWithUserAgent) - } - private val achTransfers: AchTransferService by lazy { AchTransferServiceImpl(clientOptionsWithUserAgent) } @@ -350,6 +350,8 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli override fun accountNumbers(): AccountNumberService = accountNumbers + override fun accountTransfers(): AccountTransferService = accountTransfers + override fun cards(): CardService = cards override fun cardPayments(): CardPaymentService = cardPayments @@ -372,8 +374,6 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli override fun declinedTransactions(): DeclinedTransactionService = declinedTransactions - override fun accountTransfers(): AccountTransferService = accountTransfers - override fun achTransfers(): AchTransferService = achTransfers override fun achPrenotifications(): AchPrenotificationService = achPrenotifications @@ -475,6 +475,10 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli AccountNumberServiceImpl.WithRawResponseImpl(clientOptions) } + private val accountTransfers: AccountTransferService.WithRawResponse by lazy { + AccountTransferServiceImpl.WithRawResponseImpl(clientOptions) + } + private val cards: CardService.WithRawResponse by lazy { CardServiceImpl.WithRawResponseImpl(clientOptions) } @@ -519,10 +523,6 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli DeclinedTransactionServiceImpl.WithRawResponseImpl(clientOptions) } - private val accountTransfers: AccountTransferService.WithRawResponse by lazy { - AccountTransferServiceImpl.WithRawResponseImpl(clientOptions) - } - private val achTransfers: AchTransferService.WithRawResponse by lazy { AchTransferServiceImpl.WithRawResponseImpl(clientOptions) } @@ -702,6 +702,8 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli override fun accountNumbers(): AccountNumberService.WithRawResponse = accountNumbers + override fun accountTransfers(): AccountTransferService.WithRawResponse = accountTransfers + override fun cards(): CardService.WithRawResponse = cards override fun cardPayments(): CardPaymentService.WithRawResponse = cardPayments @@ -730,8 +732,6 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli override fun declinedTransactions(): DeclinedTransactionService.WithRawResponse = declinedTransactions - override fun accountTransfers(): AccountTransferService.WithRawResponse = accountTransfers - override fun achTransfers(): AchTransferService.WithRawResponse = achTransfers override fun achPrenotifications(): AchPrenotificationService.WithRawResponse = diff --git a/increase-java-core/src/main/kotlin/com/increase/api/services/async/SimulationServiceAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/services/async/SimulationServiceAsync.kt index 291b3b9a3..1ea163761 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/services/async/SimulationServiceAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/services/async/SimulationServiceAsync.kt @@ -50,6 +50,8 @@ interface SimulationServiceAsync { fun interestPayments(): InterestPaymentServiceAsync + fun accountTransfers(): AccountTransferServiceAsync + fun cardAuthorizations(): CardAuthorizationServiceAsync fun cardAuthorizationExpirations(): CardAuthorizationExpirationServiceAsync @@ -72,8 +74,6 @@ interface SimulationServiceAsync { fun pendingTransactions(): PendingTransactionServiceAsync - fun accountTransfers(): AccountTransferServiceAsync - fun achTransfers(): AchTransferServiceAsync fun inboundAchTransfers(): InboundAchTransferServiceAsync @@ -123,6 +123,8 @@ interface SimulationServiceAsync { fun interestPayments(): InterestPaymentServiceAsync.WithRawResponse + fun accountTransfers(): AccountTransferServiceAsync.WithRawResponse + fun cardAuthorizations(): CardAuthorizationServiceAsync.WithRawResponse fun cardAuthorizationExpirations(): CardAuthorizationExpirationServiceAsync.WithRawResponse @@ -145,8 +147,6 @@ interface SimulationServiceAsync { fun pendingTransactions(): PendingTransactionServiceAsync.WithRawResponse - fun accountTransfers(): AccountTransferServiceAsync.WithRawResponse - fun achTransfers(): AchTransferServiceAsync.WithRawResponse fun inboundAchTransfers(): InboundAchTransferServiceAsync.WithRawResponse diff --git a/increase-java-core/src/main/kotlin/com/increase/api/services/async/SimulationServiceAsyncImpl.kt b/increase-java-core/src/main/kotlin/com/increase/api/services/async/SimulationServiceAsyncImpl.kt index 6235fa644..8aa019ed2 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/services/async/SimulationServiceAsyncImpl.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/services/async/SimulationServiceAsyncImpl.kt @@ -74,6 +74,10 @@ class SimulationServiceAsyncImpl internal constructor(private val clientOptions: InterestPaymentServiceAsyncImpl(clientOptions) } + private val accountTransfers: AccountTransferServiceAsync by lazy { + AccountTransferServiceAsyncImpl(clientOptions) + } + private val cardAuthorizations: CardAuthorizationServiceAsync by lazy { CardAuthorizationServiceAsyncImpl(clientOptions) } @@ -118,10 +122,6 @@ class SimulationServiceAsyncImpl internal constructor(private val clientOptions: PendingTransactionServiceAsyncImpl(clientOptions) } - private val accountTransfers: AccountTransferServiceAsync by lazy { - AccountTransferServiceAsyncImpl(clientOptions) - } - private val achTransfers: AchTransferServiceAsync by lazy { AchTransferServiceAsyncImpl(clientOptions) } @@ -190,6 +190,8 @@ class SimulationServiceAsyncImpl internal constructor(private val clientOptions: override fun interestPayments(): InterestPaymentServiceAsync = interestPayments + override fun accountTransfers(): AccountTransferServiceAsync = accountTransfers + override fun cardAuthorizations(): CardAuthorizationServiceAsync = cardAuthorizations override fun cardAuthorizationExpirations(): CardAuthorizationExpirationServiceAsync = @@ -214,8 +216,6 @@ class SimulationServiceAsyncImpl internal constructor(private val clientOptions: override fun pendingTransactions(): PendingTransactionServiceAsync = pendingTransactions - override fun accountTransfers(): AccountTransferServiceAsync = accountTransfers - override fun achTransfers(): AchTransferServiceAsync = achTransfers override fun inboundAchTransfers(): InboundAchTransferServiceAsync = inboundAchTransfers @@ -258,6 +258,10 @@ class SimulationServiceAsyncImpl internal constructor(private val clientOptions: InterestPaymentServiceAsyncImpl.WithRawResponseImpl(clientOptions) } + private val accountTransfers: AccountTransferServiceAsync.WithRawResponse by lazy { + AccountTransferServiceAsyncImpl.WithRawResponseImpl(clientOptions) + } + private val cardAuthorizations: CardAuthorizationServiceAsync.WithRawResponse by lazy { CardAuthorizationServiceAsyncImpl.WithRawResponseImpl(clientOptions) } @@ -305,10 +309,6 @@ class SimulationServiceAsyncImpl internal constructor(private val clientOptions: PendingTransactionServiceAsyncImpl.WithRawResponseImpl(clientOptions) } - private val accountTransfers: AccountTransferServiceAsync.WithRawResponse by lazy { - AccountTransferServiceAsyncImpl.WithRawResponseImpl(clientOptions) - } - private val achTransfers: AchTransferServiceAsync.WithRawResponse by lazy { AchTransferServiceAsyncImpl.WithRawResponseImpl(clientOptions) } @@ -386,6 +386,9 @@ class SimulationServiceAsyncImpl internal constructor(private val clientOptions: override fun interestPayments(): InterestPaymentServiceAsync.WithRawResponse = interestPayments + override fun accountTransfers(): AccountTransferServiceAsync.WithRawResponse = + accountTransfers + override fun cardAuthorizations(): CardAuthorizationServiceAsync.WithRawResponse = cardAuthorizations @@ -413,9 +416,6 @@ class SimulationServiceAsyncImpl internal constructor(private val clientOptions: override fun pendingTransactions(): PendingTransactionServiceAsync.WithRawResponse = pendingTransactions - override fun accountTransfers(): AccountTransferServiceAsync.WithRawResponse = - accountTransfers - override fun achTransfers(): AchTransferServiceAsync.WithRawResponse = achTransfers override fun inboundAchTransfers(): InboundAchTransferServiceAsync.WithRawResponse = diff --git a/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/SimulationService.kt b/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/SimulationService.kt index fa2129699..f124c5978 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/SimulationService.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/SimulationService.kt @@ -50,6 +50,8 @@ interface SimulationService { fun interestPayments(): InterestPaymentService + fun accountTransfers(): AccountTransferService + fun cardAuthorizations(): CardAuthorizationService fun cardAuthorizationExpirations(): CardAuthorizationExpirationService @@ -72,8 +74,6 @@ interface SimulationService { fun pendingTransactions(): PendingTransactionService - fun accountTransfers(): AccountTransferService - fun achTransfers(): AchTransferService fun inboundAchTransfers(): InboundAchTransferService @@ -120,6 +120,8 @@ interface SimulationService { fun interestPayments(): InterestPaymentService.WithRawResponse + fun accountTransfers(): AccountTransferService.WithRawResponse + fun cardAuthorizations(): CardAuthorizationService.WithRawResponse fun cardAuthorizationExpirations(): CardAuthorizationExpirationService.WithRawResponse @@ -142,8 +144,6 @@ interface SimulationService { fun pendingTransactions(): PendingTransactionService.WithRawResponse - fun accountTransfers(): AccountTransferService.WithRawResponse - fun achTransfers(): AchTransferService.WithRawResponse fun inboundAchTransfers(): InboundAchTransferService.WithRawResponse diff --git a/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/SimulationServiceImpl.kt b/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/SimulationServiceImpl.kt index 4f5a1e117..e0b712f98 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/SimulationServiceImpl.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/SimulationServiceImpl.kt @@ -74,6 +74,10 @@ class SimulationServiceImpl internal constructor(private val clientOptions: Clie InterestPaymentServiceImpl(clientOptions) } + private val accountTransfers: AccountTransferService by lazy { + AccountTransferServiceImpl(clientOptions) + } + private val cardAuthorizations: CardAuthorizationService by lazy { CardAuthorizationServiceImpl(clientOptions) } @@ -114,10 +118,6 @@ class SimulationServiceImpl internal constructor(private val clientOptions: Clie PendingTransactionServiceImpl(clientOptions) } - private val accountTransfers: AccountTransferService by lazy { - AccountTransferServiceImpl(clientOptions) - } - private val achTransfers: AchTransferService by lazy { AchTransferServiceImpl(clientOptions) } private val inboundAchTransfers: InboundAchTransferService by lazy { @@ -181,6 +181,8 @@ class SimulationServiceImpl internal constructor(private val clientOptions: Clie override fun interestPayments(): InterestPaymentService = interestPayments + override fun accountTransfers(): AccountTransferService = accountTransfers + override fun cardAuthorizations(): CardAuthorizationService = cardAuthorizations override fun cardAuthorizationExpirations(): CardAuthorizationExpirationService = @@ -205,8 +207,6 @@ class SimulationServiceImpl internal constructor(private val clientOptions: Clie override fun pendingTransactions(): PendingTransactionService = pendingTransactions - override fun accountTransfers(): AccountTransferService = accountTransfers - override fun achTransfers(): AchTransferService = achTransfers override fun inboundAchTransfers(): InboundAchTransferService = inboundAchTransfers @@ -249,6 +249,10 @@ class SimulationServiceImpl internal constructor(private val clientOptions: Clie InterestPaymentServiceImpl.WithRawResponseImpl(clientOptions) } + private val accountTransfers: AccountTransferService.WithRawResponse by lazy { + AccountTransferServiceImpl.WithRawResponseImpl(clientOptions) + } + private val cardAuthorizations: CardAuthorizationService.WithRawResponse by lazy { CardAuthorizationServiceImpl.WithRawResponseImpl(clientOptions) } @@ -295,10 +299,6 @@ class SimulationServiceImpl internal constructor(private val clientOptions: Clie PendingTransactionServiceImpl.WithRawResponseImpl(clientOptions) } - private val accountTransfers: AccountTransferService.WithRawResponse by lazy { - AccountTransferServiceImpl.WithRawResponseImpl(clientOptions) - } - private val achTransfers: AchTransferService.WithRawResponse by lazy { AchTransferServiceImpl.WithRawResponseImpl(clientOptions) } @@ -375,6 +375,8 @@ class SimulationServiceImpl internal constructor(private val clientOptions: Clie override fun interestPayments(): InterestPaymentService.WithRawResponse = interestPayments + override fun accountTransfers(): AccountTransferService.WithRawResponse = accountTransfers + override fun cardAuthorizations(): CardAuthorizationService.WithRawResponse = cardAuthorizations @@ -402,8 +404,6 @@ class SimulationServiceImpl internal constructor(private val clientOptions: Clie override fun pendingTransactions(): PendingTransactionService.WithRawResponse = pendingTransactions - override fun accountTransfers(): AccountTransferService.WithRawResponse = accountTransfers - override fun achTransfers(): AchTransferService.WithRawResponse = achTransfers override fun inboundAchTransfers(): InboundAchTransferService.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 3f267be4e..5ac6a9ae2 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 @@ -51,6 +51,7 @@ internal class ProGuardCompatibilityTest { assertThat(client).isNotNull() assertThat(client.accounts()).isNotNull() assertThat(client.accountNumbers()).isNotNull() + assertThat(client.accountTransfers()).isNotNull() assertThat(client.cards()).isNotNull() assertThat(client.cardPayments()).isNotNull() assertThat(client.cardPurchaseSupplements()).isNotNull() @@ -62,7 +63,6 @@ internal class ProGuardCompatibilityTest { assertThat(client.transactions()).isNotNull() assertThat(client.pendingTransactions()).isNotNull() assertThat(client.declinedTransactions()).isNotNull() - assertThat(client.accountTransfers()).isNotNull() assertThat(client.achTransfers()).isNotNull() assertThat(client.achPrenotifications()).isNotNull() assertThat(client.inboundAchTransfers()).isNotNull() From f283da4722ff9ed80a939d3513d38f4c1ee824be Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 5 Sep 2025 21:53:29 +0000 Subject: [PATCH 2/2] release: 0.315.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 da7827268..f93c4039e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.314.0" + ".": "0.315.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 68c329f09..071f2cb3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.315.0 (2025-09-05) + +Full Changelog: [v0.314.0...v0.315.0](https://github.com/Increase/increase-java/compare/v0.314.0...v0.315.0) + +### Features + +* **api:** api update ([0791906](https://github.com/Increase/increase-java/commit/0791906452e6fb161b51751b0e2e191de4cf9cd4)) + ## 0.314.0 (2025-09-05) Full Changelog: [v0.313.0...v0.314.0](https://github.com/Increase/increase-java/compare/v0.313.0...v0.314.0) diff --git a/README.md b/README.md index 5da4a3c23..28f544cbb 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.314.0) -[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.314.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.314.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.315.0) +[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.315.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.315.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.314.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.315.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.314.0") +implementation("com.increase.api:increase-java:0.315.0") ``` ### Maven @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.314.0") com.increase.api increase-java - 0.314.0 + 0.315.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index 4a233a4f8..57b1e49ac 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "com.increase.api" - version = "0.314.0" // x-release-please-version + version = "0.315.0" // x-release-please-version } subprojects {