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.273.0"
".": "0.274.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: 202
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-147712ba3a72b1dea9a966f9b0ebc99ccebe38e1789426115f3b4c8977ed03c8.yml
openapi_spec_hash: 6c6fc01c8ea4f34b3c2553928945c100
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-aca6b5e100fcf8da7f6fc67bfbf47543f197f1c3fed52d5f1147b7cbad515546.yml
openapi_spec_hash: 369011703600762a5a5d701b4e843f7b
config_hash: a185e9a72778cc4658ea73fb3a7f1354
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.274.0 (2025-08-06)

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

### Features

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

## 0.273.0 (2025-08-06)

Full Changelog: [v0.272.0...v0.273.0](https://github.com/Increase/increase-java/compare/v0.272.0...v0.273.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.273.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.273.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.273.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.274.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.274.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.274.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.273.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.274.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.273.0")
implementation("com.increase.api:increase-java:0.274.0")
```

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6775,24 +6775,29 @@ private constructor(

/** The user declined the merchant's request for pre-arbitration. */
@JvmField
val MERCHANT_PREARBITRATION_DECLINED =
of("merchant_prearbitration_declined")
val MERCHANT_PREARBITRATION_REQUEST_DECLINE_SUBMITTED =
of("merchant_prearbitration_request_decline_submitted")

/** The merchant's request for pre-arbitration was received. */
@JvmField
val MERCHANT_PREARBITRATION_RECEIVED =
of("merchant_prearbitration_received")
val MERCHANT_PREARBITRATION_REQUEST_RECEIVED =
of("merchant_prearbitration_request_received")

/** The transaction was represented by the merchant. */
@JvmField val REPRESENTED = of("represented")

/** The user's request for pre-arbitration was declined. */
@JvmField
val USER_PREARBITRATION_DECLINED = of("user_prearbitration_declined")
val USER_PREARBITRATION_REQUEST_DECLINE_RECEIVED =
of("user_prearbitration_request_decline_received")

/** The user's request for pre-arbitration was submitted. */
@JvmField
val USER_PREARBITRATION_SUBMITTED = of("user_prearbitration_submitted")
val USER_PREARBITRATION_REQUEST_SUBMITTED =
of("user_prearbitration_request_submitted")

/** The user withdrew from the dispute. */
@JvmField val USER_WITHDRAWAL_SUBMITTED = of("user_withdrawal_submitted")

@JvmStatic fun of(value: String) = EventType(JsonField.of(value))
}
Expand All @@ -6802,15 +6807,17 @@ private constructor(
/** The user's chargeback was submitted. */
CHARGEBACK_SUBMITTED,
/** The user declined the merchant's request for pre-arbitration. */
MERCHANT_PREARBITRATION_DECLINED,
MERCHANT_PREARBITRATION_REQUEST_DECLINE_SUBMITTED,
/** The merchant's request for pre-arbitration was received. */
MERCHANT_PREARBITRATION_RECEIVED,
MERCHANT_PREARBITRATION_REQUEST_RECEIVED,
/** The transaction was represented by the merchant. */
REPRESENTED,
/** The user's request for pre-arbitration was declined. */
USER_PREARBITRATION_DECLINED,
USER_PREARBITRATION_REQUEST_DECLINE_RECEIVED,
/** The user's request for pre-arbitration was submitted. */
USER_PREARBITRATION_SUBMITTED,
USER_PREARBITRATION_REQUEST_SUBMITTED,
/** The user withdrew from the dispute. */
USER_WITHDRAWAL_SUBMITTED,
}

/**
Expand All @@ -6827,15 +6834,17 @@ private constructor(
/** The user's chargeback was submitted. */
CHARGEBACK_SUBMITTED,
/** The user declined the merchant's request for pre-arbitration. */
MERCHANT_PREARBITRATION_DECLINED,
MERCHANT_PREARBITRATION_REQUEST_DECLINE_SUBMITTED,
/** The merchant's request for pre-arbitration was received. */
MERCHANT_PREARBITRATION_RECEIVED,
MERCHANT_PREARBITRATION_REQUEST_RECEIVED,
/** The transaction was represented by the merchant. */
REPRESENTED,
/** The user's request for pre-arbitration was declined. */
USER_PREARBITRATION_DECLINED,
USER_PREARBITRATION_REQUEST_DECLINE_RECEIVED,
/** The user's request for pre-arbitration was submitted. */
USER_PREARBITRATION_SUBMITTED,
USER_PREARBITRATION_REQUEST_SUBMITTED,
/** The user withdrew from the dispute. */
USER_WITHDRAWAL_SUBMITTED,
/**
* An enum member indicating that [EventType] was instantiated with an
* unknown value.
Expand All @@ -6853,13 +6862,16 @@ private constructor(
fun value(): Value =
when (this) {
CHARGEBACK_SUBMITTED -> Value.CHARGEBACK_SUBMITTED
MERCHANT_PREARBITRATION_DECLINED ->
Value.MERCHANT_PREARBITRATION_DECLINED
MERCHANT_PREARBITRATION_RECEIVED ->
Value.MERCHANT_PREARBITRATION_RECEIVED
MERCHANT_PREARBITRATION_REQUEST_DECLINE_SUBMITTED ->
Value.MERCHANT_PREARBITRATION_REQUEST_DECLINE_SUBMITTED
MERCHANT_PREARBITRATION_REQUEST_RECEIVED ->
Value.MERCHANT_PREARBITRATION_REQUEST_RECEIVED
REPRESENTED -> Value.REPRESENTED
USER_PREARBITRATION_DECLINED -> Value.USER_PREARBITRATION_DECLINED
USER_PREARBITRATION_SUBMITTED -> Value.USER_PREARBITRATION_SUBMITTED
USER_PREARBITRATION_REQUEST_DECLINE_RECEIVED ->
Value.USER_PREARBITRATION_REQUEST_DECLINE_RECEIVED
USER_PREARBITRATION_REQUEST_SUBMITTED ->
Value.USER_PREARBITRATION_REQUEST_SUBMITTED
USER_WITHDRAWAL_SUBMITTED -> Value.USER_WITHDRAWAL_SUBMITTED
else -> Value._UNKNOWN
}

Expand All @@ -6875,13 +6887,16 @@ private constructor(
fun known(): Known =
when (this) {
CHARGEBACK_SUBMITTED -> Known.CHARGEBACK_SUBMITTED
MERCHANT_PREARBITRATION_DECLINED ->
Known.MERCHANT_PREARBITRATION_DECLINED
MERCHANT_PREARBITRATION_RECEIVED ->
Known.MERCHANT_PREARBITRATION_RECEIVED
MERCHANT_PREARBITRATION_REQUEST_DECLINE_SUBMITTED ->
Known.MERCHANT_PREARBITRATION_REQUEST_DECLINE_SUBMITTED
MERCHANT_PREARBITRATION_REQUEST_RECEIVED ->
Known.MERCHANT_PREARBITRATION_REQUEST_RECEIVED
REPRESENTED -> Known.REPRESENTED
USER_PREARBITRATION_DECLINED -> Known.USER_PREARBITRATION_DECLINED
USER_PREARBITRATION_SUBMITTED -> Known.USER_PREARBITRATION_SUBMITTED
USER_PREARBITRATION_REQUEST_DECLINE_RECEIVED ->
Known.USER_PREARBITRATION_REQUEST_DECLINE_RECEIVED
USER_PREARBITRATION_REQUEST_SUBMITTED ->
Known.USER_PREARBITRATION_REQUEST_SUBMITTED
USER_WITHDRAWAL_SUBMITTED -> Known.USER_WITHDRAWAL_SUBMITTED
else -> throw IncreaseInvalidDataException("Unknown EventType: $value")
}

Expand Down
Loading