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.379.0"
".": "0.380.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: 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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
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.379.0"
version = "0.380.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/_utils/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.379.0" # x-release-please-version
__version__ = "0.380.0" # x-release-please-version
4 changes: 2 additions & 2 deletions src/increase/types/wire_drawdown_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""

Expand Down
2 changes: 1 addition & 1 deletion src/increase/types/wire_drawdown_request_list_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
Expand Down