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.524.0"
".": "0.525.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: 241
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-1f2c653a8b55e63d756d60f9110ceadb18f87a6039762b5ee31b5373bbc4499a.yml
openapi_spec_hash: a7b01c23c92b07f280117e6ba6262a7e
config_hash: cb5b8736705c06b670f6a25484622d62
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

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

### Features

* **api:** api update ([988c18c](https://github.com/Increase/increase-java/commit/988c18c167cd5c84b0a16fb106e85ca4b1f8c77f))

## 0.524.0 (2026-04-20)

Full Changelog: [v0.523.0...v0.524.0](https://github.com/Increase/increase-java/compare/v0.523.0...v0.524.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.524.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.524.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.524.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.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)

<!-- 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.524.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.525.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.524.0")
implementation("com.increase.api:increase-java:0.525.0")
```

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ import com.increase.api.services.blocking.AccountTransferService
import com.increase.api.services.blocking.AchPrenotificationService
import com.increase.api.services.blocking.AchTransferService
import com.increase.api.services.blocking.BeneficialOwnerService
import com.increase.api.services.blocking.BookkeepingAccountService
import com.increase.api.services.blocking.BookkeepingEntryService
import com.increase.api.services.blocking.BookkeepingEntrySetService
import com.increase.api.services.blocking.CardDisputeService
import com.increase.api.services.blocking.CardPaymentService
import com.increase.api.services.blocking.CardPurchaseSupplementService
Expand Down Expand Up @@ -190,12 +187,6 @@ interface IncreaseClient {

fun realTimeDecisions(): RealTimeDecisionService

fun bookkeepingAccounts(): BookkeepingAccountService

fun bookkeepingEntrySets(): BookkeepingEntrySetService

fun bookkeepingEntries(): BookkeepingEntryService

fun groups(): GroupService

fun oauthApplications(): OAuthApplicationService
Expand Down Expand Up @@ -332,12 +323,6 @@ interface IncreaseClient {

fun realTimeDecisions(): RealTimeDecisionService.WithRawResponse

fun bookkeepingAccounts(): BookkeepingAccountService.WithRawResponse

fun bookkeepingEntrySets(): BookkeepingEntrySetService.WithRawResponse

fun bookkeepingEntries(): BookkeepingEntryService.WithRawResponse

fun groups(): GroupService.WithRawResponse

fun oauthApplications(): OAuthApplicationService.WithRawResponse
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ import com.increase.api.services.async.AccountTransferServiceAsync
import com.increase.api.services.async.AchPrenotificationServiceAsync
import com.increase.api.services.async.AchTransferServiceAsync
import com.increase.api.services.async.BeneficialOwnerServiceAsync
import com.increase.api.services.async.BookkeepingAccountServiceAsync
import com.increase.api.services.async.BookkeepingEntryServiceAsync
import com.increase.api.services.async.BookkeepingEntrySetServiceAsync
import com.increase.api.services.async.CardDisputeServiceAsync
import com.increase.api.services.async.CardPaymentServiceAsync
import com.increase.api.services.async.CardPurchaseSupplementServiceAsync
Expand Down Expand Up @@ -190,12 +187,6 @@ interface IncreaseClientAsync {

fun realTimeDecisions(): RealTimeDecisionServiceAsync

fun bookkeepingAccounts(): BookkeepingAccountServiceAsync

fun bookkeepingEntrySets(): BookkeepingEntrySetServiceAsync

fun bookkeepingEntries(): BookkeepingEntryServiceAsync

fun groups(): GroupServiceAsync

fun oauthApplications(): OAuthApplicationServiceAsync
Expand Down Expand Up @@ -336,12 +327,6 @@ interface IncreaseClientAsync {

fun realTimeDecisions(): RealTimeDecisionServiceAsync.WithRawResponse

fun bookkeepingAccounts(): BookkeepingAccountServiceAsync.WithRawResponse

fun bookkeepingEntrySets(): BookkeepingEntrySetServiceAsync.WithRawResponse

fun bookkeepingEntries(): BookkeepingEntryServiceAsync.WithRawResponse

fun groups(): GroupServiceAsync.WithRawResponse

fun oauthApplications(): OAuthApplicationServiceAsync.WithRawResponse
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,6 @@ import com.increase.api.services.async.AchTransferServiceAsync
import com.increase.api.services.async.AchTransferServiceAsyncImpl
import com.increase.api.services.async.BeneficialOwnerServiceAsync
import com.increase.api.services.async.BeneficialOwnerServiceAsyncImpl
import com.increase.api.services.async.BookkeepingAccountServiceAsync
import com.increase.api.services.async.BookkeepingAccountServiceAsyncImpl
import com.increase.api.services.async.BookkeepingEntryServiceAsync
import com.increase.api.services.async.BookkeepingEntryServiceAsyncImpl
import com.increase.api.services.async.BookkeepingEntrySetServiceAsync
import com.increase.api.services.async.BookkeepingEntrySetServiceAsyncImpl
import com.increase.api.services.async.CardDisputeServiceAsync
import com.increase.api.services.async.CardDisputeServiceAsyncImpl
import com.increase.api.services.async.CardPaymentServiceAsync
Expand Down Expand Up @@ -318,18 +312,6 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa
RealTimeDecisionServiceAsyncImpl(clientOptionsWithUserAgent)
}

private val bookkeepingAccounts: BookkeepingAccountServiceAsync by lazy {
BookkeepingAccountServiceAsyncImpl(clientOptionsWithUserAgent)
}

private val bookkeepingEntrySets: BookkeepingEntrySetServiceAsync by lazy {
BookkeepingEntrySetServiceAsyncImpl(clientOptionsWithUserAgent)
}

private val bookkeepingEntries: BookkeepingEntryServiceAsync by lazy {
BookkeepingEntryServiceAsyncImpl(clientOptionsWithUserAgent)
}

private val groups: GroupServiceAsync by lazy {
GroupServiceAsyncImpl(clientOptionsWithUserAgent)
}
Expand Down Expand Up @@ -477,12 +459,6 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa

override fun realTimeDecisions(): RealTimeDecisionServiceAsync = realTimeDecisions

override fun bookkeepingAccounts(): BookkeepingAccountServiceAsync = bookkeepingAccounts

override fun bookkeepingEntrySets(): BookkeepingEntrySetServiceAsync = bookkeepingEntrySets

override fun bookkeepingEntries(): BookkeepingEntryServiceAsync = bookkeepingEntries

override fun groups(): GroupServiceAsync = groups

override fun oauthApplications(): OAuthApplicationServiceAsync = oauthApplications
Expand Down Expand Up @@ -698,18 +674,6 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa
RealTimeDecisionServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}

private val bookkeepingAccounts: BookkeepingAccountServiceAsync.WithRawResponse by lazy {
BookkeepingAccountServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}

private val bookkeepingEntrySets: BookkeepingEntrySetServiceAsync.WithRawResponse by lazy {
BookkeepingEntrySetServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}

private val bookkeepingEntries: BookkeepingEntryServiceAsync.WithRawResponse by lazy {
BookkeepingEntryServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}

private val groups: GroupServiceAsync.WithRawResponse by lazy {
GroupServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}
Expand Down Expand Up @@ -877,15 +841,6 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa
override fun realTimeDecisions(): RealTimeDecisionServiceAsync.WithRawResponse =
realTimeDecisions

override fun bookkeepingAccounts(): BookkeepingAccountServiceAsync.WithRawResponse =
bookkeepingAccounts

override fun bookkeepingEntrySets(): BookkeepingEntrySetServiceAsync.WithRawResponse =
bookkeepingEntrySets

override fun bookkeepingEntries(): BookkeepingEntryServiceAsync.WithRawResponse =
bookkeepingEntries

override fun groups(): GroupServiceAsync.WithRawResponse = groups

override fun oauthApplications(): OAuthApplicationServiceAsync.WithRawResponse =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,6 @@ import com.increase.api.services.blocking.AchTransferService
import com.increase.api.services.blocking.AchTransferServiceImpl
import com.increase.api.services.blocking.BeneficialOwnerService
import com.increase.api.services.blocking.BeneficialOwnerServiceImpl
import com.increase.api.services.blocking.BookkeepingAccountService
import com.increase.api.services.blocking.BookkeepingAccountServiceImpl
import com.increase.api.services.blocking.BookkeepingEntryService
import com.increase.api.services.blocking.BookkeepingEntryServiceImpl
import com.increase.api.services.blocking.BookkeepingEntrySetService
import com.increase.api.services.blocking.BookkeepingEntrySetServiceImpl
import com.increase.api.services.blocking.CardDisputeService
import com.increase.api.services.blocking.CardDisputeServiceImpl
import com.increase.api.services.blocking.CardPaymentService
Expand Down Expand Up @@ -305,18 +299,6 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli
RealTimeDecisionServiceImpl(clientOptionsWithUserAgent)
}

private val bookkeepingAccounts: BookkeepingAccountService by lazy {
BookkeepingAccountServiceImpl(clientOptionsWithUserAgent)
}

private val bookkeepingEntrySets: BookkeepingEntrySetService by lazy {
BookkeepingEntrySetServiceImpl(clientOptionsWithUserAgent)
}

private val bookkeepingEntries: BookkeepingEntryService by lazy {
BookkeepingEntryServiceImpl(clientOptionsWithUserAgent)
}

private val groups: GroupService by lazy { GroupServiceImpl(clientOptionsWithUserAgent) }

private val oauthApplications: OAuthApplicationService by lazy {
Expand Down Expand Up @@ -460,12 +442,6 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli

override fun realTimeDecisions(): RealTimeDecisionService = realTimeDecisions

override fun bookkeepingAccounts(): BookkeepingAccountService = bookkeepingAccounts

override fun bookkeepingEntrySets(): BookkeepingEntrySetService = bookkeepingEntrySets

override fun bookkeepingEntries(): BookkeepingEntryService = bookkeepingEntries

override fun groups(): GroupService = groups

override fun oauthApplications(): OAuthApplicationService = oauthApplications
Expand Down Expand Up @@ -678,18 +654,6 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli
RealTimeDecisionServiceImpl.WithRawResponseImpl(clientOptions)
}

private val bookkeepingAccounts: BookkeepingAccountService.WithRawResponse by lazy {
BookkeepingAccountServiceImpl.WithRawResponseImpl(clientOptions)
}

private val bookkeepingEntrySets: BookkeepingEntrySetService.WithRawResponse by lazy {
BookkeepingEntrySetServiceImpl.WithRawResponseImpl(clientOptions)
}

private val bookkeepingEntries: BookkeepingEntryService.WithRawResponse by lazy {
BookkeepingEntryServiceImpl.WithRawResponseImpl(clientOptions)
}

private val groups: GroupService.WithRawResponse by lazy {
GroupServiceImpl.WithRawResponseImpl(clientOptions)
}
Expand Down Expand Up @@ -853,15 +817,6 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli
override fun realTimeDecisions(): RealTimeDecisionService.WithRawResponse =
realTimeDecisions

override fun bookkeepingAccounts(): BookkeepingAccountService.WithRawResponse =
bookkeepingAccounts

override fun bookkeepingEntrySets(): BookkeepingEntrySetService.WithRawResponse =
bookkeepingEntrySets

override fun bookkeepingEntries(): BookkeepingEntryService.WithRawResponse =
bookkeepingEntries

override fun groups(): GroupService.WithRawResponse = groups

override fun oauthApplications(): OAuthApplicationService.WithRawResponse =
Expand Down
Loading
Loading