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.420.0"
".": "0.421.0"
}
4 changes: 2 additions & 2 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-43f9f952601cef2893cb1f66276d2f820ddaa8f3f628f2787bce991dbae6b079.yml
openapi_spec_hash: dde142c551d19b01bfde45f2616cb7d7
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-aad9dbf54c66e9aa31deefc9ea241e0c1c2155207f61d606e94478bb5d650c38.yml
openapi_spec_hash: f5e641b92f8a3feaefad8bdbc278db77
config_hash: 27e44ed36b9c5617b580ead7231a594a
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.421.0 (2026-02-05)

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

### Features

* **api:** api update ([a7366d9](https://github.com/Increase/increase-java/commit/a7366d93a6335dfe0965de8f41f126f35741ab19))

## 0.420.0 (2026-02-04)

Full Changelog: [v0.419.0...v0.420.0](https://github.com/Increase/increase-java/compare/v0.419.0...v0.420.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.420.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.420.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.420.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.421.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.421.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.421.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.420.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.421.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.420.0")
implementation("com.increase.api:increase-java:0.421.0")
```

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

subprojects {
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -513,6 +513,14 @@ private constructor(
val BLOCKCHAIN_ONRAMP_TRANSFER_INSTRUCTION =
of("blockchain_onramp_transfer_instruction")

/**
* Blockchain Off-Ramp Transfer Instruction: details will be under the
* `blockchain_offramp_transfer_instruction` object.
*/
@JvmField
val BLOCKCHAIN_OFFRAMP_TRANSFER_INSTRUCTION =
of("blockchain_offramp_transfer_instruction")

/**
* Blockchain Off-Ramp Transfer Intention: details will be under the
* `blockchain_offramp_transfer_intention` object.
Expand Down Expand Up @@ -590,6 +598,11 @@ private constructor(
* `blockchain_onramp_transfer_instruction` object.
*/
BLOCKCHAIN_ONRAMP_TRANSFER_INSTRUCTION,
/**
* Blockchain Off-Ramp Transfer Instruction: details will be under the
* `blockchain_offramp_transfer_instruction` object.
*/
BLOCKCHAIN_OFFRAMP_TRANSFER_INSTRUCTION,
/**
* Blockchain Off-Ramp Transfer Intention: details will be under the
* `blockchain_offramp_transfer_intention` object.
Expand Down Expand Up @@ -670,6 +683,11 @@ private constructor(
* `blockchain_onramp_transfer_instruction` object.
*/
BLOCKCHAIN_ONRAMP_TRANSFER_INSTRUCTION,
/**
* Blockchain Off-Ramp Transfer Instruction: details will be under the
* `blockchain_offramp_transfer_instruction` object.
*/
BLOCKCHAIN_OFFRAMP_TRANSFER_INSTRUCTION,
/**
* Blockchain Off-Ramp Transfer Intention: details will be under the
* `blockchain_offramp_transfer_intention` object.
Expand Down Expand Up @@ -706,6 +724,8 @@ private constructor(
CARD_PUSH_TRANSFER_INSTRUCTION -> Value.CARD_PUSH_TRANSFER_INSTRUCTION
BLOCKCHAIN_ONRAMP_TRANSFER_INSTRUCTION ->
Value.BLOCKCHAIN_ONRAMP_TRANSFER_INSTRUCTION
BLOCKCHAIN_OFFRAMP_TRANSFER_INSTRUCTION ->
Value.BLOCKCHAIN_OFFRAMP_TRANSFER_INSTRUCTION
BLOCKCHAIN_OFFRAMP_TRANSFER_INTENTION ->
Value.BLOCKCHAIN_OFFRAMP_TRANSFER_INTENTION
OTHER -> Value.OTHER
Expand Down Expand Up @@ -739,6 +759,8 @@ private constructor(
CARD_PUSH_TRANSFER_INSTRUCTION -> Known.CARD_PUSH_TRANSFER_INSTRUCTION
BLOCKCHAIN_ONRAMP_TRANSFER_INSTRUCTION ->
Known.BLOCKCHAIN_ONRAMP_TRANSFER_INSTRUCTION
BLOCKCHAIN_OFFRAMP_TRANSFER_INSTRUCTION ->
Known.BLOCKCHAIN_OFFRAMP_TRANSFER_INSTRUCTION
BLOCKCHAIN_OFFRAMP_TRANSFER_INTENTION ->
Known.BLOCKCHAIN_OFFRAMP_TRANSFER_INTENTION
OTHER -> Known.OTHER
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,17 @@ internal class PendingTransactionListPageResponseTest {
.transferId("ach_transfer_uoxatyh3lt5evrsdvo7q")
.build()
)
.blockchainOfframpTransferInstruction(
PendingTransaction.Source.BlockchainOfframpTransferInstruction
.builder()
.sourceBlockchainAddressId(
"blockchain_address_tijjpqp9t5d358ehydqi"
)
.transferId(
"blockchain_offramp_transfer_sqd2x3ti6u2sy91v696m"
)
.build()
)
.blockchainOfframpTransferIntention(
PendingTransaction.Source.BlockchainOfframpTransferIntention
.builder()
Expand Down Expand Up @@ -451,6 +462,15 @@ internal class PendingTransactionListPageResponseTest {
.transferId("ach_transfer_uoxatyh3lt5evrsdvo7q")
.build()
)
.blockchainOfframpTransferInstruction(
PendingTransaction.Source.BlockchainOfframpTransferInstruction
.builder()
.sourceBlockchainAddressId(
"blockchain_address_tijjpqp9t5d358ehydqi"
)
.transferId("blockchain_offramp_transfer_sqd2x3ti6u2sy91v696m")
.build()
)
.blockchainOfframpTransferIntention(
PendingTransaction.Source.BlockchainOfframpTransferIntention
.builder()
Expand Down Expand Up @@ -841,6 +861,17 @@ internal class PendingTransactionListPageResponseTest {
.transferId("ach_transfer_uoxatyh3lt5evrsdvo7q")
.build()
)
.blockchainOfframpTransferInstruction(
PendingTransaction.Source.BlockchainOfframpTransferInstruction
.builder()
.sourceBlockchainAddressId(
"blockchain_address_tijjpqp9t5d358ehydqi"
)
.transferId(
"blockchain_offramp_transfer_sqd2x3ti6u2sy91v696m"
)
.build()
)
.blockchainOfframpTransferIntention(
PendingTransaction.Source.BlockchainOfframpTransferIntention
.builder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,14 @@ internal class PendingTransactionTest {
.transferId("ach_transfer_uoxatyh3lt5evrsdvo7q")
.build()
)
.blockchainOfframpTransferInstruction(
PendingTransaction.Source.BlockchainOfframpTransferInstruction.builder()
.sourceBlockchainAddressId(
"blockchain_address_tijjpqp9t5d358ehydqi"
)
.transferId("blockchain_offramp_transfer_sqd2x3ti6u2sy91v696m")
.build()
)
.blockchainOfframpTransferIntention(
PendingTransaction.Source.BlockchainOfframpTransferIntention.builder()
.sourceBlockchainAddressId(
Expand Down Expand Up @@ -402,6 +410,12 @@ internal class PendingTransactionTest {
.transferId("ach_transfer_uoxatyh3lt5evrsdvo7q")
.build()
)
.blockchainOfframpTransferInstruction(
PendingTransaction.Source.BlockchainOfframpTransferInstruction.builder()
.sourceBlockchainAddressId("blockchain_address_tijjpqp9t5d358ehydqi")
.transferId("blockchain_offramp_transfer_sqd2x3ti6u2sy91v696m")
.build()
)
.blockchainOfframpTransferIntention(
PendingTransaction.Source.BlockchainOfframpTransferIntention.builder()
.sourceBlockchainAddressId("blockchain_address_tijjpqp9t5d358ehydqi")
Expand Down Expand Up @@ -752,6 +766,14 @@ internal class PendingTransactionTest {
.transferId("ach_transfer_uoxatyh3lt5evrsdvo7q")
.build()
)
.blockchainOfframpTransferInstruction(
PendingTransaction.Source.BlockchainOfframpTransferInstruction.builder()
.sourceBlockchainAddressId(
"blockchain_address_tijjpqp9t5d358ehydqi"
)
.transferId("blockchain_offramp_transfer_sqd2x3ti6u2sy91v696m")
.build()
)
.blockchainOfframpTransferIntention(
PendingTransaction.Source.BlockchainOfframpTransferIntention.builder()
.sourceBlockchainAddressId(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,17 @@ internal class CardAuthorizationCreateResponseTest {
.transferId("ach_transfer_uoxatyh3lt5evrsdvo7q")
.build()
)
.blockchainOfframpTransferInstruction(
PendingTransaction.Source.BlockchainOfframpTransferInstruction
.builder()
.sourceBlockchainAddressId(
"blockchain_address_tijjpqp9t5d358ehydqi"
)
.transferId(
"blockchain_offramp_transfer_sqd2x3ti6u2sy91v696m"
)
.build()
)
.blockchainOfframpTransferIntention(
PendingTransaction.Source.BlockchainOfframpTransferIntention
.builder()
Expand Down Expand Up @@ -1174,6 +1185,15 @@ internal class CardAuthorizationCreateResponseTest {
.transferId("ach_transfer_uoxatyh3lt5evrsdvo7q")
.build()
)
.blockchainOfframpTransferInstruction(
PendingTransaction.Source.BlockchainOfframpTransferInstruction
.builder()
.sourceBlockchainAddressId(
"blockchain_address_tijjpqp9t5d358ehydqi"
)
.transferId("blockchain_offramp_transfer_sqd2x3ti6u2sy91v696m")
.build()
)
.blockchainOfframpTransferIntention(
PendingTransaction.Source.BlockchainOfframpTransferIntention
.builder()
Expand Down Expand Up @@ -1933,6 +1953,17 @@ internal class CardAuthorizationCreateResponseTest {
.transferId("ach_transfer_uoxatyh3lt5evrsdvo7q")
.build()
)
.blockchainOfframpTransferInstruction(
PendingTransaction.Source.BlockchainOfframpTransferInstruction
.builder()
.sourceBlockchainAddressId(
"blockchain_address_tijjpqp9t5d358ehydqi"
)
.transferId(
"blockchain_offramp_transfer_sqd2x3ti6u2sy91v696m"
)
.build()
)
.blockchainOfframpTransferIntention(
PendingTransaction.Source.BlockchainOfframpTransferIntention
.builder()
Expand Down
Loading