meemup-library 1.1.0 → 1.1.2

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.
@@ -1,6 +1,6 @@
1
1
  export default interface IPointOfSalePrintParts {
2
2
  macAddress: string;
3
- summary: boolean;
3
+ summaries: boolean;
4
4
  categories: boolean;
5
5
  channels: boolean;
6
6
  deliveryZones: boolean;
@@ -1,6 +1,6 @@
1
1
  export const initPointOfSalePrintParts = {
2
2
  macAddress: "",
3
- summary: true,
3
+ summaries: true,
4
4
  categories: true,
5
5
  channels: true,
6
6
  deliveryZones: true,
@@ -1,9 +1,11 @@
1
+ import ITextValue from "./ITextValue";
1
2
  export default interface ITurnoverDetail {
2
3
  title: string;
3
4
  description: string;
4
5
  dateTime: string;
5
6
  since: string;
6
7
  until: string;
8
+ summaries: ITextValue[];
7
9
  details: RootObjectDetails[];
8
10
  categories: RootObjectCategories[];
9
11
  channels: RootObjectChannels[];
@@ -4,6 +4,7 @@ export const initTurnoverDetail = {
4
4
  dateTime: "",
5
5
  since: "",
6
6
  until: "",
7
+ summaries: [],
7
8
  details: [],
8
9
  categories: [],
9
10
  channels: [],
package/dist/statics.d.ts CHANGED
@@ -14,6 +14,7 @@ export declare const UDP_NO_CLINET = "No Client";
14
14
  export declare const DEFAULT_DRIVER: ITextValue;
15
15
  export declare const INIT_TERMINAL: ITextValue;
16
16
  export declare const POS_SIGNALR: {
17
+ refresh_cancel_orders: string;
17
18
  refresh_orders: string;
18
19
  show_notify: string;
19
20
  order_status_changed: string;
package/dist/statics.js CHANGED
@@ -16,6 +16,7 @@ export const INIT_TERMINAL = {
16
16
  value: null
17
17
  };
18
18
  export const POS_SIGNALR = {
19
+ refresh_cancel_orders: "RefreshCancelOrders",
19
20
  refresh_orders: "RefreshOrders",
20
21
  show_notify: "ShowNotify",
21
22
  order_status_changed: "OrderChanged",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",