@feedmepos/mf-order-setting 0.0.36 → 0.0.37
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-wPKewwAS.js → KioskDevicesView-D9PQ22G6.js} +1 -1
- package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-BCJPU2la.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-BuwHk_0a.js} +2 -2
- package/dist/{KioskSettingView-CV54HpY2.js → KioskSettingView-C98iSa7q.js} +1 -1
- package/dist/{KioskView-B4mggCt0.js → KioskView-C6s4u6vt.js} +7 -7
- package/dist/{OrderSettingsView-CKGRFx_2.js → OrderSettingsView-DFB_C-VO.js} +6030 -5897
- package/dist/{app-D4exdzAx.js → app-86WCOyBO.js} +21 -9
- package/dist/app.js +1 -1
- package/dist/{dayjs.min-C_sCJHuD.js → dayjs.min-BiuO1l2_.js} +1 -1
- package/dist/frontend/mf-order/src/app.d.ts +12 -0
- package/dist/frontend/mf-order/src/helpers/order-setting.d.ts +6 -0
- package/dist/frontend/mf-order/src/main.d.ts +12 -0
- package/dist/frontend/mf-order/src/stores/order-setting/index.d.ts +27 -0
- package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{index-Cvhc_ltu.js → index-DZKSDqn_.js} +2 -2
- package/dist/menu.dto-CT1XwUKO.js +127978 -0
- package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +24 -24
- package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +48 -48
- package/dist/package/entity/order/menu/menu.dto.d.ts +10 -0
- package/dist/package/entity/order/order-item/order-item.dto.d.ts +48 -48
- package/dist/package/entity/order/order.do.d.ts +20 -8
- package/dist/package/entity/order/order.dto.d.ts +280 -164
- package/dist/package/entity/order-platform/shopeefood/shopeefood-order.do.d.ts +33 -0
- package/dist/package/entity/order-platform/shopeefood/shopeefood-order.dto.d.ts +18 -0
- package/dist/package/entity/order-setting/order-setting.do.d.ts +168 -0
- package/dist/package/entity/order-setting/order-setting.dto.d.ts +134 -0
- package/dist/package/entity/order-setting/queue/queue.do.d.ts +95 -1613
- package/dist/package/entity/order-setting/queue/queue.dto.d.ts +62 -110
- package/dist/package/entity/order-setting/sequence/sequence.do.d.ts +72 -0
- package/dist/package/entity/order-setting/sequence/sequence.dto.d.ts +101 -0
- package/dist/package/entity/queue/queue.do.d.ts +18 -6
- package/dist/package/entity/queue/queue.dto.d.ts +52 -38
- package/dist/package/entity/restaurant/restaurant.dto.d.ts +81 -17
- package/package.json +1 -1
- package/src/helpers/order-setting.ts +20 -0
- package/src/locales/en-US.json +4 -0
- package/src/locales/th-TH.json +4 -0
- package/src/locales/zh-CN.json +4 -0
- package/src/stores/order-setting/mapper.ts +56 -56
- package/src/views/order-settings/general/GeneralSetting.vue +159 -4
- package/dist/menu.dto-CeUdKgTW.js +0 -103445
|
@@ -2622,15 +2622,15 @@ export declare const FdtoOrderItem: z.ZodObject<{
|
|
|
2622
2622
|
}, "strip", z.ZodTypeAny, {
|
|
2623
2623
|
id?: string | null | undefined;
|
|
2624
2624
|
remark?: string | null | undefined;
|
|
2625
|
-
is?: {
|
|
2626
|
-
delivery?: boolean | null | undefined;
|
|
2627
|
-
takeaway: boolean;
|
|
2628
|
-
} | null | undefined;
|
|
2629
2625
|
productId?: string | null | undefined;
|
|
2630
2626
|
variantSelected?: {
|
|
2631
2627
|
name: string[];
|
|
2632
2628
|
combinationKey: string;
|
|
2633
2629
|
} | null | undefined;
|
|
2630
|
+
is?: {
|
|
2631
|
+
delivery?: boolean | null | undefined;
|
|
2632
|
+
takeaway: boolean;
|
|
2633
|
+
} | null | undefined;
|
|
2634
2634
|
adjustment?: Record<string, {
|
|
2635
2635
|
reason?: string | null | undefined;
|
|
2636
2636
|
referenceId?: string | null | undefined;
|
|
@@ -2722,15 +2722,15 @@ export declare const FdtoOrderItem: z.ZodObject<{
|
|
|
2722
2722
|
}, {
|
|
2723
2723
|
id?: string | null | undefined;
|
|
2724
2724
|
remark?: string | null | undefined;
|
|
2725
|
-
is?: {
|
|
2726
|
-
delivery?: boolean | null | undefined;
|
|
2727
|
-
takeaway: boolean;
|
|
2728
|
-
} | null | undefined;
|
|
2729
2725
|
productId?: string | null | undefined;
|
|
2730
2726
|
variantSelected?: {
|
|
2731
2727
|
name: string[];
|
|
2732
2728
|
combinationKey: string;
|
|
2733
2729
|
} | null | undefined;
|
|
2730
|
+
is?: {
|
|
2731
|
+
delivery?: boolean | null | undefined;
|
|
2732
|
+
takeaway: boolean;
|
|
2733
|
+
} | null | undefined;
|
|
2734
2734
|
adjustment?: Record<string, {
|
|
2735
2735
|
reason?: string | null | undefined;
|
|
2736
2736
|
referenceId?: string | null | undefined;
|
|
@@ -3212,15 +3212,15 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
3212
3212
|
}, "strip", z.ZodTypeAny, {
|
|
3213
3213
|
id?: string | null | undefined;
|
|
3214
3214
|
remark?: string | null | undefined;
|
|
3215
|
-
is?: {
|
|
3216
|
-
delivery?: boolean | null | undefined;
|
|
3217
|
-
takeaway: boolean;
|
|
3218
|
-
} | null | undefined;
|
|
3219
3215
|
productId?: string | null | undefined;
|
|
3220
3216
|
variantSelected?: {
|
|
3221
3217
|
name: string[];
|
|
3222
3218
|
combinationKey: string;
|
|
3223
3219
|
} | null | undefined;
|
|
3220
|
+
is?: {
|
|
3221
|
+
delivery?: boolean | null | undefined;
|
|
3222
|
+
takeaway: boolean;
|
|
3223
|
+
} | null | undefined;
|
|
3224
3224
|
adjustment?: Record<string, {
|
|
3225
3225
|
reason?: string | null | undefined;
|
|
3226
3226
|
referenceId?: string | null | undefined;
|
|
@@ -3312,15 +3312,15 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
3312
3312
|
}, {
|
|
3313
3313
|
id?: string | null | undefined;
|
|
3314
3314
|
remark?: string | null | undefined;
|
|
3315
|
-
is?: {
|
|
3316
|
-
delivery?: boolean | null | undefined;
|
|
3317
|
-
takeaway: boolean;
|
|
3318
|
-
} | null | undefined;
|
|
3319
3315
|
productId?: string | null | undefined;
|
|
3320
3316
|
variantSelected?: {
|
|
3321
3317
|
name: string[];
|
|
3322
3318
|
combinationKey: string;
|
|
3323
3319
|
} | null | undefined;
|
|
3320
|
+
is?: {
|
|
3321
|
+
delivery?: boolean | null | undefined;
|
|
3322
|
+
takeaway: boolean;
|
|
3323
|
+
} | null | undefined;
|
|
3324
3324
|
adjustment?: Record<string, {
|
|
3325
3325
|
reason?: string | null | undefined;
|
|
3326
3326
|
referenceId?: string | null | undefined;
|
|
@@ -6489,15 +6489,15 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
6489
6489
|
draft: {
|
|
6490
6490
|
id?: string | null | undefined;
|
|
6491
6491
|
remark?: string | null | undefined;
|
|
6492
|
-
is?: {
|
|
6493
|
-
delivery?: boolean | null | undefined;
|
|
6494
|
-
takeaway: boolean;
|
|
6495
|
-
} | null | undefined;
|
|
6496
6492
|
productId?: string | null | undefined;
|
|
6497
6493
|
variantSelected?: {
|
|
6498
6494
|
name: string[];
|
|
6499
6495
|
combinationKey: string;
|
|
6500
6496
|
} | null | undefined;
|
|
6497
|
+
is?: {
|
|
6498
|
+
delivery?: boolean | null | undefined;
|
|
6499
|
+
takeaway: boolean;
|
|
6500
|
+
} | null | undefined;
|
|
6501
6501
|
adjustment?: Record<string, {
|
|
6502
6502
|
reason?: string | null | undefined;
|
|
6503
6503
|
referenceId?: string | null | undefined;
|
|
@@ -7044,15 +7044,15 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
7044
7044
|
draft: {
|
|
7045
7045
|
id?: string | null | undefined;
|
|
7046
7046
|
remark?: string | null | undefined;
|
|
7047
|
-
is?: {
|
|
7048
|
-
delivery?: boolean | null | undefined;
|
|
7049
|
-
takeaway: boolean;
|
|
7050
|
-
} | null | undefined;
|
|
7051
7047
|
productId?: string | null | undefined;
|
|
7052
7048
|
variantSelected?: {
|
|
7053
7049
|
name: string[];
|
|
7054
7050
|
combinationKey: string;
|
|
7055
7051
|
} | null | undefined;
|
|
7052
|
+
is?: {
|
|
7053
|
+
delivery?: boolean | null | undefined;
|
|
7054
|
+
takeaway: boolean;
|
|
7055
|
+
} | null | undefined;
|
|
7056
7056
|
adjustment?: Record<string, {
|
|
7057
7057
|
reason?: string | null | undefined;
|
|
7058
7058
|
referenceId?: string | null | undefined;
|
|
@@ -393,15 +393,15 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
393
393
|
}, "strip", z.ZodTypeAny, {
|
|
394
394
|
id?: string | null | undefined;
|
|
395
395
|
remark?: string | null | undefined;
|
|
396
|
-
is?: {
|
|
397
|
-
delivery?: boolean | null | undefined;
|
|
398
|
-
takeaway: boolean;
|
|
399
|
-
} | null | undefined;
|
|
400
396
|
productId?: string | null | undefined;
|
|
401
397
|
variantSelected?: {
|
|
402
398
|
name: string[];
|
|
403
399
|
combinationKey: string;
|
|
404
400
|
} | null | undefined;
|
|
401
|
+
is?: {
|
|
402
|
+
delivery?: boolean | null | undefined;
|
|
403
|
+
takeaway: boolean;
|
|
404
|
+
} | null | undefined;
|
|
405
405
|
adjustment?: Record<string, {
|
|
406
406
|
reason?: string | null | undefined;
|
|
407
407
|
referenceId?: string | null | undefined;
|
|
@@ -493,15 +493,15 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
493
493
|
}, {
|
|
494
494
|
id?: string | null | undefined;
|
|
495
495
|
remark?: string | null | undefined;
|
|
496
|
-
is?: {
|
|
497
|
-
delivery?: boolean | null | undefined;
|
|
498
|
-
takeaway: boolean;
|
|
499
|
-
} | null | undefined;
|
|
500
496
|
productId?: string | null | undefined;
|
|
501
497
|
variantSelected?: {
|
|
502
498
|
name: string[];
|
|
503
499
|
combinationKey: string;
|
|
504
500
|
} | null | undefined;
|
|
501
|
+
is?: {
|
|
502
|
+
delivery?: boolean | null | undefined;
|
|
503
|
+
takeaway: boolean;
|
|
504
|
+
} | null | undefined;
|
|
505
505
|
adjustment?: Record<string, {
|
|
506
506
|
reason?: string | null | undefined;
|
|
507
507
|
referenceId?: string | null | undefined;
|
|
@@ -3670,15 +3670,15 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
3670
3670
|
draft: {
|
|
3671
3671
|
id?: string | null | undefined;
|
|
3672
3672
|
remark?: string | null | undefined;
|
|
3673
|
-
is?: {
|
|
3674
|
-
delivery?: boolean | null | undefined;
|
|
3675
|
-
takeaway: boolean;
|
|
3676
|
-
} | null | undefined;
|
|
3677
3673
|
productId?: string | null | undefined;
|
|
3678
3674
|
variantSelected?: {
|
|
3679
3675
|
name: string[];
|
|
3680
3676
|
combinationKey: string;
|
|
3681
3677
|
} | null | undefined;
|
|
3678
|
+
is?: {
|
|
3679
|
+
delivery?: boolean | null | undefined;
|
|
3680
|
+
takeaway: boolean;
|
|
3681
|
+
} | null | undefined;
|
|
3682
3682
|
adjustment?: Record<string, {
|
|
3683
3683
|
reason?: string | null | undefined;
|
|
3684
3684
|
referenceId?: string | null | undefined;
|
|
@@ -4225,15 +4225,15 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
4225
4225
|
draft: {
|
|
4226
4226
|
id?: string | null | undefined;
|
|
4227
4227
|
remark?: string | null | undefined;
|
|
4228
|
-
is?: {
|
|
4229
|
-
delivery?: boolean | null | undefined;
|
|
4230
|
-
takeaway: boolean;
|
|
4231
|
-
} | null | undefined;
|
|
4232
4228
|
productId?: string | null | undefined;
|
|
4233
4229
|
variantSelected?: {
|
|
4234
4230
|
name: string[];
|
|
4235
4231
|
combinationKey: string;
|
|
4236
4232
|
} | null | undefined;
|
|
4233
|
+
is?: {
|
|
4234
|
+
delivery?: boolean | null | undefined;
|
|
4235
|
+
takeaway: boolean;
|
|
4236
|
+
} | null | undefined;
|
|
4237
4237
|
adjustment?: Record<string, {
|
|
4238
4238
|
reason?: string | null | undefined;
|
|
4239
4239
|
referenceId?: string | null | undefined;
|
|
@@ -4821,15 +4821,15 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
4821
4821
|
draft: {
|
|
4822
4822
|
id?: string | null | undefined;
|
|
4823
4823
|
remark?: string | null | undefined;
|
|
4824
|
-
is?: {
|
|
4825
|
-
delivery?: boolean | null | undefined;
|
|
4826
|
-
takeaway: boolean;
|
|
4827
|
-
} | null | undefined;
|
|
4828
4824
|
productId?: string | null | undefined;
|
|
4829
4825
|
variantSelected?: {
|
|
4830
4826
|
name: string[];
|
|
4831
4827
|
combinationKey: string;
|
|
4832
4828
|
} | null | undefined;
|
|
4829
|
+
is?: {
|
|
4830
|
+
delivery?: boolean | null | undefined;
|
|
4831
|
+
takeaway: boolean;
|
|
4832
|
+
} | null | undefined;
|
|
4833
4833
|
adjustment?: Record<string, {
|
|
4834
4834
|
reason?: string | null | undefined;
|
|
4835
4835
|
referenceId?: string | null | undefined;
|
|
@@ -5391,15 +5391,15 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
5391
5391
|
draft: {
|
|
5392
5392
|
id?: string | null | undefined;
|
|
5393
5393
|
remark?: string | null | undefined;
|
|
5394
|
-
is?: {
|
|
5395
|
-
delivery?: boolean | null | undefined;
|
|
5396
|
-
takeaway: boolean;
|
|
5397
|
-
} | null | undefined;
|
|
5398
5394
|
productId?: string | null | undefined;
|
|
5399
5395
|
variantSelected?: {
|
|
5400
5396
|
name: string[];
|
|
5401
5397
|
combinationKey: string;
|
|
5402
5398
|
} | null | undefined;
|
|
5399
|
+
is?: {
|
|
5400
|
+
delivery?: boolean | null | undefined;
|
|
5401
|
+
takeaway: boolean;
|
|
5402
|
+
} | null | undefined;
|
|
5403
5403
|
adjustment?: Record<string, {
|
|
5404
5404
|
reason?: string | null | undefined;
|
|
5405
5405
|
referenceId?: string | null | undefined;
|
|
@@ -5983,15 +5983,15 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
5983
5983
|
}, "strip", z.ZodTypeAny, {
|
|
5984
5984
|
id?: string | null | undefined;
|
|
5985
5985
|
remark?: string | null | undefined;
|
|
5986
|
-
is?: {
|
|
5987
|
-
delivery?: boolean | null | undefined;
|
|
5988
|
-
takeaway: boolean;
|
|
5989
|
-
} | null | undefined;
|
|
5990
5986
|
productId?: string | null | undefined;
|
|
5991
5987
|
variantSelected?: {
|
|
5992
5988
|
name: string[];
|
|
5993
5989
|
combinationKey: string;
|
|
5994
5990
|
} | null | undefined;
|
|
5991
|
+
is?: {
|
|
5992
|
+
delivery?: boolean | null | undefined;
|
|
5993
|
+
takeaway: boolean;
|
|
5994
|
+
} | null | undefined;
|
|
5995
5995
|
adjustment?: Record<string, {
|
|
5996
5996
|
reason?: string | null | undefined;
|
|
5997
5997
|
referenceId?: string | null | undefined;
|
|
@@ -6083,15 +6083,15 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
6083
6083
|
}, {
|
|
6084
6084
|
id?: string | null | undefined;
|
|
6085
6085
|
remark?: string | null | undefined;
|
|
6086
|
-
is?: {
|
|
6087
|
-
delivery?: boolean | null | undefined;
|
|
6088
|
-
takeaway: boolean;
|
|
6089
|
-
} | null | undefined;
|
|
6090
6086
|
productId?: string | null | undefined;
|
|
6091
6087
|
variantSelected?: {
|
|
6092
6088
|
name: string[];
|
|
6093
6089
|
combinationKey: string;
|
|
6094
6090
|
} | null | undefined;
|
|
6091
|
+
is?: {
|
|
6092
|
+
delivery?: boolean | null | undefined;
|
|
6093
|
+
takeaway: boolean;
|
|
6094
|
+
} | null | undefined;
|
|
6095
6095
|
adjustment?: Record<string, {
|
|
6096
6096
|
reason?: string | null | undefined;
|
|
6097
6097
|
referenceId?: string | null | undefined;
|
|
@@ -9260,15 +9260,15 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
9260
9260
|
draft: {
|
|
9261
9261
|
id?: string | null | undefined;
|
|
9262
9262
|
remark?: string | null | undefined;
|
|
9263
|
-
is?: {
|
|
9264
|
-
delivery?: boolean | null | undefined;
|
|
9265
|
-
takeaway: boolean;
|
|
9266
|
-
} | null | undefined;
|
|
9267
9263
|
productId?: string | null | undefined;
|
|
9268
9264
|
variantSelected?: {
|
|
9269
9265
|
name: string[];
|
|
9270
9266
|
combinationKey: string;
|
|
9271
9267
|
} | null | undefined;
|
|
9268
|
+
is?: {
|
|
9269
|
+
delivery?: boolean | null | undefined;
|
|
9270
|
+
takeaway: boolean;
|
|
9271
|
+
} | null | undefined;
|
|
9272
9272
|
adjustment?: Record<string, {
|
|
9273
9273
|
reason?: string | null | undefined;
|
|
9274
9274
|
referenceId?: string | null | undefined;
|
|
@@ -9815,15 +9815,15 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
9815
9815
|
draft: {
|
|
9816
9816
|
id?: string | null | undefined;
|
|
9817
9817
|
remark?: string | null | undefined;
|
|
9818
|
-
is?: {
|
|
9819
|
-
delivery?: boolean | null | undefined;
|
|
9820
|
-
takeaway: boolean;
|
|
9821
|
-
} | null | undefined;
|
|
9822
9818
|
productId?: string | null | undefined;
|
|
9823
9819
|
variantSelected?: {
|
|
9824
9820
|
name: string[];
|
|
9825
9821
|
combinationKey: string;
|
|
9826
9822
|
} | null | undefined;
|
|
9823
|
+
is?: {
|
|
9824
|
+
delivery?: boolean | null | undefined;
|
|
9825
|
+
takeaway: boolean;
|
|
9826
|
+
} | null | undefined;
|
|
9827
9827
|
adjustment?: Record<string, {
|
|
9828
9828
|
reason?: string | null | undefined;
|
|
9829
9829
|
referenceId?: string | null | undefined;
|
|
@@ -10375,15 +10375,15 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
10375
10375
|
draft: {
|
|
10376
10376
|
id?: string | null | undefined;
|
|
10377
10377
|
remark?: string | null | undefined;
|
|
10378
|
-
is?: {
|
|
10379
|
-
delivery?: boolean | null | undefined;
|
|
10380
|
-
takeaway: boolean;
|
|
10381
|
-
} | null | undefined;
|
|
10382
10378
|
productId?: string | null | undefined;
|
|
10383
10379
|
variantSelected?: {
|
|
10384
10380
|
name: string[];
|
|
10385
10381
|
combinationKey: string;
|
|
10386
10382
|
} | null | undefined;
|
|
10383
|
+
is?: {
|
|
10384
|
+
delivery?: boolean | null | undefined;
|
|
10385
|
+
takeaway: boolean;
|
|
10386
|
+
} | null | undefined;
|
|
10387
10387
|
adjustment?: Record<string, {
|
|
10388
10388
|
reason?: string | null | undefined;
|
|
10389
10389
|
referenceId?: string | null | undefined;
|
|
@@ -10946,15 +10946,15 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
10946
10946
|
draft: {
|
|
10947
10947
|
id?: string | null | undefined;
|
|
10948
10948
|
remark?: string | null | undefined;
|
|
10949
|
-
is?: {
|
|
10950
|
-
delivery?: boolean | null | undefined;
|
|
10951
|
-
takeaway: boolean;
|
|
10952
|
-
} | null | undefined;
|
|
10953
10949
|
productId?: string | null | undefined;
|
|
10954
10950
|
variantSelected?: {
|
|
10955
10951
|
name: string[];
|
|
10956
10952
|
combinationKey: string;
|
|
10957
10953
|
} | null | undefined;
|
|
10954
|
+
is?: {
|
|
10955
|
+
delivery?: boolean | null | undefined;
|
|
10956
|
+
takeaway: boolean;
|
|
10957
|
+
} | null | undefined;
|
|
10958
10958
|
adjustment?: Record<string, {
|
|
10959
10959
|
reason?: string | null | undefined;
|
|
10960
10960
|
referenceId?: string | null | undefined;
|
|
@@ -210,7 +210,9 @@ export declare const FdtoOrderReadMenu: z.ZodObject<{
|
|
|
210
210
|
address: string;
|
|
211
211
|
coordinates: number[];
|
|
212
212
|
}>>>>;
|
|
213
|
+
slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
213
214
|
}>, "strip", z.ZodTypeAny, {
|
|
215
|
+
slot?: string | null | undefined;
|
|
214
216
|
remark?: string | null | undefined;
|
|
215
217
|
pickupPoint?: {
|
|
216
218
|
name: string;
|
|
@@ -221,6 +223,7 @@ export declare const FdtoOrderReadMenu: z.ZodObject<{
|
|
|
221
223
|
contactNumber: string;
|
|
222
224
|
pickupAt: string;
|
|
223
225
|
}, {
|
|
226
|
+
slot?: string | null | undefined;
|
|
224
227
|
remark?: string | null | undefined;
|
|
225
228
|
pickupPoint?: {
|
|
226
229
|
name: string;
|
|
@@ -1118,7 +1121,9 @@ export declare const FdtoOrderReadMenu: z.ZodObject<{
|
|
|
1118
1121
|
}>>>>;
|
|
1119
1122
|
deliveryAt: z.ZodString;
|
|
1120
1123
|
allocatingAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1124
|
+
slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1121
1125
|
}>, "strip", z.ZodTypeAny, {
|
|
1126
|
+
slot?: string | null | undefined;
|
|
1122
1127
|
providers?: ({
|
|
1123
1128
|
instruction?: string | null | undefined;
|
|
1124
1129
|
driver?: {
|
|
@@ -1313,6 +1318,7 @@ export declare const FdtoOrderReadMenu: z.ZodObject<{
|
|
|
1313
1318
|
contactNumber: string;
|
|
1314
1319
|
deliveryAt: string;
|
|
1315
1320
|
}, {
|
|
1321
|
+
slot?: string | null | undefined;
|
|
1316
1322
|
providers?: ({
|
|
1317
1323
|
instruction?: string | null | undefined;
|
|
1318
1324
|
driver?: {
|
|
@@ -1543,6 +1549,7 @@ export declare const FdtoOrderReadMenu: z.ZodObject<{
|
|
|
1543
1549
|
};
|
|
1544
1550
|
type: "DINE_IN";
|
|
1545
1551
|
} | {
|
|
1552
|
+
slot?: string | null | undefined;
|
|
1546
1553
|
remark?: string | null | undefined;
|
|
1547
1554
|
pickupPoint?: {
|
|
1548
1555
|
name: string;
|
|
@@ -1553,6 +1560,7 @@ export declare const FdtoOrderReadMenu: z.ZodObject<{
|
|
|
1553
1560
|
contactNumber: string;
|
|
1554
1561
|
pickupAt: string;
|
|
1555
1562
|
} | {
|
|
1563
|
+
slot?: string | null | undefined;
|
|
1556
1564
|
providers?: ({
|
|
1557
1565
|
instruction?: string | null | undefined;
|
|
1558
1566
|
driver?: {
|
|
@@ -1785,6 +1793,7 @@ export declare const FdtoOrderReadMenu: z.ZodObject<{
|
|
|
1785
1793
|
};
|
|
1786
1794
|
type: "DINE_IN";
|
|
1787
1795
|
} | {
|
|
1796
|
+
slot?: string | null | undefined;
|
|
1788
1797
|
remark?: string | null | undefined;
|
|
1789
1798
|
pickupPoint?: {
|
|
1790
1799
|
name: string;
|
|
@@ -1795,6 +1804,7 @@ export declare const FdtoOrderReadMenu: z.ZodObject<{
|
|
|
1795
1804
|
contactNumber: string;
|
|
1796
1805
|
pickupAt: string;
|
|
1797
1806
|
} | {
|
|
1807
|
+
slot?: string | null | undefined;
|
|
1798
1808
|
providers?: ({
|
|
1799
1809
|
instruction?: string | null | undefined;
|
|
1800
1810
|
driver?: {
|