meemup-library 1.5.56 → 1.5.59
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.
|
@@ -31,7 +31,7 @@ export default interface IKioskDeviceSetting {
|
|
|
31
31
|
productDisplayMode: number;
|
|
32
32
|
order: {
|
|
33
33
|
defaultTableId: number;
|
|
34
|
-
|
|
34
|
+
initialOrderType: EnumOrderType;
|
|
35
35
|
defaultPaymentType: EnumPaymentType;
|
|
36
36
|
showCustomerPhoneInput: boolean;
|
|
37
37
|
showCustomerEmailInput: boolean;
|
|
@@ -48,7 +48,7 @@ export const initKioskDeviceSetting = {
|
|
|
48
48
|
productDisplayMode: 1,
|
|
49
49
|
order: {
|
|
50
50
|
defaultTableId: -1,
|
|
51
|
-
|
|
51
|
+
initialOrderType: EnumOrderType.pickup,
|
|
52
52
|
defaultPaymentType: EnumPaymentType.DebitMachine,
|
|
53
53
|
showCustomerPhoneInput: false,
|
|
54
54
|
showCustomerEmailInput: false,
|
|
@@ -58,9 +58,9 @@ export const initKioskDeviceSetting = {
|
|
|
58
58
|
mandatoryFirstName: false,
|
|
59
59
|
// mandatoryLastName: false,
|
|
60
60
|
mandatoryTableId: false,
|
|
61
|
-
canChangeOrderType:
|
|
61
|
+
canChangeOrderType: true,
|
|
62
62
|
canChangeTable: false,
|
|
63
|
-
canChangePaymentType:
|
|
63
|
+
canChangePaymentType: true,
|
|
64
64
|
orderNumberStartFrom: 1000,
|
|
65
65
|
payLater: false,
|
|
66
66
|
payNow: true,
|
|
@@ -10,6 +10,7 @@ export default interface IKioskGlobalSetting {
|
|
|
10
10
|
categories: ITextValue[];
|
|
11
11
|
homePage: {
|
|
12
12
|
logo: string | null;
|
|
13
|
+
backgroundImage: string;
|
|
13
14
|
buttonText: string | null;
|
|
14
15
|
description: string | null;
|
|
15
16
|
items: any[];
|
|
@@ -36,5 +37,7 @@ export default interface IKioskGlobalSetting {
|
|
|
36
37
|
additionalPickupInstructions: boolean;
|
|
37
38
|
sendOrderNotificationViaSMSToCustomer: boolean;
|
|
38
39
|
additionalPickupInstructionsTypes: any[];
|
|
40
|
+
orderNumberStartFrom: number;
|
|
41
|
+
resetOrderNumberDaily: boolean;
|
|
39
42
|
}
|
|
40
43
|
export declare const initGlobalSetting: IKioskGlobalSetting;
|
|
@@ -15,6 +15,7 @@ export const initGlobalSetting = {
|
|
|
15
15
|
],
|
|
16
16
|
homePage: {
|
|
17
17
|
logo: "",
|
|
18
|
+
backgroundImage: "",
|
|
18
19
|
buttonText: "Start your order",
|
|
19
20
|
description: "",
|
|
20
21
|
items: [],
|
|
@@ -39,4 +40,6 @@ export const initGlobalSetting = {
|
|
|
39
40
|
sendOrderNotificationViaSMSToCustomer: false,
|
|
40
41
|
showNoPopupByDefault: 1,
|
|
41
42
|
taxTitle: "Tax",
|
|
43
|
+
orderNumberStartFrom: 100,
|
|
44
|
+
resetOrderNumberDaily: true,
|
|
42
45
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meemup-library",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.59",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"remove:one": "rimraf dist",
|
|
12
12
|
"remove:two": "rimraf ./src/dist",
|
|
13
13
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
14
|
-
"commit": "git add . && git commit -m \"version.1.5.
|
|
14
|
+
"commit": "git add . && git commit -m \"version.1.5.59\" && git push origin "
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
17
17
|
"/dist"
|