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.370.1"
".": "0.371.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: 229
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-bd464d151612058d8029150b376949b22d5515af23621465c0ce1c1069b91644.yml
openapi_spec_hash: e60e1548c523a0ee7c9daa1bd988cbc5
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-f24e91d60005894c135a6ccad84e179e0a2cb64def7e1101904c430a8e5e5dd9.yml
openapi_spec_hash: a63e06588ae354c03b68d6cb9d965e11
config_hash: ca1425272e17fa23d4466d33492334fa
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.371.0 (2025-12-01)

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

### Features

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

## 0.370.1 (2025-11-26)

Full Changelog: [v0.370.0...v0.370.1](https://github.com/Increase/increase-java/compare/v0.370.0...v0.370.1)
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.370.1)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.370.1/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.370.1)
[![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.371.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.371.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.371.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.370.1).
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.371.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.370.1")
implementation("com.increase.api:increase-java:0.371.0")
```

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2122,9 +2122,9 @@ private constructor(
fun name(): Optional<String> = name.getOptional("name")

/**
* The phone number to associate with the check's destination address. Only used if
* shipping method is `fedex_overnight`. Will be supplied to FedEx as the contact phone
* number for the recipient to be used in case of delivery issues.
* The phone number to associate with the check's destination address. The number is
* only used when `shipping_method` is `fedex_overnight` and will be supplied to FedEx
* to be used in case of delivery issues.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g.
* if the server responded with an unexpected value).
Expand Down Expand Up @@ -2313,9 +2313,9 @@ private constructor(
fun name(name: JsonField<String>) = apply { this.name = name }

/**
* The phone number to associate with the check's destination address. Only used if
* shipping method is `fedex_overnight`. Will be supplied to FedEx as the contact
* phone number for the recipient to be used in case of delivery issues.
* The phone number to associate with the check's destination address. The number is
* only used when `shipping_method` is `fedex_overnight` and will be supplied to
* FedEx to be used in case of delivery issues.
*/
fun phone(phone: String) = phone(JsonField.of(phone))

Expand Down
Loading