Skip to content

Commit e7c4e57

Browse files
feat(api): api update
1 parent ec095c7 commit e7c4e57

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 228
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-e9e51b3c9b5c8d9e6e0267b62a12a00fedbce419b765192aa4e2470984192e1f.yml
3-
openapi_spec_hash: 84bc91dd8b8a80edf447dddad15c23fc
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-776b1bee3036836b954fa0db1e6d0349a04f76799402089994a9147a05967c0e.yml
3+
openapi_spec_hash: 185a637305e75b302860dce8d352f54f
44
config_hash: eb2035151c7b49c2f12caf55469b8f9a

src/increase/types/wire_drawdown_request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,14 +125,14 @@ class WireDrawdownRequest(BaseModel):
125125
[idempotency](https://increase.com/documentation/idempotency-keys).
126126
"""
127127

128-
status: Literal["pending_submission", "pending_response", "fulfilled", "refused"]
128+
status: Literal["pending_submission", "fulfilled", "pending_response", "refused"]
129129
"""The lifecycle status of the drawdown request.
130130
131131
- `pending_submission` - The drawdown request is queued to be submitted to
132132
Fedwire.
133+
- `fulfilled` - The drawdown request has been fulfilled by the recipient.
133134
- `pending_response` - The drawdown request has been sent and the recipient
134135
should respond in some way.
135-
- `fulfilled` - The drawdown request has been fulfilled by the recipient.
136136
- `refused` - The drawdown request has been refused by the recipient.
137137
"""
138138

src/increase/types/wire_drawdown_request_list_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class WireDrawdownRequestListParams(TypedDict, total=False):
3232
_StatusReservedKeywords = TypedDict(
3333
"_StatusReservedKeywords",
3434
{
35-
"in": List[Literal["pending_submission", "pending_response", "fulfilled", "refused"]],
35+
"in": List[Literal["pending_submission", "fulfilled", "pending_response", "refused"]],
3636
},
3737
total=False,
3838
)

0 commit comments

Comments
 (0)