From 3ba1d9e3eb75d07473e20e94406d16f7103eb72c Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 19 Nov 2025 01:43:34 +0000 Subject: [PATCH 1/3] codegen metadata --- .stats.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index 973bfab07..bc38a1bc0 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 229 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-fadbd087449a336a91be2645c64e2fe1e81e0f52d9810ab5f830af7e1c727138.yml -openapi_spec_hash: 7e44d91e713fb44925a3565b882248d7 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-fa7f1c130db072a3fd9444e369ddd66b343a2eea05410569cd703e59cf510ecc.yml +openapi_spec_hash: ae67858752ea4652bc009a4b617c5dcd config_hash: ca1425272e17fa23d4466d33492334fa From 7d6df99f55702f887888e63c2e7aba090f56a51a Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 23:18:04 +0000 Subject: [PATCH 2/3] feat(api): api update --- .stats.yml | 4 ++-- src/increase/types/check_transfer_create_params.py | 6 ++++++ tests/api_resources/test_check_transfers.py | 2 ++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index bc38a1bc0..d979adc25 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 229 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-fa7f1c130db072a3fd9444e369ddd66b343a2eea05410569cd703e59cf510ecc.yml -openapi_spec_hash: ae67858752ea4652bc009a4b617c5dcd +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-3ef3456ba39c18b7b1228fd167c74b4d344057e133ef4abd3e130471b9e19ed3.yml +openapi_spec_hash: a55adf2eae6cbe811937dd7b0691939e config_hash: ca1425272e17fa23d4466d33492334fa diff --git a/src/increase/types/check_transfer_create_params.py b/src/increase/types/check_transfer_create_params.py index 8a720d2b9..a5c16e971 100644 --- a/src/increase/types/check_transfer_create_params.py +++ b/src/increase/types/check_transfer_create_params.py @@ -103,6 +103,12 @@ class PhysicalCheckMailingAddress(TypedDict, total=False): line2: str """The second line of the address component of the check's destination address.""" + name: str + """The name component of the check's destination address. + + Defaults to the provided `recipient_name` parameter if `name` is not provided. + """ + class PhysicalCheckPayer(TypedDict, total=False): contents: Required[str] diff --git a/tests/api_resources/test_check_transfers.py b/tests/api_resources/test_check_transfers.py index d91986089..d697cc169 100644 --- a/tests/api_resources/test_check_transfers.py +++ b/tests/api_resources/test_check_transfers.py @@ -47,6 +47,7 @@ def test_method_create_with_all_params(self, client: Increase) -> None: "postal_code": "10045", "state": "NY", "line2": "x", + "name": "Ian Crease", }, "memo": "Check payment", "recipient_name": "Ian Crease", @@ -334,6 +335,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncIncrease) "postal_code": "10045", "state": "NY", "line2": "x", + "name": "Ian Crease", }, "memo": "Check payment", "recipient_name": "Ian Crease", From 5ba580bba3ddf6a3f4098c37bcdfbcab88ffab7a Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 23:18:25 +0000 Subject: [PATCH 3/3] release: 0.397.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- src/increase/_version.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 842d1edb2..2f62033bd 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.396.0" + ".": "0.397.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 0aa105c5c..dc77253a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.397.0 (2025-11-20) + +Full Changelog: [v0.396.0...v0.397.0](https://github.com/Increase/increase-python/compare/v0.396.0...v0.397.0) + +### Features + +* **api:** api update ([7d6df99](https://github.com/Increase/increase-python/commit/7d6df99f55702f887888e63c2e7aba090f56a51a)) + ## 0.396.0 (2025-11-18) Full Changelog: [v0.395.0...v0.396.0](https://github.com/Increase/increase-python/compare/v0.395.0...v0.396.0) diff --git a/pyproject.toml b/pyproject.toml index 90459df1b..2f210b00f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.396.0" +version = "0.397.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 857ee8cbe..6ebab217e 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.396.0" # x-release-please-version +__version__ = "0.397.0" # x-release-please-version