Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.521.0"
".": "0.522.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 241
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-aec0771e5d68377a9a6c78d552a4617290beabcb5efb2e895b18f70bde573115.yml
openapi_spec_hash: 3da305207c91d4ade84d70fd64691c88
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-0ade14905d5af7ea62dd4dfa6419ea74e95db9076730c5eb2316288bc3bfe8dc.yml
openapi_spec_hash: 24c41baa76ee48175d432a61d5c2ae8e
config_hash: cb5b8736705c06b670f6a25484622d62
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.522.0 (2026-04-20)

Full Changelog: [v0.521.0...v0.522.0](https://github.com/Increase/increase-java/compare/v0.521.0...v0.522.0)

### Features

* **api:** api update ([5b980ca](https://github.com/Increase/increase-java/commit/5b980ca569d1c6c3db06c88084f99d2733a3738d))


### Chores

* **tests:** bump steady to v0.22.1 ([19db1d3](https://github.com/Increase/increase-java/commit/19db1d3618779cafc6de06b8ac0f95900a27eab7))

## 0.521.0 (2026-04-17)

Full Changelog: [v0.520.0...v0.521.0](https://github.com/Increase/increase-java/compare/v0.520.0...v0.521.0)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<!-- x-release-please-start-version -->

[![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.521.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.521.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.521.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.522.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.522.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.522.0)

<!-- x-release-please-end -->

Expand All @@ -13,7 +13,7 @@ The Increase Java SDK is similar to the Increase Kotlin SDK but with minor diffe

<!-- x-release-please-start-version -->

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.521.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.522.0).

<!-- x-release-please-end -->

Expand All @@ -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.521.0")
implementation("com.increase.api:increase-java:0.522.0")
```

### Maven
Expand All @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.521.0")
<dependency>
<groupId>com.increase.api</groupId>
<artifactId>increase-java</artifactId>
<version>0.521.0</version>
<version>0.522.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {

allprojects {
group = "com.increase.api"
version = "0.521.0" // x-release-please-version
version = "0.522.0" // x-release-please-version
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -477,8 +477,7 @@ private constructor(
fun action(): Action = action.getRequired("action")

/**
* The identifier of the Account to deposit the check into. If not provided, the check will
* be deposited into the Account associated with the Lockbox.
* The identifier of the Account to deposit the check into.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
* the server responded with an unexpected value).
Expand Down Expand Up @@ -550,10 +549,7 @@ private constructor(
*/
fun action(action: JsonField<Action>) = apply { this.action = action }

/**
* The identifier of the Account to deposit the check into. If not provided, the check
* will be deposited into the Account associated with the Lockbox.
*/
/** The identifier of the Account to deposit the check into. */
fun accountId(accountId: String) = accountId(JsonField.of(accountId))

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ internal class InboundMailItemActionParamsTest {
.addCheck(
InboundMailItemActionParams.Check.builder()
.action(InboundMailItemActionParams.Check.Action.IGNORE)
.accountId("account_id")
.accountId("account_in71c4amph0vgo2qllky")
.build()
)
.build()
Expand Down Expand Up @@ -62,7 +62,7 @@ internal class InboundMailItemActionParamsTest {
.addCheck(
InboundMailItemActionParams.Check.builder()
.action(InboundMailItemActionParams.Check.Action.IGNORE)
.accountId("account_id")
.accountId("account_in71c4amph0vgo2qllky")
.build()
)
.build()
Expand All @@ -77,7 +77,7 @@ internal class InboundMailItemActionParamsTest {
.build(),
InboundMailItemActionParams.Check.builder()
.action(InboundMailItemActionParams.Check.Action.IGNORE)
.accountId("account_id")
.accountId("account_in71c4amph0vgo2qllky")
.build(),
)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ internal class InboundMailItemServiceAsyncTest {
.addCheck(
InboundMailItemActionParams.Check.builder()
.action(InboundMailItemActionParams.Check.Action.IGNORE)
.accountId("account_id")
.accountId("account_in71c4amph0vgo2qllky")
.build()
)
.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ internal class InboundMailItemServiceTest {
.addCheck(
InboundMailItemActionParams.Check.builder()
.action(InboundMailItemActionParams.Check.Action.IGNORE)
.accountId("account_id")
.accountId("account_in71c4amph0vgo2qllky")
.build()
)
.build()
Expand Down
6 changes: 3 additions & 3 deletions scripts/mock
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ echo "==> Starting mock server with URL ${URL}"
# Run steady mock on the given spec
if [ "$1" == "--daemon" ]; then
# Pre-install the package so the download doesn't eat into the startup timeout
npm exec --package=@stdy/cli@0.20.2 -- steady --version
npm exec --package=@stdy/cli@0.22.1 -- steady --version

npm exec --package=@stdy/cli@0.20.2 -- steady --host 127.0.0.1 -p 4010 --validator-query-array-format=comma --validator-form-array-format=comma --validator-query-object-format=dots --validator-form-object-format=dots "$URL" &> .stdy.log &
npm exec --package=@stdy/cli@0.22.1 -- steady --host 127.0.0.1 -p 4010 --validator-query-array-format=comma --validator-form-array-format=comma --validator-query-object-format=dots --validator-form-object-format=dots "$URL" &> .stdy.log &

# Wait for server to come online via health endpoint (max 30s)
echo -n "Waiting for server"
Expand All @@ -48,5 +48,5 @@ if [ "$1" == "--daemon" ]; then

echo
else
npm exec --package=@stdy/cli@0.20.2 -- steady --host 127.0.0.1 -p 4010 --validator-query-array-format=comma --validator-form-array-format=comma --validator-query-object-format=dots --validator-form-object-format=dots "$URL"
npm exec --package=@stdy/cli@0.22.1 -- steady --host 127.0.0.1 -p 4010 --validator-query-array-format=comma --validator-form-array-format=comma --validator-query-object-format=dots --validator-form-object-format=dots "$URL"
fi
2 changes: 1 addition & 1 deletion scripts/test
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ elif ! steady_is_running ; then
echo -e "To run the server, pass in the path or url of your OpenAPI"
echo -e "spec to the steady command:"
echo
echo -e " \$ ${YELLOW}npm exec --package=@stdy/cli@0.20.2 -- steady path/to/your.openapi.yml --host 127.0.0.1 -p 4010 --validator-query-array-format=comma --validator-form-array-format=comma --validator-query-object-format=dots --validator-form-object-format=dots${NC}"
echo -e " \$ ${YELLOW}npm exec --package=@stdy/cli@0.22.1 -- steady path/to/your.openapi.yml --host 127.0.0.1 -p 4010 --validator-query-array-format=comma --validator-form-array-format=comma --validator-query-object-format=dots --validator-form-object-format=dots${NC}"
echo

exit 1
Expand Down
Loading