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.314.0"
".": "0.315.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: 217
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-6d1cfc3f93b6829318d0905c04d24008ab3576d5c00d8eb17c7d55fc34beef9e.yml
openapi_spec_hash: 12f331a1ebc9c7c8465a850736a8d8c6
config_hash: 2a4a1945e6eefa24fa5b0590cf580fb4
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-e74540ca75fc4e7a0e28d2c41c53c6131dff74e1e3c1472601db19509bb77451.yml
openapi_spec_hash: 4030ac2965b556670d1b427ffc5c554b
config_hash: e1885b38eded054b77308a024c5d80cc
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.315.0 (2025-09-05)

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

### Features

* **api:** api update ([0791906](https://github.com/Increase/increase-java/commit/0791906452e6fb161b51751b0e2e191de4cf9cd4))

## 0.314.0 (2025-09-05)

Full Changelog: [v0.313.0...v0.314.0](https://github.com/Increase/increase-java/compare/v0.313.0...v0.314.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.314.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.314.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.314.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.315.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.315.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.315.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.314.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.315.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.314.0")
implementation("com.increase.api:increase-java:0.315.0")
```

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ interface IncreaseClient {

fun accountNumbers(): AccountNumberService

fun accountTransfers(): AccountTransferService

fun cards(): CardService

fun cardPayments(): CardPaymentService
Expand All @@ -123,8 +125,6 @@ interface IncreaseClient {

fun declinedTransactions(): DeclinedTransactionService

fun accountTransfers(): AccountTransferService

fun achTransfers(): AchTransferService

fun achPrenotifications(): AchPrenotificationService
Expand Down Expand Up @@ -236,6 +236,8 @@ interface IncreaseClient {

fun accountNumbers(): AccountNumberService.WithRawResponse

fun accountTransfers(): AccountTransferService.WithRawResponse

fun cards(): CardService.WithRawResponse

fun cardPayments(): CardPaymentService.WithRawResponse
Expand All @@ -258,8 +260,6 @@ interface IncreaseClient {

fun declinedTransactions(): DeclinedTransactionService.WithRawResponse

fun accountTransfers(): AccountTransferService.WithRawResponse

fun achTransfers(): AchTransferService.WithRawResponse

fun achPrenotifications(): AchPrenotificationService.WithRawResponse
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ interface IncreaseClientAsync {

fun accountNumbers(): AccountNumberServiceAsync

fun accountTransfers(): AccountTransferServiceAsync

fun cards(): CardServiceAsync

fun cardPayments(): CardPaymentServiceAsync
Expand All @@ -123,8 +125,6 @@ interface IncreaseClientAsync {

fun declinedTransactions(): DeclinedTransactionServiceAsync

fun accountTransfers(): AccountTransferServiceAsync

fun achTransfers(): AchTransferServiceAsync

fun achPrenotifications(): AchPrenotificationServiceAsync
Expand Down Expand Up @@ -240,6 +240,8 @@ interface IncreaseClientAsync {

fun accountNumbers(): AccountNumberServiceAsync.WithRawResponse

fun accountTransfers(): AccountTransferServiceAsync.WithRawResponse

fun cards(): CardServiceAsync.WithRawResponse

fun cardPayments(): CardPaymentServiceAsync.WithRawResponse
Expand All @@ -262,8 +264,6 @@ interface IncreaseClientAsync {

fun declinedTransactions(): DeclinedTransactionServiceAsync.WithRawResponse

fun accountTransfers(): AccountTransferServiceAsync.WithRawResponse

fun achTransfers(): AchTransferServiceAsync.WithRawResponse

fun achPrenotifications(): AchPrenotificationServiceAsync.WithRawResponse
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,10 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa
AccountNumberServiceAsyncImpl(clientOptionsWithUserAgent)
}

private val accountTransfers: AccountTransferServiceAsync by lazy {
AccountTransferServiceAsyncImpl(clientOptionsWithUserAgent)
}

private val cards: CardServiceAsync by lazy { CardServiceAsyncImpl(clientOptionsWithUserAgent) }

private val cardPayments: CardPaymentServiceAsync by lazy {
Expand Down Expand Up @@ -185,10 +189,6 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa
DeclinedTransactionServiceAsyncImpl(clientOptionsWithUserAgent)
}

private val accountTransfers: AccountTransferServiceAsync by lazy {
AccountTransferServiceAsyncImpl(clientOptionsWithUserAgent)
}

private val achTransfers: AchTransferServiceAsync by lazy {
AchTransferServiceAsyncImpl(clientOptionsWithUserAgent)
}
Expand Down Expand Up @@ -365,6 +365,8 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa

override fun accountNumbers(): AccountNumberServiceAsync = accountNumbers

override fun accountTransfers(): AccountTransferServiceAsync = accountTransfers

override fun cards(): CardServiceAsync = cards

override fun cardPayments(): CardPaymentServiceAsync = cardPayments
Expand All @@ -388,8 +390,6 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa

override fun declinedTransactions(): DeclinedTransactionServiceAsync = declinedTransactions

override fun accountTransfers(): AccountTransferServiceAsync = accountTransfers

override fun achTransfers(): AchTransferServiceAsync = achTransfers

override fun achPrenotifications(): AchPrenotificationServiceAsync = achPrenotifications
Expand Down Expand Up @@ -491,6 +491,10 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa
AccountNumberServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}

private val accountTransfers: AccountTransferServiceAsync.WithRawResponse by lazy {
AccountTransferServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}

private val cards: CardServiceAsync.WithRawResponse by lazy {
CardServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}
Expand Down Expand Up @@ -536,10 +540,6 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa
DeclinedTransactionServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}

private val accountTransfers: AccountTransferServiceAsync.WithRawResponse by lazy {
AccountTransferServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}

private val achTransfers: AchTransferServiceAsync.WithRawResponse by lazy {
AchTransferServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}
Expand Down Expand Up @@ -720,6 +720,9 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa

override fun accountNumbers(): AccountNumberServiceAsync.WithRawResponse = accountNumbers

override fun accountTransfers(): AccountTransferServiceAsync.WithRawResponse =
accountTransfers

override fun cards(): CardServiceAsync.WithRawResponse = cards

override fun cardPayments(): CardPaymentServiceAsync.WithRawResponse = cardPayments
Expand Down Expand Up @@ -748,9 +751,6 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa
override fun declinedTransactions(): DeclinedTransactionServiceAsync.WithRawResponse =
declinedTransactions

override fun accountTransfers(): AccountTransferServiceAsync.WithRawResponse =
accountTransfers

override fun achTransfers(): AchTransferServiceAsync.WithRawResponse = achTransfers

override fun achPrenotifications(): AchPrenotificationServiceAsync.WithRawResponse =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,10 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli
AccountNumberServiceImpl(clientOptionsWithUserAgent)
}

private val accountTransfers: AccountTransferService by lazy {
AccountTransferServiceImpl(clientOptionsWithUserAgent)
}

private val cards: CardService by lazy { CardServiceImpl(clientOptionsWithUserAgent) }

private val cardPayments: CardPaymentService by lazy {
Expand Down Expand Up @@ -183,10 +187,6 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli
DeclinedTransactionServiceImpl(clientOptionsWithUserAgent)
}

private val accountTransfers: AccountTransferService by lazy {
AccountTransferServiceImpl(clientOptionsWithUserAgent)
}

private val achTransfers: AchTransferService by lazy {
AchTransferServiceImpl(clientOptionsWithUserAgent)
}
Expand Down Expand Up @@ -350,6 +350,8 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli

override fun accountNumbers(): AccountNumberService = accountNumbers

override fun accountTransfers(): AccountTransferService = accountTransfers

override fun cards(): CardService = cards

override fun cardPayments(): CardPaymentService = cardPayments
Expand All @@ -372,8 +374,6 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli

override fun declinedTransactions(): DeclinedTransactionService = declinedTransactions

override fun accountTransfers(): AccountTransferService = accountTransfers

override fun achTransfers(): AchTransferService = achTransfers

override fun achPrenotifications(): AchPrenotificationService = achPrenotifications
Expand Down Expand Up @@ -475,6 +475,10 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli
AccountNumberServiceImpl.WithRawResponseImpl(clientOptions)
}

private val accountTransfers: AccountTransferService.WithRawResponse by lazy {
AccountTransferServiceImpl.WithRawResponseImpl(clientOptions)
}

private val cards: CardService.WithRawResponse by lazy {
CardServiceImpl.WithRawResponseImpl(clientOptions)
}
Expand Down Expand Up @@ -519,10 +523,6 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli
DeclinedTransactionServiceImpl.WithRawResponseImpl(clientOptions)
}

private val accountTransfers: AccountTransferService.WithRawResponse by lazy {
AccountTransferServiceImpl.WithRawResponseImpl(clientOptions)
}

private val achTransfers: AchTransferService.WithRawResponse by lazy {
AchTransferServiceImpl.WithRawResponseImpl(clientOptions)
}
Expand Down Expand Up @@ -702,6 +702,8 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli

override fun accountNumbers(): AccountNumberService.WithRawResponse = accountNumbers

override fun accountTransfers(): AccountTransferService.WithRawResponse = accountTransfers

override fun cards(): CardService.WithRawResponse = cards

override fun cardPayments(): CardPaymentService.WithRawResponse = cardPayments
Expand Down Expand Up @@ -730,8 +732,6 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli
override fun declinedTransactions(): DeclinedTransactionService.WithRawResponse =
declinedTransactions

override fun accountTransfers(): AccountTransferService.WithRawResponse = accountTransfers

override fun achTransfers(): AchTransferService.WithRawResponse = achTransfers

override fun achPrenotifications(): AchPrenotificationService.WithRawResponse =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ interface SimulationServiceAsync {

fun interestPayments(): InterestPaymentServiceAsync

fun accountTransfers(): AccountTransferServiceAsync

fun cardAuthorizations(): CardAuthorizationServiceAsync

fun cardAuthorizationExpirations(): CardAuthorizationExpirationServiceAsync
Expand All @@ -72,8 +74,6 @@ interface SimulationServiceAsync {

fun pendingTransactions(): PendingTransactionServiceAsync

fun accountTransfers(): AccountTransferServiceAsync

fun achTransfers(): AchTransferServiceAsync

fun inboundAchTransfers(): InboundAchTransferServiceAsync
Expand Down Expand Up @@ -123,6 +123,8 @@ interface SimulationServiceAsync {

fun interestPayments(): InterestPaymentServiceAsync.WithRawResponse

fun accountTransfers(): AccountTransferServiceAsync.WithRawResponse

fun cardAuthorizations(): CardAuthorizationServiceAsync.WithRawResponse

fun cardAuthorizationExpirations(): CardAuthorizationExpirationServiceAsync.WithRawResponse
Expand All @@ -145,8 +147,6 @@ interface SimulationServiceAsync {

fun pendingTransactions(): PendingTransactionServiceAsync.WithRawResponse

fun accountTransfers(): AccountTransferServiceAsync.WithRawResponse

fun achTransfers(): AchTransferServiceAsync.WithRawResponse

fun inboundAchTransfers(): InboundAchTransferServiceAsync.WithRawResponse
Expand Down
Loading
Loading