From 323901e4fcc78a9333f1c2250c38eabb275ba194 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 4 Aug 2025 16:49:34 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 4 ++-- src/increase/resources/ach_transfers.py | 6 ++++-- src/increase/types/ach_transfer.py | 3 ++- src/increase/types/ach_transfer_create_params.py | 3 ++- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.stats.yml b/.stats.yml index 00b0b5aa0..7168a74e1 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 202 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-5afe14a5606cebef2ccc6c4781d566b43509e01513e8e02e41adbdeaf3275f48.yml -openapi_spec_hash: 56857e37c0c6131096bf519d91ef76d2 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-aceb2cce1f9a46b1059a04de979b4c40210190639a4c264944b4402042168804.yml +openapi_spec_hash: 5b4ea7615676e742cea44d107b8038ca config_hash: a185e9a72778cc4658ea73fb3a7f1354 diff --git a/src/increase/resources/ach_transfers.py b/src/increase/resources/ach_transfers.py index d6fa46286..b8ff47baa 100644 --- a/src/increase/resources/ach_transfers.py +++ b/src/increase/resources/ach_transfers.py @@ -58,7 +58,7 @@ def create( company_name: str | NotGiven = NOT_GIVEN, destination_account_holder: Literal["business", "individual", "unknown"] | NotGiven = NOT_GIVEN, external_account_id: str | NotGiven = NOT_GIVEN, - funding: Literal["checking", "savings"] | NotGiven = NOT_GIVEN, + funding: Literal["checking", "savings", "general_ledger"] | NotGiven = NOT_GIVEN, individual_id: str | NotGiven = NOT_GIVEN, individual_name: str | NotGiven = NOT_GIVEN, preferred_effective_date: ach_transfer_create_params.PreferredEffectiveDate | NotGiven = NOT_GIVEN, @@ -128,6 +128,7 @@ def create( - `checking` - A checking account. - `savings` - A savings account. + - `general_ledger` - A bank's general ledger. Uncommon. individual_id: Your identifier for the transfer recipient. @@ -424,7 +425,7 @@ async def create( company_name: str | NotGiven = NOT_GIVEN, destination_account_holder: Literal["business", "individual", "unknown"] | NotGiven = NOT_GIVEN, external_account_id: str | NotGiven = NOT_GIVEN, - funding: Literal["checking", "savings"] | NotGiven = NOT_GIVEN, + funding: Literal["checking", "savings", "general_ledger"] | NotGiven = NOT_GIVEN, individual_id: str | NotGiven = NOT_GIVEN, individual_name: str | NotGiven = NOT_GIVEN, preferred_effective_date: ach_transfer_create_params.PreferredEffectiveDate | NotGiven = NOT_GIVEN, @@ -494,6 +495,7 @@ async def create( - `checking` - A checking account. - `savings` - A savings account. + - `general_ledger` - A bank's general ledger. Uncommon. individual_id: Your identifier for the transfer recipient. diff --git a/src/increase/types/ach_transfer.py b/src/increase/types/ach_transfer.py index 63075c23a..b6ed76965 100644 --- a/src/increase/types/ach_transfer.py +++ b/src/increase/types/ach_transfer.py @@ -699,11 +699,12 @@ class ACHTransfer(BaseModel): external_account_id: Optional[str] = None """The identifier of the External Account the transfer was made to, if any.""" - funding: Literal["checking", "savings"] + funding: Literal["checking", "savings", "general_ledger"] """The type of the account to which the transfer will be sent. - `checking` - A checking account. - `savings` - A savings account. + - `general_ledger` - A bank's general ledger. Uncommon. """ idempotency_key: Optional[str] = None diff --git a/src/increase/types/ach_transfer_create_params.py b/src/increase/types/ach_transfer_create_params.py index c31dc8569..aabf372cd 100644 --- a/src/increase/types/ach_transfer_create_params.py +++ b/src/increase/types/ach_transfer_create_params.py @@ -92,11 +92,12 @@ class ACHTransferCreateParams(TypedDict, total=False): must be absent. """ - funding: Literal["checking", "savings"] + funding: Literal["checking", "savings", "general_ledger"] """The type of the account to which the transfer will be sent. - `checking` - A checking account. - `savings` - A savings account. + - `general_ledger` - A bank's general ledger. Uncommon. """ individual_id: str From b0d0eb954b891d2bbe44b3ee50ff62cc211e9035 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 4 Aug 2025 16:52:00 +0000 Subject: [PATCH 2/2] release: 0.276.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 dfd2bb98a..bac125e6e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.275.0" + ".": "0.276.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index abcb505b5..9f9979283 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.276.0 (2025-08-04) + +Full Changelog: [v0.275.0...v0.276.0](https://github.com/Increase/increase-python/compare/v0.275.0...v0.276.0) + +### Features + +* **api:** api update ([323901e](https://github.com/Increase/increase-python/commit/323901e4fcc78a9333f1c2250c38eabb275ba194)) + ## 0.275.0 (2025-08-01) Full Changelog: [v0.274.0...v0.275.0](https://github.com/Increase/increase-python/compare/v0.274.0...v0.275.0) diff --git a/pyproject.toml b/pyproject.toml index af1e7dca8..3de748765 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.275.0" +version = "0.276.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 9a933941f..9c13b86dd 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.275.0" # x-release-please-version +__version__ = "0.276.0" # x-release-please-version