@wrcb/cb-common 1.0.392 → 1.0.394
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.
- package/build/index.d.ts +1 -0
- package/build/index.js +1 -0
- package/build/types/marketStatus.d.ts +2 -2
- package/build/types/marketStatus.js +2 -2
- package/build/types/orderStatus copy.d.ts +5 -0
- package/build/types/orderStatus copy.js +9 -0
- package/build/types/userCategory.js +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export * from './types/tenant';
|
|
|
16
16
|
export * from './types/userTags';
|
|
17
17
|
export * from './types/userCategory';
|
|
18
18
|
export * from './types/productTypes';
|
|
19
|
+
export * from './types/orderStatus copy';
|
|
19
20
|
export * from './events/subjects';
|
|
20
21
|
export * from './services/TenantDataService';
|
|
21
22
|
export * from './storage/types';
|
package/build/index.js
CHANGED
|
@@ -32,6 +32,7 @@ __exportStar(require("./types/tenant"), exports);
|
|
|
32
32
|
__exportStar(require("./types/userTags"), exports);
|
|
33
33
|
__exportStar(require("./types/userCategory"), exports);
|
|
34
34
|
__exportStar(require("./types/productTypes"), exports);
|
|
35
|
+
__exportStar(require("./types/orderStatus copy"), exports);
|
|
35
36
|
__exportStar(require("./events/subjects"), exports);
|
|
36
37
|
__exportStar(require("./services/TenantDataService"), exports);
|
|
37
38
|
__exportStar(require("./storage/types"), exports);
|
|
@@ -3,6 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.MarketStatus = void 0;
|
|
4
4
|
var MarketStatus;
|
|
5
5
|
(function (MarketStatus) {
|
|
6
|
-
MarketStatus["Active"] = "
|
|
7
|
-
MarketStatus["Inactive"] = "
|
|
6
|
+
MarketStatus["Active"] = "Active";
|
|
7
|
+
MarketStatus["Inactive"] = "Inactive";
|
|
8
8
|
})(MarketStatus || (exports.MarketStatus = MarketStatus = {}));
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.OrderStatus = void 0;
|
|
4
|
+
var OrderStatus;
|
|
5
|
+
(function (OrderStatus) {
|
|
6
|
+
OrderStatus["Pending"] = "Pending";
|
|
7
|
+
OrderStatus["Confirmed"] = "Confirmed";
|
|
8
|
+
OrderStatus["Cancelled"] = "Cancelled";
|
|
9
|
+
})(OrderStatus || (exports.OrderStatus = OrderStatus = {}));
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.UserCategory = void 0;
|
|
4
4
|
var UserCategory;
|
|
5
5
|
(function (UserCategory) {
|
|
6
|
-
// Private show (venda de imagens e videos)
|
|
6
|
+
// Private show (venda de imagens e videos Produto 4)
|
|
7
7
|
UserCategory["Male"] = "Male";
|
|
8
8
|
UserCategory["Female"] = "Female";
|
|
9
9
|
UserCategory["Trans"] = "Trans";
|