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.375.0"
".": "0.376.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: 228
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-29da995f8b04baed0eb2b6b038bc14f3165a3e1eae15b7a1136cce323d132bfd.yml
openapi_spec_hash: ff369b84b7477f46c3f3e3edeecaf176
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-3d5a35f67916cc1c9e9e4df38edbf72b926effa0faf60ea5cb7047a4a2d7f3c7.yml
openapi_spec_hash: 33c55e463f9bf747f502bdb38d5e2622
config_hash: eb2035151c7b49c2f12caf55469b8f9a
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.376.0 (2025-10-31)

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

### Features

* **api:** api update ([8b13978](https://github.com/Increase/increase-python/commit/8b13978f29afe88a37bd32bb3a81673671a09c18))

## 0.375.0 (2025-10-30)

Full Changelog: [v0.374.0...v0.375.0](https://github.com/Increase/increase-python/compare/v0.374.0...v0.375.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.375.0"
version = "0.376.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.375.0" # x-release-please-version
__version__ = "0.376.0" # x-release-please-version
14 changes: 8 additions & 6 deletions src/increase/resources/check_transfers.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,12 @@ def create(
source_account_number_id: The identifier of the Account Number from which to send the transfer and print
on the check.

balance_check: How the account's available balance should be checked. Please contact
[support@increase.com](mailto:support@increase.com) to enable this parameter.
balance_check: How the account's available balance should be checked. If omitted, the default
behavior is `balance_check: full`.

- `full` - The available balance of the account must be at least the amount of
the check, and a Pending Transaction will be created for the full amount.
the check, and a Pending Transaction will be created for the full amount. This
is the default behavior if `balance_check` is omitted.
- `none` - No balance check will performed when the check transfer is initiated.
A zero-dollar Pending Transaction will be created. The balance will still be
checked when the Inbound Check Deposit is created.
Expand Down Expand Up @@ -432,11 +433,12 @@ async def create(
source_account_number_id: The identifier of the Account Number from which to send the transfer and print
on the check.

balance_check: How the account's available balance should be checked. Please contact
[support@increase.com](mailto:support@increase.com) to enable this parameter.
balance_check: How the account's available balance should be checked. If omitted, the default
behavior is `balance_check: full`.

- `full` - The available balance of the account must be at least the amount of
the check, and a Pending Transaction will be created for the full amount.
the check, and a Pending Transaction will be created for the full amount. This
is the default behavior if `balance_check` is omitted.
- `none` - No balance check will performed when the check transfer is initiated.
A zero-dollar Pending Transaction will be created. The balance will still be
checked when the Inbound Check Deposit is created.
Expand Down
3 changes: 2 additions & 1 deletion src/increase/types/check_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,8 @@ class CheckTransfer(BaseModel):
"""How the account's available balance should be checked.

- `full` - The available balance of the account must be at least the amount of
the check, and a Pending Transaction will be created for the full amount.
the check, and a Pending Transaction will be created for the full amount. This
is the default behavior if `balance_check` is omitted.
- `none` - No balance check will performed when the check transfer is initiated.
A zero-dollar Pending Transaction will be created. The balance will still be
checked when the Inbound Check Deposit is created.
Expand Down
6 changes: 3 additions & 3 deletions src/increase/types/check_transfer_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ class CheckTransferCreateParams(TypedDict, total=False):
balance_check: Literal["full", "none"]
"""How the account's available balance should be checked.

Please contact [support@increase.com](mailto:support@increase.com) to enable
this parameter.
If omitted, the default behavior is `balance_check: full`.

- `full` - The available balance of the account must be at least the amount of
the check, and a Pending Transaction will be created for the full amount.
the check, and a Pending Transaction will be created for the full amount. This
is the default behavior if `balance_check` is omitted.
- `none` - No balance check will performed when the check transfer is initiated.
A zero-dollar Pending Transaction will be created. The balance will still be
checked when the Inbound Check Deposit is created.
Expand Down