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.354.0"
".": "0.355.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: 228
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-3c8035f19693dda684506d2e1ea8e9ce7db5e7400923872518c3ac9cb19b7a2a.yml
openapi_spec_hash: a41137b030f9e14858f05263731b8f4d
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-029ea9e6c4067d483991aa9c3f62773ffaf56ac0b765749983afc182074e834d.yml
openapi_spec_hash: 4b3f58b1324441e24b4c2b4dfa391d74
config_hash: eb2035151c7b49c2f12caf55469b8f9a
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.355.0 (2025-11-07)

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

### Features

* **api:** api update ([30f96a9](https://github.com/Increase/increase-java/commit/30f96a966ac396ab2bcff7883deccfa334ca8029))

## 0.354.0 (2025-11-07)

Full Changelog: [v0.353.0...v0.354.0](https://github.com/Increase/increase-java/compare/v0.353.0...v0.354.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.354.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.354.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.354.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.355.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.355.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.355.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.354.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.355.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.354.0")
implementation("com.increase.api:increase-java:0.355.0")
```

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -700,6 +700,11 @@ private constructor(
/** A statement generated by Increase. */
@JvmField val INCREASE_STATEMENT = of("increase_statement")

/** A supplemental document for a Loan Application. */
@JvmField
val LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT =
of("loan_application_supplemental_document")

/** A file purpose not covered by any of the other cases. */
@JvmField val OTHER = of("other")

Expand Down Expand Up @@ -807,6 +812,8 @@ private constructor(
IDENTITY_DOCUMENT,
/** A statement generated by Increase. */
INCREASE_STATEMENT,
/** A supplemental document for a Loan Application. */
LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT,
/** A file purpose not covered by any of the other cases. */
OTHER,
/** A legal document forming a trust. */
Expand Down Expand Up @@ -901,6 +908,8 @@ private constructor(
IDENTITY_DOCUMENT,
/** A statement generated by Increase. */
INCREASE_STATEMENT,
/** A supplemental document for a Loan Application. */
LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT,
/** A file purpose not covered by any of the other cases. */
OTHER,
/** A legal document forming a trust. */
Expand Down Expand Up @@ -974,6 +983,8 @@ private constructor(
FORM_SS_4 -> Value.FORM_SS_4
IDENTITY_DOCUMENT -> Value.IDENTITY_DOCUMENT
INCREASE_STATEMENT -> Value.INCREASE_STATEMENT
LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT ->
Value.LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT
OTHER -> Value.OTHER
TRUST_FORMATION_DOCUMENT -> Value.TRUST_FORMATION_DOCUMENT
DIGITAL_WALLET_ARTWORK -> Value.DIGITAL_WALLET_ARTWORK
Expand Down Expand Up @@ -1018,6 +1029,8 @@ private constructor(
FORM_SS_4 -> Known.FORM_SS_4
IDENTITY_DOCUMENT -> Known.IDENTITY_DOCUMENT
INCREASE_STATEMENT -> Known.INCREASE_STATEMENT
LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT ->
Known.LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT
OTHER -> Known.OTHER
TRUST_FORMATION_DOCUMENT -> Known.TRUST_FORMATION_DOCUMENT
DIGITAL_WALLET_ARTWORK -> Known.DIGITAL_WALLET_ARTWORK
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -618,6 +618,11 @@ private constructor(
/** An image of a government-issued ID. */
@JvmField val IDENTITY_DOCUMENT = of("identity_document")

/** A supplemental document for a Loan Application. */
@JvmField
val LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT =
of("loan_application_supplemental_document")

/** A file purpose not covered by any of the other cases. */
@JvmField val OTHER = of("other")

Expand Down Expand Up @@ -688,6 +693,8 @@ private constructor(
FORM_SS_4,
/** An image of a government-issued ID. */
IDENTITY_DOCUMENT,
/** A supplemental document for a Loan Application. */
LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT,
/** A file purpose not covered by any of the other cases. */
OTHER,
/** A legal document forming a trust. */
Expand Down Expand Up @@ -752,6 +759,8 @@ private constructor(
FORM_SS_4,
/** An image of a government-issued ID. */
IDENTITY_DOCUMENT,
/** A supplemental document for a Loan Application. */
LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT,
/** A file purpose not covered by any of the other cases. */
OTHER,
/** A legal document forming a trust. */
Expand Down Expand Up @@ -807,6 +816,8 @@ private constructor(
CHECK_ATTACHMENT -> Value.CHECK_ATTACHMENT
FORM_SS_4 -> Value.FORM_SS_4
IDENTITY_DOCUMENT -> Value.IDENTITY_DOCUMENT
LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT ->
Value.LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT
OTHER -> Value.OTHER
TRUST_FORMATION_DOCUMENT -> Value.TRUST_FORMATION_DOCUMENT
DIGITAL_WALLET_ARTWORK -> Value.DIGITAL_WALLET_ARTWORK
Expand Down Expand Up @@ -839,6 +850,8 @@ private constructor(
CHECK_ATTACHMENT -> Known.CHECK_ATTACHMENT
FORM_SS_4 -> Known.FORM_SS_4
IDENTITY_DOCUMENT -> Known.IDENTITY_DOCUMENT
LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT ->
Known.LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT
OTHER -> Known.OTHER
TRUST_FORMATION_DOCUMENT -> Known.TRUST_FORMATION_DOCUMENT
DIGITAL_WALLET_ARTWORK -> Known.DIGITAL_WALLET_ARTWORK
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -633,6 +633,11 @@ private constructor(
/** A statement generated by Increase. */
@JvmField val INCREASE_STATEMENT = of("increase_statement")

/** A supplemental document for a Loan Application. */
@JvmField
val LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT =
of("loan_application_supplemental_document")

/** A file purpose not covered by any of the other cases. */
@JvmField val OTHER = of("other")

Expand Down Expand Up @@ -740,6 +745,8 @@ private constructor(
IDENTITY_DOCUMENT,
/** A statement generated by Increase. */
INCREASE_STATEMENT,
/** A supplemental document for a Loan Application. */
LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT,
/** A file purpose not covered by any of the other cases. */
OTHER,
/** A legal document forming a trust. */
Expand Down Expand Up @@ -834,6 +841,8 @@ private constructor(
IDENTITY_DOCUMENT,
/** A statement generated by Increase. */
INCREASE_STATEMENT,
/** A supplemental document for a Loan Application. */
LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT,
/** A file purpose not covered by any of the other cases. */
OTHER,
/** A legal document forming a trust. */
Expand Down Expand Up @@ -907,6 +916,8 @@ private constructor(
FORM_SS_4 -> Value.FORM_SS_4
IDENTITY_DOCUMENT -> Value.IDENTITY_DOCUMENT
INCREASE_STATEMENT -> Value.INCREASE_STATEMENT
LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT ->
Value.LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT
OTHER -> Value.OTHER
TRUST_FORMATION_DOCUMENT -> Value.TRUST_FORMATION_DOCUMENT
DIGITAL_WALLET_ARTWORK -> Value.DIGITAL_WALLET_ARTWORK
Expand Down Expand Up @@ -951,6 +962,8 @@ private constructor(
FORM_SS_4 -> Known.FORM_SS_4
IDENTITY_DOCUMENT -> Known.IDENTITY_DOCUMENT
INCREASE_STATEMENT -> Known.INCREASE_STATEMENT
LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT ->
Known.LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT
OTHER -> Known.OTHER
TRUST_FORMATION_DOCUMENT -> Known.TRUST_FORMATION_DOCUMENT
DIGITAL_WALLET_ARTWORK -> Known.DIGITAL_WALLET_ARTWORK
Expand Down
Loading