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.467.0"
".": "0.468.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: 236
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-c289d5d6e979a7ac26b8475a36fb0f4fc74528eb5f5efc20848411443a6608cb.yml
openapi_spec_hash: eeda9bd525ea98d52a27642bd26c4b89
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-5a342683774b79b3ee013a195d77a651ea053be4ec6a314e92ab08b62f62517b.yml
openapi_spec_hash: 2c87b069a3c3e1c647251016452c0b28
config_hash: e73b1147c039cb3d6a2c56ae5926bca8
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.468.0 (2026-03-12)

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

### Features

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

## 0.467.0 (2026-03-12)

Full Changelog: [v0.466.0...v0.467.0](https://github.com/Increase/increase-java/compare/v0.466.0...v0.467.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.467.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.467.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.467.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.468.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.468.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.468.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.467.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.468.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.467.0")
implementation("com.increase.api:increase-java:0.468.0")
```

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull

/**
* Beneficial owners are the individuals who control or own 25% or more of a `corporation` entity.
* Beneficial owners are always people, and never organizations. Generally, you will need to submit
* between 1 and 5 beneficial owners for every `corporation` entity. You should update and archive
* beneficial owners for a corporation entity as their details change.
*/
class EntityBeneficialOwner
@JsonCreator(mode = JsonCreator.Mode.DISABLED)
private constructor(
Expand Down
Loading