@feedmepos/mf-order-setting 0.0.49 → 0.0.51
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-TIls1ag1.js} +1 -1
- package/dist/KioskDevicesView.vue_vue_type_script_setup_true_lang-B2gjPfOJ.js +501 -0
- package/dist/KioskSettingView-UPE-q-Zd.js +573 -0
- package/dist/KioskView-B0Jj2sOl.js +477 -0
- package/dist/{OrderSettingsView-CRgoLOD2.js → OrderSettingsView-Ca4y2PNF.js} +4 -4
- package/dist/{app-CDTAjXj9.js → app-JqOEacuf.js} +75 -19
- package/dist/app.js +1 -1
- package/dist/{dayjs.min-dI_j30pv.js → dayjs.min-B42nUieJ.js} +1 -1
- package/dist/frontend/mf-order/src/app.d.ts +56 -0
- package/dist/frontend/mf-order/src/main.d.ts +56 -0
- package/dist/frontend/mf-order/src/modules/kiosk/interface.d.ts +1 -0
- package/dist/frontend/mf-order/src/modules/order-setting/kiosk/interface.d.ts +2 -0
- package/dist/frontend/mf-order/src/stores/kiosk/index.d.ts +3 -0
- package/dist/frontend/mf-order/src/stores/order-setting/index.d.ts +6 -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-B0teNm7_.js} +2 -2
- package/dist/{menu.dto-qVeqpSdz.js → menu.dto-DFTxveX1.js} +6355 -6287
- package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +119 -12
- package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +124 -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-item/order-item.dto.d.ts +30 -0
- package/dist/package/entity/order/order.do.d.ts +8 -0
- package/dist/package/entity/order/order.dto.d.ts +118 -0
- package/dist/package/entity/order/order.enum.d.ts +2 -0
- package/dist/package/entity/order-platform/external/menu/external-master-menu.do.d.ts +20 -0
- package/dist/package/entity/order-platform/external/menu/external-menu.do.d.ts +23 -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/menu.dto.d.ts +34 -0
- package/dist/package/entity/order-platform/order-platform.dto.d.ts +0 -20
- package/dist/package/entity/order-setting/kiosk/kiosk.do.d.ts +3 -0
- package/dist/package/entity/order-setting/kiosk/kiosk.dto.d.ts +3 -0
- package/dist/package/entity/order-setting/order-setting.do.d.ts +5 -0
- package/dist/package/entity/order-setting/order-setting.dto.d.ts +10 -0
- package/dist/package/entity/queue/queue.dto.d.ts +45 -0
- package/dist/package/entity/restaurant/restaurant.dto.d.ts +5 -0
- package/dist/package/entity/websocket/websocket.dto.d.ts +12 -0
- package/package.json +1 -1
- package/src/locales/en-US.json +15 -1
- package/src/locales/ja-JP.json +23 -9
- package/src/locales/th-TH.json +15 -1
- package/src/locales/zh-CN.json +15 -1
- package/src/modules/kiosk/interface.ts +1 -0
- package/src/modules/order-setting/kiosk/interface.ts +15 -13
- package/src/stores/kiosk/mapper.ts +1 -0
- package/src/stores/order-setting/mapper.ts +16 -13
- 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/KioskSettingView.vue +43 -23
- package/dist/KioskDevicesView.vue_vue_type_script_setup_true_lang-DV2HYd8u.js +0 -306
- package/dist/KioskSettingView-CaBhf48e.js +0 -553
- package/dist/KioskView-BGm-emCw.js +0 -452
|
@@ -1704,6 +1704,7 @@ export declare const FdtoGrabfoodCreateOrUpdateSettings: z.ZodObject<{
|
|
|
1704
1704
|
menuSyncError: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
1705
1705
|
merchantID: z.ZodOptional<z.ZodString>;
|
|
1706
1706
|
syncV2: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodBoolean>>>;
|
|
1707
|
+
syncIGI: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodBoolean>>>;
|
|
1707
1708
|
partnerMerchantID: z.ZodOptional<z.ZodString>;
|
|
1708
1709
|
}, "strip", z.ZodTypeAny, {
|
|
1709
1710
|
status?: string | null | undefined;
|
|
@@ -1720,6 +1721,7 @@ export declare const FdtoGrabfoodCreateOrUpdateSettings: z.ZodObject<{
|
|
|
1720
1721
|
partnerMerchantID?: string | undefined;
|
|
1721
1722
|
merchantID?: string | undefined;
|
|
1722
1723
|
syncV2?: boolean | null | undefined;
|
|
1724
|
+
syncIGI?: boolean | null | undefined;
|
|
1723
1725
|
}, {
|
|
1724
1726
|
status?: string | null | undefined;
|
|
1725
1727
|
_id?: string | undefined;
|
|
@@ -1735,6 +1737,7 @@ export declare const FdtoGrabfoodCreateOrUpdateSettings: z.ZodObject<{
|
|
|
1735
1737
|
partnerMerchantID?: string | undefined;
|
|
1736
1738
|
merchantID?: string | undefined;
|
|
1737
1739
|
syncV2?: boolean | null | undefined;
|
|
1740
|
+
syncIGI?: boolean | null | undefined;
|
|
1738
1741
|
}>;
|
|
1739
1742
|
export declare const FdtoGrabfoodUpdateMenuItem: z.ZodObject<{
|
|
1740
1743
|
merchantId: z.ZodString;
|
|
@@ -2307,7 +2310,7 @@ export declare const GFListOrdersRes: z.ZodObject<{
|
|
|
2307
2310
|
estimatedOrderReadyTime: string;
|
|
2308
2311
|
maxOrderReadyTime: string;
|
|
2309
2312
|
}>>>;
|
|
2310
|
-
orderState: z.ZodNullable<z.ZodOptional<z.ZodEnum<["ACCEPTED", "DRIVER_ALLOCATED", "DRIVER_ARRIVED", "COLLECTED", "DELIVERED", "FAILED", "CANCELLED", "COMPLETED", "REFUNDED"]>>>;
|
|
2313
|
+
orderState: z.ZodNullable<z.ZodOptional<z.ZodEnum<["ACCEPTED", "DRIVER_ALLOCATED", "DRIVER_ARRIVED", "COLLECTED", "DELIVERED", "FAILED", "CANCELLED", "COMPLETED", "REFUNDED", "BILL_PAID"]>>>;
|
|
2311
2314
|
}, "strip", z.ZodTypeAny, {
|
|
2312
2315
|
receiver?: {
|
|
2313
2316
|
name?: string | null | undefined;
|
|
@@ -2356,7 +2359,7 @@ export declare const GFListOrdersRes: z.ZodObject<{
|
|
|
2356
2359
|
estimatedOrderReadyTime: string;
|
|
2357
2360
|
maxOrderReadyTime: string;
|
|
2358
2361
|
} | null | undefined;
|
|
2359
|
-
orderState?: "FAILED" | "COMPLETED" | "DELIVERED" | "CANCELLED" | "ACCEPTED" | "REFUNDED" | "COLLECTED" | "DRIVER_ALLOCATED" | "DRIVER_ARRIVED" | null | undefined;
|
|
2362
|
+
orderState?: "FAILED" | "COMPLETED" | "DELIVERED" | "CANCELLED" | "ACCEPTED" | "REFUNDED" | "COLLECTED" | "DRIVER_ALLOCATED" | "DRIVER_ARRIVED" | "BILL_PAID" | null | undefined;
|
|
2360
2363
|
price: {
|
|
2361
2364
|
deliveryFee?: number | null | undefined;
|
|
2362
2365
|
tax?: number | null | undefined;
|
|
@@ -2458,7 +2461,7 @@ export declare const GFListOrdersRes: z.ZodObject<{
|
|
|
2458
2461
|
estimatedOrderReadyTime: string;
|
|
2459
2462
|
maxOrderReadyTime: string;
|
|
2460
2463
|
} | null | undefined;
|
|
2461
|
-
orderState?: "FAILED" | "COMPLETED" | "DELIVERED" | "CANCELLED" | "ACCEPTED" | "REFUNDED" | "COLLECTED" | "DRIVER_ALLOCATED" | "DRIVER_ARRIVED" | null | undefined;
|
|
2464
|
+
orderState?: "FAILED" | "COMPLETED" | "DELIVERED" | "CANCELLED" | "ACCEPTED" | "REFUNDED" | "COLLECTED" | "DRIVER_ALLOCATED" | "DRIVER_ARRIVED" | "BILL_PAID" | null | undefined;
|
|
2462
2465
|
price: {
|
|
2463
2466
|
deliveryFee?: number | null | undefined;
|
|
2464
2467
|
tax?: number | null | undefined;
|
|
@@ -2562,7 +2565,7 @@ export declare const GFListOrdersRes: z.ZodObject<{
|
|
|
2562
2565
|
estimatedOrderReadyTime: string;
|
|
2563
2566
|
maxOrderReadyTime: string;
|
|
2564
2567
|
} | null | undefined;
|
|
2565
|
-
orderState?: "FAILED" | "COMPLETED" | "DELIVERED" | "CANCELLED" | "ACCEPTED" | "REFUNDED" | "COLLECTED" | "DRIVER_ALLOCATED" | "DRIVER_ARRIVED" | null | undefined;
|
|
2568
|
+
orderState?: "FAILED" | "COMPLETED" | "DELIVERED" | "CANCELLED" | "ACCEPTED" | "REFUNDED" | "COLLECTED" | "DRIVER_ALLOCATED" | "DRIVER_ARRIVED" | "BILL_PAID" | null | undefined;
|
|
2566
2569
|
price: {
|
|
2567
2570
|
deliveryFee?: number | null | undefined;
|
|
2568
2571
|
tax?: number | null | undefined;
|
|
@@ -2667,7 +2670,7 @@ export declare const GFListOrdersRes: z.ZodObject<{
|
|
|
2667
2670
|
estimatedOrderReadyTime: string;
|
|
2668
2671
|
maxOrderReadyTime: string;
|
|
2669
2672
|
} | null | undefined;
|
|
2670
|
-
orderState?: "FAILED" | "COMPLETED" | "DELIVERED" | "CANCELLED" | "ACCEPTED" | "REFUNDED" | "COLLECTED" | "DRIVER_ALLOCATED" | "DRIVER_ARRIVED" | null | undefined;
|
|
2673
|
+
orderState?: "FAILED" | "COMPLETED" | "DELIVERED" | "CANCELLED" | "ACCEPTED" | "REFUNDED" | "COLLECTED" | "DRIVER_ALLOCATED" | "DRIVER_ARRIVED" | "BILL_PAID" | null | undefined;
|
|
2671
2674
|
price: {
|
|
2672
2675
|
deliveryFee?: number | null | undefined;
|
|
2673
2676
|
tax?: number | null | undefined;
|
|
@@ -8,7 +8,7 @@ export declare const GF_UPDATE_MENU_FIELD_TYPE: z.ZodEnum<["ITEM", "MODIFIER"]>;
|
|
|
8
8
|
export declare const GF_CAMPAIGN_EATER_TYPE: z.ZodEnum<["all", "new"]>;
|
|
9
9
|
export declare const GF_CAMPAIGN_DISCOUNT_TYPE: z.ZodEnum<["net", "percentage", "delivery", "freeItem"]>;
|
|
10
10
|
export declare const GF_CAMPAIGN_SCOPE_TYPE: z.ZodEnum<["order", "items"]>;
|
|
11
|
-
export declare const GF_PUSH_ORDER_STATE: z.ZodEnum<["ACCEPTED", "DRIVER_ALLOCATED", "DRIVER_ARRIVED", "COLLECTED", "DELIVERED", "FAILED", "CANCELLED", "COMPLETED", "REFUNDED"]>;
|
|
11
|
+
export declare const GF_PUSH_ORDER_STATE: z.ZodEnum<["ACCEPTED", "DRIVER_ALLOCATED", "DRIVER_ARRIVED", "COLLECTED", "DELIVERED", "FAILED", "CANCELLED", "COMPLETED", "REFUNDED", "BILL_PAID"]>;
|
|
12
12
|
export declare const GF_ORDER_STATUS: z.ZodEnum<["pending", "accepted", "rejected"]>;
|
|
13
13
|
export declare const GF_PAYMENT_TYPE: z.ZodEnum<["CASH", "CASHLESS"]>;
|
|
14
14
|
export declare const GF_QR_TYPE: z.ZodEnum<["Dynamic", "Static"]>;
|
|
@@ -180,6 +180,7 @@ export declare const FdtoMergedProduct: z.ZodObject<{
|
|
|
180
180
|
}>;
|
|
181
181
|
variant: z.ZodNullable<z.ZodOptional<z.ZodType<IFdtoVariantSelectionGroup, z.ZodTypeDef, IFdtoVariantSelectionGroup>>>;
|
|
182
182
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
183
|
+
shelfLife: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
183
184
|
_id: z.ZodString;
|
|
184
185
|
code: z.ZodString;
|
|
185
186
|
name: z.ZodString;
|
|
@@ -626,6 +627,7 @@ export declare const FdtoMergedProduct: z.ZodObject<{
|
|
|
626
627
|
openPrice?: boolean | null | undefined;
|
|
627
628
|
noSst?: boolean | null | undefined;
|
|
628
629
|
customAttributes?: Record<string, any> | null | undefined;
|
|
630
|
+
shelfLife?: number | null | undefined;
|
|
629
631
|
scheduler?: {
|
|
630
632
|
repeat: "daily" | "weekly";
|
|
631
633
|
name: string;
|
|
@@ -769,6 +771,7 @@ export declare const FdtoMergedProduct: z.ZodObject<{
|
|
|
769
771
|
openPrice?: boolean | null | undefined;
|
|
770
772
|
noSst?: boolean | null | undefined;
|
|
771
773
|
customAttributes?: Record<string, any> | null | undefined;
|
|
774
|
+
shelfLife?: number | null | undefined;
|
|
772
775
|
scheduler?: {
|
|
773
776
|
repeat: "daily" | "weekly";
|
|
774
777
|
name: string;
|
|
@@ -1270,6 +1273,7 @@ export declare const FdtoMergedAddon: z.ZodObject<z.extendShape<{
|
|
|
1270
1273
|
}>;
|
|
1271
1274
|
variant: z.ZodNullable<z.ZodOptional<z.ZodType<IFdtoVariantSelectionGroup, z.ZodTypeDef, IFdtoVariantSelectionGroup>>>;
|
|
1272
1275
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
1276
|
+
shelfLife: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1273
1277
|
_id: z.ZodString;
|
|
1274
1278
|
code: z.ZodString;
|
|
1275
1279
|
name: z.ZodString;
|
|
@@ -1716,6 +1720,7 @@ export declare const FdtoMergedAddon: z.ZodObject<z.extendShape<{
|
|
|
1716
1720
|
openPrice?: boolean | null | undefined;
|
|
1717
1721
|
noSst?: boolean | null | undefined;
|
|
1718
1722
|
customAttributes?: Record<string, any> | null | undefined;
|
|
1723
|
+
shelfLife?: number | null | undefined;
|
|
1719
1724
|
scheduler?: {
|
|
1720
1725
|
repeat: "daily" | "weekly";
|
|
1721
1726
|
name: string;
|
|
@@ -1859,6 +1864,7 @@ export declare const FdtoMergedAddon: z.ZodObject<z.extendShape<{
|
|
|
1859
1864
|
openPrice?: boolean | null | undefined;
|
|
1860
1865
|
noSst?: boolean | null | undefined;
|
|
1861
1866
|
customAttributes?: Record<string, any> | null | undefined;
|
|
1867
|
+
shelfLife?: number | null | undefined;
|
|
1862
1868
|
scheduler?: {
|
|
1863
1869
|
repeat: "daily" | "weekly";
|
|
1864
1870
|
name: string;
|
|
@@ -2026,6 +2032,7 @@ export declare const FdtoMergedAddon: z.ZodObject<z.extendShape<{
|
|
|
2026
2032
|
openPrice?: boolean | null | undefined;
|
|
2027
2033
|
noSst?: boolean | null | undefined;
|
|
2028
2034
|
customAttributes?: Record<string, any> | null | undefined;
|
|
2035
|
+
shelfLife?: number | null | undefined;
|
|
2029
2036
|
scheduler?: {
|
|
2030
2037
|
repeat: "daily" | "weekly";
|
|
2031
2038
|
name: string;
|
|
@@ -2237,6 +2244,7 @@ export declare const FdtoMergedAddon: z.ZodObject<z.extendShape<{
|
|
|
2237
2244
|
openPrice?: boolean | null | undefined;
|
|
2238
2245
|
noSst?: boolean | null | undefined;
|
|
2239
2246
|
customAttributes?: Record<string, any> | null | undefined;
|
|
2247
|
+
shelfLife?: number | null | undefined;
|
|
2240
2248
|
scheduler?: {
|
|
2241
2249
|
repeat: "daily" | "weekly";
|
|
2242
2250
|
name: string;
|
|
@@ -2796,6 +2804,7 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
2796
2804
|
}>;
|
|
2797
2805
|
variant: z.ZodNullable<z.ZodOptional<z.ZodType<IFdtoVariantSelectionGroup, z.ZodTypeDef, IFdtoVariantSelectionGroup>>>;
|
|
2798
2806
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
2807
|
+
shelfLife: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
2799
2808
|
_id: z.ZodString;
|
|
2800
2809
|
code: z.ZodString;
|
|
2801
2810
|
name: z.ZodString;
|
|
@@ -3242,6 +3251,7 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
3242
3251
|
openPrice?: boolean | null | undefined;
|
|
3243
3252
|
noSst?: boolean | null | undefined;
|
|
3244
3253
|
customAttributes?: Record<string, any> | null | undefined;
|
|
3254
|
+
shelfLife?: number | null | undefined;
|
|
3245
3255
|
scheduler?: {
|
|
3246
3256
|
repeat: "daily" | "weekly";
|
|
3247
3257
|
name: string;
|
|
@@ -3385,6 +3395,7 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
3385
3395
|
openPrice?: boolean | null | undefined;
|
|
3386
3396
|
noSst?: boolean | null | undefined;
|
|
3387
3397
|
customAttributes?: Record<string, any> | null | undefined;
|
|
3398
|
+
shelfLife?: number | null | undefined;
|
|
3388
3399
|
scheduler?: {
|
|
3389
3400
|
repeat: "daily" | "weekly";
|
|
3390
3401
|
name: string;
|
|
@@ -3552,6 +3563,7 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
3552
3563
|
openPrice?: boolean | null | undefined;
|
|
3553
3564
|
noSst?: boolean | null | undefined;
|
|
3554
3565
|
customAttributes?: Record<string, any> | null | undefined;
|
|
3566
|
+
shelfLife?: number | null | undefined;
|
|
3555
3567
|
scheduler?: {
|
|
3556
3568
|
repeat: "daily" | "weekly";
|
|
3557
3569
|
name: string;
|
|
@@ -3763,6 +3775,7 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
3763
3775
|
openPrice?: boolean | null | undefined;
|
|
3764
3776
|
noSst?: boolean | null | undefined;
|
|
3765
3777
|
customAttributes?: Record<string, any> | null | undefined;
|
|
3778
|
+
shelfLife?: number | null | undefined;
|
|
3766
3779
|
scheduler?: {
|
|
3767
3780
|
repeat: "daily" | "weekly";
|
|
3768
3781
|
name: string;
|
|
@@ -3990,6 +4003,7 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
3990
4003
|
openPrice?: boolean | null | undefined;
|
|
3991
4004
|
noSst?: boolean | null | undefined;
|
|
3992
4005
|
customAttributes?: Record<string, any> | null | undefined;
|
|
4006
|
+
shelfLife?: number | null | undefined;
|
|
3993
4007
|
scheduler?: {
|
|
3994
4008
|
repeat: "daily" | "weekly";
|
|
3995
4009
|
name: string;
|
|
@@ -4211,6 +4225,7 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
4211
4225
|
openPrice?: boolean | null | undefined;
|
|
4212
4226
|
noSst?: boolean | null | undefined;
|
|
4213
4227
|
customAttributes?: Record<string, any> | null | undefined;
|
|
4228
|
+
shelfLife?: number | null | undefined;
|
|
4214
4229
|
scheduler?: {
|
|
4215
4230
|
repeat: "daily" | "weekly";
|
|
4216
4231
|
name: string;
|
|
@@ -4528,6 +4543,7 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
4528
4543
|
}>;
|
|
4529
4544
|
variant: z.ZodNullable<z.ZodOptional<z.ZodType<IFdtoVariantSelectionGroup, z.ZodTypeDef, IFdtoVariantSelectionGroup>>>;
|
|
4530
4545
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
4546
|
+
shelfLife: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
4531
4547
|
_id: z.ZodString;
|
|
4532
4548
|
code: z.ZodString;
|
|
4533
4549
|
name: z.ZodString;
|
|
@@ -4974,6 +4990,7 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
4974
4990
|
openPrice?: boolean | null | undefined;
|
|
4975
4991
|
noSst?: boolean | null | undefined;
|
|
4976
4992
|
customAttributes?: Record<string, any> | null | undefined;
|
|
4993
|
+
shelfLife?: number | null | undefined;
|
|
4977
4994
|
scheduler?: {
|
|
4978
4995
|
repeat: "daily" | "weekly";
|
|
4979
4996
|
name: string;
|
|
@@ -5117,6 +5134,7 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
5117
5134
|
openPrice?: boolean | null | undefined;
|
|
5118
5135
|
noSst?: boolean | null | undefined;
|
|
5119
5136
|
customAttributes?: Record<string, any> | null | undefined;
|
|
5137
|
+
shelfLife?: number | null | undefined;
|
|
5120
5138
|
scheduler?: {
|
|
5121
5139
|
repeat: "daily" | "weekly";
|
|
5122
5140
|
name: string;
|
|
@@ -5611,6 +5629,7 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
5611
5629
|
}>;
|
|
5612
5630
|
variant: z.ZodNullable<z.ZodOptional<z.ZodType<IFdtoVariantSelectionGroup, z.ZodTypeDef, IFdtoVariantSelectionGroup>>>;
|
|
5613
5631
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
5632
|
+
shelfLife: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
5614
5633
|
_id: z.ZodString;
|
|
5615
5634
|
code: z.ZodString;
|
|
5616
5635
|
name: z.ZodString;
|
|
@@ -6057,6 +6076,7 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
6057
6076
|
openPrice?: boolean | null | undefined;
|
|
6058
6077
|
noSst?: boolean | null | undefined;
|
|
6059
6078
|
customAttributes?: Record<string, any> | null | undefined;
|
|
6079
|
+
shelfLife?: number | null | undefined;
|
|
6060
6080
|
scheduler?: {
|
|
6061
6081
|
repeat: "daily" | "weekly";
|
|
6062
6082
|
name: string;
|
|
@@ -6200,6 +6220,7 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
6200
6220
|
openPrice?: boolean | null | undefined;
|
|
6201
6221
|
noSst?: boolean | null | undefined;
|
|
6202
6222
|
customAttributes?: Record<string, any> | null | undefined;
|
|
6223
|
+
shelfLife?: number | null | undefined;
|
|
6203
6224
|
scheduler?: {
|
|
6204
6225
|
repeat: "daily" | "weekly";
|
|
6205
6226
|
name: string;
|
|
@@ -6367,6 +6388,7 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
6367
6388
|
openPrice?: boolean | null | undefined;
|
|
6368
6389
|
noSst?: boolean | null | undefined;
|
|
6369
6390
|
customAttributes?: Record<string, any> | null | undefined;
|
|
6391
|
+
shelfLife?: number | null | undefined;
|
|
6370
6392
|
scheduler?: {
|
|
6371
6393
|
repeat: "daily" | "weekly";
|
|
6372
6394
|
name: string;
|
|
@@ -6578,6 +6600,7 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
6578
6600
|
openPrice?: boolean | null | undefined;
|
|
6579
6601
|
noSst?: boolean | null | undefined;
|
|
6580
6602
|
customAttributes?: Record<string, any> | null | undefined;
|
|
6603
|
+
shelfLife?: number | null | undefined;
|
|
6581
6604
|
scheduler?: {
|
|
6582
6605
|
repeat: "daily" | "weekly";
|
|
6583
6606
|
name: string;
|
|
@@ -6805,6 +6828,7 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
6805
6828
|
openPrice?: boolean | null | undefined;
|
|
6806
6829
|
noSst?: boolean | null | undefined;
|
|
6807
6830
|
customAttributes?: Record<string, any> | null | undefined;
|
|
6831
|
+
shelfLife?: number | null | undefined;
|
|
6808
6832
|
scheduler?: {
|
|
6809
6833
|
repeat: "daily" | "weekly";
|
|
6810
6834
|
name: string;
|
|
@@ -7026,6 +7050,7 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
7026
7050
|
openPrice?: boolean | null | undefined;
|
|
7027
7051
|
noSst?: boolean | null | undefined;
|
|
7028
7052
|
customAttributes?: Record<string, any> | null | undefined;
|
|
7053
|
+
shelfLife?: number | null | undefined;
|
|
7029
7054
|
scheduler?: {
|
|
7030
7055
|
repeat: "daily" | "weekly";
|
|
7031
7056
|
name: string;
|
|
@@ -7357,6 +7382,7 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
7357
7382
|
}>;
|
|
7358
7383
|
variant: z.ZodNullable<z.ZodOptional<z.ZodType<IFdtoVariantSelectionGroup, z.ZodTypeDef, IFdtoVariantSelectionGroup>>>;
|
|
7359
7384
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
7385
|
+
shelfLife: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
7360
7386
|
_id: z.ZodString;
|
|
7361
7387
|
code: z.ZodString;
|
|
7362
7388
|
name: z.ZodString;
|
|
@@ -7803,6 +7829,7 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
7803
7829
|
openPrice?: boolean | null | undefined;
|
|
7804
7830
|
noSst?: boolean | null | undefined;
|
|
7805
7831
|
customAttributes?: Record<string, any> | null | undefined;
|
|
7832
|
+
shelfLife?: number | null | undefined;
|
|
7806
7833
|
scheduler?: {
|
|
7807
7834
|
repeat: "daily" | "weekly";
|
|
7808
7835
|
name: string;
|
|
@@ -7946,6 +7973,7 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
7946
7973
|
openPrice?: boolean | null | undefined;
|
|
7947
7974
|
noSst?: boolean | null | undefined;
|
|
7948
7975
|
customAttributes?: Record<string, any> | null | undefined;
|
|
7976
|
+
shelfLife?: number | null | undefined;
|
|
7949
7977
|
scheduler?: {
|
|
7950
7978
|
repeat: "daily" | "weekly";
|
|
7951
7979
|
name: string;
|
|
@@ -8113,6 +8141,7 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
8113
8141
|
openPrice?: boolean | null | undefined;
|
|
8114
8142
|
noSst?: boolean | null | undefined;
|
|
8115
8143
|
customAttributes?: Record<string, any> | null | undefined;
|
|
8144
|
+
shelfLife?: number | null | undefined;
|
|
8116
8145
|
scheduler?: {
|
|
8117
8146
|
repeat: "daily" | "weekly";
|
|
8118
8147
|
name: string;
|
|
@@ -8274,6 +8303,7 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
8274
8303
|
openPrice?: boolean | null | undefined;
|
|
8275
8304
|
noSst?: boolean | null | undefined;
|
|
8276
8305
|
customAttributes?: Record<string, any> | null | undefined;
|
|
8306
|
+
shelfLife?: number | null | undefined;
|
|
8277
8307
|
scheduler?: {
|
|
8278
8308
|
repeat: "daily" | "weekly";
|
|
8279
8309
|
name: string;
|
|
@@ -8484,6 +8514,7 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
8484
8514
|
openPrice?: boolean | null | undefined;
|
|
8485
8515
|
noSst?: boolean | null | undefined;
|
|
8486
8516
|
customAttributes?: Record<string, any> | null | undefined;
|
|
8517
|
+
shelfLife?: number | null | undefined;
|
|
8487
8518
|
scheduler?: {
|
|
8488
8519
|
repeat: "daily" | "weekly";
|
|
8489
8520
|
name: string;
|
|
@@ -8643,6 +8674,7 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
8643
8674
|
openPrice?: boolean | null | undefined;
|
|
8644
8675
|
noSst?: boolean | null | undefined;
|
|
8645
8676
|
customAttributes?: Record<string, any> | null | undefined;
|
|
8677
|
+
shelfLife?: number | null | undefined;
|
|
8646
8678
|
scheduler?: {
|
|
8647
8679
|
repeat: "daily" | "weekly";
|
|
8648
8680
|
name: string;
|
|
@@ -8804,6 +8836,7 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
8804
8836
|
openPrice?: boolean | null | undefined;
|
|
8805
8837
|
noSst?: boolean | null | undefined;
|
|
8806
8838
|
customAttributes?: Record<string, any> | null | undefined;
|
|
8839
|
+
shelfLife?: number | null | undefined;
|
|
8807
8840
|
scheduler?: {
|
|
8808
8841
|
repeat: "daily" | "weekly";
|
|
8809
8842
|
name: string;
|
|
@@ -9014,6 +9047,7 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
9014
9047
|
openPrice?: boolean | null | undefined;
|
|
9015
9048
|
noSst?: boolean | null | undefined;
|
|
9016
9049
|
customAttributes?: Record<string, any> | null | undefined;
|
|
9050
|
+
shelfLife?: number | null | undefined;
|
|
9017
9051
|
scheduler?: {
|
|
9018
9052
|
repeat: "daily" | "weekly";
|
|
9019
9053
|
name: string;
|
|
@@ -56,26 +56,6 @@ export declare const FdtoUpdateOrderPlatformSettingReq: z.ZodObject<z.extendShap
|
|
|
56
56
|
action: "SYNC_MENU" | "UPDATE_ORDER" | "GET_OR_UPDATE_SETTING";
|
|
57
57
|
platform: string;
|
|
58
58
|
}>;
|
|
59
|
-
export declare const FdtoUpdateOrderPlatformItemReq: z.ZodObject<{
|
|
60
|
-
/**
|
|
61
|
-
* enable = null -> GET
|
|
62
|
-
* enable = true/false -> UPDATE
|
|
63
|
-
*/
|
|
64
|
-
enable: z.ZodBoolean;
|
|
65
|
-
itemId: z.ZodString;
|
|
66
|
-
itemName: z.ZodString;
|
|
67
|
-
groupId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
68
|
-
}, "strip", z.ZodTypeAny, {
|
|
69
|
-
groupId?: string | null | undefined;
|
|
70
|
-
enable: boolean;
|
|
71
|
-
itemId: string;
|
|
72
|
-
itemName: string;
|
|
73
|
-
}, {
|
|
74
|
-
groupId?: string | null | undefined;
|
|
75
|
-
enable: boolean;
|
|
76
|
-
itemId: string;
|
|
77
|
-
itemName: string;
|
|
78
|
-
}>;
|
|
79
59
|
export declare const FdtoGetOrderDateRange: z.ZodObject<{
|
|
80
60
|
start: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
81
61
|
end: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -439,6 +439,7 @@ export declare const FdoOrderKioskSettings: z.ZodObject<{
|
|
|
439
439
|
}, {
|
|
440
440
|
showAllOnly: boolean;
|
|
441
441
|
}>>>;
|
|
442
|
+
otaChannel: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
442
443
|
}, "strip", z.ZodTypeAny, {
|
|
443
444
|
dineIn?: {
|
|
444
445
|
requiredSlot?: boolean | null | undefined;
|
|
@@ -495,6 +496,7 @@ export declare const FdoOrderKioskSettings: z.ZodObject<{
|
|
|
495
496
|
menuItem?: {
|
|
496
497
|
showAllOnly: boolean;
|
|
497
498
|
} | null | undefined;
|
|
499
|
+
otaChannel?: string | null | undefined;
|
|
498
500
|
}, {
|
|
499
501
|
dineIn?: {
|
|
500
502
|
requiredSlot?: boolean | null | undefined;
|
|
@@ -551,6 +553,7 @@ export declare const FdoOrderKioskSettings: z.ZodObject<{
|
|
|
551
553
|
menuItem?: {
|
|
552
554
|
showAllOnly: boolean;
|
|
553
555
|
} | null | undefined;
|
|
556
|
+
otaChannel?: string | null | undefined;
|
|
554
557
|
}>;
|
|
555
558
|
export type FdoOrderKioskSettings = z.infer<typeof FdoOrderKioskSettings>;
|
|
556
559
|
export type FdoEPaymentMethod = z.infer<typeof FdoEPaymentMethod>;
|
|
@@ -638,6 +638,7 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
638
638
|
}, {
|
|
639
639
|
showAllOnly: boolean;
|
|
640
640
|
}>>>;
|
|
641
|
+
otaChannel: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
641
642
|
}, "strip", z.ZodTypeAny, {
|
|
642
643
|
dineIn?: {
|
|
643
644
|
requiredSlot?: boolean | null | undefined;
|
|
@@ -694,6 +695,7 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
694
695
|
menuItem?: {
|
|
695
696
|
showAllOnly: boolean;
|
|
696
697
|
} | null | undefined;
|
|
698
|
+
otaChannel?: string | null | undefined;
|
|
697
699
|
}, {
|
|
698
700
|
dineIn?: {
|
|
699
701
|
requiredSlot?: boolean | null | undefined;
|
|
@@ -750,6 +752,7 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
750
752
|
menuItem?: {
|
|
751
753
|
showAllOnly: boolean;
|
|
752
754
|
} | null | undefined;
|
|
755
|
+
otaChannel?: string | null | undefined;
|
|
753
756
|
}>>;
|
|
754
757
|
export type OrderKioskSettings = z.infer<typeof OrderKioskSettings>;
|
|
755
758
|
export type OrderKioskDineIn = z.infer<typeof OrderKioskDineIn>;
|
|
@@ -722,6 +722,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
|
|
|
722
722
|
}, {
|
|
723
723
|
showAllOnly: boolean;
|
|
724
724
|
}>>>;
|
|
725
|
+
otaChannel: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
725
726
|
}, "strip", z.ZodTypeAny, {
|
|
726
727
|
dineIn?: {
|
|
727
728
|
requiredSlot?: boolean | null | undefined;
|
|
@@ -778,6 +779,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
|
|
|
778
779
|
menuItem?: {
|
|
779
780
|
showAllOnly: boolean;
|
|
780
781
|
} | null | undefined;
|
|
782
|
+
otaChannel?: string | null | undefined;
|
|
781
783
|
}, {
|
|
782
784
|
dineIn?: {
|
|
783
785
|
requiredSlot?: boolean | null | undefined;
|
|
@@ -834,6 +836,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
|
|
|
834
836
|
menuItem?: {
|
|
835
837
|
showAllOnly: boolean;
|
|
836
838
|
} | null | undefined;
|
|
839
|
+
otaChannel?: string | null | undefined;
|
|
837
840
|
}>>>;
|
|
838
841
|
queueSettings: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
839
842
|
enableOrder: z.ZodBoolean;
|
|
@@ -1151,6 +1154,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
|
|
|
1151
1154
|
menuItem?: {
|
|
1152
1155
|
showAllOnly: boolean;
|
|
1153
1156
|
} | null | undefined;
|
|
1157
|
+
otaChannel?: string | null | undefined;
|
|
1154
1158
|
} | null | undefined;
|
|
1155
1159
|
enableV3?: boolean | null | undefined;
|
|
1156
1160
|
dineInSettings?: {
|
|
@@ -1342,6 +1346,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
|
|
|
1342
1346
|
menuItem?: {
|
|
1343
1347
|
showAllOnly: boolean;
|
|
1344
1348
|
} | null | undefined;
|
|
1349
|
+
otaChannel?: string | null | undefined;
|
|
1345
1350
|
} | null | undefined;
|
|
1346
1351
|
enableV3?: boolean | null | undefined;
|
|
1347
1352
|
dineInSettings?: {
|
|
@@ -511,6 +511,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
|
|
|
511
511
|
}, {
|
|
512
512
|
showAllOnly: boolean;
|
|
513
513
|
}>>>;
|
|
514
|
+
otaChannel: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
514
515
|
}, "strip", z.ZodTypeAny, {
|
|
515
516
|
dineIn?: {
|
|
516
517
|
requiredSlot?: boolean | null | undefined;
|
|
@@ -567,6 +568,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
|
|
|
567
568
|
menuItem?: {
|
|
568
569
|
showAllOnly: boolean;
|
|
569
570
|
} | null | undefined;
|
|
571
|
+
otaChannel?: string | null | undefined;
|
|
570
572
|
}, {
|
|
571
573
|
dineIn?: {
|
|
572
574
|
requiredSlot?: boolean | null | undefined;
|
|
@@ -623,6 +625,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
|
|
|
623
625
|
menuItem?: {
|
|
624
626
|
showAllOnly: boolean;
|
|
625
627
|
} | null | undefined;
|
|
628
|
+
otaChannel?: string | null | undefined;
|
|
626
629
|
}>>>>;
|
|
627
630
|
queueSettings: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
628
631
|
enableOrder: z.ZodBoolean;
|
|
@@ -1113,6 +1116,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
|
|
|
1113
1116
|
menuItem?: {
|
|
1114
1117
|
showAllOnly: boolean;
|
|
1115
1118
|
} | null | undefined;
|
|
1119
|
+
otaChannel?: string | null | undefined;
|
|
1116
1120
|
} | null | undefined;
|
|
1117
1121
|
enableV3?: boolean | null | undefined;
|
|
1118
1122
|
dineInSettings?: {
|
|
@@ -1303,6 +1307,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
|
|
|
1303
1307
|
menuItem?: {
|
|
1304
1308
|
showAllOnly: boolean;
|
|
1305
1309
|
} | null | undefined;
|
|
1310
|
+
otaChannel?: string | null | undefined;
|
|
1306
1311
|
} | null | undefined;
|
|
1307
1312
|
enableV3?: boolean | null | undefined;
|
|
1308
1313
|
dineInSettings?: {
|
|
@@ -1919,6 +1924,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
|
|
|
1919
1924
|
}, {
|
|
1920
1925
|
showAllOnly: boolean;
|
|
1921
1926
|
}>>>;
|
|
1927
|
+
otaChannel: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1922
1928
|
}, "strip", z.ZodTypeAny, {
|
|
1923
1929
|
dineIn?: {
|
|
1924
1930
|
requiredSlot?: boolean | null | undefined;
|
|
@@ -1975,6 +1981,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
|
|
|
1975
1981
|
menuItem?: {
|
|
1976
1982
|
showAllOnly: boolean;
|
|
1977
1983
|
} | null | undefined;
|
|
1984
|
+
otaChannel?: string | null | undefined;
|
|
1978
1985
|
}, {
|
|
1979
1986
|
dineIn?: {
|
|
1980
1987
|
requiredSlot?: boolean | null | undefined;
|
|
@@ -2031,6 +2038,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
|
|
|
2031
2038
|
menuItem?: {
|
|
2032
2039
|
showAllOnly: boolean;
|
|
2033
2040
|
} | null | undefined;
|
|
2041
|
+
otaChannel?: string | null | undefined;
|
|
2034
2042
|
}>>>>;
|
|
2035
2043
|
queueSettings: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2036
2044
|
enableOrder: z.ZodBoolean;
|
|
@@ -2521,6 +2529,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
|
|
|
2521
2529
|
menuItem?: {
|
|
2522
2530
|
showAllOnly: boolean;
|
|
2523
2531
|
} | null | undefined;
|
|
2532
|
+
otaChannel?: string | null | undefined;
|
|
2524
2533
|
} | null | undefined;
|
|
2525
2534
|
enableV3?: boolean | null | undefined;
|
|
2526
2535
|
dineInSettings?: {
|
|
@@ -2710,6 +2719,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
|
|
|
2710
2719
|
menuItem?: {
|
|
2711
2720
|
showAllOnly: boolean;
|
|
2712
2721
|
} | null | undefined;
|
|
2722
|
+
otaChannel?: string | null | undefined;
|
|
2713
2723
|
} | null | undefined;
|
|
2714
2724
|
enableV3?: boolean | null | undefined;
|
|
2715
2725
|
dineInSettings?: {
|