tickera-angular-components 0.0.1-dev.8 → 0.0.1-dev.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -426,10 +426,13 @@ var OrderItemType;
|
|
|
426
426
|
|
|
427
427
|
var OrderStatus;
|
|
428
428
|
(function (OrderStatus) {
|
|
429
|
-
OrderStatus["
|
|
430
|
-
OrderStatus["
|
|
431
|
-
OrderStatus["
|
|
432
|
-
OrderStatus["
|
|
429
|
+
OrderStatus["ON_HOLD"] = "on-hold";
|
|
430
|
+
OrderStatus["PENDING_PAYMENT"] = "pending-payment";
|
|
431
|
+
OrderStatus["PROCESSING"] = "processing";
|
|
432
|
+
OrderStatus["COMPLETED"] = "completed";
|
|
433
|
+
OrderStatus["FAILED"] = "failed";
|
|
434
|
+
OrderStatus["CANCELLED"] = "cancelled";
|
|
435
|
+
OrderStatus["REFUNDED"] = "refunded";
|
|
433
436
|
})(OrderStatus || (OrderStatus = {}));
|
|
434
437
|
|
|
435
438
|
const getCustomerFullname = (customer) => {
|