meemup-library 1.2.5 → 1.2.7

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.
@@ -205,7 +205,9 @@ export default new class ProductModalController {
205
205
  receiptTitle: extraItemModel.receiptTitle,
206
206
  increasingAmount: extraItemModel.increasingAmount,
207
207
  increasingPercentage: extraItemModel.increasingPercentage,
208
- tags: extraItemModel.tags
208
+ tags: extraItemModel.tags,
209
+ color: extraItemModel.color,
210
+ thumbnailImage: extraItemModel.thumbnailImage
209
211
  });
210
212
  }
211
213
  });
@@ -8,6 +8,7 @@ import IWorkScreen from "./IWorkScreen";
8
8
  import IOrder from "./order/IOrder";
9
9
  import ICancelRequest from "./ICancelRequest";
10
10
  import IPointOfSaleOrderSummary from "./pos/IPointOfSaleOrderSummary";
11
+ import IPointOfSaleTask from "./pos/IPointOfSaleTask";
11
12
  interface IPointOfSaleStore {
12
13
  account: IAccount;
13
14
  orderScreen: IOrderScreenState;
@@ -21,5 +22,6 @@ interface IPointOfSaleStore {
21
22
  localSetting: IPointOfSaleLocalSetting;
22
23
  customPayment: IPaymentStatusChanged;
23
24
  workScreen: IWorkScreen;
25
+ tasks: IPointOfSaleTask[];
24
26
  }
25
27
  export default IPointOfSaleStore;
@@ -9,6 +9,8 @@ interface IDExtra {
9
9
  increasingOtherExtraItemsPrice: boolean;
10
10
  choosablePizzaToppingsSides: boolean;
11
11
  numberOfFreeItems: number;
12
+ color: string | null;
13
+ thumbnailImage: string | null;
12
14
  items: IDExtraItem[];
13
15
  }
14
16
  export default IDExtra;
@@ -14,5 +14,7 @@ interface IDExtraItem {
14
14
  increasingAmount: number;
15
15
  increasingPercentage: number;
16
16
  tags: string[] | null;
17
+ color: string | null;
18
+ thumbnailImage: string | null;
17
19
  }
18
20
  export default IDExtraItem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.2.5",
3
+ "version": "1.2.7",
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.5\" && git push origin "
14
+ "commit": "git add . && git commit -m \"version.1.2.7\" && git push origin "
15
15
  },
16
16
  "files": [
17
17
  "/dist"