meemup-library 1.0.7 → 1.0.10
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.
- package/package.json +3 -3
- package/src/lib/index.ts +0 -107
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meemup-library",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
4
4
|
"description": "",
|
|
5
|
-
"main": "src/
|
|
5
|
+
"main": "./src/dist/index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "yarn build:esm && yarn build:cjs",
|
|
8
8
|
"build:esm": "tsc",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
11
11
|
},
|
|
12
12
|
"files": [
|
|
13
|
-
"/
|
|
13
|
+
"/dist"
|
|
14
14
|
],
|
|
15
15
|
"keywords": [],
|
|
16
16
|
"author": "",
|
package/src/lib/index.ts
DELETED
|
@@ -1,107 +0,0 @@
|
|
|
1
|
-
export * from "./controllers/ApiController";
|
|
2
|
-
export * from "./controllers/DashboardController";
|
|
3
|
-
export * from "./controllers/DateTimeController";
|
|
4
|
-
export * from "./controllers/LogController";
|
|
5
|
-
export * from "./controllers/LogScreenController";
|
|
6
|
-
export * from "./controllers/MoneyController";
|
|
7
|
-
export * from "./controllers/OrderScreenController";
|
|
8
|
-
export * from "./controllers/PhoneController";
|
|
9
|
-
export * from "./controllers/PrintContentController";
|
|
10
|
-
export * from "./controllers/ProductModalController";
|
|
11
|
-
export * from "./controllers/ToolController";
|
|
12
|
-
export * from "./controllers/ZoneController";
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
export * from "./enums/EnumBasketStep";
|
|
16
|
-
export * from "./enums/EnumCategoryAvailableIn";
|
|
17
|
-
export * from "./enums/EnumChannels";
|
|
18
|
-
export * from "./enums/EnumDashboardSort";
|
|
19
|
-
export * from "./enums/EnumDiscountType";
|
|
20
|
-
export * from "./enums/EnumFeeCalculationMode";
|
|
21
|
-
export * from "./enums/EnumFeeType";
|
|
22
|
-
export * from "./enums/EnumGender";
|
|
23
|
-
export * from "./enums/EnumLogType";
|
|
24
|
-
export * from "./enums/EnumNewOrderWarning";
|
|
25
|
-
export * from "./enums/EnumOpenCashDrawer";
|
|
26
|
-
export * from "./enums/EnumOrderScreenTab";
|
|
27
|
-
export * from "./enums/EnumOrderState";
|
|
28
|
-
export * from "./enums/EnumOrderType";
|
|
29
|
-
export * from "./enums/EnumPaymentState";
|
|
30
|
-
export * from "./enums/EnumPaymentType";
|
|
31
|
-
export * from "./enums/EnumPizzaSide";
|
|
32
|
-
export * from "./enums/EnumPriceMidpointRounding";
|
|
33
|
-
export * from "./enums/EnumPrintCommand";
|
|
34
|
-
export * from "./enums/EnumProductAvailableMode";
|
|
35
|
-
export * from "./enums/EnumShowOrderMode";
|
|
36
|
-
export * from "./enums/EnumSortMode";
|
|
37
|
-
export * from "./enums/EnumTipType";
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
export * from "./interfaces/IAccount";
|
|
41
|
-
export * from "./interfaces/IAction";
|
|
42
|
-
export * from "./interfaces/IAllergicStuffs";
|
|
43
|
-
export * from "./interfaces/IAnswer";
|
|
44
|
-
export * from "./interfaces/IApiAllOrder";
|
|
45
|
-
export * from "./interfaces/IApiEstimatedTimeBody";
|
|
46
|
-
export * from "./interfaces/IApiPayOnTerminalBody";
|
|
47
|
-
export * from "./interfaces/IApiShop";
|
|
48
|
-
export * from "./interfaces/ICalculateFeeResult";
|
|
49
|
-
export * from "./interfaces/ICard";
|
|
50
|
-
export * from "./interfaces/ICategory";
|
|
51
|
-
export * from "./interfaces/ICheckoutOption";
|
|
52
|
-
export * from "./interfaces/ICompanyFee";
|
|
53
|
-
export * from "./interfaces/ICompanyInvoiceDetail";
|
|
54
|
-
export * from "./interfaces/IConfigTodayReport";
|
|
55
|
-
export * from "./interfaces/ICustomer";
|
|
56
|
-
export * from "./interfaces/ICustomerAddress";
|
|
57
|
-
export * from "./interfaces/IDailyReportOtherData";
|
|
58
|
-
export * from "./interfaces/IDashboardScreenState";
|
|
59
|
-
export * from "./interfaces/IExtra";
|
|
60
|
-
export * from "./interfaces/IExtraItem";
|
|
61
|
-
export * from "./interfaces/IGeneralInformation";
|
|
62
|
-
export * from "./interfaces/IGeneralItems";
|
|
63
|
-
export * from "./interfaces/IKitchenScreenSetting";
|
|
64
|
-
export * from "./interfaces/ILocalSetting";
|
|
65
|
-
export * from "./interfaces/ILocation";
|
|
66
|
-
export * from "./interfaces/ILog";
|
|
67
|
-
export * from "./interfaces/ILogin";
|
|
68
|
-
export * from "./interfaces/IOnlineOrderItem";
|
|
69
|
-
export * from "./interfaces/IOrderDetailOrderItem";
|
|
70
|
-
export * from "./interfaces/IOrderScreenState";
|
|
71
|
-
export * from "./interfaces/IOrderState";
|
|
72
|
-
export * from "./interfaces/IOrderTypeModal";
|
|
73
|
-
export * from "./interfaces/IPaymentStatusChanged";
|
|
74
|
-
export * from "./interfaces/IPreviuosOrder";
|
|
75
|
-
export * from "./interfaces/IPrintTemplate";
|
|
76
|
-
export * from "./interfaces/IPrinterAndPrintCount";
|
|
77
|
-
export * from "./interfaces/IProduct";
|
|
78
|
-
export * from "./interfaces/IProductExtra";
|
|
79
|
-
export * from "./interfaces/IProductModalState";
|
|
80
|
-
export * from "./interfaces/ISaveOrder";
|
|
81
|
-
export * from "./interfaces/ISearchAddressDetail";
|
|
82
|
-
export * from "./interfaces/ISelectedExtraItem";
|
|
83
|
-
export * from "./interfaces/ISelectedProductExtra";
|
|
84
|
-
export * from "./interfaces/ISetting";
|
|
85
|
-
export * from "./interfaces/ISignalOrderChanged";
|
|
86
|
-
export * from "./interfaces/ISpecificPayment";
|
|
87
|
-
export * from "./interfaces/IStarMicronicPrintTask";
|
|
88
|
-
export * from "./interfaces/IStarMicronicPrinter";
|
|
89
|
-
export * from "./interfaces/IStorageControler";
|
|
90
|
-
export * from "./interfaces/IStore";
|
|
91
|
-
export * from "./interfaces/ISystem";
|
|
92
|
-
export * from "./interfaces/ITask";
|
|
93
|
-
export * from "./interfaces/ITextValue";
|
|
94
|
-
export * from "./interfaces/ITodayOrderCount";
|
|
95
|
-
export * from "./interfaces/IUdpPacket";
|
|
96
|
-
export * from "./interfaces/IWebMessage";
|
|
97
|
-
export * from "./interfaces/IWorkScreen";
|
|
98
|
-
export * from "./interfaces/IZone";
|
|
99
|
-
export * from "./interfaces/IZoneCost";
|
|
100
|
-
export * from "./regx/CreditCardRegx";
|
|
101
|
-
export * from "./regx/DomainRegx";
|
|
102
|
-
export * from "./regx/EmailRegx";
|
|
103
|
-
export * from "./regx/MoneyRegx";
|
|
104
|
-
export * from "./regx/PhoneRegx";
|
|
105
|
-
export * from "./regx/PostalCodeRegx";
|
|
106
|
-
|
|
107
|
-
export * from "./statics";
|