From ec095c776adc6f9de78da1982f4faa090b47d10c Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 3 Nov 2025 16:12:20 +0000 Subject: [PATCH 1/3] chore(internal): grammar fix (it's -> its) --- src/increase/_utils/_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/increase/_utils/_utils.py b/src/increase/_utils/_utils.py index 50d59269a..eec7f4a1f 100644 --- a/src/increase/_utils/_utils.py +++ b/src/increase/_utils/_utils.py @@ -133,7 +133,7 @@ def is_given(obj: _T | NotGiven | Omit) -> TypeGuard[_T]: # Type safe methods for narrowing types with TypeVars. # The default narrowing for isinstance(obj, dict) is dict[unknown, unknown], # however this cause Pyright to rightfully report errors. As we know we don't -# care about the contained types we can safely use `object` in it's place. +# care about the contained types we can safely use `object` in its place. # # There are two separate functions defined, `is_*` and `is_*_t` for different use cases. # `is_*` is for when you're dealing with an unknown input From e7c4e57b6c1c7866ddfc4bf23b9ce14a1fc626ab Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 4 Nov 2025 15:38:18 +0000 Subject: [PATCH 2/3] feat(api): api update --- .stats.yml | 4 ++-- src/increase/types/wire_drawdown_request.py | 4 ++-- src/increase/types/wire_drawdown_request_list_params.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.stats.yml b/.stats.yml index fff512bc2..d73422845 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 228 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-e9e51b3c9b5c8d9e6e0267b62a12a00fedbce419b765192aa4e2470984192e1f.yml -openapi_spec_hash: 84bc91dd8b8a80edf447dddad15c23fc +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-776b1bee3036836b954fa0db1e6d0349a04f76799402089994a9147a05967c0e.yml +openapi_spec_hash: 185a637305e75b302860dce8d352f54f config_hash: eb2035151c7b49c2f12caf55469b8f9a diff --git a/src/increase/types/wire_drawdown_request.py b/src/increase/types/wire_drawdown_request.py index a10180ae3..c6114d64d 100644 --- a/src/increase/types/wire_drawdown_request.py +++ b/src/increase/types/wire_drawdown_request.py @@ -125,14 +125,14 @@ class WireDrawdownRequest(BaseModel): [idempotency](https://increase.com/documentation/idempotency-keys). """ - status: Literal["pending_submission", "pending_response", "fulfilled", "refused"] + status: Literal["pending_submission", "fulfilled", "pending_response", "refused"] """The lifecycle status of the drawdown request. - `pending_submission` - The drawdown request is queued to be submitted to Fedwire. + - `fulfilled` - The drawdown request has been fulfilled by the recipient. - `pending_response` - The drawdown request has been sent and the recipient should respond in some way. - - `fulfilled` - The drawdown request has been fulfilled by the recipient. - `refused` - The drawdown request has been refused by the recipient. """ diff --git a/src/increase/types/wire_drawdown_request_list_params.py b/src/increase/types/wire_drawdown_request_list_params.py index f462884c4..e14c2cf79 100644 --- a/src/increase/types/wire_drawdown_request_list_params.py +++ b/src/increase/types/wire_drawdown_request_list_params.py @@ -32,7 +32,7 @@ class WireDrawdownRequestListParams(TypedDict, total=False): _StatusReservedKeywords = TypedDict( "_StatusReservedKeywords", { - "in": List[Literal["pending_submission", "pending_response", "fulfilled", "refused"]], + "in": List[Literal["pending_submission", "fulfilled", "pending_response", "refused"]], }, total=False, ) From a72878470abf0c0f4408f430dcde47340feee7ab Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 4 Nov 2025 15:38:46 +0000 Subject: [PATCH 3/3] release: 0.380.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 c3ae3e4ab..18952c86a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.379.0" + ".": "0.380.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 19495654a..a2e0e883a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.380.0 (2025-11-04) + +Full Changelog: [v0.379.0...v0.380.0](https://github.com/Increase/increase-python/compare/v0.379.0...v0.380.0) + +### Features + +* **api:** api update ([e7c4e57](https://github.com/Increase/increase-python/commit/e7c4e57b6c1c7866ddfc4bf23b9ce14a1fc626ab)) + + +### Chores + +* **internal:** grammar fix (it's -> its) ([ec095c7](https://github.com/Increase/increase-python/commit/ec095c776adc6f9de78da1982f4faa090b47d10c)) + ## 0.379.0 (2025-10-31) Full Changelog: [v0.378.0...v0.379.0](https://github.com/Increase/increase-python/compare/v0.378.0...v0.379.0) diff --git a/pyproject.toml b/pyproject.toml index 3f9d704ea..bde28dba4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.379.0" +version = "0.380.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 e6308ca0f..8d1196430 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.379.0" # x-release-please-version +__version__ = "0.380.0" # x-release-please-version