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.386.0"
".": "0.387.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: 231
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-2304a782c25d2a6b9586de2f6e2b536b5abbf62735f9c18ed0551607f134b714.yml
openapi_spec_hash: 67d6de7181215abe88dcc3da557a1e0d
config_hash: 5a0bf28bf735edf93f36c6c808711847
configured_endpoints: 227
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-60f9bca532c8805735c227730bbb14858faa64bfd5f83a1a78640f0119a3f99c.yml
openapi_spec_hash: 17ddd87efe6c029f2fa660c8781ccfaf
config_hash: ca52ca9a2968f330339fd50c1a386e05
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.387.0 (2025-12-18)

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

### Features

* **api:** api update ([010a893](https://github.com/Increase/increase-java/commit/010a89332ca59f6c123c8d1d95c86c470e0aa15b))

## 0.386.0 (2025-12-18)

Full Changelog: [v0.385.0...v0.386.0](https://github.com/Increase/increase-java/compare/v0.385.0...v0.386.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.386.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.386.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.386.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.387.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.387.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.387.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.386.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.387.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.386.0")
implementation("com.increase.api:increase-java:0.387.0")
```

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ 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.DocumentService
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 @@ -175,8 +174,6 @@ interface IncreaseClient {

fun fileLinks(): FileLinkService

fun documents(): DocumentService

fun exports(): ExportService

fun events(): EventService
Expand Down Expand Up @@ -315,8 +312,6 @@ interface IncreaseClient {

fun fileLinks(): FileLinkService.WithRawResponse

fun documents(): DocumentService.WithRawResponse

fun exports(): ExportService.WithRawResponse

fun events(): EventService.WithRawResponse
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ 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.DocumentServiceAsync
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 @@ -175,8 +174,6 @@ interface IncreaseClientAsync {

fun fileLinks(): FileLinkServiceAsync

fun documents(): DocumentServiceAsync

fun exports(): ExportServiceAsync

fun events(): EventServiceAsync
Expand Down Expand Up @@ -319,8 +316,6 @@ interface IncreaseClientAsync {

fun fileLinks(): FileLinkServiceAsync.WithRawResponse

fun documents(): DocumentServiceAsync.WithRawResponse

fun exports(): ExportServiceAsync.WithRawResponse

fun events(): EventServiceAsync.WithRawResponse
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ 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.DocumentServiceAsync
import com.increase.api.services.async.DocumentServiceAsyncImpl
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 @@ -288,10 +286,6 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa
FileLinkServiceAsyncImpl(clientOptionsWithUserAgent)
}

private val documents: DocumentServiceAsync by lazy {
DocumentServiceAsyncImpl(clientOptionsWithUserAgent)
}

private val exports: ExportServiceAsync by lazy {
ExportServiceAsyncImpl(clientOptionsWithUserAgent)
}
Expand Down Expand Up @@ -454,8 +448,6 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa

override fun fileLinks(): FileLinkServiceAsync = fileLinks

override fun documents(): DocumentServiceAsync = documents

override fun exports(): ExportServiceAsync = exports

override fun events(): EventServiceAsync = events
Expand Down Expand Up @@ -658,10 +650,6 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa
FileLinkServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}

private val documents: DocumentServiceAsync.WithRawResponse by lazy {
DocumentServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}

private val exports: ExportServiceAsync.WithRawResponse by lazy {
ExportServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}
Expand Down Expand Up @@ -839,8 +827,6 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa

override fun fileLinks(): FileLinkServiceAsync.WithRawResponse = fileLinks

override fun documents(): DocumentServiceAsync.WithRawResponse = documents

override fun exports(): ExportServiceAsync.WithRawResponse = exports

override fun events(): EventServiceAsync.WithRawResponse = events
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ 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.DocumentService
import com.increase.api.services.blocking.DocumentServiceImpl
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 @@ -279,10 +277,6 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli
FileLinkServiceImpl(clientOptionsWithUserAgent)
}

private val documents: DocumentService by lazy {
DocumentServiceImpl(clientOptionsWithUserAgent)
}

private val exports: ExportService by lazy { ExportServiceImpl(clientOptionsWithUserAgent) }

private val events: EventService by lazy { EventServiceImpl(clientOptionsWithUserAgent) }
Expand Down Expand Up @@ -437,8 +431,6 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli

override fun fileLinks(): FileLinkService = fileLinks

override fun documents(): DocumentService = documents

override fun exports(): ExportService = exports

override fun events(): EventService = events
Expand Down Expand Up @@ -638,10 +630,6 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli
FileLinkServiceImpl.WithRawResponseImpl(clientOptions)
}

private val documents: DocumentService.WithRawResponse by lazy {
DocumentServiceImpl.WithRawResponseImpl(clientOptions)
}

private val exports: ExportService.WithRawResponse by lazy {
ExportServiceImpl.WithRawResponseImpl(clientOptions)
}
Expand Down Expand Up @@ -816,8 +804,6 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli

override fun fileLinks(): FileLinkService.WithRawResponse = fileLinks

override fun documents(): DocumentService.WithRawResponse = documents

override fun exports(): ExportService.WithRawResponse = exports

override fun events(): EventService.WithRawResponse = events
Expand Down
Loading
Loading