meemup-library 1.5.35 → 1.5.37

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.
@@ -24,6 +24,7 @@ interface IExtraItem {
24
24
  weight: number;
25
25
  doNotPrintOnReceipt: boolean;
26
26
  options: IExtraItemOption[];
27
+ spiciness: number;
27
28
  }
28
29
  export declare const initExtraItem: IExtraItem;
29
30
  export default IExtraItem;
@@ -22,5 +22,6 @@ export const initExtraItem = {
22
22
  packagingCost: "0.00",
23
23
  weight: 0,
24
24
  doNotPrintOnReceipt: false,
25
- options: []
25
+ options: [],
26
+ spiciness: 0
26
27
  };
@@ -7,6 +7,7 @@ export default interface IPointOfSalePrintPlan {
7
7
  connection: IPointOfSaleStarMicronicConnection | null;
8
8
  templateId: number;
9
9
  printCount: number;
10
+ printWhenOrderCreated: boolean;
10
11
  printWhenOrderSaved: boolean;
11
12
  printWhenOrderPaid: boolean;
12
13
  printWhenUserAcceptNewOrder: boolean;
@@ -6,6 +6,7 @@ export const initPointOfSalePrintPlan = {
6
6
  connection: null,
7
7
  templateId: -1,
8
8
  printCount: 1,
9
+ printWhenOrderCreated: true,
9
10
  printWhenOrderSaved: true,
10
11
  printWhenOrderPaid: true,
11
12
  printWhenUserAcceptNewOrder: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.5.35",
3
+ "version": "1.5.37",
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.5.35\" && git push origin "
14
+ "commit": "git add . && git commit -m \"version.1.5.37\" && git push origin "
15
15
  },
16
16
  "files": [
17
17
  "/dist"
@@ -26,4 +26,4 @@
26
26
  "dependencies": {
27
27
  "dayjs": "^1.11.13"
28
28
  }
29
- }
29
+ }