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.380.0"
".": "0.381.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: 230
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-e2b7de6202d48efc0e77fd72d2788987e6e3ecf2dfff8a491b88fe9a838f0bd5.yml
openapi_spec_hash: 5af8bcd38aae780c364688cb048d258b
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-d9f5f3bab4d163b340b6737dde4f7a46bca89379801bcc761c4221a24f8cc4cf.yml
openapi_spec_hash: 7b5eddf42e9fa57ec04b5b1b6d9ff872
config_hash: ff2eb5f192b4de36611b37b27961c2d8
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.381.0 (2025-12-15)

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

### Features

* **api:** api update ([26eec45](https://github.com/Increase/increase-java/commit/26eec454b82d24a122d45b45a02eea1ba89de7c7))

## 0.380.0 (2025-12-15)

Full Changelog: [v0.379.0...v0.380.0](https://github.com/Increase/increase-java/compare/v0.379.0...v0.380.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.380.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.380.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.380.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.381.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.381.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.381.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.380.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.381.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.380.0")
implementation("com.increase.api:increase-java:0.381.0")
```

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5459,6 +5459,13 @@ private constructor(
/** The check has been delivered. */
@JvmField val DELIVERED = of("delivered")

/**
* There is an issue preventing delivery. The delivery will be attempted again
* if possible. If the issue cannot be resolved, the check will be returned to
* sender.
*/
@JvmField val DELIVERY_ISSUE = of("delivery_issue")

/** Delivery failed and the check was returned to sender. */
@JvmField val RETURNED_TO_SENDER = of("returned_to_sender")

Expand All @@ -5473,6 +5480,12 @@ private constructor(
PROCESSED_FOR_DELIVERY,
/** The check has been delivered. */
DELIVERED,
/**
* There is an issue preventing delivery. The delivery will be attempted again
* if possible. If the issue cannot be resolved, the check will be returned to
* sender.
*/
DELIVERY_ISSUE,
/** Delivery failed and the check was returned to sender. */
RETURNED_TO_SENDER,
}
Expand All @@ -5493,6 +5506,12 @@ private constructor(
PROCESSED_FOR_DELIVERY,
/** The check has been delivered. */
DELIVERED,
/**
* There is an issue preventing delivery. The delivery will be attempted again
* if possible. If the issue cannot be resolved, the check will be returned to
* sender.
*/
DELIVERY_ISSUE,
/** Delivery failed and the check was returned to sender. */
RETURNED_TO_SENDER,
/**
Expand All @@ -5514,6 +5533,7 @@ private constructor(
IN_TRANSIT -> Value.IN_TRANSIT
PROCESSED_FOR_DELIVERY -> Value.PROCESSED_FOR_DELIVERY
DELIVERED -> Value.DELIVERED
DELIVERY_ISSUE -> Value.DELIVERY_ISSUE
RETURNED_TO_SENDER -> Value.RETURNED_TO_SENDER
else -> Value._UNKNOWN
}
Expand All @@ -5532,6 +5552,7 @@ private constructor(
IN_TRANSIT -> Known.IN_TRANSIT
PROCESSED_FOR_DELIVERY -> Known.PROCESSED_FOR_DELIVERY
DELIVERED -> Known.DELIVERED
DELIVERY_ISSUE -> Known.DELIVERY_ISSUE
RETURNED_TO_SENDER -> Known.RETURNED_TO_SENDER
else -> throw IncreaseInvalidDataException("Unknown Category: $value")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2796,6 +2796,13 @@ private constructor(
/** The physical card has been delivered. */
@JvmField val DELIVERED = of("delivered")

/**
* There is an issue preventing delivery. The delivery will be attempted
* again if possible. If the issue cannot be resolved, the physical card
* will be returned to sender.
*/
@JvmField val DELIVERY_ISSUE = of("delivery_issue")

/** Delivery failed and the physical card was returned to sender. */
@JvmField val RETURNED_TO_SENDER = of("returned_to_sender")

Expand All @@ -2810,6 +2817,12 @@ private constructor(
PROCESSED_FOR_DELIVERY,
/** The physical card has been delivered. */
DELIVERED,
/**
* There is an issue preventing delivery. The delivery will be attempted
* again if possible. If the issue cannot be resolved, the physical card
* will be returned to sender.
*/
DELIVERY_ISSUE,
/** Delivery failed and the physical card was returned to sender. */
RETURNED_TO_SENDER,
}
Expand All @@ -2831,6 +2844,12 @@ private constructor(
PROCESSED_FOR_DELIVERY,
/** The physical card has been delivered. */
DELIVERED,
/**
* There is an issue preventing delivery. The delivery will be attempted
* again if possible. If the issue cannot be resolved, the physical card
* will be returned to sender.
*/
DELIVERY_ISSUE,
/** Delivery failed and the physical card was returned to sender. */
RETURNED_TO_SENDER,
/**
Expand All @@ -2852,6 +2871,7 @@ private constructor(
IN_TRANSIT -> Value.IN_TRANSIT
PROCESSED_FOR_DELIVERY -> Value.PROCESSED_FOR_DELIVERY
DELIVERED -> Value.DELIVERED
DELIVERY_ISSUE -> Value.DELIVERY_ISSUE
RETURNED_TO_SENDER -> Value.RETURNED_TO_SENDER
else -> Value._UNKNOWN
}
Expand All @@ -2870,6 +2890,7 @@ private constructor(
IN_TRANSIT -> Known.IN_TRANSIT
PROCESSED_FOR_DELIVERY -> Known.PROCESSED_FOR_DELIVERY
DELIVERED -> Known.DELIVERED
DELIVERY_ISSUE -> Known.DELIVERY_ISSUE
RETURNED_TO_SENDER -> Known.RETURNED_TO_SENDER
else -> throw IncreaseInvalidDataException("Unknown Category: $value")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -745,6 +745,13 @@ private constructor(
/** The physical card has been delivered. */
@JvmField val DELIVERED = of("delivered")

/**
* There is an issue preventing delivery. The delivery will be attempted again if
* possible. If the issue cannot be resolved, the physical card will be returned to
* sender.
*/
@JvmField val DELIVERY_ISSUE = of("delivery_issue")

/** Delivery failed and the physical card was returned to sender. */
@JvmField val RETURNED_TO_SENDER = of("returned_to_sender")

Expand All @@ -759,6 +766,12 @@ private constructor(
PROCESSED_FOR_DELIVERY,
/** The physical card has been delivered. */
DELIVERED,
/**
* There is an issue preventing delivery. The delivery will be attempted again if
* possible. If the issue cannot be resolved, the physical card will be returned to
* sender.
*/
DELIVERY_ISSUE,
/** Delivery failed and the physical card was returned to sender. */
RETURNED_TO_SENDER,
}
Expand All @@ -779,6 +792,12 @@ private constructor(
PROCESSED_FOR_DELIVERY,
/** The physical card has been delivered. */
DELIVERED,
/**
* There is an issue preventing delivery. The delivery will be attempted again if
* possible. If the issue cannot be resolved, the physical card will be returned to
* sender.
*/
DELIVERY_ISSUE,
/** Delivery failed and the physical card was returned to sender. */
RETURNED_TO_SENDER,
/** An enum member indicating that [Category] was instantiated with an unknown value. */
Expand All @@ -797,6 +816,7 @@ private constructor(
IN_TRANSIT -> Value.IN_TRANSIT
PROCESSED_FOR_DELIVERY -> Value.PROCESSED_FOR_DELIVERY
DELIVERED -> Value.DELIVERED
DELIVERY_ISSUE -> Value.DELIVERY_ISSUE
RETURNED_TO_SENDER -> Value.RETURNED_TO_SENDER
else -> Value._UNKNOWN
}
Expand All @@ -815,6 +835,7 @@ private constructor(
IN_TRANSIT -> Known.IN_TRANSIT
PROCESSED_FOR_DELIVERY -> Known.PROCESSED_FOR_DELIVERY
DELIVERED -> Known.DELIVERED
DELIVERY_ISSUE -> Known.DELIVERY_ISSUE
RETURNED_TO_SENDER -> Known.RETURNED_TO_SENDER
else -> throw IncreaseInvalidDataException("Unknown Category: $value")
}
Expand Down
Loading