meemup-library 1.0.94 → 1.0.96

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.
@@ -0,0 +1,11 @@
1
+ export default interface IPointOfSalePrintParts {
2
+ categories: boolean;
3
+ channels: boolean;
4
+ deliveryZones: boolean;
5
+ details: boolean;
6
+ drivers: boolean;
7
+ orderTypes: boolean;
8
+ payments: boolean;
9
+ thirdPartySales: boolean;
10
+ }
11
+ export declare const initPointOfSalePrintParts: IPointOfSalePrintParts;
@@ -0,0 +1,10 @@
1
+ export const initPointOfSalePrintParts = {
2
+ categories: true,
3
+ channels: true,
4
+ deliveryZones: true,
5
+ details: true,
6
+ drivers: true,
7
+ orderTypes: true,
8
+ payments: true,
9
+ thirdPartySales: true,
10
+ };
@@ -0,0 +1,6 @@
1
+ export default interface IPointOfSaleReportForm {
2
+ startDate: Date;
3
+ endDate: Date;
4
+ type: number;
5
+ }
6
+ export declare const initPointOfSaleReportForm: IPointOfSaleReportForm;
@@ -0,0 +1,5 @@
1
+ export const initPointOfSaleReportForm = {
2
+ startDate: new Date(),
3
+ endDate: new Date(),
4
+ type: 1
5
+ };
@@ -8,6 +8,7 @@ export interface ISaveOrder {
8
8
  discount: ISaveOrderDiscount | null;
9
9
  orderType: number;
10
10
  time: string | null;
11
+ date: string | null;
11
12
  asSoonAsPossible: boolean;
12
13
  paymentType: number;
13
14
  paymentState: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.0.94",
3
+ "version": "1.0.96",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",