diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a59deb77e..d260e00dd 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.434.0" + ".": "0.435.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 330830ea7..e70311539 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 232 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-8746787e90b2f68dce823f8a9de7d73df21a9a57fbb2b9169b32704eeba38794.yml -openapi_spec_hash: caca59ae4602cbbcbda07baf1a0165b4 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-a72ddcd1864b9ba3aecab707aaaa5a3269d034eb70222d6909e4fe768da46dc2.yml +openapi_spec_hash: 99aa469f8a1c21a5418f1fcf41f9475b config_hash: d15ecbf4dc8a7a0ef99397d11b557444 diff --git a/CHANGELOG.md b/CHANGELOG.md index 030be4a78..69a76d6d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.435.0 (2026-03-03) + +Full Changelog: [v0.434.0...v0.435.0](https://github.com/Increase/increase-kotlin/compare/v0.434.0...v0.435.0) + +### Features + +* **api:** api update ([a80d923](https://github.com/Increase/increase-kotlin/commit/a80d92306dfec005a39ff149c1fe13a20a151fdb)) + ## 0.434.0 (2026-03-03) Full Changelog: [v0.433.0...v0.434.0](https://github.com/Increase/increase-kotlin/compare/v0.433.0...v0.434.0) diff --git a/README.md b/README.md index b7540c967..328be4ec6 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ -[![Maven Central](https://img.shields.io/maven-central/v/com.increase.api/increase-kotlin)](https://central.sonatype.com/artifact/com.increase.api/increase-kotlin/0.434.0) -[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-kotlin/0.434.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-kotlin/0.434.0) +[![Maven Central](https://img.shields.io/maven-central/v/com.increase.api/increase-kotlin)](https://central.sonatype.com/artifact/com.increase.api/increase-kotlin/0.435.0) +[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-kotlin/0.435.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-kotlin/0.435.0) @@ -13,7 +13,7 @@ The Increase Kotlin SDK is similar to the Increase Java SDK but with minor diffe -The REST API documentation can be found on [increase.com](https://increase.com/documentation). KDocs are available on [javadoc.io](https://javadoc.io/doc/com.increase.api/increase-kotlin/0.434.0). +The REST API documentation can be found on [increase.com](https://increase.com/documentation). KDocs are available on [javadoc.io](https://javadoc.io/doc/com.increase.api/increase-kotlin/0.435.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-kotlin:0.434.0") +implementation("com.increase.api:increase-kotlin:0.435.0") ``` ### Maven @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-kotlin:0.434.0") com.increase.api increase-kotlin - 0.434.0 + 0.435.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index d27627078..b348d1a1a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "com.increase.api" - version = "0.434.0" // x-release-please-version + version = "0.435.0" // x-release-please-version } subprojects { diff --git a/increase-kotlin-core/src/main/kotlin/com/increase/api/models/entities/Entity.kt b/increase-kotlin-core/src/main/kotlin/com/increase/api/models/entities/Entity.kt index 4ca81b052..588dedbda 100644 --- a/increase-kotlin-core/src/main/kotlin/com/increase/api/models/entities/Entity.kt +++ b/increase-kotlin-core/src/main/kotlin/com/increase/api/models/entities/Entity.kt @@ -7644,6 +7644,9 @@ private constructor( /** Persona. See https://withpersona.com for more information. */ val PERSONA = of("persona") + /** Taktile. See https://taktile.com for more information. */ + val TAKTILE = of("taktile") + fun of(value: String) = Vendor(JsonField.of(value)) } @@ -7657,6 +7660,8 @@ private constructor( OSCILAR, /** Persona. See https://withpersona.com for more information. */ PERSONA, + /** Taktile. See https://taktile.com for more information. */ + TAKTILE, } /** @@ -7677,6 +7682,8 @@ private constructor( OSCILAR, /** Persona. See https://withpersona.com for more information. */ PERSONA, + /** Taktile. See https://taktile.com for more information. */ + TAKTILE, /** * An enum member indicating that [Vendor] was instantiated with an unknown value. */ @@ -7696,6 +7703,7 @@ private constructor( MIDDESK -> Value.MIDDESK OSCILAR -> Value.OSCILAR PERSONA -> Value.PERSONA + TAKTILE -> Value.TAKTILE else -> Value._UNKNOWN } @@ -7714,6 +7722,7 @@ private constructor( MIDDESK -> Known.MIDDESK OSCILAR -> Known.OSCILAR PERSONA -> Known.PERSONA + TAKTILE -> Known.TAKTILE else -> throw IncreaseInvalidDataException("Unknown Vendor: $value") } diff --git a/increase-kotlin-core/src/main/kotlin/com/increase/api/models/entities/EntityCreateParams.kt b/increase-kotlin-core/src/main/kotlin/com/increase/api/models/entities/EntityCreateParams.kt index 34e1043e0..d16393335 100644 --- a/increase-kotlin-core/src/main/kotlin/com/increase/api/models/entities/EntityCreateParams.kt +++ b/increase-kotlin-core/src/main/kotlin/com/increase/api/models/entities/EntityCreateParams.kt @@ -11591,6 +11591,9 @@ private constructor( /** Persona. See https://withpersona.com for more information. */ val PERSONA = of("persona") + /** Taktile. See https://taktile.com for more information. */ + val TAKTILE = of("taktile") + fun of(value: String) = Vendor(JsonField.of(value)) } @@ -11604,6 +11607,8 @@ private constructor( OSCILAR, /** Persona. See https://withpersona.com for more information. */ PERSONA, + /** Taktile. See https://taktile.com for more information. */ + TAKTILE, } /** @@ -11624,6 +11629,8 @@ private constructor( OSCILAR, /** Persona. See https://withpersona.com for more information. */ PERSONA, + /** Taktile. See https://taktile.com for more information. */ + TAKTILE, /** * An enum member indicating that [Vendor] was instantiated with an unknown value. */ @@ -11643,6 +11650,7 @@ private constructor( MIDDESK -> Value.MIDDESK OSCILAR -> Value.OSCILAR PERSONA -> Value.PERSONA + TAKTILE -> Value.TAKTILE else -> Value._UNKNOWN } @@ -11661,6 +11669,7 @@ private constructor( MIDDESK -> Known.MIDDESK OSCILAR -> Known.OSCILAR PERSONA -> Known.PERSONA + TAKTILE -> Known.TAKTILE else -> throw IncreaseInvalidDataException("Unknown Vendor: $value") } diff --git a/increase-kotlin-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateParams.kt b/increase-kotlin-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateParams.kt index 06b6d68ee..68ed08fa5 100644 --- a/increase-kotlin-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateParams.kt +++ b/increase-kotlin-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateParams.kt @@ -3191,6 +3191,9 @@ private constructor( /** Persona. See https://withpersona.com for more information. */ val PERSONA = of("persona") + /** Taktile. See https://taktile.com for more information. */ + val TAKTILE = of("taktile") + fun of(value: String) = Vendor(JsonField.of(value)) } @@ -3204,6 +3207,8 @@ private constructor( OSCILAR, /** Persona. See https://withpersona.com for more information. */ PERSONA, + /** Taktile. See https://taktile.com for more information. */ + TAKTILE, } /** @@ -3224,6 +3229,8 @@ private constructor( OSCILAR, /** Persona. See https://withpersona.com for more information. */ PERSONA, + /** Taktile. See https://taktile.com for more information. */ + TAKTILE, /** * An enum member indicating that [Vendor] was instantiated with an unknown value. */ @@ -3243,6 +3250,7 @@ private constructor( MIDDESK -> Value.MIDDESK OSCILAR -> Value.OSCILAR PERSONA -> Value.PERSONA + TAKTILE -> Value.TAKTILE else -> Value._UNKNOWN } @@ -3261,6 +3269,7 @@ private constructor( MIDDESK -> Known.MIDDESK OSCILAR -> Known.OSCILAR PERSONA -> Known.PERSONA + TAKTILE -> Known.TAKTILE else -> throw IncreaseInvalidDataException("Unknown Vendor: $value") }