diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index b50560871..cd1274059 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "0.534.0"
+ ".": "0.535.0"
}
\ No newline at end of file
diff --git a/.stats.yml b/.stats.yml
index 059589835..bb449d9e6 100644
--- a/.stats.yml
+++ b/.stats.yml
@@ -1,4 +1,4 @@
configured_endpoints: 238
-openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase/increase-dfa51d8d0b4b31cb929920acfba59c9d2e928de78fc1ac44c639ff9f735727bf.yml
-openapi_spec_hash: 401f64bbe952d952c600b78c42f0ed6c
+openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase/increase-c2a96dbb3b2b8f8b770122d20d9a18c6f53712c5b69f26551d45fbb320ed4351.yml
+openapi_spec_hash: 2a0f520c0a49a415df945eb33d8a707c
config_hash: 060e036e1db198f2e908364c9df7096e
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fe98ea4d7..006ba7527 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog
+## 0.535.0 (2026-05-01)
+
+Full Changelog: [v0.534.0...v0.535.0](https://github.com/Increase/increase-java/compare/v0.534.0...v0.535.0)
+
+### Features
+
+* **api:** api update ([8c431b8](https://github.com/Increase/increase-java/commit/8c431b83d59a467e3956f238bec17fb20f99d515))
+
## 0.534.0 (2026-05-01)
Full Changelog: [v0.533.0...v0.534.0](https://github.com/Increase/increase-java/compare/v0.533.0...v0.534.0)
diff --git a/README.md b/README.md
index 434eeb79a..15fb840c2 100644
--- a/README.md
+++ b/README.md
@@ -2,8 +2,8 @@
-[](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.534.0)
-[](https://javadoc.io/doc/com.increase.api/increase-java/0.534.0)
+[](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.535.0)
+[](https://javadoc.io/doc/com.increase.api/increase-java/0.535.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.534.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.535.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.534.0")
+implementation("com.increase.api:increase-java:0.535.0")
```
### Maven
@@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.534.0")
com.increase.api
increase-java
- 0.534.0
+ 0.535.0
```
diff --git a/build.gradle.kts b/build.gradle.kts
index c02cdb382..563980283 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -8,7 +8,7 @@ repositories {
allprojects {
group = "com.increase.api"
- version = "0.534.0" // x-release-please-version
+ version = "0.535.0" // x-release-please-version
}
subprojects {
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundmailitems/InboundMailItemCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundmailitems/InboundMailItemCreateParams.kt
index 718baa4e6..d1718ea7e 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundmailitems/InboundMailItemCreateParams.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundmailitems/InboundMailItemCreateParams.kt
@@ -20,8 +20,8 @@ import java.util.Objects
import java.util.Optional
/**
- * Simulates an inbound mail item to your account, as if someone had mailed a physical check to one
- * of your account's Lockboxes.
+ * Simulates an Inbound Mail Item to one of your Lockbox Addresses or Lockbox Recipients, as if
+ * someone had mailed a physical check.
*/
class InboundMailItemCreateParams
private constructor(
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/services/async/simulations/InboundMailItemServiceAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/services/async/simulations/InboundMailItemServiceAsync.kt
index 8a6283d6d..f55870cac 100755
--- a/increase-java-core/src/main/kotlin/com/increase/api/services/async/simulations/InboundMailItemServiceAsync.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/services/async/simulations/InboundMailItemServiceAsync.kt
@@ -25,8 +25,8 @@ interface InboundMailItemServiceAsync {
fun withOptions(modifier: Consumer): InboundMailItemServiceAsync
/**
- * Simulates an inbound mail item to your account, as if someone had mailed a physical check to
- * one of your account's Lockboxes.
+ * Simulates an Inbound Mail Item to one of your Lockbox Addresses or Lockbox Recipients, as if
+ * someone had mailed a physical check.
*/
fun create(params: InboundMailItemCreateParams): CompletableFuture =
create(params, RequestOptions.none())
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/simulations/InboundMailItemService.kt b/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/simulations/InboundMailItemService.kt
index d672e80f7..9addb1df3 100755
--- a/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/simulations/InboundMailItemService.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/simulations/InboundMailItemService.kt
@@ -25,8 +25,8 @@ interface InboundMailItemService {
fun withOptions(modifier: Consumer): InboundMailItemService
/**
- * Simulates an inbound mail item to your account, as if someone had mailed a physical check to
- * one of your account's Lockboxes.
+ * Simulates an Inbound Mail Item to one of your Lockbox Addresses or Lockbox Recipients, as if
+ * someone had mailed a physical check.
*/
fun create(params: InboundMailItemCreateParams): InboundMailItem =
create(params, RequestOptions.none())