diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c483112c6..3a1207b62 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.443.0" + ".": "0.444.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 f7a33f25a..cad09c75c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.444.0 (2026-03-03) + +Full Changelog: [v0.443.0...v0.444.0](https://github.com/Increase/increase-java/compare/v0.443.0...v0.444.0) + +### Features + +* **api:** api update ([b32fe64](https://github.com/Increase/increase-java/commit/b32fe641dae97025646f827dc60cf92f3d3d46fc)) + ## 0.443.0 (2026-03-03) Full Changelog: [v0.442.0...v0.443.0](https://github.com/Increase/increase-java/compare/v0.442.0...v0.443.0) diff --git a/README.md b/README.md index 8811a4e2e..77c84fdc7 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.443.0) -[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.443.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.443.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.444.0) +[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.444.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.444.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.443.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.444.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.443.0") +implementation("com.increase.api:increase-java:0.444.0") ``` ### Maven @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.443.0") com.increase.api increase-java - 0.443.0 + 0.444.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index a7db789a5..8121f0cbd 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "com.increase.api" - version = "0.443.0" // x-release-please-version + version = "0.444.0" // x-release-please-version } subprojects { diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/Entity.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/Entity.kt index 63172d64e..4a8858d71 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/Entity.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/Entity.kt @@ -7805,6 +7805,9 @@ private constructor( /** Persona. See https://withpersona.com for more information. */ @JvmField val PERSONA = of("persona") + /** Taktile. See https://taktile.com for more information. */ + @JvmField val TAKTILE = of("taktile") + @JvmStatic fun of(value: String) = Vendor(JsonField.of(value)) } @@ -7818,6 +7821,8 @@ private constructor( OSCILAR, /** Persona. See https://withpersona.com for more information. */ PERSONA, + /** Taktile. See https://taktile.com for more information. */ + TAKTILE, } /** @@ -7838,6 +7843,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. */ @@ -7857,6 +7864,7 @@ private constructor( MIDDESK -> Value.MIDDESK OSCILAR -> Value.OSCILAR PERSONA -> Value.PERSONA + TAKTILE -> Value.TAKTILE else -> Value._UNKNOWN } @@ -7875,6 +7883,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-java-core/src/main/kotlin/com/increase/api/models/entities/EntityCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityCreateParams.kt index 051ded130..47b29e159 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityCreateParams.kt @@ -11679,6 +11679,9 @@ private constructor( /** Persona. See https://withpersona.com for more information. */ @JvmField val PERSONA = of("persona") + /** Taktile. See https://taktile.com for more information. */ + @JvmField val TAKTILE = of("taktile") + @JvmStatic fun of(value: String) = Vendor(JsonField.of(value)) } @@ -11692,6 +11695,8 @@ private constructor( OSCILAR, /** Persona. See https://withpersona.com for more information. */ PERSONA, + /** Taktile. See https://taktile.com for more information. */ + TAKTILE, } /** @@ -11712,6 +11717,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. */ @@ -11731,6 +11738,7 @@ private constructor( MIDDESK -> Value.MIDDESK OSCILAR -> Value.OSCILAR PERSONA -> Value.PERSONA + TAKTILE -> Value.TAKTILE else -> Value._UNKNOWN } @@ -11749,6 +11757,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-java-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateParams.kt index e65dba7e5..743792e91 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateParams.kt @@ -3222,6 +3222,9 @@ private constructor( /** Persona. See https://withpersona.com for more information. */ @JvmField val PERSONA = of("persona") + /** Taktile. See https://taktile.com for more information. */ + @JvmField val TAKTILE = of("taktile") + @JvmStatic fun of(value: String) = Vendor(JsonField.of(value)) } @@ -3235,6 +3238,8 @@ private constructor( OSCILAR, /** Persona. See https://withpersona.com for more information. */ PERSONA, + /** Taktile. See https://taktile.com for more information. */ + TAKTILE, } /** @@ -3255,6 +3260,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. */ @@ -3274,6 +3281,7 @@ private constructor( MIDDESK -> Value.MIDDESK OSCILAR -> Value.OSCILAR PERSONA -> Value.PERSONA + TAKTILE -> Value.TAKTILE else -> Value._UNKNOWN } @@ -3292,6 +3300,7 @@ private constructor( MIDDESK -> Known.MIDDESK OSCILAR -> Known.OSCILAR PERSONA -> Known.PERSONA + TAKTILE -> Known.TAKTILE else -> throw IncreaseInvalidDataException("Unknown Vendor: $value") }