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.351.0"
".": "0.352.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: 220
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-fcc4e952b005ab1fd26ae67fe0cac46a57699299c92e00680d4d0f6be51d7936.yml
openapi_spec_hash: f1a7326721f814625c7d5484956afded
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-2b82894385cf8290541770072636402861719818ea52315b785c281d8cc128eb.yml
openapi_spec_hash: 2493d025c6ea2a47445a32a22d54d711
config_hash: f0b80170c2ea09811aeae3f1e94bc422
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.352.0 (2025-10-06)

Full Changelog: [v0.351.0...v0.352.0](https://github.com/Increase/increase-python/compare/v0.351.0...v0.352.0)

### Features

* **api:** api update ([89a4c4a](https://github.com/Increase/increase-python/commit/89a4c4a2ab973c3869b1999d6d6a9c45a90849b1))

## 0.351.0 (2025-10-06)

Full Changelog: [v0.350.1...v0.351.0](https://github.com/Increase/increase-python/compare/v0.350.1...v0.351.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.351.0"
version = "0.352.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.351.0" # x-release-please-version
__version__ = "0.352.0" # x-release-please-version
12 changes: 9 additions & 3 deletions src/increase/types/check_deposit.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@

class DepositAcceptance(BaseModel):
account_number: str
"""The account number printed on the check."""
"""The account number printed on the check.

This is an account at the bank that issued the check.
"""

amount: int
"""The amount to be deposited in the minor unit of the transaction's currency.
Expand Down Expand Up @@ -49,7 +52,10 @@ class DepositAcceptance(BaseModel):
"""

routing_number: str
"""The routing number printed on the check."""
"""The routing number printed on the check.

This is a routing number for the bank that issued the check.
"""

serial_number: Optional[str] = None
"""The check serial number, if present, for consumer checks.
Expand Down Expand Up @@ -328,7 +334,7 @@ class CheckDeposit(BaseModel):

deposit_acceptance: Optional[DepositAcceptance] = None
"""
If your deposit is successfully parsed and accepted by Increase, this will
Once your deposit is successfully parsed and accepted by Increase, this will
contain details of the parsed check.
"""

Expand Down
10 changes: 8 additions & 2 deletions src/increase/types/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -2269,7 +2269,10 @@ class SourceCashbackPayment(BaseModel):

class SourceCheckDepositAcceptance(BaseModel):
account_number: str
"""The account number printed on the check."""
"""The account number printed on the check.

This is an account at the bank that issued the check.
"""

amount: int
"""The amount to be deposited in the minor unit of the transaction's currency.
Expand Down Expand Up @@ -2300,7 +2303,10 @@ class SourceCheckDepositAcceptance(BaseModel):
"""

routing_number: str
"""The routing number printed on the check."""
"""The routing number printed on the check.

This is a routing number for the bank that issued the check.
"""

serial_number: Optional[str] = None
"""The check serial number, if present, for consumer checks.
Expand Down