meemup-library 1.1.25 → 1.1.26
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,5 @@
|
|
|
1
1
|
import IBaseCustomer from "../IBaseCustomer";
|
|
2
2
|
import ICategory from "../ICategory";
|
|
3
|
-
import ICheckoutOption from "../ICheckoutOption";
|
|
4
3
|
import IExtra from "../IExtra";
|
|
5
4
|
import IGeneralInformation from "../IGeneralInformation";
|
|
6
5
|
import IGeneralItems from "../IGeneralItems";
|
|
@@ -10,6 +9,7 @@ import IPrintTemplate from "../IPrintTemplate";
|
|
|
10
9
|
import IProduct from "../IProduct";
|
|
11
10
|
import IStarMicronicPrinter from "../IStarMicronicPrinter";
|
|
12
11
|
import ITextValue from "../ITextValue";
|
|
12
|
+
import IZone from "../IZone";
|
|
13
13
|
interface IPointOfSaleApiShop {
|
|
14
14
|
ok: boolean;
|
|
15
15
|
products: IProduct[];
|
|
@@ -20,7 +20,7 @@ interface IPointOfSaleApiShop {
|
|
|
20
20
|
customers: IBaseCustomer[];
|
|
21
21
|
printTemplates: IPrintTemplate[];
|
|
22
22
|
terminals: ITextValue[];
|
|
23
|
-
|
|
23
|
+
zones: IZone[];
|
|
24
24
|
generalItems: IGeneralItems;
|
|
25
25
|
starMicronicPrinters: IStarMicronicPrinter[];
|
|
26
26
|
driversNames: ITextValue[];
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { initCheckoutOption } from "../ICheckoutOption";
|
|
2
1
|
import { initGeneralInformation } from "../IGeneralInformation";
|
|
3
2
|
import { initGeneralItems } from "../IGeneralItems";
|
|
4
3
|
import { initPointOfSaleSetting } from "../IPointOfSaleSetting";
|
|
@@ -12,7 +11,7 @@ export const initApiShop = {
|
|
|
12
11
|
setting: initPointOfSaleSetting,
|
|
13
12
|
products: [],
|
|
14
13
|
terminals: [],
|
|
15
|
-
|
|
14
|
+
zones: [],
|
|
16
15
|
generalItems: initGeneralItems,
|
|
17
16
|
starMicronicPrinters: [],
|
|
18
17
|
driversNames: [],
|