@wrcb/cb-common 1.0.627 → 1.0.629

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
@@ -28,6 +28,8 @@ export * from './types/giftType';
28
28
  export * from './types/paymentProviderType';
29
29
  export * from './types/endLiveReason';
30
30
  export * from './types/oddAlgorithm';
31
+ export * from './types/compranomiaCategory';
32
+ export * from './types/measurementUnit';
31
33
  export * from './types/politicaBetCategory';
32
34
  export * from './types/predictionStatus';
33
35
  export * from './types/disputeStatus';
package/build/index.js CHANGED
@@ -44,6 +44,8 @@ __exportStar(require("./types/giftType"), exports);
44
44
  __exportStar(require("./types/paymentProviderType"), exports);
45
45
  __exportStar(require("./types/endLiveReason"), exports);
46
46
  __exportStar(require("./types/oddAlgorithm"), exports);
47
+ __exportStar(require("./types/compranomiaCategory"), exports);
48
+ __exportStar(require("./types/measurementUnit"), exports);
47
49
  // politicabet
48
50
  __exportStar(require("./types/politicaBetCategory"), exports);
49
51
  __exportStar(require("./types/predictionStatus"), exports);
@@ -1,10 +1,10 @@
1
1
  export declare enum CompranomiaCategory {
2
- Grocery = "Grocery",// Mercearia
3
- Pharmacy = "Pharmacy",// Farmácia
4
- Butcher = "Butcher",// Açougue
5
- Greengrocer = "Greengrocer",// Sacolão/Hortifruti
6
- Bakery = "Bakery",// Padaria
7
- PetShop = "PetShop",// Pet Shop
8
- ConvenienceStore = "ConvenienceStore",// Loja de Conveniência
2
+ Grocery = "Grocery",
3
+ Pharmacy = "Pharmacy",
4
+ Butcher = "Butcher",
5
+ Greengrocer = "Greengrocer",
6
+ Bakery = "Bakery",
7
+ PetShop = "PetShop",
8
+ ConvenienceStore = "ConvenienceStore",
9
9
  Fishmonger = "Fishmonger"
10
10
  }
@@ -10,5 +10,5 @@ var CompranomiaCategory;
10
10
  CompranomiaCategory["Bakery"] = "Bakery";
11
11
  CompranomiaCategory["PetShop"] = "PetShop";
12
12
  CompranomiaCategory["ConvenienceStore"] = "ConvenienceStore";
13
- CompranomiaCategory["Fishmonger"] = "Fishmonger"; // Peixaria
13
+ CompranomiaCategory["Fishmonger"] = "Fishmonger";
14
14
  })(CompranomiaCategory || (exports.CompranomiaCategory = CompranomiaCategory = {}));
@@ -0,0 +1,10 @@
1
+ export declare enum MeasurementUnit {
2
+ L = "L",
3
+ mL = "mL",
4
+ g = "g",
5
+ Kg = "Kg",
6
+ Un = "Un",
7
+ Pack = "Pack",
8
+ Bandeja = "Bandeja",
9
+ Pct = "Pct"
10
+ }
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MeasurementUnit = void 0;
4
+ var MeasurementUnit;
5
+ (function (MeasurementUnit) {
6
+ MeasurementUnit["L"] = "L";
7
+ MeasurementUnit["mL"] = "mL";
8
+ MeasurementUnit["g"] = "g";
9
+ MeasurementUnit["Kg"] = "Kg";
10
+ MeasurementUnit["Un"] = "Un";
11
+ MeasurementUnit["Pack"] = "Pack";
12
+ MeasurementUnit["Bandeja"] = "Bandeja";
13
+ MeasurementUnit["Pct"] = "Pct";
14
+ })(MeasurementUnit || (exports.MeasurementUnit = MeasurementUnit = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wrcb/cb-common",
3
- "version": "1.0.627",
3
+ "version": "1.0.629",
4
4
  "description": "Common resources between services",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",