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.452.0"
".": "0.453.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: 234
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-5ad5e7687261a6a66ca0b94fed6765c7f703e809a4ad1ea2697f13125b2a4149.yml
openapi_spec_hash: d0109b057a653545ee169947b9aa76b2
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-561b73fd99114001dc2e93ee7371e33969398e7bc5b7e78dd1b3e8eea8e254ff.yml
openapi_spec_hash: 3b0ba693d170e8b422ba9255cdc96853
config_hash: 890ca5fa6b8209d4eaac90550c7dc62c
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.453.0 (2026-03-05)

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

### Features

* **api:** api update ([188e732](https://github.com/Increase/increase-java/commit/188e73232ba7de9af49a434d56425a841e2550d1))

## 0.452.0 (2026-03-05)

Full Changelog: [v0.451.0...v0.452.0](https://github.com/Increase/increase-java/compare/v0.451.0...v0.452.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.452.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.452.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.452.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.453.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.453.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.453.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.452.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.453.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.452.0")
implementation("com.increase.api:increase-java:0.453.0")
```

### Maven
Expand All @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.452.0")
<dependency>
<groupId>com.increase.api</groupId>
<artifactId>increase-java</artifactId>
<version>0.452.0</version>
<version>0.453.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.452.0" // x-release-please-version
version = "0.453.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 @@ -9175,11 +9175,15 @@ private constructor(
/** Increase failed to process the authorization in a timely manner. */
@JvmField val ISSUER_ERROR = of("issuer_error")

/** The physical card read had an invalid CVV or dCVV. */
@JvmField val INVALID_PHYSICAL_CARD = of("invalid_physical_card")

/**
* The physical card read had an invalid CVV, dCVV, or authorization
* request cryptogram.
* The card's authorization request cryptogram was invalid. The
* cryptogram can be from a physical card or a Digital Wallet Token
* purchase.
*/
@JvmField val INVALID_PHYSICAL_CARD = of("invalid_physical_card")
@JvmField val INVALID_CRYPTOGRAM = of("invalid_cryptogram")

/** The 3DS cardholder authentication verification value was invalid. */
@JvmField
Expand Down Expand Up @@ -9222,11 +9226,14 @@ private constructor(
enum class Known {
/** Increase failed to process the authorization in a timely manner. */
ISSUER_ERROR,
/** The physical card read had an invalid CVV or dCVV. */
INVALID_PHYSICAL_CARD,
/**
* The physical card read had an invalid CVV, dCVV, or authorization
* request cryptogram.
* The card's authorization request cryptogram was invalid. The
* cryptogram can be from a physical card or a Digital Wallet Token
* purchase.
*/
INVALID_PHYSICAL_CARD,
INVALID_CRYPTOGRAM,
/** The 3DS cardholder authentication verification value was invalid. */
INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE,
/**
Expand Down Expand Up @@ -9265,11 +9272,14 @@ private constructor(
enum class Value {
/** Increase failed to process the authorization in a timely manner. */
ISSUER_ERROR,
/** The physical card read had an invalid CVV or dCVV. */
INVALID_PHYSICAL_CARD,
/**
* The physical card read had an invalid CVV, dCVV, or authorization
* request cryptogram.
* The card's authorization request cryptogram was invalid. The
* cryptogram can be from a physical card or a Digital Wallet Token
* purchase.
*/
INVALID_PHYSICAL_CARD,
INVALID_CRYPTOGRAM,
/** The 3DS cardholder authentication verification value was invalid. */
INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE,
/**
Expand Down Expand Up @@ -9310,6 +9320,7 @@ private constructor(
when (this) {
ISSUER_ERROR -> Value.ISSUER_ERROR
INVALID_PHYSICAL_CARD -> Value.INVALID_PHYSICAL_CARD
INVALID_CRYPTOGRAM -> Value.INVALID_CRYPTOGRAM
INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE ->
Value.INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE
INTERNAL_VISA_ERROR -> Value.INTERNAL_VISA_ERROR
Expand All @@ -9335,6 +9346,7 @@ private constructor(
when (this) {
ISSUER_ERROR -> Known.ISSUER_ERROR
INVALID_PHYSICAL_CARD -> Known.INVALID_PHYSICAL_CARD
INVALID_CRYPTOGRAM -> Known.INVALID_CRYPTOGRAM
INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE ->
Known.INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE
INTERNAL_VISA_ERROR -> Known.INTERNAL_VISA_ERROR
Expand Down Expand Up @@ -10662,9 +10674,7 @@ private constructor(
@JvmField
val DECLINED_BY_STAND_IN_PROCESSING = of("declined_by_stand_in_processing")

/**
* The card read had an invalid CVV, dCVV, or authorization request cryptogram.
*/
/** The card read had an invalid CVV or dCVV. */
@JvmField val INVALID_PHYSICAL_CARD = of("invalid_physical_card")

/**
Expand All @@ -10674,6 +10684,12 @@ private constructor(
@JvmField
val MISSING_ORIGINAL_AUTHORIZATION = of("missing_original_authorization")

/**
* The card's authorization request cryptogram was invalid. The cryptogram can
* be from a physical card or a Digital Wallet Token purchase.
*/
@JvmField val INVALID_CRYPTOGRAM = of("invalid_cryptogram")

/** The transaction was declined because the 3DS authentication failed. */
@JvmField val FAILED_3DS_AUTHENTICATION = of("failed_3ds_authentication")

Expand Down Expand Up @@ -10727,15 +10743,18 @@ private constructor(
WEBHOOK_TIMED_OUT,
/** Declined by stand-in processing. */
DECLINED_BY_STAND_IN_PROCESSING,
/**
* The card read had an invalid CVV, dCVV, or authorization request cryptogram.
*/
/** The card read had an invalid CVV or dCVV. */
INVALID_PHYSICAL_CARD,
/**
* The original card authorization for this incremental authorization does not
* exist.
*/
MISSING_ORIGINAL_AUTHORIZATION,
/**
* The card's authorization request cryptogram was invalid. The cryptogram can
* be from a physical card or a Digital Wallet Token purchase.
*/
INVALID_CRYPTOGRAM,
/** The transaction was declined because the 3DS authentication failed. */
FAILED_3DS_AUTHENTICATION,
/**
Expand Down Expand Up @@ -10793,15 +10812,18 @@ private constructor(
WEBHOOK_TIMED_OUT,
/** Declined by stand-in processing. */
DECLINED_BY_STAND_IN_PROCESSING,
/**
* The card read had an invalid CVV, dCVV, or authorization request cryptogram.
*/
/** The card read had an invalid CVV or dCVV. */
INVALID_PHYSICAL_CARD,
/**
* The original card authorization for this incremental authorization does not
* exist.
*/
MISSING_ORIGINAL_AUTHORIZATION,
/**
* The card's authorization request cryptogram was invalid. The cryptogram can
* be from a physical card or a Digital Wallet Token purchase.
*/
INVALID_CRYPTOGRAM,
/** The transaction was declined because the 3DS authentication failed. */
FAILED_3DS_AUTHENTICATION,
/**
Expand Down Expand Up @@ -10847,6 +10869,7 @@ private constructor(
DECLINED_BY_STAND_IN_PROCESSING -> Value.DECLINED_BY_STAND_IN_PROCESSING
INVALID_PHYSICAL_CARD -> Value.INVALID_PHYSICAL_CARD
MISSING_ORIGINAL_AUTHORIZATION -> Value.MISSING_ORIGINAL_AUTHORIZATION
INVALID_CRYPTOGRAM -> Value.INVALID_CRYPTOGRAM
FAILED_3DS_AUTHENTICATION -> Value.FAILED_3DS_AUTHENTICATION
SUSPECTED_CARD_TESTING -> Value.SUSPECTED_CARD_TESTING
SUSPECTED_FRAUD -> Value.SUSPECTED_FRAUD
Expand Down Expand Up @@ -10881,6 +10904,7 @@ private constructor(
DECLINED_BY_STAND_IN_PROCESSING -> Known.DECLINED_BY_STAND_IN_PROCESSING
INVALID_PHYSICAL_CARD -> Known.INVALID_PHYSICAL_CARD
MISSING_ORIGINAL_AUTHORIZATION -> Known.MISSING_ORIGINAL_AUTHORIZATION
INVALID_CRYPTOGRAM -> Known.INVALID_CRYPTOGRAM
FAILED_3DS_AUTHENTICATION -> Known.FAILED_3DS_AUTHENTICATION
SUSPECTED_CARD_TESTING -> Known.SUSPECTED_CARD_TESTING
SUSPECTED_FRAUD -> Known.SUSPECTED_FRAUD
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9866,11 +9866,15 @@ private constructor(
/** Increase failed to process the authorization in a timely manner. */
@JvmField val ISSUER_ERROR = of("issuer_error")

/** The physical card read had an invalid CVV or dCVV. */
@JvmField val INVALID_PHYSICAL_CARD = of("invalid_physical_card")

/**
* The physical card read had an invalid CVV, dCVV, or authorization
* request cryptogram.
* The card's authorization request cryptogram was invalid. The
* cryptogram can be from a physical card or a Digital Wallet Token
* purchase.
*/
@JvmField val INVALID_PHYSICAL_CARD = of("invalid_physical_card")
@JvmField val INVALID_CRYPTOGRAM = of("invalid_cryptogram")

/** The 3DS cardholder authentication verification value was invalid. */
@JvmField
Expand Down Expand Up @@ -9913,11 +9917,14 @@ private constructor(
enum class Known {
/** Increase failed to process the authorization in a timely manner. */
ISSUER_ERROR,
/** The physical card read had an invalid CVV or dCVV. */
INVALID_PHYSICAL_CARD,
/**
* The physical card read had an invalid CVV, dCVV, or authorization
* request cryptogram.
* The card's authorization request cryptogram was invalid. The
* cryptogram can be from a physical card or a Digital Wallet Token
* purchase.
*/
INVALID_PHYSICAL_CARD,
INVALID_CRYPTOGRAM,
/** The 3DS cardholder authentication verification value was invalid. */
INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE,
/**
Expand Down Expand Up @@ -9956,11 +9963,14 @@ private constructor(
enum class Value {
/** Increase failed to process the authorization in a timely manner. */
ISSUER_ERROR,
/** The physical card read had an invalid CVV or dCVV. */
INVALID_PHYSICAL_CARD,
/**
* The physical card read had an invalid CVV, dCVV, or authorization
* request cryptogram.
* The card's authorization request cryptogram was invalid. The
* cryptogram can be from a physical card or a Digital Wallet Token
* purchase.
*/
INVALID_PHYSICAL_CARD,
INVALID_CRYPTOGRAM,
/** The 3DS cardholder authentication verification value was invalid. */
INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE,
/**
Expand Down Expand Up @@ -10001,6 +10011,7 @@ private constructor(
when (this) {
ISSUER_ERROR -> Value.ISSUER_ERROR
INVALID_PHYSICAL_CARD -> Value.INVALID_PHYSICAL_CARD
INVALID_CRYPTOGRAM -> Value.INVALID_CRYPTOGRAM
INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE ->
Value.INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE
INTERNAL_VISA_ERROR -> Value.INTERNAL_VISA_ERROR
Expand All @@ -10026,6 +10037,7 @@ private constructor(
when (this) {
ISSUER_ERROR -> Known.ISSUER_ERROR
INVALID_PHYSICAL_CARD -> Known.INVALID_PHYSICAL_CARD
INVALID_CRYPTOGRAM -> Known.INVALID_CRYPTOGRAM
INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE ->
Known.INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE
INTERNAL_VISA_ERROR -> Known.INTERNAL_VISA_ERROR
Expand Down
Loading
Loading