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.511.0"
".": "0.512.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: 241
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-ff1d99efd9eeb980f386d87e7d4c422890073b2dd12759044b444227f76dbe96.yml
openapi_spec_hash: 1b8389213a95f495dcc6d381451e5c4c
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-e1702c4a3b65baa3aa2cd31f032b23eb84c83c663aaffba72794320adcfd164d.yml
openapi_spec_hash: 57d3d06ec298932f6384d1f03c9ec0a8
config_hash: d48e9f65bcf642f92610034d6c43f07a
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.512.0 (2026-04-12)

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

### Features

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

## 0.511.0 (2026-04-11)

Full Changelog: [v0.510.0...v0.511.0](https://github.com/Increase/increase-java/compare/v0.510.0...v0.511.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.511.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.511.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.511.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.512.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.512.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.512.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.511.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.512.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.511.0")
implementation("com.increase.api:increase-java:0.512.0")
```

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -527,10 +527,11 @@ private constructor(
/**
* A means of verifying the person's identity.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type or is
* unexpectedly missing or null (e.g. if the server responded with an unexpected value).
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
* the server responded with an unexpected value).
*/
fun identification(): Identification = identification.getRequired("identification")
fun identification(): Optional<Identification> =
identification.getOptional("identification")

/**
* The person's legal name.
Expand Down Expand Up @@ -646,8 +647,12 @@ private constructor(
}

/** A means of verifying the person's identity. */
fun identification(identification: Identification) =
identification(JsonField.of(identification))
fun identification(identification: Identification?) =
identification(JsonField.ofNullable(identification))

/** Alias for calling [Builder.identification] with `identification.orElse(null)`. */
fun identification(identification: Optional<Identification>) =
identification(identification.getOrNull())

/**
* Sets [Builder.identification] to an arbitrary JSON value.
Expand Down Expand Up @@ -725,7 +730,7 @@ private constructor(

address().validate()
dateOfBirth()
identification().validate()
identification().ifPresent { it.validate() }
name()
validated = true
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2193,11 +2193,11 @@ private constructor(
/**
* A means of verifying the person's identity.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type or
* is unexpectedly missing or null (e.g. if the server responded with an
* unexpected value).
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type
* (e.g. if the server responded with an unexpected value).
*/
fun identification(): Identification = identification.getRequired("identification")
fun identification(): Optional<Identification> =
identification.getOptional("identification")

/**
* The person's legal name.
Expand Down Expand Up @@ -2319,8 +2319,15 @@ private constructor(
}

/** A means of verifying the person's identity. */
fun identification(identification: Identification) =
identification(JsonField.of(identification))
fun identification(identification: Identification?) =
identification(JsonField.ofNullable(identification))

/**
* Alias for calling [Builder.identification] with
* `identification.orElse(null)`.
*/
fun identification(identification: Optional<Identification>) =
identification(identification.getOrNull())

/**
* Sets [Builder.identification] to an arbitrary JSON value.
Expand Down Expand Up @@ -2401,7 +2408,7 @@ private constructor(

address().validate()
dateOfBirth()
identification().validate()
identification().ifPresent { it.validate() }
name()
validated = true
}
Expand Down Expand Up @@ -5190,11 +5197,11 @@ private constructor(
/**
* A means of verifying the person's identity.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type or is
* unexpectedly missing or null (e.g. if the server responded with an unexpected
* value).
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g.
* if the server responded with an unexpected value).
*/
fun identification(): Identification = identification.getRequired("identification")
fun identification(): Optional<Identification> =
identification.getOptional("identification")

/**
* The person's legal name.
Expand Down Expand Up @@ -5312,8 +5319,14 @@ private constructor(
}

/** A means of verifying the person's identity. */
fun identification(identification: Identification) =
identification(JsonField.of(identification))
fun identification(identification: Identification?) =
identification(JsonField.ofNullable(identification))

/**
* Alias for calling [Builder.identification] with `identification.orElse(null)`.
*/
fun identification(identification: Optional<Identification>) =
identification(identification.getOrNull())

/**
* Sets [Builder.identification] to an arbitrary JSON value.
Expand Down Expand Up @@ -5394,7 +5407,7 @@ private constructor(

address().validate()
dateOfBirth()
identification().validate()
identification().ifPresent { it.validate() }
name()
validated = true
}
Expand Down Expand Up @@ -6284,10 +6297,11 @@ private constructor(
/**
* A means of verifying the person's identity.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type or is
* unexpectedly missing or null (e.g. if the server responded with an unexpected value).
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
* the server responded with an unexpected value).
*/
fun identification(): Identification = identification.getRequired("identification")
fun identification(): Optional<Identification> =
identification.getOptional("identification")

/**
* The person's legal name.
Expand Down Expand Up @@ -6403,8 +6417,12 @@ private constructor(
}

/** A means of verifying the person's identity. */
fun identification(identification: Identification) =
identification(JsonField.of(identification))
fun identification(identification: Identification?) =
identification(JsonField.ofNullable(identification))

/** Alias for calling [Builder.identification] with `identification.orElse(null)`. */
fun identification(identification: Optional<Identification>) =
identification(identification.getOrNull())

/**
* Sets [Builder.identification] to an arbitrary JSON value.
Expand Down Expand Up @@ -6482,7 +6500,7 @@ private constructor(

address().validate()
dateOfBirth()
identification().validate()
identification().ifPresent { it.validate() }
name()
validated = true
}
Expand Down Expand Up @@ -9592,11 +9610,11 @@ private constructor(
/**
* A means of verifying the person's identity.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type or is
* unexpectedly missing or null (e.g. if the server responded with an unexpected
* value).
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g.
* if the server responded with an unexpected value).
*/
fun identification(): Identification = identification.getRequired("identification")
fun identification(): Optional<Identification> =
identification.getOptional("identification")

/**
* The person's legal name.
Expand Down Expand Up @@ -9714,8 +9732,14 @@ private constructor(
}

/** A means of verifying the person's identity. */
fun identification(identification: Identification) =
identification(JsonField.of(identification))
fun identification(identification: Identification?) =
identification(JsonField.ofNullable(identification))

/**
* Alias for calling [Builder.identification] with `identification.orElse(null)`.
*/
fun identification(identification: Optional<Identification>) =
identification(identification.getOrNull())

/**
* Sets [Builder.identification] to an arbitrary JSON value.
Expand Down Expand Up @@ -9796,7 +9820,7 @@ private constructor(

address().validate()
dateOfBirth()
identification().validate()
identification().ifPresent { it.validate() }
name()
validated = true
}
Expand Down Expand Up @@ -10877,11 +10901,11 @@ private constructor(
/**
* A means of verifying the person's identity.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type or
* is unexpectedly missing or null (e.g. if the server responded with an
* unexpected value).
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type
* (e.g. if the server responded with an unexpected value).
*/
fun identification(): Identification = identification.getRequired("identification")
fun identification(): Optional<Identification> =
identification.getOptional("identification")

/**
* The person's legal name.
Expand Down Expand Up @@ -11003,8 +11027,15 @@ private constructor(
}

/** A means of verifying the person's identity. */
fun identification(identification: Identification) =
identification(JsonField.of(identification))
fun identification(identification: Identification?) =
identification(JsonField.ofNullable(identification))

/**
* Alias for calling [Builder.identification] with
* `identification.orElse(null)`.
*/
fun identification(identification: Optional<Identification>) =
identification(identification.getOrNull())

/**
* Sets [Builder.identification] to an arbitrary JSON value.
Expand Down Expand Up @@ -11085,7 +11116,7 @@ private constructor(

address().validate()
dateOfBirth()
identification().validate()
identification().ifPresent { it.validate() }
name()
validated = true
}
Expand Down
Loading