diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 75776e6fe..b8dfd0496 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.482.1" + ".": "0.483.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 9e9fcd4fd..b2955447b 100644 --- a/.stats.yml +++ b/.stats.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 030604502..ec6bcdfe0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index d9e2efe86..2876a1f8c 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ -[![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) @@ -13,7 +13,7 @@ The Increase Java SDK is similar to the Increase Kotlin SDK but with minor diffe -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). @@ -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 @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.482.1") com.increase.api increase-java - 0.482.1 + 0.483.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index 85e011739..a0b8d9420 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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 { diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpushtransfers/CardPushTransfer.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpushtransfers/CardPushTransfer.kt index c84bbe0f6..19d921d15 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpushtransfers/CardPushTransfer.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpushtransfers/CardPushTransfer.kt @@ -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") @@ -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. */ @@ -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. */ @@ -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 -> @@ -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 -> diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cardvalidations/CardValidation.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cardvalidations/CardValidation.kt index f5a37487e..020a10f58 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cardvalidations/CardValidation.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cardvalidations/CardValidation.kt @@ -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") @@ -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. */ @@ -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. */ @@ -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 -> @@ -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 -> diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardtokens/CardTokenCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardtokens/CardTokenCreateParams.kt index 366f041e6..5e9ecd163 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardtokens/CardTokenCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardtokens/CardTokenCreateParams.kt @@ -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") @@ -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. */ @@ -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. */ @@ -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 -> @@ -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 ->