diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index 405aab598..12536a158 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "0.503.0"
+ ".": "0.504.0"
}
\ No newline at end of file
diff --git a/.stats.yml b/.stats.yml
index f65638cfc..5fef959d3 100644
--- a/.stats.yml
+++ b/.stats.yml
@@ -1,4 +1,4 @@
configured_endpoints: 236
-openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-034ee94321ac334412e7368a7c6acc06d5606e92b09ca6873dd4cbfbb0628cb3.yml
-openapi_spec_hash: e842e88e09648392440cf613433dacdc
+openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-c73835a51350d0f42d529d2731b0d4da4487f55b1c98a6e0a322c21b1264f209.yml
+openapi_spec_hash: 23561aff9285210e32b4e15e1486a01a
config_hash: 4945e03affdf289484733306e4797f81
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8213ae1c6..959382f3d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog
+## 0.504.0 (2026-04-04)
+
+Full Changelog: [v0.503.0...v0.504.0](https://github.com/Increase/increase-java/compare/v0.503.0...v0.504.0)
+
+### Features
+
+* **api:** api update ([3fb7d30](https://github.com/Increase/increase-java/commit/3fb7d301651b272a2a89728b66a0d67bc5da3fd6))
+
## 0.503.0 (2026-04-03)
Full Changelog: [v0.502.0...v0.503.0](https://github.com/Increase/increase-java/compare/v0.502.0...v0.503.0)
diff --git a/README.md b/README.md
index 8f5a13e50..f5b3302e5 100644
--- a/README.md
+++ b/README.md
@@ -2,8 +2,8 @@
-[](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.503.0)
-[](https://javadoc.io/doc/com.increase.api/increase-java/0.503.0)
+[](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.504.0)
+[](https://javadoc.io/doc/com.increase.api/increase-java/0.504.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.503.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.504.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.503.0")
+implementation("com.increase.api:increase-java:0.504.0")
```
### Maven
@@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.503.0")
com.increase.api
increase-java
- 0.503.0
+ 0.504.0
```
diff --git a/build.gradle.kts b/build.gradle.kts
index 8c0b803d1..25d7a7ddf 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -8,7 +8,7 @@ repositories {
allprojects {
group = "com.increase.api"
- version = "0.503.0" // x-release-please-version
+ version = "0.504.0" // x-release-please-version
}
subprojects {
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/Card.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/Card.kt
index dd27c80be..dc44319a4 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/Card.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/Card.kt
@@ -810,7 +810,7 @@ private constructor(
merchantCountry.getOptional("merchant_country")
/**
- * Spending limits for this card. The most restrictive limit is applied if multiple limits
+ * Spending limits for this card. The most restrictive limit applies if multiple limits
* match.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
@@ -1019,8 +1019,8 @@ private constructor(
}
/**
- * Spending limits for this card. The most restrictive limit is applied if multiple
- * limits match.
+ * Spending limits for this card. The most restrictive limit applies if multiple limits
+ * match.
*/
fun spendingLimits(spendingLimits: List?) =
spendingLimits(JsonField.ofNullable(spendingLimits))
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardCreateParams.kt
index e16e03975..77cfc4c1c 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardCreateParams.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardCreateParams.kt
@@ -889,7 +889,7 @@ private constructor(
merchantCountry.getOptional("merchant_country")
/**
- * Spending limits for this card. The most restrictive limit is applied if multiple limits
+ * Spending limits for this card. The most restrictive limit applies if multiple limits
* match.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
@@ -1063,8 +1063,8 @@ private constructor(
}
/**
- * Spending limits for this card. The most restrictive limit is applied if multiple
- * limits match.
+ * Spending limits for this card. The most restrictive limit applies if multiple limits
+ * match.
*/
fun spendingLimits(spendingLimits: List) =
spendingLimits(JsonField.of(spendingLimits))
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardUpdateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardUpdateParams.kt
index 40999e205..6994f0cde 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardUpdateParams.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardUpdateParams.kt
@@ -874,7 +874,7 @@ private constructor(
merchantCountry.getOptional("merchant_country")
/**
- * Spending limits for this card. The most restrictive limit is applied if multiple limits
+ * Spending limits for this card. The most restrictive limit applies if multiple limits
* match.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
@@ -1048,8 +1048,8 @@ private constructor(
}
/**
- * Spending limits for this card. The most restrictive limit is applied if multiple
- * limits match.
+ * Spending limits for this card. The most restrictive limit applies if multiple limits
+ * match.
*/
fun spendingLimits(spendingLimits: List) =
spendingLimits(JsonField.of(spendingLimits))