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.479.0"
".": "0.480.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-f8f6ba45132556b8cd3b7aec8578241638d4774e41ac769df78731d919c1825f.yml
openapi_spec_hash: 9c80a378f9fb89d648f47596aef948d9
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-36f56ec639c447a9374b42b2dc9e278844c838d51b88c4f128e7e46662a75a81.yml
openapi_spec_hash: 7c15b5db4bf14fd71f7220a445ae2ada
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.480.0 (2026-03-16)

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

### Features

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

## 0.479.0 (2026-03-16)

Full Changelog: [v0.478.0...v0.479.0](https://github.com/Increase/increase-java/compare/v0.478.0...v0.479.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.479.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.479.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.479.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.480.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.480.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.480.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.479.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.480.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.479.0")
implementation("com.increase.api:increase-java:0.480.0")
```

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3971,6 +3971,11 @@ private constructor(
@JvmField
val TRANSACTION_NOT_ALLOWED_AT_TERMINAL = of("transaction_not_allowed_at_terminal")

/** The transaction is not supported or has been blocked by the issuer. */
@JvmField
val TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER =
of("transaction_not_supported_or_blocked_by_issuer")

/** The transaction has been flagged as suspected fraud and cannot be processed. */
@JvmField val SUSPECTED_FRAUD = of("suspected_fraud")

Expand Down Expand Up @@ -4123,6 +4128,8 @@ private constructor(
TRANSACTION_NOT_PERMITTED_TO_CARDHOLDER,
/** The transaction is not allowed at this terminal. */
TRANSACTION_NOT_ALLOWED_AT_TERMINAL,
/** The transaction is not supported or has been blocked by the issuer. */
TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER,
/** The transaction has been flagged as suspected fraud and cannot be processed. */
SUSPECTED_FRAUD,
/** The amount of activity on the card has exceeded the limit set by the issuer. */
Expand Down Expand Up @@ -4251,6 +4258,8 @@ private constructor(
TRANSACTION_NOT_PERMITTED_TO_CARDHOLDER,
/** The transaction is not allowed at this terminal. */
TRANSACTION_NOT_ALLOWED_AT_TERMINAL,
/** The transaction is not supported or has been blocked by the issuer. */
TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER,
/** The transaction has been flagged as suspected fraud and cannot be processed. */
SUSPECTED_FRAUD,
/** The amount of activity on the card has exceeded the limit set by the issuer. */
Expand Down Expand Up @@ -4347,6 +4356,8 @@ private constructor(
TRANSACTION_NOT_PERMITTED_TO_CARDHOLDER ->
Value.TRANSACTION_NOT_PERMITTED_TO_CARDHOLDER
TRANSACTION_NOT_ALLOWED_AT_TERMINAL -> Value.TRANSACTION_NOT_ALLOWED_AT_TERMINAL
TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER ->
Value.TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER
SUSPECTED_FRAUD -> Value.SUSPECTED_FRAUD
ACTIVITY_AMOUNT_LIMIT_EXCEEDED -> Value.ACTIVITY_AMOUNT_LIMIT_EXCEEDED
RESTRICTED_CARD -> Value.RESTRICTED_CARD
Expand Down Expand Up @@ -4410,6 +4421,8 @@ private constructor(
TRANSACTION_NOT_PERMITTED_TO_CARDHOLDER ->
Known.TRANSACTION_NOT_PERMITTED_TO_CARDHOLDER
TRANSACTION_NOT_ALLOWED_AT_TERMINAL -> Known.TRANSACTION_NOT_ALLOWED_AT_TERMINAL
TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER ->
Known.TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER
SUSPECTED_FRAUD -> Known.SUSPECTED_FRAUD
ACTIVITY_AMOUNT_LIMIT_EXCEEDED -> Known.ACTIVITY_AMOUNT_LIMIT_EXCEEDED
RESTRICTED_CARD -> Known.RESTRICTED_CARD
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4170,6 +4170,11 @@ private constructor(
@JvmField
val TRANSACTION_NOT_ALLOWED_AT_TERMINAL = of("transaction_not_allowed_at_terminal")

/** The transaction is not supported or has been blocked by the issuer. */
@JvmField
val TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER =
of("transaction_not_supported_or_blocked_by_issuer")

/** The transaction has been flagged as suspected fraud and cannot be processed. */
@JvmField val SUSPECTED_FRAUD = of("suspected_fraud")

Expand Down Expand Up @@ -4322,6 +4327,8 @@ private constructor(
TRANSACTION_NOT_PERMITTED_TO_CARDHOLDER,
/** The transaction is not allowed at this terminal. */
TRANSACTION_NOT_ALLOWED_AT_TERMINAL,
/** The transaction is not supported or has been blocked by the issuer. */
TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER,
/** The transaction has been flagged as suspected fraud and cannot be processed. */
SUSPECTED_FRAUD,
/** The amount of activity on the card has exceeded the limit set by the issuer. */
Expand Down Expand Up @@ -4450,6 +4457,8 @@ private constructor(
TRANSACTION_NOT_PERMITTED_TO_CARDHOLDER,
/** The transaction is not allowed at this terminal. */
TRANSACTION_NOT_ALLOWED_AT_TERMINAL,
/** The transaction is not supported or has been blocked by the issuer. */
TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER,
/** The transaction has been flagged as suspected fraud and cannot be processed. */
SUSPECTED_FRAUD,
/** The amount of activity on the card has exceeded the limit set by the issuer. */
Expand Down Expand Up @@ -4546,6 +4555,8 @@ private constructor(
TRANSACTION_NOT_PERMITTED_TO_CARDHOLDER ->
Value.TRANSACTION_NOT_PERMITTED_TO_CARDHOLDER
TRANSACTION_NOT_ALLOWED_AT_TERMINAL -> Value.TRANSACTION_NOT_ALLOWED_AT_TERMINAL
TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER ->
Value.TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER
SUSPECTED_FRAUD -> Value.SUSPECTED_FRAUD
ACTIVITY_AMOUNT_LIMIT_EXCEEDED -> Value.ACTIVITY_AMOUNT_LIMIT_EXCEEDED
RESTRICTED_CARD -> Value.RESTRICTED_CARD
Expand Down Expand Up @@ -4609,6 +4620,8 @@ private constructor(
TRANSACTION_NOT_PERMITTED_TO_CARDHOLDER ->
Known.TRANSACTION_NOT_PERMITTED_TO_CARDHOLDER
TRANSACTION_NOT_ALLOWED_AT_TERMINAL -> Known.TRANSACTION_NOT_ALLOWED_AT_TERMINAL
TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER ->
Known.TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER
SUSPECTED_FRAUD -> Known.SUSPECTED_FRAUD
ACTIVITY_AMOUNT_LIMIT_EXCEEDED -> Known.ACTIVITY_AMOUNT_LIMIT_EXCEEDED
RESTRICTED_CARD -> Known.RESTRICTED_CARD
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1998,6 +1998,11 @@ private constructor(
val TRANSACTION_NOT_ALLOWED_AT_TERMINAL =
of("transaction_not_allowed_at_terminal")

/** The transaction is not supported or has been blocked by the issuer. */
@JvmField
val TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER =
of("transaction_not_supported_or_blocked_by_issuer")

/**
* The transaction has been flagged as suspected fraud and cannot be processed.
*/
Expand Down Expand Up @@ -2169,6 +2174,8 @@ private constructor(
TRANSACTION_NOT_PERMITTED_TO_CARDHOLDER,
/** The transaction is not allowed at this terminal. */
TRANSACTION_NOT_ALLOWED_AT_TERMINAL,
/** The transaction is not supported or has been blocked by the issuer. */
TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER,
/**
* The transaction has been flagged as suspected fraud and cannot be processed.
*/
Expand Down Expand Up @@ -2314,6 +2321,8 @@ private constructor(
TRANSACTION_NOT_PERMITTED_TO_CARDHOLDER,
/** The transaction is not allowed at this terminal. */
TRANSACTION_NOT_ALLOWED_AT_TERMINAL,
/** The transaction is not supported or has been blocked by the issuer. */
TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER,
/**
* The transaction has been flagged as suspected fraud and cannot be processed.
*/
Expand Down Expand Up @@ -2425,6 +2434,8 @@ private constructor(
Value.TRANSACTION_NOT_PERMITTED_TO_CARDHOLDER
TRANSACTION_NOT_ALLOWED_AT_TERMINAL ->
Value.TRANSACTION_NOT_ALLOWED_AT_TERMINAL
TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER ->
Value.TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER
SUSPECTED_FRAUD -> Value.SUSPECTED_FRAUD
ACTIVITY_AMOUNT_LIMIT_EXCEEDED -> Value.ACTIVITY_AMOUNT_LIMIT_EXCEEDED
RESTRICTED_CARD -> Value.RESTRICTED_CARD
Expand Down Expand Up @@ -2489,6 +2500,8 @@ private constructor(
Known.TRANSACTION_NOT_PERMITTED_TO_CARDHOLDER
TRANSACTION_NOT_ALLOWED_AT_TERMINAL ->
Known.TRANSACTION_NOT_ALLOWED_AT_TERMINAL
TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER ->
Known.TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER
SUSPECTED_FRAUD -> Known.SUSPECTED_FRAUD
ACTIVITY_AMOUNT_LIMIT_EXCEEDED -> Known.ACTIVITY_AMOUNT_LIMIT_EXCEEDED
RESTRICTED_CARD -> Known.RESTRICTED_CARD
Expand Down
Loading