@feedmepos/mf-order-setting 0.0.31 → 0.0.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{KioskDevicesView-CWzmu0rZ.js → KioskDevicesView-CxZI99me.js} +1 -1
- package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-CldPl8BW.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-EGj4fxeN.js} +2 -2
- package/dist/{KioskSettingView-BsxOiUdj.js → KioskSettingView-CTDY8__s.js} +1 -1
- package/dist/{KioskView-DBnQe7Mp.js → KioskView-IUQTvUF8.js} +4 -4
- package/dist/{OrderSettingsView-BvDtRpI_.js → OrderSettingsView-VLE9yxNt.js} +9404 -9191
- package/dist/{app-G3iTmEHp.js → app-cd45Ryph.js} +12 -8
- package/dist/app.js +1 -1
- package/dist/common/convertor/index.d.ts +2 -0
- package/dist/{dayjs.min-ChzYZzP1.js → dayjs.min-CRAlrjJy.js} +1 -1
- package/dist/frontend/mf-order/src/api/remoteOrder/index.d.ts +5 -2
- package/dist/frontend/mf-order/src/app.d.ts +4 -0
- package/dist/frontend/mf-order/src/main.d.ts +4 -0
- package/dist/frontend/mf-order/src/stores/restaurant/index.d.ts +5 -2
- package/dist/frontend/mf-order/src/views/order-settings/delivery/DeliverySetting.vue.d.ts +1 -1
- package/dist/frontend/mf-order/src/views/order-settings/delivery/delivery.d.ts +3 -1
- package/dist/frontend/mf-order/src/views/order-settings/delivery/delivery.data.d.ts +3 -1
- package/dist/frontend/mf-order/src/views/order-settings/delivery/integrated-delivery/DeliverooSetting.vue.d.ts +46 -0
- package/dist/frontend/mf-order/src/views/order-settings/delivery/integrated-delivery/ExternalSetting.vue.d.ts +4 -4
- package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{index-Bacw_1Kj.js → index-DLWAy-3K.js} +2 -2
- package/dist/{queue.do-BtfSllT8.js → menu.dto-DGDI6XwH.js} +24399 -23624
- package/dist/package/entity/booking/booking.do.d.ts +20 -20
- package/dist/package/entity/delivery/delivery.dto.d.ts +4 -4
- package/dist/package/entity/food-court/food-court.dto.d.ts +29 -29
- package/dist/package/entity/food-court/order.do.d.ts +4 -2
- package/dist/package/entity/food-court/order.dto.d.ts +9524 -91
- package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +4 -4
- package/dist/package/entity/incoming-order/incoming-order.do.d.ts +126 -0
- package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +12 -12
- package/dist/package/entity/index.d.ts +23 -1
- package/dist/package/entity/kiosk/kiosk.do.d.ts +6 -6
- package/dist/package/entity/kiosk/kiosk.dto.d.ts +6 -6
- package/dist/package/entity/kiosk/marketing/marketing.dto.d.ts +64 -17
- package/dist/package/entity/marketing/marketing.dto.d.ts +239 -0
- package/dist/package/entity/order/order-item/order-item.dto.d.ts +10 -2
- package/dist/package/entity/order/order.dto.d.ts +24 -16
- package/dist/package/entity/order-platform/deliveroo/deliveroo-dto.d.ts +523 -0
- package/dist/package/entity/order-platform/deliveroo/deliveroo-order.do.d.ts +7814 -0
- package/dist/package/entity/order-platform/deliveroo/deliveroo-order.dto.d.ts +15 -0
- package/dist/package/entity/order-platform/deliveroo/deliveroo-setting.do.d.ts +37 -0
- package/dist/package/entity/order-platform/deliveroo/deliveroo.enum.d.ts +31 -0
- package/dist/package/entity/order-platform/deliveroo/deliveroo.menu.dto.d.ts +2341 -0
- package/dist/package/entity/order-platform/external/menu/external-master-menu.do.d.ts +2073 -0
- package/dist/package/entity/order-platform/external/menu/external-menu.do.d.ts +736 -214
- package/dist/package/entity/order-platform/external/setting/external-setting.do.d.ts +3 -3
- package/dist/package/entity/order-platform/external/setting/external-setting.dto.d.ts +3 -3
- package/dist/package/entity/order-platform/foodpanda/foodpanda-order.dto.d.ts +4 -4
- package/dist/package/entity/order-platform/grabfood/grabfood-menu.do.d.ts +2 -2
- package/dist/package/entity/order-platform/grabfood/grabfood-order.do.d.ts +4 -4
- package/dist/package/entity/order-platform/menu.dto.d.ts +44 -44
- package/dist/package/entity/order-platform/order-platform.enum.d.ts +6 -1
- package/dist/package/entity/order-platform/shopeefood/shopeefood-order.do.d.ts +59 -4
- package/dist/package/entity/order-platform/shopeefood/shopeefood-order.dto.d.ts +32 -0
- package/dist/package/entity/queue/queue.do.d.ts +12 -0
- package/dist/package/entity/queue/queue.dto.d.ts +9 -9
- package/dist/package/entity/restaurant/restaurant.dto.d.ts +9 -9
- package/package.json +2 -2
- package/src/api/remoteOrder/index.ts +20 -2
- package/src/locales/en-US.json +1 -0
- package/src/locales/th-TH.json +1 -0
- package/src/locales/zh-CN.json +2 -0
- package/src/stores/restaurant/index.ts +12 -7
- package/src/views/order-settings/delivery/DeliverySetting.vue +141 -57
- package/src/views/order-settings/delivery/delivery.data.ts +10 -1
- package/src/views/order-settings/delivery/delivery.ts +34 -9
- package/src/views/order-settings/delivery/integrated-delivery/DeliverooSetting.vue +109 -0
- package/src/views/order-settings/delivery/integrated-delivery/IntegratedDelivery.vue +11 -10
|
@@ -72,7 +72,7 @@ export declare const FoodCourtBaseDto: z.ZodObject<{
|
|
|
72
72
|
postcode: string;
|
|
73
73
|
}>;
|
|
74
74
|
phoneNo: z.ZodString;
|
|
75
|
-
email: z.ZodString
|
|
75
|
+
email: z.ZodDefault<z.ZodString>;
|
|
76
76
|
regNo: z.ZodString;
|
|
77
77
|
legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
78
78
|
sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -442,6 +442,7 @@ export declare const FoodCourtBaseDto: z.ZodObject<{
|
|
|
442
442
|
code?: string | null | undefined;
|
|
443
443
|
_id?: string | null | undefined;
|
|
444
444
|
description?: string | null | undefined;
|
|
445
|
+
email?: string | undefined;
|
|
445
446
|
discovery?: boolean | null | undefined;
|
|
446
447
|
legalName?: string | null | undefined;
|
|
447
448
|
sstRegNo?: string | null | undefined;
|
|
@@ -511,7 +512,6 @@ export declare const FoodCourtBaseDto: z.ZodObject<{
|
|
|
511
512
|
city: string;
|
|
512
513
|
postcode: string;
|
|
513
514
|
};
|
|
514
|
-
email: string;
|
|
515
515
|
phoneNo: string;
|
|
516
516
|
regNo: string;
|
|
517
517
|
}>;
|
|
@@ -843,6 +843,7 @@ export declare const FoodCourtBaseDto: z.ZodObject<{
|
|
|
843
843
|
code?: string | null | undefined;
|
|
844
844
|
_id?: string | null | undefined;
|
|
845
845
|
description?: string | null | undefined;
|
|
846
|
+
email?: string | undefined;
|
|
846
847
|
discovery?: boolean | null | undefined;
|
|
847
848
|
legalName?: string | null | undefined;
|
|
848
849
|
sstRegNo?: string | null | undefined;
|
|
@@ -912,7 +913,6 @@ export declare const FoodCourtBaseDto: z.ZodObject<{
|
|
|
912
913
|
city: string;
|
|
913
914
|
postcode: string;
|
|
914
915
|
};
|
|
915
|
-
email: string;
|
|
916
916
|
phoneNo: string;
|
|
917
917
|
regNo: string;
|
|
918
918
|
};
|
|
@@ -967,7 +967,7 @@ export declare const FoodCourtBaseDto: z.ZodObject<{
|
|
|
967
967
|
postcode: string;
|
|
968
968
|
}>;
|
|
969
969
|
phoneNo: z.ZodString;
|
|
970
|
-
email: z.ZodString
|
|
970
|
+
email: z.ZodDefault<z.ZodString>;
|
|
971
971
|
regNo: z.ZodString;
|
|
972
972
|
legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
973
973
|
sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -1337,6 +1337,7 @@ export declare const FoodCourtBaseDto: z.ZodObject<{
|
|
|
1337
1337
|
code?: string | null | undefined;
|
|
1338
1338
|
_id?: string | null | undefined;
|
|
1339
1339
|
description?: string | null | undefined;
|
|
1340
|
+
email?: string | undefined;
|
|
1340
1341
|
discovery?: boolean | null | undefined;
|
|
1341
1342
|
legalName?: string | null | undefined;
|
|
1342
1343
|
sstRegNo?: string | null | undefined;
|
|
@@ -1406,7 +1407,6 @@ export declare const FoodCourtBaseDto: z.ZodObject<{
|
|
|
1406
1407
|
city: string;
|
|
1407
1408
|
postcode: string;
|
|
1408
1409
|
};
|
|
1409
|
-
email: string;
|
|
1410
1410
|
phoneNo: string;
|
|
1411
1411
|
regNo: string;
|
|
1412
1412
|
}>;
|
|
@@ -1734,6 +1734,7 @@ export declare const FoodCourtBaseDto: z.ZodObject<{
|
|
|
1734
1734
|
code?: string | null | undefined;
|
|
1735
1735
|
_id?: string | null | undefined;
|
|
1736
1736
|
description?: string | null | undefined;
|
|
1737
|
+
email?: string | undefined;
|
|
1737
1738
|
discovery?: boolean | null | undefined;
|
|
1738
1739
|
legalName?: string | null | undefined;
|
|
1739
1740
|
sstRegNo?: string | null | undefined;
|
|
@@ -1803,7 +1804,6 @@ export declare const FoodCourtBaseDto: z.ZodObject<{
|
|
|
1803
1804
|
city: string;
|
|
1804
1805
|
postcode: string;
|
|
1805
1806
|
};
|
|
1806
|
-
email: string;
|
|
1807
1807
|
phoneNo: string;
|
|
1808
1808
|
regNo: string;
|
|
1809
1809
|
};
|
|
@@ -2119,6 +2119,7 @@ export declare const FoodCourtBaseDto: z.ZodObject<{
|
|
|
2119
2119
|
code?: string | null | undefined;
|
|
2120
2120
|
_id?: string | null | undefined;
|
|
2121
2121
|
description?: string | null | undefined;
|
|
2122
|
+
email?: string | undefined;
|
|
2122
2123
|
discovery?: boolean | null | undefined;
|
|
2123
2124
|
legalName?: string | null | undefined;
|
|
2124
2125
|
sstRegNo?: string | null | undefined;
|
|
@@ -2188,7 +2189,6 @@ export declare const FoodCourtBaseDto: z.ZodObject<{
|
|
|
2188
2189
|
city: string;
|
|
2189
2190
|
postcode: string;
|
|
2190
2191
|
};
|
|
2191
|
-
email: string;
|
|
2192
2192
|
phoneNo: string;
|
|
2193
2193
|
regNo: string;
|
|
2194
2194
|
};
|
|
@@ -2242,6 +2242,7 @@ export declare const FoodCourtBaseDto: z.ZodObject<{
|
|
|
2242
2242
|
code?: string | null | undefined;
|
|
2243
2243
|
_id?: string | null | undefined;
|
|
2244
2244
|
description?: string | null | undefined;
|
|
2245
|
+
email?: string | undefined;
|
|
2245
2246
|
discovery?: boolean | null | undefined;
|
|
2246
2247
|
legalName?: string | null | undefined;
|
|
2247
2248
|
sstRegNo?: string | null | undefined;
|
|
@@ -2311,7 +2312,6 @@ export declare const FoodCourtBaseDto: z.ZodObject<{
|
|
|
2311
2312
|
city: string;
|
|
2312
2313
|
postcode: string;
|
|
2313
2314
|
};
|
|
2314
|
-
email: string;
|
|
2315
2315
|
phoneNo: string;
|
|
2316
2316
|
regNo: string;
|
|
2317
2317
|
};
|
|
@@ -2379,7 +2379,7 @@ export declare const FoodCourtDto: z.ZodEffects<z.ZodObject<{
|
|
|
2379
2379
|
postcode: string;
|
|
2380
2380
|
}>;
|
|
2381
2381
|
phoneNo: z.ZodString;
|
|
2382
|
-
email: z.ZodString
|
|
2382
|
+
email: z.ZodDefault<z.ZodString>;
|
|
2383
2383
|
regNo: z.ZodString;
|
|
2384
2384
|
legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2385
2385
|
sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -2749,6 +2749,7 @@ export declare const FoodCourtDto: z.ZodEffects<z.ZodObject<{
|
|
|
2749
2749
|
code?: string | null | undefined;
|
|
2750
2750
|
_id?: string | null | undefined;
|
|
2751
2751
|
description?: string | null | undefined;
|
|
2752
|
+
email?: string | undefined;
|
|
2752
2753
|
discovery?: boolean | null | undefined;
|
|
2753
2754
|
legalName?: string | null | undefined;
|
|
2754
2755
|
sstRegNo?: string | null | undefined;
|
|
@@ -2818,7 +2819,6 @@ export declare const FoodCourtDto: z.ZodEffects<z.ZodObject<{
|
|
|
2818
2819
|
city: string;
|
|
2819
2820
|
postcode: string;
|
|
2820
2821
|
};
|
|
2821
|
-
email: string;
|
|
2822
2822
|
phoneNo: string;
|
|
2823
2823
|
regNo: string;
|
|
2824
2824
|
}>;
|
|
@@ -3150,6 +3150,7 @@ export declare const FoodCourtDto: z.ZodEffects<z.ZodObject<{
|
|
|
3150
3150
|
code?: string | null | undefined;
|
|
3151
3151
|
_id?: string | null | undefined;
|
|
3152
3152
|
description?: string | null | undefined;
|
|
3153
|
+
email?: string | undefined;
|
|
3153
3154
|
discovery?: boolean | null | undefined;
|
|
3154
3155
|
legalName?: string | null | undefined;
|
|
3155
3156
|
sstRegNo?: string | null | undefined;
|
|
@@ -3219,7 +3220,6 @@ export declare const FoodCourtDto: z.ZodEffects<z.ZodObject<{
|
|
|
3219
3220
|
city: string;
|
|
3220
3221
|
postcode: string;
|
|
3221
3222
|
};
|
|
3222
|
-
email: string;
|
|
3223
3223
|
phoneNo: string;
|
|
3224
3224
|
regNo: string;
|
|
3225
3225
|
};
|
|
@@ -3274,7 +3274,7 @@ export declare const FoodCourtDto: z.ZodEffects<z.ZodObject<{
|
|
|
3274
3274
|
postcode: string;
|
|
3275
3275
|
}>;
|
|
3276
3276
|
phoneNo: z.ZodString;
|
|
3277
|
-
email: z.ZodString
|
|
3277
|
+
email: z.ZodDefault<z.ZodString>;
|
|
3278
3278
|
regNo: z.ZodString;
|
|
3279
3279
|
legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3280
3280
|
sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -3644,6 +3644,7 @@ export declare const FoodCourtDto: z.ZodEffects<z.ZodObject<{
|
|
|
3644
3644
|
code?: string | null | undefined;
|
|
3645
3645
|
_id?: string | null | undefined;
|
|
3646
3646
|
description?: string | null | undefined;
|
|
3647
|
+
email?: string | undefined;
|
|
3647
3648
|
discovery?: boolean | null | undefined;
|
|
3648
3649
|
legalName?: string | null | undefined;
|
|
3649
3650
|
sstRegNo?: string | null | undefined;
|
|
@@ -3713,7 +3714,6 @@ export declare const FoodCourtDto: z.ZodEffects<z.ZodObject<{
|
|
|
3713
3714
|
city: string;
|
|
3714
3715
|
postcode: string;
|
|
3715
3716
|
};
|
|
3716
|
-
email: string;
|
|
3717
3717
|
phoneNo: string;
|
|
3718
3718
|
regNo: string;
|
|
3719
3719
|
}>;
|
|
@@ -4041,6 +4041,7 @@ export declare const FoodCourtDto: z.ZodEffects<z.ZodObject<{
|
|
|
4041
4041
|
code?: string | null | undefined;
|
|
4042
4042
|
_id?: string | null | undefined;
|
|
4043
4043
|
description?: string | null | undefined;
|
|
4044
|
+
email?: string | undefined;
|
|
4044
4045
|
discovery?: boolean | null | undefined;
|
|
4045
4046
|
legalName?: string | null | undefined;
|
|
4046
4047
|
sstRegNo?: string | null | undefined;
|
|
@@ -4110,7 +4111,6 @@ export declare const FoodCourtDto: z.ZodEffects<z.ZodObject<{
|
|
|
4110
4111
|
city: string;
|
|
4111
4112
|
postcode: string;
|
|
4112
4113
|
};
|
|
4113
|
-
email: string;
|
|
4114
4114
|
phoneNo: string;
|
|
4115
4115
|
regNo: string;
|
|
4116
4116
|
};
|
|
@@ -4426,6 +4426,7 @@ export declare const FoodCourtDto: z.ZodEffects<z.ZodObject<{
|
|
|
4426
4426
|
code?: string | null | undefined;
|
|
4427
4427
|
_id?: string | null | undefined;
|
|
4428
4428
|
description?: string | null | undefined;
|
|
4429
|
+
email?: string | undefined;
|
|
4429
4430
|
discovery?: boolean | null | undefined;
|
|
4430
4431
|
legalName?: string | null | undefined;
|
|
4431
4432
|
sstRegNo?: string | null | undefined;
|
|
@@ -4495,7 +4496,6 @@ export declare const FoodCourtDto: z.ZodEffects<z.ZodObject<{
|
|
|
4495
4496
|
city: string;
|
|
4496
4497
|
postcode: string;
|
|
4497
4498
|
};
|
|
4498
|
-
email: string;
|
|
4499
4499
|
phoneNo: string;
|
|
4500
4500
|
regNo: string;
|
|
4501
4501
|
};
|
|
@@ -4549,6 +4549,7 @@ export declare const FoodCourtDto: z.ZodEffects<z.ZodObject<{
|
|
|
4549
4549
|
code?: string | null | undefined;
|
|
4550
4550
|
_id?: string | null | undefined;
|
|
4551
4551
|
description?: string | null | undefined;
|
|
4552
|
+
email?: string | undefined;
|
|
4552
4553
|
discovery?: boolean | null | undefined;
|
|
4553
4554
|
legalName?: string | null | undefined;
|
|
4554
4555
|
sstRegNo?: string | null | undefined;
|
|
@@ -4618,7 +4619,6 @@ export declare const FoodCourtDto: z.ZodEffects<z.ZodObject<{
|
|
|
4618
4619
|
city: string;
|
|
4619
4620
|
postcode: string;
|
|
4620
4621
|
};
|
|
4621
|
-
email: string;
|
|
4622
4622
|
phoneNo: string;
|
|
4623
4623
|
regNo: string;
|
|
4624
4624
|
};
|
|
@@ -4940,6 +4940,7 @@ export declare const FoodCourtDto: z.ZodEffects<z.ZodObject<{
|
|
|
4940
4940
|
code?: string | null | undefined;
|
|
4941
4941
|
_id?: string | null | undefined;
|
|
4942
4942
|
description?: string | null | undefined;
|
|
4943
|
+
email?: string | undefined;
|
|
4943
4944
|
discovery?: boolean | null | undefined;
|
|
4944
4945
|
legalName?: string | null | undefined;
|
|
4945
4946
|
sstRegNo?: string | null | undefined;
|
|
@@ -5009,7 +5010,6 @@ export declare const FoodCourtDto: z.ZodEffects<z.ZodObject<{
|
|
|
5009
5010
|
city: string;
|
|
5010
5011
|
postcode: string;
|
|
5011
5012
|
};
|
|
5012
|
-
email: string;
|
|
5013
5013
|
phoneNo: string;
|
|
5014
5014
|
regNo: string;
|
|
5015
5015
|
};
|
|
@@ -5063,6 +5063,7 @@ export declare const FoodCourtDto: z.ZodEffects<z.ZodObject<{
|
|
|
5063
5063
|
code?: string | null | undefined;
|
|
5064
5064
|
_id?: string | null | undefined;
|
|
5065
5065
|
description?: string | null | undefined;
|
|
5066
|
+
email?: string | undefined;
|
|
5066
5067
|
discovery?: boolean | null | undefined;
|
|
5067
5068
|
legalName?: string | null | undefined;
|
|
5068
5069
|
sstRegNo?: string | null | undefined;
|
|
@@ -5132,7 +5133,6 @@ export declare const FoodCourtDto: z.ZodEffects<z.ZodObject<{
|
|
|
5132
5133
|
city: string;
|
|
5133
5134
|
postcode: string;
|
|
5134
5135
|
};
|
|
5135
|
-
email: string;
|
|
5136
5136
|
phoneNo: string;
|
|
5137
5137
|
regNo: string;
|
|
5138
5138
|
};
|
|
@@ -5202,7 +5202,7 @@ export declare const FoodCourtCreateDto: z.ZodObject<Omit<{
|
|
|
5202
5202
|
postcode: string;
|
|
5203
5203
|
}>;
|
|
5204
5204
|
phoneNo: z.ZodString;
|
|
5205
|
-
email: z.ZodString
|
|
5205
|
+
email: z.ZodDefault<z.ZodString>;
|
|
5206
5206
|
regNo: z.ZodString;
|
|
5207
5207
|
legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5208
5208
|
sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -5572,6 +5572,7 @@ export declare const FoodCourtCreateDto: z.ZodObject<Omit<{
|
|
|
5572
5572
|
code?: string | null | undefined;
|
|
5573
5573
|
_id?: string | null | undefined;
|
|
5574
5574
|
description?: string | null | undefined;
|
|
5575
|
+
email?: string | undefined;
|
|
5575
5576
|
discovery?: boolean | null | undefined;
|
|
5576
5577
|
legalName?: string | null | undefined;
|
|
5577
5578
|
sstRegNo?: string | null | undefined;
|
|
@@ -5641,7 +5642,6 @@ export declare const FoodCourtCreateDto: z.ZodObject<Omit<{
|
|
|
5641
5642
|
city: string;
|
|
5642
5643
|
postcode: string;
|
|
5643
5644
|
};
|
|
5644
|
-
email: string;
|
|
5645
5645
|
phoneNo: string;
|
|
5646
5646
|
regNo: string;
|
|
5647
5647
|
}>;
|
|
@@ -5973,6 +5973,7 @@ export declare const FoodCourtCreateDto: z.ZodObject<Omit<{
|
|
|
5973
5973
|
code?: string | null | undefined;
|
|
5974
5974
|
_id?: string | null | undefined;
|
|
5975
5975
|
description?: string | null | undefined;
|
|
5976
|
+
email?: string | undefined;
|
|
5976
5977
|
discovery?: boolean | null | undefined;
|
|
5977
5978
|
legalName?: string | null | undefined;
|
|
5978
5979
|
sstRegNo?: string | null | undefined;
|
|
@@ -6042,7 +6043,6 @@ export declare const FoodCourtCreateDto: z.ZodObject<Omit<{
|
|
|
6042
6043
|
city: string;
|
|
6043
6044
|
postcode: string;
|
|
6044
6045
|
};
|
|
6045
|
-
email: string;
|
|
6046
6046
|
phoneNo: string;
|
|
6047
6047
|
regNo: string;
|
|
6048
6048
|
};
|
|
@@ -6097,7 +6097,7 @@ export declare const FoodCourtCreateDto: z.ZodObject<Omit<{
|
|
|
6097
6097
|
postcode: string;
|
|
6098
6098
|
}>;
|
|
6099
6099
|
phoneNo: z.ZodString;
|
|
6100
|
-
email: z.ZodString
|
|
6100
|
+
email: z.ZodDefault<z.ZodString>;
|
|
6101
6101
|
regNo: z.ZodString;
|
|
6102
6102
|
legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6103
6103
|
sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -6467,6 +6467,7 @@ export declare const FoodCourtCreateDto: z.ZodObject<Omit<{
|
|
|
6467
6467
|
code?: string | null | undefined;
|
|
6468
6468
|
_id?: string | null | undefined;
|
|
6469
6469
|
description?: string | null | undefined;
|
|
6470
|
+
email?: string | undefined;
|
|
6470
6471
|
discovery?: boolean | null | undefined;
|
|
6471
6472
|
legalName?: string | null | undefined;
|
|
6472
6473
|
sstRegNo?: string | null | undefined;
|
|
@@ -6536,7 +6537,6 @@ export declare const FoodCourtCreateDto: z.ZodObject<Omit<{
|
|
|
6536
6537
|
city: string;
|
|
6537
6538
|
postcode: string;
|
|
6538
6539
|
};
|
|
6539
|
-
email: string;
|
|
6540
6540
|
phoneNo: string;
|
|
6541
6541
|
regNo: string;
|
|
6542
6542
|
}>;
|
|
@@ -6864,6 +6864,7 @@ export declare const FoodCourtCreateDto: z.ZodObject<Omit<{
|
|
|
6864
6864
|
code?: string | null | undefined;
|
|
6865
6865
|
_id?: string | null | undefined;
|
|
6866
6866
|
description?: string | null | undefined;
|
|
6867
|
+
email?: string | undefined;
|
|
6867
6868
|
discovery?: boolean | null | undefined;
|
|
6868
6869
|
legalName?: string | null | undefined;
|
|
6869
6870
|
sstRegNo?: string | null | undefined;
|
|
@@ -6933,7 +6934,6 @@ export declare const FoodCourtCreateDto: z.ZodObject<Omit<{
|
|
|
6933
6934
|
city: string;
|
|
6934
6935
|
postcode: string;
|
|
6935
6936
|
};
|
|
6936
|
-
email: string;
|
|
6937
6937
|
phoneNo: string;
|
|
6938
6938
|
regNo: string;
|
|
6939
6939
|
};
|
|
@@ -7126,6 +7126,7 @@ export declare const FoodCourtCreateDto: z.ZodObject<Omit<{
|
|
|
7126
7126
|
code?: string | null | undefined;
|
|
7127
7127
|
_id?: string | null | undefined;
|
|
7128
7128
|
description?: string | null | undefined;
|
|
7129
|
+
email?: string | undefined;
|
|
7129
7130
|
discovery?: boolean | null | undefined;
|
|
7130
7131
|
legalName?: string | null | undefined;
|
|
7131
7132
|
sstRegNo?: string | null | undefined;
|
|
@@ -7195,7 +7196,6 @@ export declare const FoodCourtCreateDto: z.ZodObject<Omit<{
|
|
|
7195
7196
|
city: string;
|
|
7196
7197
|
postcode: string;
|
|
7197
7198
|
};
|
|
7198
|
-
email: string;
|
|
7199
7199
|
phoneNo: string;
|
|
7200
7200
|
regNo: string;
|
|
7201
7201
|
};
|
|
@@ -7265,7 +7265,7 @@ export declare const FoodCourtUpdateDto: z.ZodObject<{
|
|
|
7265
7265
|
postcode: string;
|
|
7266
7266
|
}>;
|
|
7267
7267
|
phoneNo: z.ZodString;
|
|
7268
|
-
email: z.ZodString
|
|
7268
|
+
email: z.ZodDefault<z.ZodString>;
|
|
7269
7269
|
regNo: z.ZodString;
|
|
7270
7270
|
legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7271
7271
|
sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -7635,6 +7635,7 @@ export declare const FoodCourtUpdateDto: z.ZodObject<{
|
|
|
7635
7635
|
code?: string | null | undefined;
|
|
7636
7636
|
_id?: string | null | undefined;
|
|
7637
7637
|
description?: string | null | undefined;
|
|
7638
|
+
email?: string | undefined;
|
|
7638
7639
|
discovery?: boolean | null | undefined;
|
|
7639
7640
|
legalName?: string | null | undefined;
|
|
7640
7641
|
sstRegNo?: string | null | undefined;
|
|
@@ -7704,7 +7705,6 @@ export declare const FoodCourtUpdateDto: z.ZodObject<{
|
|
|
7704
7705
|
city: string;
|
|
7705
7706
|
postcode: string;
|
|
7706
7707
|
};
|
|
7707
|
-
email: string;
|
|
7708
7708
|
phoneNo: string;
|
|
7709
7709
|
regNo: string;
|
|
7710
7710
|
}>;
|
|
@@ -8032,6 +8032,7 @@ export declare const FoodCourtUpdateDto: z.ZodObject<{
|
|
|
8032
8032
|
code?: string | null | undefined;
|
|
8033
8033
|
_id?: string | null | undefined;
|
|
8034
8034
|
description?: string | null | undefined;
|
|
8035
|
+
email?: string | undefined;
|
|
8035
8036
|
discovery?: boolean | null | undefined;
|
|
8036
8037
|
legalName?: string | null | undefined;
|
|
8037
8038
|
sstRegNo?: string | null | undefined;
|
|
@@ -8101,7 +8102,6 @@ export declare const FoodCourtUpdateDto: z.ZodObject<{
|
|
|
8101
8102
|
city: string;
|
|
8102
8103
|
postcode: string;
|
|
8103
8104
|
};
|
|
8104
|
-
email: string;
|
|
8105
8105
|
phoneNo: string;
|
|
8106
8106
|
regNo: string;
|
|
8107
8107
|
};
|
|
@@ -8294,6 +8294,7 @@ export declare const FoodCourtUpdateDto: z.ZodObject<{
|
|
|
8294
8294
|
code?: string | null | undefined;
|
|
8295
8295
|
_id?: string | null | undefined;
|
|
8296
8296
|
description?: string | null | undefined;
|
|
8297
|
+
email?: string | undefined;
|
|
8297
8298
|
discovery?: boolean | null | undefined;
|
|
8298
8299
|
legalName?: string | null | undefined;
|
|
8299
8300
|
sstRegNo?: string | null | undefined;
|
|
@@ -8363,7 +8364,6 @@ export declare const FoodCourtUpdateDto: z.ZodObject<{
|
|
|
8363
8364
|
city: string;
|
|
8364
8365
|
postcode: string;
|
|
8365
8366
|
};
|
|
8366
|
-
email: string;
|
|
8367
8367
|
phoneNo: string;
|
|
8368
8368
|
regNo: string;
|
|
8369
8369
|
};
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
import { z } from
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const F_FOOD_COURT_CUSTOMER_STATUS: z.ZodEnum<["DRAFT", "COMPLETE"]>;
|
|
2
3
|
export declare const FdoFoodCourtOrderPayment: z.AnyZodObject;
|
|
3
|
-
export declare const FdoFoodCourtOrder:
|
|
4
|
+
export declare const FdoFoodCourtOrder: z.AnyZodObject;
|
|
4
5
|
export type FdoFoodCourtOrderPayment = z.infer<typeof FdoFoodCourtOrderPayment>;
|
|
5
6
|
export type FdoFoodCourtOrder = z.infer<typeof FdoFoodCourtOrder>;
|
|
7
|
+
export type F_FOOD_COURT_CUSTOMER_STATUS = z.infer<typeof F_FOOD_COURT_CUSTOMER_STATUS>;
|