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.525.0"
".": "0.526.0"
}
8 changes: 4 additions & 4 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 232
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-4615e5953fac5a76724144fc2e1f9f675a9722dc05adaeab23e4d09c9577086b.yml
openapi_spec_hash: 6db98497c4dda09b575d5ee12371ef83
config_hash: b24ba63471a818520cec39b4695e1825
configured_endpoints: 236
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-47752267c48d299a01c906499bb7d584228ea8801b7d83e34ae4100d5dec3434.yml
openapi_spec_hash: 9ea8bc6dc383de626d3fa15c823227ae
config_hash: 026e2baa580c7f5f2447c24332081ba8
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.526.0 (2026-04-27)

Full Changelog: [v0.525.0...v0.526.0](https://github.com/Increase/increase-java/compare/v0.525.0...v0.526.0)

### Features

* **api:** api update ([5e99639](https://github.com/Increase/increase-java/commit/5e996394faa744ab511d666d1abc7b887f1828b8))
* **api:** api update ([118c6f8](https://github.com/Increase/increase-java/commit/118c6f861601da7a97fad8fe9640fc8c76e88b11))

## 0.525.0 (2026-04-22)

Full Changelog: [v0.524.0...v0.525.0](https://github.com/Increase/increase-java/compare/v0.524.0...v0.525.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.525.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.525.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.525.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.526.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.526.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.526.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.525.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.526.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.525.0")
implementation("com.increase.api:increase-java:0.526.0")
```

### Maven
Expand All @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.525.0")
<dependency>
<groupId>com.increase.api</groupId>
<artifactId>increase-java</artifactId>
<version>0.525.0</version>
<version>0.526.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.525.0" // x-release-please-version
version = "0.526.0" // x-release-please-version
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ import com.increase.api.services.blocking.InboundWireTransferService
import com.increase.api.services.blocking.IntrafiAccountEnrollmentService
import com.increase.api.services.blocking.IntrafiBalanceService
import com.increase.api.services.blocking.IntrafiExclusionService
import com.increase.api.services.blocking.LockboxService
import com.increase.api.services.blocking.LockboxAddressService
import com.increase.api.services.blocking.LockboxRecipientService
import com.increase.api.services.blocking.OAuthApplicationService
import com.increase.api.services.blocking.OAuthConnectionService
import com.increase.api.services.blocking.OAuthTokenService
Expand Down Expand Up @@ -155,7 +156,9 @@ interface IncreaseClient {

fun checkDeposits(): CheckDepositService

fun lockboxes(): LockboxService
fun lockboxAddresses(): LockboxAddressService

fun lockboxRecipients(): LockboxRecipientService

fun inboundMailItems(): InboundMailItemService

Expand Down Expand Up @@ -291,7 +294,9 @@ interface IncreaseClient {

fun checkDeposits(): CheckDepositService.WithRawResponse

fun lockboxes(): LockboxService.WithRawResponse
fun lockboxAddresses(): LockboxAddressService.WithRawResponse

fun lockboxRecipients(): LockboxRecipientService.WithRawResponse

fun inboundMailItems(): InboundMailItemService.WithRawResponse

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ import com.increase.api.services.async.InboundWireTransferServiceAsync
import com.increase.api.services.async.IntrafiAccountEnrollmentServiceAsync
import com.increase.api.services.async.IntrafiBalanceServiceAsync
import com.increase.api.services.async.IntrafiExclusionServiceAsync
import com.increase.api.services.async.LockboxServiceAsync
import com.increase.api.services.async.LockboxAddressServiceAsync
import com.increase.api.services.async.LockboxRecipientServiceAsync
import com.increase.api.services.async.OAuthApplicationServiceAsync
import com.increase.api.services.async.OAuthConnectionServiceAsync
import com.increase.api.services.async.OAuthTokenServiceAsync
Expand Down Expand Up @@ -155,7 +156,9 @@ interface IncreaseClientAsync {

fun checkDeposits(): CheckDepositServiceAsync

fun lockboxes(): LockboxServiceAsync
fun lockboxAddresses(): LockboxAddressServiceAsync

fun lockboxRecipients(): LockboxRecipientServiceAsync

fun inboundMailItems(): InboundMailItemServiceAsync

Expand Down Expand Up @@ -295,7 +298,9 @@ interface IncreaseClientAsync {

fun checkDeposits(): CheckDepositServiceAsync.WithRawResponse

fun lockboxes(): LockboxServiceAsync.WithRawResponse
fun lockboxAddresses(): LockboxAddressServiceAsync.WithRawResponse

fun lockboxRecipients(): LockboxRecipientServiceAsync.WithRawResponse

fun inboundMailItems(): InboundMailItemServiceAsync.WithRawResponse

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,10 @@ import com.increase.api.services.async.IntrafiBalanceServiceAsync
import com.increase.api.services.async.IntrafiBalanceServiceAsyncImpl
import com.increase.api.services.async.IntrafiExclusionServiceAsync
import com.increase.api.services.async.IntrafiExclusionServiceAsyncImpl
import com.increase.api.services.async.LockboxServiceAsync
import com.increase.api.services.async.LockboxServiceAsyncImpl
import com.increase.api.services.async.LockboxAddressServiceAsync
import com.increase.api.services.async.LockboxAddressServiceAsyncImpl
import com.increase.api.services.async.LockboxRecipientServiceAsync
import com.increase.api.services.async.LockboxRecipientServiceAsyncImpl
import com.increase.api.services.async.OAuthApplicationServiceAsync
import com.increase.api.services.async.OAuthApplicationServiceAsyncImpl
import com.increase.api.services.async.OAuthConnectionServiceAsync
Expand Down Expand Up @@ -250,8 +252,12 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa
CheckDepositServiceAsyncImpl(clientOptionsWithUserAgent)
}

private val lockboxes: LockboxServiceAsync by lazy {
LockboxServiceAsyncImpl(clientOptionsWithUserAgent)
private val lockboxAddresses: LockboxAddressServiceAsync by lazy {
LockboxAddressServiceAsyncImpl(clientOptionsWithUserAgent)
}

private val lockboxRecipients: LockboxRecipientServiceAsync by lazy {
LockboxRecipientServiceAsyncImpl(clientOptionsWithUserAgent)
}

private val inboundMailItems: InboundMailItemServiceAsync by lazy {
Expand Down Expand Up @@ -426,7 +432,9 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa

override fun checkDeposits(): CheckDepositServiceAsync = checkDeposits

override fun lockboxes(): LockboxServiceAsync = lockboxes
override fun lockboxAddresses(): LockboxAddressServiceAsync = lockboxAddresses

override fun lockboxRecipients(): LockboxRecipientServiceAsync = lockboxRecipients

override fun inboundMailItems(): InboundMailItemServiceAsync = inboundMailItems

Expand Down Expand Up @@ -608,8 +616,12 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa
CheckDepositServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}

private val lockboxes: LockboxServiceAsync.WithRawResponse by lazy {
LockboxServiceAsyncImpl.WithRawResponseImpl(clientOptions)
private val lockboxAddresses: LockboxAddressServiceAsync.WithRawResponse by lazy {
LockboxAddressServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}

private val lockboxRecipients: LockboxRecipientServiceAsync.WithRawResponse by lazy {
LockboxRecipientServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}

private val inboundMailItems: InboundMailItemServiceAsync.WithRawResponse by lazy {
Expand Down Expand Up @@ -801,7 +813,11 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa

override fun checkDeposits(): CheckDepositServiceAsync.WithRawResponse = checkDeposits

override fun lockboxes(): LockboxServiceAsync.WithRawResponse = lockboxes
override fun lockboxAddresses(): LockboxAddressServiceAsync.WithRawResponse =
lockboxAddresses

override fun lockboxRecipients(): LockboxRecipientServiceAsync.WithRawResponse =
lockboxRecipients

override fun inboundMailItems(): InboundMailItemServiceAsync.WithRawResponse =
inboundMailItems
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,10 @@ import com.increase.api.services.blocking.IntrafiBalanceService
import com.increase.api.services.blocking.IntrafiBalanceServiceImpl
import com.increase.api.services.blocking.IntrafiExclusionService
import com.increase.api.services.blocking.IntrafiExclusionServiceImpl
import com.increase.api.services.blocking.LockboxService
import com.increase.api.services.blocking.LockboxServiceImpl
import com.increase.api.services.blocking.LockboxAddressService
import com.increase.api.services.blocking.LockboxAddressServiceImpl
import com.increase.api.services.blocking.LockboxRecipientService
import com.increase.api.services.blocking.LockboxRecipientServiceImpl
import com.increase.api.services.blocking.OAuthApplicationService
import com.increase.api.services.blocking.OAuthApplicationServiceImpl
import com.increase.api.services.blocking.OAuthConnectionService
Expand Down Expand Up @@ -247,7 +249,13 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli
CheckDepositServiceImpl(clientOptionsWithUserAgent)
}

private val lockboxes: LockboxService by lazy { LockboxServiceImpl(clientOptionsWithUserAgent) }
private val lockboxAddresses: LockboxAddressService by lazy {
LockboxAddressServiceImpl(clientOptionsWithUserAgent)
}

private val lockboxRecipients: LockboxRecipientService by lazy {
LockboxRecipientServiceImpl(clientOptionsWithUserAgent)
}

private val inboundMailItems: InboundMailItemService by lazy {
InboundMailItemServiceImpl(clientOptionsWithUserAgent)
Expand Down Expand Up @@ -409,7 +417,9 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli

override fun checkDeposits(): CheckDepositService = checkDeposits

override fun lockboxes(): LockboxService = lockboxes
override fun lockboxAddresses(): LockboxAddressService = lockboxAddresses

override fun lockboxRecipients(): LockboxRecipientService = lockboxRecipients

override fun inboundMailItems(): InboundMailItemService = inboundMailItems

Expand Down Expand Up @@ -589,8 +599,12 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli
CheckDepositServiceImpl.WithRawResponseImpl(clientOptions)
}

private val lockboxes: LockboxService.WithRawResponse by lazy {
LockboxServiceImpl.WithRawResponseImpl(clientOptions)
private val lockboxAddresses: LockboxAddressService.WithRawResponse by lazy {
LockboxAddressServiceImpl.WithRawResponseImpl(clientOptions)
}

private val lockboxRecipients: LockboxRecipientService.WithRawResponse by lazy {
LockboxRecipientServiceImpl.WithRawResponseImpl(clientOptions)
}

private val inboundMailItems: InboundMailItemService.WithRawResponse by lazy {
Expand Down Expand Up @@ -780,7 +794,10 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli

override fun checkDeposits(): CheckDepositService.WithRawResponse = checkDeposits

override fun lockboxes(): LockboxService.WithRawResponse = lockboxes
override fun lockboxAddresses(): LockboxAddressService.WithRawResponse = lockboxAddresses

override fun lockboxRecipients(): LockboxRecipientService.WithRawResponse =
lockboxRecipients

override fun inboundMailItems(): InboundMailItemService.WithRawResponse = inboundMailItems

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6525,6 +6525,9 @@ private constructor(
/** Mastercard and Maestro */
@JvmField val MASTERCARD = of("mastercard")

/** Pulse */
@JvmField val PULSE = of("pulse")

@JvmStatic fun of(value: String) = Route(JsonField.of(value))
}

Expand All @@ -6534,6 +6537,8 @@ private constructor(
VISA,
/** Mastercard and Maestro */
MASTERCARD,
/** Pulse */
PULSE,
}

/**
Expand All @@ -6550,6 +6555,8 @@ private constructor(
VISA,
/** Mastercard and Maestro */
MASTERCARD,
/** Pulse */
PULSE,
/** An enum member indicating that [Route] was instantiated with an unknown value. */
_UNKNOWN,
}
Expand All @@ -6565,6 +6572,7 @@ private constructor(
when (this) {
VISA -> Value.VISA
MASTERCARD -> Value.MASTERCARD
PULSE -> Value.PULSE
else -> Value._UNKNOWN
}

Expand All @@ -6581,6 +6589,7 @@ private constructor(
when (this) {
VISA -> Known.VISA
MASTERCARD -> Known.MASTERCARD
PULSE -> Known.PULSE
else -> throw IncreaseInvalidDataException("Unknown Route: $value")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -811,6 +811,9 @@ private constructor(
/** Mastercard and Maestro */
@JvmField val MASTERCARD = of("mastercard")

/** Pulse */
@JvmField val PULSE = of("pulse")

@JvmStatic fun of(value: String) = InnerRoute(JsonField.of(value))
}

Expand All @@ -820,6 +823,8 @@ private constructor(
VISA,
/** Mastercard and Maestro */
MASTERCARD,
/** Pulse */
PULSE,
}

/**
Expand All @@ -836,6 +841,8 @@ private constructor(
VISA,
/** Mastercard and Maestro */
MASTERCARD,
/** Pulse */
PULSE,
/**
* An enum member indicating that [InnerRoute] was instantiated with an unknown
* value.
Expand All @@ -854,6 +861,7 @@ private constructor(
when (this) {
VISA -> Value.VISA
MASTERCARD -> Value.MASTERCARD
PULSE -> Value.PULSE
else -> Value._UNKNOWN
}

Expand All @@ -870,6 +878,7 @@ private constructor(
when (this) {
VISA -> Known.VISA
MASTERCARD -> Known.MASTERCARD
PULSE -> Known.PULSE
else -> throw IncreaseInvalidDataException("Unknown InnerRoute: $value")
}

Expand Down
Loading
Loading