From 26eec454b82d24a122d45b45a02eea1ba89de7c7 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 19:11:27 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 4 ++-- .../models/checktransfers/CheckTransfer.kt | 21 +++++++++++++++++++ .../api/models/physicalcards/PhysicalCard.kt | 21 +++++++++++++++++++ .../physicalcards/PhysicalCardCreateParams.kt | 21 +++++++++++++++++++ 4 files changed, 65 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index 989a349be..e08e2557e 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 230 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-e2b7de6202d48efc0e77fd72d2788987e6e3ecf2dfff8a491b88fe9a838f0bd5.yml -openapi_spec_hash: 5af8bcd38aae780c364688cb048d258b +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-d9f5f3bab4d163b340b6737dde4f7a46bca89379801bcc761c4221a24f8cc4cf.yml +openapi_spec_hash: 7b5eddf42e9fa57ec04b5b1b6d9ff872 config_hash: ff2eb5f192b4de36611b37b27961c2d8 diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransfer.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransfer.kt index 7e5b7cdfe..c3e220b29 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransfer.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransfer.kt @@ -5459,6 +5459,13 @@ private constructor( /** The check has been delivered. */ @JvmField val DELIVERED = of("delivered") + /** + * There is an issue preventing delivery. The delivery will be attempted again + * if possible. If the issue cannot be resolved, the check will be returned to + * sender. + */ + @JvmField val DELIVERY_ISSUE = of("delivery_issue") + /** Delivery failed and the check was returned to sender. */ @JvmField val RETURNED_TO_SENDER = of("returned_to_sender") @@ -5473,6 +5480,12 @@ private constructor( PROCESSED_FOR_DELIVERY, /** The check has been delivered. */ DELIVERED, + /** + * There is an issue preventing delivery. The delivery will be attempted again + * if possible. If the issue cannot be resolved, the check will be returned to + * sender. + */ + DELIVERY_ISSUE, /** Delivery failed and the check was returned to sender. */ RETURNED_TO_SENDER, } @@ -5493,6 +5506,12 @@ private constructor( PROCESSED_FOR_DELIVERY, /** The check has been delivered. */ DELIVERED, + /** + * There is an issue preventing delivery. The delivery will be attempted again + * if possible. If the issue cannot be resolved, the check will be returned to + * sender. + */ + DELIVERY_ISSUE, /** Delivery failed and the check was returned to sender. */ RETURNED_TO_SENDER, /** @@ -5514,6 +5533,7 @@ private constructor( IN_TRANSIT -> Value.IN_TRANSIT PROCESSED_FOR_DELIVERY -> Value.PROCESSED_FOR_DELIVERY DELIVERED -> Value.DELIVERED + DELIVERY_ISSUE -> Value.DELIVERY_ISSUE RETURNED_TO_SENDER -> Value.RETURNED_TO_SENDER else -> Value._UNKNOWN } @@ -5532,6 +5552,7 @@ private constructor( IN_TRANSIT -> Known.IN_TRANSIT PROCESSED_FOR_DELIVERY -> Known.PROCESSED_FOR_DELIVERY DELIVERED -> Known.DELIVERED + DELIVERY_ISSUE -> Known.DELIVERY_ISSUE RETURNED_TO_SENDER -> Known.RETURNED_TO_SENDER else -> throw IncreaseInvalidDataException("Unknown Category: $value") } diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCard.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCard.kt index 43a64cade..b45dc6403 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCard.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCard.kt @@ -2796,6 +2796,13 @@ private constructor( /** The physical card has been delivered. */ @JvmField val DELIVERED = of("delivered") + /** + * There is an issue preventing delivery. The delivery will be attempted + * again if possible. If the issue cannot be resolved, the physical card + * will be returned to sender. + */ + @JvmField val DELIVERY_ISSUE = of("delivery_issue") + /** Delivery failed and the physical card was returned to sender. */ @JvmField val RETURNED_TO_SENDER = of("returned_to_sender") @@ -2810,6 +2817,12 @@ private constructor( PROCESSED_FOR_DELIVERY, /** The physical card has been delivered. */ DELIVERED, + /** + * There is an issue preventing delivery. The delivery will be attempted + * again if possible. If the issue cannot be resolved, the physical card + * will be returned to sender. + */ + DELIVERY_ISSUE, /** Delivery failed and the physical card was returned to sender. */ RETURNED_TO_SENDER, } @@ -2831,6 +2844,12 @@ private constructor( PROCESSED_FOR_DELIVERY, /** The physical card has been delivered. */ DELIVERED, + /** + * There is an issue preventing delivery. The delivery will be attempted + * again if possible. If the issue cannot be resolved, the physical card + * will be returned to sender. + */ + DELIVERY_ISSUE, /** Delivery failed and the physical card was returned to sender. */ RETURNED_TO_SENDER, /** @@ -2852,6 +2871,7 @@ private constructor( IN_TRANSIT -> Value.IN_TRANSIT PROCESSED_FOR_DELIVERY -> Value.PROCESSED_FOR_DELIVERY DELIVERED -> Value.DELIVERED + DELIVERY_ISSUE -> Value.DELIVERY_ISSUE RETURNED_TO_SENDER -> Value.RETURNED_TO_SENDER else -> Value._UNKNOWN } @@ -2870,6 +2890,7 @@ private constructor( IN_TRANSIT -> Known.IN_TRANSIT PROCESSED_FOR_DELIVERY -> Known.PROCESSED_FOR_DELIVERY DELIVERED -> Known.DELIVERED + DELIVERY_ISSUE -> Known.DELIVERY_ISSUE RETURNED_TO_SENDER -> Known.RETURNED_TO_SENDER else -> throw IncreaseInvalidDataException("Unknown Category: $value") } diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/physicalcards/PhysicalCardCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/physicalcards/PhysicalCardCreateParams.kt index e3c48a3a1..0b64d4607 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/physicalcards/PhysicalCardCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/physicalcards/PhysicalCardCreateParams.kt @@ -745,6 +745,13 @@ private constructor( /** The physical card has been delivered. */ @JvmField val DELIVERED = of("delivered") + /** + * There is an issue preventing delivery. The delivery will be attempted again if + * possible. If the issue cannot be resolved, the physical card will be returned to + * sender. + */ + @JvmField val DELIVERY_ISSUE = of("delivery_issue") + /** Delivery failed and the physical card was returned to sender. */ @JvmField val RETURNED_TO_SENDER = of("returned_to_sender") @@ -759,6 +766,12 @@ private constructor( PROCESSED_FOR_DELIVERY, /** The physical card has been delivered. */ DELIVERED, + /** + * There is an issue preventing delivery. The delivery will be attempted again if + * possible. If the issue cannot be resolved, the physical card will be returned to + * sender. + */ + DELIVERY_ISSUE, /** Delivery failed and the physical card was returned to sender. */ RETURNED_TO_SENDER, } @@ -779,6 +792,12 @@ private constructor( PROCESSED_FOR_DELIVERY, /** The physical card has been delivered. */ DELIVERED, + /** + * There is an issue preventing delivery. The delivery will be attempted again if + * possible. If the issue cannot be resolved, the physical card will be returned to + * sender. + */ + DELIVERY_ISSUE, /** Delivery failed and the physical card was returned to sender. */ RETURNED_TO_SENDER, /** An enum member indicating that [Category] was instantiated with an unknown value. */ @@ -797,6 +816,7 @@ private constructor( IN_TRANSIT -> Value.IN_TRANSIT PROCESSED_FOR_DELIVERY -> Value.PROCESSED_FOR_DELIVERY DELIVERED -> Value.DELIVERED + DELIVERY_ISSUE -> Value.DELIVERY_ISSUE RETURNED_TO_SENDER -> Value.RETURNED_TO_SENDER else -> Value._UNKNOWN } @@ -815,6 +835,7 @@ private constructor( IN_TRANSIT -> Known.IN_TRANSIT PROCESSED_FOR_DELIVERY -> Known.PROCESSED_FOR_DELIVERY DELIVERED -> Known.DELIVERED + DELIVERY_ISSUE -> Known.DELIVERY_ISSUE RETURNED_TO_SENDER -> Known.RETURNED_TO_SENDER else -> throw IncreaseInvalidDataException("Unknown Category: $value") } From b3759ad9aa1e47212a2fc1a1620d565dd12d39e7 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 19:11:53 +0000 Subject: [PATCH 2/2] release: 0.381.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 18952c86a..9318fbe87 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.380.0" + ".": "0.381.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index bf2ed187c..551af0b2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.381.0 (2025-12-15) + +Full Changelog: [v0.380.0...v0.381.0](https://github.com/Increase/increase-java/compare/v0.380.0...v0.381.0) + +### Features + +* **api:** api update ([26eec45](https://github.com/Increase/increase-java/commit/26eec454b82d24a122d45b45a02eea1ba89de7c7)) + ## 0.380.0 (2025-12-15) Full Changelog: [v0.379.0...v0.380.0](https://github.com/Increase/increase-java/compare/v0.379.0...v0.380.0) diff --git a/README.md b/README.md index 9f878ca54..52efb7725 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.380.0) -[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.380.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.380.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.381.0) +[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.381.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.381.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.380.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.381.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.380.0") +implementation("com.increase.api:increase-java:0.381.0") ``` ### Maven @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.380.0") com.increase.api increase-java - 0.380.0 + 0.381.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index 9ceaf8edd..c6ace6a2a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "com.increase.api" - version = "0.380.0" // x-release-please-version + version = "0.381.0" // x-release-please-version } subprojects {