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.457.0"
".": "0.458.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: 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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
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.457.0"
version = "0.458.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.457.0" # x-release-please-version
__version__ = "0.458.0" # x-release-please-version
6 changes: 1 addition & 5 deletions src/increase/types/check_deposit.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 1 addition & 7 deletions src/increase/types/inbound_check_deposit.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down