diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7fba3a9a..d2127382 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.457.0" + ".": "0.458.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index e0765524..c8871b7f 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 236 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-a16a9b919e2ea18d09e373a7ecb0f10d6bb6a34c3c03397b2c7582a0b372c15e.yml -openapi_spec_hash: 7d45d8bb661f1f3e6000c9e0b683fa4e +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-6d31504be6985a7ded14abd0da36f4272e585f43332b4b844a6950c98ddcd525.yml +openapi_spec_hash: f1a49121780ec8b6678b864ac9b1deca config_hash: 0997ade8b52ec04e82d5b0c3b61bb51e diff --git a/CHANGELOG.md b/CHANGELOG.md index 54befa99..535c3ed5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.458.0 (2026-03-24) + +Full Changelog: [v0.457.0...v0.458.0](https://github.com/Increase/increase-python/compare/v0.457.0...v0.458.0) + +### Features + +* **api:** api update ([68dad7b](https://github.com/Increase/increase-python/commit/68dad7b717f28854d05c88ea8d4756ff59ac3954)) + ## 0.457.0 (2026-03-24) Full Changelog: [v0.456.0...v0.457.0](https://github.com/Increase/increase-python/compare/v0.456.0...v0.457.0) diff --git a/pyproject.toml b/pyproject.toml index c828efcb..1edc67bd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.457.0" +version = "0.458.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 c12164cb..8d41de55 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.457.0" # x-release-please-version +__version__ = "0.458.0" # x-release-please-version diff --git a/src/increase/types/check_deposit.py b/src/increase/types/check_deposit.py index 5cbddc22..1eebfc28 100644 --- a/src/increase/types/check_deposit.py +++ b/src/increase/types/check_deposit.py @@ -86,13 +86,9 @@ class DepositAdjustment(BaseModel): amount: int """The amount of the adjustment.""" - reason: Literal["late_return", "wrong_payee_credit", "adjusted_amount", "non_conforming_item", "paid"] + reason: Literal["adjusted_amount", "non_conforming_item", "paid"] """The reason for the adjustment. - - `late_return` - The return was initiated too late and the receiving - institution has responded with a Late Return Claim. - - `wrong_payee_credit` - The check was deposited to the wrong payee and the - depositing institution has reimbursed the funds with a Wrong Payee Credit. - `adjusted_amount` - The check was deposited with a different amount than what was written on the check. - `non_conforming_item` - The recipient was not able to process the check. This diff --git a/src/increase/types/inbound_check_deposit.py b/src/increase/types/inbound_check_deposit.py index d7751592..44f9e55f 100644 --- a/src/increase/types/inbound_check_deposit.py +++ b/src/increase/types/inbound_check_deposit.py @@ -16,19 +16,13 @@ class Adjustment(BaseModel): amount: int """The amount of the adjustment.""" - reason: Literal["late_return", "wrong_payee_credit", "adjusted_amount", "non_conforming_item", "paid"] + reason: Literal["late_return", "wrong_payee_credit"] """The reason for the adjustment. - `late_return` - The return was initiated too late and the receiving institution has responded with a Late Return Claim. - `wrong_payee_credit` - The check was deposited to the wrong payee and the depositing institution has reimbursed the funds with a Wrong Payee Credit. - - `adjusted_amount` - The check was deposited with a different amount than what - was written on the check. - - `non_conforming_item` - The recipient was not able to process the check. This - usually happens for e.g., low quality images. - - `paid` - The check has already been deposited elsewhere and so this is a - duplicate. """ transaction_id: str