@sendhome/common 1.0.54 → 1.0.55
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.
|
@@ -3,10 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.CartItemStatus = void 0;
|
|
4
4
|
var CartItemStatus;
|
|
5
5
|
(function (CartItemStatus) {
|
|
6
|
-
// Cart created
|
|
6
|
+
// Cart item created
|
|
7
7
|
CartItemStatus["Created"] = "created";
|
|
8
|
-
// Cart
|
|
8
|
+
// Cart item purchased
|
|
9
|
+
CartItemStatus["Purchased"] = "purchased";
|
|
10
|
+
// Cart item deleted
|
|
9
11
|
CartItemStatus["Deleted"] = "deleted";
|
|
10
|
-
// Cart expired
|
|
12
|
+
// Cart item expired
|
|
11
13
|
CartItemStatus["Expired"] = "expired";
|
|
12
14
|
})(CartItemStatus = exports.CartItemStatus || (exports.CartItemStatus = {}));
|