From 59035d314852a20b0ae9f136e66c7bd312ad3d1f Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 14 Jan 2025 00:41:46 +0000 Subject: [PATCH 1/4] codegen metadata --- .stats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index 98a2bad7..52d16370 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 201 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-6cc3e4ac223759041f330390923fab4098db3de30668152712a863fa81b40849.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-700b81dedcec3b98097b9fa7c1ab7ea971cc812c95d7507db3a235a625660394.yml From 9131e2dfcbda437331aabc5f43a997efa6d8c705 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 14 Jan 2025 11:47:14 +0000 Subject: [PATCH 2/4] chore(internal): update deps (#908) --- mypy.ini | 2 +- requirements-dev.lock | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mypy.ini b/mypy.ini index 42fb84c2..4691e79f 100644 --- a/mypy.ini +++ b/mypy.ini @@ -41,7 +41,7 @@ cache_fine_grained = True # ``` # Changing this codegen to make mypy happy would increase complexity # and would not be worth it. -disable_error_code = func-returns-value +disable_error_code = func-returns-value,overload-cannot-match # https://github.com/python/mypy/issues/12162 [mypy.overrides] diff --git a/requirements-dev.lock b/requirements-dev.lock index 9a6b7d89..4b5cb16b 100644 --- a/requirements-dev.lock +++ b/requirements-dev.lock @@ -48,7 +48,7 @@ markdown-it-py==3.0.0 # via rich mdurl==0.1.2 # via markdown-it-py -mypy==1.13.0 +mypy==1.14.1 mypy-extensions==1.0.0 # via mypy nest-asyncio==1.6.0 @@ -68,7 +68,7 @@ pydantic-core==2.27.1 # via pydantic pygments==2.18.0 # via rich -pyright==1.1.390 +pyright==1.1.391 pytest==8.3.3 # via pytest-asyncio pytest-asyncio==0.24.0 From 5eec787e3b83883554179aa5e038ca8e857bb9d3 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 14 Jan 2025 19:54:03 +0000 Subject: [PATCH 3/4] feat(api): api update (#910) --- .stats.yml | 2 +- src/increase/types/inbound_ach_transfer.py | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index 52d16370..bc10f2d3 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 201 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-700b81dedcec3b98097b9fa7c1ab7ea971cc812c95d7507db3a235a625660394.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-5ea7ed56030d4b00596b425a2efee0459583f4e0e283daad7ebb63a0cd76d29f.yml diff --git a/src/increase/types/inbound_ach_transfer.py b/src/increase/types/inbound_ach_transfer.py index 07a4a70e..c7238fa2 100644 --- a/src/increase/types/inbound_ach_transfer.py +++ b/src/increase/types/inbound_ach_transfer.py @@ -521,7 +521,12 @@ class InboundACHTransfer(BaseModel): """ trace_number: str - """The trace number of the transfer.""" + """A 15 digit number set by the sending bank and transmitted to the receiving bank. + + Along with the amount, date, and originating routing number, this can be used to + identify the ACH transfer. ACH trace numbers are not unique, but are + [used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns). + """ transfer_return: Optional[TransferReturn] = None """If your transfer is returned, this will contain details of the return.""" From 6002db21ce80b85a0d763825c528eee4b865b630 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 14 Jan 2025 19:54:30 +0000 Subject: [PATCH 4/4] release: 0.177.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ pyproject.toml | 2 +- src/increase/_version.py | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 35eef82a..a7a2a76c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.176.2" + ".": "0.177.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 2146dd3a..cd601bff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.177.0 (2025-01-14) + +Full Changelog: [v0.176.2...v0.177.0](https://github.com/Increase/increase-python/compare/v0.176.2...v0.177.0) + +### Features + +* **api:** api update ([#910](https://github.com/Increase/increase-python/issues/910)) ([5eec787](https://github.com/Increase/increase-python/commit/5eec787e3b83883554179aa5e038ca8e857bb9d3)) + + +### Chores + +* **internal:** update deps ([#908](https://github.com/Increase/increase-python/issues/908)) ([9131e2d](https://github.com/Increase/increase-python/commit/9131e2dfcbda437331aabc5f43a997efa6d8c705)) + ## 0.176.2 (2025-01-10) Full Changelog: [v0.176.1...v0.176.2](https://github.com/Increase/increase-python/compare/v0.176.1...v0.176.2) diff --git a/pyproject.toml b/pyproject.toml index 816bbebe..dba00c82 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.176.2" +version = "0.177.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 7013a656..8122fa96 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.176.2" # x-release-please-version +__version__ = "0.177.0" # x-release-please-version