Feat(order): post purchase support (#7666)

This commit is contained in:
Carlos R. L. Rodrigues
2024-06-10 18:44:51 -03:00
committed by GitHub
parent 39ddba2491
commit 37426939da
43 changed files with 1645 additions and 476 deletions

View File

@@ -33,27 +33,23 @@ export enum OrderStatus {
/**
* @enum
*
* The order change's status.
* The return's status.
*/
export enum OrderChangeStatus {
export enum ReturnStatus {
/**
* The order change is confirmed.
*/
CONFIRMED = "confirmed",
/**
* The order change is declined.
*/
DECLINED = "declined",
/**
* The order change is requested.
* The return is requested.
*/
REQUESTED = "requested",
/**
* The order change is pending.
* The return is received.
*/
PENDING = "pending",
RECEIVED = "received",
/**
* The order change is canceled.
* The return is partially received.
*/
PARTIALLY_RECEIVED = "partially_received",
/**
* The return is canceled.
*/
CANCELED = "canceled",
}