meemup-library 1.2.76 → 1.2.77
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,6 @@
|
|
|
1
|
+
var EnumProductLongPress;
|
|
2
|
+
(function (EnumProductLongPress) {
|
|
3
|
+
EnumProductLongPress[EnumProductLongPress["NOT_ACTION"] = 0] = "NOT_ACTION";
|
|
4
|
+
EnumProductLongPress[EnumProductLongPress["TOGGLE_SNOOZ"] = 1] = "TOGGLE_SNOOZ";
|
|
5
|
+
})(EnumProductLongPress || (EnumProductLongPress = {}));
|
|
6
|
+
export default EnumProductLongPress;
|
|
@@ -3,6 +3,7 @@ import EnumNotifyOnlineStoreNewOrder from "../../enums/EnumNotifyOnlineStoreNewO
|
|
|
3
3
|
import EnumPaymentState from "../../enums/EnumPaymentState";
|
|
4
4
|
import EnumPointOfSaleDefaultSaveState from "../../enums/EnumPointOfSaleDefaultSaveState";
|
|
5
5
|
import EnumPrintCommand from "../../enums/EnumPrintCommand";
|
|
6
|
+
import EnumProductLongPress from "../../enums/EnumProductLongPress";
|
|
6
7
|
import ITextValue from "../ITextValue";
|
|
7
8
|
import IPointOfSaleSettingCashDrawerTrigger from "./IPointOfSaleSettingCashDrawerTrigger";
|
|
8
9
|
import IPointOfSaleSettingReceiptCopiesOnOrderPayment from "./IPointOfSaleSettingReceiptCopiesOnOrderPayment";
|
|
@@ -57,6 +58,7 @@ interface IPointOfSaleLocalSetting {
|
|
|
57
58
|
templateReceipt: IPointOfSaleSettingTemplateReceipt;
|
|
58
59
|
receiptCopiesOnOrderPayment: IPointOfSaleSettingReceiptCopiesOnOrderPayment;
|
|
59
60
|
receiptCopiesOnOrderSave: IPointOfSaleSettingReceiptCopiesOnOrderSave;
|
|
61
|
+
productLongPress: EnumProductLongPress;
|
|
60
62
|
}
|
|
61
63
|
export default IPointOfSaleLocalSetting;
|
|
62
64
|
export declare const initPointOfSaleLocalSetting: IPointOfSaleLocalSetting;
|
|
@@ -3,6 +3,7 @@ import EnumNotifyOnlineStoreNewOrder from "../../enums/EnumNotifyOnlineStoreNewO
|
|
|
3
3
|
import EnumPaymentState from "../../enums/EnumPaymentState";
|
|
4
4
|
import EnumPointOfSaleDefaultSaveState from "../../enums/EnumPointOfSaleDefaultSaveState";
|
|
5
5
|
import EnumPrintCommand from "../../enums/EnumPrintCommand";
|
|
6
|
+
import EnumProductLongPress from "../../enums/EnumProductLongPress";
|
|
6
7
|
import { INIT_TERMINAL, UDP_NO_CLINET } from "../../statics";
|
|
7
8
|
import { initPointOfSaleSettingCashDrawerTrigger } from "./IPointOfSaleSettingCashDrawerTrigger";
|
|
8
9
|
import { initPointOfSaleSettingReceiptCopiesOnOrderPayment } from "./IPointOfSaleSettingReceiptCopiesOnOrderPayment";
|
|
@@ -57,4 +58,5 @@ export const initPointOfSaleLocalSetting = {
|
|
|
57
58
|
templateReceipt: initPointOfSaleSettingTemplateReceipt,
|
|
58
59
|
receiptCopiesOnOrderPayment: initPointOfSaleSettingReceiptCopiesOnOrderPayment,
|
|
59
60
|
receiptCopiesOnOrderSave: initPointOfSaleSettingReceiptCopiesOnOrderSave,
|
|
61
|
+
productLongPress: EnumProductLongPress.NOT_ACTION
|
|
60
62
|
};
|