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.348.0"
".": "0.349.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: 228
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-e9e51b3c9b5c8d9e6e0267b62a12a00fedbce419b765192aa4e2470984192e1f.yml
openapi_spec_hash: 84bc91dd8b8a80edf447dddad15c23fc
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-776b1bee3036836b954fa0db1e6d0349a04f76799402089994a9147a05967c0e.yml
openapi_spec_hash: 185a637305e75b302860dce8d352f54f
config_hash: eb2035151c7b49c2f12caf55469b8f9a
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.349.0 (2025-11-04)

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

### Features

* **api:** api update ([8058212](https://github.com/Increase/increase-java/commit/805821268c75be80ef612710d4c7b445f48f7e91))

## 0.348.0 (2025-10-31)

Full Changelog: [v0.347.0...v0.348.0](https://github.com/Increase/increase-java/compare/v0.347.0...v0.348.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.348.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.348.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.348.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.349.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.349.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.349.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.348.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.349.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.348.0")
implementation("com.increase.api:increase-java:0.349.0")
```

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1686,12 +1686,12 @@ private constructor(
/** The drawdown request is queued to be submitted to Fedwire. */
@JvmField val PENDING_SUBMISSION = of("pending_submission")

/** The drawdown request has been sent and the recipient should respond in some way. */
@JvmField val PENDING_RESPONSE = of("pending_response")

/** The drawdown request has been fulfilled by the recipient. */
@JvmField val FULFILLED = of("fulfilled")

/** The drawdown request has been sent and the recipient should respond in some way. */
@JvmField val PENDING_RESPONSE = of("pending_response")

/** The drawdown request has been refused by the recipient. */
@JvmField val REFUSED = of("refused")

Expand All @@ -1702,10 +1702,10 @@ private constructor(
enum class Known {
/** The drawdown request is queued to be submitted to Fedwire. */
PENDING_SUBMISSION,
/** The drawdown request has been sent and the recipient should respond in some way. */
PENDING_RESPONSE,
/** The drawdown request has been fulfilled by the recipient. */
FULFILLED,
/** The drawdown request has been sent and the recipient should respond in some way. */
PENDING_RESPONSE,
/** The drawdown request has been refused by the recipient. */
REFUSED,
}
Expand All @@ -1722,10 +1722,10 @@ private constructor(
enum class Value {
/** The drawdown request is queued to be submitted to Fedwire. */
PENDING_SUBMISSION,
/** The drawdown request has been sent and the recipient should respond in some way. */
PENDING_RESPONSE,
/** The drawdown request has been fulfilled by the recipient. */
FULFILLED,
/** The drawdown request has been sent and the recipient should respond in some way. */
PENDING_RESPONSE,
/** The drawdown request has been refused by the recipient. */
REFUSED,
/** An enum member indicating that [Status] was instantiated with an unknown value. */
Expand All @@ -1742,8 +1742,8 @@ private constructor(
fun value(): Value =
when (this) {
PENDING_SUBMISSION -> Value.PENDING_SUBMISSION
PENDING_RESPONSE -> Value.PENDING_RESPONSE
FULFILLED -> Value.FULFILLED
PENDING_RESPONSE -> Value.PENDING_RESPONSE
REFUSED -> Value.REFUSED
else -> Value._UNKNOWN
}
Expand All @@ -1760,8 +1760,8 @@ private constructor(
fun known(): Known =
when (this) {
PENDING_SUBMISSION -> Known.PENDING_SUBMISSION
PENDING_RESPONSE -> Known.PENDING_RESPONSE
FULFILLED -> Known.FULFILLED
PENDING_RESPONSE -> Known.PENDING_RESPONSE
REFUSED -> Known.REFUSED
else -> throw IncreaseInvalidDataException("Unknown Status: $value")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -375,14 +375,14 @@ private constructor(
/** The drawdown request is queued to be submitted to Fedwire. */
@JvmField val PENDING_SUBMISSION = of("pending_submission")

/** The drawdown request has been fulfilled by the recipient. */
@JvmField val FULFILLED = of("fulfilled")

/**
* The drawdown request has been sent and the recipient should respond in some way.
*/
@JvmField val PENDING_RESPONSE = of("pending_response")

/** The drawdown request has been fulfilled by the recipient. */
@JvmField val FULFILLED = of("fulfilled")

/** The drawdown request has been refused by the recipient. */
@JvmField val REFUSED = of("refused")

Expand All @@ -393,12 +393,12 @@ private constructor(
enum class Known {
/** The drawdown request is queued to be submitted to Fedwire. */
PENDING_SUBMISSION,
/** The drawdown request has been fulfilled by the recipient. */
FULFILLED,
/**
* The drawdown request has been sent and the recipient should respond in some way.
*/
PENDING_RESPONSE,
/** The drawdown request has been fulfilled by the recipient. */
FULFILLED,
/** The drawdown request has been refused by the recipient. */
REFUSED,
}
Expand All @@ -415,12 +415,12 @@ private constructor(
enum class Value {
/** The drawdown request is queued to be submitted to Fedwire. */
PENDING_SUBMISSION,
/** The drawdown request has been fulfilled by the recipient. */
FULFILLED,
/**
* The drawdown request has been sent and the recipient should respond in some way.
*/
PENDING_RESPONSE,
/** The drawdown request has been fulfilled by the recipient. */
FULFILLED,
/** The drawdown request has been refused by the recipient. */
REFUSED,
/** An enum member indicating that [In] was instantiated with an unknown value. */
Expand All @@ -437,8 +437,8 @@ private constructor(
fun value(): Value =
when (this) {
PENDING_SUBMISSION -> Value.PENDING_SUBMISSION
PENDING_RESPONSE -> Value.PENDING_RESPONSE
FULFILLED -> Value.FULFILLED
PENDING_RESPONSE -> Value.PENDING_RESPONSE
REFUSED -> Value.REFUSED
else -> Value._UNKNOWN
}
Expand All @@ -455,8 +455,8 @@ private constructor(
fun known(): Known =
when (this) {
PENDING_SUBMISSION -> Known.PENDING_SUBMISSION
PENDING_RESPONSE -> Known.PENDING_RESPONSE
FULFILLED -> Known.FULFILLED
PENDING_RESPONSE -> Known.PENDING_RESPONSE
REFUSED -> Known.REFUSED
else -> throw IncreaseInvalidDataException("Unknown In: $value")
}
Expand Down
Loading