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.479.0"
".": "0.480.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.480.0 (2026-04-12)

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

### Features

* **api:** api update ([0b04afa](https://github.com/Increase/increase-python/commit/0b04afa7d3f128f5f7f393fd872c9574374427b5))

## 0.479.0 (2026-04-11)

Full Changelog: [v0.478.0...v0.479.0](https://github.com/Increase/increase-python/compare/v0.478.0...v0.479.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.479.0"
version = "0.480.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.479.0" # x-release-please-version
__version__ = "0.480.0" # x-release-please-version
10 changes: 5 additions & 5 deletions src/increase/types/entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ class CorporationBeneficialOwnerIndividual(BaseModel):
date_of_birth: date
"""The person's date of birth in YYYY-MM-DD format."""

identification: CorporationBeneficialOwnerIndividualIdentification
identification: Optional[CorporationBeneficialOwnerIndividualIdentification] = None
"""A means of verifying the person's identity."""

name: str
Expand Down Expand Up @@ -375,7 +375,7 @@ class JointIndividual(BaseModel):
date_of_birth: date
"""The person's date of birth in YYYY-MM-DD format."""

identification: JointIndividualIdentification
identification: Optional[JointIndividualIdentification] = None
"""A means of verifying the person's identity."""

name: str
Expand Down Expand Up @@ -467,7 +467,7 @@ class NaturalPerson(BaseModel):
date_of_birth: date
"""The person's date of birth in YYYY-MM-DD format."""

identification: NaturalPersonIdentification
identification: Optional[NaturalPersonIdentification] = None
"""A means of verifying the person's identity."""

name: str
Expand Down Expand Up @@ -621,7 +621,7 @@ class TrustGrantor(BaseModel):
date_of_birth: date
"""The person's date of birth in YYYY-MM-DD format."""

identification: TrustGrantorIdentification
identification: Optional[TrustGrantorIdentification] = None
"""A means of verifying the person's identity."""

name: str
Expand Down Expand Up @@ -700,7 +700,7 @@ class TrustTrusteeIndividual(BaseModel):
date_of_birth: date
"""The person's date of birth in YYYY-MM-DD format."""

identification: TrustTrusteeIndividualIdentification
identification: Optional[TrustTrusteeIndividualIdentification] = None
"""A means of verifying the person's identity."""

name: str
Expand Down
2 changes: 1 addition & 1 deletion src/increase/types/entity_beneficial_owner.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class Individual(BaseModel):
date_of_birth: date
"""The person's date of birth in YYYY-MM-DD format."""

identification: IndividualIdentification
identification: Optional[IndividualIdentification] = None
"""A means of verifying the person's identity."""

name: str
Expand Down