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.271.0"
".": "0.272.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-5afe14a5606cebef2ccc6c4781d566b43509e01513e8e02e41adbdeaf3275f48.yml
openapi_spec_hash: 56857e37c0c6131096bf519d91ef76d2
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-aceb2cce1f9a46b1059a04de979b4c40210190639a4c264944b4402042168804.yml
openapi_spec_hash: 5b4ea7615676e742cea44d107b8038ca
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.272.0 (2025-08-04)

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

### Features

* **api:** api update ([936bfa8](https://github.com/Increase/increase-java/commit/936bfa8cd75b4f0db84816bc6f0bf265d2d43519))

## 0.271.0 (2025-08-02)

Full Changelog: [v0.270.0...v0.271.0](https://github.com/Increase/increase-java/compare/v0.270.0...v0.271.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.271.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.271.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.271.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.272.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.272.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.272.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.271.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.272.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.271.0")
implementation("com.increase.api:increase-java:0.272.0")
```

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4898,6 +4898,9 @@ private constructor(
/** A savings account. */
@JvmField val SAVINGS = of("savings")

/** A bank's general ledger. Uncommon. */
@JvmField val GENERAL_LEDGER = of("general_ledger")

@JvmStatic fun of(value: String) = Funding(JsonField.of(value))
}

Expand All @@ -4907,6 +4910,8 @@ private constructor(
CHECKING,
/** A savings account. */
SAVINGS,
/** A bank's general ledger. Uncommon. */
GENERAL_LEDGER,
}

/**
Expand All @@ -4923,6 +4928,8 @@ private constructor(
CHECKING,
/** A savings account. */
SAVINGS,
/** A bank's general ledger. Uncommon. */
GENERAL_LEDGER,
/** An enum member indicating that [Funding] was instantiated with an unknown value. */
_UNKNOWN,
}
Expand All @@ -4938,6 +4945,7 @@ private constructor(
when (this) {
CHECKING -> Value.CHECKING
SAVINGS -> Value.SAVINGS
GENERAL_LEDGER -> Value.GENERAL_LEDGER
else -> Value._UNKNOWN
}

Expand All @@ -4954,6 +4962,7 @@ private constructor(
when (this) {
CHECKING -> Known.CHECKING
SAVINGS -> Known.SAVINGS
GENERAL_LEDGER -> Known.GENERAL_LEDGER
else -> throw IncreaseInvalidDataException("Unknown Funding: $value")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3193,6 +3193,9 @@ private constructor(
/** A savings account. */
@JvmField val SAVINGS = of("savings")

/** A bank's general ledger. Uncommon. */
@JvmField val GENERAL_LEDGER = of("general_ledger")

@JvmStatic fun of(value: String) = Funding(JsonField.of(value))
}

Expand All @@ -3202,6 +3205,8 @@ private constructor(
CHECKING,
/** A savings account. */
SAVINGS,
/** A bank's general ledger. Uncommon. */
GENERAL_LEDGER,
}

/**
Expand All @@ -3218,6 +3223,8 @@ private constructor(
CHECKING,
/** A savings account. */
SAVINGS,
/** A bank's general ledger. Uncommon. */
GENERAL_LEDGER,
/** An enum member indicating that [Funding] was instantiated with an unknown value. */
_UNKNOWN,
}
Expand All @@ -3233,6 +3240,7 @@ private constructor(
when (this) {
CHECKING -> Value.CHECKING
SAVINGS -> Value.SAVINGS
GENERAL_LEDGER -> Value.GENERAL_LEDGER
else -> Value._UNKNOWN
}

Expand All @@ -3249,6 +3257,7 @@ private constructor(
when (this) {
CHECKING -> Known.CHECKING
SAVINGS -> Known.SAVINGS
GENERAL_LEDGER -> Known.GENERAL_LEDGER
else -> throw IncreaseInvalidDataException("Unknown Funding: $value")
}

Expand Down
Loading