@wrcb/cb-common 1.0.668 → 1.0.669

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
@@ -33,6 +33,7 @@ export * from './types/measurementUnit';
33
33
  export * from './types/orderCancelledBy';
34
34
  export * from './types/paymentMethod';
35
35
  export * from './types/paymentStatus';
36
+ export * from './types/addressType';
36
37
  export * from './types/politicaBetCategory';
37
38
  export * from './types/predictionStatus';
38
39
  export * from './types/disputeStatus';
package/build/index.js CHANGED
@@ -49,6 +49,7 @@ __exportStar(require("./types/measurementUnit"), exports);
49
49
  __exportStar(require("./types/orderCancelledBy"), exports);
50
50
  __exportStar(require("./types/paymentMethod"), exports);
51
51
  __exportStar(require("./types/paymentStatus"), exports);
52
+ __exportStar(require("./types/addressType"), exports);
52
53
  // politicabet
53
54
  __exportStar(require("./types/politicaBetCategory"), exports);
54
55
  __exportStar(require("./types/predictionStatus"), exports);
@@ -549,40 +549,48 @@ TenantDataService.tenantDataMap = {
549
549
  ],
550
550
  SOCIAL_X: 'https://x.com/compranomia',
551
551
  SOCIAL_YOUTUBE: 'https://youtube.com/compranomia',
552
- SOCIAL_INSTAGRAM: 'https://instagram.com/compranomia',
552
+ SOCIAL_INSTAGRAM: 'https://instagram.com/compranomiadelivery',
553
553
  SOCIAL_FACEBOOK: 'https://facebook.com/compranomia',
554
554
  USER_CATEGORIES_CONFIG: {
555
555
  [userCategory_1.UserCategory.Grocery]: {
556
- allowedTags: [],
557
- allowedProducts: productTypes_1.COMPRANOMIA_PRODUCTS_SERVICES
556
+ allowedTags: userTags_1.COMPRANOMIA_GROCERY_TAGS,
557
+ allowedProducts: [productTypes_1.ProductTypes.PhysicalProduct]
558
558
  },
559
559
  [userCategory_1.UserCategory.Pharmacy]: {
560
- allowedTags: [],
561
- allowedProducts: productTypes_1.COMPRANOMIA_PRODUCTS_SERVICES
560
+ allowedTags: userTags_1.COMPRANOMIA_PHARMACY_TAGS,
561
+ allowedProducts: [productTypes_1.ProductTypes.PhysicalProduct]
562
562
  },
563
563
  [userCategory_1.UserCategory.Butcher]: {
564
- allowedTags: [],
565
- allowedProducts: productTypes_1.COMPRANOMIA_PRODUCTS_SERVICES
564
+ allowedTags: userTags_1.COMPRANOMIA_BUTCHER_TAGS,
565
+ allowedProducts: [productTypes_1.ProductTypes.PhysicalProduct]
566
566
  },
567
567
  [userCategory_1.UserCategory.Greengrocer]: {
568
- allowedTags: [],
569
- allowedProducts: productTypes_1.COMPRANOMIA_PRODUCTS_SERVICES
568
+ allowedTags: userTags_1.COMPRANOMIA_GREENGROCER_TAGS,
569
+ allowedProducts: [productTypes_1.ProductTypes.PhysicalProduct]
570
570
  },
571
571
  [userCategory_1.UserCategory.Bakery]: {
572
- allowedTags: [],
573
- allowedProducts: productTypes_1.COMPRANOMIA_PRODUCTS_SERVICES
572
+ allowedTags: userTags_1.COMPRANOMIA_BAKERY_TAGS,
573
+ allowedProducts: [productTypes_1.ProductTypes.PhysicalProduct]
574
574
  },
575
575
  [userCategory_1.UserCategory.PetShop]: {
576
- allowedTags: [],
577
- allowedProducts: productTypes_1.COMPRANOMIA_PRODUCTS_SERVICES
576
+ allowedTags: userTags_1.COMPRANOMIA_PETSHOP_TAGS,
577
+ allowedProducts: [productTypes_1.ProductTypes.PhysicalProduct]
578
578
  },
579
579
  [userCategory_1.UserCategory.ConvenienceStore]: {
580
- allowedTags: [],
581
- allowedProducts: productTypes_1.COMPRANOMIA_PRODUCTS_SERVICES
580
+ allowedTags: userTags_1.COMPRANOMIA_CONVENIENCE_STORE_TAGS,
581
+ allowedProducts: [productTypes_1.ProductTypes.PhysicalProduct]
582
582
  },
583
583
  [userCategory_1.UserCategory.Fishmonger]: {
584
- allowedTags: [],
585
- allowedProducts: productTypes_1.COMPRANOMIA_PRODUCTS_SERVICES
584
+ allowedTags: userTags_1.COMPRANOMIA_FISHMONGER_TAGS,
585
+ allowedProducts: [productTypes_1.ProductTypes.PhysicalProduct]
586
+ },
587
+ [userCategory_1.UserCategory.AgricultureStore]: {
588
+ allowedTags: userTags_1.COMPRANOMIA_AGRICULTURE_STORE_TAGS,
589
+ allowedProducts: [productTypes_1.ProductTypes.PhysicalProduct]
590
+ },
591
+ [userCategory_1.UserCategory.Services]: {
592
+ allowedTags: userTags_1.COMPRANOMIA_SERVICES_TAGS,
593
+ allowedProducts: [productTypes_1.ProductTypes.Services]
586
594
  }
587
595
  },
