diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index f6742392e..21b7bff9c 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "0.370.1"
+ ".": "0.371.0"
}
\ No newline at end of file
diff --git a/.stats.yml b/.stats.yml
index b52e8c7d7..fe442fee6 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-bd464d151612058d8029150b376949b22d5515af23621465c0ce1c1069b91644.yml
-openapi_spec_hash: e60e1548c523a0ee7c9daa1bd988cbc5
+openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-f24e91d60005894c135a6ccad84e179e0a2cb64def7e1101904c430a8e5e5dd9.yml
+openapi_spec_hash: a63e06588ae354c03b68d6cb9d965e11
config_hash: ca1425272e17fa23d4466d33492334fa
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 39a984b40..45ec10c4b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog
+## 0.371.0 (2025-12-01)
+
+Full Changelog: [v0.370.1...v0.371.0](https://github.com/Increase/increase-java/compare/v0.370.1...v0.371.0)
+
+### Features
+
+* **api:** api update ([d0fd6ed](https://github.com/Increase/increase-java/commit/d0fd6ed0649a8afc4ca025586f042a7782f576ff))
+
## 0.370.1 (2025-11-26)
Full Changelog: [v0.370.0...v0.370.1](https://github.com/Increase/increase-java/compare/v0.370.0...v0.370.1)
diff --git a/README.md b/README.md
index 4d87d09b3..431aae63f 100644
--- a/README.md
+++ b/README.md
@@ -2,8 +2,8 @@
-[](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.370.1)
-[](https://javadoc.io/doc/com.increase.api/increase-java/0.370.1)
+[](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.371.0)
+[](https://javadoc.io/doc/com.increase.api/increase-java/0.371.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.370.1).
+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.371.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.370.1")
+implementation("com.increase.api:increase-java:0.371.0")
```
### Maven
@@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.370.1")
com.increase.api
increase-java
- 0.370.1
+ 0.371.0
```
diff --git a/build.gradle.kts b/build.gradle.kts
index 053ce6f17..04c841dd8 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -8,7 +8,7 @@ repositories {
allprojects {
group = "com.increase.api"
- version = "0.370.1" // x-release-please-version
+ version = "0.371.0" // x-release-please-version
}
subprojects {
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferCreateParams.kt
index f1cd438a6..61b29052c 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferCreateParams.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferCreateParams.kt
@@ -2122,9 +2122,9 @@ private constructor(
fun name(): Optional = name.getOptional("name")
/**
- * The phone number to associate with the check's destination address. Only used if
- * shipping method is `fedex_overnight`. Will be supplied to FedEx as the contact phone
- * number for the recipient to be used in case of delivery issues.
+ * The phone number to associate with the check's destination address. The number is
+ * only used when `shipping_method` is `fedex_overnight` and will be supplied to FedEx
+ * to be used in case of delivery issues.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g.
* if the server responded with an unexpected value).
@@ -2313,9 +2313,9 @@ private constructor(
fun name(name: JsonField) = apply { this.name = name }
/**
- * The phone number to associate with the check's destination address. Only used if
- * shipping method is `fedex_overnight`. Will be supplied to FedEx as the contact
- * phone number for the recipient to be used in case of delivery issues.
+ * The phone number to associate with the check's destination address. The number is
+ * only used when `shipping_method` is `fedex_overnight` and will be supplied to
+ * FedEx to be used in case of delivery issues.
*/
fun phone(phone: String) = phone(JsonField.of(phone))