meemup-library 1.4.6 → 1.4.8

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 @@ import IPointOfSaleWindow from "./IPointOfSaleWindow";
13
13
  import IPointOfSaleCellular from "../../types/IPointOfSaleCellular";
14
14
  import IPointOfSaleWifi from "../../types/IPointOfSaleWifi";
15
15
  import THardwareStatus from "../../types/THardwareStatus";
16
+ import IOrderDetails from "../print/IOrderDetails";
16
17
  interface IPointOfSaleStore {
17
18
  account: IAccount;
18
19
  order: IPointOfSaleOrder;
@@ -31,5 +32,8 @@ interface IPointOfSaleStore {
31
32
  cellular: IPointOfSaleCellular;
32
33
  wifi: IPointOfSaleWifi;
33
34
  bluetooth: THardwareStatus;
35
+ detail: IOrderDetails;
36
+ exitModal: boolean;
37
+ destroyToken: boolean;
34
38
  }
35
39
  export default IPointOfSaleStore;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.4.6",
3
+ "version": "1.4.8",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,7 +11,7 @@
11
11
  "remove:one": "rimraf dist",
12
12
  "remove:two": "rimraf ./src/dist",
13
13
  "test": "echo \"Error: no test specified\" && exit 1",
14
- "commit": "git add . && git commit -m \"version.1.4.6 \" && git push origin "
14
+ "commit": "git add . && git commit -m \"version.1.4.8 \" && git push origin "
15
15
  },
16
16
  "files": [
17
17
  "/dist"