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.344.0"
".": "0.345.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: 214
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-57a965663739666faa0c7699e48af1185389436a2c4fd774e28d86cb7b1c69ba.yml
openapi_spec_hash: cd4681291bf755562f76ae6a1ead73a3
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-1084eee4a06751b960309c5854bc2af4d20e8022359fda84882ea67495bdce1b.yml
openapi_spec_hash: 90bed8cf565ade10b60b33d5ca70e6d0
config_hash: a143293c5450ae8f52acad08f3102575
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.345.0 (2025-10-01)

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

### Features

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

## 0.344.0 (2025-09-29)

Full Changelog: [v0.343.0...v0.344.0](https://github.com/Increase/increase-java/compare/v0.343.0...v0.344.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.344.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.344.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.344.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.345.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.345.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.345.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.344.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.345.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.344.0")
implementation("com.increase.api:increase-java:0.345.0")
```

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1135,9 +1135,9 @@ private constructor(
achTransferReturn.getOptional("ach_transfer_return")

/**
* A Card Dispute Acceptance object. This field will be present in the JSON response if and
* only if `category` is equal to `card_dispute_acceptance`. Contains the details of a
* successful Card Dispute.
* A Legacy Card Dispute Acceptance object. This field will be present in the JSON response
* if and only if `category` is equal to `card_dispute_acceptance`. Contains the details of
* a successful Card Dispute.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
* the server responded with an unexpected value).
Expand All @@ -1157,8 +1157,8 @@ private constructor(
cardDisputeFinancial.getOptional("card_dispute_financial")

/**
* A Card Dispute Loss object. This field will be present in the JSON response if and only
* if `category` is equal to `card_dispute_loss`. Contains the details of a lost Card
* A Legacy Card Dispute Loss object. This field will be present in the JSON response if and
* only if `category` is equal to `card_dispute_loss`. Contains the details of a lost Card
* Dispute.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
Expand Down Expand Up @@ -2166,9 +2166,9 @@ private constructor(
}

/**
* A Card Dispute Acceptance object. This field will be present in the JSON response if
* and only if `category` is equal to `card_dispute_acceptance`. Contains the details of
* a successful Card Dispute.
* A Legacy Card Dispute Acceptance object. This field will be present in the JSON
* response if and only if `category` is equal to `card_dispute_acceptance`. Contains
* the details of a successful Card Dispute.
*/
fun cardDisputeAcceptance(cardDisputeAcceptance: CardDisputeAcceptance?) =
cardDisputeAcceptance(JsonField.ofNullable(cardDisputeAcceptance))
Expand Down Expand Up @@ -2220,9 +2220,9 @@ private constructor(
}

/**
* A Card Dispute Loss object. This field will be present in the JSON response if and
* only if `category` is equal to `card_dispute_loss`. Contains the details of a lost
* Card Dispute.
* A Legacy Card Dispute Loss object. This field will be present in the JSON response if
* and only if `category` is equal to `card_dispute_loss`. Contains the details of a
* lost Card Dispute.
*/
fun cardDisputeLoss(cardDisputeLoss: CardDisputeLoss?) =
cardDisputeLoss(JsonField.ofNullable(cardDisputeLoss))
Expand Down Expand Up @@ -6416,9 +6416,9 @@ private constructor(
}

/**
* A Card Dispute Acceptance object. This field will be present in the JSON response if and
* only if `category` is equal to `card_dispute_acceptance`. Contains the details of a
* successful Card Dispute.
* A Legacy Card Dispute Acceptance object. This field will be present in the JSON response
* if and only if `category` is equal to `card_dispute_acceptance`. Contains the details of
* a successful Card Dispute.
*/
class CardDisputeAcceptance
@JsonCreator(mode = JsonCreator.Mode.DISABLED)
Expand Down Expand Up @@ -7463,8 +7463,8 @@ private constructor(
}

/**
* A Card Dispute Loss object. This field will be present in the JSON response if and only
* if `category` is equal to `card_dispute_loss`. Contains the details of a lost Card
* A Legacy Card Dispute Loss object. This field will be present in the JSON response if and
* only if `category` is equal to `card_dispute_loss`. Contains the details of a lost Card
* Dispute.
*/
class CardDisputeLoss
Expand Down Expand Up @@ -36742,8 +36742,8 @@ private constructor(
@JvmField val CASHBACK_PAYMENT = of("cashback_payment")

/**
* Card Dispute Acceptance: details will be under the `card_dispute_acceptance`
* object.
* Legacy Card Dispute Acceptance: details will be under the
* `card_dispute_acceptance` object.
*/
@JvmField val CARD_DISPUTE_ACCEPTANCE = of("card_dispute_acceptance")

Expand All @@ -36753,7 +36753,9 @@ private constructor(
*/
@JvmField val CARD_DISPUTE_FINANCIAL = of("card_dispute_financial")

/** Card Dispute Loss: details will be under the `card_dispute_loss` object. */
/**
* Legacy Card Dispute Loss: details will be under the `card_dispute_loss` object.
*/
@JvmField val CARD_DISPUTE_LOSS = of("card_dispute_loss")

/** Card Refund: details will be under the `card_refund` object. */
Expand Down Expand Up @@ -36932,16 +36934,18 @@ private constructor(
/** Cashback Payment: details will be under the `cashback_payment` object. */
CASHBACK_PAYMENT,
/**
* Card Dispute Acceptance: details will be under the `card_dispute_acceptance`
* object.
* Legacy Card Dispute Acceptance: details will be under the
* `card_dispute_acceptance` object.
*/
CARD_DISPUTE_ACCEPTANCE,
/**
* Card Dispute Financial: details will be under the `card_dispute_financial`
* object.
*/
CARD_DISPUTE_FINANCIAL,
/** Card Dispute Loss: details will be under the `card_dispute_loss` object. */
/**
* Legacy Card Dispute Loss: details will be under the `card_dispute_loss` object.
*/
CARD_DISPUTE_LOSS,
/** Card Refund: details will be under the `card_refund` object. */
CARD_REFUND,
Expand Down Expand Up @@ -37087,16 +37091,18 @@ private constructor(
/** Cashback Payment: details will be under the `cashback_payment` object. */
CASHBACK_PAYMENT,
/**
* Card Dispute Acceptance: details will be under the `card_dispute_acceptance`
* object.
* Legacy Card Dispute Acceptance: details will be under the
* `card_dispute_acceptance` object.
*/
CARD_DISPUTE_ACCEPTANCE,
/**
* Card Dispute Financial: details will be under the `card_dispute_financial`
* object.
*/
CARD_DISPUTE_FINANCIAL,
/** Card Dispute Loss: details will be under the `card_dispute_loss` object. */
/**
* Legacy Card Dispute Loss: details will be under the `card_dispute_loss` object.
*/
CARD_DISPUTE_LOSS,
/** Card Refund: details will be under the `card_refund` object. */
CARD_REFUND,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -444,8 +444,8 @@ private constructor(
@JvmField val CASHBACK_PAYMENT = of("cashback_payment")

/**
* Card Dispute Acceptance: details will be under the `card_dispute_acceptance`
* object.
* Legacy Card Dispute Acceptance: details will be under the
* `card_dispute_acceptance` object.
*/
@JvmField val CARD_DISPUTE_ACCEPTANCE = of("card_dispute_acceptance")

Expand All @@ -455,7 +455,9 @@ private constructor(
*/
@JvmField val CARD_DISPUTE_FINANCIAL = of("card_dispute_financial")

/** Card Dispute Loss: details will be under the `card_dispute_loss` object. */
/**
* Legacy Card Dispute Loss: details will be under the `card_dispute_loss` object.
*/
@JvmField val CARD_DISPUTE_LOSS = of("card_dispute_loss")

/** Card Refund: details will be under the `card_refund` object. */
Expand Down Expand Up @@ -634,16 +636,18 @@ private constructor(
/** Cashback Payment: details will be under the `cashback_payment` object. */
CASHBACK_PAYMENT,
/**
* Card Dispute Acceptance: details will be under the `card_dispute_acceptance`
* object.
* Legacy Card Dispute Acceptance: details will be under the
* `card_dispute_acceptance` object.
*/
CARD_DISPUTE_ACCEPTANCE,
/**
* Card Dispute Financial: details will be under the `card_dispute_financial`
* object.
*/
CARD_DISPUTE_FINANCIAL,
/** Card Dispute Loss: details will be under the `card_dispute_loss` object. */
/**
* Legacy Card Dispute Loss: details will be under the `card_dispute_loss` object.
*/
CARD_DISPUTE_LOSS,
/** Card Refund: details will be under the `card_refund` object. */
CARD_REFUND,
Expand Down Expand Up @@ -789,16 +793,18 @@ private constructor(
/** Cashback Payment: details will be under the `cashback_payment` object. */
CASHBACK_PAYMENT,
/**
* Card Dispute Acceptance: details will be under the `card_dispute_acceptance`
* object.
* Legacy Card Dispute Acceptance: details will be under the
* `card_dispute_acceptance` object.
*/
CARD_DISPUTE_ACCEPTANCE,
/**
* Card Dispute Financial: details will be under the `card_dispute_financial`
* object.
*/
CARD_DISPUTE_FINANCIAL,
/** Card Dispute Loss: details will be under the `card_dispute_loss` object. */
/**
* Legacy Card Dispute Loss: details will be under the `card_dispute_loss` object.
*/
CARD_DISPUTE_LOSS,
/** Card Refund: details will be under the `card_refund` object. */
CARD_REFUND,
Expand Down
Loading