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.286.0"
".": "0.287.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: 214
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-a7861b46606a5a2d849c4403583805c1074983cffaf7acfe0a4d7bafa38c5efd.yml
openapi_spec_hash: a1cad356ebe1b02a67dbafbde7d7f1d4
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-70837ed2f8d4ade9021fc0f50bf3cd77cdf05f308c4ed75b2b4dcc42f1ec2378.yml
openapi_spec_hash: 09cf1c77dce2927cb41426a287a15437
config_hash: b0b366d8c705ea0efe62093bae953e5a
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.287.0 (2025-08-15)

Full Changelog: [v0.286.0...v0.287.0](https://github.com/Increase/increase-python/compare/v0.286.0...v0.287.0)

### Features

* **api:** api update ([18b043a](https://github.com/Increase/increase-python/commit/18b043a54ccc017483b6ed758c65c793814f8481))

## 0.286.0 (2025-08-14)

Full Changelog: [v0.285.0...v0.286.0](https://github.com/Increase/increase-python/compare/v0.285.0...v0.286.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.286.0"
version = "0.287.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.286.0" # x-release-please-version
__version__ = "0.287.0" # x-release-please-version
12 changes: 8 additions & 4 deletions src/increase/resources/external_accounts.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def create(
description: str,
routing_number: str,
account_holder: Literal["business", "individual", "unknown"] | NotGiven = NOT_GIVEN,
funding: Literal["checking", "savings", "other"] | NotGiven = NOT_GIVEN,
funding: Literal["checking", "savings", "general_ledger", "other"] | NotGiven = NOT_GIVEN,
# 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 Down Expand Up @@ -81,6 +81,7 @@ def create(

- `checking` - A checking account.
- `savings` - A savings account.
- `general_ledger` - A general ledger account.
- `other` - A different type of account.

extra_headers: Send extra headers
Expand Down Expand Up @@ -158,7 +159,7 @@ def update(
*,
account_holder: Literal["business", "individual"] | NotGiven = NOT_GIVEN,
description: str | NotGiven = NOT_GIVEN,
funding: Literal["checking", "savings", "other"] | NotGiven = NOT_GIVEN,
funding: Literal["checking", "savings", "general_ledger", "other"] | NotGiven = NOT_GIVEN,
status: Literal["active", "archived"] | NotGiven = NOT_GIVEN,
# 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.
Expand All @@ -185,6 +186,7 @@ def update(

- `checking` - A checking account.
- `savings` - A savings account.
- `general_ledger` - A general ledger account.
- `other` - A different type of account.

status: The status of the External Account.
Expand Down Expand Up @@ -317,7 +319,7 @@ async def create(
description: str,
routing_number: str,
account_holder: Literal["business", "individual", "unknown"] | NotGiven = NOT_GIVEN,
funding: Literal["checking", "savings", "other"] | NotGiven = NOT_GIVEN,
funding: Literal["checking", "savings", "general_ledger", "other"] | NotGiven = NOT_GIVEN,
# 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 Down Expand Up @@ -347,6 +349,7 @@ async def create(

- `checking` - A checking account.
- `savings` - A savings account.
- `general_ledger` - A general ledger account.
- `other` - A different type of account.

extra_headers: Send extra headers
Expand Down Expand Up @@ -424,7 +427,7 @@ async def update(
*,
account_holder: Literal["business", "individual"] | NotGiven = NOT_GIVEN,
description: str | NotGiven = NOT_GIVEN,
funding: Literal["checking", "savings", "other"] | NotGiven = NOT_GIVEN,
funding: Literal["checking", "savings", "general_ledger", "other"] | NotGiven = NOT_GIVEN,
status: Literal["active", "archived"] | NotGiven = NOT_GIVEN,
# 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.
Expand All @@ -451,6 +454,7 @@ async def update(

- `checking` - A checking account.
- `savings` - A savings account.
- `general_ledger` - A general ledger account.
- `other` - A different type of account.

status: The status of the External Account.
Expand Down
3 changes: 2 additions & 1 deletion src/increase/types/external_account.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,12 @@ class ExternalAccount(BaseModel):
description: str
"""The External Account's description for display purposes."""

funding: Literal["checking", "savings", "other"]
funding: Literal["checking", "savings", "general_ledger", "other"]
"""The type of the account to which the transfer will be sent.

- `checking` - A checking account.
- `savings` - A savings account.
- `general_ledger` - A general ledger account.
- `other` - A different type of account.
"""

Expand Down
3 changes: 2 additions & 1 deletion src/increase/types/external_account_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ class ExternalAccountCreateParams(TypedDict, total=False):
- `unknown` - It's unknown what kind of entity owns the External Account.
"""

funding: Literal["checking", "savings", "other"]
funding: Literal["checking", "savings", "general_ledger", "other"]
"""The type of the destination account. Defaults to `checking`.

- `checking` - A checking account.
- `savings` - A savings account.
- `general_ledger` - A general ledger account.
- `other` - A different type of account.
"""
3 changes: 2 additions & 1 deletion src/increase/types/external_account_update_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,12 @@ class ExternalAccountUpdateParams(TypedDict, total=False):
description: str
"""The description you choose to give the external account."""

funding: Literal["checking", "savings", "other"]
funding: Literal["checking", "savings", "general_ledger", "other"]
"""The funding type of the External Account.

- `checking` - A checking account.
- `savings` - A savings account.
- `general_ledger` - A general ledger account.
- `other` - A different type of account.
"""

Expand Down