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.392.0"
".": "0.393.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: 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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
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.392.0"
version = "0.393.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.392.0" # x-release-please-version
__version__ = "0.393.0" # x-release-please-version
4 changes: 3 additions & 1 deletion src/increase/types/inbound_check_deposit.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 3 additions & 1 deletion src/increase/types/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down