meemup-library 1.0.69 → 1.0.70

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.
@@ -34,6 +34,7 @@ export interface ISaveOrder {
34
34
  driverId: number | null;
35
35
  deviceId: string | null;
36
36
  zoneId: number | null;
37
+ referenceId: string;
37
38
  }
38
39
  export interface ISaveOrderAnswer {
39
40
  orderId: number;
@@ -71,6 +71,8 @@ interface IOrder {
71
71
  skipTipping: boolean;
72
72
  detail: IOrderDetails | null;
73
73
  showCashCalculatorWindow: boolean;
74
+ freeze: boolean;
75
+ referenceId: string;
74
76
  }
75
77
  export default IOrder;
76
78
  export declare const initOrder: IOrder;
@@ -76,7 +76,9 @@ export const initOrder = {
76
76
  displayOnKitchenDisplay: true,
77
77
  skipTipping: false,
78
78
  detail: null,
79
- showCashCalculatorWindow: true
79
+ showCashCalculatorWindow: true,
80
+ freeze: false,
81
+ referenceId: ""
80
82
  // previousTotalAmount: 0,
81
83
  // previousOrderAmount : 0,
82
84
  // previousPaymentState: EnumPaymentState.NOT_PAID
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.0.69",
3
+ "version": "1.0.70",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",