meemup-library 1.3.43 → 1.3.45

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.
@@ -6,9 +6,10 @@ interface IStarMicronicPrintTask {
6
6
  count: number;
7
7
  macAddress: string;
8
8
  customPrint: boolean;
9
- type: "order" | "kitchen-saved-order" | "kitchen-paid-order" | "customer-saved-order" | "customer-paid-order" | "daily_report" | "open_cash_drawer" | "cash-drawer";
9
+ type: "print-markup" | "order" | "kitchen-saved-order" | "kitchen-paid-order" | "customer-saved-order" | "customer-paid-order" | "daily_report" | "open_cash_drawer" | "cash-drawer";
10
10
  data: any;
11
11
  note?: string;
12
12
  cashDrawer?: IPointOfSaleActionFormCashDrawer;
13
+ markup?: string;
13
14
  }
14
15
  export default IStarMicronicPrintTask;
@@ -0,0 +1,6 @@
1
+ export default interface IPointOfSaleCashDrawerReportForm {
2
+ cashDrawerId: number;
3
+ since: string;
4
+ until: string;
5
+ }
6
+ export declare const initPointOfSaleCashDrawerReportForm: IPointOfSaleCashDrawerReportForm;
@@ -0,0 +1,5 @@
1
+ export const initPointOfSaleCashDrawerReportForm = {
2
+ cashDrawerId: -1,
3
+ since: "",
4
+ until: ""
5
+ };
@@ -0,0 +1,9 @@
1
+ import TCashDrawerMode from "../../types/TCashDrawerMode";
2
+ export default interface IPointOfSaleCashDrawerReportRecord {
3
+ id: string;
4
+ mode: TCashDrawerMode;
5
+ dateTime: string;
6
+ amount: number;
7
+ reason: string;
8
+ }
9
+ export declare const initPointOfSaleCashDrawerReportRecord: IPointOfSaleCashDrawerReportRecord;
@@ -0,0 +1,7 @@
1
+ export const initPointOfSaleCashDrawerReportRecord = {
2
+ id: "",
3
+ mode: 1,
4
+ dateTime: "",
5
+ amount: 0,
6
+ reason: ""
7
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.3.43",
3
+ "version": "1.3.45",
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.3.43 \" && git push origin "
14
+ "commit": "git add . && git commit -m \"version.1.3.45 \" && git push origin "
15
15
  },
16
16
  "files": [
17
17
  "/dist"