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.215.0"
".": "0.216.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: 199
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-980332df3fb6b765fea4323999ffdf03b0617292e11fb251d4c1cb7bfd669527.yml
openapi_spec_hash: a5853d13470a12038e0a6c5cb069d611
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-dbfb4cc4f72a4a3d1f957a3f02cda743d386896e85293e0cb3f2ce0c70af2ae5.yml
openapi_spec_hash: e8943405e5f69ae7d23a305a5c449fad
config_hash: 20a463ecd33bd32b7b9bc6f4990907ac
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.216.0 (2025-04-01)

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

### Features

* **api:** api update ([#1064](https://github.com/Increase/increase-python/issues/1064)) ([9f0c913](https://github.com/Increase/increase-python/commit/9f0c913712be03be4d2a14a8636a8060b84411f4))

## 0.215.0 (2025-03-31)

Full Changelog: [v0.214.0...v0.215.0](https://github.com/Increase/increase-python/compare/v0.214.0...v0.215.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.215.0"
version = "0.216.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.215.0" # x-release-please-version
__version__ = "0.216.0" # x-release-please-version
17 changes: 10 additions & 7 deletions src/increase/types/entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,23 +59,26 @@ class CorporationAddress(BaseModel):


class CorporationBeneficialOwnerIndividualAddress(BaseModel):
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 CorporationBeneficialOwnerIndividualIdentification(BaseModel):
Expand Down
24 changes: 15 additions & 9 deletions src/increase/types/entity_create_beneficial_owner_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,24 +29,30 @@ class EntityCreateBeneficialOwnerParams(TypedDict, total=False):


class BeneficialOwnerIndividualAddress(TypedDict, total=False):
city: Required[str]
"""The city of the address."""
country: Required[str]
"""The two-letter ISO 3166-1 alpha-2 code for the country of the address."""

line1: Required[str]
"""The first line of the address. This is usually the street number and street."""

state: Required[str]
"""
The two-letter United States Postal Service (USPS) abbreviation for the state of
the address.
"""
city: str
"""The city, district, town, or village of the address.

zip: Required[str]
"""The ZIP code of the address."""
Required in certain countries.
"""

line2: str
"""The second line of the address. This might be the floor or room number."""

state: str
"""
The two-letter United States Postal Service (USPS) abbreviation for the US
state, province, or region of the address. Required in certain countries.
"""

zip: str
"""The ZIP or postal code of the address. Required in certain countries."""


class BeneficialOwnerIndividualIdentificationDriversLicense(TypedDict, total=False):
expiration_date: Required[Annotated[Union[str, date], PropertyInfo(format="iso8601")]]
Expand Down
24 changes: 15 additions & 9 deletions src/increase/types/entity_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,24 +132,30 @@ class CorporationAddress(TypedDict, total=False):


class CorporationBeneficialOwnerIndividualAddress(TypedDict, total=False):
city: Required[str]
"""The city of the address."""
country: Required[str]
"""The two-letter ISO 3166-1 alpha-2 code for the country of the address."""

line1: Required[str]
"""The first line of the address. This is usually the street number and street."""

state: Required[str]
"""
The two-letter United States Postal Service (USPS) abbreviation for the state of
the address.
"""
city: str
"""The city, district, town, or village of the address.

zip: Required[str]
"""The ZIP code of the address."""
Required in certain countries.
"""

line2: str
"""The second line of the address. This might be the floor or room number."""

state: str
"""
The two-letter United States Postal Service (USPS) abbreviation for the US
state, province, or region of the address. Required in certain countries.
"""

zip: str
"""The ZIP or postal code of the address. Required in certain countries."""


class CorporationBeneficialOwnerIndividualIdentificationDriversLicense(TypedDict, total=False):
expiration_date: Required[Annotated[Union[str, date], PropertyInfo(format="iso8601")]]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,26 @@ class EntityUpdateBeneficialOwnerAddressParams(TypedDict, total=False):


class Address(TypedDict, total=False):
city: Required[str]
"""The city of the address."""
country: Required[str]
"""The two-letter ISO 3166-1 alpha-2 code for the country of the address."""

line1: Required[str]
"""The first line of the address. This is usually the street number and street."""

state: Required[str]
"""
The two-letter United States Postal Service (USPS) abbreviation for the state of
the address.
"""
city: str
"""The city, district, town, or village of the address.

zip: Required[str]
"""The ZIP code of the address."""
Required in certain countries.
"""

line2: str
"""The second line of the address. This might be the floor or room number."""

state: str
"""
The two-letter United States Postal Service (USPS) abbreviation for the US
state, province, or region of the address. Required in certain countries.
"""

zip: str
"""The ZIP or postal code of the address. Required in certain countries."""
Loading