Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.531.0"
".": "0.532.0"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<!-- x-release-please-start-version -->

[![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)

<!-- x-release-please-end -->

Expand All @@ -13,7 +13,7 @@ The Increase Java SDK is similar to the Increase Kotlin SDK but with minor diffe

<!-- x-release-please-start-version -->

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).

<!-- x-release-please-end -->

Expand All @@ -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
Expand All @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.531.0")
<dependency>
<groupId>com.increase.api</groupId>
<artifactId>increase-java</artifactId>
<version>0.531.0</version>
<version>0.532.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,10 @@ interface IncreaseClient {

fun achTransfers(): AchTransferService

fun achPrenotifications(): AchPrenotificationService

fun inboundAchTransfers(): InboundAchTransferService

fun achPrenotifications(): AchPrenotificationService

fun wireTransfers(): WireTransferService

fun inboundWireTransfers(): InboundWireTransferService
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,10 @@ interface IncreaseClientAsync {

fun achTransfers(): AchTransferServiceAsync

fun achPrenotifications(): AchPrenotificationServiceAsync

fun inboundAchTransfers(): InboundAchTransferServiceAsync

fun achPrenotifications(): AchPrenotificationServiceAsync

fun wireTransfers(): WireTransferServiceAsync

fun inboundWireTransfers(): InboundWireTransferServiceAsync
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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)
}
Expand Down Expand Up @@ -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 =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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)
}
Expand Down Expand Up @@ -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 =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Loading