meemup-library 1.1.21 → 1.1.23

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.
@@ -204,7 +204,8 @@ export default new class ProductModalController {
204
204
  available: extraItemModel.available,
205
205
  receiptTitle: extraItemModel.receiptTitle,
206
206
  increasingAmount: extraItemModel.increasingAmount,
207
- increasingPercentage: extraItemModel.increasingPercentage
207
+ increasingPercentage: extraItemModel.increasingPercentage,
208
+ tags: extraItemModel.tags
208
209
  });
209
210
  }
210
211
  });
@@ -13,5 +13,6 @@ interface IDExtraItem {
13
13
  isDefaultSelected: boolean;
14
14
  increasingAmount: number;
15
15
  increasingPercentage: number;
16
+ tags: string[] | null;
16
17
  }
17
18
  export default IDExtraItem;
@@ -45,5 +45,12 @@ interface IDProduct {
45
45
  imageName: string | null;
46
46
  onlyOnWeekDays: number | null;
47
47
  displayOnKitchenDisplay: boolean;
48
+ menuId: number | null;
49
+ availableForOrderingType: number;
50
+ deleted: boolean;
51
+ allergicStuffsId: number[];
52
+ showExtrasCategory: number;
53
+ packagingCosts: number;
54
+ depositCost: number;
48
55
  }
49
56
  export default IDProduct;
@@ -0,0 +1,5 @@
1
+ declare const TagsOptions: {
2
+ text: string;
3
+ value: string;
4
+ }[];
5
+ export default TagsOptions;
@@ -0,0 +1,8 @@
1
+ const TagsOptions = [
2
+ { text: "None", value: "none" },
3
+ { text: "Meat", value: "Meat" },
4
+ { text: "Vegetable", value: "Vegetable" },
5
+ { text: "Cheese", value: "Cheese" },
6
+ { text: "Beverage", value: "Beverage" },
7
+ ];
8
+ export default TagsOptions;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.1.21",
3
+ "version": "1.1.23",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",