diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7478ed0a..1fc30e85 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.432.0" + ".": "0.433.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 47e153f6..84bf4fe9 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 237 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-aceacff825bf677100a4d4554b2b3dad7ba442bbe26bc7f18b4153c54c3624e8.yml -openapi_spec_hash: 7fa7a382bd4d1db423b5345a8535d23b +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-1a8ae6b4ff6276a68a103dca4c701c77d409afe3f08ef8435adb3527e1385ce7.yml +openapi_spec_hash: d56da3ae77306aec4c8530fba0dfe053 config_hash: 896b006f9647a513eda3b228cf17c199 diff --git a/CHANGELOG.md b/CHANGELOG.md index b6e97408..9bf34388 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.433.0 (2026-03-12) + +Full Changelog: [v0.432.0...v0.433.0](https://github.com/Increase/increase-python/compare/v0.432.0...v0.433.0) + +### Features + +* **api:** api update ([50b97c6](https://github.com/Increase/increase-python/commit/50b97c651ddec612fbc9697b6d9f944639cc0cf0)) + ## 0.432.0 (2026-03-11) Full Changelog: [v0.431.0...v0.432.0](https://github.com/Increase/increase-python/compare/v0.431.0...v0.432.0) diff --git a/pyproject.toml b/pyproject.toml index e30cede6..19062243 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.432.0" +version = "0.433.0" description = "The official Python library for the increase API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/increase/_version.py b/src/increase/_version.py index 17756814..ddf98129 100644 --- a/src/increase/_version.py +++ b/src/increase/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "increase" -__version__ = "0.432.0" # x-release-please-version +__version__ = "0.433.0" # x-release-please-version diff --git a/src/increase/resources/beneficial_owners.py b/src/increase/resources/beneficial_owners.py index 231fe297..b07ff2d3 100644 --- a/src/increase/resources/beneficial_owners.py +++ b/src/increase/resources/beneficial_owners.py @@ -86,6 +86,7 @@ def update( address: beneficial_owner_update_params.Address | Omit = omit, confirmed_no_us_tax_id: bool | Omit = omit, identification: beneficial_owner_update_params.Identification | Omit = omit, + name: str | Omit = omit, # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs. # The extra values given here take precedence over values defined on the client or passed to this method. extra_headers: Headers | None = None, @@ -110,6 +111,8 @@ def update( identification: A means of verifying the person's identity. + name: The individual's legal name. + extra_headers: Send extra headers extra_query: Add additional query parameters to the request @@ -131,6 +134,7 @@ def update( "address": address, "confirmed_no_us_tax_id": confirmed_no_us_tax_id, "identification": identification, + "name": name, }, beneficial_owner_update_params.BeneficialOwnerUpdateParams, ), @@ -269,6 +273,7 @@ async def update( address: beneficial_owner_update_params.Address | Omit = omit, confirmed_no_us_tax_id: bool | Omit = omit, identification: beneficial_owner_update_params.Identification | Omit = omit, + name: str | Omit = omit, # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs. # The extra values given here take precedence over values defined on the client or passed to this method. extra_headers: Headers | None = None, @@ -293,6 +298,8 @@ async def update( identification: A means of verifying the person's identity. + name: The individual's legal name. + extra_headers: Send extra headers extra_query: Add additional query parameters to the request @@ -314,6 +321,7 @@ async def update( "address": address, "confirmed_no_us_tax_id": confirmed_no_us_tax_id, "identification": identification, + "name": name, }, beneficial_owner_update_params.BeneficialOwnerUpdateParams, ), diff --git a/src/increase/types/beneficial_owner_update_params.py b/src/increase/types/beneficial_owner_update_params.py index 8fcdd594..5312d874 100644 --- a/src/increase/types/beneficial_owner_update_params.py +++ b/src/increase/types/beneficial_owner_update_params.py @@ -36,6 +36,9 @@ class BeneficialOwnerUpdateParams(TypedDict, total=False): identification: Identification """A means of verifying the person's identity.""" + name: str + """The individual's legal name.""" + class Address(TypedDict, total=False): """The individual's physical address. diff --git a/tests/api_resources/test_beneficial_owners.py b/tests/api_resources/test_beneficial_owners.py index 332b14f6..bc5d7ce5 100644 --- a/tests/api_resources/test_beneficial_owners.py +++ b/tests/api_resources/test_beneficial_owners.py @@ -101,6 +101,7 @@ def test_method_update_with_all_params(self, client: Increase) -> None: "file_id": "file_id", }, }, + name="x", ) assert_matches_type(EntityBeneficialOwner, beneficial_owner, path=["response"]) @@ -266,6 +267,7 @@ async def test_method_update_with_all_params(self, async_client: AsyncIncrease) "file_id": "file_id", }, }, + name="x", ) assert_matches_type(EntityBeneficialOwner, beneficial_owner, path=["response"])