@feedmepos/mf-order-setting 0.0.49 → 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-Ch_mWJz9.js → KioskDevicesView-u14hzPbE.js} +1 -1
- package/dist/KioskDevicesView.vue_vue_type_script_setup_true_lang-DBgRDIoS.js +501 -0
- package/dist/{KioskSettingView-CaBhf48e.js → KioskSettingView-DmvtZcV1.js} +1 -1
- package/dist/KioskView-M8V91gD5.js +474 -0
- package/dist/{OrderSettingsView-CRgoLOD2.js → OrderSettingsView-Bl3LshG3.js} +4 -4
- package/dist/{app-CDTAjXj9.js → app-CLewMjcd.js} +67 -19
- package/dist/app.js +1 -1
- package/dist/{dayjs.min-dI_j30pv.js → dayjs.min-DCTYRWyD.js} +1 -1
- package/dist/frontend/mf-order/src/app.d.ts +48 -0
- package/dist/frontend/mf-order/src/main.d.ts +48 -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/views/kiosk/devices/KioskDevicesView.vue.d.ts +6 -3
- 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-B8U5Sawr.js → index-B7LtJeBJ.js} +2 -2
- package/dist/{menu.dto-qVeqpSdz.js → menu.dto-Co7iXHNr.js} +6345 -6286
- package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +104 -12
- package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +106 -6
- 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/order/order.enum.d.ts +2 -0
- 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/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 +3 -0
- 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 +8 -5
- 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/queue/queue.dto.d.ts +20 -0
- package/package.json +1 -1
- package/src/locales/en-US.json +12 -0
- package/src/locales/ja-JP.json +12 -0
- package/src/locales/th-TH.json +12 -0
- package/src/locales/zh-CN.json +12 -0
- package/src/modules/kiosk/interface.ts +1 -0
- package/src/stores/kiosk/mapper.ts +1 -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/dist/KioskDevicesView.vue_vue_type_script_setup_true_lang-DV2HYd8u.js +0 -306
- package/dist/KioskView-BGm-emCw.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
|
};
|
|
@@ -7,6 +7,7 @@ export declare const F_ORDER_OFFLINE_PAYMENT_TYPE: z.ZodEnum<["QRPAY", "SCANPAY"
|
|
|
7
7
|
export declare const F_ORDER_E_PAYMENT_TYPE: z.ZodEnum<["SCANPAY", "QRPAY", "TERMINAL", "NFC", "TERMINAL_SCAN_PAY", "TERMINAL_QR_PAY"]>;
|
|
8
8
|
export declare const F_ORDER_DELIVERY_TYPE: z.ZodEnum<["IN_HOUSE", "FEEDME"]>;
|
|
9
9
|
export declare const F_ORDER_TYPE: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
|
|
10
|
+
export declare const F_INCOMING_ORDER_TYPE: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
|
|
10
11
|
export declare const F_ORDER_APP_FROM: z.ZodEnum<["CUSTOMER", "KIOSK", "TABLET"]>;
|
|
11
12
|
export declare const F_ORDER_PLATFORM_TYPE: z.ZodEnum<["WEB_V2_APP", "WEB_V3_APP", "KIOSK_APP", "TABLET_APP", "UNKNOWN"]>;
|
|
12
13
|
export type F_ORDER_QR_TYPE = z.infer<typeof F_ORDER_QR_TYPE>;
|
|
@@ -19,3 +20,4 @@ export type F_ORDER_TYPE = z.infer<typeof F_ORDER_TYPE>;
|
|
|
19
20
|
export type F_ORDER_APP_FROM = z.infer<typeof F_ORDER_APP_FROM>;
|
|
20
21
|
export type F_ORDER_E_PAYMENT_TYPE = z.infer<typeof F_ORDER_E_PAYMENT_TYPE>;
|
|
21
22
|
export type F_ORDER_PLATFORM_TYPE = z.infer<typeof F_ORDER_PLATFORM_TYPE>;
|
|
23
|
+
export type F_INCOMING_ORDER_TYPE = z.infer<typeof F_INCOMING_ORDER_TYPE>;
|
|
@@ -166,6 +166,22 @@ export declare const FdoExternalOrderDelivery: z.ZodObject<{
|
|
|
166
166
|
};
|
|
167
167
|
deliveryAt: string;
|
|
168
168
|
}>;
|
|
169
|
+
export declare const FdoExternalOrderDineIn: z.ZodObject<{
|
|
170
|
+
contactNumber: z.ZodString;
|
|
171
|
+
customerName: z.ZodString;
|
|
172
|
+
pax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
173
|
+
tableNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
174
|
+
}, "strip", z.ZodTypeAny, {
|
|
175
|
+
pax?: number | null | undefined;
|
|
176
|
+
tableNumber?: string | null | undefined;
|
|
177
|
+
contactNumber: string;
|
|
178
|
+
customerName: string;
|
|
179
|
+
}, {
|
|
180
|
+
pax?: number | null | undefined;
|
|
181
|
+
tableNumber?: string | null | undefined;
|
|
182
|
+
contactNumber: string;
|
|
183
|
+
customerName: string;
|
|
184
|
+
}>;
|
|
169
185
|
export declare const FdoExternalOrderIntegrationInfo: z.ZodObject<{
|
|
170
186
|
partnerStoreId: z.ZodString;
|
|
171
187
|
partnerName: z.ZodEnum<["ZUS_COFFEE"]>;
|
|
@@ -746,6 +762,32 @@ export declare const FdoExternalOrder: z.ZodObject<{
|
|
|
746
762
|
pickupAt: string;
|
|
747
763
|
customerName: string;
|
|
748
764
|
}>>>;
|
|
765
|
+
dineIn: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
766
|
+
contactNumber: z.ZodString;
|
|
767
|
+
customerName: z.ZodString;
|
|
768
|
+
pax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
769
|
+
tableNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
770
|
+
}, "strip", z.ZodTypeAny, {
|
|
771
|
+
pax?: number | null | undefined;
|
|
772
|
+
tableNumber?: string | null | undefined;
|
|
773
|
+
contactNumber: string;
|
|
774
|
+
customerName: string;
|
|
775
|
+
}, {
|
|
776
|
+
pax?: number | null | undefined;
|
|
777
|
+
tableNumber?: string | null | undefined;
|
|
778
|
+
contactNumber: string;
|
|
779
|
+
customerName: string;
|
|
780
|
+
}>>>;
|
|
781
|
+
driveThru: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
782
|
+
contactNumber: z.ZodString;
|
|
783
|
+
licensePlate: z.ZodString;
|
|
784
|
+
}, "strip", z.ZodTypeAny, {
|
|
785
|
+
licensePlate: string;
|
|
786
|
+
contactNumber: string;
|
|
787
|
+
}, {
|
|
788
|
+
licensePlate: string;
|
|
789
|
+
contactNumber: string;
|
|
790
|
+
}>>>;
|
|
749
791
|
integrationInfo: z.ZodObject<{
|
|
750
792
|
partnerStoreId: z.ZodString;
|
|
751
793
|
partnerName: z.ZodEnum<["ZUS_COFFEE"]>;
|
|
@@ -1140,7 +1182,17 @@ export declare const FdoExternalOrder: z.ZodObject<{
|
|
|
1140
1182
|
};
|
|
1141
1183
|
deliveryAt: string;
|
|
1142
1184
|
} | null | undefined;
|
|
1185
|
+
dineIn?: {
|
|
1186
|
+
pax?: number | null | undefined;
|
|
1187
|
+
tableNumber?: string | null | undefined;
|
|
1188
|
+
contactNumber: string;
|
|
1189
|
+
customerName: string;
|
|
1190
|
+
} | null | undefined;
|
|
1143
1191
|
billId?: string | null | undefined;
|
|
1192
|
+
driveThru?: {
|
|
1193
|
+
licensePlate: string;
|
|
1194
|
+
contactNumber: string;
|
|
1195
|
+
} | null | undefined;
|
|
1144
1196
|
eInvoiceUrl?: string | null | undefined;
|
|
1145
1197
|
_id: string;
|
|
1146
1198
|
price: {
|
|
@@ -1267,7 +1319,17 @@ export declare const FdoExternalOrder: z.ZodObject<{
|
|
|
1267
1319
|
};
|
|
1268
1320
|
deliveryAt: string;
|
|
1269
1321
|
} | null | undefined;
|
|
1322
|
+
dineIn?: {
|
|
1323
|
+
pax?: number | null | undefined;
|
|
1324
|
+
tableNumber?: string | null | undefined;
|
|
1325
|
+
contactNumber: string;
|
|
1326
|
+
customerName: string;
|
|
1327
|
+
} | null | undefined;
|
|
1270
1328
|
billId?: string | null | undefined;
|
|
1329
|
+
driveThru?: {
|
|
1330
|
+
licensePlate: string;
|
|
1331
|
+
contactNumber: string;
|
|
1332
|
+
} | null | undefined;
|
|
1271
1333
|
eInvoiceUrl?: string | null | undefined;
|
|
1272
1334
|
_id: string;
|
|
1273
1335
|
price: {
|
|
@@ -142,6 +142,32 @@ export declare const FdtoExternalOrderCreate: z.ZodObject<Omit<{
|
|
|
142
142
|
pickupAt: string;
|
|
143
143
|
customerName: string;
|
|
144
144
|
}>>>;
|
|
145
|
+
dineIn: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
146
|
+
contactNumber: z.ZodString;
|
|
147
|
+
customerName: z.ZodString;
|
|
148
|
+
pax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
149
|
+
tableNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
150
|
+
}, "strip", z.ZodTypeAny, {
|
|
151
|
+
pax?: number | null | undefined;
|
|
152
|
+
tableNumber?: string | null | undefined;
|
|
153
|
+
contactNumber: string;
|
|
154
|
+
customerName: string;
|
|
155
|
+
}, {
|
|
156
|
+
pax?: number | null | undefined;
|
|
157
|
+
tableNumber?: string | null | undefined;
|
|
158
|
+
contactNumber: string;
|
|
159
|
+
customerName: string;
|
|
160
|
+
}>>>;
|
|
161
|
+
driveThru: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
162
|
+
contactNumber: z.ZodString;
|
|
163
|
+
licensePlate: z.ZodString;
|
|
164
|
+
}, "strip", z.ZodTypeAny, {
|
|
165
|
+
licensePlate: string;
|
|
166
|
+
contactNumber: string;
|
|
167
|
+
}, {
|
|
168
|
+
licensePlate: string;
|
|
169
|
+
contactNumber: string;
|
|
170
|
+
}>>>;
|
|
145
171
|
integrationInfo: z.ZodObject<{
|
|
146
172
|
partnerStoreId: z.ZodString;
|
|
147
173
|
partnerName: z.ZodEnum<["ZUS_COFFEE"]>;
|
|
@@ -536,6 +562,16 @@ export declare const FdtoExternalOrderCreate: z.ZodObject<Omit<{
|
|
|
536
562
|
};
|
|
537
563
|
deliveryAt: string;
|
|
538
564
|
} | null | undefined;
|
|
565
|
+
dineIn?: {
|
|
566
|
+
pax?: number | null | undefined;
|
|
567
|
+
tableNumber?: string | null | undefined;
|
|
568
|
+
contactNumber: string;
|
|
569
|
+
customerName: string;
|
|
570
|
+
} | null | undefined;
|
|
571
|
+
driveThru?: {
|
|
572
|
+
licensePlate: string;
|
|
573
|
+
contactNumber: string;
|
|
574
|
+
} | null | undefined;
|
|
539
575
|
price: {
|
|
540
576
|
roundToNearest?: number | null | undefined;
|
|
541
577
|
totalAmount: {
|
|
@@ -656,6 +692,16 @@ export declare const FdtoExternalOrderCreate: z.ZodObject<Omit<{
|
|
|
656
692
|
};
|
|
657
693
|
deliveryAt: string;
|
|
658
694
|
} | null | undefined;
|
|
695
|
+
dineIn?: {
|
|
696
|
+
pax?: number | null | undefined;
|
|
697
|
+
tableNumber?: string | null | undefined;
|
|
698
|
+
contactNumber: string;
|
|
699
|
+
customerName: string;
|
|
700
|
+
} | null | undefined;
|
|
701
|
+
driveThru?: {
|
|
702
|
+
licensePlate: string;
|
|
703
|
+
contactNumber: string;
|
|
704
|
+
} | null | undefined;
|
|
659
705
|
price: {
|
|
660
706
|
roundToNearest?: number | null | undefined;
|
|
661
707
|
totalAmount: {
|
|
@@ -990,6 +1036,22 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
990
1036
|
};
|
|
991
1037
|
deliveryAt: string;
|
|
992
1038
|
}>>>>;
|
|
1039
|
+
dineIn: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1040
|
+
contactNumber: z.ZodString;
|
|
1041
|
+
customerName: z.ZodString;
|
|
1042
|
+
pax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1043
|
+
tableNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1044
|
+
}, "strip", z.ZodTypeAny, {
|
|
1045
|
+
pax?: number | null | undefined;
|
|
1046
|
+
tableNumber?: string | null | undefined;
|
|
1047
|
+
contactNumber: string;
|
|
1048
|
+
customerName: string;
|
|
1049
|
+
}, {
|
|
1050
|
+
pax?: number | null | undefined;
|
|
1051
|
+
tableNumber?: string | null | undefined;
|
|
1052
|
+
contactNumber: string;
|
|
1053
|
+
customerName: string;
|
|
1054
|
+
}>>>>;
|
|
993
1055
|
items: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
994
1056
|
productId: z.ZodString;
|
|
995
1057
|
subItems: z.ZodArray<z.ZodType<import("./external-order.do").FdoExternalOrderSubItem, z.ZodTypeDef, import("./external-order.do").FdoExternalOrderSubItem>, "many">;
|
|
@@ -1231,6 +1293,16 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1231
1293
|
}>, "many">>;
|
|
1232
1294
|
orderTime: z.ZodOptional<z.ZodString>;
|
|
1233
1295
|
shortCode: z.ZodOptional<z.ZodString>;
|
|
1296
|
+
driveThru: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1297
|
+
contactNumber: z.ZodString;
|
|
1298
|
+
licensePlate: z.ZodString;
|
|
1299
|
+
}, "strip", z.ZodTypeAny, {
|
|
1300
|
+
licensePlate: string;
|
|
1301
|
+
contactNumber: string;
|
|
1302
|
+
}, {
|
|
1303
|
+
licensePlate: string;
|
|
1304
|
+
contactNumber: string;
|
|
1305
|
+
}>>>>;
|
|
1234
1306
|
integrationInfo: z.ZodOptional<z.ZodObject<{
|
|
1235
1307
|
partnerStoreId: z.ZodString;
|
|
1236
1308
|
partnerName: z.ZodEnum<["ZUS_COFFEE"]>;
|
|
@@ -1301,6 +1373,12 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1301
1373
|
};
|
|
1302
1374
|
deliveryAt: string;
|
|
1303
1375
|
} | null | undefined;
|
|
1376
|
+
dineIn?: {
|
|
1377
|
+
pax?: number | null | undefined;
|
|
1378
|
+
tableNumber?: string | null | undefined;
|
|
1379
|
+
contactNumber: string;
|
|
1380
|
+
customerName: string;
|
|
1381
|
+
} | null | undefined;
|
|
1304
1382
|
items?: {
|
|
1305
1383
|
remark?: string | null | undefined;
|
|
1306
1384
|
takeawayPrice?: {
|
|
@@ -1358,6 +1436,10 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1358
1436
|
}[] | undefined;
|
|
1359
1437
|
orderTime?: string | undefined;
|
|
1360
1438
|
shortCode?: string | undefined;
|
|
1439
|
+
driveThru?: {
|
|
1440
|
+
licensePlate: string;
|
|
1441
|
+
contactNumber: string;
|
|
1442
|
+
} | null | undefined;
|
|
1361
1443
|
integrationInfo?: {
|
|
1362
1444
|
partnerStoreId: string;
|
|
1363
1445
|
partnerName: "ZUS_COFFEE";
|
|
@@ -1421,6 +1503,12 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1421
1503
|
};
|
|
1422
1504
|
deliveryAt: string;
|
|
1423
1505
|
} | null | undefined;
|
|
1506
|
+
dineIn?: {
|
|
1507
|
+
pax?: number | null | undefined;
|
|
1508
|
+
tableNumber?: string | null | undefined;
|
|
1509
|
+
contactNumber: string;
|
|
1510
|
+
customerName: string;
|
|
1511
|
+
} | null | undefined;
|
|
1424
1512
|
items?: {
|
|
1425
1513
|
remark?: string | null | undefined;
|
|
1426
1514
|
takeawayPrice?: {
|
|
@@ -1478,6 +1566,10 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1478
1566
|
}[] | undefined;
|
|
1479
1567
|
orderTime?: string | undefined;
|
|
1480
1568
|
shortCode?: string | undefined;
|
|
1569
|
+
driveThru?: {
|
|
1570
|
+
licensePlate: string;
|
|
1571
|
+
contactNumber: string;
|
|
1572
|
+
} | null | undefined;
|
|
1481
1573
|
integrationInfo?: {
|
|
1482
1574
|
partnerStoreId: string;
|
|
1483
1575
|
partnerName: "ZUS_COFFEE";
|
|
@@ -1544,6 +1636,12 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1544
1636
|
};
|
|
1545
1637
|
deliveryAt: string;
|
|
1546
1638
|
} | null | undefined;
|
|
1639
|
+
dineIn?: {
|
|
1640
|
+
pax?: number | null | undefined;
|
|
1641
|
+
tableNumber?: string | null | undefined;
|
|
1642
|
+
contactNumber: string;
|
|
1643
|
+
customerName: string;
|
|
1644
|
+
} | null | undefined;
|
|
1547
1645
|
items?: {
|
|
1548
1646
|
remark?: string | null | undefined;
|
|
1549
1647
|
takeawayPrice?: {
|
|
@@ -1601,6 +1699,10 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1601
1699
|
}[] | undefined;
|
|
1602
1700
|
orderTime?: string | undefined;
|
|
1603
1701
|
shortCode?: string | undefined;
|
|
1702
|
+
driveThru?: {
|
|
1703
|
+
licensePlate: string;
|
|
1704
|
+
contactNumber: string;
|
|
1705
|
+
} | null | undefined;
|
|
1604
1706
|
integrationInfo?: {
|
|
1605
1707
|
partnerStoreId: string;
|
|
1606
1708
|
partnerName: "ZUS_COFFEE";
|
|
@@ -1667,6 +1769,12 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1667
1769
|
};
|
|
1668
1770
|
deliveryAt: string;
|
|
1669
1771
|
} | null | undefined;
|
|
1772
|
+
dineIn?: {
|
|
1773
|
+
pax?: number | null | undefined;
|
|
1774
|
+
tableNumber?: string | null | undefined;
|
|
1775
|
+
contactNumber: string;
|
|
1776
|
+
customerName: string;
|
|
1777
|
+
} | null | undefined;
|
|
1670
1778
|
items?: {
|
|
1671
1779
|
remark?: string | null | undefined;
|
|
1672
1780
|
takeawayPrice?: {
|
|
@@ -1724,6 +1832,10 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1724
1832
|
}[] | undefined;
|
|
1725
1833
|
orderTime?: string | undefined;
|
|
1726
1834
|
shortCode?: string | undefined;
|
|
1835
|
+
driveThru?: {
|
|
1836
|
+
licensePlate: string;
|
|
1837
|
+
contactNumber: string;
|
|
1838
|
+
} | null | undefined;
|
|
1727
1839
|
integrationInfo?: {
|
|
1728
1840
|
partnerStoreId: string;
|
|
1729
1841
|
partnerName: "ZUS_COFFEE";
|
|
@@ -1935,6 +2047,32 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
|
|
|
1935
2047
|
pickupAt: string;
|
|
1936
2048
|
customerName: string;
|
|
1937
2049
|
}>>>;
|
|
2050
|
+
dineIn: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2051
|
+
contactNumber: z.ZodString;
|
|
2052
|
+
customerName: z.ZodString;
|
|
2053
|
+
pax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
2054
|
+
tableNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2055
|
+
}, "strip", z.ZodTypeAny, {
|
|
2056
|
+
pax?: number | null | undefined;
|
|
2057
|
+
tableNumber?: string | null | undefined;
|
|
2058
|
+
contactNumber: string;
|
|
2059
|
+
customerName: string;
|
|
2060
|
+
}, {
|
|
2061
|
+
pax?: number | null | undefined;
|
|
2062
|
+
tableNumber?: string | null | undefined;
|
|
2063
|
+
contactNumber: string;
|
|
2064
|
+
customerName: string;
|
|
2065
|
+
}>>>;
|
|
2066
|
+
driveThru: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2067
|
+
contactNumber: z.ZodString;
|
|
2068
|
+
licensePlate: z.ZodString;
|
|
2069
|
+
}, "strip", z.ZodTypeAny, {
|
|
2070
|
+
licensePlate: string;
|
|
2071
|
+
contactNumber: string;
|
|
2072
|
+
}, {
|
|
2073
|
+
licensePlate: string;
|
|
2074
|
+
contactNumber: string;
|
|
2075
|
+
}>>>;
|
|
1938
2076
|
integrationInfo: z.ZodObject<{
|
|
1939
2077
|
partnerStoreId: z.ZodString;
|
|
1940
2078
|
partnerName: z.ZodEnum<["ZUS_COFFEE"]>;
|
|
@@ -2329,7 +2467,17 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
|
|
|
2329
2467
|
};
|
|
2330
2468
|
deliveryAt: string;
|
|
2331
2469
|
} | null | undefined;
|
|
2470
|
+
dineIn?: {
|
|
2471
|
+
pax?: number | null | undefined;
|
|
2472
|
+
tableNumber?: string | null | undefined;
|
|
2473
|
+
contactNumber: string;
|
|
2474
|
+
customerName: string;
|
|
2475
|
+
} | null | undefined;
|
|
2332
2476
|
billId?: string | null | undefined;
|
|
2477
|
+
driveThru?: {
|
|
2478
|
+
licensePlate: string;
|
|
2479
|
+
contactNumber: string;
|
|
2480
|
+
} | null | undefined;
|
|
2333
2481
|
eInvoiceUrl?: string | null | undefined;
|
|
2334
2482
|
_id: string;
|
|
2335
2483
|
price: {
|
|
@@ -2456,7 +2604,17 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
|
|
|
2456
2604
|
};
|
|
2457
2605
|
deliveryAt: string;
|
|
2458
2606
|
} | null | undefined;
|
|
2607
|
+
dineIn?: {
|
|
2608
|
+
pax?: number | null | undefined;
|
|
2609
|
+
tableNumber?: string | null | undefined;
|
|
2610
|
+
contactNumber: string;
|
|
2611
|
+
customerName: string;
|
|
2612
|
+
} | null | undefined;
|
|
2459
2613
|
billId?: string | null | undefined;
|
|
2614
|
+
driveThru?: {
|
|
2615
|
+
licensePlate: string;
|
|
2616
|
+
contactNumber: string;
|
|
2617
|
+
} | null | undefined;
|
|
2460
2618
|
eInvoiceUrl?: string | null | undefined;
|
|
2461
2619
|
_id: string;
|
|
2462
2620
|
price: {
|
|
@@ -2586,7 +2744,17 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
|
|
|
2586
2744
|
};
|
|
2587
2745
|
deliveryAt: string;
|
|
2588
2746
|
} | null | undefined;
|
|
2747
|
+
dineIn?: {
|
|
2748
|
+
pax?: number | null | undefined;
|
|
2749
|
+
tableNumber?: string | null | undefined;
|
|
2750
|
+
contactNumber: string;
|
|
2751
|
+
customerName: string;
|
|
2752
|
+
} | null | undefined;
|
|
2589
2753
|
billId?: string | null | undefined;
|
|
2754
|
+
driveThru?: {
|
|
2755
|
+
licensePlate: string;
|
|
2756
|
+
contactNumber: string;
|
|
2757
|
+
} | null | undefined;
|
|
2590
2758
|
eInvoiceUrl?: string | null | undefined;
|
|
2591
2759
|
_id: string;
|
|
2592
2760
|
price: {
|
|
@@ -2716,7 +2884,17 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
|
|
|
2716
2884
|
};
|
|
2717
2885
|
deliveryAt: string;
|
|
2718
2886
|
} | null | undefined;
|
|
2887
|
+
dineIn?: {
|
|
2888
|
+
pax?: number | null | undefined;
|
|
2889
|
+
tableNumber?: string | null | undefined;
|
|
2890
|
+
contactNumber: string;
|
|
2891
|
+
customerName: string;
|
|
2892
|
+
} | null | undefined;
|
|
2719
2893
|
billId?: string | null | undefined;
|
|
2894
|
+
driveThru?: {
|
|
2895
|
+
licensePlate: string;
|
|
2896
|
+
contactNumber: string;
|
|
2897
|
+
} | null | undefined;
|
|
2720
2898
|
eInvoiceUrl?: string | null | undefined;
|
|
2721
2899
|
_id: string;
|
|
2722
2900
|
price: {
|