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.430.0"
".": "0.431.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-e1f7516f9b6e2330afbb9f36fc3721a0c6b43947b8996105fa21d551591a3950.yml
openapi_spec_hash: 782bc3e21cf8b511cf17b2a48600a67e
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-1127bb6ee64bebab1bbf8ecbd9ec71c0deb5ca8552fd454fa2ec120fd9eac14a.yml
openapi_spec_hash: 9fedc9dc133202e4d39bf7bffe4839d9
config_hash: 4b562e97b3d8b4cba758a87d4927a76d
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.431.0 (2026-02-14)

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

### Features

* **api:** api update ([015371c](https://github.com/Increase/increase-java/commit/015371cdb45d16d79cf7cea5e2f880e1ff40dae9))

## 0.430.0 (2026-02-10)

Full Changelog: [v0.429.0...v0.430.0](https://github.com/Increase/increase-java/compare/v0.429.0...v0.430.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.430.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.430.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.430.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.431.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.431.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.431.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.430.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.431.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.430.0")
implementation("com.increase.api:increase-java:0.431.0")
```

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ private constructor(
fun createdAt(): OffsetDateTime = createdAt.getRequired("created_at")

/**
* The Account's balance at the start of its statement period.
* The Account's balance at the end of its statement period.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type or is
* unexpectedly missing or null (e.g. if the server responded with an unexpected value).
Expand Down Expand Up @@ -345,7 +345,7 @@ private constructor(
*/
fun createdAt(createdAt: JsonField<OffsetDateTime>) = apply { this.createdAt = createdAt }

/** The Account's balance at the start of its statement period. */
/** The Account's balance at the end of its statement period. */
fun endingBalance(endingBalance: Long) = endingBalance(JsonField.of(endingBalance))

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ private constructor(
fun individualId(): Optional<String> = individualId.getOptional("individual_id")

/**
* The name of the transfer recipient. This value is information and not verified by the
* The name of the transfer recipient. This value is informational and not verified by the
* recipient's bank.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
Expand Down Expand Up @@ -1340,7 +1340,7 @@ private constructor(
}

/**
* The name of the transfer recipient. This value is information and not verified by the
* The name of the transfer recipient. This value is informational and not verified by the
* recipient's bank.
*/
fun individualName(individualName: String?) =
Expand Down Expand Up @@ -9451,7 +9451,7 @@ private constructor(

/**
* When the transfer is expected to settle in the recipient's account. Credits may be
* available sooner, at the receiving banks discretion. The FedACH schedule is published
* available sooner, at the receiving bank's discretion. The FedACH schedule is published
* [here](https://www.frbservices.org/resources/resource-centers/same-day-ach/fedach-processing-schedule.html).
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type or is
Expand Down Expand Up @@ -9643,7 +9643,8 @@ private constructor(

/**
* When the transfer is expected to settle in the recipient's account. Credits may be
* available sooner, at the receiving banks discretion. The FedACH schedule is published
* available sooner, at the receiving bank's discretion. The FedACH schedule is
* published
* [here](https://www.frbservices.org/resources/resource-centers/same-day-ach/fedach-processing-schedule.html).
*/
fun expectedFundsSettlementAt(expectedFundsSettlementAt: OffsetDateTime) =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ import java.util.Collections
import java.util.Objects
import kotlin.jvm.optionals.getOrNull

/**
* Represents a request to lookup the balance of an Bookkeeping Account at a given point in time.
*/
/** Represents a request to lookup the balance of a Bookkeeping Account at a given point in time. */
class BookkeepingBalanceLookup
@JsonCreator(mode = JsonCreator.Mode.DISABLED)
private constructor(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ private constructor(
fun createdAt(): OffsetDateTime = createdAt.getRequired("created_at")

/**
* The identifier for the Account the Entry belongs to.
* The identifier for the Entry Set the Entry belongs to.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type or is
* unexpectedly missing or null (e.g. if the server responded with an unexpected value).
Expand Down Expand Up @@ -243,7 +243,7 @@ private constructor(
*/
fun createdAt(createdAt: JsonField<OffsetDateTime>) = apply { this.createdAt = createdAt }

/** The identifier for the Account the Entry belongs to. */
/** The identifier for the Entry Set the Entry belongs to. */
fun entrySetId(entrySetId: String) = entrySetId(JsonField.of(entrySetId))

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ private constructor(
/**
* A Card Authorization object. This field will be present in the JSON response if and only
* if `category` is equal to `card_authorization`. Card Authorizations are temporary holds
* placed on a customers funds with the intent to later clear a transaction.
* placed on a customer's funds with the intent to later clear a transaction.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
* the server responded with an unexpected value).
Expand Down Expand Up @@ -678,7 +678,7 @@ private constructor(
/**
* A Card Financial object. This field will be present in the JSON response if and only if
* `category` is equal to `card_financial`. Card Financials are temporary holds placed on a
* customers funds with the intent to later clear a transaction.
* customer's funds with the intent to later clear a transaction.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
* the server responded with an unexpected value).
Expand Down Expand Up @@ -709,7 +709,7 @@ private constructor(
/**
* A Card Refund object. This field will be present in the JSON response if and only if
* `category` is equal to `card_refund`. Card Refunds move money back to the cardholder.
* While they are usually connected to a Card Settlement an acquirer can also refund money
* While they are usually connected to a Card Settlement, an acquirer can also refund money
* directly to a card without relation to a transaction.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
Expand Down Expand Up @@ -1030,7 +1030,7 @@ private constructor(
/**
* A Card Authorization object. This field will be present in the JSON response if and
* only if `category` is equal to `card_authorization`. Card Authorizations are
* temporary holds placed on a customers funds with the intent to later clear a
* temporary holds placed on a customer's funds with the intent to later clear a
* transaction.
*/
fun cardAuthorization(cardAuthorization: CardAuthorization?) =
Expand Down Expand Up @@ -1135,7 +1135,7 @@ private constructor(
/**
* A Card Financial object. This field will be present in the JSON response if and only
* if `category` is equal to `card_financial`. Card Financials are temporary holds
* placed on a customers funds with the intent to later clear a transaction.
* placed on a customer's funds with the intent to later clear a transaction.
*/
fun cardFinancial(cardFinancial: CardFinancial?) =
cardFinancial(JsonField.ofNullable(cardFinancial))
Expand Down Expand Up @@ -1208,7 +1208,7 @@ private constructor(
/**
* A Card Refund object. This field will be present in the JSON response if and only if
* `category` is equal to `card_refund`. Card Refunds move money back to the cardholder.
* While they are usually connected to a Card Settlement an acquirer can also refund
* While they are usually connected to a Card Settlement, an acquirer can also refund
* money directly to a card without relation to a transaction.
*/
fun cardRefund(cardRefund: CardRefund?) = cardRefund(JsonField.ofNullable(cardRefund))
Expand Down Expand Up @@ -4390,7 +4390,7 @@ private constructor(
/**
* A Card Authorization object. This field will be present in the JSON response if and only
* if `category` is equal to `card_authorization`. Card Authorizations are temporary holds
* placed on a customers funds with the intent to later clear a transaction.
* placed on a customer's funds with the intent to later clear a transaction.
*/
class CardAuthorization
@JsonCreator(mode = JsonCreator.Mode.DISABLED)
Expand Down Expand Up @@ -31601,7 +31601,7 @@ private constructor(
/**
* A Card Financial object. This field will be present in the JSON response if and only if
* `category` is equal to `card_financial`. Card Financials are temporary holds placed on a
* customers funds with the intent to later clear a transaction.
* customer's funds with the intent to later clear a transaction.
*/
class CardFinancial
@JsonCreator(mode = JsonCreator.Mode.DISABLED)
Expand Down Expand Up @@ -46542,7 +46542,7 @@ private constructor(
/**
* A Card Refund object. This field will be present in the JSON response if and only if
* `category` is equal to `card_refund`. Card Refunds move money back to the cardholder.
* While they are usually connected to a Card Settlement an acquirer can also refund money
* While they are usually connected to a Card Settlement, an acquirer can also refund money
* directly to a card without relation to a transaction.
*/
class CardRefund
Expand Down Expand Up @@ -46694,7 +46694,7 @@ private constructor(
fun currency(): Currency = currency.getRequired("currency")

/**
* Interchange assessed as a part of this transaciton.
* Interchange assessed as a part of this transaction.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g.
* if the server responded with an unexpected value).
Expand Down Expand Up @@ -47171,7 +47171,7 @@ private constructor(
*/
fun currency(currency: JsonField<Currency>) = apply { this.currency = currency }

/** Interchange assessed as a part of this transaciton. */
/** Interchange assessed as a part of this transaction. */
fun interchange(interchange: Interchange?) =
interchange(JsonField.ofNullable(interchange))

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

/** Interchange assessed as a part of this transaciton. */
/** Interchange assessed as a part of this transaction. */
class Interchange
@JsonCreator(mode = JsonCreator.Mode.DISABLED)
private constructor(
Expand Down Expand Up @@ -58494,8 +58494,8 @@ private constructor(

/**
* Surcharge amount details, if applicable. The amount is positive if the surcharge is
* added to to the overall transaction amount (surcharge), and negative if the surcharge
* is deducted from the overall transaction amount (discount).
* added to the overall transaction amount (surcharge), and negative if the surcharge is
* deducted from the overall transaction amount (discount).
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g.
* if the server responded with an unexpected value).
Expand Down Expand Up @@ -59188,7 +59188,7 @@ private constructor(

/**
* Surcharge amount details, if applicable. The amount is positive if the surcharge
* is added to to the overall transaction amount (surcharge), and negative if the
* is added to the overall transaction amount (surcharge), and negative if the
* surcharge is deducted from the overall transaction amount (discount).
*/
fun surcharge(surcharge: Surcharge?) = surcharge(JsonField.ofNullable(surcharge))
Expand Down Expand Up @@ -67805,8 +67805,8 @@ private constructor(

/**
* Surcharge amount details, if applicable. The amount is positive if the surcharge is
* added to to the overall transaction amount (surcharge), and negative if the surcharge
* is deducted from the overall transaction amount (discount).
* added to the overall transaction amount (surcharge), and negative if the surcharge is
* deducted from the overall transaction amount (discount).
*/
class Surcharge
@JsonCreator(mode = JsonCreator.Mode.DISABLED)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6447,7 +6447,7 @@ private constructor(

/**
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which the
* transfer was submitted to card network.
* transfer was submitted to the card network.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type or is
* unexpectedly missing or null (e.g. if the server responded with an unexpected value).
Expand Down Expand Up @@ -6581,7 +6581,7 @@ private constructor(

/**
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which the
* transfer was submitted to card network.
* transfer was submitted to the card network.
*/
fun submittedAt(submittedAt: OffsetDateTime) = submittedAt(JsonField.of(submittedAt))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ private constructor(
fun contactWebsite(): Optional<String> = contactWebsite.getOptional("contact_website")

/**
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which the Card
* Dispute was created.
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which the Digital
* Card Profile was created.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type or is
* unexpectedly missing or null (e.g. if the server responded with an unexpected value).
Expand Down Expand Up @@ -517,8 +517,8 @@ private constructor(
}

/**
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which the Card
* Dispute was created.
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which the Digital
* Card Profile was created.
*/
fun createdAt(createdAt: OffsetDateTime) = createdAt(JsonField.of(createdAt))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ private constructor(

/**
* The time at which the File Link will expire. The default is 1 hour from the time of the
* request. The maxiumum is 1 day from the time of the request.
* request. The maximum is 1 day from the time of the request.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
Expand Down Expand Up @@ -119,7 +119,7 @@ private constructor(

/**
* The time at which the File Link will expire. The default is 1 hour from the time of the
* request. The maxiumum is 1 day from the time of the request.
* request. The maximum is 1 day from the time of the request.
*/
fun expiresAt(expiresAt: OffsetDateTime) = apply { body.expiresAt(expiresAt) }

Expand Down Expand Up @@ -301,7 +301,7 @@ private constructor(

/**
* The time at which the File Link will expire. The default is 1 hour from the time of the
* request. The maxiumum is 1 day from the time of the request.
* request. The maximum is 1 day from the time of the request.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
* the server responded with an unexpected value).
Expand Down Expand Up @@ -377,7 +377,7 @@ private constructor(

/**
* The time at which the File Link will expire. The default is 1 hour from the time of
* the request. The maxiumum is 1 day from the time of the request.
* the request. The maximum is 1 day from the time of the request.
*/
fun expiresAt(expiresAt: OffsetDateTime) = expiresAt(JsonField.of(expiresAt))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6018,7 +6018,7 @@ private constructor(
updatedAccountNumber.getOptional("updated_account_number")

/**
* The new account number provided in the notification of change.
* The new routing number provided in the notification of change.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
* the server responded with an unexpected value).
Expand Down Expand Up @@ -6108,7 +6108,7 @@ private constructor(
this.updatedAccountNumber = updatedAccountNumber
}

/** The new account number provided in the notification of change. */
/** The new routing number provided in the notification of change. */
fun updatedRoutingNumber(updatedRoutingNumber: String?) =
updatedRoutingNumber(JsonField.ofNullable(updatedRoutingNumber))

Expand Down
Loading
Loading