meemup-library 1.5.45 → 1.5.47

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.
@@ -45,6 +45,7 @@ interface IPointOfSaleApiShop {
45
45
  preOrderCount: number;
46
46
  emergencyBrake: IEmergencyBrake;
47
47
  bundleProducts: IBundleProduct[];
48
+ driverNoteSuggestions: string[];
48
49
  }
49
50
  export default IPointOfSaleApiShop;
50
51
  export declare const initApiShop: IPointOfSaleApiShop;
@@ -29,5 +29,6 @@ export const initApiShop = {
29
29
  generalSetting: initSystem,
30
30
  preOrderCount: 0,
31
31
  emergencyBrake: initEmergencyBrake,
32
- bundleProducts: []
32
+ bundleProducts: [],
33
+ driverNoteSuggestions: []
33
34
  };
@@ -52,6 +52,7 @@ interface IPointOfSaleOrder {
52
52
  discountDescription: string;
53
53
  tax: number;
54
54
  remark: string;
55
+ deliveryInstructionsRemarks: string;
55
56
  driverName: string | null;
56
57
  driverId: number | null;
57
58
  zoneId: number | null;
@@ -58,6 +58,7 @@ export const initOrder = {
58
58
  tax: 13,
59
59
  //other
60
60
  remark: "",
61
+ deliveryInstructionsRemarks: "",
61
62
  //driver
62
63
  driverName: "",
63
64
  driverId: -1,
@@ -19,6 +19,7 @@ export default interface IPointOfSaleSaveOrder {
19
19
  address: string;
20
20
  location: any | null;
21
21
  remark: string;
22
+ deliveryInstructionsRemarks: string;
22
23
  tableNo: string;
23
24
  tableId: number | null;
24
25
  distance: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.5.45",
3
+ "version": "1.5.47",
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.5.45\" && git push origin "
14
+ "commit": "git add . && git commit -m \"version.1.5.47\" && git push origin "
15
15
  },
16
16
  "files": [
17
17
  "/dist"