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.321.0"
".": "0.322.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: 217
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-387c9e5ff5305d470ddf290a424b9d0f087fa295b56cf82265f2dfe8355a589a.yml
openapi_spec_hash: 2c624b8535be90329028f6b10281a313
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-94d559b14c3611637885b103aa75adb26dff816369b1fdb758440e288d1ea83b.yml
openapi_spec_hash: 4e257b20b410526bc54fd6ced9db3a5d
config_hash: e1885b38eded054b77308a024c5d80cc
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.322.0 (2025-09-09)

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

### Features

* **api:** api update ([d54462c](https://github.com/Increase/increase-java/commit/d54462c0bf87bd43a49535a4a0d6e37c1a5515b7))
* **api:** api update ([9d71442](https://github.com/Increase/increase-java/commit/9d7144272bf59c85babb2acb8bba7b8ce245fefd))

## 0.321.0 (2025-09-08)

Full Changelog: [v0.320.0...v0.321.0](https://github.com/Increase/increase-java/compare/v0.320.0...v0.321.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.321.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.321.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.321.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.322.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.322.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.322.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.321.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.322.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.321.0")
implementation("com.increase.api:increase-java:0.322.0")
```

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

subprojects {
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -10751,20 +10751,21 @@ private constructor(

companion object {

/** No address was provided in the authorization request. */
/** No address information was provided in the authorization request. */
@JvmField val NOT_CHECKED = of("not_checked")

/** Postal code matches, but the street address was not verified. */
@JvmField
val POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED =
of("postal_code_match_address_not_checked")

/** Postal code matches, but the street address does not match. */
/**
* Postal code matches, but the street address does not match or was not
* provided.
*/
@JvmField
val POSTAL_CODE_MATCH_ADDRESS_NO_MATCH =
of("postal_code_match_address_no_match")

/** Postal code does not match, but the street address matches. */
/**
* Postal code does not match, but the street address matches or was not
* provided.
*/
@JvmField
val POSTAL_CODE_NO_MATCH_ADDRESS_MATCH =
of("postal_code_no_match_address_match")
Expand All @@ -10775,23 +10776,40 @@ private constructor(
/** Postal code and street address do not match. */
@JvmField val NO_MATCH = of("no_match")

/**
* Postal code matches, but the street address was not verified.
* (deprecated)
*/
@JvmField
val POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED =
of("postal_code_match_address_not_checked")

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

/** An enum containing [Result]'s known values. */
enum class Known {
/** No address was provided in the authorization request. */
/** No address information was provided in the authorization request. */
NOT_CHECKED,
/** Postal code matches, but the street address was not verified. */
POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED,
/** Postal code matches, but the street address does not match. */
/**
* Postal code matches, but the street address does not match or was not
* provided.
*/
POSTAL_CODE_MATCH_ADDRESS_NO_MATCH,
/** Postal code does not match, but the street address matches. */
/**
* Postal code does not match, but the street address matches or was not
* provided.
*/
POSTAL_CODE_NO_MATCH_ADDRESS_MATCH,
/** Postal code and street address match. */
MATCH,
/** Postal code and street address do not match. */
NO_MATCH,
/**
* Postal code matches, but the street address was not verified.
* (deprecated)
*/
POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED,
}

/**
Expand All @@ -10806,18 +10824,27 @@ private constructor(
* - It was constructed with an arbitrary value using the [of] method.
*/
enum class Value {
/** No address was provided in the authorization request. */
/** No address information was provided in the authorization request. */
NOT_CHECKED,
/** Postal code matches, but the street address was not verified. */
POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED,
/** Postal code matches, but the street address does not match. */
/**
* Postal code matches, but the street address does not match or was not
* provided.
*/
POSTAL_CODE_MATCH_ADDRESS_NO_MATCH,
/** Postal code does not match, but the street address matches. */
/**
* Postal code does not match, but the street address matches or was not
* provided.
*/
POSTAL_CODE_NO_MATCH_ADDRESS_MATCH,
/** Postal code and street address match. */
MATCH,
/** Postal code and street address do not match. */
NO_MATCH,
/**
* Postal code matches, but the street address was not verified.
* (deprecated)
*/
POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED,
/**
* An enum member indicating that [Result] was instantiated with an
* unknown value.
Expand All @@ -10835,14 +10862,14 @@ private constructor(
fun value(): Value =
when (this) {
NOT_CHECKED -> Value.NOT_CHECKED
POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED ->
Value.POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED
POSTAL_CODE_MATCH_ADDRESS_NO_MATCH ->
Value.POSTAL_CODE_MATCH_ADDRESS_NO_MATCH
POSTAL_CODE_NO_MATCH_ADDRESS_MATCH ->
Value.POSTAL_CODE_NO_MATCH_ADDRESS_MATCH
MATCH -> Value.MATCH
NO_MATCH -> Value.NO_MATCH
POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED ->
Value.POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED
else -> Value._UNKNOWN
}

Expand All @@ -10858,14 +10885,14 @@ private constructor(
fun known(): Known =
when (this) {
NOT_CHECKED -> Known.NOT_CHECKED
POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED ->
Known.POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED
POSTAL_CODE_MATCH_ADDRESS_NO_MATCH ->
Known.POSTAL_CODE_MATCH_ADDRESS_NO_MATCH
POSTAL_CODE_NO_MATCH_ADDRESS_MATCH ->
Known.POSTAL_CODE_NO_MATCH_ADDRESS_MATCH
MATCH -> Known.MATCH
NO_MATCH -> Known.NO_MATCH
POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED ->
Known.POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED
else -> throw IncreaseInvalidDataException("Unknown Result: $value")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10357,20 +10357,21 @@ private constructor(

companion object {

/** No address was provided in the authorization request. */
/** No address information was provided in the authorization request. */
@JvmField val NOT_CHECKED = of("not_checked")

/** Postal code matches, but the street address was not verified. */
@JvmField
val POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED =
of("postal_code_match_address_not_checked")

/** Postal code matches, but the street address does not match. */
/**
* Postal code matches, but the street address does not match or was not
* provided.
*/
@JvmField
val POSTAL_CODE_MATCH_ADDRESS_NO_MATCH =
of("postal_code_match_address_no_match")

/** Postal code does not match, but the street address matches. */
/**
* Postal code does not match, but the street address matches or was not
* provided.
*/
@JvmField
val POSTAL_CODE_NO_MATCH_ADDRESS_MATCH =
of("postal_code_no_match_address_match")
Expand All @@ -10381,23 +10382,40 @@ private constructor(
/** Postal code and street address do not match. */
@JvmField val NO_MATCH = of("no_match")

/**
* Postal code matches, but the street address was not verified.
* (deprecated)
*/
@JvmField
val POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED =
of("postal_code_match_address_not_checked")

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

/** An enum containing [Result]'s known values. */
enum class Known {
/** No address was provided in the authorization request. */
/** No address information was provided in the authorization request. */
NOT_CHECKED,
/** Postal code matches, but the street address was not verified. */
POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED,
/** Postal code matches, but the street address does not match. */
/**
* Postal code matches, but the street address does not match or was not
* provided.
*/
POSTAL_CODE_MATCH_ADDRESS_NO_MATCH,
/** Postal code does not match, but the street address matches. */
/**
* Postal code does not match, but the street address matches or was not
* provided.
*/
POSTAL_CODE_NO_MATCH_ADDRESS_MATCH,
/** Postal code and street address match. */
MATCH,
/** Postal code and street address do not match. */
NO_MATCH,
/**
* Postal code matches, but the street address was not verified.
* (deprecated)
*/
POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED,
}

/**
Expand All @@ -10412,18 +10430,27 @@ private constructor(
* - It was constructed with an arbitrary value using the [of] method.
*/
enum class Value {
/** No address was provided in the authorization request. */
/** No address information was provided in the authorization request. */
NOT_CHECKED,
/** Postal code matches, but the street address was not verified. */
POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED,
/** Postal code matches, but the street address does not match. */
/**
* Postal code matches, but the street address does not match or was not
* provided.
*/
POSTAL_CODE_MATCH_ADDRESS_NO_MATCH,
/** Postal code does not match, but the street address matches. */
/**
* Postal code does not match, but the street address matches or was not
* provided.
*/
POSTAL_CODE_NO_MATCH_ADDRESS_MATCH,
/** Postal code and street address match. */
MATCH,
/** Postal code and street address do not match. */
NO_MATCH,
/**
* Postal code matches, but the street address was not verified.
* (deprecated)
*/
POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED,
/**
* An enum member indicating that [Result] was instantiated with an
* unknown value.
Expand All @@ -10441,14 +10468,14 @@ private constructor(
fun value(): Value =
when (this) {
NOT_CHECKED -> Value.NOT_CHECKED
POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED ->
Value.POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED
POSTAL_CODE_MATCH_ADDRESS_NO_MATCH ->
Value.POSTAL_CODE_MATCH_ADDRESS_NO_MATCH
POSTAL_CODE_NO_MATCH_ADDRESS_MATCH ->
Value.POSTAL_CODE_NO_MATCH_ADDRESS_MATCH
MATCH -> Value.MATCH
NO_MATCH -> Value.NO_MATCH
POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED ->
Value.POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED
else -> Value._UNKNOWN
}

Expand All @@ -10464,14 +10491,14 @@ private constructor(
fun known(): Known =
when (this) {
NOT_CHECKED -> Known.NOT_CHECKED
POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED ->
Known.POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED
POSTAL_CODE_MATCH_ADDRESS_NO_MATCH ->
Known.POSTAL_CODE_MATCH_ADDRESS_NO_MATCH
POSTAL_CODE_NO_MATCH_ADDRESS_MATCH ->
Known.POSTAL_CODE_NO_MATCH_ADDRESS_MATCH
MATCH -> Known.MATCH
NO_MATCH -> Known.NO_MATCH
POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED ->
Known.POSTAL_CODE_MATCH_ADDRESS_NOT_CHECKED
else -> throw IncreaseInvalidDataException("Unknown Result: $value")
}

Expand Down
Loading
Loading