meemup-library 1.4.88 → 1.4.90

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.
@@ -62,5 +62,6 @@ export default interface IPrintTemplate {
62
62
  orderDateTimeMode: EnumOrderDateTimePrintModeType;
63
63
  orderDateTimeFormat: string;
64
64
  printCustomerDetailsInLarge: boolean;
65
+ printASAPLabel: boolean;
65
66
  }
66
67
  export declare const initPrintTemplate: IPrintTemplate;
@@ -62,4 +62,5 @@ export const initPrintTemplate = {
62
62
  orderDateTimeMode: EnumOrderDateTimePrintModeType.WishTime,
63
63
  orderDateTimeFormat: "hh:mm A",
64
64
  printCustomerDetailsInLarge: false,
65
+ printASAPLabel: false
65
66
  };
@@ -51,5 +51,7 @@ export default interface IManagementSystem {
51
51
  rewardsMinimumPointsRedeemablePerOrder: number;
52
52
  donationSystem: boolean;
53
53
  donationRoundAmountType: number;
54
+ sendSMSWhenPickupOrderIsReady: boolean;
55
+ triggerDriverRequestOnOrderReady: boolean;
54
56
  }
55
57
  export declare const initSystem: IManagementSystem;
@@ -56,5 +56,7 @@ export const initSystem = {
56
56
  rewardsMaximumPointsRedeemablePerOrder: 0,
57
57
  rewardsMinimumPointsRedeemablePerOrder: 0,
58
58
  donationSystem: true,
59
- donationRoundAmountType: 1
59
+ donationRoundAmountType: 1,
60
+ sendSMSWhenPickupOrderIsReady: false,
61
+ triggerDriverRequestOnOrderReady: false,
60
62
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.4.88",
3
+ "version": "1.4.90",
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.4.88\" && git push origin "
14
+ "commit": "git add . && git commit -m \"version.1.4.90\" && git push origin "
15
15
  },
16
16
  "files": [
17
17
  "/dist"