588
596
  COUPONS_TYPE_ALLOWED_TO_BE_CREATED_BY_SELLER: [
@@ -0,0 +1,5 @@
1
+ export declare enum AddressType {
2
+ Casa = "Casa",
3
+ Trabalho = "Trabalho",
4
+ Outro = "Outro"
5
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AddressType = void 0;
4
+ var AddressType;
5
+ (function (AddressType) {
6
+ AddressType["Casa"] = "Casa";
7
+ AddressType["Trabalho"] = "Trabalho";
8
+ AddressType["Outro"] = "Outro";
9
+ })(AddressType || (exports.AddressType = AddressType = {}));
@@ -18,5 +18,7 @@ export declare enum UserCategory {
18
18
  Bakery = "Bakery",
19
19
  PetShop = "PetShop",
20
20
  ConvenienceStore = "ConvenienceStore",
21
+ AgricultureStore = "AgricultureStore",
22
+ Services = "Services",
21
23
  Fishmonger = "Fishmonger"
22
24
  }
@@ -25,5 +25,7 @@ var UserCategory;
25
25
  UserCategory["Bakery"] = "Bakery";
26
26
  UserCategory["PetShop"] = "PetShop";
27
27
  UserCategory["ConvenienceStore"] = "ConvenienceStore";
28
+ UserCategory["AgricultureStore"] = "AgricultureStore";
29
+ UserCategory["Services"] = "Services";
28
30
  UserCategory["Fishmonger"] = "Fishmonger";
29
31
  })(UserCategory || (exports.UserCategory = UserCategory = {}));
