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.522.0"
".": "0.523.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: 238
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase/increase-af31eaeec1ad06f025b65b01ec5a1748623df55e19614038ead56d338db3f0fd.yml
openapi_spec_hash: 6a5297209c26716ae6ca0ec0039e8435
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase/increase-950769f1aa8e631ab9c5a65eaa03637d8aad949edbd52cbd30dcf187ef02ae6e.yml
openapi_spec_hash: acd76f6541166d80e09c17c3a5c33981
config_hash: ac050010e5453883d5e5fa603554a2e0
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.523.0 (2026-05-18)

Full Changelog: [v0.522.0...v0.523.0](https://github.com/Increase/increase-python/compare/v0.522.0...v0.523.0)

### Features

* **api:** api update ([4c0b7e2](https://github.com/Increase/increase-python/commit/4c0b7e2e23cb2d395979ee65fc9e27493e5af325))

## 0.522.0 (2026-05-17)

Full Changelog: [v0.521.0...v0.522.0](https://github.com/Increase/increase-python/compare/v0.521.0...v0.522.0)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "increase"
version = "0.522.0"
version = "0.523.0"
description = "The official Python library for the increase API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/increase/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "increase"
__version__ = "0.522.0" # x-release-please-version
__version__ = "0.523.0" # x-release-please-version
9 changes: 6 additions & 3 deletions src/increase/types/entity_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,9 +380,12 @@ class Corporation(TypedDict, total=False, extra_items=object): # type: ignore[c

beneficial_owners: Required[Iterable[CorporationBeneficialOwner]]
"""
The identifying details of each person who owns 25% or more of the business and
one control person, like the CEO, CFO, or other executive. You can submit
between 1 and 5 people to this list.
The identifying details of one control person (`control`), like the CEO, CFO, or
other executive, plus each person who owns 25% or more of the business
(`ownership`). At least one control person is required, and frequently, the
`control` person is also `ownership`. In some cases, there are no individuals
who own 25% or more of the business. In that case, you should submit a single
`control` person.
"""

legal_identifier: Required[CorporationLegalIdentifier]
Expand Down