@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 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);
@@ -1,4 +1,4 @@
1
1
  export declare enum MarketStatus {
2
- Active = "active",
3
- Inactive = "inactive"
2
+ Active = "Active",
3
+ Inactive = "Inactive"
4
4
  }
@@ -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"] = "active";
7
- MarketStatus["Inactive"] = "inactive";
6
+ MarketStatus["Active"] = "Active";
7
+ MarketStatus["Inactive"] = "Inactive";
8
8
  })(MarketStatus || (exports.MarketStatus = MarketStatus = {}));
@@ -0,0 +1,5 @@
1
+ export declare enum OrderStatus {
2
+ Pending = "Pending",
3
+ Confirmed = "Confirmed",
4
+ Cancelled = "Cancelled"
5
+ }
@@ -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";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wrcb/cb-common",
3
- "version": "1.0.392",
3
+ "version": "1.0.394",
4
4
  "description": "Common resources between services",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",