diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index 5a33988a2..7c7974f09 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "0.343.0"
+ ".": "0.344.0"
}
\ No newline at end of file
diff --git a/.stats.yml b/.stats.yml
index 5be8c21ef..0b87763cf 100644
--- a/.stats.yml
+++ b/.stats.yml
@@ -1,4 +1,4 @@
configured_endpoints: 214
-openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-24ddca9eb65b72b527002775880ca10d5f0e13426f076fb983761c44df2429a9.yml
-openapi_spec_hash: 32d6ee149133e0cc8026079cc29c0991
+openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-57a965663739666faa0c7699e48af1185389436a2c4fd774e28d86cb7b1c69ba.yml
+openapi_spec_hash: cd4681291bf755562f76ae6a1ead73a3
config_hash: a143293c5450ae8f52acad08f3102575
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2b6180dbd..685e4df41 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog
+## 0.344.0 (2025-09-29)
+
+Full Changelog: [v0.343.0...v0.344.0](https://github.com/Increase/increase-java/compare/v0.343.0...v0.344.0)
+
+### Features
+
+* **api:** api update ([22218e1](https://github.com/Increase/increase-java/commit/22218e1cf75dd5d33350c49930e6ed91f7aaa4fa))
+
## 0.343.0 (2025-09-29)
Full Changelog: [v0.342.0...v0.343.0](https://github.com/Increase/increase-java/compare/v0.342.0...v0.343.0)
diff --git a/README.md b/README.md
index 57f5f165c..fce8417a0 100644
--- a/README.md
+++ b/README.md
@@ -2,8 +2,8 @@
-[](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.343.0)
-[](https://javadoc.io/doc/com.increase.api/increase-java/0.343.0)
+[](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.344.0)
+[](https://javadoc.io/doc/com.increase.api/increase-java/0.344.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.343.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.344.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.343.0")
+implementation("com.increase.api:increase-java:0.344.0")
```
### Maven
@@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.343.0")
com.increase.api
increase-java
- 0.343.0
+ 0.344.0
```
diff --git a/build.gradle.kts b/build.gradle.kts
index 5448bbaec..604263a80 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -8,7 +8,7 @@ repositories {
allprojects {
group = "com.increase.api"
- version = "0.343.0" // x-release-please-version
+ version = "0.344.0" // x-release-please-version
}
subprojects {
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountCreateParams.kt
index cbaf56be4..3517a92b4 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountCreateParams.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountCreateParams.kt
@@ -38,7 +38,7 @@ private constructor(
fun name(): String = body.name()
/**
- * The entity, if `compliance_category` is `commingled_cash`.
+ * The account, if `compliance_category` is `commingled_cash`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -151,7 +151,7 @@ private constructor(
*/
fun name(name: JsonField) = apply { body.name(name) }
- /** The entity, if `compliance_category` is `commingled_cash`. */
+ /** The account, if `compliance_category` is `commingled_cash`. */
fun accountId(accountId: String) = apply { body.accountId(accountId) }
/**
@@ -366,7 +366,7 @@ private constructor(
fun name(): String = name.getRequired("name")
/**
- * The entity, if `compliance_category` is `commingled_cash`.
+ * The account, if `compliance_category` is `commingled_cash`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
* the server responded with an unexpected value).
@@ -476,7 +476,7 @@ private constructor(
*/
fun name(name: JsonField) = apply { this.name = name }
- /** The entity, if `compliance_category` is `commingled_cash`. */
+ /** The account, if `compliance_category` is `commingled_cash`. */
fun accountId(accountId: String) = accountId(JsonField.of(accountId))
/**