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.446.0"
".": "0.447.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-dd0c83cac837fbe98857fa997663b0d0469344a7564bd4fe506e6c71d1d6af73.yml
openapi_spec_hash: 2352f37602105b164533038199b21804
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-6157ec57275bc58dca42adf9d0b661f6dcfd725df7593dc453833dfcdcf33a8b.yml
openapi_spec_hash: 0a80ae7882f3d72a333b80efe58ff5ea
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.447.0 (2026-03-09)

Full Changelog: [v0.446.0...v0.447.0](https://github.com/Increase/increase-kotlin/compare/v0.446.0...v0.447.0)

### Features

* **api:** api update ([970eeee](https://github.com/Increase/increase-kotlin/commit/970eeeed69affd8247025b22ff135351ca52c051))

## 0.446.0 (2026-03-08)

Full Changelog: [v0.445.0...v0.446.0](https://github.com/Increase/increase-kotlin/compare/v0.445.0...v0.446.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-kotlin)](https://central.sonatype.com/artifact/com.increase.api/increase-kotlin/0.446.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-kotlin/0.446.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-kotlin/0.446.0)
[![Maven Central](https://img.shields.io/maven-central/v/com.increase.api/increase-kotlin)](https://central.sonatype.com/artifact/com.increase.api/increase-kotlin/0.447.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-kotlin/0.447.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-kotlin/0.447.0)

<!-- x-release-please-end -->

Expand All @@ -13,7 +13,7 @@ The Increase Kotlin SDK is similar to the Increase Java SDK but with minor diffe

<!-- x-release-please-start-version -->

The REST API documentation can be found on [increase.com](https://increase.com/documentation). KDocs are available on [javadoc.io](https://javadoc.io/doc/com.increase.api/increase-kotlin/0.446.0).
The REST API documentation can be found on [increase.com](https://increase.com/documentation). KDocs are available on [javadoc.io](https://javadoc.io/doc/com.increase.api/increase-kotlin/0.447.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-kotlin:0.446.0")
implementation("com.increase.api:increase-kotlin:0.447.0")
```

### Maven
Expand All @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-kotlin:0.446.0")
<dependency>
<groupId>com.increase.api</groupId>
<artifactId>increase-kotlin</artifactId>
<version>0.446.0</version>
<version>0.447.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.446.0" // x-release-please-version
version = "0.447.0" // x-release-please-version
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2071,41 +2071,37 @@ private constructor(
* The merchant identifier (commonly abbreviated as MID) of the merchant the card is
* transacting with.
*
* @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).
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g.
* if the server responded with an unexpected value).
*/
fun merchantAcceptorId(): String =
merchantAcceptorId.getRequired("merchant_acceptor_id")
fun merchantAcceptorId(): String? =
merchantAcceptorId.getNullable("merchant_acceptor_id")

/**
* The Merchant Category Code (commonly abbreviated as MCC) of the merchant the card is
* transacting with.
*
* @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).
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g.
* if the server responded with an unexpected value).
*/
fun merchantCategoryCode(): String =
merchantCategoryCode.getRequired("merchant_category_code")
fun merchantCategoryCode(): String? =
merchantCategoryCode.getNullable("merchant_category_code")

/**
* The country the merchant resides in.
*
* @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).
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g.
* if the server responded with an unexpected value).
*/
fun merchantCountry(): String = merchantCountry.getRequired("merchant_country")
fun merchantCountry(): String? = merchantCountry.getNullable("merchant_country")

/**
* The name of the merchant.
*
* @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).
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g.
* if the server responded with an unexpected value).
*/
fun merchantName(): String = merchantName.getRequired("merchant_name")
fun merchantName(): String? = merchantName.getNullable("merchant_name")

/**
* The ID of a prior Card Authentication that the requestor used to authenticate this
Expand Down Expand Up @@ -3198,8 +3194,8 @@ private constructor(
* The merchant identifier (commonly abbreviated as MID) of the merchant the card is
* transacting with.
*/
fun merchantAcceptorId(merchantAcceptorId: String) =
merchantAcceptorId(JsonField.of(merchantAcceptorId))
fun merchantAcceptorId(merchantAcceptorId: String?) =
merchantAcceptorId(JsonField.ofNullable(merchantAcceptorId))

/**
* Sets [Builder.merchantAcceptorId] to an arbitrary JSON value.
Expand All @@ -3216,8 +3212,8 @@ private constructor(
* The Merchant Category Code (commonly abbreviated as MCC) of the merchant the card
* is transacting with.
*/
fun merchantCategoryCode(merchantCategoryCode: String) =
merchantCategoryCode(JsonField.of(merchantCategoryCode))
fun merchantCategoryCode(merchantCategoryCode: String?) =
merchantCategoryCode(JsonField.ofNullable(merchantCategoryCode))

/**
* Sets [Builder.merchantCategoryCode] to an arbitrary JSON value.
Expand All @@ -3231,8 +3227,8 @@ private constructor(
}

/** The country the merchant resides in. */
fun merchantCountry(merchantCountry: String) =
merchantCountry(JsonField.of(merchantCountry))
fun merchantCountry(merchantCountry: String?) =
merchantCountry(JsonField.ofNullable(merchantCountry))

/**
* Sets [Builder.merchantCountry] to an arbitrary JSON value.
Expand All @@ -3246,7 +3242,8 @@ private constructor(
}

/** The name of the merchant. */
fun merchantName(merchantName: String) = merchantName(JsonField.of(merchantName))
fun merchantName(merchantName: String?) =
merchantName(JsonField.ofNullable(merchantName))

/**
* Sets [Builder.merchantName] to an arbitrary JSON value.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -995,36 +995,36 @@ private constructor(
* The merchant identifier (commonly abbreviated as MID) of the merchant the card is
* transacting with.
*
* @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).
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
* the server responded with an unexpected value).
*/
fun merchantAcceptorId(): String = merchantAcceptorId.getRequired("merchant_acceptor_id")
fun merchantAcceptorId(): String? = merchantAcceptorId.getNullable("merchant_acceptor_id")

/**
* The Merchant Category Code (commonly abbreviated as MCC) of the merchant the card is
* transacting with.
*
* @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).
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
* the server responded with an unexpected value).
*/
fun merchantCategoryCode(): String =
merchantCategoryCode.getRequired("merchant_category_code")
fun merchantCategoryCode(): String? =
merchantCategoryCode.getNullable("merchant_category_code")

/**
* The country the merchant resides in.
*
* @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).
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
* the server responded with an unexpected value).
*/
fun merchantCountry(): String = merchantCountry.getRequired("merchant_country")
fun merchantCountry(): String? = merchantCountry.getNullable("merchant_country")

/**
* The name of the merchant.
*
* @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).
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
* the server responded with an unexpected value).
*/
fun merchantName(): String = merchantName.getRequired("merchant_name")
fun merchantName(): String? = merchantName.getNullable("merchant_name")

/**
* The ID of a prior Card Authentication that the requestor used to authenticate this
Expand Down Expand Up @@ -1972,8 +1972,8 @@ private constructor(
* The merchant identifier (commonly abbreviated as MID) of the merchant the card is
* transacting with.
*/
fun merchantAcceptorId(merchantAcceptorId: String) =
merchantAcceptorId(JsonField.of(merchantAcceptorId))
fun merchantAcceptorId(merchantAcceptorId: String?) =
merchantAcceptorId(JsonField.ofNullable(merchantAcceptorId))

/**
* Sets [Builder.merchantAcceptorId] to an arbitrary JSON value.
Expand All @@ -1990,8 +1990,8 @@ private constructor(
* The Merchant Category Code (commonly abbreviated as MCC) of the merchant the card is
* transacting with.
*/
fun merchantCategoryCode(merchantCategoryCode: String) =
merchantCategoryCode(JsonField.of(merchantCategoryCode))
fun merchantCategoryCode(merchantCategoryCode: String?) =
merchantCategoryCode(JsonField.ofNullable(merchantCategoryCode))

/**
* Sets [Builder.merchantCategoryCode] to an arbitrary JSON value.
Expand All @@ -2005,8 +2005,8 @@ private constructor(
}

/** The country the merchant resides in. */
fun merchantCountry(merchantCountry: String) =
merchantCountry(JsonField.of(merchantCountry))
fun merchantCountry(merchantCountry: String?) =
merchantCountry(JsonField.ofNullable(merchantCountry))

/**
* Sets [Builder.merchantCountry] to an arbitrary JSON value.
Expand All @@ -2020,7 +2020,8 @@ private constructor(
}

/** The name of the merchant. */
fun merchantName(merchantName: String) = merchantName(JsonField.of(merchantName))
fun merchantName(merchantName: String?) =
merchantName(JsonField.ofNullable(merchantName))

/**
* Sets [Builder.merchantName] to an arbitrary JSON value.
Expand Down
Loading