meemup-library 1.4.27 → 1.4.28

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.
@@ -5,6 +5,7 @@ import EnumPointOfSaleDefaultSaveState from "../../enums/EnumPointOfSaleDefaultS
5
5
  import EnumPrintCommand from "../../enums/EnumPrintCommand";
6
6
  import EnumProductLongPress from "../../enums/EnumProductLongPress";
7
7
  import ITextValue from "../ITextValue";
8
+ import IPointOfSaleCashDrawer from "./IPointOfSaleCashDrawer";
8
9
  import IPointOfSaleElavonTerminalDevice from "./IPointOfSaleElavonTerminalDevice";
9
10
  import IPointOfSalePrinterConnections from "./IPointOfSalePrinterConnections";
10
11
  import IPointOfSalePrintPlan from "./IPointOfSalePrintPlan";
@@ -69,6 +70,7 @@ interface IPointOfSaleLocalSetting {
69
70
  awaitingPaymentDeviceResponse: boolean;
70
71
  printPlans: IPointOfSalePrintPlan[];
71
72
  printService: boolean;
73
+ cashDrawers: IPointOfSaleCashDrawer[];
72
74
  }
73
75
  export default IPointOfSaleLocalSetting;
74
76
  export declare const initPointOfSaleLocalSetting: IPointOfSaleLocalSetting;
@@ -69,4 +69,5 @@ export const initPointOfSaleLocalSetting = {
69
69
  awaitingPaymentDeviceResponse: false,
70
70
  printPlans: [],
71
71
  printService: true,
72
+ cashDrawers: []
72
73
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.4.27",
3
+ "version": "1.4.28",
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.27 \" && git push origin "
14
+ "commit": "git add . && git commit -m \"version.1.4.28 \" && git push origin "
15
15
  },
16
16
  "files": [
17
17
  "/dist"