@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
|
@@ -468,7 +468,7 @@ export declare const FdoBookingBase: z.ZodObject<{
|
|
|
468
468
|
postcode: string;
|
|
469
469
|
}>;
|
|
470
470
|
phoneNo: z.ZodString;
|
|
471
|
-
email: z.ZodString
|
|
471
|
+
email: z.ZodDefault<z.ZodString>;
|
|
472
472
|
regNo: z.ZodString;
|
|
473
473
|
legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
474
474
|
sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -835,6 +835,7 @@ export declare const FdoBookingBase: z.ZodObject<{
|
|
|
835
835
|
}, {
|
|
836
836
|
code?: string | null | undefined;
|
|
837
837
|
url?: string | null | undefined;
|
|
838
|
+
email?: string | undefined;
|
|
838
839
|
description?: string | null | undefined;
|
|
839
840
|
_id?: string | null | undefined;
|
|
840
841
|
legalName?: string | null | undefined;
|
|
@@ -905,7 +906,6 @@ export declare const FdoBookingBase: z.ZodObject<{
|
|
|
905
906
|
city: string;
|
|
906
907
|
postcode: string;
|
|
907
908
|
};
|
|
908
|
-
email: string;
|
|
909
909
|
phoneNo: string;
|
|
910
910
|
regNo: string;
|
|
911
911
|
}>;
|
|
@@ -2774,6 +2774,7 @@ export declare const FdoBookingBase: z.ZodObject<{
|
|
|
2774
2774
|
profile: {
|
|
2775
2775
|
code?: string | null | undefined;
|
|
2776
2776
|
url?: string | null | undefined;
|
|
2777
|
+
email?: string | undefined;
|
|
2777
2778
|
description?: string | null | undefined;
|
|
2778
2779
|
_id?: string | null | undefined;
|
|
2779
2780
|
legalName?: string | null | undefined;
|
|
@@ -2844,7 +2845,6 @@ export declare const FdoBookingBase: z.ZodObject<{
|
|
|
2844
2845
|
city: string;
|
|
2845
2846
|
postcode: string;
|
|
2846
2847
|
};
|
|
2847
|
-
email: string;
|
|
2848
2848
|
phoneNo: string;
|
|
2849
2849
|
regNo: string;
|
|
2850
2850
|
};
|
|
@@ -3630,6 +3630,7 @@ export declare const FdoBookingBase: z.ZodObject<{
|
|
|
3630
3630
|
profile: {
|
|
3631
3631
|
code?: string | null | undefined;
|
|
3632
3632
|
url?: string | null | undefined;
|
|
3633
|
+
email?: string | undefined;
|
|
3633
3634
|
description?: string | null | undefined;
|
|
3634
3635
|
_id?: string | null | undefined;
|
|
3635
3636
|
legalName?: string | null | undefined;
|
|
@@ -3700,7 +3701,6 @@ export declare const FdoBookingBase: z.ZodObject<{
|
|
|
3700
3701
|
city: string;
|
|
3701
3702
|
postcode: string;
|
|
3702
3703
|
};
|
|
3703
|
-
email: string;
|
|
3704
3704
|
phoneNo: string;
|
|
3705
3705
|
regNo: string;
|
|
3706
3706
|
};
|
|
@@ -4197,7 +4197,7 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
|
|
|
4197
4197
|
postcode: string;
|
|
4198
4198
|
}>;
|
|
4199
4199
|
phoneNo: z.ZodString;
|
|
4200
|
-
email: z.ZodString
|
|
4200
|
+
email: z.ZodDefault<z.ZodString>;
|
|
4201
4201
|
regNo: z.ZodString;
|
|
4202
4202
|
legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4203
4203
|
sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -4564,6 +4564,7 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
|
|
|
4564
4564
|
}, {
|
|
4565
4565
|
code?: string | null | undefined;
|
|
4566
4566
|
url?: string | null | undefined;
|
|
4567
|
+
email?: string | undefined;
|
|
4567
4568
|
description?: string | null | undefined;
|
|
4568
4569
|
_id?: string | null | undefined;
|
|
4569
4570
|
legalName?: string | null | undefined;
|
|
@@ -4634,7 +4635,6 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
|
|
|
4634
4635
|
city: string;
|
|
4635
4636
|
postcode: string;
|
|
4636
4637
|
};
|
|
4637
|
-
email: string;
|
|
4638
4638
|
phoneNo: string;
|
|
4639
4639
|
regNo: string;
|
|
4640
4640
|
}>;
|
|
@@ -6503,6 +6503,7 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
|
|
|
6503
6503
|
profile: {
|
|
6504
6504
|
code?: string | null | undefined;
|
|
6505
6505
|
url?: string | null | undefined;
|
|
6506
|
+
email?: string | undefined;
|
|
6506
6507
|
description?: string | null | undefined;
|
|
6507
6508
|
_id?: string | null | undefined;
|
|
6508
6509
|
legalName?: string | null | undefined;
|
|
@@ -6573,7 +6574,6 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
|
|
|
6573
6574
|
city: string;
|
|
6574
6575
|
postcode: string;
|
|
6575
6576
|
};
|
|
6576
|
-
email: string;
|
|
6577
6577
|
phoneNo: string;
|
|
6578
6578
|
regNo: string;
|
|
6579
6579
|
};
|
|
@@ -7361,6 +7361,7 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
|
|
|
7361
7361
|
profile: {
|
|
7362
7362
|
code?: string | null | undefined;
|
|
7363
7363
|
url?: string | null | undefined;
|
|
7364
|
+
email?: string | undefined;
|
|
7364
7365
|
description?: string | null | undefined;
|
|
7365
7366
|
_id?: string | null | undefined;
|
|
7366
7367
|
legalName?: string | null | undefined;
|
|
@@ -7431,7 +7432,6 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
|
|
|
7431
7432
|
city: string;
|
|
7432
7433
|
postcode: string;
|
|
7433
7434
|
};
|
|
7434
|
-
email: string;
|
|
7435
7435
|
phoneNo: string;
|
|
7436
7436
|
regNo: string;
|
|
7437
7437
|
};
|
|
@@ -7929,7 +7929,7 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
|
|
|
7929
7929
|
postcode: string;
|
|
7930
7930
|
}>;
|
|
7931
7931
|
phoneNo: z.ZodString;
|
|
7932
|
-
email: z.ZodString
|
|
7932
|
+
email: z.ZodDefault<z.ZodString>;
|
|
7933
7933
|
regNo: z.ZodString;
|
|
7934
7934
|
legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7935
7935
|
sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -8296,6 +8296,7 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
|
|
|
8296
8296
|
}, {
|
|
8297
8297
|
code?: string | null | undefined;
|
|
8298
8298
|
url?: string | null | undefined;
|
|
8299
|
+
email?: string | undefined;
|
|
8299
8300
|
description?: string | null | undefined;
|
|
8300
8301
|
_id?: string | null | undefined;
|
|
8301
8302
|
legalName?: string | null | undefined;
|
|
@@ -8366,7 +8367,6 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
|
|
|
8366
8367
|
city: string;
|
|
8367
8368
|
postcode: string;
|
|
8368
8369
|
};
|
|
8369
|
-
email: string;
|
|
8370
8370
|
phoneNo: string;
|
|
8371
8371
|
regNo: string;
|
|
8372
8372
|
}>;
|
|
@@ -10235,6 +10235,7 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
|
|
|
10235
10235
|
profile: {
|
|
10236
10236
|
code?: string | null | undefined;
|
|
10237
10237
|
url?: string | null | undefined;
|
|
10238
|
+
email?: string | undefined;
|
|
10238
10239
|
description?: string | null | undefined;
|
|
10239
10240
|
_id?: string | null | undefined;
|
|
10240
10241
|
legalName?: string | null | undefined;
|
|
@@ -10305,7 +10306,6 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
|
|
|
10305
10306
|
city: string;
|
|
10306
10307
|
postcode: string;
|
|
10307
10308
|
};
|
|
10308
|
-
email: string;
|
|
10309
10309
|
phoneNo: string;
|
|
10310
10310
|
regNo: string;
|
|
10311
10311
|
};
|
|
@@ -11095,6 +11095,7 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
|
|
|
11095
11095
|
profile: {
|
|
11096
11096
|
code?: string | null | undefined;
|
|
11097
11097
|
url?: string | null | undefined;
|
|
11098
|
+
email?: string | undefined;
|
|
11098
11099
|
description?: string | null | undefined;
|
|
11099
11100
|
_id?: string | null | undefined;
|
|
11100
11101
|
legalName?: string | null | undefined;
|
|
@@ -11165,7 +11166,6 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
|
|
|
11165
11166
|
city: string;
|
|
11166
11167
|
postcode: string;
|
|
11167
11168
|
};
|
|
11168
|
-
email: string;
|
|
11169
11169
|
phoneNo: string;
|
|
11170
11170
|
regNo: string;
|
|
11171
11171
|
};
|
|
@@ -11664,7 +11664,7 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
11664
11664
|
postcode: string;
|
|
11665
11665
|
}>;
|
|
11666
11666
|
phoneNo: z.ZodString;
|
|
11667
|
-
email: z.ZodString
|
|
11667
|
+
email: z.ZodDefault<z.ZodString>;
|
|
11668
11668
|
regNo: z.ZodString;
|
|
11669
11669
|
legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11670
11670
|
sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -12031,6 +12031,7 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
12031
12031
|
}, {
|
|
12032
12032
|
code?: string | null | undefined;
|
|
12033
12033
|
url?: string | null | undefined;
|
|
12034
|
+
email?: string | undefined;
|
|
12034
12035
|
description?: string | null | undefined;
|
|
12035
12036
|
_id?: string | null | undefined;
|
|
12036
12037
|
legalName?: string | null | undefined;
|
|
@@ -12101,7 +12102,6 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
12101
12102
|
city: string;
|
|
12102
12103
|
postcode: string;
|
|
12103
12104
|
};
|
|
12104
|
-
email: string;
|
|
12105
12105
|
phoneNo: string;
|
|
12106
12106
|
regNo: string;
|
|
12107
12107
|
}>;
|
|
@@ -13970,6 +13970,7 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
13970
13970
|
profile: {
|
|
13971
13971
|
code?: string | null | undefined;
|
|
13972
13972
|
url?: string | null | undefined;
|
|
13973
|
+
email?: string | undefined;
|
|
13973
13974
|
description?: string | null | undefined;
|
|
13974
13975
|
_id?: string | null | undefined;
|
|
13975
13976
|
legalName?: string | null | undefined;
|
|
@@ -14040,7 +14041,6 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
14040
14041
|
city: string;
|
|
14041
14042
|
postcode: string;
|
|
14042
14043
|
};
|
|
14043
|
-
email: string;
|
|
14044
14044
|
phoneNo: string;
|
|
14045
14045
|
regNo: string;
|
|
14046
14046
|
};
|
|
@@ -14828,6 +14828,7 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
14828
14828
|
profile: {
|
|
14829
14829
|
code?: string | null | undefined;
|
|
14830
14830
|
url?: string | null | undefined;
|
|
14831
|
+
email?: string | undefined;
|
|
14831
14832
|
description?: string | null | undefined;
|
|
14832
14833
|
_id?: string | null | undefined;
|
|
14833
14834
|
legalName?: string | null | undefined;
|
|
@@ -14898,7 +14899,6 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
14898
14899
|
city: string;
|
|
14899
14900
|
postcode: string;
|
|
14900
14901
|
};
|
|
14901
|
-
email: string;
|
|
14902
14902
|
phoneNo: string;
|
|
14903
14903
|
regNo: string;
|
|
14904
14904
|
};
|
|
@@ -15394,7 +15394,7 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
15394
15394
|
postcode: string;
|
|
15395
15395
|
}>;
|
|
15396
15396
|
phoneNo: z.ZodString;
|
|
15397
|
-
email: z.ZodString
|
|
15397
|
+
email: z.ZodDefault<z.ZodString>;
|
|
15398
15398
|
regNo: z.ZodString;
|
|
15399
15399
|
legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15400
15400
|
sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -15761,6 +15761,7 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
15761
15761
|
}, {
|
|
15762
15762
|
code?: string | null | undefined;
|
|
15763
15763
|
url?: string | null | undefined;
|
|
15764
|
+
email?: string | undefined;
|
|
15764
15765
|
description?: string | null | undefined;
|
|
15765
15766
|
_id?: string | null | undefined;
|
|
15766
15767
|
legalName?: string | null | undefined;
|
|
@@ -15831,7 +15832,6 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
15831
15832
|
city: string;
|
|
15832
15833
|
postcode: string;
|
|
15833
15834
|
};
|
|
15834
|
-
email: string;
|
|
15835
15835
|
phoneNo: string;
|
|
15836
15836
|
regNo: string;
|
|
15837
15837
|
}>;
|
|
@@ -17700,6 +17700,7 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
17700
17700
|
profile: {
|
|
17701
17701
|
code?: string | null | undefined;
|
|
17702
17702
|
url?: string | null | undefined;
|
|
17703
|
+
email?: string | undefined;
|
|
17703
17704
|
description?: string | null | undefined;
|
|
17704
17705
|
_id?: string | null | undefined;
|
|
17705
17706
|
legalName?: string | null | undefined;
|
|
@@ -17770,7 +17771,6 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
17770
17771
|
city: string;
|
|
17771
17772
|
postcode: string;
|
|
17772
17773
|
};
|
|
17773
|
-
email: string;
|
|
17774
17774
|
phoneNo: string;
|
|
17775
17775
|
regNo: string;
|
|
17776
17776
|
};
|
|
@@ -18560,6 +18560,7 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
18560
18560
|
profile: {
|
|
18561
18561
|
code?: string | null | undefined;
|
|
18562
18562
|
url?: string | null | undefined;
|
|
18563
|
+
email?: string | undefined;
|
|
18563
18564
|
description?: string | null | undefined;
|
|
18564
18565
|
_id?: string | null | undefined;
|
|
18565
18566
|
legalName?: string | null | undefined;
|
|
@@ -18630,7 +18631,6 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
18630
18631
|
city: string;
|
|
18631
18632
|
postcode: string;
|
|
18632
18633
|
};
|
|
18633
|
-
email: string;
|
|
18634
18634
|
phoneNo: string;
|
|
18635
18635
|
regNo: string;
|
|
18636
18636
|
};
|
|
@@ -8015,7 +8015,7 @@ declare const FdtoCreateDelivery: z.ZodObject<{
|
|
|
8015
8015
|
postcode: string;
|
|
8016
8016
|
}>;
|
|
8017
8017
|
phoneNo: z.ZodString;
|
|
8018
|
-
email: z.ZodString
|
|
8018
|
+
email: z.ZodDefault<z.ZodString>;
|
|
8019
8019
|
regNo: z.ZodString;
|
|
8020
8020
|
legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8021
8021
|
sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -8382,6 +8382,7 @@ declare const FdtoCreateDelivery: z.ZodObject<{
|
|
|
8382
8382
|
}, {
|
|
8383
8383
|
code?: string | null | undefined;
|
|
8384
8384
|
url?: string | null | undefined;
|
|
8385
|
+
email?: string | undefined;
|
|
8385
8386
|
description?: string | null | undefined;
|
|
8386
8387
|
_id?: string | null | undefined;
|
|
8387
8388
|
legalName?: string | null | undefined;
|
|
@@ -8452,7 +8453,6 @@ declare const FdtoCreateDelivery: z.ZodObject<{
|
|
|
8452
8453
|
city: string;
|
|
8453
8454
|
postcode: string;
|
|
8454
8455
|
};
|
|
8455
|
-
email: string;
|
|
8456
8456
|
phoneNo: string;
|
|
8457
8457
|
regNo: string;
|
|
8458
8458
|
}>;
|
|
@@ -10321,6 +10321,7 @@ declare const FdtoCreateDelivery: z.ZodObject<{
|
|
|
10321
10321
|
profile: {
|
|
10322
10322
|
code?: string | null | undefined;
|
|
10323
10323
|
url?: string | null | undefined;
|
|
10324
|
+
email?: string | undefined;
|
|
10324
10325
|
description?: string | null | undefined;
|
|
10325
10326
|
_id?: string | null | undefined;
|
|
10326
10327
|
legalName?: string | null | undefined;
|
|
@@ -10391,7 +10392,6 @@ declare const FdtoCreateDelivery: z.ZodObject<{
|
|
|
10391
10392
|
city: string;
|
|
10392
10393
|
postcode: string;
|
|
10393
10394
|
};
|
|
10394
|
-
email: string;
|
|
10395
10395
|
phoneNo: string;
|
|
10396
10396
|
regNo: string;
|
|
10397
10397
|
};
|
|
@@ -11141,6 +11141,7 @@ declare const FdtoCreateDelivery: z.ZodObject<{
|
|
|
11141
11141
|
profile: {
|
|
11142
11142
|
code?: string | null | undefined;
|
|
11143
11143
|
url?: string | null | undefined;
|
|
11144
|
+
email?: string | undefined;
|
|
11144
11145
|
description?: string | null | undefined;
|
|
11145
11146
|
_id?: string | null | undefined;
|
|
11146
11147
|
legalName?: string | null | undefined;
|
|
@@ -11211,7 +11212,6 @@ declare const FdtoCreateDelivery: z.ZodObject<{
|
|
|
11211
11212
|
city: string;
|
|
11212
11213
|
postcode: string;
|
|
11213
11214
|
};
|
|
11214
|
-
email: string;
|
|
11215
11215
|
phoneNo: string;
|
|
11216
11216
|
regNo: string;
|
|
11217
11217
|
};
|