meemup-library 1.2.52 → 1.2.54

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.
@@ -12,6 +12,7 @@ interface IPointOfSaleLocalSetting {
12
12
  udpPort: number;
13
13
  udpClientName: string;
14
14
  defaultShowCashCalculatorWindow: boolean;
15
+ defaultShowOrderInKitchenDisplay: boolean;
15
16
  dashboardDefaultTake: number;
16
17
  dashboardTakePlus: number;
17
18
  broadcastIpAddress: string;
@@ -14,6 +14,7 @@ export const initPointOfSaleLocalSetting = {
14
14
  udpPort: 8000,
15
15
  udpClientName: UDP_NO_CLINET,
16
16
  defaultShowCashCalculatorWindow: true,
17
+ defaultShowOrderInKitchenDisplay: true,
17
18
  dashboardDefaultTake: 10,
18
19
  dashboardTakePlus: 10,
19
20
  broadcastIpAddress: "127.0.0.255",
@@ -8,6 +8,7 @@ import IOrderDetailPaymentInfo from "./IOrderDetailPaymentInfo";
8
8
  import IModifiedDetails from "./IModifiedDetails";
9
9
  import IOrderDetailTimeLine from "./IOrderDetailTimeLine";
10
10
  import IOrderDetailThirdPartyDriver from "./IOrderDetailThirdPartyDriver";
11
+ import IOrderPayment from "../order/IOrderPayment";
11
12
  interface IOrderDetails {
12
13
  order: IOrderDetailOrder;
13
14
  customer: IOrderDetailCustomer;
@@ -23,6 +24,7 @@ interface IOrderDetails {
23
24
  timeline: IOrderDetailTimeLine[];
24
25
  deliveryTrackingUrl: string;
25
26
  thirdPartyDriver: IOrderDetailThirdPartyDriver | null;
27
+ paymentTransactions: IOrderPayment[];
26
28
  }
27
29
  export default IOrderDetails;
28
30
  export declare const initOrderDetails: IOrderDetails;
@@ -15,5 +15,6 @@ export const initOrderDetails = {
15
15
  availablePaymentTypes: [],
16
16
  timeline: [],
17
17
  deliveryTrackingUrl: "",
18
- thirdPartyDriver: null
18
+ thirdPartyDriver: null,
19
+ paymentTransactions: []
19
20
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.2.52",
3
+ "version": "1.2.54",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",