Skip to content

release: 0.244.0 #995

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 26, 2025
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.243.0"
".": "0.244.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: 201
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-96d05b8e37bf249bf8308adae52fd62efc5a37bf7dff2911bdfddb89c503bb30.yml
openapi_spec_hash: 35c0fded197228fc0680fe6ce04f6c82
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-a027ea8bf72e85055306ceaf380c0311b8ed5e6e83962de0ccf48f62c85403fc.yml
openapi_spec_hash: 5a69ed697dee32af7deae0c6ebf27377
config_hash: 97774f946585cecb19181a1817870d0b
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.244.0 (2025-06-26)

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

### Features

* **api:** api update ([c56d6b5](https://github.com/Increase/increase-kotlin/commit/c56d6b5c78d2a9e672e16efd358cad77989568dd))
* **api:** api update ([9bfd265](https://github.com/Increase/increase-kotlin/commit/9bfd265c04a70378fc7ca79cbd53dd8fee083dd3))

## 0.243.0 (2025-06-25)

Full Changelog: [v0.242.0...v0.243.0](https://github.com/Increase/increase-kotlin/compare/v0.242.0...v0.243.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.243.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-kotlin/0.243.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-kotlin/0.243.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.244.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-kotlin/0.244.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-kotlin/0.244.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.243.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.244.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.243.0")
implementation("com.increase.api:increase-kotlin:0.244.0")
```

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13846,6 +13846,9 @@ private constructor(
/** The given CVV2 did not match the card's value. */
val CVV2_MISMATCH = of("cvv2_mismatch")

/** The given PIN did not match the card's value. */
val PIN_MISMATCH = of("pin_mismatch")

/**
* The given expiration date did not match the card's value. Only applies when a
* CVV2 is present.
Expand Down Expand Up @@ -13908,6 +13911,8 @@ private constructor(
INSUFFICIENT_FUNDS,
/** The given CVV2 did not match the card's value. */
CVV2_MISMATCH,
/** The given PIN did not match the card's value. */
PIN_MISMATCH,
/**
* The given expiration date did not match the card's value. Only applies when a
* CVV2 is present.
Expand Down Expand Up @@ -13967,6 +13972,8 @@ private constructor(
INSUFFICIENT_FUNDS,
/** The given CVV2 did not match the card's value. */
CVV2_MISMATCH,
/** The given PIN did not match the card's value. */
PIN_MISMATCH,
/**
* The given expiration date did not match the card's value. Only applies when a
* CVV2 is present.
Expand Down Expand Up @@ -14022,6 +14029,7 @@ private constructor(
GROUP_LOCKED -> Value.GROUP_LOCKED
INSUFFICIENT_FUNDS -> Value.INSUFFICIENT_FUNDS
CVV2_MISMATCH -> Value.CVV2_MISMATCH
PIN_MISMATCH -> Value.PIN_MISMATCH
CARD_EXPIRATION_MISMATCH -> Value.CARD_EXPIRATION_MISMATCH
TRANSACTION_NOT_ALLOWED -> Value.TRANSACTION_NOT_ALLOWED
BREACHES_LIMIT -> Value.BREACHES_LIMIT
Expand Down Expand Up @@ -14054,6 +14062,7 @@ private constructor(
GROUP_LOCKED -> Known.GROUP_LOCKED
INSUFFICIENT_FUNDS -> Known.INSUFFICIENT_FUNDS
CVV2_MISMATCH -> Known.CVV2_MISMATCH
PIN_MISMATCH -> Known.PIN_MISMATCH
CARD_EXPIRATION_MISMATCH -> Known.CARD_EXPIRATION_MISMATCH
TRANSACTION_NOT_ALLOWED -> Known.TRANSACTION_NOT_ALLOWED
BREACHES_LIMIT -> Known.BREACHES_LIMIT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6546,6 +6546,9 @@ private constructor(
/** The given CVV2 did not match the card's value. */
val CVV2_MISMATCH = of("cvv2_mismatch")

/** The given PIN did not match the card's value. */
val PIN_MISMATCH = of("pin_mismatch")

/**
* The given expiration date did not match the card's value. Only applies when a
* CVV2 is present.
Expand Down Expand Up @@ -6608,6 +6611,8 @@ private constructor(
INSUFFICIENT_FUNDS,
/** The given CVV2 did not match the card's value. */
CVV2_MISMATCH,
/** The given PIN did not match the card's value. */
PIN_MISMATCH,
/**
* The given expiration date did not match the card's value. Only applies when a
* CVV2 is present.
Expand Down Expand Up @@ -6667,6 +6672,8 @@ private constructor(
INSUFFICIENT_FUNDS,
/** The given CVV2 did not match the card's value. */
CVV2_MISMATCH,
/** The given PIN did not match the card's value. */
PIN_MISMATCH,
/**
* The given expiration date did not match the card's value. Only applies when a
* CVV2 is present.
Expand Down Expand Up @@ -6722,6 +6729,7 @@ private constructor(
GROUP_LOCKED -> Value.GROUP_LOCKED
INSUFFICIENT_FUNDS -> Value.INSUFFICIENT_FUNDS
CVV2_MISMATCH -> Value.CVV2_MISMATCH
PIN_MISMATCH -> Value.PIN_MISMATCH
CARD_EXPIRATION_MISMATCH -> Value.CARD_EXPIRATION_MISMATCH
TRANSACTION_NOT_ALLOWED -> Value.TRANSACTION_NOT_ALLOWED
BREACHES_LIMIT -> Value.BREACHES_LIMIT
Expand Down Expand Up @@ -6754,6 +6762,7 @@ private constructor(
GROUP_LOCKED -> Known.GROUP_LOCKED
INSUFFICIENT_FUNDS -> Known.INSUFFICIENT_FUNDS
CVV2_MISMATCH -> Known.CVV2_MISMATCH
PIN_MISMATCH -> Known.PIN_MISMATCH
CARD_EXPIRATION_MISMATCH -> Known.CARD_EXPIRATION_MISMATCH
TRANSACTION_NOT_ALLOWED -> Known.TRANSACTION_NOT_ALLOWED
BREACHES_LIMIT -> Known.BREACHES_LIMIT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1675,6 +1675,9 @@ private constructor(
/** The given CVV2 did not match the card's value. */
val CVV2_MISMATCH = of("cvv2_mismatch")

/** The given PIN did not match the card's value. */
val PIN_MISMATCH = of("pin_mismatch")

/**
* The given expiration date did not match the card's value. Only applies when a CVV2 is
* present.
Expand Down Expand Up @@ -1734,6 +1737,8 @@ private constructor(
INSUFFICIENT_FUNDS,
/** The given CVV2 did not match the card's value. */
CVV2_MISMATCH,
/** The given PIN did not match the card's value. */
PIN_MISMATCH,
/**
* The given expiration date did not match the card's value. Only applies when a CVV2 is
* present.
Expand Down Expand Up @@ -1790,6 +1795,8 @@ private constructor(
INSUFFICIENT_FUNDS,
/** The given CVV2 did not match the card's value. */
CVV2_MISMATCH,
/** The given PIN did not match the card's value. */
PIN_MISMATCH,
/**
* The given expiration date did not match the card's value. Only applies when a CVV2 is
* present.
Expand Down Expand Up @@ -1842,6 +1849,7 @@ private constructor(
GROUP_LOCKED -> Value.GROUP_LOCKED
INSUFFICIENT_FUNDS -> Value.INSUFFICIENT_FUNDS
CVV2_MISMATCH -> Value.CVV2_MISMATCH
PIN_MISMATCH -> Value.PIN_MISMATCH
CARD_EXPIRATION_MISMATCH -> Value.CARD_EXPIRATION_MISMATCH
TRANSACTION_NOT_ALLOWED -> Value.TRANSACTION_NOT_ALLOWED
BREACHES_LIMIT -> Value.BREACHES_LIMIT
Expand Down Expand Up @@ -1874,6 +1882,7 @@ private constructor(
GROUP_LOCKED -> Known.GROUP_LOCKED
INSUFFICIENT_FUNDS -> Known.INSUFFICIENT_FUNDS
CVV2_MISMATCH -> Known.CVV2_MISMATCH
PIN_MISMATCH -> Known.PIN_MISMATCH
CARD_EXPIRATION_MISMATCH -> Known.CARD_EXPIRATION_MISMATCH
TRANSACTION_NOT_ALLOWED -> Known.TRANSACTION_NOT_ALLOWED
BREACHES_LIMIT -> Known.BREACHES_LIMIT
Expand Down
Loading