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.310.0"
".": "0.311.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: 216
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-a3db5141ad8a06aca3ec4fbc0a4414af61ffea1bbd6470b4a9ad13f8b24ed9eb.yml
openapi_spec_hash: 1192108447914f9233f6e0933dd36033
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-4951789bd74367647a7109ac527206883115628aac13b8131b0bc046ead9cc5c.yml
openapi_spec_hash: 924a557a551c40624e4fe4703dec71cc
config_hash: 632b628b59d8f0b717153b3d8133f6cb
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.311.0 (2025-08-29)

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

### Features

* **api:** api update ([7d419b8](https://github.com/Increase/increase-java/commit/7d419b884d0fa4ed0b52ae8322726aa2f556390a))

## 0.310.0 (2025-08-29)

Full Changelog: [v0.309.0...v0.310.0](https://github.com/Increase/increase-java/compare/v0.309.0...v0.310.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.310.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.310.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.310.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.311.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.311.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.311.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.310.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.311.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.310.0")
implementation("com.increase.api:increase-java:0.311.0")
```

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

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

/**
* Unstructured `payment_related_information` passed through with the transfer.
* Unstructured `payment_related_information` passed through with the transfer. Required if
* and only if `category` is `freeform`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
* the server responded with an unexpected value).
Expand All @@ -1927,7 +1928,8 @@ private constructor(

/**
* Structured ASC X12 820 remittance advice records. Please reach out to
* [support@increase.com](mailto:support@increase.com) for more information.
* [support@increase.com](mailto:support@increase.com) for more information. Required if and
* only if `category` is `payment_order_remittance_advice`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
* the server responded with an unexpected value).
Expand Down Expand Up @@ -2014,7 +2016,10 @@ private constructor(
*/
fun category(category: JsonField<Category>) = apply { this.category = category }

/** Unstructured `payment_related_information` passed through with the transfer. */
/**
* Unstructured `payment_related_information` passed through with the transfer. Required
* if and only if `category` is `freeform`.
*/
fun freeform(freeform: Freeform) = freeform(JsonField.of(freeform))

/**
Expand All @@ -2028,7 +2033,8 @@ private constructor(

/**
* Structured ASC X12 820 remittance advice records. Please reach out to
* [support@increase.com](mailto:support@increase.com) for more information.
* [support@increase.com](mailto:support@increase.com) for more information. Required if
* and only if `category` is `payment_order_remittance_advice`.
*/
fun paymentOrderRemittanceAdvice(
paymentOrderRemittanceAdvice: PaymentOrderRemittanceAdvice
Expand Down Expand Up @@ -2265,7 +2271,10 @@ private constructor(
override fun toString() = value.toString()
}

/** Unstructured `payment_related_information` passed through with the transfer. */
/**
* Unstructured `payment_related_information` passed through with the transfer. Required if
* and only if `category` is `freeform`.
*/
class Freeform
private constructor(
private val entries: JsonField<List<Entry>>,
Expand Down Expand Up @@ -2635,7 +2644,8 @@ private constructor(

/**
* Structured ASC X12 820 remittance advice records. Please reach out to
* [support@increase.com](mailto:support@increase.com) for more information.
* [support@increase.com](mailto:support@increase.com) for more information. Required if and
* only if `category` is `payment_order_remittance_advice`.
*/
class PaymentOrderRemittanceAdvice
private constructor(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ private constructor(
fun category(): Category = body.category()

/**
* An account verification letter.
* An account verification letter. Required if and only if `category` is
* `account_verification_letter`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
Expand All @@ -48,7 +49,7 @@ private constructor(
body.accountVerificationLetter()

/**
* Funding instructions.
* Funding instructions. Required if and only if `category` is `funding_instructions`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
Expand Down Expand Up @@ -139,7 +140,10 @@ private constructor(
*/
fun category(category: JsonField<Category>) = apply { body.category(category) }

/** An account verification letter. */
/**
* An account verification letter. Required if and only if `category` is
* `account_verification_letter`.
*/
fun accountVerificationLetter(accountVerificationLetter: AccountVerificationLetter) =
apply {
body.accountVerificationLetter(accountVerificationLetter)
Expand All @@ -156,7 +160,7 @@ private constructor(
accountVerificationLetter: JsonField<AccountVerificationLetter>
) = apply { body.accountVerificationLetter(accountVerificationLetter) }

/** Funding instructions. */
/** Funding instructions. Required if and only if `category` is `funding_instructions`. */
fun fundingInstructions(fundingInstructions: FundingInstructions) = apply {
body.fundingInstructions(fundingInstructions)
}
Expand Down Expand Up @@ -345,7 +349,8 @@ private constructor(
fun category(): Category = category.getRequired("category")

/**
* An account verification letter.
* An account verification letter. Required if and only if `category` is
* `account_verification_letter`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
* the server responded with an unexpected value).
Expand All @@ -354,7 +359,7 @@ private constructor(
accountVerificationLetter.getOptional("account_verification_letter")

/**
* Funding instructions.
* Funding instructions. Required if and only if `category` is `funding_instructions`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
* the server responded with an unexpected value).
Expand Down Expand Up @@ -444,7 +449,10 @@ private constructor(
*/
fun category(category: JsonField<Category>) = apply { this.category = category }

/** An account verification letter. */
/**
* An account verification letter. Required if and only if `category` is
* `account_verification_letter`.
*/
fun accountVerificationLetter(accountVerificationLetter: AccountVerificationLetter) =
accountVerificationLetter(JsonField.of(accountVerificationLetter))

Expand All @@ -459,7 +467,9 @@ private constructor(
accountVerificationLetter: JsonField<AccountVerificationLetter>
) = apply { this.accountVerificationLetter = accountVerificationLetter }

/** Funding instructions. */
/**
* Funding instructions. Required if and only if `category` is `funding_instructions`.
*/
fun fundingInstructions(fundingInstructions: FundingInstructions) =
fundingInstructions(JsonField.of(fundingInstructions))

Expand Down Expand Up @@ -708,7 +718,10 @@ private constructor(
override fun toString() = value.toString()
}

/** An account verification letter. */
/**
* An account verification letter. Required if and only if `category` is
* `account_verification_letter`.
*/
class AccountVerificationLetter
private constructor(
private val accountNumberId: JsonField<String>,
Expand Down Expand Up @@ -921,7 +934,7 @@ private constructor(
"AccountVerificationLetter{accountNumberId=$accountNumberId, balanceDate=$balanceDate, additionalProperties=$additionalProperties}"
}

/** Funding instructions. */
/** Funding instructions. Required if and only if `category` is `funding_instructions`. */
class FundingInstructions
private constructor(
private val accountNumberId: JsonField<String>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ private constructor(

/**
* Details of the Government Authority entity to create. Required if `structure` is equal to
* `Government Authority`.
* `government_authority`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
Expand Down Expand Up @@ -271,7 +271,7 @@ private constructor(

/**
* Details of the Government Authority entity to create. Required if `structure` is equal to
* `Government Authority`.
* `government_authority`.
*/
fun governmentAuthority(governmentAuthority: GovernmentAuthority) = apply {
body.governmentAuthority(governmentAuthority)
Expand Down Expand Up @@ -599,7 +599,7 @@ private constructor(

/**
* Details of the Government Authority entity to create. Required if `structure` is equal to
* `Government Authority`.
* `government_authority`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
* the server responded with an unexpected value).
Expand Down Expand Up @@ -832,7 +832,7 @@ private constructor(

/**
* Details of the Government Authority entity to create. Required if `structure` is
* equal to `Government Authority`.
* equal to `government_authority`.
*/
fun governmentAuthority(governmentAuthority: GovernmentAuthority) =
governmentAuthority(JsonField.of(governmentAuthority))
Expand Down Expand Up @@ -4931,7 +4931,7 @@ private constructor(

/**
* Details of the Government Authority entity to create. Required if `structure` is equal to
* `Government Authority`.
* `government_authority`.
*/
class GovernmentAuthority
private constructor(
Expand Down Expand Up @@ -11893,8 +11893,8 @@ private constructor(
fun structure(): Structure = structure.getRequired("structure")

/**
* Details of the individual trustee. Required when the trustee `structure` is equal to
* `individual`.
* Details of the individual trustee. Within the trustee object, this is required if
* `structure` is equal to `individual`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g.
* if the server responded with an unexpected value).
Expand Down Expand Up @@ -11975,8 +11975,8 @@ private constructor(
}

/**
* Details of the individual trustee. Required when the trustee `structure` is equal
* to `individual`.
* Details of the individual trustee. Within the trustee object, this is required if
* `structure` is equal to `individual`.
*/
fun individual(individual: Individual) = individual(JsonField.of(individual))

Expand Down Expand Up @@ -12194,8 +12194,8 @@ private constructor(
}

/**
* Details of the individual trustee. Required when the trustee `structure` is equal to
* `individual`.
* Details of the individual trustee. Within the trustee object, this is required if
* `structure` is equal to `individual`.
*/
class Individual
private constructor(
Expand Down
Loading