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.274.0"
".": "0.275.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-aca6b5e100fcf8da7f6fc67bfbf47543f197f1c3fed52d5f1147b7cbad515546.yml
openapi_spec_hash: 369011703600762a5a5d701b4e843f7b
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-66fad62aee38079ae7b0574a128763512b551d0b0f107a056bc981123d8e348d.yml
openapi_spec_hash: 299b75e8d2f36e6fe3d2df4c10d2557c
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.275.0 (2025-08-07)

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

### Features

* **api:** api update ([84c8004](https://github.com/Increase/increase-java/commit/84c80048ede85a977df64caa43f742f568cf5cb2))

## 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)
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.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)
[![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.275.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.275.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.275.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.274.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.275.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.274.0")
implementation("com.increase.api:increase-java:0.275.0")
```

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -651,6 +651,9 @@ private constructor(

companion object {

/** A file to be attached to a Card Dispute. */
@JvmField val CARD_DISPUTE_ATTACHMENT = of("card_dispute_attachment")

/** An image of the front of a check, used for check deposits. */
@JvmField val CHECK_IMAGE_FRONT = of("check_image_front")

Expand Down Expand Up @@ -768,6 +771,8 @@ private constructor(

/** An enum containing [Purpose]'s known values. */
enum class Known {
/** A file to be attached to a Card Dispute. */
CARD_DISPUTE_ATTACHMENT,
/** An image of the front of a check, used for check deposits. */
CHECK_IMAGE_FRONT,
/** An image of the back of a check, used for check deposits. */
Expand Down Expand Up @@ -860,6 +865,8 @@ private constructor(
* - It was constructed with an arbitrary value using the [of] method.
*/
enum class Value {
/** A file to be attached to a Card Dispute. */
CARD_DISPUTE_ATTACHMENT,
/** An image of the front of a check, used for check deposits. */
CHECK_IMAGE_FRONT,
/** An image of the back of a check, used for check deposits. */
Expand Down Expand Up @@ -953,6 +960,7 @@ private constructor(
*/
fun value(): Value =
when (this) {
CARD_DISPUTE_ATTACHMENT -> Value.CARD_DISPUTE_ATTACHMENT
CHECK_IMAGE_FRONT -> Value.CHECK_IMAGE_FRONT
CHECK_IMAGE_BACK -> Value.CHECK_IMAGE_BACK
PROCESSED_CHECK_IMAGE_FRONT -> Value.PROCESSED_CHECK_IMAGE_FRONT
Expand Down Expand Up @@ -996,6 +1004,7 @@ private constructor(
*/
fun known(): Known =
when (this) {
CARD_DISPUTE_ATTACHMENT -> Known.CARD_DISPUTE_ATTACHMENT
CHECK_IMAGE_FRONT -> Known.CHECK_IMAGE_FRONT
CHECK_IMAGE_BACK -> Known.CHECK_IMAGE_BACK
PROCESSED_CHECK_IMAGE_FRONT -> Known.PROCESSED_CHECK_IMAGE_FRONT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -590,6 +590,9 @@ private constructor(

companion object {

/** A file to be attached to a Card Dispute. */
@JvmField val CARD_DISPUTE_ATTACHMENT = of("card_dispute_attachment")

/** An image of the front of a check, used for check deposits. */
@JvmField val CHECK_IMAGE_FRONT = of("check_image_front")

Expand Down Expand Up @@ -664,6 +667,8 @@ private constructor(

/** An enum containing [Purpose]'s known values. */
enum class Known {
/** A file to be attached to a Card Dispute. */
CARD_DISPUTE_ATTACHMENT,
/** An image of the front of a check, used for check deposits. */
CHECK_IMAGE_FRONT,
/** An image of the back of a check, used for check deposits. */
Expand Down Expand Up @@ -726,6 +731,8 @@ private constructor(
* - It was constructed with an arbitrary value using the [of] method.
*/
enum class Value {
/** A file to be attached to a Card Dispute. */
CARD_DISPUTE_ATTACHMENT,
/** An image of the front of a check, used for check deposits. */
CHECK_IMAGE_FRONT,
/** An image of the back of a check, used for check deposits. */
Expand Down Expand Up @@ -789,6 +796,7 @@ private constructor(
*/
fun value(): Value =
when (this) {
CARD_DISPUTE_ATTACHMENT -> Value.CARD_DISPUTE_ATTACHMENT
CHECK_IMAGE_FRONT -> Value.CHECK_IMAGE_FRONT
CHECK_IMAGE_BACK -> Value.CHECK_IMAGE_BACK
MAILED_CHECK_IMAGE -> Value.MAILED_CHECK_IMAGE
Expand Down Expand Up @@ -820,6 +828,7 @@ private constructor(
*/
fun known(): Known =
when (this) {
CARD_DISPUTE_ATTACHMENT -> Known.CARD_DISPUTE_ATTACHMENT
CHECK_IMAGE_FRONT -> Known.CHECK_IMAGE_FRONT
CHECK_IMAGE_BACK -> Known.CHECK_IMAGE_BACK
MAILED_CHECK_IMAGE -> Known.MAILED_CHECK_IMAGE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -580,6 +580,9 @@ private constructor(

companion object {

/** A file to be attached to a Card Dispute. */
@JvmField val CARD_DISPUTE_ATTACHMENT = of("card_dispute_attachment")

/** An image of the front of a check, used for check deposits. */
@JvmField val CHECK_IMAGE_FRONT = of("check_image_front")

Expand Down Expand Up @@ -697,6 +700,8 @@ private constructor(

/** An enum containing [In]'s known values. */
enum class Known {
/** A file to be attached to a Card Dispute. */
CARD_DISPUTE_ATTACHMENT,
/** An image of the front of a check, used for check deposits. */
CHECK_IMAGE_FRONT,
/** An image of the back of a check, used for check deposits. */
Expand Down Expand Up @@ -789,6 +794,8 @@ private constructor(
* - It was constructed with an arbitrary value using the [of] method.
*/
enum class Value {
/** A file to be attached to a Card Dispute. */
CARD_DISPUTE_ATTACHMENT,
/** An image of the front of a check, used for check deposits. */
CHECK_IMAGE_FRONT,
/** An image of the back of a check, used for check deposits. */
Expand Down Expand Up @@ -882,6 +889,7 @@ private constructor(
*/
fun value(): Value =
when (this) {
CARD_DISPUTE_ATTACHMENT -> Value.CARD_DISPUTE_ATTACHMENT
CHECK_IMAGE_FRONT -> Value.CHECK_IMAGE_FRONT
CHECK_IMAGE_BACK -> Value.CHECK_IMAGE_BACK
PROCESSED_CHECK_IMAGE_FRONT -> Value.PROCESSED_CHECK_IMAGE_FRONT
Expand Down Expand Up @@ -925,6 +933,7 @@ private constructor(
*/
fun known(): Known =
when (this) {
CARD_DISPUTE_ATTACHMENT -> Known.CARD_DISPUTE_ATTACHMENT
CHECK_IMAGE_FRONT -> Known.CHECK_IMAGE_FRONT
CHECK_IMAGE_BACK -> Known.CHECK_IMAGE_BACK
PROCESSED_CHECK_IMAGE_FRONT -> Known.PROCESSED_CHECK_IMAGE_FRONT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ internal class FileListParamsTest {
.limit(1L)
.purpose(
FileListParams.Purpose.builder()
.addIn(FileListParams.Purpose.In.CHECK_IMAGE_FRONT)
.addIn(FileListParams.Purpose.In.CARD_DISPUTE_ATTACHMENT)
.build()
)
.build()
Expand All @@ -48,7 +48,7 @@ internal class FileListParamsTest {
.limit(1L)
.purpose(
FileListParams.Purpose.builder()
.addIn(FileListParams.Purpose.In.CHECK_IMAGE_FRONT)
.addIn(FileListParams.Purpose.In.CARD_DISPUTE_ATTACHMENT)
.build()
)
.build()
Expand All @@ -65,7 +65,7 @@ internal class FileListParamsTest {
.put("cursor", "cursor")
.put("idempotency_key", "x")
.put("limit", "1")
.put("purpose.in", listOf("check_image_front").joinToString(","))
.put("purpose.in", listOf("card_dispute_attachment").joinToString(","))
.build()
)
}
Expand Down
Loading