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
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,31 @@ jobs:

- name: Run lints
run: ./scripts/lint

build:
timeout-minutes: 15
name: build
runs-on: ${{ github.repository == 'stainless-sdks/increase-java' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork

steps:
- uses: actions/checkout@v4

- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: |
8
21
cache: gradle

- name: Set up Gradle
uses: gradle/actions/setup-gradle@v4

- name: Build SDK
run: ./scripts/build

test:
timeout-minutes: 15
name: test
Expand Down
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.282.0"
".": "0.283.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: 214
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-a7861b46606a5a2d849c4403583805c1074983cffaf7acfe0a4d7bafa38c5efd.yml
openapi_spec_hash: a1cad356ebe1b02a67dbafbde7d7f1d4
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-70837ed2f8d4ade9021fc0f50bf3cd77cdf05f308c4ed75b2b4dcc42f1ec2378.yml
openapi_spec_hash: 09cf1c77dce2927cb41426a287a15437
config_hash: b0b366d8c705ea0efe62093bae953e5a
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.283.0 (2025-08-15)

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

### Features

* **api:** api update ([b3f1501](https://github.com/Increase/increase-java/commit/b3f1501730e237bce9e63957a5fcdff35941d950))


### Chores

* **ci:** add build job ([cde330b](https://github.com/Increase/increase-java/commit/cde330b817f2f0f717d05c40ee82ed6108b8f4ec))

## 0.282.0 (2025-08-14)

Full Changelog: [v0.281.0...v0.282.0](https://github.com/Increase/increase-java/compare/v0.281.0...v0.282.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.282.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.282.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.282.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.283.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.283.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.283.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.282.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.283.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.282.0")
implementation("com.increase.api:increase-java:0.283.0")
```

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

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

/** A general ledger account. */
@JvmField val GENERAL_LEDGER = of("general_ledger")

/** A different type of account. */
@JvmField val OTHER = of("other")

Expand All @@ -725,6 +728,8 @@ private constructor(
CHECKING,
/** A savings account. */
SAVINGS,
/** A general ledger account. */
GENERAL_LEDGER,
/** A different type of account. */
OTHER,
}
Expand All @@ -743,6 +748,8 @@ private constructor(
CHECKING,
/** A savings account. */
SAVINGS,
/** A general ledger account. */
GENERAL_LEDGER,
/** A different type of account. */
OTHER,
/** An enum member indicating that [Funding] was instantiated with an unknown value. */
Expand All @@ -760,6 +767,7 @@ private constructor(
when (this) {
CHECKING -> Value.CHECKING
SAVINGS -> Value.SAVINGS
GENERAL_LEDGER -> Value.GENERAL_LEDGER
OTHER -> Value.OTHER
else -> Value._UNKNOWN
}
Expand All @@ -777,6 +785,7 @@ private constructor(
when (this) {
CHECKING -> Known.CHECKING
SAVINGS -> Known.SAVINGS
GENERAL_LEDGER -> Known.GENERAL_LEDGER
OTHER -> Known.OTHER
else -> throw IncreaseInvalidDataException("Unknown Funding: $value")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -886,6 +886,9 @@ private constructor(
/** A savings account. */
@JvmField val SAVINGS = of("savings")

/** A general ledger account. */
@JvmField val GENERAL_LEDGER = of("general_ledger")

/** A different type of account. */
@JvmField val OTHER = of("other")

Expand All @@ -898,6 +901,8 @@ private constructor(
CHECKING,
/** A savings account. */
SAVINGS,
/** A general ledger account. */
GENERAL_LEDGER,
/** A different type of account. */
OTHER,
}
Expand All @@ -916,6 +921,8 @@ private constructor(
CHECKING,
/** A savings account. */
SAVINGS,
/** A general ledger account. */
GENERAL_LEDGER,
/** A different type of account. */
OTHER,
/** An enum member indicating that [Funding] was instantiated with an unknown value. */
Expand All @@ -933,6 +940,7 @@ private constructor(
when (this) {
CHECKING -> Value.CHECKING
SAVINGS -> Value.SAVINGS
GENERAL_LEDGER -> Value.GENERAL_LEDGER
OTHER -> Value.OTHER
else -> Value._UNKNOWN
}
Expand All @@ -950,6 +958,7 @@ private constructor(
when (this) {
CHECKING -> Known.CHECKING
SAVINGS -> Known.SAVINGS
GENERAL_LEDGER -> Known.GENERAL_LEDGER
OTHER -> Known.OTHER
else -> throw IncreaseInvalidDataException("Unknown Funding: $value")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -768,6 +768,9 @@ private constructor(
/** A savings account. */
@JvmField val SAVINGS = of("savings")

/** A general ledger account. */
@JvmField val GENERAL_LEDGER = of("general_ledger")

/** A different type of account. */
@JvmField val OTHER = of("other")

Expand All @@ -780,6 +783,8 @@ private constructor(
CHECKING,
/** A savings account. */
SAVINGS,
/** A general ledger account. */
GENERAL_LEDGER,
/** A different type of account. */
OTHER,
}
Expand All @@ -798,6 +803,8 @@ private constructor(
CHECKING,
/** A savings account. */
SAVINGS,
/** A general ledger account. */
GENERAL_LEDGER,
/** A different type of account. */
OTHER,
/** An enum member indicating that [Funding] was instantiated with an unknown value. */
Expand All @@ -815,6 +822,7 @@ private constructor(
when (this) {
CHECKING -> Value.CHECKING
SAVINGS -> Value.SAVINGS
GENERAL_LEDGER -> Value.GENERAL_LEDGER
OTHER -> Value.OTHER
else -> Value._UNKNOWN
}
Expand All @@ -832,6 +840,7 @@ private constructor(
when (this) {
CHECKING -> Known.CHECKING
SAVINGS -> Known.SAVINGS
GENERAL_LEDGER -> Known.GENERAL_LEDGER
OTHER -> Known.OTHER
else -> throw IncreaseInvalidDataException("Unknown Funding: $value")
}
Expand Down
Loading