@@ -107,7 +107,89 @@ export declare enum UserTags {
107
107
  Teen18Plus = "Teen18Plus",
108
108
  Toys = "Toys",
109
109
  Voyeur = "Voyeur",
110
- White = "White"
110
+ White = "White",
111
+ BeefMeat = "BeefMeat",
112
+ PorkMeat = "PorkMeat",
113
+ ChickenMeat = "ChickenMeat",
114
+ FishMeat = "FishMeat",
115
+ Seafood = "Seafood",
116
+ Sausages = "Sausages",
117
+ NoblesCuts = "NoblesCuts",
118
+ OrganicMeat = "OrganicMeat",
119
+ Fruits = "Fruits",
120
+ Vegetables = "Vegetables",
121
+ OrganicVegetables = "OrganicVegetables",
122
+ Herbs = "Herbs",
123
+ SeasonalProducts = "SeasonalProducts",
124
+ FreshBread = "FreshBread",
125
+ Cakes = "Cakes",
126
+ Pastries = "Pastries",
127
+ ArtisanalBread = "ArtisanalBread",
128
+ WholeMeal = "WholeMeal",
129
+ GlutenFreeBakery = "GlutenFreeBakery",
130
+ Dairy = "Dairy",
131
+ Cheese = "Cheese",
132
+ Yogurt = "Yogurt",
133
+ LactoseFree = "LactoseFree",
134
+ Beverages = "Beverages",
135
+ ColdDrinks = "ColdDrinks",
136
+ Juices = "Juices",
137
+ SoftDrinks = "SoftDrinks",
138
+ AlcoholicDrinks = "AlcoholicDrinks",
139
+ Water = "Water",
140
+ Snacks = "Snacks",
141
+ Candy = "Candy",
142
+ Chocolate = "Chocolate",
143
+ IceCream = "IceCream",
144
+ ReadyToEat = "ReadyToEat",
145
+ Cleaning = "Cleaning",
146
+ PersonalCare = "PersonalCare",
147
+ BabyCare = "BabyCare",
148
+ Perfumery = "Perfumery",
149
+ Diapers = "Diapers",
150
+ Medicines = "Medicines",
151
+ GenericMedicines = "GenericMedicines",
152
+ Supplements = "Supplements",
153
+ Vitamins = "Vitamins",
154
+ Cosmetics = "Cosmetics",
155
+ FirstAid = "FirstAid",
156
+ NaturalProducts = "NaturalProducts",
157
+ PetFood = "PetFood",
158
+ DogFood = "DogFood",
159
+ CatFood = "CatFood",
160
+ BirdFood = "BirdFood",
161
+ FishFood = "FishFood",
162
+ PetToys = "PetToys",
163
+ PetHygiene = "PetHygiene",
164
+ PetAccessories = "PetAccessories",
165
+ VeterinaryProducts = "VeterinaryProducts",
166
+ AnimalFeed = "AnimalFeed",
167
+ Seeds = "Seeds",
168
+ Fertilizers = "Fertilizers",
169
+ Pesticides = "Pesticides",
170
+ FarmTools = "FarmTools",
171
+ IrrigationEquipment = "IrrigationEquipment",
172
+ VeterinarySupplies = "VeterinarySupplies",
173
+ Livestock = "Livestock",
174
+ Stationery = "Stationery",
175
+ SchoolSupplies = "SchoolSupplies",
176
+ OfficeSupplies = "OfficeSupplies",
177
+ HomeUtilities = "HomeUtilities",
178
+ Kitchenware = "Kitchenware",
179
+ FrozenFood = "FrozenFood",
180
+ CannedFood = "CannedFood",
181
+ InstantFood = "InstantFood",
182
+ OrganicProducts = "OrganicProducts",
183
+ GlutenFree = "GlutenFree",
184
+ VeganProducts = "VeganProducts",
185
+ ImportedProducts = "ImportedProducts",
186
+ LocalProducts = "LocalProducts",
187
+ DietProducts = "DietProducts",
188
+ Halal = "Halal",
189
+ Kosher = "Kosher",
190
+ FastDelivery = "FastDelivery",
191
+ FreeDelivery = "FreeDelivery",
192
+ Open24Hours = "Open24Hours"
111
193
  }
112
194
  export declare const TOUR_TAGS: UserTags[];
113
195
  export declare const RESTAURANT_TAGS: UserTags[];
@@ -119,3 +201,13 @@ export declare const PRIVATE_SHOW_MALE_TAGS: UserTags[];
119
201
  export declare const PRIVATE_SHOW_FEMALE_TAGS: UserTags[];
120
202
  export declare const PRIVATE_SHOW_TRANS_TAGS: UserTags[];
121
203
  export declare const PRIVATE_SHOW_COUPLE_TAGS: UserTags[];
