diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 93ed6faef..c1ebe3f9a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.375.0" + ".": "0.376.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 1c0a751d8..8014bc2c8 100644 --- a/.stats.yml +++ b/.stats.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index ba5501ed6..d8d948494 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/pyproject.toml b/pyproject.toml index af15c12b5..66ebb63a4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/src/increase/_version.py b/src/increase/_version.py index 0f09e5589..0a5e98835 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.375.0" # x-release-please-version +__version__ = "0.376.0" # x-release-please-version diff --git a/src/increase/resources/check_transfers.py b/src/increase/resources/check_transfers.py index 9817c471b..dfc142b52 100644 --- a/src/increase/resources/check_transfers.py +++ b/src/increase/resources/check_transfers.py @@ -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. @@ -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. diff --git a/src/increase/types/check_transfer.py b/src/increase/types/check_transfer.py index e42b1e670..2c3866bde 100644 --- a/src/increase/types/check_transfer.py +++ b/src/increase/types/check_transfer.py @@ -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. diff --git a/src/increase/types/check_transfer_create_params.py b/src/increase/types/check_transfer_create_params.py index 185167d52..6c33ecd97 100644 --- a/src/increase/types/check_transfer_create_params.py +++ b/src/increase/types/check_transfer_create_params.py @@ -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.