meemup-library 1.0.13 → 1.0.14

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.
@@ -13,6 +13,7 @@ interface ILocalSetting {
13
13
  useAsCustomerMonitor: boolean;
14
14
  udpPort: number;
15
15
  udpClientName: string;
16
+ defaultShowCashCalculatorWindow: boolean;
16
17
  }
17
18
  export default ILocalSetting;
18
19
  export declare const initLocalSetting: ILocalSetting;
@@ -12,5 +12,6 @@ export const initLocalSetting = {
12
12
  printsOnNewOrder: [],
13
13
  useAsCustomerMonitor: false,
14
14
  udpPort: 8000,
15
- udpClientName: UDP_CUSTOMER_MONITOR_PRE_NAME + "1"
15
+ udpClientName: UDP_CUSTOMER_MONITOR_PRE_NAME + "1",
16
+ defaultShowCashCalculatorWindow: true
16
17
  };
@@ -70,6 +70,7 @@ interface IOrder {
70
70
  displayOnKitchenDisplay: boolean;
71
71
  skipTipping: boolean;
72
72
  detail: IOrderDetails | null;
73
+ showCashCalculatorWindow: boolean;
73
74
  }
74
75
  export default IOrder;
75
76
  export declare const initOrder: IOrder;
@@ -75,7 +75,8 @@ export const initOrder = {
75
75
  onlyForPayment: false,
76
76
  displayOnKitchenDisplay: true,
77
77
  skipTipping: false,
78
- detail: null
78
+ detail: null,
79
+ showCashCalculatorWindow: true
79
80
  // previousTotalAmount: 0,
80
81
  // previousOrderAmount : 0,
81
82
  // previousPaymentState: EnumPaymentState.NOT_PAID
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",