From 89a4c4a2ab973c3869b1999d6d6a9c45a90849b1 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 6 Oct 2025 18:15:29 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 4 ++-- src/increase/types/check_deposit.py | 12 +++++++++--- src/increase/types/transaction.py | 10 ++++++++-- 3 files changed, 19 insertions(+), 7 deletions(-) diff --git a/.stats.yml b/.stats.yml index 6d6e5b784..0ff8edbc9 100644 --- a/.stats.yml +++ b/.stats.yml @@ -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 diff --git a/src/increase/types/check_deposit.py b/src/increase/types/check_deposit.py index bbb0e0744..9d2afbee7 100644 --- a/src/increase/types/check_deposit.py +++ b/src/increase/types/check_deposit.py @@ -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. @@ -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. @@ -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. """ diff --git a/src/increase/types/transaction.py b/src/increase/types/transaction.py index c19e0526f..95832172c 100644 --- a/src/increase/types/transaction.py +++ b/src/increase/types/transaction.py @@ -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. @@ -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. From 50d0e321f1c2beab17288461e6538d271b732633 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 6 Oct 2025 18:15:52 +0000 Subject: [PATCH 2/2] release: 0.352.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- src/increase/_version.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6db6d4bca..2ba9753d1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.351.0" + ".": "0.352.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 15841e623..8632f72f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/pyproject.toml b/pyproject.toml index 551bd05c7..b79c6cd7e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/src/increase/_version.py b/src/increase/_version.py index f5da4a01b..efca13d00 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.351.0" # x-release-please-version +__version__ = "0.352.0" # x-release-please-version