204
+ export declare const COMPRANOMIA_GROCERY_TAGS: UserTags[];
205
+ export declare const COMPRANOMIA_PHARMACY_TAGS: UserTags[];
206
+ export declare const COMPRANOMIA_BUTCHER_TAGS: UserTags[];
207
+ export declare const COMPRANOMIA_GREENGROCER_TAGS: UserTags[];
208
+ export declare const COMPRANOMIA_BAKERY_TAGS: UserTags[];
209
+ export declare const COMPRANOMIA_PETSHOP_TAGS: UserTags[];
210
+ export declare const COMPRANOMIA_CONVENIENCE_STORE_TAGS: UserTags[];
211
+ export declare const COMPRANOMIA_FISHMONGER_TAGS: UserTags[];
212
+ export declare const COMPRANOMIA_AGRICULTURE_STORE_TAGS: UserTags[];
213
+ export declare const COMPRANOMIA_SERVICES_TAGS: UserTags[];
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PRIVATE_SHOW_COUPLE_TAGS = exports.PRIVATE_SHOW_TRANS_TAGS = exports.PRIVATE_SHOW_FEMALE_TAGS = exports.PRIVATE_SHOW_MALE_TAGS = exports.EVENT_TAGS = exports.SHOW_TAGS = exports.HOME_SERVICES_TAGS = exports.TRANSFER_TAGS = exports.RESTAURANT_TAGS = exports.TOUR_TAGS = exports.UserTags = void 0;
3
+ exports.COMPRANOMIA_SERVICES_TAGS = exports.COMPRANOMIA_AGRICULTURE_STORE_TAGS = exports.COMPRANOMIA_FISHMONGER_TAGS = exports.COMPRANOMIA_CONVENIENCE_STORE_TAGS = exports.COMPRANOMIA_PETSHOP_TAGS = exports.COMPRANOMIA_BAKERY_TAGS = exports.COMPRANOMIA_GREENGROCER_TAGS = exports.COMPRANOMIA_BUTCHER_TAGS = exports.COMPRANOMIA_PHARMACY_TAGS = exports.COMPRANOMIA_GROCERY_TAGS = exports.PRIVATE_SHOW_COUPLE_TAGS = exports.PRIVATE_SHOW_TRANS_TAGS = exports.PRIVATE_SHOW_FEMALE_TAGS = exports.PRIVATE_SHOW_MALE_TAGS = exports.EVENT_TAGS = exports.SHOW_TAGS = exports.HOME_SERVICES_TAGS = exports.TRANSFER_TAGS = exports.RESTAURANT_TAGS = exports.TOUR_TAGS = exports.UserTags = void 0;
4
4
  var UserTags;
