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.275.0"
".": "0.276.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: 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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
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.275.0"
version = "0.276.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.275.0" # x-release-please-version
__version__ = "0.276.0" # x-release-please-version
6 changes: 4 additions & 2 deletions src/increase/resources/ach_transfers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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.

Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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.

Expand Down
3 changes: 2 additions & 1 deletion src/increase/types/ach_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion src/increase/types/ach_transfer_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down