meemup-library 1.1.3 → 1.1.4

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.
@@ -0,0 +1,7 @@
1
+ export default interface ICancelRequest {
2
+ orderId: number;
3
+ orderNumber: number;
4
+ customer: string;
5
+ datetime: string;
6
+ description: string;
7
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -7,11 +7,13 @@ import IProductModalState from "./IProductModalState";
7
7
  import IStarMicronicPrintTask from "./IStarMicronicPrintTask";
8
8
  import IWorkScreen from "./IWorkScreen";
9
9
  import IOrder from "./order/IOrder";
10
+ import ICancelRequest from "./ICancelRequest";
10
11
  interface IPointOfSaleStore {
11
12
  account: IAccount;
12
13
  orderScreen: IOrderScreenState;
13
14
  order: IOrder;
14
15
  onlineOrders: IOnlineOrderItem[];
16
+ cancelRequests: ICancelRequest[];
15
17
  localOrders: IOrder[];
16
18
  isConnected: boolean;
17
19
  productModals: IProductModalState[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",