@feedmepos/mf-order-setting 0.0.48 → 0.0.50
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-iZTQ--DO.js → KioskDevicesView-u14hzPbE.js} +1 -1
- package/dist/KioskDevicesView.vue_vue_type_script_setup_true_lang-DBgRDIoS.js +501 -0
- package/dist/{KioskSettingView-mN7UPNYu.js → KioskSettingView-DmvtZcV1.js} +34 -33
- package/dist/KioskView-M8V91gD5.js +474 -0
- package/dist/{OrderSettingsView-B5Nq_u9Z.js → OrderSettingsView-Bl3LshG3.js} +15016 -14688
- package/dist/{app-B3KtJhiw.js → app-CLewMjcd.js} +89 -25
- package/dist/app.js +1 -1
- package/dist/{dayjs.min-GjkM9dM2.js → dayjs.min-DCTYRWyD.js} +1 -1
- package/dist/frontend/mf-order/src/api/restaurant-setting/index.d.ts +2 -1
- package/dist/frontend/mf-order/src/app.d.ts +64 -0
- package/dist/frontend/mf-order/src/main.d.ts +64 -0
- package/dist/frontend/mf-order/src/modules/kiosk/interface.d.ts +1 -0
- package/dist/frontend/mf-order/src/stores/kiosk/index.d.ts +3 -0
- package/dist/frontend/mf-order/src/stores/menu/menu.d.ts +1 -0
- package/dist/frontend/mf-order/src/stores/restaurant/index.d.ts +5 -2
- package/dist/frontend/mf-order/src/views/kiosk/devices/KioskDevicesView.vue.d.ts +6 -3
- package/dist/frontend/mf-order/src/views/order-settings/delivery/integrated-delivery/ExternalSetting.vue.d.ts +8 -0
- package/dist/frontend/mf-order/src/views/order-settings/drive-thru/DriveThruSetting.vue.d.ts +2 -0
- package/dist/frontend/mf-order/src/views/order-settings/servicecharge/ServiceChargeRule.vue.d.ts +2 -2
- package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{index-Dwzta1U-.js → index-B7LtJeBJ.js} +2 -2
- package/dist/{menu.dto-DgPhiIVk.js → menu.dto-Co7iXHNr.js} +25558 -25019
- package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +108 -16
- package/dist/package/entity/incoming-order/incoming-order.do.d.ts +63 -18
- package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +118 -18
- package/dist/package/entity/kiosk/kiosk.do.d.ts +32 -0
- package/dist/package/entity/kiosk/kiosk.dto.d.ts +44 -0
- package/dist/package/entity/kiosk/marketing/marketing.dto.d.ts +1071 -0
- package/dist/package/entity/order/order-item/order-item.dto.d.ts +8 -0
- package/dist/package/entity/order/order.dto.d.ts +16 -8
- package/dist/package/entity/order/order.enum.d.ts +2 -0
- package/dist/package/entity/order-platform/deliveroo/deliveroo-dto.d.ts +2 -2
- package/dist/package/entity/order-platform/deliveroo/deliveroo-setting.do.d.ts +2 -2
- package/dist/package/entity/order-platform/external/order/external-order.do.d.ts +62 -0
- package/dist/package/entity/order-platform/external/order/external-order.dto.d.ts +178 -0
- package/dist/package/entity/order-platform/external/setting/external-setting.do.d.ts +6 -0
- package/dist/package/entity/order-platform/external/setting/external-setting.dto.d.ts +6 -0
- package/dist/package/entity/order-platform/foodpanda/foodpanda-settings.do.d.ts +4 -4
- package/dist/package/entity/order-platform/foodpanda/foodpanda-settings.dto.d.ts +5 -5
- package/dist/package/entity/order-platform/grabfood/grabfood-menu.do.d.ts +15 -0
- package/dist/package/entity/order-platform/grabfood/grabfood-omni.do.d.ts +1834 -15
- package/dist/package/entity/order-platform/grabfood/grabfood-order.do.d.ts +13 -13
- package/dist/package/entity/order-platform/grabfood/grabfood-settings.do.d.ts +5 -2
- package/dist/package/entity/order-platform/grabfood/grabfood-webhook.dto.d.ts +528 -805
- package/dist/package/entity/order-platform/grabfood/grabfood.dto.d.ts +14 -11
- package/dist/package/entity/order-platform/grabfood/grabfood.enum.d.ts +1 -1
- package/dist/package/entity/order-platform/order-platform.dto.d.ts +0 -20
- package/dist/package/entity/order-platform/shopeefood/shopeefood-settings.do.d.ts +2 -2
- package/dist/package/entity/order-platform/shopeefood/shopeefood-settings.dto.d.ts +2 -2
- package/dist/package/entity/queue/queue.do.d.ts +12 -0
- package/dist/package/entity/queue/queue.dto.d.ts +26 -6
- package/package.json +4 -4
- package/src/api/restaurant-setting/index.ts +6 -0
- package/src/locales/en-US.json +16 -0
- package/src/locales/ja-JP.json +16 -0
- package/src/locales/th-TH.json +16 -0
- package/src/locales/zh-CN.json +16 -0
- package/src/main.ts +2 -2
- package/src/modules/kiosk/interface.ts +1 -0
- package/src/stores/kiosk/mapper.ts +1 -0
- package/src/stores/restaurant/index.ts +6 -0
- package/src/views/kiosk/KioskSummary.vue +37 -31
- package/src/views/kiosk/KioskView.vue +4 -1
- package/src/views/kiosk/devices/KioskDeviceCard.vue +205 -89
- package/src/views/kiosk/devices/KioskDevicesView.vue +133 -17
- package/src/views/kiosk/settings/KioskPaymentTypeSection.vue +8 -3
- package/src/views/order-settings/OrderSettingsView.vue +6 -1
- package/src/views/order-settings/delivery/integrated-delivery/ExternalSetting.vue +22 -1
- package/src/views/order-settings/drive-thru/DriveThruSetting.vue +101 -0
- package/dist/KioskDevicesView.vue_vue_type_script_setup_true_lang-CPDemTBj.js +0 -306
- package/dist/KioskView-NEpc7Ivb.js +0 -452
|
@@ -4,15 +4,21 @@ export declare const KioskBindDto: z.ZodObject<{
|
|
|
4
4
|
otp: z.ZodString;
|
|
5
5
|
deviceAppType: z.ZodNullable<z.ZodOptional<z.ZodEnum<["WEB_V2_APP", "WEB_V3_APP", "KIOSK_APP", "TABLET_APP", "UNKNOWN"]>>>;
|
|
6
6
|
deviceAppVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7
|
+
webviewVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8
|
+
lastStartup: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
7
9
|
}, "strip", z.ZodTypeAny, {
|
|
8
10
|
name?: string | null | undefined;
|
|
9
11
|
deviceAppType?: "UNKNOWN" | "WEB_V2_APP" | "WEB_V3_APP" | "KIOSK_APP" | "TABLET_APP" | null | undefined;
|
|
10
12
|
deviceAppVersion?: string | null | undefined;
|
|
13
|
+
webviewVersion?: string | null | undefined;
|
|
14
|
+
lastStartup?: string | null | undefined;
|
|
11
15
|
otp: string;
|
|
12
16
|
}, {
|
|
13
17
|
name?: string | null | undefined;
|
|
14
18
|
deviceAppType?: "UNKNOWN" | "WEB_V2_APP" | "WEB_V3_APP" | "KIOSK_APP" | "TABLET_APP" | null | undefined;
|
|
15
19
|
deviceAppVersion?: string | null | undefined;
|
|
20
|
+
webviewVersion?: string | null | undefined;
|
|
21
|
+
lastStartup?: string | null | undefined;
|
|
16
22
|
otp: string;
|
|
17
23
|
}>;
|
|
18
24
|
export declare const KioskBindResultDto: z.ZodObject<{
|
|
@@ -459,6 +465,8 @@ export declare const KioskDeviceDto: z.ZodObject<{
|
|
|
459
465
|
pinInfo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
460
466
|
deviceAppVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
461
467
|
deviceAppOTAVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
468
|
+
webviewVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
469
|
+
lastStartup: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
462
470
|
}, "strip", z.ZodTypeAny, {
|
|
463
471
|
name?: string | null | undefined;
|
|
464
472
|
printerInfo?: {
|
|
@@ -528,6 +536,8 @@ export declare const KioskDeviceDto: z.ZodObject<{
|
|
|
528
536
|
pinInfo?: string | null | undefined;
|
|
529
537
|
deviceAppVersion?: string | null | undefined;
|
|
530
538
|
deviceAppOTAVersion?: string | null | undefined;
|
|
539
|
+
webviewVersion?: string | null | undefined;
|
|
540
|
+
lastStartup?: string | null | undefined;
|
|
531
541
|
machineId: string;
|
|
532
542
|
token: string;
|
|
533
543
|
scannerInfo: {
|
|
@@ -621,6 +631,8 @@ export declare const KioskDeviceDto: z.ZodObject<{
|
|
|
621
631
|
pinInfo?: string | null | undefined;
|
|
622
632
|
deviceAppVersion?: string | null | undefined;
|
|
623
633
|
deviceAppOTAVersion?: string | null | undefined;
|
|
634
|
+
webviewVersion?: string | null | undefined;
|
|
635
|
+
lastStartup?: string | null | undefined;
|
|
624
636
|
machineId: string;
|
|
625
637
|
token: string;
|
|
626
638
|
}>;
|
|
@@ -1044,6 +1056,8 @@ export declare const KioskDeviceUpdateDto: z.ZodObject<{
|
|
|
1044
1056
|
pinInfo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1045
1057
|
deviceAppVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1046
1058
|
deviceAppOTAVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1059
|
+
webviewVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1060
|
+
lastStartup: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
1047
1061
|
}, "strip", z.ZodTypeAny, {
|
|
1048
1062
|
scannerInfo?: {
|
|
1049
1063
|
lensFacing?: "FRONT" | "BACK" | null | undefined;
|
|
@@ -1122,6 +1136,8 @@ export declare const KioskDeviceUpdateDto: z.ZodObject<{
|
|
|
1122
1136
|
pinInfo?: string | null | undefined;
|
|
1123
1137
|
deviceAppVersion?: string | null | undefined;
|
|
1124
1138
|
deviceAppOTAVersion?: string | null | undefined;
|
|
1139
|
+
webviewVersion?: string | null | undefined;
|
|
1140
|
+
lastStartup?: string | null | undefined;
|
|
1125
1141
|
}, {
|
|
1126
1142
|
scannerInfo?: {
|
|
1127
1143
|
lensFacing?: "FRONT" | "BACK" | null | undefined;
|
|
@@ -1200,6 +1216,8 @@ export declare const KioskDeviceUpdateDto: z.ZodObject<{
|
|
|
1200
1216
|
pinInfo?: string | null | undefined;
|
|
1201
1217
|
deviceAppVersion?: string | null | undefined;
|
|
1202
1218
|
deviceAppOTAVersion?: string | null | undefined;
|
|
1219
|
+
webviewVersion?: string | null | undefined;
|
|
1220
|
+
lastStartup?: string | null | undefined;
|
|
1203
1221
|
}>;
|
|
1204
1222
|
export declare const KioskOtpInfoDto: z.ZodObject<{
|
|
1205
1223
|
code: z.ZodString;
|
|
@@ -1637,6 +1655,8 @@ export declare const KioskRestaurantSettingDto: z.ZodObject<{
|
|
|
1637
1655
|
pinInfo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1638
1656
|
deviceAppVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1639
1657
|
deviceAppOTAVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1658
|
+
webviewVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1659
|
+
lastStartup: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
1640
1660
|
}, "strip", z.ZodTypeAny, {
|
|
1641
1661
|
name?: string | null | undefined;
|
|
1642
1662
|
printerInfo?: {
|
|
@@ -1706,6 +1726,8 @@ export declare const KioskRestaurantSettingDto: z.ZodObject<{
|
|
|
1706
1726
|
pinInfo?: string | null | undefined;
|
|
1707
1727
|
deviceAppVersion?: string | null | undefined;
|
|
1708
1728
|
deviceAppOTAVersion?: string | null | undefined;
|
|
1729
|
+
webviewVersion?: string | null | undefined;
|
|
1730
|
+
lastStartup?: string | null | undefined;
|
|
1709
1731
|
machineId: string;
|
|
1710
1732
|
token: string;
|
|
1711
1733
|
scannerInfo: {
|
|
@@ -1799,6 +1821,8 @@ export declare const KioskRestaurantSettingDto: z.ZodObject<{
|
|
|
1799
1821
|
pinInfo?: string | null | undefined;
|
|
1800
1822
|
deviceAppVersion?: string | null | undefined;
|
|
1801
1823
|
deviceAppOTAVersion?: string | null | undefined;
|
|
1824
|
+
webviewVersion?: string | null | undefined;
|
|
1825
|
+
lastStartup?: string | null | undefined;
|
|
1802
1826
|
machineId: string;
|
|
1803
1827
|
token: string;
|
|
1804
1828
|
}>, "many">>>;
|
|
@@ -1886,6 +1910,8 @@ export declare const KioskRestaurantSettingDto: z.ZodObject<{
|
|
|
1886
1910
|
pinInfo?: string | null | undefined;
|
|
1887
1911
|
deviceAppVersion?: string | null | undefined;
|
|
1888
1912
|
deviceAppOTAVersion?: string | null | undefined;
|
|
1913
|
+
webviewVersion?: string | null | undefined;
|
|
1914
|
+
lastStartup?: string | null | undefined;
|
|
1889
1915
|
machineId: string;
|
|
1890
1916
|
token: string;
|
|
1891
1917
|
scannerInfo: {
|
|
@@ -1986,6 +2012,8 @@ export declare const KioskRestaurantSettingDto: z.ZodObject<{
|
|
|
1986
2012
|
pinInfo?: string | null | undefined;
|
|
1987
2013
|
deviceAppVersion?: string | null | undefined;
|
|
1988
2014
|
deviceAppOTAVersion?: string | null | undefined;
|
|
2015
|
+
webviewVersion?: string | null | undefined;
|
|
2016
|
+
lastStartup?: string | null | undefined;
|
|
1989
2017
|
machineId: string;
|
|
1990
2018
|
token: string;
|
|
1991
2019
|
}[] | null | undefined;
|
|
@@ -2417,6 +2445,8 @@ export declare const KioskRestaurantSettingByTokenDto: z.ZodObject<z.extendShape
|
|
|
2417
2445
|
pinInfo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2418
2446
|
deviceAppVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2419
2447
|
deviceAppOTAVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2448
|
+
webviewVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2449
|
+
lastStartup: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
2420
2450
|
}, "strip", z.ZodTypeAny, {
|
|
2421
2451
|
name?: string | null | undefined;
|
|
2422
2452
|
printerInfo?: {
|
|
@@ -2486,6 +2516,8 @@ export declare const KioskRestaurantSettingByTokenDto: z.ZodObject<z.extendShape
|
|
|
2486
2516
|
pinInfo?: string | null | undefined;
|
|
2487
2517
|
deviceAppVersion?: string | null | undefined;
|
|
2488
2518
|
deviceAppOTAVersion?: string | null | undefined;
|
|
2519
|
+
webviewVersion?: string | null | undefined;
|
|
2520
|
+
lastStartup?: string | null | undefined;
|
|
2489
2521
|
machineId: string;
|
|
2490
2522
|
token: string;
|
|
2491
2523
|
scannerInfo: {
|
|
@@ -2579,6 +2611,8 @@ export declare const KioskRestaurantSettingByTokenDto: z.ZodObject<z.extendShape
|
|
|
2579
2611
|
pinInfo?: string | null | undefined;
|
|
2580
2612
|
deviceAppVersion?: string | null | undefined;
|
|
2581
2613
|
deviceAppOTAVersion?: string | null | undefined;
|
|
2614
|
+
webviewVersion?: string | null | undefined;
|
|
2615
|
+
lastStartup?: string | null | undefined;
|
|
2582
2616
|
machineId: string;
|
|
2583
2617
|
token: string;
|
|
2584
2618
|
}>, "many">>>;
|
|
@@ -3017,6 +3051,8 @@ export declare const KioskRestaurantSettingByTokenDto: z.ZodObject<z.extendShape
|
|
|
3017
3051
|
pinInfo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3018
3052
|
deviceAppVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3019
3053
|
deviceAppOTAVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3054
|
+
webviewVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3055
|
+
lastStartup: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
3020
3056
|
}, "strip", z.ZodTypeAny, {
|
|
3021
3057
|
name?: string | null | undefined;
|
|
3022
3058
|
printerInfo?: {
|
|
@@ -3086,6 +3122,8 @@ export declare const KioskRestaurantSettingByTokenDto: z.ZodObject<z.extendShape
|
|
|
3086
3122
|
pinInfo?: string | null | undefined;
|
|
3087
3123
|
deviceAppVersion?: string | null | undefined;
|
|
3088
3124
|
deviceAppOTAVersion?: string | null | undefined;
|
|
3125
|
+
webviewVersion?: string | null | undefined;
|
|
3126
|
+
lastStartup?: string | null | undefined;
|
|
3089
3127
|
machineId: string;
|
|
3090
3128
|
token: string;
|
|
3091
3129
|
scannerInfo: {
|
|
@@ -3179,6 +3217,8 @@ export declare const KioskRestaurantSettingByTokenDto: z.ZodObject<z.extendShape
|
|
|
3179
3217
|
pinInfo?: string | null | undefined;
|
|
3180
3218
|
deviceAppVersion?: string | null | undefined;
|
|
3181
3219
|
deviceAppOTAVersion?: string | null | undefined;
|
|
3220
|
+
webviewVersion?: string | null | undefined;
|
|
3221
|
+
lastStartup?: string | null | undefined;
|
|
3182
3222
|
machineId: string;
|
|
3183
3223
|
token: string;
|
|
3184
3224
|
}>;
|
|
@@ -3253,6 +3293,8 @@ export declare const KioskRestaurantSettingByTokenDto: z.ZodObject<z.extendShape
|
|
|
3253
3293
|
pinInfo?: string | null | undefined;
|
|
3254
3294
|
deviceAppVersion?: string | null | undefined;
|
|
3255
3295
|
deviceAppOTAVersion?: string | null | undefined;
|
|
3296
|
+
webviewVersion?: string | null | undefined;
|
|
3297
|
+
lastStartup?: string | null | undefined;
|
|
3256
3298
|
machineId: string;
|
|
3257
3299
|
token: string;
|
|
3258
3300
|
scannerInfo: {
|
|
@@ -3349,6 +3391,8 @@ export declare const KioskRestaurantSettingByTokenDto: z.ZodObject<z.extendShape
|
|
|
3349
3391
|
pinInfo?: string | null | undefined;
|
|
3350
3392
|
deviceAppVersion?: string | null | undefined;
|
|
3351
3393
|
deviceAppOTAVersion?: string | null | undefined;
|
|
3394
|
+
webviewVersion?: string | null | undefined;
|
|
3395
|
+
lastStartup?: string | null | undefined;
|
|
3352
3396
|
machineId: string;
|
|
3353
3397
|
token: string;
|
|
3354
3398
|
};
|