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.505.0"
".": "0.506.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: 236
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-07202bc3c027c441ab8829ab0e32c1547952d4cae1691fe00497ee3b056127d0.yml
openapi_spec_hash: 3c21b26cf5803678876c00c40e88c781
config_hash: 4945e03affdf289484733306e4797f81
configured_endpoints: 241
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-8bbf0093efa65975131da3735f2adc0ec05432cde8c05e9c9796bc7d553103ae.yml
openapi_spec_hash: 5080ba849a5b100ace3bec9da24d4dc7
config_hash: d48e9f65bcf642f92610034d6c43f07a
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.506.0 (2026-04-09)

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

### Features

* **api:** api update ([2c87ea8](https://github.com/Increase/increase-java/commit/2c87ea8437e7121a883cf59fa87da7fc2ebeed7d))

## 0.505.0 (2026-04-07)

Full Changelog: [v0.504.0...v0.505.0](https://github.com/Increase/increase-java/compare/v0.504.0...v0.505.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.505.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.505.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.505.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.506.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.506.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.506.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.505.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.506.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.505.0")
implementation("com.increase.api:increase-java:0.506.0")
```

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import com.increase.api.services.blocking.CheckTransferService
import com.increase.api.services.blocking.DeclinedTransactionService
import com.increase.api.services.blocking.DigitalCardProfileService
import com.increase.api.services.blocking.DigitalWalletTokenService
import com.increase.api.services.blocking.EntityOnboardingSessionService
import com.increase.api.services.blocking.EntityService
import com.increase.api.services.blocking.EventService
import com.increase.api.services.blocking.EventSubscriptionService
Expand Down Expand Up @@ -171,6 +172,8 @@ interface IncreaseClient {

fun supplementalDocuments(): SupplementalDocumentService

fun entityOnboardingSessions(): EntityOnboardingSessionService

fun programs(): ProgramService

fun accountStatements(): AccountStatementService
Expand Down Expand Up @@ -311,6 +314,8 @@ interface IncreaseClient {

fun supplementalDocuments(): SupplementalDocumentService.WithRawResponse

fun entityOnboardingSessions(): EntityOnboardingSessionService.WithRawResponse

fun programs(): ProgramService.WithRawResponse

fun accountStatements(): AccountStatementService.WithRawResponse
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import com.increase.api.services.async.CheckTransferServiceAsync
import com.increase.api.services.async.DeclinedTransactionServiceAsync
import com.increase.api.services.async.DigitalCardProfileServiceAsync
import com.increase.api.services.async.DigitalWalletTokenServiceAsync
import com.increase.api.services.async.EntityOnboardingSessionServiceAsync
import com.increase.api.services.async.EntityServiceAsync
import com.increase.api.services.async.EventServiceAsync
import com.increase.api.services.async.EventSubscriptionServiceAsync
Expand Down Expand Up @@ -171,6 +172,8 @@ interface IncreaseClientAsync {

fun supplementalDocuments(): SupplementalDocumentServiceAsync

fun entityOnboardingSessions(): EntityOnboardingSessionServiceAsync

fun programs(): ProgramServiceAsync

fun accountStatements(): AccountStatementServiceAsync
Expand Down Expand Up @@ -315,6 +318,8 @@ interface IncreaseClientAsync {

fun supplementalDocuments(): SupplementalDocumentServiceAsync.WithRawResponse

fun entityOnboardingSessions(): EntityOnboardingSessionServiceAsync.WithRawResponse

fun programs(): ProgramServiceAsync.WithRawResponse

fun accountStatements(): AccountStatementServiceAsync.WithRawResponse
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ import com.increase.api.services.async.DigitalCardProfileServiceAsync
import com.increase.api.services.async.DigitalCardProfileServiceAsyncImpl
import com.increase.api.services.async.DigitalWalletTokenServiceAsync
import com.increase.api.services.async.DigitalWalletTokenServiceAsyncImpl
import com.increase.api.services.async.EntityOnboardingSessionServiceAsync
import com.increase.api.services.async.EntityOnboardingSessionServiceAsyncImpl
import com.increase.api.services.async.EntityServiceAsync
import com.increase.api.services.async.EntityServiceAsyncImpl
import com.increase.api.services.async.EventServiceAsync
Expand Down Expand Up @@ -282,6 +284,10 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa
SupplementalDocumentServiceAsyncImpl(clientOptionsWithUserAgent)
}

private val entityOnboardingSessions: EntityOnboardingSessionServiceAsync by lazy {
EntityOnboardingSessionServiceAsyncImpl(clientOptionsWithUserAgent)
}

private val programs: ProgramServiceAsync by lazy {
ProgramServiceAsyncImpl(clientOptionsWithUserAgent)
}
Expand Down Expand Up @@ -452,6 +458,9 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa

override fun supplementalDocuments(): SupplementalDocumentServiceAsync = supplementalDocuments

override fun entityOnboardingSessions(): EntityOnboardingSessionServiceAsync =
entityOnboardingSessions

override fun programs(): ProgramServiceAsync = programs

override fun accountStatements(): AccountStatementServiceAsync = accountStatements
Expand Down Expand Up @@ -652,6 +661,11 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa
SupplementalDocumentServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}

private val entityOnboardingSessions:
EntityOnboardingSessionServiceAsync.WithRawResponse by lazy {
EntityOnboardingSessionServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}

private val programs: ProgramServiceAsync.WithRawResponse by lazy {
ProgramServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}
Expand Down Expand Up @@ -841,6 +855,9 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa
override fun supplementalDocuments(): SupplementalDocumentServiceAsync.WithRawResponse =
supplementalDocuments

override fun entityOnboardingSessions():
EntityOnboardingSessionServiceAsync.WithRawResponse = entityOnboardingSessions

override fun programs(): ProgramServiceAsync.WithRawResponse = programs

override fun accountStatements(): AccountStatementServiceAsync.WithRawResponse =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ import com.increase.api.services.blocking.DigitalCardProfileService
import com.increase.api.services.blocking.DigitalCardProfileServiceImpl
import com.increase.api.services.blocking.DigitalWalletTokenService
import com.increase.api.services.blocking.DigitalWalletTokenServiceImpl
import com.increase.api.services.blocking.EntityOnboardingSessionService
import com.increase.api.services.blocking.EntityOnboardingSessionServiceImpl
import com.increase.api.services.blocking.EntityService
import com.increase.api.services.blocking.EntityServiceImpl
import com.increase.api.services.blocking.EventService
Expand Down Expand Up @@ -275,6 +277,10 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli
SupplementalDocumentServiceImpl(clientOptionsWithUserAgent)
}

private val entityOnboardingSessions: EntityOnboardingSessionService by lazy {
EntityOnboardingSessionServiceImpl(clientOptionsWithUserAgent)
}

private val programs: ProgramService by lazy { ProgramServiceImpl(clientOptionsWithUserAgent) }

private val accountStatements: AccountStatementService by lazy {
Expand Down Expand Up @@ -435,6 +441,9 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli

override fun supplementalDocuments(): SupplementalDocumentService = supplementalDocuments

override fun entityOnboardingSessions(): EntityOnboardingSessionService =
entityOnboardingSessions

override fun programs(): ProgramService = programs

override fun accountStatements(): AccountStatementService = accountStatements
Expand Down Expand Up @@ -632,6 +641,11 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli
SupplementalDocumentServiceImpl.WithRawResponseImpl(clientOptions)
}

private val entityOnboardingSessions:
EntityOnboardingSessionService.WithRawResponse by lazy {
EntityOnboardingSessionServiceImpl.WithRawResponseImpl(clientOptions)
}

private val programs: ProgramService.WithRawResponse by lazy {
ProgramServiceImpl.WithRawResponseImpl(clientOptions)
}
Expand Down Expand Up @@ -817,6 +831,9 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli
override fun supplementalDocuments(): SupplementalDocumentService.WithRawResponse =
supplementalDocuments

override fun entityOnboardingSessions(): EntityOnboardingSessionService.WithRawResponse =
entityOnboardingSessions

override fun programs(): ProgramService.WithRawResponse = programs

override fun accountStatements(): AccountStatementService.WithRawResponse =
Expand Down
Loading
Loading