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.403.0"
".": "0.404.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: 232
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-1a3093fde00ba57a88035a89fca1627e3343e5c6cba2854ee6ebf8bac9640489.yml
openapi_spec_hash: 547e0e84b0d09880a8305ddac57cc44a
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-742384c2f763b7fb4e6534ac57539f4f1854d9bd126ea173f3caeffdf1642462.yml
openapi_spec_hash: 49897b127960069cd3fe917475ad4b5b
config_hash: 27e44ed36b9c5617b580ead7231a594a
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.404.0 (2026-01-26)

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

### Features

* **api:** api update ([b42510c](https://github.com/Increase/increase-java/commit/b42510cd9682c12470db13d16e55f652bc5404a2))

## 0.403.0 (2026-01-23)

Full Changelog: [v0.402.0...v0.403.0](https://github.com/Increase/increase-java/compare/v0.402.0...v0.403.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.403.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.403.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.403.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.404.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.404.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.404.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.403.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.404.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.403.0")
implementation("com.increase.api:increase-java:0.404.0")
```

### Maven
Expand All @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.403.0")
<dependency>
<groupId>com.increase.api</groupId>
<artifactId>increase-java</artifactId>
<version>0.403.0</version>
<version>0.404.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.403.0" // x-release-please-version
version = "0.404.0" // x-release-please-version
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1937,6 +1937,9 @@ private constructor(
/** The check was not endorsed by the payee. */
@JvmField val ENDORSEMENT_IRREGULAR = of("endorsement_irregular")

/** The maker of the check requested its return. */
@JvmField val REFER_TO_MAKER = of("refer_to_maker")

@JvmStatic fun of(value: String) = Reason(JsonField.of(value))
}

Expand All @@ -1952,6 +1955,8 @@ private constructor(
ENDORSEMENT_MISSING,
/** The check was not endorsed by the payee. */
ENDORSEMENT_IRREGULAR,
/** The maker of the check requested its return. */
REFER_TO_MAKER,
}

/**
Expand All @@ -1974,6 +1979,8 @@ private constructor(
ENDORSEMENT_MISSING,
/** The check was not endorsed by the payee. */
ENDORSEMENT_IRREGULAR,
/** The maker of the check requested its return. */
REFER_TO_MAKER,
/**
* An enum member indicating that [Reason] was instantiated with an unknown value.
*/
Expand All @@ -1994,6 +2001,7 @@ private constructor(
DUPLICATE_PRESENTMENT -> Value.DUPLICATE_PRESENTMENT
ENDORSEMENT_MISSING -> Value.ENDORSEMENT_MISSING
ENDORSEMENT_IRREGULAR -> Value.ENDORSEMENT_IRREGULAR
REFER_TO_MAKER -> Value.REFER_TO_MAKER
else -> Value._UNKNOWN
}

Expand All @@ -2013,6 +2021,7 @@ private constructor(
DUPLICATE_PRESENTMENT -> Known.DUPLICATE_PRESENTMENT
ENDORSEMENT_MISSING -> Known.ENDORSEMENT_MISSING
ENDORSEMENT_IRREGULAR -> Known.ENDORSEMENT_IRREGULAR
REFER_TO_MAKER -> Known.REFER_TO_MAKER
else -> throw IncreaseInvalidDataException("Unknown Reason: $value")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,9 @@ private constructor(
/** The check was not endorsed by the payee. */
@JvmField val ENDORSEMENT_IRREGULAR = of("endorsement_irregular")

/** The maker of the check requested its return. */
@JvmField val REFER_TO_MAKER = of("refer_to_maker")

@JvmStatic fun of(value: String) = Reason(JsonField.of(value))
}

Expand All @@ -472,6 +475,8 @@ private constructor(
ENDORSEMENT_MISSING,
/** The check was not endorsed by the payee. */
ENDORSEMENT_IRREGULAR,
/** The maker of the check requested its return. */
REFER_TO_MAKER,
}

/**
Expand All @@ -494,6 +499,8 @@ private constructor(
ENDORSEMENT_MISSING,
/** The check was not endorsed by the payee. */
ENDORSEMENT_IRREGULAR,
/** The maker of the check requested its return. */
REFER_TO_MAKER,
/** An enum member indicating that [Reason] was instantiated with an unknown value. */
_UNKNOWN,
}
Expand All @@ -512,6 +519,7 @@ private constructor(
DUPLICATE_PRESENTMENT -> Value.DUPLICATE_PRESENTMENT
ENDORSEMENT_MISSING -> Value.ENDORSEMENT_MISSING
ENDORSEMENT_IRREGULAR -> Value.ENDORSEMENT_IRREGULAR
REFER_TO_MAKER -> Value.REFER_TO_MAKER
else -> Value._UNKNOWN
}

Expand All @@ -531,6 +539,7 @@ private constructor(
DUPLICATE_PRESENTMENT -> Known.DUPLICATE_PRESENTMENT
ENDORSEMENT_MISSING -> Known.ENDORSEMENT_MISSING
ENDORSEMENT_IRREGULAR -> Known.ENDORSEMENT_IRREGULAR
REFER_TO_MAKER -> Known.REFER_TO_MAKER
else -> throw IncreaseInvalidDataException("Unknown Reason: $value")
}

Expand Down
Loading