Skip to content
This repository was archived by the owner on Apr 2, 2025. It is now read-only.

Commit 4097c82

Browse files
author
Phil Varner
committed
rename status user_cancelled to user_canceled
1 parent 33a8e04 commit 4097c82

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1212
- Added token-based pagination to `GET /orders`, `GET /products`,
1313
`GET /orders/{order_id}/statuses`, and `POST /products/{product_id}/opportunities`.
1414
- Optional and Extension STAPI Status Codes "scheduled", "held", "processing", "reserved", "tasked",
15-
and "user_cancelled"
15+
and "user_canceled"
1616

1717
### Changed
1818

src/stapi_fastapi/models/order.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class OrderStatusCode(StrEnum):
4040
processing = "processing"
4141
reserved = "reserved"
4242
tasked = "tasked"
43-
user_cancelled = "user_cancelled"
43+
user_canceled = "user_canceled"
4444

4545

4646
class OrderStatus(BaseModel):

0 commit comments

Comments
 (0)