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.432.0"
".": "0.433.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: 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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
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.432.0"
version = "0.433.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.432.0" # x-release-please-version
__version__ = "0.433.0" # x-release-please-version
8 changes: 8 additions & 0 deletions src/increase/resources/beneficial_owners.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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
Expand All @@ -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,
),
Expand Down Expand Up @@ -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,
Expand All @@ -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
Expand All @@ -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,
),
Expand Down
3 changes: 3 additions & 0 deletions src/increase/types/beneficial_owner_update_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 2 additions & 0 deletions tests/api_resources/test_beneficial_owners.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"])

Expand Down Expand Up @@ -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"])

Expand Down