@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
|
@@ -142,6 +142,32 @@ export declare const FdtoExternalOrderCreate: z.ZodObject<Omit<{
|
|
|
142
142
|
pickupAt: string;
|
|
143
143
|
customerName: string;
|
|
144
144
|
}>>>;
|
|
145
|
+
dineIn: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
146
|
+
contactNumber: z.ZodString;
|
|
147
|
+
customerName: z.ZodString;
|
|
148
|
+
pax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
149
|
+
tableNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
150
|
+
}, "strip", z.ZodTypeAny, {
|
|
151
|
+
pax?: number | null | undefined;
|
|
152
|
+
tableNumber?: string | null | undefined;
|
|
153
|
+
contactNumber: string;
|
|
154
|
+
customerName: string;
|
|
155
|
+
}, {
|
|
156
|
+
pax?: number | null | undefined;
|
|
157
|
+
tableNumber?: string | null | undefined;
|
|
158
|
+
contactNumber: string;
|
|
159
|
+
customerName: string;
|
|
160
|
+
}>>>;
|
|
161
|
+
driveThru: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
162
|
+
contactNumber: z.ZodString;
|
|
163
|
+
licensePlate: z.ZodString;
|
|
164
|
+
}, "strip", z.ZodTypeAny, {
|
|
165
|
+
licensePlate: string;
|
|
166
|
+
contactNumber: string;
|
|
167
|
+
}, {
|
|
168
|
+
licensePlate: string;
|
|
169
|
+
contactNumber: string;
|
|
170
|
+
}>>>;
|
|
145
171
|
integrationInfo: z.ZodObject<{
|
|
146
172
|
partnerStoreId: z.ZodString;
|
|
147
173
|
partnerName: z.ZodEnum<["ZUS_COFFEE"]>;
|
|
@@ -536,6 +562,16 @@ export declare const FdtoExternalOrderCreate: z.ZodObject<Omit<{
|
|
|
536
562
|
};
|
|
537
563
|
deliveryAt: string;
|
|
538
564
|
} | null | undefined;
|
|
565
|
+
dineIn?: {
|
|
566
|
+
pax?: number | null | undefined;
|
|
567
|
+
tableNumber?: string | null | undefined;
|
|
568
|
+
contactNumber: string;
|
|
569
|
+
customerName: string;
|
|
570
|
+
} | null | undefined;
|
|
571
|
+
driveThru?: {
|
|
572
|
+
licensePlate: string;
|
|
573
|
+
contactNumber: string;
|
|
574
|
+
} | null | undefined;
|
|
539
575
|
price: {
|
|
540
576
|
roundToNearest?: number | null | undefined;
|
|
541
577
|
totalAmount: {
|
|
@@ -656,6 +692,16 @@ export declare const FdtoExternalOrderCreate: z.ZodObject<Omit<{
|
|
|
656
692
|
};
|
|
657
693
|
deliveryAt: string;
|
|
658
694
|
} | null | undefined;
|
|
695
|
+
dineIn?: {
|
|
696
|
+
pax?: number | null | undefined;
|
|
697
|
+
tableNumber?: string | null | undefined;
|
|
698
|
+
contactNumber: string;
|
|
699
|
+
customerName: string;
|
|
700
|
+
} | null | undefined;
|
|
701
|
+
driveThru?: {
|
|
702
|
+
licensePlate: string;
|
|
703
|
+
contactNumber: string;
|
|
704
|
+
} | null | undefined;
|
|
659
705
|
price: {
|
|
660
706
|
roundToNearest?: number | null | undefined;
|
|
661
707
|
totalAmount: {
|
|
@@ -990,6 +1036,22 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
990
1036
|
};
|
|
991
1037
|
deliveryAt: string;
|
|
992
1038
|
}>>>>;
|
|
1039
|
+
dineIn: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1040
|
+
contactNumber: z.ZodString;
|
|
1041
|
+
customerName: z.ZodString;
|
|
1042
|
+
pax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1043
|
+
tableNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1044
|
+
}, "strip", z.ZodTypeAny, {
|
|
1045
|
+
pax?: number | null | undefined;
|
|
1046
|
+
tableNumber?: string | null | undefined;
|
|
1047
|
+
contactNumber: string;
|
|
1048
|
+
customerName: string;
|
|
1049
|
+
}, {
|
|
1050
|
+
pax?: number | null | undefined;
|
|
1051
|
+
tableNumber?: string | null | undefined;
|
|
1052
|
+
contactNumber: string;
|
|
1053
|
+
customerName: string;
|
|
1054
|
+
}>>>>;
|
|
993
1055
|
items: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
994
1056
|
productId: z.ZodString;
|
|
995
1057
|
subItems: z.ZodArray<z.ZodType<import("./external-order.do").FdoExternalOrderSubItem, z.ZodTypeDef, import("./external-order.do").FdoExternalOrderSubItem>, "many">;
|
|
@@ -1231,6 +1293,16 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1231
1293
|
}>, "many">>;
|
|
1232
1294
|
orderTime: z.ZodOptional<z.ZodString>;
|
|
1233
1295
|
shortCode: z.ZodOptional<z.ZodString>;
|
|
1296
|
+
driveThru: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1297
|
+
contactNumber: z.ZodString;
|
|
1298
|
+
licensePlate: z.ZodString;
|
|
1299
|
+
}, "strip", z.ZodTypeAny, {
|
|
1300
|
+
licensePlate: string;
|
|
1301
|
+
contactNumber: string;
|
|
1302
|
+
}, {
|
|
1303
|
+
licensePlate: string;
|
|
1304
|
+
contactNumber: string;
|
|
1305
|
+
}>>>>;
|
|
1234
1306
|
integrationInfo: z.ZodOptional<z.ZodObject<{
|
|
1235
1307
|
partnerStoreId: z.ZodString;
|
|
1236
1308
|
partnerName: z.ZodEnum<["ZUS_COFFEE"]>;
|
|
@@ -1301,6 +1373,12 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1301
1373
|
};
|
|
1302
1374
|
deliveryAt: string;
|
|
1303
1375
|
} | null | undefined;
|
|
1376
|
+
dineIn?: {
|
|
1377
|
+
pax?: number | null | undefined;
|
|
1378
|
+
tableNumber?: string | null | undefined;
|
|
1379
|
+
contactNumber: string;
|
|
1380
|
+
customerName: string;
|
|
1381
|
+
} | null | undefined;
|
|
1304
1382
|
items?: {
|
|
1305
1383
|
remark?: string | null | undefined;
|
|
1306
1384
|
takeawayPrice?: {
|
|
@@ -1358,6 +1436,10 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1358
1436
|
}[] | undefined;
|
|
1359
1437
|
orderTime?: string | undefined;
|
|
1360
1438
|
shortCode?: string | undefined;
|
|
1439
|
+
driveThru?: {
|
|
1440
|
+
licensePlate: string;
|
|
1441
|
+
contactNumber: string;
|
|
1442
|
+
} | null | undefined;
|
|
1361
1443
|
integrationInfo?: {
|
|
1362
1444
|
partnerStoreId: string;
|
|
1363
1445
|
partnerName: "ZUS_COFFEE";
|
|
@@ -1421,6 +1503,12 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1421
1503
|
};
|
|
1422
1504
|
deliveryAt: string;
|
|
1423
1505
|
} | null | undefined;
|
|
1506
|
+
dineIn?: {
|
|
1507
|
+
pax?: number | null | undefined;
|
|
1508
|
+
tableNumber?: string | null | undefined;
|
|
1509
|
+
contactNumber: string;
|
|
1510
|
+
customerName: string;
|
|
1511
|
+
} | null | undefined;
|
|
1424
1512
|
items?: {
|
|
1425
1513
|
remark?: string | null | undefined;
|
|
1426
1514
|
takeawayPrice?: {
|
|
@@ -1478,6 +1566,10 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1478
1566
|
}[] | undefined;
|
|
1479
1567
|
orderTime?: string | undefined;
|
|
1480
1568
|
shortCode?: string | undefined;
|
|
1569
|
+
driveThru?: {
|
|
1570
|
+
licensePlate: string;
|
|
1571
|
+
contactNumber: string;
|
|
1572
|
+
} | null | undefined;
|
|
1481
1573
|
integrationInfo?: {
|
|
1482
1574
|
partnerStoreId: string;
|
|
1483
1575
|
partnerName: "ZUS_COFFEE";
|
|
@@ -1544,6 +1636,12 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1544
1636
|
};
|
|
1545
1637
|
deliveryAt: string;
|
|
1546
1638
|
} | null | undefined;
|
|
1639
|
+
dineIn?: {
|
|
1640
|
+
pax?: number | null | undefined;
|
|
1641
|
+
tableNumber?: string | null | undefined;
|
|
1642
|
+
contactNumber: string;
|
|
1643
|
+
customerName: string;
|
|
1644
|
+
} | null | undefined;
|
|
1547
1645
|
items?: {
|
|
1548
1646
|
remark?: string | null | undefined;
|
|
1549
1647
|
takeawayPrice?: {
|
|
@@ -1601,6 +1699,10 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1601
1699
|
}[] | undefined;
|
|
1602
1700
|
orderTime?: string | undefined;
|
|
1603
1701
|
shortCode?: string | undefined;
|
|
1702
|
+
driveThru?: {
|
|
1703
|
+
licensePlate: string;
|
|
1704
|
+
contactNumber: string;
|
|
1705
|
+
} | null | undefined;
|
|
1604
1706
|
integrationInfo?: {
|
|
1605
1707
|
partnerStoreId: string;
|
|
1606
1708
|
partnerName: "ZUS_COFFEE";
|
|
@@ -1667,6 +1769,12 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1667
1769
|
};
|
|
1668
1770
|
deliveryAt: string;
|
|
1669
1771
|
} | null | undefined;
|
|
1772
|
+
dineIn?: {
|
|
1773
|
+
pax?: number | null | undefined;
|
|
1774
|
+
tableNumber?: string | null | undefined;
|
|
1775
|
+
contactNumber: string;
|
|
1776
|
+
customerName: string;
|
|
1777
|
+
} | null | undefined;
|
|
1670
1778
|
items?: {
|
|
1671
1779
|
remark?: string | null | undefined;
|
|
1672
1780
|
takeawayPrice?: {
|
|
@@ -1724,6 +1832,10 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1724
1832
|
}[] | undefined;
|
|
1725
1833
|
orderTime?: string | undefined;
|
|
1726
1834
|
shortCode?: string | undefined;
|
|
1835
|
+
driveThru?: {
|
|
1836
|
+
licensePlate: string;
|
|
1837
|
+
contactNumber: string;
|
|
1838
|
+
} | null | undefined;
|
|
1727
1839
|
integrationInfo?: {
|
|
1728
1840
|
partnerStoreId: string;
|
|
1729
1841
|
partnerName: "ZUS_COFFEE";
|
|
@@ -1935,6 +2047,32 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
|
|
|
1935
2047
|
pickupAt: string;
|
|
1936
2048
|
customerName: string;
|
|
1937
2049
|
}>>>;
|
|
2050
|
+
dineIn: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2051
|
+
contactNumber: z.ZodString;
|
|
2052
|
+
customerName: z.ZodString;
|
|
2053
|
+
pax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
2054
|
+
tableNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2055
|
+
}, "strip", z.ZodTypeAny, {
|
|
2056
|
+
pax?: number | null | undefined;
|
|
2057
|
+
tableNumber?: string | null | undefined;
|
|
2058
|
+
contactNumber: string;
|
|
2059
|
+
customerName: string;
|
|
2060
|
+
}, {
|
|
2061
|
+
pax?: number | null | undefined;
|
|
2062
|
+
tableNumber?: string | null | undefined;
|
|
2063
|
+
contactNumber: string;
|
|
2064
|
+
customerName: string;
|
|
2065
|
+
}>>>;
|
|
2066
|
+
driveThru: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2067
|
+
contactNumber: z.ZodString;
|
|
2068
|
+
licensePlate: z.ZodString;
|
|
2069
|
+
}, "strip", z.ZodTypeAny, {
|
|
2070
|
+
licensePlate: string;
|
|
2071
|
+
contactNumber: string;
|
|
2072
|
+
}, {
|
|
2073
|
+
licensePlate: string;
|
|
2074
|
+
contactNumber: string;
|
|
2075
|
+
}>>>;
|
|
1938
2076
|
integrationInfo: z.ZodObject<{
|
|
1939
2077
|
partnerStoreId: z.ZodString;
|
|
1940
2078
|
partnerName: z.ZodEnum<["ZUS_COFFEE"]>;
|
|
@@ -2329,7 +2467,17 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
|
|
|
2329
2467
|
};
|
|
2330
2468
|
deliveryAt: string;
|
|
2331
2469
|
} | null | undefined;
|
|
2470
|
+
dineIn?: {
|
|
2471
|
+
pax?: number | null | undefined;
|
|
2472
|
+
tableNumber?: string | null | undefined;
|
|
2473
|
+
contactNumber: string;
|
|
2474
|
+
customerName: string;
|
|
2475
|
+
} | null | undefined;
|
|
2332
2476
|
billId?: string | null | undefined;
|
|
2477
|
+
driveThru?: {
|
|
2478
|
+
licensePlate: string;
|
|
2479
|
+
contactNumber: string;
|
|
2480
|
+
} | null | undefined;
|
|
2333
2481
|
eInvoiceUrl?: string | null | undefined;
|
|
2334
2482
|
_id: string;
|
|
2335
2483
|
price: {
|
|
@@ -2456,7 +2604,17 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
|
|
|
2456
2604
|
};
|
|
2457
2605
|
deliveryAt: string;
|
|
2458
2606
|
} | null | undefined;
|
|
2607
|
+
dineIn?: {
|
|
2608
|
+
pax?: number | null | undefined;
|
|
2609
|
+
tableNumber?: string | null | undefined;
|
|
2610
|
+
contactNumber: string;
|
|
2611
|
+
customerName: string;
|
|
2612
|
+
} | null | undefined;
|
|
2459
2613
|
billId?: string | null | undefined;
|
|
2614
|
+
driveThru?: {
|
|
2615
|
+
licensePlate: string;
|
|
2616
|
+
contactNumber: string;
|
|
2617
|
+
} | null | undefined;
|
|
2460
2618
|
eInvoiceUrl?: string | null | undefined;
|
|
2461
2619
|
_id: string;
|
|
2462
2620
|
price: {
|
|
@@ -2586,7 +2744,17 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
|
|
|
2586
2744
|
};
|
|
2587
2745
|
deliveryAt: string;
|
|
2588
2746
|
} | null | undefined;
|
|
2747
|
+
dineIn?: {
|
|
2748
|
+
pax?: number | null | undefined;
|
|
2749
|
+
tableNumber?: string | null | undefined;
|
|
2750
|
+
contactNumber: string;
|
|
2751
|
+
customerName: string;
|
|
2752
|
+
} | null | undefined;
|
|
2589
2753
|
billId?: string | null | undefined;
|
|
2754
|
+
driveThru?: {
|
|
2755
|
+
licensePlate: string;
|
|
2756
|
+
contactNumber: string;
|
|
2757
|
+
} | null | undefined;
|
|
2590
2758
|
eInvoiceUrl?: string | null | undefined;
|
|
2591
2759
|
_id: string;
|
|
2592
2760
|
price: {
|
|
@@ -2716,7 +2884,17 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
|
|
|
2716
2884
|
};
|
|
2717
2885
|
deliveryAt: string;
|
|
2718
2886
|
} | null | undefined;
|
|
2887
|
+
dineIn?: {
|
|
2888
|
+
pax?: number | null | undefined;
|
|
2889
|
+
tableNumber?: string | null | undefined;
|
|
2890
|
+
contactNumber: string;
|
|
2891
|
+
customerName: string;
|
|
2892
|
+
} | null | undefined;
|
|
2719
2893
|
billId?: string | null | undefined;
|
|
2894
|
+
driveThru?: {
|
|
2895
|
+
licensePlate: string;
|
|
2896
|
+
contactNumber: string;
|
|
2897
|
+
} | null | undefined;
|
|
2720
2898
|
eInvoiceUrl?: string | null | undefined;
|
|
2721
2899
|
_id: string;
|
|
2722
2900
|
price: {
|
|
@@ -891,6 +891,7 @@ export declare const GFItemV2: z.ZodObject<{
|
|
|
891
891
|
specialType: z.ZodNullable<z.ZodOptional<z.ZodEnum<["alcohol"]>>>;
|
|
892
892
|
barcode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
893
893
|
sellingTimeID: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
894
|
+
grabItemID: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
894
895
|
/** Currently Not Applicable */
|
|
895
896
|
advancedPricing: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
896
897
|
Delivery_OnDemand_GrabApp: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1060,6 +1061,7 @@ export declare const GFItemV2: z.ZodObject<{
|
|
|
1060
1061
|
description?: string | null | undefined;
|
|
1061
1062
|
price?: number | null | undefined;
|
|
1062
1063
|
photos?: string[] | null | undefined;
|
|
1064
|
+
grabItemID?: string | null | undefined;
|
|
1063
1065
|
barcode?: string | null | undefined;
|
|
1064
1066
|
advancedPricing?: {
|
|
1065
1067
|
Delivery_OnDemand_GrabApp?: number | null | undefined;
|
|
@@ -1111,6 +1113,7 @@ export declare const GFItemV2: z.ZodObject<{
|
|
|
1111
1113
|
description?: string | null | undefined;
|
|
1112
1114
|
price?: number | null | undefined;
|
|
1113
1115
|
photos?: string[] | null | undefined;
|
|
1116
|
+
grabItemID?: string | null | undefined;
|
|
1114
1117
|
barcode?: string | null | undefined;
|
|
1115
1118
|
advancedPricing?: {
|
|
1116
1119
|
Delivery_OnDemand_GrabApp?: number | null | undefined;
|
|
@@ -1175,6 +1178,7 @@ export declare const GFMenuCategoryV2: z.ZodObject<{
|
|
|
1175
1178
|
specialType: z.ZodNullable<z.ZodOptional<z.ZodEnum<["alcohol"]>>>;
|
|
1176
1179
|
barcode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1177
1180
|
sellingTimeID: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1181
|
+
grabItemID: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1178
1182
|
/** Currently Not Applicable */
|
|
1179
1183
|
advancedPricing: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1180
1184
|
Delivery_OnDemand_GrabApp: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1344,6 +1348,7 @@ export declare const GFMenuCategoryV2: z.ZodObject<{
|
|
|
1344
1348
|
description?: string | null | undefined;
|
|
1345
1349
|
price?: number | null | undefined;
|
|
1346
1350
|
photos?: string[] | null | undefined;
|
|
1351
|
+
grabItemID?: string | null | undefined;
|
|
1347
1352
|
barcode?: string | null | undefined;
|
|
1348
1353
|
advancedPricing?: {
|
|
1349
1354
|
Delivery_OnDemand_GrabApp?: number | null | undefined;
|
|
@@ -1395,6 +1400,7 @@ export declare const GFMenuCategoryV2: z.ZodObject<{
|
|
|
1395
1400
|
description?: string | null | undefined;
|
|
1396
1401
|
price?: number | null | undefined;
|
|
1397
1402
|
photos?: string[] | null | undefined;
|
|
1403
|
+
grabItemID?: string | null | undefined;
|
|
1398
1404
|
barcode?: string | null | undefined;
|
|
1399
1405
|
advancedPricing?: {
|
|
1400
1406
|
Delivery_OnDemand_GrabApp?: number | null | undefined;
|
|
@@ -1450,6 +1456,7 @@ export declare const GFMenuCategoryV2: z.ZodObject<{
|
|
|
1450
1456
|
description?: string | null | undefined;
|
|
1451
1457
|
price?: number | null | undefined;
|
|
1452
1458
|
photos?: string[] | null | undefined;
|
|
1459
|
+
grabItemID?: string | null | undefined;
|
|
1453
1460
|
barcode?: string | null | undefined;
|
|
1454
1461
|
advancedPricing?: {
|
|
1455
1462
|
Delivery_OnDemand_GrabApp?: number | null | undefined;
|
|
@@ -1508,6 +1515,7 @@ export declare const GFMenuCategoryV2: z.ZodObject<{
|
|
|
1508
1515
|
description?: string | null | undefined;
|
|
1509
1516
|
price?: number | null | undefined;
|
|
1510
1517
|
photos?: string[] | null | undefined;
|
|
1518
|
+
grabItemID?: string | null | undefined;
|
|
1511
1519
|
barcode?: string | null | undefined;
|
|
1512
1520
|
advancedPricing?: {
|
|
1513
1521
|
Delivery_OnDemand_GrabApp?: number | null | undefined;
|
|
@@ -1986,6 +1994,7 @@ declare const GFMenuV2: z.ZodObject<{
|
|
|
1986
1994
|
specialType: z.ZodNullable<z.ZodOptional<z.ZodEnum<["alcohol"]>>>;
|
|
1987
1995
|
barcode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1988
1996
|
sellingTimeID: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1997
|
+
grabItemID: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1989
1998
|
/** Currently Not Applicable */
|
|
1990
1999
|
advancedPricing: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1991
2000
|
Delivery_OnDemand_GrabApp: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -2155,6 +2164,7 @@ declare const GFMenuV2: z.ZodObject<{
|
|
|
2155
2164
|
description?: string | null | undefined;
|
|
2156
2165
|
price?: number | null | undefined;
|
|
2157
2166
|
photos?: string[] | null | undefined;
|
|
2167
|
+
grabItemID?: string | null | undefined;
|
|
2158
2168
|
barcode?: string | null | undefined;
|
|
2159
2169
|
advancedPricing?: {
|
|
2160
2170
|
Delivery_OnDemand_GrabApp?: number | null | undefined;
|
|
@@ -2206,6 +2216,7 @@ declare const GFMenuV2: z.ZodObject<{
|
|
|
2206
2216
|
description?: string | null | undefined;
|
|
2207
2217
|
price?: number | null | undefined;
|
|
2208
2218
|
photos?: string[] | null | undefined;
|
|
2219
|
+
grabItemID?: string | null | undefined;
|
|
2209
2220
|
barcode?: string | null | undefined;
|
|
2210
2221
|
advancedPricing?: {
|
|
2211
2222
|
Delivery_OnDemand_GrabApp?: number | null | undefined;
|
|
@@ -2261,6 +2272,7 @@ declare const GFMenuV2: z.ZodObject<{
|
|
|
2261
2272
|
description?: string | null | undefined;
|
|
2262
2273
|
price?: number | null | undefined;
|
|
2263
2274
|
photos?: string[] | null | undefined;
|
|
2275
|
+
grabItemID?: string | null | undefined;
|
|
2264
2276
|
barcode?: string | null | undefined;
|
|
2265
2277
|
advancedPricing?: {
|
|
2266
2278
|
Delivery_OnDemand_GrabApp?: number | null | undefined;
|
|
@@ -2319,6 +2331,7 @@ declare const GFMenuV2: z.ZodObject<{
|
|
|
2319
2331
|
description?: string | null | undefined;
|
|
2320
2332
|
price?: number | null | undefined;
|
|
2321
2333
|
photos?: string[] | null | undefined;
|
|
2334
|
+
grabItemID?: string | null | undefined;
|
|
2322
2335
|
barcode?: string | null | undefined;
|
|
2323
2336
|
advancedPricing?: {
|
|
2324
2337
|
Delivery_OnDemand_GrabApp?: number | null | undefined;
|
|
@@ -2386,6 +2399,7 @@ declare const GFMenuV2: z.ZodObject<{
|
|
|
2386
2399
|
description?: string | null | undefined;
|
|
2387
2400
|
price?: number | null | undefined;
|
|
2388
2401
|
photos?: string[] | null | undefined;
|
|
2402
|
+
grabItemID?: string | null | undefined;
|
|
2389
2403
|
barcode?: string | null | undefined;
|
|
2390
2404
|
advancedPricing?: {
|
|
2391
2405
|
Delivery_OnDemand_GrabApp?: number | null | undefined;
|
|
@@ -2510,6 +2524,7 @@ declare const GFMenuV2: z.ZodObject<{
|
|
|
2510
2524
|
description?: string | null | undefined;
|
|
2511
2525
|
price?: number | null | undefined;
|
|
2512
2526
|
photos?: string[] | null | undefined;
|
|
2527
|
+
grabItemID?: string | null | undefined;
|
|
2513
2528
|
barcode?: string | null | undefined;
|
|
2514
2529
|
advancedPricing?: {
|
|
2515
2530
|
Delivery_OnDemand_GrabApp?: number | null | undefined;
|