meemup-library 1.1.30 → 1.1.31

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.
@@ -1,6 +1,5 @@
1
1
  import IAccount from "./IAccount";
2
2
  import IPointOfSaleLocalSetting from "./IPointOfSaleLocalSetting";
3
- import IOnlineOrderItem from "./IOnlineOrderItem";
4
3
  import IOrderScreenState from "./IOrderScreenState";
5
4
  import IPaymentStatusChanged from "./IPaymentStatusChanged";
6
5
  import IProductModalState from "./IProductModalState";
@@ -8,11 +7,12 @@ import IStarMicronicPrintTask from "./IStarMicronicPrintTask";
8
7
  import IWorkScreen from "./IWorkScreen";
9
8
  import IOrder from "./order/IOrder";
10
9
  import ICancelRequest from "./ICancelRequest";
10
+ import IPointOfSaleOrderSummary from "./pos/IPointOfSaleOrderSummary";
11
11
  interface IPointOfSaleStore {
12
12
  account: IAccount;
13
13
  orderScreen: IOrderScreenState;
14
14
  order: IOrder;
15
- onlineOrders: IOnlineOrderItem[];
15
+ onlineOrders: IPointOfSaleOrderSummary[];
16
16
  cancelRequests: ICancelRequest[];
17
17
  localOrders: IOrder[];
18
18
  isConnected: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.1.30",
3
+ "version": "1.1.31",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",