5
5
  (function (UserTags) {
6
6
  // Tour
@@ -120,6 +120,102 @@ var UserTags;
120
120
  UserTags["Toys"] = "Toys";
121
121
  UserTags["Voyeur"] = "Voyeur";
122
122
  UserTags["White"] = "White";
123
+ // Compranomia - Carnes
124
+ UserTags["BeefMeat"] = "BeefMeat";
125
+ UserTags["PorkMeat"] = "PorkMeat";
126
+ UserTags["ChickenMeat"] = "ChickenMeat";
127
+ UserTags["FishMeat"] = "FishMeat";
128
+ UserTags["Seafood"] = "Seafood";
129
+ UserTags["Sausages"] = "Sausages";
130
+ UserTags["NoblesCuts"] = "NoblesCuts";
131
+ UserTags["OrganicMeat"] = "OrganicMeat";
132
+ // Compranomia - Vegetais/Frutas/Hortifruti
133
+ UserTags["Fruits"] = "Fruits";
134
+ UserTags["Vegetables"] = "Vegetables";
135
+ UserTags["OrganicVegetables"] = "OrganicVegetables";
136
+ UserTags["Herbs"] = "Herbs";
137
+ UserTags["SeasonalProducts"] = "SeasonalProducts";
138
+ // Compranomia - Padaria/Confeitaria
139
+ UserTags["FreshBread"] = "FreshBread";
140
+ UserTags["Cakes"] = "Cakes";
141
+ UserTags["Pastries"] = "Pastries";
142
+ UserTags["ArtisanalBread"] = "ArtisanalBread";
143
+ UserTags["WholeMeal"] = "WholeMeal";
144
+ UserTags["GlutenFreeBakery"] = "GlutenFreeBakery";
145
+ // Compranomia - Laticínios
146
+ UserTags["Dairy"] = "Dairy";
147
+ UserTags["Cheese"] = "Cheese";
148
+ UserTags["Yogurt"] = "Yogurt";
149
+ UserTags["LactoseFree"] = "LactoseFree";
150
+ // Compranomia - Bebidas
151
+ UserTags["Beverages"] = "Beverages";
152
+ UserTags["ColdDrinks"] = "ColdDrinks";
153
+ UserTags["Juices"] = "Juices";
154
+ UserTags["SoftDrinks"] = "SoftDrinks";
155
+ UserTags["AlcoholicDrinks"] = "AlcoholicDrinks";
156
+ UserTags["Water"] = "Water";
157
+ // Compranomia - Snacks/Lanches
158
+ UserTags["Snacks"] = "Snacks";
159
+ UserTags["Candy"] = "Candy";
160
+ UserTags["Chocolate"] = "Chocolate";
161
+ UserTags["IceCream"] = "IceCream";
162
+ UserTags["ReadyToEat"] = "ReadyToEat";
163
+ // Compranomia - Limpeza/Higiene
164
+ UserTags["Cleaning"] = "Cleaning";
165
+ UserTags["PersonalCare"] = "PersonalCare";
166
+ UserTags["BabyCare"] = "BabyCare";
167
+ UserTags["Perfumery"] = "Perfumery";
168
+ UserTags["Diapers"] = "Diapers";
169
+ // Compranomia - Farmácia/Saúde
170
+ UserTags["Medicines"] = "Medicines";
171
+ UserTags["GenericMedicines"] = "GenericMedicines";
172
+ UserTags["Supplements"] = "Supplements";
173
+ UserTags["Vitamins"] = "Vitamins";
174
+ UserTags["Cosmetics"] = "Cosmetics";
175
+ UserTags["FirstAid"] = "FirstAid";
176
+ UserTags["NaturalProducts"] = "NaturalProducts";
177
+ // Compranomia - Pet Shop
178
+ UserTags["PetFood"] = "PetFood";
179
+ UserTags["DogFood"] = "DogFood";
180
+ UserTags["CatFood"] = "CatFood";
181
+ UserTags["BirdFood"] = "BirdFood";
182
+ UserTags["FishFood"] = "FishFood";
183
+ UserTags["PetToys"] = "PetToys";
184
+ UserTags["PetHygiene"] = "PetHygiene";
185
+ UserTags["PetAccessories"] = "PetAccessories";
186
+ UserTags["VeterinaryProducts"] = "VeterinaryProducts";
187
+ // Compranomia - Agropecuária
188
+ UserTags["AnimalFeed"] = "AnimalFeed";
189
+ UserTags["Seeds"] = "Seeds";
190
+ UserTags["Fertilizers"] = "Fertilizers";
191
+ UserTags["Pesticides"] = "Pesticides";
192
+ UserTags["FarmTools"] = "FarmTools";
193
+ UserTags["IrrigationEquipment"] = "IrrigationEquipment";
194
+ UserTags["VeterinarySupplies"] = "VeterinarySupplies";
195
+ UserTags["Livestock"] = "Livestock";
196
+ // Compranomia - Papelaria/Brinquedos/Utilidades
197
+ UserTags["Stationery"] = "Stationery";
198
+ UserTags["SchoolSupplies"] = "SchoolSupplies";
199
+ UserTags["OfficeSupplies"] = "OfficeSupplies";
200
+ UserTags["HomeUtilities"] = "HomeUtilities";
201
+ UserTags["Kitchenware"] = "Kitchenware";
202
+ // Compranomia - Congelados/Conservas
203
+ UserTags["FrozenFood"] = "FrozenFood";
204
+ UserTags["CannedFood"] = "CannedFood";
205
+ UserTags["InstantFood"] = "InstantFood";
206
+ // Compranomia - Características Especiais
207
+ UserTags["OrganicProducts"] = "OrganicProducts";
208
+ UserTags["GlutenFree"] = "GlutenFree";
209
+ UserTags["VeganProducts"] = "VeganProducts";
210
+ UserTags["ImportedProducts"] = "ImportedProducts";
211
+ UserTags["LocalProducts"] = "LocalProducts";
212
+ UserTags["DietProducts"] = "DietProducts";
213
+ UserTags["Halal"] = "Halal";
214
+ UserTags["Kosher"] = "Kosher";
215
+ // Compranomia - Serviços
216
+ UserTags["FastDelivery"] = "FastDelivery";
217
+ UserTags["FreeDelivery"] = "FreeDelivery";
218
+ UserTags["Open24Hours"] = "Open24Hours";
123
219
  })(UserTags || (exports.UserTags = UserTags = {}));
