Skip to content

Commit

Permalink
rename status user_cancelled to user_canceled
Browse files Browse the repository at this point in the history
  • Loading branch information
philvarner committed Feb 10, 2025
1 parent 33a8e04 commit 4097c82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Added token-based pagination to `GET /orders`, `GET /products`,
`GET /orders/{order_id}/statuses`, and `POST /products/{product_id}/opportunities`.
- Optional and Extension STAPI Status Codes "scheduled", "held", "processing", "reserved", "tasked",
and "user_cancelled"
and "user_canceled"

### Changed

Expand Down
2 changes: 1 addition & 1 deletion src/stapi_fastapi/models/order.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class OrderStatusCode(StrEnum):
processing = "processing"
reserved = "reserved"
tasked = "tasked"
user_cancelled = "user_cancelled"
user_canceled = "user_canceled"


class OrderStatus(BaseModel):
Expand Down

0 comments on commit 4097c82

Please # to comment.