diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e25de8c4..cd675b32 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.392.0" + ".": "0.393.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 2cc58976..1e5f14c3 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 229 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-a0eb4b9ef698e80be2fc9e995d6096b96de35e4985c8586e0773fa55a6b50943.yml -openapi_spec_hash: a36c0bee01bf3af40ebcd7075308f170 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-af1c3f6f39bad6db3878ece15395915f818d9310c5535947520e935e82e8bac3.yml +openapi_spec_hash: 3291dcc6833f09527c442c898c8d11f0 config_hash: ca1425272e17fa23d4466d33492334fa diff --git a/CHANGELOG.md b/CHANGELOG.md index ca9168fe..7dbcd7f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.393.0 (2025-11-13) + +Full Changelog: [v0.392.0...v0.393.0](https://github.com/Increase/increase-python/compare/v0.392.0...v0.393.0) + +### Features + +* **api:** api update ([0956014](https://github.com/Increase/increase-python/commit/0956014631a0005b25982421609f4b0b312d3b4d)) + ## 0.392.0 (2025-11-12) Full Changelog: [v0.391.1...v0.392.0](https://github.com/Increase/increase-python/compare/v0.391.1...v0.392.0) diff --git a/pyproject.toml b/pyproject.toml index 645de36b..d7e5811e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.392.0" +version = "0.393.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 cc789938..d34866b3 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.392.0" # x-release-please-version +__version__ = "0.393.0" # x-release-please-version diff --git a/src/increase/types/inbound_check_deposit.py b/src/increase/types/inbound_check_deposit.py index 7a21b836..f34e043b 100644 --- a/src/increase/types/inbound_check_deposit.py +++ b/src/increase/types/inbound_check_deposit.py @@ -16,7 +16,7 @@ class Adjustment(BaseModel): amount: int """The amount of the adjustment.""" - reason: Literal["late_return", "wrong_payee_credit", "adjusted_amount", "non_conforming_item"] + reason: Literal["late_return", "wrong_payee_credit", "adjusted_amount", "non_conforming_item", "paid"] """The reason for the adjustment. - `late_return` - The return was initiated too late and the receiving @@ -27,6 +27,8 @@ class Adjustment(BaseModel): 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 diff --git a/src/increase/types/transaction.py b/src/increase/types/transaction.py index 59a58941..27672f96 100644 --- a/src/increase/types/transaction.py +++ b/src/increase/types/transaction.py @@ -2818,7 +2818,7 @@ class SourceInboundCheckAdjustment(BaseModel): amount: int """The amount of the check adjustment.""" - reason: Literal["late_return", "wrong_payee_credit", "adjusted_amount", "non_conforming_item"] + reason: Literal["late_return", "wrong_payee_credit", "adjusted_amount", "non_conforming_item", "paid"] """The reason for the adjustment. - `late_return` - The return was initiated too late and the receiving @@ -2829,6 +2829,8 @@ class SourceInboundCheckAdjustment(BaseModel): 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. """ if TYPE_CHECKING: