@feedmepos/mf-order-setting 0.0.16 → 0.0.18
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-CuHZd6_9.js +4 -0
- package/dist/KioskDevicesView.vue_vue_type_script_setup_true_lang-5mr80TnE.js +206 -0
- package/dist/KioskSettingView-6Q0qwSTl.js +345 -0
- package/dist/KioskView-Dy1o-gJs.js +289 -0
- package/dist/OrderSettingsView-B-uga-ib.js +70943 -0
- package/dist/app-DOZsphNG.js +614 -0
- package/dist/app.js +1 -1
- package/dist/dayjs.min-7bYz19Mt.js +123632 -0
- package/dist/frontend/mf-order/src/api/restaurant-setting/index.d.ts +1 -1
- package/dist/frontend/mf-order/src/helpers/map.d.ts +3 -2
- package/dist/frontend/mf-order/src/stores/restaurant/index.d.ts +8 -8
- package/dist/frontend/mf-order/src/views/all-orders/FilterRestaurant.vue.d.ts +4 -4
- package/dist/frontend/mf-order/src/views/all-orders/ReflowOrder.vue.d.ts +2 -2
- package/dist/frontend/mf-order/src/views/order-settings/pickup/PickUpPointDialog.vue.d.ts +2 -2
- package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
- package/dist/index-B0G4vTU2.js +86 -0
- package/dist/index-B9mJLWE5.js +70 -0
- package/dist/package/entity/delivery/delivery.dto.d.ts +12 -12
- package/dist/package/entity/delivery/gateway/grab.dto.d.ts +8 -8
- package/dist/package/entity/delivery/gateway/pandago.dto.d.ts +6 -6
- package/dist/package/entity/delivery/linked-delivery.do.d.ts +2 -2
- package/dist/package/entity/delivery/linked-delivery.dto.d.ts +8 -8
- package/dist/package/entity/food-court/food-court.dto.d.ts +44 -44
- package/dist/package/entity/food-court/order.dto.d.ts +38 -38
- package/dist/package/entity/order/order.dto.d.ts +356 -356
- package/dist/package/entity/order/payment/payment.dto.d.ts +152 -152
- package/dist/package/entity/order/pickup/pickup.do.d.ts +2 -2
- package/dist/package/entity/order/pickup/pickup.dto.d.ts +2 -2
- package/dist/package/entity/order-platform/foodpanda/foodpanda-order.do.d.ts +8 -8
- package/dist/package/entity/order-platform/grabfood/grabfood-order.do.d.ts +18 -18
- package/dist/package/entity/order-platform/grabfood/grabfood.dto.d.ts +6 -6
- package/dist/package/entity/order-platform/menu.dto.d.ts +28 -28
- package/dist/package/entity/order-platform/shopeefood/shopeefood-order.do.d.ts +22 -22
- package/dist/package/entity/order-platform/shopeefood/shopeefood-order.dto.d.ts +8 -8
- package/dist/package/entity/payment/payment.dto.d.ts +2 -2
- package/dist/package/entity/queue/queue.dto.d.ts +6 -6
- package/dist/package/entity/restaurant/restaurant.dto.d.ts +4 -4
- package/dist/package/entity/websocket/websocket.dto.d.ts +2 -2
- package/package.json +1 -1
- package/src/App.vue +20 -0
- package/src/Entry.vue +0 -9
- package/src/api/restaurant-setting/index.ts +3 -2
- package/src/app.ts +1 -1
- package/src/components/GoogleMap.vue +102 -104
- package/src/helpers/map.ts +23 -15
- package/src/router/routes.ts +4 -8
- package/src/stores/restaurant/index.ts +1 -1
- package/src/views/order-settings/delivery/inhouse/DeliveryOrder.vue +3 -2
- package/src/views/order-settings/pickup/AddressInput.vue +3 -2
- package/src/views/order-settings/pickup/PickUpSetting.vue +34 -25
- package/dist/KioskSettingView-DGfS1NzO.js +0 -4
- package/dist/app-9Q-zRVKD.js +0 -196056
|
@@ -4,12 +4,12 @@ export declare const FdoPickupPoint: z.ZodObject<{
|
|
|
4
4
|
address: z.ZodString;
|
|
5
5
|
coordinates: z.ZodArray<z.ZodNumber, "many">;
|
|
6
6
|
}, "strip", z.ZodTypeAny, {
|
|
7
|
-
address: string;
|
|
8
7
|
name: string;
|
|
8
|
+
address: string;
|
|
9
9
|
coordinates: number[];
|
|
10
10
|
}, {
|
|
11
|
-
address: string;
|
|
12
11
|
name: string;
|
|
12
|
+
address: string;
|
|
13
13
|
coordinates: number[];
|
|
14
14
|
}>;
|
|
15
15
|
export type FdoPickupPoint = z.infer<typeof FdoPickupPoint>;
|
|
@@ -4,12 +4,12 @@ export declare const OrderPickupPointDto: z.ZodObject<{
|
|
|
4
4
|
address: z.ZodString;
|
|
5
5
|
coordinates: z.ZodArray<z.ZodNumber, "many">;
|
|
6
6
|
}, "strip", z.ZodTypeAny, {
|
|
7
|
-
address: string;
|
|
8
7
|
name: string;
|
|
8
|
+
address: string;
|
|
9
9
|
coordinates: number[];
|
|
10
10
|
}, {
|
|
11
|
-
address: string;
|
|
12
11
|
name: string;
|
|
12
|
+
address: string;
|
|
13
13
|
coordinates: number[];
|
|
14
14
|
}>;
|
|
15
15
|
export type OrderPickupPointDto = z.infer<typeof OrderPickupPointDto>;
|
|
@@ -3677,10 +3677,10 @@ export declare const FPPosAvailabilityRes: z.ZodObject<{
|
|
|
3677
3677
|
platformId?: string | undefined;
|
|
3678
3678
|
platformType?: boolean | undefined;
|
|
3679
3679
|
closingMinutes?: number[] | undefined;
|
|
3680
|
-
availabilityState: "
|
|
3681
|
-
closedReason: "
|
|
3682
|
-
availabilityStates: ("
|
|
3683
|
-
closingReasons: ("
|
|
3680
|
+
availabilityState: "UNKNOWN" | "CLOSED" | "INACTIVE" | "CLOSED_UNTIL" | "OPEN" | "CLOSED_TODAY";
|
|
3681
|
+
closedReason: "OTHER" | "BAD_WEATHER" | "CLOSED" | "TECHNICAL_PROBLEM" | "UNREACHABLE" | "TOO_BUSY_NO_DRIVERS" | "TOO_BUSY_KITCHEN" | "UPDATES_IN_MENU" | "CHECK_IN_REQUIRED" | "ORDER_FAILURE" | "TOO_MANY_REJECTED_ORDERS" | "COURIER_DELAYED_AT_PICKUP" | "RESTRICTED_VISIBILITY" | "HOLIDAY_SPECIAL_DAY" | "ONBOARDING" | "OFFBOARDING" | "RETENTION" | "COMPLIANCE_ISSUES" | "OWNERSHIP_CHANGE" | "REFURBISHMENT" | "FOOD_HYGIENE" | "FRAUD" | "RELIGIOUS_OBSERVANCE" | "CHECK_IN_FAILED" | "AREA_DISRUPTION";
|
|
3682
|
+
availabilityStates: ("UNKNOWN" | "CLOSED" | "INACTIVE" | "CLOSED_UNTIL" | "OPEN" | "CLOSED_TODAY")[];
|
|
3683
|
+
closingReasons: ("OTHER" | "BAD_WEATHER" | "CLOSED" | "TECHNICAL_PROBLEM" | "UNREACHABLE" | "TOO_BUSY_NO_DRIVERS" | "TOO_BUSY_KITCHEN" | "UPDATES_IN_MENU" | "CHECK_IN_REQUIRED" | "ORDER_FAILURE" | "TOO_MANY_REJECTED_ORDERS" | "COURIER_DELAYED_AT_PICKUP" | "RESTRICTED_VISIBILITY" | "HOLIDAY_SPECIAL_DAY" | "ONBOARDING" | "OFFBOARDING" | "RETENTION" | "COMPLIANCE_ISSUES" | "OWNERSHIP_CHANGE" | "REFURBISHMENT" | "FOOD_HYGIENE" | "FRAUD" | "RELIGIOUS_OBSERVANCE" | "CHECK_IN_FAILED" | "AREA_DISRUPTION")[];
|
|
3684
3684
|
changeable: boolean;
|
|
3685
3685
|
}, {
|
|
3686
3686
|
platformKey?: string | undefined;
|
|
@@ -3691,10 +3691,10 @@ export declare const FPPosAvailabilityRes: z.ZodObject<{
|
|
|
3691
3691
|
platformId?: string | undefined;
|
|
3692
3692
|
platformType?: boolean | undefined;
|
|
3693
3693
|
closingMinutes?: number[] | undefined;
|
|
3694
|
-
availabilityState: "
|
|
3695
|
-
closedReason: "
|
|
3696
|
-
availabilityStates: ("
|
|
3697
|
-
closingReasons: ("
|
|
3694
|
+
availabilityState: "UNKNOWN" | "CLOSED" | "INACTIVE" | "CLOSED_UNTIL" | "OPEN" | "CLOSED_TODAY";
|
|
3695
|
+
closedReason: "OTHER" | "BAD_WEATHER" | "CLOSED" | "TECHNICAL_PROBLEM" | "UNREACHABLE" | "TOO_BUSY_NO_DRIVERS" | "TOO_BUSY_KITCHEN" | "UPDATES_IN_MENU" | "CHECK_IN_REQUIRED" | "ORDER_FAILURE" | "TOO_MANY_REJECTED_ORDERS" | "COURIER_DELAYED_AT_PICKUP" | "RESTRICTED_VISIBILITY" | "HOLIDAY_SPECIAL_DAY" | "ONBOARDING" | "OFFBOARDING" | "RETENTION" | "COMPLIANCE_ISSUES" | "OWNERSHIP_CHANGE" | "REFURBISHMENT" | "FOOD_HYGIENE" | "FRAUD" | "RELIGIOUS_OBSERVANCE" | "CHECK_IN_FAILED" | "AREA_DISRUPTION";
|
|
3696
|
+
availabilityStates: ("UNKNOWN" | "CLOSED" | "INACTIVE" | "CLOSED_UNTIL" | "OPEN" | "CLOSED_TODAY")[];
|
|
3697
|
+
closingReasons: ("OTHER" | "BAD_WEATHER" | "CLOSED" | "TECHNICAL_PROBLEM" | "UNREACHABLE" | "TOO_BUSY_NO_DRIVERS" | "TOO_BUSY_KITCHEN" | "UPDATES_IN_MENU" | "CHECK_IN_REQUIRED" | "ORDER_FAILURE" | "TOO_MANY_REJECTED_ORDERS" | "COURIER_DELAYED_AT_PICKUP" | "RESTRICTED_VISIBILITY" | "HOLIDAY_SPECIAL_DAY" | "ONBOARDING" | "OFFBOARDING" | "RETENTION" | "COMPLIANCE_ISSUES" | "OWNERSHIP_CHANGE" | "REFURBISHMENT" | "FOOD_HYGIENE" | "FRAUD" | "RELIGIOUS_OBSERVANCE" | "CHECK_IN_FAILED" | "AREA_DISRUPTION")[];
|
|
3698
3698
|
changeable: boolean;
|
|
3699
3699
|
}>;
|
|
3700
3700
|
declare const _FPUpdatePosAvailabilityData: z.ZodObject<{
|
|
@@ -381,6 +381,7 @@ export declare const GFOrderReceiver: z.ZodObject<{
|
|
|
381
381
|
poiID?: string | null | undefined;
|
|
382
382
|
}>>>;
|
|
383
383
|
}, "strip", z.ZodTypeAny, {
|
|
384
|
+
name?: string | null | undefined;
|
|
384
385
|
address?: {
|
|
385
386
|
address?: string | null | undefined;
|
|
386
387
|
coordinates?: {
|
|
@@ -393,9 +394,9 @@ export declare const GFOrderReceiver: z.ZodObject<{
|
|
|
393
394
|
deliveryInstruction?: string | null | undefined;
|
|
394
395
|
poiID?: string | null | undefined;
|
|
395
396
|
} | null | undefined;
|
|
396
|
-
name?: string | null | undefined;
|
|
397
397
|
phones?: string | null | undefined;
|
|
398
398
|
}, {
|
|
399
|
+
name?: string | null | undefined;
|
|
399
400
|
address?: {
|
|
400
401
|
address?: string | null | undefined;
|
|
401
402
|
coordinates?: {
|
|
@@ -408,7 +409,6 @@ export declare const GFOrderReceiver: z.ZodObject<{
|
|
|
408
409
|
deliveryInstruction?: string | null | undefined;
|
|
409
410
|
poiID?: string | null | undefined;
|
|
410
411
|
} | null | undefined;
|
|
411
|
-
name?: string | null | undefined;
|
|
412
412
|
phones?: string | null | undefined;
|
|
413
413
|
}>;
|
|
414
414
|
export declare const GFOrder: z.ZodObject<{
|
|
@@ -715,6 +715,7 @@ export declare const GFOrder: z.ZodObject<{
|
|
|
715
715
|
poiID?: string | null | undefined;
|
|
716
716
|
}>>>;
|
|
717
717
|
}, "strip", z.ZodTypeAny, {
|
|
718
|
+
name?: string | null | undefined;
|
|
718
719
|
address?: {
|
|
719
720
|
address?: string | null | undefined;
|
|
720
721
|
coordinates?: {
|
|
@@ -727,9 +728,9 @@ export declare const GFOrder: z.ZodObject<{
|
|
|
727
728
|
deliveryInstruction?: string | null | undefined;
|
|
728
729
|
poiID?: string | null | undefined;
|
|
729
730
|
} | null | undefined;
|
|
730
|
-
name?: string | null | undefined;
|
|
731
731
|
phones?: string | null | undefined;
|
|
732
732
|
}, {
|
|
733
|
+
name?: string | null | undefined;
|
|
733
734
|
address?: {
|
|
734
735
|
address?: string | null | undefined;
|
|
735
736
|
coordinates?: {
|
|
@@ -742,11 +743,11 @@ export declare const GFOrder: z.ZodObject<{
|
|
|
742
743
|
deliveryInstruction?: string | null | undefined;
|
|
743
744
|
poiID?: string | null | undefined;
|
|
744
745
|
} | null | undefined;
|
|
745
|
-
name?: string | null | undefined;
|
|
746
746
|
phones?: string | null | undefined;
|
|
747
747
|
}>>>;
|
|
748
748
|
}, "strip", z.ZodTypeAny, {
|
|
749
749
|
receiver?: {
|
|
750
|
+
name?: string | null | undefined;
|
|
750
751
|
address?: {
|
|
751
752
|
address?: string | null | undefined;
|
|
752
753
|
coordinates?: {
|
|
@@ -759,7 +760,6 @@ export declare const GFOrder: z.ZodObject<{
|
|
|
759
760
|
deliveryInstruction?: string | null | undefined;
|
|
760
761
|
poiID?: string | null | undefined;
|
|
761
762
|
} | null | undefined;
|
|
762
|
-
name?: string | null | undefined;
|
|
763
763
|
phones?: string | null | undefined;
|
|
764
764
|
} | null | undefined;
|
|
765
765
|
dineIn?: {
|
|
@@ -841,6 +841,7 @@ export declare const GFOrder: z.ZodObject<{
|
|
|
841
841
|
};
|
|
842
842
|
}, {
|
|
843
843
|
receiver?: {
|
|
844
|
+
name?: string | null | undefined;
|
|
844
845
|
address?: {
|
|
845
846
|
address?: string | null | undefined;
|
|
846
847
|
coordinates?: {
|
|
@@ -853,7 +854,6 @@ export declare const GFOrder: z.ZodObject<{
|
|
|
853
854
|
deliveryInstruction?: string | null | undefined;
|
|
854
855
|
poiID?: string | null | undefined;
|
|
855
856
|
} | null | undefined;
|
|
856
|
-
name?: string | null | undefined;
|
|
857
857
|
phones?: string | null | undefined;
|
|
858
858
|
} | null | undefined;
|
|
859
859
|
dineIn?: {
|
|
@@ -1250,6 +1250,7 @@ export declare const FdoGrabfoodOrder: z.ZodObject<{
|
|
|
1250
1250
|
poiID?: string | null | undefined;
|
|
1251
1251
|
}>>>;
|
|
1252
1252
|
}, "strip", z.ZodTypeAny, {
|
|
1253
|
+
name?: string | null | undefined;
|
|
1253
1254
|
address?: {
|
|
1254
1255
|
address?: string | null | undefined;
|
|
1255
1256
|
coordinates?: {
|
|
@@ -1262,9 +1263,9 @@ export declare const FdoGrabfoodOrder: z.ZodObject<{
|
|
|
1262
1263
|
deliveryInstruction?: string | null | undefined;
|
|
1263
1264
|
poiID?: string | null | undefined;
|
|
1264
1265
|
} | null | undefined;
|
|
1265
|
-
name?: string | null | undefined;
|
|
1266
1266
|
phones?: string | null | undefined;
|
|
1267
1267
|
}, {
|
|
1268
|
+
name?: string | null | undefined;
|
|
1268
1269
|
address?: {
|
|
1269
1270
|
address?: string | null | undefined;
|
|
1270
1271
|
coordinates?: {
|
|
@@ -1277,11 +1278,11 @@ export declare const FdoGrabfoodOrder: z.ZodObject<{
|
|
|
1277
1278
|
deliveryInstruction?: string | null | undefined;
|
|
1278
1279
|
poiID?: string | null | undefined;
|
|
1279
1280
|
} | null | undefined;
|
|
1280
|
-
name?: string | null | undefined;
|
|
1281
1281
|
phones?: string | null | undefined;
|
|
1282
1282
|
}>>>;
|
|
1283
1283
|
}, "strip", z.ZodTypeAny, {
|
|
1284
1284
|
receiver?: {
|
|
1285
|
+
name?: string | null | undefined;
|
|
1285
1286
|
address?: {
|
|
1286
1287
|
address?: string | null | undefined;
|
|
1287
1288
|
coordinates?: {
|
|
@@ -1294,7 +1295,6 @@ export declare const FdoGrabfoodOrder: z.ZodObject<{
|
|
|
1294
1295
|
deliveryInstruction?: string | null | undefined;
|
|
1295
1296
|
poiID?: string | null | undefined;
|
|
1296
1297
|
} | null | undefined;
|
|
1297
|
-
name?: string | null | undefined;
|
|
1298
1298
|
phones?: string | null | undefined;
|
|
1299
1299
|
} | null | undefined;
|
|
1300
1300
|
dineIn?: {
|
|
@@ -1376,6 +1376,7 @@ export declare const FdoGrabfoodOrder: z.ZodObject<{
|
|
|
1376
1376
|
};
|
|
1377
1377
|
}, {
|
|
1378
1378
|
receiver?: {
|
|
1379
|
+
name?: string | null | undefined;
|
|
1379
1380
|
address?: {
|
|
1380
1381
|
address?: string | null | undefined;
|
|
1381
1382
|
coordinates?: {
|
|
@@ -1388,7 +1389,6 @@ export declare const FdoGrabfoodOrder: z.ZodObject<{
|
|
|
1388
1389
|
deliveryInstruction?: string | null | undefined;
|
|
1389
1390
|
poiID?: string | null | undefined;
|
|
1390
1391
|
} | null | undefined;
|
|
1391
|
-
name?: string | null | undefined;
|
|
1392
1392
|
phones?: string | null | undefined;
|
|
1393
1393
|
} | null | undefined;
|
|
1394
1394
|
dineIn?: {
|
|
@@ -1477,6 +1477,7 @@ export declare const FdoGrabfoodOrder: z.ZodObject<{
|
|
|
1477
1477
|
};
|
|
1478
1478
|
raw: {
|
|
1479
1479
|
receiver?: {
|
|
1480
|
+
name?: string | null | undefined;
|
|
1480
1481
|
address?: {
|
|
1481
1482
|
address?: string | null | undefined;
|
|
1482
1483
|
coordinates?: {
|
|
@@ -1489,7 +1490,6 @@ export declare const FdoGrabfoodOrder: z.ZodObject<{
|
|
|
1489
1490
|
deliveryInstruction?: string | null | undefined;
|
|
1490
1491
|
poiID?: string | null | undefined;
|
|
1491
1492
|
} | null | undefined;
|
|
1492
|
-
name?: string | null | undefined;
|
|
1493
1493
|
phones?: string | null | undefined;
|
|
1494
1494
|
} | null | undefined;
|
|
1495
1495
|
dineIn?: {
|
|
@@ -1578,6 +1578,7 @@ export declare const FdoGrabfoodOrder: z.ZodObject<{
|
|
|
1578
1578
|
};
|
|
1579
1579
|
raw: {
|
|
1580
1580
|
receiver?: {
|
|
1581
|
+
name?: string | null | undefined;
|
|
1581
1582
|
address?: {
|
|
1582
1583
|
address?: string | null | undefined;
|
|
1583
1584
|
coordinates?: {
|
|
@@ -1590,7 +1591,6 @@ export declare const FdoGrabfoodOrder: z.ZodObject<{
|
|
|
1590
1591
|
deliveryInstruction?: string | null | undefined;
|
|
1591
1592
|
poiID?: string | null | undefined;
|
|
1592
1593
|
} | null | undefined;
|
|
1593
|
-
name?: string | null | undefined;
|
|
1594
1594
|
phones?: string | null | undefined;
|
|
1595
1595
|
} | null | undefined;
|
|
1596
1596
|
dineIn?: {
|
|
@@ -1988,6 +1988,7 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1988
1988
|
poiID?: string | null | undefined;
|
|
1989
1989
|
}>>>;
|
|
1990
1990
|
}, "strip", z.ZodTypeAny, {
|
|
1991
|
+
name?: string | null | undefined;
|
|
1991
1992
|
address?: {
|
|
1992
1993
|
address?: string | null | undefined;
|
|
1993
1994
|
coordinates?: {
|
|
@@ -2000,9 +2001,9 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
2000
2001
|
deliveryInstruction?: string | null | undefined;
|
|
2001
2002
|
poiID?: string | null | undefined;
|
|
2002
2003
|
} | null | undefined;
|
|
2003
|
-
name?: string | null | undefined;
|
|
2004
2004
|
phones?: string | null | undefined;
|
|
2005
2005
|
}, {
|
|
2006
|
+
name?: string | null | undefined;
|
|
2006
2007
|
address?: {
|
|
2007
2008
|
address?: string | null | undefined;
|
|
2008
2009
|
coordinates?: {
|
|
@@ -2015,11 +2016,11 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
2015
2016
|
deliveryInstruction?: string | null | undefined;
|
|
2016
2017
|
poiID?: string | null | undefined;
|
|
2017
2018
|
} | null | undefined;
|
|
2018
|
-
name?: string | null | undefined;
|
|
2019
2019
|
phones?: string | null | undefined;
|
|
2020
2020
|
}>>>;
|
|
2021
2021
|
}, "strip", z.ZodTypeAny, {
|
|
2022
2022
|
receiver?: {
|
|
2023
|
+
name?: string | null | undefined;
|
|
2023
2024
|
address?: {
|
|
2024
2025
|
address?: string | null | undefined;
|
|
2025
2026
|
coordinates?: {
|
|
@@ -2032,7 +2033,6 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
2032
2033
|
deliveryInstruction?: string | null | undefined;
|
|
2033
2034
|
poiID?: string | null | undefined;
|
|
2034
2035
|
} | null | undefined;
|
|
2035
|
-
name?: string | null | undefined;
|
|
2036
2036
|
phones?: string | null | undefined;
|
|
2037
2037
|
} | null | undefined;
|
|
2038
2038
|
dineIn?: {
|
|
@@ -2114,6 +2114,7 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
2114
2114
|
};
|
|
2115
2115
|
}, {
|
|
2116
2116
|
receiver?: {
|
|
2117
|
+
name?: string | null | undefined;
|
|
2117
2118
|
address?: {
|
|
2118
2119
|
address?: string | null | undefined;
|
|
2119
2120
|
coordinates?: {
|
|
@@ -2126,7 +2127,6 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
2126
2127
|
deliveryInstruction?: string | null | undefined;
|
|
2127
2128
|
poiID?: string | null | undefined;
|
|
2128
2129
|
} | null | undefined;
|
|
2129
|
-
name?: string | null | undefined;
|
|
2130
2130
|
phones?: string | null | undefined;
|
|
2131
2131
|
} | null | undefined;
|
|
2132
2132
|
dineIn?: {
|
|
@@ -5388,6 +5388,7 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
5388
5388
|
};
|
|
5389
5389
|
raw: {
|
|
5390
5390
|
receiver?: {
|
|
5391
|
+
name?: string | null | undefined;
|
|
5391
5392
|
address?: {
|
|
5392
5393
|
address?: string | null | undefined;
|
|
5393
5394
|
coordinates?: {
|
|
@@ -5400,7 +5401,6 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
5400
5401
|
deliveryInstruction?: string | null | undefined;
|
|
5401
5402
|
poiID?: string | null | undefined;
|
|
5402
5403
|
} | null | undefined;
|
|
5403
|
-
name?: string | null | undefined;
|
|
5404
5404
|
phones?: string | null | undefined;
|
|
5405
5405
|
} | null | undefined;
|
|
5406
5406
|
dineIn?: {
|
|
@@ -5862,6 +5862,7 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
5862
5862
|
};
|
|
5863
5863
|
raw: {
|
|
5864
5864
|
receiver?: {
|
|
5865
|
+
name?: string | null | undefined;
|
|
5865
5866
|
address?: {
|
|
5866
5867
|
address?: string | null | undefined;
|
|
5867
5868
|
coordinates?: {
|
|
@@ -5874,7 +5875,6 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
5874
5875
|
deliveryInstruction?: string | null | undefined;
|
|
5875
5876
|
poiID?: string | null | undefined;
|
|
5876
5877
|
} | null | undefined;
|
|
5877
|
-
name?: string | null | undefined;
|
|
5878
5878
|
phones?: string | null | undefined;
|
|
5879
5879
|
} | null | undefined;
|
|
5880
5880
|
dineIn?: {
|
|
@@ -2152,6 +2152,7 @@ export declare const GFListOrdersRes: z.ZodObject<{
|
|
|
2152
2152
|
poiID?: string | null | undefined;
|
|
2153
2153
|
}>>>;
|
|
2154
2154
|
}, "strip", z.ZodTypeAny, {
|
|
2155
|
+
name?: string | null | undefined;
|
|
2155
2156
|
address?: {
|
|
2156
2157
|
address?: string | null | undefined;
|
|
2157
2158
|
coordinates?: {
|
|
@@ -2164,9 +2165,9 @@ export declare const GFListOrdersRes: z.ZodObject<{
|
|
|
2164
2165
|
deliveryInstruction?: string | null | undefined;
|
|
2165
2166
|
poiID?: string | null | undefined;
|
|
2166
2167
|
} | null | undefined;
|
|
2167
|
-
name?: string | null | undefined;
|
|
2168
2168
|
phones?: string | null | undefined;
|
|
2169
2169
|
}, {
|
|
2170
|
+
name?: string | null | undefined;
|
|
2170
2171
|
address?: {
|
|
2171
2172
|
address?: string | null | undefined;
|
|
2172
2173
|
coordinates?: {
|
|
@@ -2179,11 +2180,11 @@ export declare const GFListOrdersRes: z.ZodObject<{
|
|
|
2179
2180
|
deliveryInstruction?: string | null | undefined;
|
|
2180
2181
|
poiID?: string | null | undefined;
|
|
2181
2182
|
} | null | undefined;
|
|
2182
|
-
name?: string | null | undefined;
|
|
2183
2183
|
phones?: string | null | undefined;
|
|
2184
2184
|
}>>>;
|
|
2185
2185
|
}, "strip", z.ZodTypeAny, {
|
|
2186
2186
|
receiver?: {
|
|
2187
|
+
name?: string | null | undefined;
|
|
2187
2188
|
address?: {
|
|
2188
2189
|
address?: string | null | undefined;
|
|
2189
2190
|
coordinates?: {
|
|
@@ -2196,7 +2197,6 @@ export declare const GFListOrdersRes: z.ZodObject<{
|
|
|
2196
2197
|
deliveryInstruction?: string | null | undefined;
|
|
2197
2198
|
poiID?: string | null | undefined;
|
|
2198
2199
|
} | null | undefined;
|
|
2199
|
-
name?: string | null | undefined;
|
|
2200
2200
|
phones?: string | null | undefined;
|
|
2201
2201
|
} | null | undefined;
|
|
2202
2202
|
dineIn?: {
|
|
@@ -2278,6 +2278,7 @@ export declare const GFListOrdersRes: z.ZodObject<{
|
|
|
2278
2278
|
};
|
|
2279
2279
|
}, {
|
|
2280
2280
|
receiver?: {
|
|
2281
|
+
name?: string | null | undefined;
|
|
2281
2282
|
address?: {
|
|
2282
2283
|
address?: string | null | undefined;
|
|
2283
2284
|
coordinates?: {
|
|
@@ -2290,7 +2291,6 @@ export declare const GFListOrdersRes: z.ZodObject<{
|
|
|
2290
2291
|
deliveryInstruction?: string | null | undefined;
|
|
2291
2292
|
poiID?: string | null | undefined;
|
|
2292
2293
|
} | null | undefined;
|
|
2293
|
-
name?: string | null | undefined;
|
|
2294
2294
|
phones?: string | null | undefined;
|
|
2295
2295
|
} | null | undefined;
|
|
2296
2296
|
dineIn?: {
|
|
@@ -2374,6 +2374,7 @@ export declare const GFListOrdersRes: z.ZodObject<{
|
|
|
2374
2374
|
}, "strip", z.ZodTypeAny, {
|
|
2375
2375
|
orders: {
|
|
2376
2376
|
receiver?: {
|
|
2377
|
+
name?: string | null | undefined;
|
|
2377
2378
|
address?: {
|
|
2378
2379
|
address?: string | null | undefined;
|
|
2379
2380
|
coordinates?: {
|
|
@@ -2386,7 +2387,6 @@ export declare const GFListOrdersRes: z.ZodObject<{
|
|
|
2386
2387
|
deliveryInstruction?: string | null | undefined;
|
|
2387
2388
|
poiID?: string | null | undefined;
|
|
2388
2389
|
} | null | undefined;
|
|
2389
|
-
name?: string | null | undefined;
|
|
2390
2390
|
phones?: string | null | undefined;
|
|
2391
2391
|
} | null | undefined;
|
|
2392
2392
|
dineIn?: {
|
|
@@ -2471,6 +2471,7 @@ export declare const GFListOrdersRes: z.ZodObject<{
|
|
|
2471
2471
|
}, {
|
|
2472
2472
|
orders: {
|
|
2473
2473
|
receiver?: {
|
|
2474
|
+
name?: string | null | undefined;
|
|
2474
2475
|
address?: {
|
|
2475
2476
|
address?: string | null | undefined;
|
|
2476
2477
|
coordinates?: {
|
|
@@ -2483,7 +2484,6 @@ export declare const GFListOrdersRes: z.ZodObject<{
|
|
|
2483
2484
|
deliveryInstruction?: string | null | undefined;
|
|
2484
2485
|
poiID?: string | null | undefined;
|
|
2485
2486
|
} | null | undefined;
|
|
2486
|
-
name?: string | null | undefined;
|
|
2487
2487
|
phones?: string | null | undefined;
|
|
2488
2488
|
} | null | undefined;
|
|
2489
2489
|
dineIn?: {
|