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.482.1"
".": "0.483.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: 236
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-58c8e720561e1df665b4f5bf35a4dedba1dba3f01d20f8ef5f662d093c432f4d.yml
openapi_spec_hash: 75dfc5fb4c8d03524aa1bc5587835039
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-732196e2e3b5f785aafd5a7035f8683adc6060fe483a24787e3b6085f99d1cfe.yml
openapi_spec_hash: c929ecc168017a4a2d8343384a0a33f8
config_hash: 25d7d7aa4882db6189b4b53e8e249e80
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.483.0 (2026-03-18)

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

### Features

* **api:** api update ([4d67040](https://github.com/Increase/increase-java/commit/4d670402f8bd158c863ed497c871c6612819e8df))

## 0.482.1 (2026-03-17)

Full Changelog: [v0.482.0...v0.482.1](https://github.com/Increase/increase-java/compare/v0.482.0...v0.482.1)
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.482.1)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.482.1/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.482.1)
[![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.483.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.483.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.483.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.482.1).
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.483.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.482.1")
implementation("com.increase.api:increase-java:0.483.0")
```

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4001,6 +4001,9 @@ private constructor(
val TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT =
of("transaction_does_not_fulfill_anti_money_laundering_requirement")

/** The transaction was blocked by the cardholder. */
@JvmField val BLOCKED_BY_CARDHOLDER = of("blocked_by_cardholder")

/** The first use of the card has been blocked by the issuer. */
@JvmField val BLOCKED_FIRST_USE = of("blocked_first_use")

Expand Down Expand Up @@ -4148,6 +4151,8 @@ private constructor(
* issuer.
*/
TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT,
/** The transaction was blocked by the cardholder. */
BLOCKED_BY_CARDHOLDER,
/** The first use of the card has been blocked by the issuer. */
BLOCKED_FIRST_USE,
/** The credit issuer is currently unavailable to process the transaction. */
Expand Down Expand Up @@ -4278,6 +4283,8 @@ private constructor(
* issuer.
*/
TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT,
/** The transaction was blocked by the cardholder. */
BLOCKED_BY_CARDHOLDER,
/** The first use of the card has been blocked by the issuer. */
BLOCKED_FIRST_USE,
/** The credit issuer is currently unavailable to process the transaction. */
Expand Down Expand Up @@ -4364,6 +4371,7 @@ private constructor(
SECURITY_VIOLATION -> Value.SECURITY_VIOLATION
TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT ->
Value.TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT
BLOCKED_BY_CARDHOLDER -> Value.BLOCKED_BY_CARDHOLDER
BLOCKED_FIRST_USE -> Value.BLOCKED_FIRST_USE
CREDIT_ISSUER_UNAVAILABLE -> Value.CREDIT_ISSUER_UNAVAILABLE
NEGATIVE_CARD_VERIFICATION_VALUE_RESULTS ->
Expand Down Expand Up @@ -4429,6 +4437,7 @@ private constructor(
SECURITY_VIOLATION -> Known.SECURITY_VIOLATION
TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT ->
Known.TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT
BLOCKED_BY_CARDHOLDER -> Known.BLOCKED_BY_CARDHOLDER
BLOCKED_FIRST_USE -> Known.BLOCKED_FIRST_USE
CREDIT_ISSUER_UNAVAILABLE -> Known.CREDIT_ISSUER_UNAVAILABLE
NEGATIVE_CARD_VERIFICATION_VALUE_RESULTS ->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4200,6 +4200,9 @@ private constructor(
val TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT =
of("transaction_does_not_fulfill_anti_money_laundering_requirement")

/** The transaction was blocked by the cardholder. */
@JvmField val BLOCKED_BY_CARDHOLDER = of("blocked_by_cardholder")

/** The first use of the card has been blocked by the issuer. */
@JvmField val BLOCKED_FIRST_USE = of("blocked_first_use")

Expand Down Expand Up @@ -4347,6 +4350,8 @@ private constructor(
* issuer.
*/
TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT,
/** The transaction was blocked by the cardholder. */
BLOCKED_BY_CARDHOLDER,
/** The first use of the card has been blocked by the issuer. */
BLOCKED_FIRST_USE,
/** The credit issuer is currently unavailable to process the transaction. */
Expand Down Expand Up @@ -4477,6 +4482,8 @@ private constructor(
* issuer.
*/
TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT,
/** The transaction was blocked by the cardholder. */
BLOCKED_BY_CARDHOLDER,
/** The first use of the card has been blocked by the issuer. */
BLOCKED_FIRST_USE,
/** The credit issuer is currently unavailable to process the transaction. */
Expand Down Expand Up @@ -4563,6 +4570,7 @@ private constructor(
SECURITY_VIOLATION -> Value.SECURITY_VIOLATION
TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT ->
Value.TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT
BLOCKED_BY_CARDHOLDER -> Value.BLOCKED_BY_CARDHOLDER
BLOCKED_FIRST_USE -> Value.BLOCKED_FIRST_USE
CREDIT_ISSUER_UNAVAILABLE -> Value.CREDIT_ISSUER_UNAVAILABLE
NEGATIVE_CARD_VERIFICATION_VALUE_RESULTS ->
Expand Down Expand Up @@ -4628,6 +4636,7 @@ private constructor(
SECURITY_VIOLATION -> Known.SECURITY_VIOLATION
TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT ->
Known.TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT
BLOCKED_BY_CARDHOLDER -> Known.BLOCKED_BY_CARDHOLDER
BLOCKED_FIRST_USE -> Known.BLOCKED_FIRST_USE
CREDIT_ISSUER_UNAVAILABLE -> Known.CREDIT_ISSUER_UNAVAILABLE
NEGATIVE_CARD_VERIFICATION_VALUE_RESULTS ->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2034,6 +2034,9 @@ private constructor(
val TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT =
of("transaction_does_not_fulfill_anti_money_laundering_requirement")

/** The transaction was blocked by the cardholder. */
@JvmField val BLOCKED_BY_CARDHOLDER = of("blocked_by_cardholder")

/** The first use of the card has been blocked by the issuer. */
@JvmField val BLOCKED_FIRST_USE = of("blocked_first_use")

Expand Down Expand Up @@ -2199,6 +2202,8 @@ private constructor(
* the issuer.
*/
TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT,
/** The transaction was blocked by the cardholder. */
BLOCKED_BY_CARDHOLDER,
/** The first use of the card has been blocked by the issuer. */
BLOCKED_FIRST_USE,
/** The credit issuer is currently unavailable to process the transaction. */
Expand Down Expand Up @@ -2346,6 +2351,8 @@ private constructor(
* the issuer.
*/
TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT,
/** The transaction was blocked by the cardholder. */
BLOCKED_BY_CARDHOLDER,
/** The first use of the card has been blocked by the issuer. */
BLOCKED_FIRST_USE,
/** The credit issuer is currently unavailable to process the transaction. */
Expand Down Expand Up @@ -2442,6 +2449,7 @@ private constructor(
SECURITY_VIOLATION -> Value.SECURITY_VIOLATION
TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT ->
Value.TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT
BLOCKED_BY_CARDHOLDER -> Value.BLOCKED_BY_CARDHOLDER
BLOCKED_FIRST_USE -> Value.BLOCKED_FIRST_USE
CREDIT_ISSUER_UNAVAILABLE -> Value.CREDIT_ISSUER_UNAVAILABLE
NEGATIVE_CARD_VERIFICATION_VALUE_RESULTS ->
Expand Down Expand Up @@ -2508,6 +2516,7 @@ private constructor(
SECURITY_VIOLATION -> Known.SECURITY_VIOLATION
TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT ->
Known.TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT
BLOCKED_BY_CARDHOLDER -> Known.BLOCKED_BY_CARDHOLDER
BLOCKED_FIRST_USE -> Known.BLOCKED_FIRST_USE
CREDIT_ISSUER_UNAVAILABLE -> Known.CREDIT_ISSUER_UNAVAILABLE
NEGATIVE_CARD_VERIFICATION_VALUE_RESULTS ->
Expand Down
Loading