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.457.0"
".": "0.458.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: 234
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-6157ec57275bc58dca42adf9d0b661f6dcfd725df7593dc453833dfcdcf33a8b.yml
openapi_spec_hash: 0a80ae7882f3d72a333b80efe58ff5ea
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-d73ee438cf15ca739d3ac64cc009b613f9e17ed76a31f8cc95f1a9968196bde1.yml
openapi_spec_hash: 933ce5facdc1d8a41ed063d925846de3
config_hash: b7ec7f54fa76c1f8bde7a548710a1d38
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.458.0 (2026-03-09)

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

### Features

* **api:** api update ([36a42eb](https://github.com/Increase/increase-java/commit/36a42eb9cd1404557f6464790a5366e7ed56a96d))

## 0.457.0 (2026-03-09)

Full Changelog: [v0.456.0...v0.457.0](https://github.com/Increase/increase-java/compare/v0.456.0...v0.457.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.457.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.457.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.457.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.458.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.458.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.458.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.457.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.458.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.457.0")
implementation("com.increase.api:increase-java:0.458.0")
```

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1776,7 +1776,7 @@ private constructor(
private val merchantCategoryCode: JsonField<String>,
private val merchantCountry: JsonField<String>,
private val merchantName: JsonField<String>,
private val priorCardAuthenticationId: JsonField<String>,
private val priorAuthenticatedCardPaymentId: JsonField<String>,
private val purchaseAmount: JsonField<Long>,
private val purchaseAmountCardholderEstimated: JsonField<Long>,
private val purchaseCurrency: JsonField<String>,
Expand Down Expand Up @@ -1869,9 +1869,9 @@ private constructor(
@JsonProperty("merchant_name")
@ExcludeMissing
merchantName: JsonField<String> = JsonMissing.of(),
@JsonProperty("prior_card_authentication_id")
@JsonProperty("prior_authenticated_card_payment_id")
@ExcludeMissing
priorCardAuthenticationId: JsonField<String> = JsonMissing.of(),
priorAuthenticatedCardPaymentId: JsonField<String> = JsonMissing.of(),
@JsonProperty("purchase_amount")
@ExcludeMissing
purchaseAmount: JsonField<Long> = JsonMissing.of(),
Expand Down Expand Up @@ -1953,7 +1953,7 @@ private constructor(
merchantCategoryCode,
merchantCountry,
merchantName,
priorCardAuthenticationId,
priorAuthenticatedCardPaymentId,
purchaseAmount,
purchaseAmountCardholderEstimated,
purchaseCurrency,
Expand Down Expand Up @@ -2198,8 +2198,8 @@ private constructor(
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g.
* if the server responded with an unexpected value).
*/
fun priorCardAuthenticationId(): Optional<String> =
priorCardAuthenticationId.getOptional("prior_card_authentication_id")
fun priorAuthenticatedCardPaymentId(): Optional<String> =
priorAuthenticatedCardPaymentId.getOptional("prior_authenticated_card_payment_id")

/**
* The purchase amount in minor units.
Expand Down Expand Up @@ -2606,14 +2606,15 @@ private constructor(
fun _merchantName(): JsonField<String> = merchantName

/**
* Returns the raw JSON value of [priorCardAuthenticationId].
* Returns the raw JSON value of [priorAuthenticatedCardPaymentId].
*
* Unlike [priorCardAuthenticationId], this method doesn't throw if the JSON field has
* an unexpected type.
* Unlike [priorAuthenticatedCardPaymentId], this method doesn't throw if the JSON field
* has an unexpected type.
*/
@JsonProperty("prior_card_authentication_id")
@JsonProperty("prior_authenticated_card_payment_id")
@ExcludeMissing
fun _priorCardAuthenticationId(): JsonField<String> = priorCardAuthenticationId
fun _priorAuthenticatedCardPaymentId(): JsonField<String> =
priorAuthenticatedCardPaymentId

/**
* Returns the raw JSON value of [purchaseAmount].
Expand Down Expand Up @@ -2845,7 +2846,7 @@ private constructor(
* .merchantCategoryCode()
* .merchantCountry()
* .merchantName()
* .priorCardAuthenticationId()
* .priorAuthenticatedCardPaymentId()
* .purchaseAmount()
* .purchaseAmountCardholderEstimated()
* .purchaseCurrency()
Expand Down Expand Up @@ -2896,7 +2897,7 @@ private constructor(
private var merchantCategoryCode: JsonField<String>? = null
private var merchantCountry: JsonField<String>? = null
private var merchantName: JsonField<String>? = null
private var priorCardAuthenticationId: JsonField<String>? = null
private var priorAuthenticatedCardPaymentId: JsonField<String>? = null
private var purchaseAmount: JsonField<Long>? = null
private var purchaseAmountCardholderEstimated: JsonField<Long>? = null
private var purchaseCurrency: JsonField<String>? = null
Expand Down Expand Up @@ -2947,7 +2948,8 @@ private constructor(
merchantCategoryCode = cardAuthentication.merchantCategoryCode
merchantCountry = cardAuthentication.merchantCountry
merchantName = cardAuthentication.merchantName
priorCardAuthenticationId = cardAuthentication.priorCardAuthenticationId
priorAuthenticatedCardPaymentId =
cardAuthentication.priorAuthenticatedCardPaymentId
purchaseAmount = cardAuthentication.purchaseAmount
purchaseAmountCardholderEstimated =
cardAuthentication.purchaseAmountCardholderEstimated
Expand Down Expand Up @@ -3445,27 +3447,29 @@ private constructor(
* The ID of a prior Card Authentication that the requestor used to authenticate
* this cardholder for a previous transaction.
*/
fun priorCardAuthenticationId(priorCardAuthenticationId: String?) =
priorCardAuthenticationId(JsonField.ofNullable(priorCardAuthenticationId))
fun priorAuthenticatedCardPaymentId(priorAuthenticatedCardPaymentId: String?) =
priorAuthenticatedCardPaymentId(
JsonField.ofNullable(priorAuthenticatedCardPaymentId)
)

/**
* Alias for calling [Builder.priorCardAuthenticationId] with
* `priorCardAuthenticationId.orElse(null)`.
* Alias for calling [Builder.priorAuthenticatedCardPaymentId] with
* `priorAuthenticatedCardPaymentId.orElse(null)`.
*/
fun priorCardAuthenticationId(priorCardAuthenticationId: Optional<String>) =
priorCardAuthenticationId(priorCardAuthenticationId.getOrNull())
fun priorAuthenticatedCardPaymentId(
priorAuthenticatedCardPaymentId: Optional<String>
) = priorAuthenticatedCardPaymentId(priorAuthenticatedCardPaymentId.getOrNull())

/**
* Sets [Builder.priorCardAuthenticationId] to an arbitrary JSON value.
* Sets [Builder.priorAuthenticatedCardPaymentId] to an arbitrary JSON value.
*
* You should usually call [Builder.priorCardAuthenticationId] with a well-typed
* [String] value instead. This method is primarily for setting the field to an
* undocumented or not yet supported value.
* You should usually call [Builder.priorAuthenticatedCardPaymentId] with a
* well-typed [String] value instead. This method is primarily for setting the field
* to an undocumented or not yet supported value.
*/
fun priorCardAuthenticationId(priorCardAuthenticationId: JsonField<String>) =
apply {
this.priorCardAuthenticationId = priorCardAuthenticationId
}
fun priorAuthenticatedCardPaymentId(
priorAuthenticatedCardPaymentId: JsonField<String>
) = apply { this.priorAuthenticatedCardPaymentId = priorAuthenticatedCardPaymentId }

/** The purchase amount in minor units. */
fun purchaseAmount(purchaseAmount: Long?) =
Expand Down Expand Up @@ -3941,7 +3945,7 @@ private constructor(
* .merchantCategoryCode()
* .merchantCountry()
* .merchantName()
* .priorCardAuthenticationId()
* .priorAuthenticatedCardPaymentId()
* .purchaseAmount()
* .purchaseAmountCardholderEstimated()
* .purchaseCurrency()
Expand Down Expand Up @@ -3993,7 +3997,10 @@ private constructor(
checkRequired("merchantCategoryCode", merchantCategoryCode),
checkRequired("merchantCountry", merchantCountry),
checkRequired("merchantName", merchantName),
checkRequired("priorCardAuthenticationId", priorCardAuthenticationId),
checkRequired(
"priorAuthenticatedCardPaymentId",
priorAuthenticatedCardPaymentId,
),
checkRequired("purchaseAmount", purchaseAmount),
checkRequired(
"purchaseAmountCardholderEstimated",
Expand Down Expand Up @@ -4056,7 +4063,7 @@ private constructor(
merchantCategoryCode()
merchantCountry()
merchantName()
priorCardAuthenticationId()
priorAuthenticatedCardPaymentId()
purchaseAmount()
purchaseAmountCardholderEstimated()
purchaseCurrency()
Expand Down Expand Up @@ -4118,7 +4125,7 @@ private constructor(
(if (merchantCategoryCode.asKnown().isPresent) 1 else 0) +
(if (merchantCountry.asKnown().isPresent) 1 else 0) +
(if (merchantName.asKnown().isPresent) 1 else 0) +
(if (priorCardAuthenticationId.asKnown().isPresent) 1 else 0) +
(if (priorAuthenticatedCardPaymentId.asKnown().isPresent) 1 else 0) +
(if (purchaseAmount.asKnown().isPresent) 1 else 0) +
(if (purchaseAmountCardholderEstimated.asKnown().isPresent) 1 else 0) +
(if (purchaseCurrency.asKnown().isPresent) 1 else 0) +
Expand Down Expand Up @@ -7798,7 +7805,7 @@ private constructor(
merchantCategoryCode == other.merchantCategoryCode &&
merchantCountry == other.merchantCountry &&
merchantName == other.merchantName &&
priorCardAuthenticationId == other.priorCardAuthenticationId &&
priorAuthenticatedCardPaymentId == other.priorAuthenticatedCardPaymentId &&
purchaseAmount == other.purchaseAmount &&
purchaseAmountCardholderEstimated == other.purchaseAmountCardholderEstimated &&
purchaseCurrency == other.purchaseCurrency &&
Expand Down Expand Up @@ -7846,7 +7853,7 @@ private constructor(
merchantCategoryCode,
merchantCountry,
merchantName,
priorCardAuthenticationId,
priorAuthenticatedCardPaymentId,
purchaseAmount,
purchaseAmountCardholderEstimated,
purchaseCurrency,
Expand All @@ -7873,7 +7880,7 @@ private constructor(
override fun hashCode(): Int = hashCode

override fun toString() =
"CardAuthentication{id=$id, accessControlServerTransactionId=$accessControlServerTransactionId, billingAddressCity=$billingAddressCity, billingAddressCountry=$billingAddressCountry, billingAddressLine1=$billingAddressLine1, billingAddressLine2=$billingAddressLine2, billingAddressLine3=$billingAddressLine3, billingAddressPostalCode=$billingAddressPostalCode, billingAddressState=$billingAddressState, cardId=$cardId, cardPaymentId=$cardPaymentId, cardholderEmail=$cardholderEmail, cardholderName=$cardholderName, category=$category, challenge=$challenge, createdAt=$createdAt, denyReason=$denyReason, deviceChannel=$deviceChannel, directoryServerTransactionId=$directoryServerTransactionId, merchantAcceptorId=$merchantAcceptorId, merchantCategoryCode=$merchantCategoryCode, merchantCountry=$merchantCountry, merchantName=$merchantName, priorCardAuthenticationId=$priorCardAuthenticationId, purchaseAmount=$purchaseAmount, purchaseAmountCardholderEstimated=$purchaseAmountCardholderEstimated, purchaseCurrency=$purchaseCurrency, realTimeDecisionId=$realTimeDecisionId, requestorAuthenticationIndicator=$requestorAuthenticationIndicator, requestorChallengeIndicator=$requestorChallengeIndicator, requestorName=$requestorName, requestorUrl=$requestorUrl, shippingAddressCity=$shippingAddressCity, shippingAddressCountry=$shippingAddressCountry, shippingAddressLine1=$shippingAddressLine1, shippingAddressLine2=$shippingAddressLine2, shippingAddressLine3=$shippingAddressLine3, shippingAddressPostalCode=$shippingAddressPostalCode, shippingAddressState=$shippingAddressState, status=$status, threeDSecureServerTransactionId=$threeDSecureServerTransactionId, transactionType=$transactionType, type=$type, additionalProperties=$additionalProperties}"
"CardAuthentication{id=$id, accessControlServerTransactionId=$accessControlServerTransactionId, billingAddressCity=$billingAddressCity, billingAddressCountry=$billingAddressCountry, billingAddressLine1=$billingAddressLine1, billingAddressLine2=$billingAddressLine2, billingAddressLine3=$billingAddressLine3, billingAddressPostalCode=$billingAddressPostalCode, billingAddressState=$billingAddressState, cardId=$cardId, cardPaymentId=$cardPaymentId, cardholderEmail=$cardholderEmail, cardholderName=$cardholderName, category=$category, challenge=$challenge, createdAt=$createdAt, denyReason=$denyReason, deviceChannel=$deviceChannel, directoryServerTransactionId=$directoryServerTransactionId, merchantAcceptorId=$merchantAcceptorId, merchantCategoryCode=$merchantCategoryCode, merchantCountry=$merchantCountry, merchantName=$merchantName, priorAuthenticatedCardPaymentId=$priorAuthenticatedCardPaymentId, purchaseAmount=$purchaseAmount, purchaseAmountCardholderEstimated=$purchaseAmountCardholderEstimated, purchaseCurrency=$purchaseCurrency, realTimeDecisionId=$realTimeDecisionId, requestorAuthenticationIndicator=$requestorAuthenticationIndicator, requestorChallengeIndicator=$requestorChallengeIndicator, requestorName=$requestorName, requestorUrl=$requestorUrl, shippingAddressCity=$shippingAddressCity, shippingAddressCountry=$shippingAddressCountry, shippingAddressLine1=$shippingAddressLine1, shippingAddressLine2=$shippingAddressLine2, shippingAddressLine3=$shippingAddressLine3, shippingAddressPostalCode=$shippingAddressPostalCode, shippingAddressState=$shippingAddressState, status=$status, threeDSecureServerTransactionId=$threeDSecureServerTransactionId, transactionType=$transactionType, type=$type, additionalProperties=$additionalProperties}"
}

/**
Expand Down
Loading
Loading