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.399.0"
".": "0.400.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: 232
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-6726a464abac2e26549c692dba99ba448d4e8c8761df6b395ad50b348aa25a26.yml
openapi_spec_hash: 275356a13559aed985c8c5c67b819d7d
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-4df3552a635fafa2af8caa70f7daed96996b4263da92fb96e03cbf3c1b4931b4.yml
openapi_spec_hash: 77a141ca0b0c00f8117cea15374a734d
config_hash: 27e44ed36b9c5617b580ead7231a594a
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.400.0 (2026-01-22)

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

### Features

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


### Chores

* **internal:** codegen related update ([fc90a76](https://github.com/Increase/increase-java/commit/fc90a7646adf1cfd7d0345982d435215929c0917))

## 0.399.0 (2026-01-21)

Full Changelog: [v0.398.0...v0.399.0](https://github.com/Increase/increase-java/compare/v0.398.0...v0.399.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.399.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.399.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.399.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.400.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.400.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.400.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.399.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.400.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.399.0")
implementation("com.increase.api:increase-java:0.400.0")
```

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ import kotlin.jvm.optionals.getOrNull
/**
* Simulates an Inbound Check Deposit against your account. This imitates someone depositing a check
* at their bank that was issued from your account. It may or may not be associated with a Check
* Transfer. Increase will evaluate the Check Deposit as we would in production and either create a
* Transaction or a Declined Transaction as a result. You can inspect the resulting Inbound Check
* Deposit object to see the result.
* Transfer. Increase will evaluate the Inbound Check Deposit as we would in production and either
* create a Transaction or a Declined Transaction as a result. You can inspect the resulting Inbound
* Check Deposit object to see the result.
*/
class InboundCheckDepositCreateParams
private constructor(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ interface InboundCheckDepositServiceAsync {
/**
* Simulates an Inbound Check Deposit against your account. This imitates someone depositing a
* check at their bank that was issued from your account. It may or may not be associated with a
* Check Transfer. Increase will evaluate the Check Deposit as we would in production and either
* create a Transaction or a Declined Transaction as a result. You can inspect the resulting
* Inbound Check Deposit object to see the result.
* Check Transfer. Increase will evaluate the Inbound Check Deposit as we would in production
* and either create a Transaction or a Declined Transaction as a result. You can inspect the
* resulting Inbound Check Deposit object to see the result.
*/
fun create(params: InboundCheckDepositCreateParams): CompletableFuture<InboundCheckDeposit> =
create(params, RequestOptions.none())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ interface InboundCheckDepositService {
/**
* Simulates an Inbound Check Deposit against your account. This imitates someone depositing a
* check at their bank that was issued from your account. It may or may not be associated with a
* Check Transfer. Increase will evaluate the Check Deposit as we would in production and either
* create a Transaction or a Declined Transaction as a result. You can inspect the resulting
* Inbound Check Deposit object to see the result.
* Check Transfer. Increase will evaluate the Inbound Check Deposit as we would in production
* and either create a Transaction or a Declined Transaction as a result. You can inspect the
* resulting Inbound Check Deposit object to see the result.
*/
fun create(params: InboundCheckDepositCreateParams): InboundCheckDeposit =
create(params, RequestOptions.none())
Expand Down
3 changes: 2 additions & 1 deletion increase-java-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ repositories {
}

dependencies {
implementation(project(":increase-java"))
implementation(project(":increase-java-core"))
implementation(project(":increase-java-client-okhttp"))
}

tasks.withType<JavaCompile>().configureEach {
Expand Down
Loading