From 39825593dced35f965da7818c2cef9ebced517ed Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 19 Sep 2025 00:44:56 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 4 +-- .../RealTimeDecisionActionParams.kt | 35 ++++++------------- 2 files changed, 12 insertions(+), 27 deletions(-) diff --git a/.stats.yml b/.stats.yml index 5d419a59b..d5dac36dd 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 213 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-61d42e1f44023df8161e3b35d6154011e638f78b3b232379396ea8980d6257b5.yml -openapi_spec_hash: 8831b733d617f5c7ee39db3cb62da20c +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-8d71e78a4afd7e1ce2436bf2428777d623f468bb3b6c37c36ed8ed3155fe6c77.yml +openapi_spec_hash: 3064d7c7468a53e4797ef16b648fd06d config_hash: e1e8bc2138a13f290956ae6687f099cd diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimedecisions/RealTimeDecisionActionParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimedecisions/RealTimeDecisionActionParams.kt index a1c79f545..179ae0a68 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimedecisions/RealTimeDecisionActionParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimedecisions/RealTimeDecisionActionParams.kt @@ -1803,14 +1803,9 @@ private constructor( /** * Your decisions on whether or not each provided address component is a match. Your * response here is evaluated against the customer's provided `postal_code` and `line1`, - * and an appropriate network response is generated. For example, if you would like to - * approve all transactions for a given card, you can submit `match` for both - * `postal_code` and `line1` and Increase will generate an approval with an Address - * Verification System (AVS) code that will match all of the available address - * information, or will report that no check was performed if no address information is - * available. If you do not provide a response, the address verification result will be - * calculated by Increase using the available address information available on the card. - * If none is available, Increase will report that no check was performed. + * and an appropriate network response is generated. For more information, see our + * [Address Verification System Codes and Overrides](https://increase.com/documentation/address-verification-system-codes-and-overrides) + * guide. * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. * if the server responded with an unexpected value). @@ -1868,15 +1863,10 @@ private constructor( /** * Your decisions on whether or not each provided address component is a match. Your * response here is evaluated against the customer's provided `postal_code` and - * `line1`, and an appropriate network response is generated. For example, if you - * would like to approve all transactions for a given card, you can submit `match` - * for both `postal_code` and `line1` and Increase will generate an approval with an - * Address Verification System (AVS) code that will match all of the available - * address information, or will report that no check was performed if no address - * information is available. If you do not provide a response, the address - * verification result will be calculated by Increase using the available address - * information available on the card. If none is available, Increase will report - * that no check was performed. + * `line1`, and an appropriate network response is generated. For more information, + * see our + * [Address Verification System Codes and Overrides](https://increase.com/documentation/address-verification-system-codes-and-overrides) + * guide. */ fun cardholderAddressVerificationResult( cardholderAddressVerificationResult: CardholderAddressVerificationResult @@ -1965,14 +1955,9 @@ private constructor( /** * Your decisions on whether or not each provided address component is a match. Your * response here is evaluated against the customer's provided `postal_code` and `line1`, - * and an appropriate network response is generated. For example, if you would like to - * approve all transactions for a given card, you can submit `match` for both - * `postal_code` and `line1` and Increase will generate an approval with an Address - * Verification System (AVS) code that will match all of the available address - * information, or will report that no check was performed if no address information is - * available. If you do not provide a response, the address verification result will be - * calculated by Increase using the available address information available on the card. - * If none is available, Increase will report that no check was performed. + * and an appropriate network response is generated. For more information, see our + * [Address Verification System Codes and Overrides](https://increase.com/documentation/address-verification-system-codes-and-overrides) + * guide. */ class CardholderAddressVerificationResult private constructor( From 460841b0a961bf2fe11a9d36e94c3313d08cddab Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 19 Sep 2025 00:45:22 +0000 Subject: [PATCH 2/2] release: 0.331.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 10 +++++----- build.gradle.kts | 2 +- 4 files changed, 15 insertions(+), 7 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7f9560adf..fd28aa524 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.330.0" + ".": "0.331.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index a7cd8bc6a..af681693c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.331.0 (2025-09-19) + +Full Changelog: [v0.330.0...v0.331.0](https://github.com/Increase/increase-java/compare/v0.330.0...v0.331.0) + +### Features + +* **api:** api update ([3982559](https://github.com/Increase/increase-java/commit/39825593dced35f965da7818c2cef9ebced517ed)) + ## 0.330.0 (2025-09-18) Full Changelog: [v0.329.0...v0.330.0](https://github.com/Increase/increase-java/compare/v0.329.0...v0.330.0) diff --git a/README.md b/README.md index 5221cde9b..fc67dd6d7 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.330.0) -[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.330.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.330.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.331.0) +[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.331.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.331.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.330.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.331.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.330.0") +implementation("com.increase.api:increase-java:0.331.0") ``` ### Maven @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.330.0") com.increase.api increase-java - 0.330.0 + 0.331.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index 69fd300a0..c727ff2ce 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "com.increase.api" - version = "0.330.0" // x-release-please-version + version = "0.331.0" // x-release-please-version } subprojects {