meemup-library 1.2.19 → 1.2.20

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.
@@ -149,7 +149,8 @@ export default new class ProductModalController {
149
149
  relatedItemId: null,
150
150
  relatedProductId: null,
151
151
  additionalText: "",
152
- stampCardBonusItem: false
152
+ stampCardBonusItem: false,
153
+ taxable: product.taxable
153
154
  };
154
155
  }
155
156
  productName(product) {
@@ -53,6 +53,7 @@ export default interface IProduct {
53
53
  packagingCosts: number;
54
54
  depositCost: number;
55
55
  tags: string[] | null;
56
+ taxable: boolean;
56
57
  thumbnailImage: string;
57
58
  weight: number;
58
59
  size: number;
@@ -18,5 +18,6 @@ interface IOrderItem {
18
18
  promotionItem: boolean;
19
19
  promotionId: number;
20
20
  stampCardBonusItem: boolean;
21
+ taxable: boolean;
21
22
  }
22
23
  export default IOrderItem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.2.19",
3
+ "version": "1.2.20",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,7 +11,7 @@
11
11
  "remove:one": "rimraf dist",
12
12
  "remove:two": "rimraf ./src/dist",
13
13
  "test": "echo \"Error: no test specified\" && exit 1",
14
- "commit": "git add . && git commit -m \"version.1.2.19\" && git push origin "
14
+ "commit": "git add . && git commit -m \"version.1.2.20\" && git push origin "
15
15
  },
16
16
  "files": [
17
17
  "/dist"