@feedmepos/mf-order-setting 0.0.31 → 0.0.32
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/dist/{KioskDevicesView-CWzmu0rZ.js → KioskDevicesView-D2w5MMCg.js} +1 -1
- package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-CldPl8BW.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-BwxGSbuI.js} +2 -2
- package/dist/{KioskSettingView-BsxOiUdj.js → KioskSettingView-CUMAS8OG.js} +1 -1
- package/dist/{KioskView-DBnQe7Mp.js → KioskView-NetckXQx.js} +4 -4
- package/dist/{OrderSettingsView-BvDtRpI_.js → OrderSettingsView-CL0o1fHq.js} +5336 -5287
- package/dist/{app-G3iTmEHp.js → app-DnvFFLBj.js} +4 -4
- package/dist/app.js +1 -1
- package/dist/common/convertor/index.d.ts +2 -0
- package/dist/{dayjs.min-ChzYZzP1.js → dayjs.min-BAx2Uba9.js} +1 -1
- package/dist/frontend/mf-order/src/views/order-settings/delivery/integrated-delivery/ExternalSetting.vue.d.ts +4 -4
- package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{index-Bacw_1Kj.js → index-DuneL3VN.js} +2 -2
- package/dist/package/entity/booking/booking.do.d.ts +20 -20
- package/dist/package/entity/delivery/delivery.dto.d.ts +4 -4
- package/dist/package/entity/food-court/food-court.dto.d.ts +29 -29
- package/dist/package/entity/food-court/order.do.d.ts +4 -2
- package/dist/package/entity/food-court/order.dto.d.ts +9524 -91
- package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +4 -4
- package/dist/package/entity/incoming-order/incoming-order.do.d.ts +126 -0
- package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +12 -12
- package/dist/package/entity/index.d.ts +1 -0
- package/dist/package/entity/kiosk/kiosk.do.d.ts +6 -6
- package/dist/package/entity/kiosk/kiosk.dto.d.ts +6 -6
- package/dist/package/entity/kiosk/marketing/marketing.dto.d.ts +64 -17
- package/dist/package/entity/marketing/marketing.dto.d.ts +239 -0
- package/dist/package/entity/order/order-item/order-item.dto.d.ts +8 -0
- package/dist/package/entity/order/order.dto.d.ts +24 -16
- package/dist/package/entity/order-platform/external/menu/external-master-menu.do.d.ts +2073 -0
- package/dist/package/entity/order-platform/external/menu/external-menu.do.d.ts +736 -214
- package/dist/package/entity/order-platform/external/setting/external-setting.do.d.ts +3 -3
- package/dist/package/entity/order-platform/external/setting/external-setting.dto.d.ts +3 -3
- package/dist/package/entity/order-platform/foodpanda/foodpanda-order.dto.d.ts +4 -4
- package/dist/package/entity/order-platform/grabfood/grabfood-menu.do.d.ts +2 -2
- package/dist/package/entity/order-platform/grabfood/grabfood-order.do.d.ts +4 -4
- package/dist/package/entity/order-platform/menu.dto.d.ts +44 -44
- package/dist/package/entity/order-platform/order-platform.enum.d.ts +1 -1
- package/dist/package/entity/order-platform/shopeefood/shopeefood-order.do.d.ts +59 -4
- package/dist/package/entity/order-platform/shopeefood/shopeefood-order.dto.d.ts +32 -0
- package/dist/package/entity/queue/queue.do.d.ts +12 -0
- package/dist/package/entity/queue/queue.dto.d.ts +9 -9
- package/dist/package/entity/restaurant/restaurant.dto.d.ts +9 -9
- package/dist/{queue.do-BtfSllT8.js → queue.do-B1npBXsB.js} +20160 -19771
- package/package.json +2 -2
|
@@ -48,7 +48,7 @@ export declare const FdoExternalSetting: z.ZodObject<{
|
|
|
48
48
|
autoSend: boolean;
|
|
49
49
|
autoCloseBill: boolean;
|
|
50
50
|
}>;
|
|
51
|
-
platform: z.ZodEnum<["FOOD_PANDA", "GRAB_FOOD", "SHOPEE_FOOD", "FEEDME", "IN_HOUSE", "ZUS"]>;
|
|
51
|
+
platform: z.ZodEnum<["FOOD_PANDA", "GRAB_FOOD", "SHOPEE_FOOD", "DELIVEROO", "FEEDME", "IN_HOUSE", "ZUS"]>;
|
|
52
52
|
delivery: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
53
53
|
catalogId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
54
54
|
deliveryFeeTax: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -100,7 +100,7 @@ export declare const FdoExternalSetting: z.ZodObject<{
|
|
|
100
100
|
} | null | undefined;
|
|
101
101
|
_id: string;
|
|
102
102
|
enable: boolean;
|
|
103
|
-
platform: "IN_HOUSE" | "FEEDME" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "ZUS";
|
|
103
|
+
platform: "IN_HOUSE" | "FEEDME" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "DELIVEROO" | "ZUS";
|
|
104
104
|
config: {
|
|
105
105
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
106
106
|
autoAccept: boolean;
|
|
@@ -121,7 +121,7 @@ export declare const FdoExternalSetting: z.ZodObject<{
|
|
|
121
121
|
} | null | undefined;
|
|
122
122
|
_id: string;
|
|
123
123
|
enable: boolean;
|
|
124
|
-
platform: "IN_HOUSE" | "FEEDME" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "ZUS";
|
|
124
|
+
platform: "IN_HOUSE" | "FEEDME" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "DELIVEROO" | "ZUS";
|
|
125
125
|
config: {
|
|
126
126
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
127
127
|
autoAccept: boolean;
|
|
@@ -18,7 +18,7 @@ export declare const FdtoExternalSettingCreateOrUpdate: z.ZodObject<Omit<{
|
|
|
18
18
|
autoSend: boolean;
|
|
19
19
|
autoCloseBill: boolean;
|
|
20
20
|
}>;
|
|
21
|
-
platform: z.ZodEnum<["FOOD_PANDA", "GRAB_FOOD", "SHOPEE_FOOD", "FEEDME", "IN_HOUSE", "ZUS"]>;
|
|
21
|
+
platform: z.ZodEnum<["FOOD_PANDA", "GRAB_FOOD", "SHOPEE_FOOD", "DELIVEROO", "FEEDME", "IN_HOUSE", "ZUS"]>;
|
|
22
22
|
delivery: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
23
23
|
catalogId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
24
24
|
deliveryFeeTax: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -69,7 +69,7 @@ export declare const FdtoExternalSettingCreateOrUpdate: z.ZodObject<Omit<{
|
|
|
69
69
|
} | null | undefined;
|
|
70
70
|
} | null | undefined;
|
|
71
71
|
enable: boolean;
|
|
72
|
-
platform: "IN_HOUSE" | "FEEDME" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "ZUS";
|
|
72
|
+
platform: "IN_HOUSE" | "FEEDME" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "DELIVEROO" | "ZUS";
|
|
73
73
|
config: {
|
|
74
74
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
75
75
|
autoAccept: boolean;
|
|
@@ -89,7 +89,7 @@ export declare const FdtoExternalSettingCreateOrUpdate: z.ZodObject<Omit<{
|
|
|
89
89
|
} | null | undefined;
|
|
90
90
|
} | null | undefined;
|
|
91
91
|
enable: boolean;
|
|
92
|
-
platform: "IN_HOUSE" | "FEEDME" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "ZUS";
|
|
92
|
+
platform: "IN_HOUSE" | "FEEDME" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "DELIVEROO" | "ZUS";
|
|
93
93
|
config: {
|
|
94
94
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
95
95
|
autoAccept: boolean;
|
|
@@ -1272,7 +1272,7 @@ export declare const FdoFoodpandaOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1272
1272
|
postcode: string;
|
|
1273
1273
|
}>;
|
|
1274
1274
|
phoneNo: z.ZodString;
|
|
1275
|
-
email: z.ZodString
|
|
1275
|
+
email: z.ZodDefault<z.ZodString>;
|
|
1276
1276
|
regNo: z.ZodString;
|
|
1277
1277
|
legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1278
1278
|
sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -1639,6 +1639,7 @@ export declare const FdoFoodpandaOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1639
1639
|
}, {
|
|
1640
1640
|
code?: string | null | undefined;
|
|
1641
1641
|
url?: string | null | undefined;
|
|
1642
|
+
email?: string | undefined;
|
|
1642
1643
|
description?: string | null | undefined;
|
|
1643
1644
|
_id?: string | null | undefined;
|
|
1644
1645
|
legalName?: string | null | undefined;
|
|
@@ -1709,7 +1710,6 @@ export declare const FdoFoodpandaOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1709
1710
|
city: string;
|
|
1710
1711
|
postcode: string;
|
|
1711
1712
|
};
|
|
1712
|
-
email: string;
|
|
1713
1713
|
phoneNo: string;
|
|
1714
1714
|
regNo: string;
|
|
1715
1715
|
}>;
|
|
@@ -3578,6 +3578,7 @@ export declare const FdoFoodpandaOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
3578
3578
|
profile: {
|
|
3579
3579
|
code?: string | null | undefined;
|
|
3580
3580
|
url?: string | null | undefined;
|
|
3581
|
+
email?: string | undefined;
|
|
3581
3582
|
description?: string | null | undefined;
|
|
3582
3583
|
_id?: string | null | undefined;
|
|
3583
3584
|
legalName?: string | null | undefined;
|
|
@@ -3648,7 +3649,6 @@ export declare const FdoFoodpandaOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
3648
3649
|
city: string;
|
|
3649
3650
|
postcode: string;
|
|
3650
3651
|
};
|
|
3651
|
-
email: string;
|
|
3652
3652
|
phoneNo: string;
|
|
3653
3653
|
regNo: string;
|
|
3654
3654
|
};
|
|
@@ -4497,6 +4497,7 @@ export declare const FdoFoodpandaOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
4497
4497
|
profile: {
|
|
4498
4498
|
code?: string | null | undefined;
|
|
4499
4499
|
url?: string | null | undefined;
|
|
4500
|
+
email?: string | undefined;
|
|
4500
4501
|
description?: string | null | undefined;
|
|
4501
4502
|
_id?: string | null | undefined;
|
|
4502
4503
|
legalName?: string | null | undefined;
|
|
@@ -4567,7 +4568,6 @@ export declare const FdoFoodpandaOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
4567
4568
|
city: string;
|
|
4568
4569
|
postcode: string;
|
|
4569
4570
|
};
|
|
4570
|
-
email: string;
|
|
4571
4571
|
phoneNo: string;
|
|
4572
4572
|
regNo: string;
|
|
4573
4573
|
};
|
|
@@ -2379,7 +2379,6 @@ declare const GFMenuV2: z.ZodObject<{
|
|
|
2379
2379
|
code: "MYR" | "IDR" | "KHR" | "MMK" | "PHP" | "SGD" | "THB" | "VND";
|
|
2380
2380
|
exponent: number;
|
|
2381
2381
|
};
|
|
2382
|
-
merchantID: string;
|
|
2383
2382
|
categories: {
|
|
2384
2383
|
name: string;
|
|
2385
2384
|
id: string;
|
|
@@ -2439,6 +2438,7 @@ declare const GFMenuV2: z.ZodObject<{
|
|
|
2439
2438
|
sellingTimeID: string;
|
|
2440
2439
|
sequence: number;
|
|
2441
2440
|
}[];
|
|
2441
|
+
merchantID: string;
|
|
2442
2442
|
sellingTimes: {
|
|
2443
2443
|
name: string;
|
|
2444
2444
|
id: string;
|
|
@@ -2503,7 +2503,6 @@ declare const GFMenuV2: z.ZodObject<{
|
|
|
2503
2503
|
code: "MYR" | "IDR" | "KHR" | "MMK" | "PHP" | "SGD" | "THB" | "VND";
|
|
2504
2504
|
exponent: number;
|
|
2505
2505
|
};
|
|
2506
|
-
merchantID: string;
|
|
2507
2506
|
categories: {
|
|
2508
2507
|
name: string;
|
|
2509
2508
|
id: string;
|
|
@@ -2563,6 +2562,7 @@ declare const GFMenuV2: z.ZodObject<{
|
|
|
2563
2562
|
sellingTimeID: string;
|
|
2564
2563
|
sequence: number;
|
|
2565
2564
|
}[];
|
|
2565
|
+
merchantID: string;
|
|
2566
2566
|
sellingTimes: {
|
|
2567
2567
|
name: string;
|
|
2568
2568
|
id: string;
|
|
@@ -2798,7 +2798,7 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
2798
2798
|
postcode: string;
|
|
2799
2799
|
}>;
|
|
2800
2800
|
phoneNo: z.ZodString;
|
|
2801
|
-
email: z.ZodString
|
|
2801
|
+
email: z.ZodDefault<z.ZodString>;
|
|
2802
2802
|
regNo: z.ZodString;
|
|
2803
2803
|
legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2804
2804
|
sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -3165,6 +3165,7 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
3165
3165
|
}, {
|
|
3166
3166
|
code?: string | null | undefined;
|
|
3167
3167
|
url?: string | null | undefined;
|
|
3168
|
+
email?: string | undefined;
|
|
3168
3169
|
description?: string | null | undefined;
|
|
3169
3170
|
_id?: string | null | undefined;
|
|
3170
3171
|
legalName?: string | null | undefined;
|
|
@@ -3235,7 +3236,6 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
3235
3236
|
city: string;
|
|
3236
3237
|
postcode: string;
|
|
3237
3238
|
};
|
|
3238
|
-
email: string;
|
|
3239
3239
|
phoneNo: string;
|
|
3240
3240
|
regNo: string;
|
|
3241
3241
|
}>;
|
|
@@ -5104,6 +5104,7 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
5104
5104
|
profile: {
|
|
5105
5105
|
code?: string | null | undefined;
|
|
5106
5106
|
url?: string | null | undefined;
|
|
5107
|
+
email?: string | undefined;
|
|
5107
5108
|
description?: string | null | undefined;
|
|
5108
5109
|
_id?: string | null | undefined;
|
|
5109
5110
|
legalName?: string | null | undefined;
|
|
@@ -5174,7 +5175,6 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
5174
5175
|
city: string;
|
|
5175
5176
|
postcode: string;
|
|
5176
5177
|
};
|
|
5177
|
-
email: string;
|
|
5178
5178
|
phoneNo: string;
|
|
5179
5179
|
regNo: string;
|
|
5180
5180
|
};
|
|
@@ -5974,6 +5974,7 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
5974
5974
|
profile: {
|
|
5975
5975
|
code?: string | null | undefined;
|
|
5976
5976
|
url?: string | null | undefined;
|
|
5977
|
+
email?: string | undefined;
|
|
5977
5978
|
description?: string | null | undefined;
|
|
5978
5979
|
_id?: string | null | undefined;
|
|
5979
5980
|
legalName?: string | null | undefined;
|
|
@@ -6044,7 +6045,6 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
6044
6045
|
city: string;
|
|
6045
6046
|
postcode: string;
|
|
6046
6047
|
};
|
|
6047
|
-
email: string;
|
|
6048
6048
|
phoneNo: string;
|
|
6049
6049
|
regNo: string;
|
|
6050
6050
|
};
|