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.319.0"
".": "0.320.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-438f2a4d4f35670ae5692a6a9a36711af7944ac975bf309a6d50c02a28b13a70.yml
openapi_spec_hash: e4930cc26be238707449872070607e64
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-5d85239e5d724254ab22d922c6cad05e1c361c791ef4a578e1165158bd967753.yml
openapi_spec_hash: b2c90485c02d643ad09954f4d88dbc25
config_hash: e1885b38eded054b77308a024c5d80cc
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.320.0 (2025-09-08)

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

### Features

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

## 0.319.0 (2025-09-08)

Full Changelog: [v0.318.0...v0.319.0](https://github.com/Increase/increase-java/compare/v0.318.0...v0.319.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.319.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.319.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.319.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.320.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.320.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.320.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.319.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.320.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.319.0")
implementation("com.increase.api:increase-java:0.320.0")
```

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,8 @@ private constructor(
supplementalDocuments.getRequired("supplemental_documents")

/**
* A reference to data stored in a third-party verification service. Your integration may or may
* not use this field.
* If you are using a third-party service for identity verification, you can use this field to
* associate this Entity with the identifier that represents them in that service.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
Expand Down Expand Up @@ -708,8 +708,8 @@ private constructor(
}

/**
* A reference to data stored in a third-party verification service. Your integration may or
* may not use this field.
* If you are using a third-party service for identity verification, you can use this field
* to associate this Entity with the identifier that represents them in that service.
*/
fun thirdPartyVerification(thirdPartyVerification: ThirdPartyVerification?) =
thirdPartyVerification(JsonField.ofNullable(thirdPartyVerification))
Expand Down Expand Up @@ -6775,25 +6775,25 @@ private constructor(

companion object {

/** Low */
/** Minimal risk of involvement in financial crime. */
@JvmField val LOW = of("low")

/** Medium */
/** Moderate risk of involvement in financial crime. */
@JvmField val MEDIUM = of("medium")

/** High */
/** Elevated risk of involvement in financial crime. */
@JvmField val HIGH = of("high")

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

/** An enum containing [Rating]'s known values. */
enum class Known {
/** Low */
/** Minimal risk of involvement in financial crime. */
LOW,
/** Medium */
/** Moderate risk of involvement in financial crime. */
MEDIUM,
/** High */
/** Elevated risk of involvement in financial crime. */
HIGH,
}

Expand All @@ -6807,11 +6807,11 @@ private constructor(
* - It was constructed with an arbitrary value using the [of] method.
*/
enum class Value {
/** Low */
/** Minimal risk of involvement in financial crime. */
LOW,
/** Medium */
/** Moderate risk of involvement in financial crime. */
MEDIUM,
/** High */
/** Elevated risk of involvement in financial crime. */
HIGH,
/**
* An enum member indicating that [Rating] was instantiated with an unknown value.
Expand Down Expand Up @@ -7231,8 +7231,8 @@ private constructor(
}

/**
* A reference to data stored in a third-party verification service. Your integration may or may
* not use this field.
* If you are using a third-party service for identity verification, you can use this field to
* associate this Entity with the identifier that represents them in that service.
*/
class ThirdPartyVerification
private constructor(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ private constructor(
fun supplementalDocuments(): Optional<List<SupplementalDocument>> = body.supplementalDocuments()

/**
* A reference to data stored in a third-party verification service. Your integration may or may
* not use this field.
* If you are using a third-party service for identity verification, you can use this field to
* associate this Entity with the identifier that represents them in that service.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
Expand Down Expand Up @@ -379,8 +379,8 @@ private constructor(
}

/**
* A reference to data stored in a third-party verification service. Your integration may or
* may not use this field.
* If you are using a third-party service for identity verification, you can use this field
* to associate this Entity with the identifier that represents them in that service.
*/
fun thirdPartyVerification(thirdPartyVerification: ThirdPartyVerification) = apply {
body.thirdPartyVerification(thirdPartyVerification)
Expand Down Expand Up @@ -682,8 +682,8 @@ private constructor(
supplementalDocuments.getOptional("supplemental_documents")

/**
* A reference to data stored in a third-party verification service. Your integration may or
* may not use this field.
* If you are using a third-party service for identity verification, you can use this field
* to associate this Entity with the identifier that represents them in that service.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
* the server responded with an unexpected value).
Expand Down Expand Up @@ -986,8 +986,9 @@ private constructor(
}

/**
* A reference to data stored in a third-party verification service. Your integration
* may or may not use this field.
* If you are using a third-party service for identity verification, you can use this
* field to associate this Entity with the identifier that represents them in that
* service.
*/
fun thirdPartyVerification(thirdPartyVerification: ThirdPartyVerification) =
thirdPartyVerification(JsonField.of(thirdPartyVerification))
Expand Down Expand Up @@ -10721,25 +10722,25 @@ private constructor(

companion object {

/** Low */
/** Minimal risk of involvement in financial crime. */
@JvmField val LOW = of("low")

/** Medium */
/** Moderate risk of involvement in financial crime. */
@JvmField val MEDIUM = of("medium")

/** High */
/** Elevated risk of involvement in financial crime. */
@JvmField val HIGH = of("high")

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

/** An enum containing [Rating]'s known values. */
enum class Known {
/** Low */
/** Minimal risk of involvement in financial crime. */
LOW,
/** Medium */
/** Moderate risk of involvement in financial crime. */
MEDIUM,
/** High */
/** Elevated risk of involvement in financial crime. */
HIGH,
}

Expand All @@ -10753,11 +10754,11 @@ private constructor(
* - It was constructed with an arbitrary value using the [of] method.
*/
enum class Value {
/** Low */
/** Minimal risk of involvement in financial crime. */
LOW,
/** Medium */
/** Moderate risk of involvement in financial crime. */
MEDIUM,
/** High */
/** Elevated risk of involvement in financial crime. */
HIGH,
/**
* An enum member indicating that [Rating] was instantiated with an unknown value.
Expand Down Expand Up @@ -11029,8 +11030,8 @@ private constructor(
}

/**
* A reference to data stored in a third-party verification service. Your integration may or may
* not use this field.
* If you are using a third-party service for identity verification, you can use this field to
* associate this Entity with the identifier that represents them in that service.
*/
class ThirdPartyVerification
private constructor(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ private constructor(
fun riskRating(): Optional<RiskRating> = body.riskRating()

/**
* A reference to data stored in a third-party verification service. Your integration may or may
* not use this field.
* If you are using a third-party service for identity verification, you can use this field to
* associate this Entity with the identifier that represents them in that service.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
Expand Down Expand Up @@ -258,8 +258,8 @@ private constructor(
fun riskRating(riskRating: JsonField<RiskRating>) = apply { body.riskRating(riskRating) }

/**
* A reference to data stored in a third-party verification service. Your integration may or
* may not use this field.
* If you are using a third-party service for identity verification, you can use this field
* to associate this Entity with the identifier that represents them in that service.
*/
fun thirdPartyVerification(thirdPartyVerification: ThirdPartyVerification) = apply {
body.thirdPartyVerification(thirdPartyVerification)
Expand Down Expand Up @@ -511,8 +511,8 @@ private constructor(
fun riskRating(): Optional<RiskRating> = riskRating.getOptional("risk_rating")

/**
* A reference to data stored in a third-party verification service. Your integration may or
* may not use this field.
* If you are using a third-party service for identity verification, you can use this field
* to associate this Entity with the identifier that represents them in that service.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
* the server responded with an unexpected value).
Expand Down Expand Up @@ -695,8 +695,9 @@ private constructor(
}

/**
* A reference to data stored in a third-party verification service. Your integration
* may or may not use this field.
* If you are using a third-party service for identity verification, you can use this
* field to associate this Entity with the identifier that represents them in that
* service.
*/
fun thirdPartyVerification(thirdPartyVerification: ThirdPartyVerification) =
thirdPartyVerification(JsonField.of(thirdPartyVerification))
Expand Down Expand Up @@ -2616,25 +2617,25 @@ private constructor(

companion object {

/** Low */
/** Minimal risk of involvement in financial crime. */
@JvmField val LOW = of("low")

/** Medium */
/** Moderate risk of involvement in financial crime. */
@JvmField val MEDIUM = of("medium")

/** High */
/** Elevated risk of involvement in financial crime. */
@JvmField val HIGH = of("high")

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

/** An enum containing [Rating]'s known values. */
enum class Known {
/** Low */
/** Minimal risk of involvement in financial crime. */
LOW,
/** Medium */
/** Moderate risk of involvement in financial crime. */
MEDIUM,
/** High */
/** Elevated risk of involvement in financial crime. */
HIGH,
}

Expand All @@ -2648,11 +2649,11 @@ private constructor(
* - It was constructed with an arbitrary value using the [of] method.
*/
enum class Value {
/** Low */
/** Minimal risk of involvement in financial crime. */
LOW,
/** Medium */
/** Moderate risk of involvement in financial crime. */
MEDIUM,
/** High */
/** Elevated risk of involvement in financial crime. */
HIGH,
/**
* An enum member indicating that [Rating] was instantiated with an unknown value.
Expand Down Expand Up @@ -2766,8 +2767,8 @@ private constructor(
}

/**
* A reference to data stored in a third-party verification service. Your integration may or may
* not use this field.
* If you are using a third-party service for identity verification, you can use this field to
* associate this Entity with the identifier that represents them in that service.
*/
class ThirdPartyVerification
private constructor(
Expand Down
Loading