124
220
  exports.TOUR_TAGS = [
125
221
  UserTags.CityTour,
@@ -393,3 +489,239 @@ exports.PRIVATE_SHOW_COUPLE_TAGS = [
393
489
  UserTags.Squirt,
394
490
  UserTags.Feet
395
491
  ];
492
+ exports.COMPRANOMIA_GROCERY_TAGS = [
493
+ // Carnes
494
+ UserTags.BeefMeat,
495
+ UserTags.PorkMeat,
496
+ UserTags.ChickenMeat,
497
+ UserTags.FishMeat,
498
+ UserTags.Seafood,
499
+ UserTags.Sausages,
500
+ UserTags.OrganicMeat,
501
+ // Vegetais/Frutas
502
+ UserTags.Fruits,
503
+ UserTags.Vegetables,
504
+ UserTags.OrganicVegetables,
505
+ UserTags.Herbs,
506
+ UserTags.SeasonalProducts,
507
+ // Padaria
508
+ UserTags.FreshBread,
509
+ UserTags.Cakes,
510
+ UserTags.Pastries,
511
+ // Laticínios
512
+ UserTags.Dairy,
513
+ UserTags.Cheese,
514
+ UserTags.Yogurt,
515
+ UserTags.LactoseFree,
516
+ // Bebidas
517
+ UserTags.Beverages,
518
+ UserTags.ColdDrinks,
519
+ UserTags.Juices,
520
+ UserTags.SoftDrinks,
521
+ UserTags.AlcoholicDrinks,
522
+ UserTags.Water,
523
+ // Snacks
524
+ UserTags.Snacks,
525
+ UserTags.Candy,
526
+ UserTags.Chocolate,
527
+ UserTags.IceCream,
528
+ UserTags.ReadyToEat,
529
+ // Limpeza/Higiene
530
+ UserTags.Cleaning,
531
+ UserTags.PersonalCare,
532
+ UserTags.BabyCare,
533
+ UserTags.Perfumery,
534
+ UserTags.Diapers,
535
+ // Pet
536
+ UserTags.PetFood,
537
+ // Congelados/Conservas
538
+ UserTags.FrozenFood,
539
+ UserTags.CannedFood,
540
+ UserTags.InstantFood,
541
+ // Papelaria/Utilidades
542
+ UserTags.Stationery,
543
+ UserTags.SchoolSupplies,
544
+ UserTags.HomeUtilities,
545
+ UserTags.Kitchenware,
546
+ // Características Especiais
547
+ UserTags.OrganicProducts,
548
+ UserTags.GlutenFree,
549
+ UserTags.VeganProducts,
550
+ UserTags.ImportedProducts,
551
+ UserTags.LocalProducts,
552
+ UserTags.DietProducts,
553
+ UserTags.Halal,
554
+ UserTags.Kosher,
555
+ // Serviços
556
+ UserTags.FastDelivery,
557
+ UserTags.FreeDelivery,
558
+ UserTags.Open24Hours
559
+ ];
560
+ exports.COMPRANOMIA_PHARMACY_TAGS = [
561
+ // Medicamentos
562
+ UserTags.Medicines,
563
+ UserTags.GenericMedicines,
564
+ UserTags.Supplements,
565
+ UserTags.Vitamins,
566
+ UserTags.FirstAid,
567
+ UserTags.NaturalProducts,
568
+ // Cuidados pessoais
569
+ UserTags.Cosmetics,
570
+ UserTags.PersonalCare,
571
+ UserTags.BabyCare,
572
+ UserTags.Perfumery,
573
+ UserTags.Diapers,
574
+ // Características
575
+ UserTags.OrganicProducts,
576
+ // Serviços
577
+ UserTags.FastDelivery,
578
+ UserTags.FreeDelivery,
579
+ UserTags.Open24Hours
580
+ ];
581
+ exports.COMPRANOMIA_BUTCHER_TAGS = [
582
+ // Carnes
583
+ UserTags.BeefMeat,
584
+ UserTags.PorkMeat,
585
+ UserTags.ChickenMeat,
586
+ UserTags.Sausages,
587
+ UserTags.NoblesCuts,
588
+ UserTags.OrganicMeat,
589
+ // Frutos do mar (alguns açougues vendem)
590
+ UserTags.Seafood,
591
+ // Congelados
592
+ UserTags.FrozenFood,
593
+ // Características
594
+ UserTags.OrganicProducts,
595
+ UserTags.LocalProducts,
596
+ UserTags.Halal,
597
+ UserTags.Kosher,
598
+ // Serviços
599
+ UserTags.FastDelivery,
600
+ UserTags.FreeDelivery
601
+ ];
602
+ exports.COMPRANOMIA_GREENGROCER_TAGS = [
603
+ // Vegetais/Frutas
604
+ UserTags.Fruits,
605
+ UserTags.Vegetables,
606
+ UserTags.OrganicVegetables,
607
+ UserTags.Herbs,
608
+ UserTags.SeasonalProducts,
609
+ // Extras que sacolão pode ter
610
+ UserTags.Sausages,
611
+ UserTags.Seafood,
612
+ UserTags.FrozenFood,
613
+ // Características
614
+ UserTags.OrganicProducts,
615
+ UserTags.LocalProducts,
616
+ // Serviços
617
+ UserTags.FastDelivery,
618
+ UserTags.FreeDelivery
619
+ ];
620
+ exports.COMPRANOMIA_BAKERY_TAGS = [
621
+ // Padaria
622
+ UserTags.FreshBread,
623
+ UserTags.Cakes,
624
+ UserTags.Pastries,
625
+ UserTags.ArtisanalBread,
626
+ UserTags.WholeMeal,
627
+ UserTags.GlutenFreeBakery,
628
+ // Bebidas (café, sucos)
629
+ UserTags.Beverages,
630
+ UserTags.ColdDrinks,
631
+ UserTags.Juices,
632
+ // Snacks
633
+ UserTags.Snacks,
634
+ UserTags.Candy,
635
+ UserTags.Chocolate,
636
+ // Laticínios
637
+ UserTags.Dairy,
638
+ UserTags.Cheese,
639
+ // Características
640
+ UserTags.GlutenFree,
641
+ UserTags.VeganProducts,
642
+ UserTags.LocalProducts,
643
+ // Serviços
644
+ UserTags.FastDelivery,
645
+ UserTags.FreeDelivery,
646
+ UserTags.Open24Hours
647
+ ];
648
+ exports.COMPRANOMIA_PETSHOP_TAGS = [
649
+ // Pet Food
650
+ UserTags.PetFood,
651
+ UserTags.DogFood,
652
+ UserTags.CatFood,
653
+ UserTags.BirdFood,
654
+ UserTags.FishFood,
655
+ // Acessórios
656
+ UserTags.PetToys,
657
+ UserTags.PetHygiene,
658
+ UserTags.PetAccessories,
659
+ UserTags.VeterinaryProducts,
660
+ // Características
661
+ UserTags.OrganicProducts,
662
+ UserTags.NaturalProducts,
663
+ // Serviços
664
+ UserTags.FastDelivery,
665
+ UserTags.FreeDelivery
666
+ ];
667
+ exports.COMPRANOMIA_CONVENIENCE_STORE_TAGS = [
668
+ // Snacks/Lanches
669
+ UserTags.Snacks,
670
+ UserTags.Candy,
671
+ UserTags.Chocolate,
672
+ UserTags.IceCream,
673
+ UserTags.ReadyToEat,
674
+ // Bebidas
675
+ UserTags.Beverages,
676
+ UserTags.ColdDrinks,
677
+ UserTags.Juices,
678
+ UserTags.SoftDrinks,
679
+ UserTags.Water,
680
+ // Congelados
681
+ UserTags.FrozenFood,
682
+ // Higiene básica
683
+ UserTags.PersonalCare,
684
+ // Serviços
685
+ UserTags.FastDelivery,
686
+ UserTags.Open24Hours
687
+ ];
688
+ exports.COMPRANOMIA_FISHMONGER_TAGS = [
689
+ // Frutos do mar
690
+ UserTags.FishMeat,
691
+ UserTags.Seafood,
692
+ // Congelados
693
+ UserTags.FrozenFood,
694
+ // Características
695
+ UserTags.OrganicProducts,
696
+ UserTags.LocalProducts,
697
+ // Serviços
698
+ UserTags.FastDelivery,
699
+ UserTags.FreeDelivery
700
+ ];
701
+ exports.COMPRANOMIA_AGRICULTURE_STORE_TAGS = [
702
+ // Agropecuária
703
+ UserTags.AnimalFeed,
704
+ UserTags.Seeds,
705
+ UserTags.Fertilizers,
706
+ UserTags.Pesticides,
707
+ UserTags.FarmTools,
708
+ UserTags.IrrigationEquipment,
709
+ UserTags.VeterinarySupplies,
710
+ UserTags.Livestock,
711
+ // Pet (ração pode estar aqui também)
712
+ UserTags.PetFood,
713
+ UserTags.DogFood,
714
+ UserTags.CatFood,
715
+ // Características
716
+ UserTags.OrganicProducts,
717
+ UserTags.LocalProducts,
718
+ // Serviços
719
+ UserTags.FastDelivery,
720
+ UserTags.FreeDelivery
721
+ ];
722
+ exports.COMPRANOMIA_SERVICES_TAGS = [
723
+ // Serviços
724
+ UserTags.FastDelivery,
725
+ UserTags.FreeDelivery,
726
+ UserTags.Open24Hours
727
+ ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wrcb/cb-common",
3
- "version": "1.0.668",
3
+ "version": "1.0.669",
4
4
  "description": "Common resources between services",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",