diff --git a/.release-please-manifest.json b/.release-please-manifest.json index dea90ccf5..fb22e464d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.362.0" + ".": "0.363.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 1e5f14c3a..9a6f8ba02 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 229 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-af1c3f6f39bad6db3878ece15395915f818d9310c5535947520e935e82e8bac3.yml -openapi_spec_hash: 3291dcc6833f09527c442c898c8d11f0 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-7a6340375b0e06648ff3e7e4b8aa1527b71df0c7a3d793738ba6fe20eef6f624.yml +openapi_spec_hash: 3cb2076c8a4870d3b17d02780a295172 config_hash: ca1425272e17fa23d4466d33492334fa diff --git a/CHANGELOG.md b/CHANGELOG.md index d0616cc35..156b8f838 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 0.363.0 (2025-11-14) + +Full Changelog: [v0.362.0...v0.363.0](https://github.com/Increase/increase-java/compare/v0.362.0...v0.363.0) + +### Features + +* **api:** api update ([ac86a4b](https://github.com/Increase/increase-java/commit/ac86a4bf04cebdf00f8a668b379bdcb2cd923586)) +* **api:** api update ([9724c79](https://github.com/Increase/increase-java/commit/9724c793983494b8389b5ed74949d2fa71e051b6)) + ## 0.362.0 (2025-11-13) Full Changelog: [v0.361.1...v0.362.0](https://github.com/Increase/increase-java/compare/v0.361.1...v0.362.0) diff --git a/README.md b/README.md index 1ac7fadc2..d93897e0e 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.362.0) -[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.362.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.362.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.363.0) +[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.363.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.363.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.362.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.363.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.362.0") +implementation("com.increase.api:increase-java:0.363.0") ``` ### Maven @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.362.0") com.increase.api increase-java - 0.362.0 + 0.363.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index 1d5fab071..7cad86e06 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "com.increase.api" - version = "0.362.0" // x-release-please-version + version = "0.363.0" // x-release-please-version } subprojects { diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/files/File.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/files/File.kt index 0dba1b4bb..6a5219dea 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/files/File.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/files/File.kt @@ -724,7 +724,7 @@ private constructor( @JvmField val DIGITAL_WALLET_APP_ICON = of("digital_wallet_app_icon") /** - * A card image to be printed on the front of a physical card. This must be a 2100x1340 + * A card image to be printed on the front of a physical card. This must be a 2100x1344 * pixel PNG with no other color but black. */ @JvmField val PHYSICAL_CARD_FRONT = of("physical_card_front") @@ -829,7 +829,7 @@ private constructor( */ DIGITAL_WALLET_APP_ICON, /** - * A card image to be printed on the front of a physical card. This must be a 2100x1340 + * A card image to be printed on the front of a physical card. This must be a 2100x1344 * pixel PNG with no other color but black. */ PHYSICAL_CARD_FRONT, @@ -925,7 +925,7 @@ private constructor( */ DIGITAL_WALLET_APP_ICON, /** - * A card image to be printed on the front of a physical card. This must be a 2100x1340 + * A card image to be printed on the front of a physical card. This must be a 2100x1344 * pixel PNG with no other color but black. */ PHYSICAL_CARD_FRONT, diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileCreateParams.kt index 6316cda4c..cd04d6830 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileCreateParams.kt @@ -642,7 +642,7 @@ private constructor( @JvmField val DIGITAL_WALLET_APP_ICON = of("digital_wallet_app_icon") /** - * A card image to be printed on the front of a physical card. This must be a 2100x1340 + * A card image to be printed on the front of a physical card. This must be a 2100x1344 * pixel PNG with no other color but black. */ @JvmField val PHYSICAL_CARD_FRONT = of("physical_card_front") @@ -710,7 +710,7 @@ private constructor( */ DIGITAL_WALLET_APP_ICON, /** - * A card image to be printed on the front of a physical card. This must be a 2100x1340 + * A card image to be printed on the front of a physical card. This must be a 2100x1344 * pixel PNG with no other color but black. */ PHYSICAL_CARD_FRONT, @@ -776,7 +776,7 @@ private constructor( */ DIGITAL_WALLET_APP_ICON, /** - * A card image to be printed on the front of a physical card. This must be a 2100x1340 + * A card image to be printed on the front of a physical card. This must be a 2100x1344 * pixel PNG with no other color but black. */ PHYSICAL_CARD_FRONT, diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListParams.kt index 743f79c85..3fdedb8da 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListParams.kt @@ -658,7 +658,7 @@ private constructor( /** * A card image to be printed on the front of a physical card. This must be a - * 2100x1340 pixel PNG with no other color but black. + * 2100x1344 pixel PNG with no other color but black. */ @JvmField val PHYSICAL_CARD_FRONT = of("physical_card_front") @@ -763,7 +763,7 @@ private constructor( DIGITAL_WALLET_APP_ICON, /** * A card image to be printed on the front of a physical card. This must be a - * 2100x1340 pixel PNG with no other color but black. + * 2100x1344 pixel PNG with no other color but black. */ PHYSICAL_CARD_FRONT, /** The image to be printed on the back of a physical card. */ @@ -859,7 +859,7 @@ private constructor( DIGITAL_WALLET_APP_ICON, /** * A card image to be printed on the front of a physical card. This must be a - * 2100x1340 pixel PNG with no other color but black. + * 2100x1344 pixel PNG with no other color but black. */ PHYSICAL_CARD_FRONT, /** The image to be printed on the back of a physical card. */ diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfile.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfile.kt index 4ca8f10ca..f626eca63 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfile.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfile.kt @@ -100,7 +100,8 @@ private constructor( fun id(): String = id.getRequired("id") /** - * The identifier of the File containing the physical card's back image. + * The identifier of the File containing the physical card's back image. This will be missing + * until the image has been post-processed. * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the * server responded with an unexpected value). @@ -108,7 +109,8 @@ private constructor( fun backImageFileId(): Optional = backImageFileId.getOptional("back_image_file_id") /** - * The identifier of the File containing the physical card's carrier image. + * The identifier of the File containing the physical card's carrier image. This will be missing + * until the image has been post-processed. * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the * server responded with an unexpected value). @@ -150,7 +152,8 @@ private constructor( fun description(): String = description.getRequired("description") /** - * The identifier of the File containing the physical card's front image. + * The identifier of the File containing the physical card's front image. This will be missing + * until the image has been post-processed. * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the * server responded with an unexpected value). @@ -389,7 +392,10 @@ private constructor( */ fun id(id: JsonField) = apply { this.id = id } - /** The identifier of the File containing the physical card's back image. */ + /** + * The identifier of the File containing the physical card's back image. This will be + * missing until the image has been post-processed. + */ fun backImageFileId(backImageFileId: String?) = backImageFileId(JsonField.ofNullable(backImageFileId)) @@ -408,7 +414,10 @@ private constructor( this.backImageFileId = backImageFileId } - /** The identifier of the File containing the physical card's carrier image. */ + /** + * The identifier of the File containing the physical card's carrier image. This will be + * missing until the image has been post-processed. + */ fun carrierImageFileId(carrierImageFileId: String?) = carrierImageFileId(JsonField.ofNullable(carrierImageFileId)) @@ -484,7 +493,10 @@ private constructor( */ fun description(description: JsonField) = apply { this.description = description } - /** The identifier of the File containing the physical card's front image. */ + /** + * The identifier of the File containing the physical card's front image. This will be + * missing until the image has been post-processed. + */ fun frontImageFileId(frontImageFileId: String?) = frontImageFileId(JsonField.ofNullable(frontImageFileId))