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.459.0"
".": "0.460.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-e2a6ff4685a5e09babcce1fb8bac1f373d707d5b5aa82aae375d923de890e56e.yml
openapi_spec_hash: 244249a4dfb6c746c161a704764d7630
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-b51c9307c5fd4c662426ca9bbdbe00d0721edcb2eb899d4b9a3539aa01623873.yml
openapi_spec_hash: e5767b8639a1573ae70b25be22cc77a3
config_hash: 0997ade8b52ec04e82d5b0c3b61bb51e
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.460.0 (2026-03-25)

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

### Features

* **api:** api update ([8babe89](https://github.com/Increase/increase-python/commit/8babe89cc8bdaed71e65e85b4c999d0794e969f7))

## 0.459.0 (2026-03-25)

Full Changelog: [v0.458.0...v0.459.0](https://github.com/Increase/increase-python/compare/v0.458.0...v0.459.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.459.0"
version = "0.460.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.459.0" # x-release-please-version
__version__ = "0.460.0" # x-release-please-version
119 changes: 70 additions & 49 deletions src/increase/types/entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,23 +52,26 @@
class CorporationAddress(BaseModel):
"""The corporation's address."""

city: str
"""The city of the address."""
city: Optional[str] = None
"""The city, district, town, or village of the address."""

country: str
"""The two-letter ISO 3166-1 alpha-2 code for the country of the address."""

line1: str
"""The first line of the address."""

line2: Optional[str] = None
"""The second line of the address."""

state: str
state: Optional[str] = None
"""
The two-letter United States Postal Service (USPS) abbreviation for the state of
the address.
The two-letter United States Postal Service (USPS) abbreviation for the US
state, province, or region of the address.
"""

zip: str
"""The ZIP code of the address."""
zip: Optional[str] = None
"""The ZIP or postal code of the address."""


class CorporationBeneficialOwnerIndividualAddress(BaseModel):
Expand Down Expand Up @@ -244,23 +247,26 @@ def __getattr__(self, attr: str) -> object: ...
class GovernmentAuthorityAddress(BaseModel):
"""The government authority's address."""

city: str
"""The city of the address."""
city: Optional[str] = None
"""The city, district, town, or village of the address."""

country: str
"""The two-letter ISO 3166-1 alpha-2 code for the country of the address."""

line1: str
"""The first line of the address."""

line2: Optional[str] = None
"""The second line of the address."""

state: str
state: Optional[str] = None
"""
The two-letter United States Postal Service (USPS) abbreviation for the state of
the address.
The two-letter United States Postal Service (USPS) abbreviation for the US
state, province, or region of the address.
"""

zip: str
"""The ZIP code of the address."""
zip: Optional[str] = None
"""The ZIP or postal code of the address."""


class GovernmentAuthorityAuthorizedPerson(BaseModel):
Expand Down Expand Up @@ -305,23 +311,26 @@ class GovernmentAuthority(BaseModel):
class JointIndividualAddress(BaseModel):
"""The person's address."""

city: str
"""The city of the address."""
city: Optional[str] = None
"""The city, district, town, or village of the address."""

country: str
"""The two-letter ISO 3166-1 alpha-2 code for the country of the address."""

line1: str
"""The first line of the address."""

line2: Optional[str] = None
"""The second line of the address."""

state: str
state: Optional[str] = None
"""
The two-letter United States Postal Service (USPS) abbreviation for the state of
the address.
The two-letter United States Postal Service (USPS) abbreviation for the US
state, province, or region of the address.
"""

zip: str
"""The ZIP code of the address."""
zip: Optional[str] = None
"""The ZIP or postal code of the address."""


class JointIndividualIdentification(BaseModel):
Expand Down Expand Up @@ -389,23 +398,26 @@ class Joint(BaseModel):
class NaturalPersonAddress(BaseModel):
"""The person's address."""

city: str
"""The city of the address."""
city: Optional[str] = None
"""The city, district, town, or village of the address."""

country: str
"""The two-letter ISO 3166-1 alpha-2 code for the country of the address."""

line1: str
"""The first line of the address."""

line2: Optional[str] = None
"""The second line of the address."""

state: str
state: Optional[str] = None
"""
The two-letter United States Postal Service (USPS) abbreviation for the state of
the address.
The two-letter United States Postal Service (USPS) abbreviation for the US
state, province, or region of the address.
"""

zip: str
"""The ZIP code of the address."""
zip: Optional[str] = None
"""The ZIP or postal code of the address."""


class NaturalPersonIdentification(BaseModel):
Expand Down Expand Up @@ -518,45 +530,51 @@ class ThirdPartyVerification(BaseModel):
class TrustAddress(BaseModel):
"""The trust's address."""

city: str
"""The city of the address."""
city: Optional[str] = None
"""The city, district, town, or village of the address."""

country: str
"""The two-letter ISO 3166-1 alpha-2 code for the country of the address."""

line1: str
"""The first line of the address."""

line2: Optional[str] = None
"""The second line of the address."""

state: str
state: Optional[str] = None
"""
The two-letter United States Postal Service (USPS) abbreviation for the state of
the address.
The two-letter United States Postal Service (USPS) abbreviation for the US
state, province, or region of the address.
"""

zip: str
"""The ZIP code of the address."""
zip: Optional[str] = None
"""The ZIP or postal code of the address."""


class TrustGrantorAddress(BaseModel):
"""The person's address."""

city: str
"""The city of the address."""
city: Optional[str] = None
"""The city, district, town, or village of the address."""

country: str
"""The two-letter ISO 3166-1 alpha-2 code for the country of the address."""

line1: str
"""The first line of the address."""

line2: Optional[str] = None
"""The second line of the address."""

state: str
state: Optional[str] = None
"""
The two-letter United States Postal Service (USPS) abbreviation for the state of
the address.
The two-letter United States Postal Service (USPS) abbreviation for the US
state, province, or region of the address.
"""

zip: str
"""The ZIP code of the address."""
zip: Optional[str] = None
"""The ZIP or postal code of the address."""


class TrustGrantorIdentification(BaseModel):
Expand Down Expand Up @@ -613,23 +631,26 @@ class TrustGrantor(BaseModel):
class TrustTrusteeIndividualAddress(BaseModel):
"""The person's address."""

city: str
"""The city of the address."""
city: Optional[str] = None
"""The city, district, town, or village of the address."""

country: str
"""The two-letter ISO 3166-1 alpha-2 code for the country of the address."""

line1: str
"""The first line of the address."""

line2: Optional[str] = None
"""The second line of the address."""

state: str
state: Optional[str] = None
"""
The two-letter United States Postal Service (USPS) abbreviation for the state of
the address.
The two-letter United States Postal Service (USPS) abbreviation for the US
state, province, or region of the address.
"""

zip: str
"""The ZIP code of the address."""
zip: Optional[str] = None
"""The ZIP or postal code of the address."""


class TrustTrusteeIndividualIdentification(BaseModel):
Expand Down
Loading