@feedmepos/mf-order-setting 0.0.27 → 0.0.28
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-AKvyDF3w.js → KioskDevicesView-BgXkmJ7v.js} +1 -1
- package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-Cx8VMyNB.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-DZT0BuUN.js} +2 -2
- package/dist/{KioskSettingView-equ5EIvU.js → KioskSettingView-DyX3Wv_2.js} +1 -1
- package/dist/{KioskView-CsE7BGtA.js → KioskView-Bgff7QPc.js} +4 -4
- package/dist/OrderSettingsView-C63s4uCD.js +74334 -0
- package/dist/{app-D-zQN9_E.js → app-Dp79Gu_F.js} +97 -25
- package/dist/app.js +1 -1
- package/dist/{dayjs.min-CWQSmujV.js → dayjs.min-B2ZkfNUH.js} +278 -267
- package/dist/frontend/mf-order/src/api/business/index.d.ts +5 -0
- package/dist/frontend/mf-order/src/api/effects/index.d.ts +3 -0
- package/dist/frontend/mf-order/src/api/index.d.ts +2 -0
- package/dist/frontend/mf-order/src/app.d.ts +72 -0
- package/dist/frontend/mf-order/src/main.d.ts +72 -0
- package/dist/frontend/mf-order/src/stores/business/index.d.ts +62 -0
- package/dist/frontend/mf-order/src/stores/menu/menu.d.ts +138 -125
- package/dist/frontend/mf-order/src/stores/restaurant/index.d.ts +81 -78
- package/dist/frontend/mf-order/src/views/all-orders/ReflowOrder.vue.d.ts +54 -52
- package/dist/frontend/mf-order/src/views/order-settings/delivery/integrated-delivery/ExternalSetting.vue.d.ts +4 -0
- package/dist/frontend/mf-order/src/views/order-settings/discount-rule/DiscountRuleSetting.vue.d.ts +2 -0
- package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{index-BwrMcIf2.js → index-DzQn92Tp.js} +2 -2
- package/dist/package/entity/booking/booking.do.d.ts +596 -551
- package/dist/package/entity/delivery/delivery.dto.d.ts +118 -109
- package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +342 -652
- package/dist/package/entity/incoming-order/incoming-order.do.d.ts +13778 -478
- package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +728 -1227
- package/dist/package/entity/incoming-order/incoming-order.enum.d.ts +1 -1
- package/dist/package/entity/index.d.ts +1 -0
- package/dist/package/entity/kiosk/kiosk.do.d.ts +32 -0
- package/dist/package/entity/kiosk/kiosk.dto.d.ts +14 -14
- package/dist/package/entity/kiosk/marketing/marketing.dto.d.ts +1469 -621
- package/dist/package/entity/member/member.dto.d.ts +14 -7
- package/dist/package/entity/order/effects/effect.dto.d.ts +154 -6
- package/dist/package/entity/order/order-item/order-item.dto.d.ts +87 -34
- package/dist/package/entity/order/order.do.d.ts +177 -572
- package/dist/package/entity/order/order.dto.d.ts +902 -1412
- package/dist/package/entity/order-platform/external/menu/external-menu.dto.d.ts +8 -0
- package/dist/package/entity/order-platform/external/order/external-order.do.d.ts +8 -0
- package/dist/package/entity/order-platform/external/order/external-order.dto.d.ts +22 -3
- package/dist/package/entity/order-platform/external/order/external-order.enum.d.ts +1 -1
- package/dist/package/entity/order-platform/external/setting/external-setting.do.d.ts +5 -0
- package/dist/package/entity/order-platform/external/setting/external-setting.dto.d.ts +5 -0
- package/dist/package/entity/order-platform/external/zus/zus-menu.dto.d.ts +192 -0
- package/dist/package/entity/order-platform/foodpanda/foodpanda-order.do.d.ts +104 -0
- package/dist/package/entity/order-platform/foodpanda/foodpanda-order.dto.d.ts +152 -109
- package/dist/package/entity/order-platform/foodpanda/foodpanda-settings.do.d.ts +3 -0
- package/dist/package/entity/order-platform/foodpanda/foodpanda-settings.dto.d.ts +3 -0
- package/dist/package/entity/order-platform/foodpanda/foodpanda.enum.d.ts +2 -0
- package/dist/package/entity/order-platform/grabfood/grabfood-order.do.d.ts +139 -109
- package/dist/package/entity/order-platform/grabfood/grabfood-settings.do.d.ts +3 -0
- package/dist/package/entity/order-platform/grabfood/grabfood.dto.d.ts +112 -2
- package/dist/package/entity/order-platform/order-platform.dto.d.ts +6 -3
- package/dist/package/entity/order-platform/shopeefood/shopeefood-order.do.d.ts +164 -109
- package/dist/package/entity/order-platform/shopeefood/shopeefood-order.dto.d.ts +22 -0
- package/dist/package/entity/order-platform/shopeefood/shopeefood-settings.do.d.ts +3 -0
- package/dist/package/entity/order-platform/shopeefood/shopeefood-settings.dto.d.ts +3 -0
- package/dist/queue.do-BUtcyDk3.js +125578 -0
- package/package.json +4 -3
- package/src/api/business/index.ts +16 -0
- package/src/api/effects/index.ts +7 -0
- package/src/api/index.ts +9 -1
- package/src/locales/en-US.json +24 -1
- package/src/locales/th-TH.json +24 -1
- package/src/locales/zh-CN.json +27 -1
- package/src/stores/business/index.ts +45 -0
- package/src/stores/restaurant/index.ts +3 -1
- package/src/views/order-settings/OrderSettingsView.vue +17 -5
- package/src/views/order-settings/discount-rule/DiscountRuleSetting.vue +434 -0
- package/dist/OrderSettingsView-BpLXyk_0.js +0 -49013
- package/dist/queue.do-F110q0_J.js +0 -100389
|
@@ -24,15 +24,18 @@ export declare const FdoBookingBase: z.ZodObject<{
|
|
|
24
24
|
attributeSettings: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
25
25
|
key: z.ZodString;
|
|
26
26
|
type: z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"date">, z.ZodLiteral<"boolean">]>;
|
|
27
|
-
entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"warehouse">]>;
|
|
27
|
+
entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"warehouse">]>;
|
|
28
|
+
options: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>>;
|
|
28
29
|
}, "strip", z.ZodTypeAny, {
|
|
30
|
+
options?: any[] | null | undefined;
|
|
29
31
|
type: "string" | "number" | "boolean" | "date";
|
|
30
32
|
key: string;
|
|
31
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
33
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
32
34
|
}, {
|
|
35
|
+
options?: any[] | null | undefined;
|
|
33
36
|
type: "string" | "number" | "boolean" | "date";
|
|
34
37
|
key: string;
|
|
35
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
38
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
36
39
|
}>, "many">>>;
|
|
37
40
|
pf_agent: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
38
41
|
_id: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -288,9 +291,10 @@ export declare const FdoBookingBase: z.ZodObject<{
|
|
|
288
291
|
expiredAt?: string | null | undefined;
|
|
289
292
|
agentId?: string | null | undefined;
|
|
290
293
|
attributeSettings?: {
|
|
294
|
+
options?: any[] | null | undefined;
|
|
291
295
|
type: "string" | "number" | "boolean" | "date";
|
|
292
296
|
key: string;
|
|
293
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
297
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
294
298
|
}[] | null | undefined;
|
|
295
299
|
pf_agent?: {
|
|
296
300
|
clickupId?: string | null | undefined;
|
|
@@ -354,9 +358,10 @@ export declare const FdoBookingBase: z.ZodObject<{
|
|
|
354
358
|
expiredAt?: string | null | undefined;
|
|
355
359
|
agentId?: string | null | undefined;
|
|
356
360
|
attributeSettings?: {
|
|
361
|
+
options?: any[] | null | undefined;
|
|
357
362
|
type: "string" | "number" | "boolean" | "date";
|
|
358
363
|
key: string;
|
|
359
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
364
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
360
365
|
}[] | null | undefined;
|
|
361
366
|
pf_agent?: {
|
|
362
367
|
clickupId?: string | null | undefined;
|
|
@@ -2086,6 +2091,31 @@ export declare const FdoBookingBase: z.ZodObject<{
|
|
|
2086
2091
|
}>>>;
|
|
2087
2092
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
2088
2093
|
}, "strip", z.ZodTypeAny, {
|
|
2094
|
+
pickup?: {
|
|
2095
|
+
catalogId?: string | null | undefined;
|
|
2096
|
+
autoAccept?: boolean | null | undefined;
|
|
2097
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
2098
|
+
offlinePaymentTypes?: {
|
|
2099
|
+
name: string;
|
|
2100
|
+
instruction: string;
|
|
2101
|
+
}[] | null | undefined;
|
|
2102
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
2103
|
+
ignoreStock?: boolean | null | undefined;
|
|
2104
|
+
pickupTime?: {
|
|
2105
|
+
day: {
|
|
2106
|
+
max: number;
|
|
2107
|
+
min: number;
|
|
2108
|
+
};
|
|
2109
|
+
} | null | undefined;
|
|
2110
|
+
pickupPointConfig?: {
|
|
2111
|
+
restaurantEnable: boolean;
|
|
2112
|
+
points: {
|
|
2113
|
+
name: string;
|
|
2114
|
+
address: string;
|
|
2115
|
+
coordinates: number[];
|
|
2116
|
+
}[];
|
|
2117
|
+
} | null | undefined;
|
|
2118
|
+
} | null | undefined;
|
|
2089
2119
|
channel?: string | null | undefined;
|
|
2090
2120
|
machineId?: string | null | undefined;
|
|
2091
2121
|
catalogId?: string | null | undefined;
|
|
@@ -2187,31 +2217,6 @@ export declare const FdoBookingBase: z.ZodObject<{
|
|
|
2187
2217
|
}[];
|
|
2188
2218
|
term: string;
|
|
2189
2219
|
} | null | undefined;
|
|
2190
|
-
pickup?: {
|
|
2191
|
-
catalogId?: string | null | undefined;
|
|
2192
|
-
autoAccept?: boolean | null | undefined;
|
|
2193
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
2194
|
-
offlinePaymentTypes?: {
|
|
2195
|
-
name: string;
|
|
2196
|
-
instruction: string;
|
|
2197
|
-
}[] | null | undefined;
|
|
2198
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
2199
|
-
ignoreStock?: boolean | null | undefined;
|
|
2200
|
-
pickupTime?: {
|
|
2201
|
-
day: {
|
|
2202
|
-
max: number;
|
|
2203
|
-
min: number;
|
|
2204
|
-
};
|
|
2205
|
-
} | null | undefined;
|
|
2206
|
-
pickupPointConfig?: {
|
|
2207
|
-
restaurantEnable: boolean;
|
|
2208
|
-
points: {
|
|
2209
|
-
name: string;
|
|
2210
|
-
address: string;
|
|
2211
|
-
coordinates: number[];
|
|
2212
|
-
}[];
|
|
2213
|
-
} | null | undefined;
|
|
2214
|
-
} | null | undefined;
|
|
2215
2220
|
dineIn?: {
|
|
2216
2221
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
2217
2222
|
offlinePaymentTypes?: {
|
|
@@ -2230,9 +2235,10 @@ export declare const FdoBookingBase: z.ZodObject<{
|
|
|
2230
2235
|
expiredAt?: string | null | undefined;
|
|
2231
2236
|
agentId?: string | null | undefined;
|
|
2232
2237
|
attributeSettings?: {
|
|
2238
|
+
options?: any[] | null | undefined;
|
|
2233
2239
|
type: "string" | "number" | "boolean" | "date";
|
|
2234
2240
|
key: string;
|
|
2235
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
2241
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
2236
2242
|
}[] | null | undefined;
|
|
2237
2243
|
pf_agent?: {
|
|
2238
2244
|
clickupId?: string | null | undefined;
|
|
@@ -2464,6 +2470,31 @@ export declare const FdoBookingBase: z.ZodObject<{
|
|
|
2464
2470
|
regNo: string;
|
|
2465
2471
|
};
|
|
2466
2472
|
}, {
|
|
2473
|
+
pickup?: {
|
|
2474
|
+
catalogId?: string | null | undefined;
|
|
2475
|
+
autoAccept?: boolean | null | undefined;
|
|
2476
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
2477
|
+
offlinePaymentTypes?: {
|
|
2478
|
+
name: string;
|
|
2479
|
+
instruction: string;
|
|
2480
|
+
}[] | null | undefined;
|
|
2481
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
2482
|
+
ignoreStock?: boolean | null | undefined;
|
|
2483
|
+
pickupTime?: {
|
|
2484
|
+
day: {
|
|
2485
|
+
max: number;
|
|
2486
|
+
min: number;
|
|
2487
|
+
};
|
|
2488
|
+
} | null | undefined;
|
|
2489
|
+
pickupPointConfig?: {
|
|
2490
|
+
restaurantEnable: boolean;
|
|
2491
|
+
points: {
|
|
2492
|
+
name: string;
|
|
2493
|
+
address: string;
|
|
2494
|
+
coordinates: number[];
|
|
2495
|
+
}[];
|
|
2496
|
+
} | null | undefined;
|
|
2497
|
+
} | null | undefined;
|
|
2467
2498
|
channel?: string | null | undefined;
|
|
2468
2499
|
machineId?: string | null | undefined;
|
|
2469
2500
|
catalogId?: string | null | undefined;
|
|
@@ -2565,31 +2596,6 @@ export declare const FdoBookingBase: z.ZodObject<{
|
|
|
2565
2596
|
}[];
|
|
2566
2597
|
term: string;
|
|
2567
2598
|
} | null | undefined;
|
|
2568
|
-
pickup?: {
|
|
2569
|
-
catalogId?: string | null | undefined;
|
|
2570
|
-
autoAccept?: boolean | null | undefined;
|
|
2571
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
2572
|
-
offlinePaymentTypes?: {
|
|
2573
|
-
name: string;
|
|
2574
|
-
instruction: string;
|
|
2575
|
-
}[] | null | undefined;
|
|
2576
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
2577
|
-
ignoreStock?: boolean | null | undefined;
|
|
2578
|
-
pickupTime?: {
|
|
2579
|
-
day: {
|
|
2580
|
-
max: number;
|
|
2581
|
-
min: number;
|
|
2582
|
-
};
|
|
2583
|
-
} | null | undefined;
|
|
2584
|
-
pickupPointConfig?: {
|
|
2585
|
-
restaurantEnable: boolean;
|
|
2586
|
-
points: {
|
|
2587
|
-
name: string;
|
|
2588
|
-
address: string;
|
|
2589
|
-
coordinates: number[];
|
|
2590
|
-
}[];
|
|
2591
|
-
} | null | undefined;
|
|
2592
|
-
} | null | undefined;
|
|
2593
2599
|
dineIn?: {
|
|
2594
2600
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
2595
2601
|
offlinePaymentTypes?: {
|
|
@@ -2608,9 +2614,10 @@ export declare const FdoBookingBase: z.ZodObject<{
|
|
|
2608
2614
|
expiredAt?: string | null | undefined;
|
|
2609
2615
|
agentId?: string | null | undefined;
|
|
2610
2616
|
attributeSettings?: {
|
|
2617
|
+
options?: any[] | null | undefined;
|
|
2611
2618
|
type: "string" | "number" | "boolean" | "date";
|
|
2612
2619
|
key: string;
|
|
2613
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
2620
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
2614
2621
|
}[] | null | undefined;
|
|
2615
2622
|
pf_agent?: {
|
|
2616
2623
|
clickupId?: string | null | undefined;
|
|
@@ -2913,6 +2920,31 @@ export declare const FdoBookingBase: z.ZodObject<{
|
|
|
2913
2920
|
userId?: string | undefined;
|
|
2914
2921
|
rejectReason?: string | undefined;
|
|
2915
2922
|
pf_restaurant?: {
|
|
2923
|
+
pickup?: {
|
|
2924
|
+
catalogId?: string | null | undefined;
|
|
2925
|
+
autoAccept?: boolean | null | undefined;
|
|
2926
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
2927
|
+
offlinePaymentTypes?: {
|
|
2928
|
+
name: string;
|
|
2929
|
+
instruction: string;
|
|
2930
|
+
}[] | null | undefined;
|
|
2931
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
2932
|
+
ignoreStock?: boolean | null | undefined;
|
|
2933
|
+
pickupTime?: {
|
|
2934
|
+
day: {
|
|
2935
|
+
max: number;
|
|
2936
|
+
min: number;
|
|
2937
|
+
};
|
|
2938
|
+
} | null | undefined;
|
|
2939
|
+
pickupPointConfig?: {
|
|
2940
|
+
restaurantEnable: boolean;
|
|
2941
|
+
points: {
|
|
2942
|
+
name: string;
|
|
2943
|
+
address: string;
|
|
2944
|
+
coordinates: number[];
|
|
2945
|
+
}[];
|
|
2946
|
+
} | null | undefined;
|
|
2947
|
+
} | null | undefined;
|
|
2916
2948
|
channel?: string | null | undefined;
|
|
2917
2949
|
machineId?: string | null | undefined;
|
|
2918
2950
|
catalogId?: string | null | undefined;
|
|
@@ -3014,31 +3046,6 @@ export declare const FdoBookingBase: z.ZodObject<{
|
|
|
3014
3046
|
}[];
|
|
3015
3047
|
term: string;
|
|
3016
3048
|
} | null | undefined;
|
|
3017
|
-
pickup?: {
|
|
3018
|
-
catalogId?: string | null | undefined;
|
|
3019
|
-
autoAccept?: boolean | null | undefined;
|
|
3020
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
3021
|
-
offlinePaymentTypes?: {
|
|
3022
|
-
name: string;
|
|
3023
|
-
instruction: string;
|
|
3024
|
-
}[] | null | undefined;
|
|
3025
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
3026
|
-
ignoreStock?: boolean | null | undefined;
|
|
3027
|
-
pickupTime?: {
|
|
3028
|
-
day: {
|
|
3029
|
-
max: number;
|
|
3030
|
-
min: number;
|
|
3031
|
-
};
|
|
3032
|
-
} | null | undefined;
|
|
3033
|
-
pickupPointConfig?: {
|
|
3034
|
-
restaurantEnable: boolean;
|
|
3035
|
-
points: {
|
|
3036
|
-
name: string;
|
|
3037
|
-
address: string;
|
|
3038
|
-
coordinates: number[];
|
|
3039
|
-
}[];
|
|
3040
|
-
} | null | undefined;
|
|
3041
|
-
} | null | undefined;
|
|
3042
3049
|
dineIn?: {
|
|
3043
3050
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
3044
3051
|
offlinePaymentTypes?: {
|
|
@@ -3057,9 +3064,10 @@ export declare const FdoBookingBase: z.ZodObject<{
|
|
|
3057
3064
|
expiredAt?: string | null | undefined;
|
|
3058
3065
|
agentId?: string | null | undefined;
|
|
3059
3066
|
attributeSettings?: {
|
|
3067
|
+
options?: any[] | null | undefined;
|
|
3060
3068
|
type: "string" | "number" | "boolean" | "date";
|
|
3061
3069
|
key: string;
|
|
3062
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
3070
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
3063
3071
|
}[] | null | undefined;
|
|
3064
3072
|
pf_agent?: {
|
|
3065
3073
|
clickupId?: string | null | undefined;
|
|
@@ -3318,6 +3326,31 @@ export declare const FdoBookingBase: z.ZodObject<{
|
|
|
3318
3326
|
userId?: string | undefined;
|
|
3319
3327
|
rejectReason?: string | undefined;
|
|
3320
3328
|
pf_restaurant?: {
|
|
3329
|
+
pickup?: {
|
|
3330
|
+
catalogId?: string | null | undefined;
|
|
3331
|
+
autoAccept?: boolean | null | undefined;
|
|
3332
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
3333
|
+
offlinePaymentTypes?: {
|
|
3334
|
+
name: string;
|
|
3335
|
+
instruction: string;
|
|
3336
|
+
}[] | null | undefined;
|
|
3337
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
3338
|
+
ignoreStock?: boolean | null | undefined;
|
|
3339
|
+
pickupTime?: {
|
|
3340
|
+
day: {
|
|
3341
|
+
max: number;
|
|
3342
|
+
min: number;
|
|
3343
|
+
};
|
|
3344
|
+
} | null | undefined;
|
|
3345
|
+
pickupPointConfig?: {
|
|
3346
|
+
restaurantEnable: boolean;
|
|
3347
|
+
points: {
|
|
3348
|
+
name: string;
|
|
3349
|
+
address: string;
|
|
3350
|
+
coordinates: number[];
|
|
3351
|
+
}[];
|
|
3352
|
+
} | null | undefined;
|
|
3353
|
+
} | null | undefined;
|
|
3321
3354
|
channel?: string | null | undefined;
|
|
3322
3355
|
machineId?: string | null | undefined;
|
|
3323
3356
|
catalogId?: string | null | undefined;
|
|
@@ -3419,31 +3452,6 @@ export declare const FdoBookingBase: z.ZodObject<{
|
|
|
3419
3452
|
}[];
|
|
3420
3453
|
term: string;
|
|
3421
3454
|
} | null | undefined;
|
|
3422
|
-
pickup?: {
|
|
3423
|
-
catalogId?: string | null | undefined;
|
|
3424
|
-
autoAccept?: boolean | null | undefined;
|
|
3425
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
3426
|
-
offlinePaymentTypes?: {
|
|
3427
|
-
name: string;
|
|
3428
|
-
instruction: string;
|
|
3429
|
-
}[] | null | undefined;
|
|
3430
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
3431
|
-
ignoreStock?: boolean | null | undefined;
|
|
3432
|
-
pickupTime?: {
|
|
3433
|
-
day: {
|
|
3434
|
-
max: number;
|
|
3435
|
-
min: number;
|
|
3436
|
-
};
|
|
3437
|
-
} | null | undefined;
|
|
3438
|
-
pickupPointConfig?: {
|
|
3439
|
-
restaurantEnable: boolean;
|
|
3440
|
-
points: {
|
|
3441
|
-
name: string;
|
|
3442
|
-
address: string;
|
|
3443
|
-
coordinates: number[];
|
|
3444
|
-
}[];
|
|
3445
|
-
} | null | undefined;
|
|
3446
|
-
} | null | undefined;
|
|
3447
3455
|
dineIn?: {
|
|
3448
3456
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
3449
3457
|
offlinePaymentTypes?: {
|
|
@@ -3462,9 +3470,10 @@ export declare const FdoBookingBase: z.ZodObject<{
|
|
|
3462
3470
|
expiredAt?: string | null | undefined;
|
|
3463
3471
|
agentId?: string | null | undefined;
|
|
3464
3472
|
attributeSettings?: {
|
|
3473
|
+
options?: any[] | null | undefined;
|
|
3465
3474
|
type: "string" | "number" | "boolean" | "date";
|
|
3466
3475
|
key: string;
|
|
3467
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
3476
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
3468
3477
|
}[] | null | undefined;
|
|
3469
3478
|
pf_agent?: {
|
|
3470
3479
|
clickupId?: string | null | undefined;
|
|
@@ -3744,15 +3753,18 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
|
|
|
3744
3753
|
attributeSettings: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3745
3754
|
key: z.ZodString;
|
|
3746
3755
|
type: z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"date">, z.ZodLiteral<"boolean">]>;
|
|
3747
|
-
entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"warehouse">]>;
|
|
3756
|
+
entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"warehouse">]>;
|
|
3757
|
+
options: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>>;
|
|
3748
3758
|
}, "strip", z.ZodTypeAny, {
|
|
3759
|
+
options?: any[] | null | undefined;
|
|
3749
3760
|
type: "string" | "number" | "boolean" | "date";
|
|
3750
3761
|
key: string;
|
|
3751
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
3762
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
3752
3763
|
}, {
|
|
3764
|
+
options?: any[] | null | undefined;
|
|
3753
3765
|
type: "string" | "number" | "boolean" | "date";
|
|
3754
3766
|
key: string;
|
|
3755
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
3767
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
3756
3768
|
}>, "many">>>;
|
|
3757
3769
|
pf_agent: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
3758
3770
|
_id: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -4008,9 +4020,10 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
|
|
|
4008
4020
|
expiredAt?: string | null | undefined;
|
|
4009
4021
|
agentId?: string | null | undefined;
|
|
4010
4022
|
attributeSettings?: {
|
|
4023
|
+
options?: any[] | null | undefined;
|
|
4011
4024
|
type: "string" | "number" | "boolean" | "date";
|
|
4012
4025
|
key: string;
|
|
4013
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
4026
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
4014
4027
|
}[] | null | undefined;
|
|
4015
4028
|
pf_agent?: {
|
|
4016
4029
|
clickupId?: string | null | undefined;
|
|
@@ -4074,9 +4087,10 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
|
|
|
4074
4087
|
expiredAt?: string | null | undefined;
|
|
4075
4088
|
agentId?: string | null | undefined;
|
|
4076
4089
|
attributeSettings?: {
|
|
4090
|
+
options?: any[] | null | undefined;
|
|
4077
4091
|
type: "string" | "number" | "boolean" | "date";
|
|
4078
4092
|
key: string;
|
|
4079
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
4093
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
4080
4094
|
}[] | null | undefined;
|
|
4081
4095
|
pf_agent?: {
|
|
4082
4096
|
clickupId?: string | null | undefined;
|
|
@@ -5806,6 +5820,31 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
|
|
|
5806
5820
|
}>>>;
|
|
5807
5821
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
5808
5822
|
}, "strip", z.ZodTypeAny, {
|
|
5823
|
+
pickup?: {
|
|
5824
|
+
catalogId?: string | null | undefined;
|
|
5825
|
+
autoAccept?: boolean | null | undefined;
|
|
5826
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
5827
|
+
offlinePaymentTypes?: {
|
|
5828
|
+
name: string;
|
|
5829
|
+
instruction: string;
|
|
5830
|
+
}[] | null | undefined;
|
|
5831
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
5832
|
+
ignoreStock?: boolean | null | undefined;
|
|
5833
|
+
pickupTime?: {
|
|
5834
|
+
day: {
|
|
5835
|
+
max: number;
|
|
5836
|
+
min: number;
|
|
5837
|
+
};
|
|
5838
|
+
} | null | undefined;
|
|
5839
|
+
pickupPointConfig?: {
|
|
5840
|
+
restaurantEnable: boolean;
|
|
5841
|
+
points: {
|
|
5842
|
+
name: string;
|
|
5843
|
+
address: string;
|
|
5844
|
+
coordinates: number[];
|
|
5845
|
+
}[];
|
|
5846
|
+
} | null | undefined;
|
|
5847
|
+
} | null | undefined;
|
|
5809
5848
|
channel?: string | null | undefined;
|
|
5810
5849
|
machineId?: string | null | undefined;
|
|
5811
5850
|
catalogId?: string | null | undefined;
|
|
@@ -5907,31 +5946,6 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
|
|
|
5907
5946
|
}[];
|
|
5908
5947
|
term: string;
|
|
5909
5948
|
} | null | undefined;
|
|
5910
|
-
pickup?: {
|
|
5911
|
-
catalogId?: string | null | undefined;
|
|
5912
|
-
autoAccept?: boolean | null | undefined;
|
|
5913
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
5914
|
-
offlinePaymentTypes?: {
|
|
5915
|
-
name: string;
|
|
5916
|
-
instruction: string;
|
|
5917
|
-
}[] | null | undefined;
|
|
5918
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
5919
|
-
ignoreStock?: boolean | null | undefined;
|
|
5920
|
-
pickupTime?: {
|
|
5921
|
-
day: {
|
|
5922
|
-
max: number;
|
|
5923
|
-
min: number;
|
|
5924
|
-
};
|
|
5925
|
-
} | null | undefined;
|
|
5926
|
-
pickupPointConfig?: {
|
|
5927
|
-
restaurantEnable: boolean;
|
|
5928
|
-
points: {
|
|
5929
|
-
name: string;
|
|
5930
|
-
address: string;
|
|
5931
|
-
coordinates: number[];
|
|
5932
|
-
}[];
|
|
5933
|
-
} | null | undefined;
|
|
5934
|
-
} | null | undefined;
|
|
5935
5949
|
dineIn?: {
|
|
5936
5950
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
5937
5951
|
offlinePaymentTypes?: {
|
|
@@ -5950,9 +5964,10 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
|
|
|
5950
5964
|
expiredAt?: string | null | undefined;
|
|
5951
5965
|
agentId?: string | null | undefined;
|
|
5952
5966
|
attributeSettings?: {
|
|
5967
|
+
options?: any[] | null | undefined;
|
|
5953
5968
|
type: "string" | "number" | "boolean" | "date";
|
|
5954
5969
|
key: string;
|
|
5955
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
5970
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
5956
5971
|
}[] | null | undefined;
|
|
5957
5972
|
pf_agent?: {
|
|
5958
5973
|
clickupId?: string | null | undefined;
|
|
@@ -6184,6 +6199,31 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
|
|
|
6184
6199
|
regNo: string;
|
|
6185
6200
|
};
|
|
6186
6201
|
}, {
|
|
6202
|
+
pickup?: {
|
|
6203
|
+
catalogId?: string | null | undefined;
|
|
6204
|
+
autoAccept?: boolean | null | undefined;
|
|
6205
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
6206
|
+
offlinePaymentTypes?: {
|
|
6207
|
+
name: string;
|
|
6208
|
+
instruction: string;
|
|
6209
|
+
}[] | null | undefined;
|
|
6210
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
6211
|
+
ignoreStock?: boolean | null | undefined;
|
|
6212
|
+
pickupTime?: {
|
|
6213
|
+
day: {
|
|
6214
|
+
max: number;
|
|
6215
|
+
min: number;
|
|
6216
|
+
};
|
|
6217
|
+
} | null | undefined;
|
|
6218
|
+
pickupPointConfig?: {
|
|
6219
|
+
restaurantEnable: boolean;
|
|
6220
|
+
points: {
|
|
6221
|
+
name: string;
|
|
6222
|
+
address: string;
|
|
6223
|
+
coordinates: number[];
|
|
6224
|
+
}[];
|
|
6225
|
+
} | null | undefined;
|
|
6226
|
+
} | null | undefined;
|
|
6187
6227
|
channel?: string | null | undefined;
|
|
6188
6228
|
machineId?: string | null | undefined;
|
|
6189
6229
|
catalogId?: string | null | undefined;
|
|
@@ -6285,31 +6325,6 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
|
|
|
6285
6325
|
}[];
|
|
6286
6326
|
term: string;
|
|
6287
6327
|
} | null | undefined;
|
|
6288
|
-
pickup?: {
|
|
6289
|
-
catalogId?: string | null | undefined;
|
|
6290
|
-
autoAccept?: boolean | null | undefined;
|
|
6291
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
6292
|
-
offlinePaymentTypes?: {
|
|
6293
|
-
name: string;
|
|
6294
|
-
instruction: string;
|
|
6295
|
-
}[] | null | undefined;
|
|
6296
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
6297
|
-
ignoreStock?: boolean | null | undefined;
|
|
6298
|
-
pickupTime?: {
|
|
6299
|
-
day: {
|
|
6300
|
-
max: number;
|
|
6301
|
-
min: number;
|
|
6302
|
-
};
|
|
6303
|
-
} | null | undefined;
|
|
6304
|
-
pickupPointConfig?: {
|
|
6305
|
-
restaurantEnable: boolean;
|
|
6306
|
-
points: {
|
|
6307
|
-
name: string;
|
|
6308
|
-
address: string;
|
|
6309
|
-
coordinates: number[];
|
|
6310
|
-
}[];
|
|
6311
|
-
} | null | undefined;
|
|
6312
|
-
} | null | undefined;
|
|
6313
6328
|
dineIn?: {
|
|
6314
6329
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
6315
6330
|
offlinePaymentTypes?: {
|
|
@@ -6328,9 +6343,10 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
|
|
|
6328
6343
|
expiredAt?: string | null | undefined;
|
|
6329
6344
|
agentId?: string | null | undefined;
|
|
6330
6345
|
attributeSettings?: {
|
|
6346
|
+
options?: any[] | null | undefined;
|
|
6331
6347
|
type: "string" | "number" | "boolean" | "date";
|
|
6332
6348
|
key: string;
|
|
6333
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
6349
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
6334
6350
|
}[] | null | undefined;
|
|
6335
6351
|
pf_agent?: {
|
|
6336
6352
|
clickupId?: string | null | undefined;
|
|
@@ -6635,6 +6651,31 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
|
|
|
6635
6651
|
userId?: string | undefined;
|
|
6636
6652
|
rejectReason?: string | undefined;
|
|
6637
6653
|
pf_restaurant?: {
|
|
6654
|
+
pickup?: {
|
|
6655
|
+
catalogId?: string | null | undefined;
|
|
6656
|
+
autoAccept?: boolean | null | undefined;
|
|
6657
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
6658
|
+
offlinePaymentTypes?: {
|
|
6659
|
+
name: string;
|
|
6660
|
+
instruction: string;
|
|
6661
|
+
}[] | null | undefined;
|
|
6662
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
6663
|
+
ignoreStock?: boolean | null | undefined;
|
|
6664
|
+
pickupTime?: {
|
|
6665
|
+
day: {
|
|
6666
|
+
max: number;
|
|
6667
|
+
min: number;
|
|
6668
|
+
};
|
|
6669
|
+
} | null | undefined;
|
|
6670
|
+
pickupPointConfig?: {
|
|
6671
|
+
restaurantEnable: boolean;
|
|
6672
|
+
points: {
|
|
6673
|
+
name: string;
|
|
6674
|
+
address: string;
|
|
6675
|
+
coordinates: number[];
|
|
6676
|
+
}[];
|
|
6677
|
+
} | null | undefined;
|
|
6678
|
+
} | null | undefined;
|
|
6638
6679
|
channel?: string | null | undefined;
|
|
6639
6680
|
machineId?: string | null | undefined;
|
|
6640
6681
|
catalogId?: string | null | undefined;
|
|
@@ -6736,31 +6777,6 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
|
|
|
6736
6777
|
}[];
|
|
6737
6778
|
term: string;
|
|
6738
6779
|
} | null | undefined;
|
|
6739
|
-
pickup?: {
|
|
6740
|
-
catalogId?: string | null | undefined;
|
|
6741
|
-
autoAccept?: boolean | null | undefined;
|
|
6742
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
6743
|
-
offlinePaymentTypes?: {
|
|
6744
|
-
name: string;
|
|
6745
|
-
instruction: string;
|
|
6746
|
-
}[] | null | undefined;
|
|
6747
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
6748
|
-
ignoreStock?: boolean | null | undefined;
|
|
6749
|
-
pickupTime?: {
|
|
6750
|
-
day: {
|
|
6751
|
-
max: number;
|
|
6752
|
-
min: number;
|
|
6753
|
-
};
|
|
6754
|
-
} | null | undefined;
|
|
6755
|
-
pickupPointConfig?: {
|
|
6756
|
-
restaurantEnable: boolean;
|
|
6757
|
-
points: {
|
|
6758
|
-
name: string;
|
|
6759
|
-
address: string;
|
|
6760
|
-
coordinates: number[];
|
|
6761
|
-
}[];
|
|
6762
|
-
} | null | undefined;
|
|
6763
|
-
} | null | undefined;
|
|
6764
6780
|
dineIn?: {
|
|
6765
6781
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
6766
6782
|
offlinePaymentTypes?: {
|
|
@@ -6779,9 +6795,10 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
|
|
|
6779
6795
|
expiredAt?: string | null | undefined;
|
|
6780
6796
|
agentId?: string | null | undefined;
|
|
6781
6797
|
attributeSettings?: {
|
|
6798
|
+
options?: any[] | null | undefined;
|
|
6782
6799
|
type: "string" | "number" | "boolean" | "date";
|
|
6783
6800
|
key: string;
|
|
6784
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
6801
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
6785
6802
|
}[] | null | undefined;
|
|
6786
6803
|
pf_agent?: {
|
|
6787
6804
|
clickupId?: string | null | undefined;
|
|
@@ -7040,6 +7057,31 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
|
|
|
7040
7057
|
userId?: string | undefined;
|
|
7041
7058
|
rejectReason?: string | undefined;
|
|
7042
7059
|
pf_restaurant?: {
|
|
7060
|
+
pickup?: {
|
|
7061
|
+
catalogId?: string | null | undefined;
|
|
7062
|
+
autoAccept?: boolean | null | undefined;
|
|
7063
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
7064
|
+
offlinePaymentTypes?: {
|
|
7065
|
+
name: string;
|
|
7066
|
+
instruction: string;
|
|
7067
|
+
}[] | null | undefined;
|
|
7068
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
7069
|
+
ignoreStock?: boolean | null | undefined;
|
|
7070
|
+
pickupTime?: {
|
|
7071
|
+
day: {
|
|
7072
|
+
max: number;
|
|
7073
|
+
min: number;
|
|
7074
|
+
};
|
|
7075
|
+
} | null | undefined;
|
|
7076
|
+
pickupPointConfig?: {
|
|
7077
|
+
restaurantEnable: boolean;
|
|
7078
|
+
points: {
|
|
7079
|
+
name: string;
|
|
7080
|
+
address: string;
|
|
7081
|
+
coordinates: number[];
|
|
7082
|
+
}[];
|
|
7083
|
+
} | null | undefined;
|
|
7084
|
+
} | null | undefined;
|
|
7043
7085
|
channel?: string | null | undefined;
|
|
7044
7086
|
machineId?: string | null | undefined;
|
|
7045
7087
|
catalogId?: string | null | undefined;
|
|
@@ -7141,31 +7183,6 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
|
|
|
7141
7183
|
}[];
|
|
7142
7184
|
term: string;
|
|
7143
7185
|
} | null | undefined;
|
|
7144
|
-
pickup?: {
|
|
7145
|
-
catalogId?: string | null | undefined;
|
|
7146
|
-
autoAccept?: boolean | null | undefined;
|
|
7147
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
7148
|
-
offlinePaymentTypes?: {
|
|
7149
|
-
name: string;
|
|
7150
|
-
instruction: string;
|
|
7151
|
-
}[] | null | undefined;
|
|
7152
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
7153
|
-
ignoreStock?: boolean | null | undefined;
|
|
7154
|
-
pickupTime?: {
|
|
7155
|
-
day: {
|
|
7156
|
-
max: number;
|
|
7157
|
-
min: number;
|
|
7158
|
-
};
|
|
7159
|
-
} | null | undefined;
|
|
7160
|
-
pickupPointConfig?: {
|
|
7161
|
-
restaurantEnable: boolean;
|
|
7162
|
-
points: {
|
|
7163
|
-
name: string;
|
|
7164
|
-
address: string;
|
|
7165
|
-
coordinates: number[];
|
|
7166
|
-
}[];
|
|
7167
|
-
} | null | undefined;
|
|
7168
|
-
} | null | undefined;
|
|
7169
7186
|
dineIn?: {
|
|
7170
7187
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
7171
7188
|
offlinePaymentTypes?: {
|
|
@@ -7184,9 +7201,10 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
|
|
|
7184
7201
|
expiredAt?: string | null | undefined;
|
|
7185
7202
|
agentId?: string | null | undefined;
|
|
7186
7203
|
attributeSettings?: {
|
|
7204
|
+
options?: any[] | null | undefined;
|
|
7187
7205
|
type: "string" | "number" | "boolean" | "date";
|
|
7188
7206
|
key: string;
|
|
7189
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
7207
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
7190
7208
|
}[] | null | undefined;
|
|
7191
7209
|
pf_agent?: {
|
|
7192
7210
|
clickupId?: string | null | undefined;
|
|
@@ -7467,15 +7485,18 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
|
|
|
7467
7485
|
attributeSettings: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7468
7486
|
key: z.ZodString;
|
|
7469
7487
|
type: z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"date">, z.ZodLiteral<"boolean">]>;
|
|
7470
|
-
entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"warehouse">]>;
|
|
7488
|
+
entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"warehouse">]>;
|
|
7489
|
+
options: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>>;
|
|
7471
7490
|
}, "strip", z.ZodTypeAny, {
|
|
7491
|
+
options?: any[] | null | undefined;
|
|
7472
7492
|
type: "string" | "number" | "boolean" | "date";
|
|
7473
7493
|
key: string;
|
|
7474
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
7494
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
7475
7495
|
}, {
|
|
7496
|
+
options?: any[] | null | undefined;
|
|
7476
7497
|
type: "string" | "number" | "boolean" | "date";
|
|
7477
7498
|
key: string;
|
|
7478
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
7499
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
7479
7500
|
}>, "many">>>;
|
|
7480
7501
|
pf_agent: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
7481
7502
|
_id: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -7731,9 +7752,10 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
|
|
|
7731
7752
|
expiredAt?: string | null | undefined;
|
|
7732
7753
|
agentId?: string | null | undefined;
|
|
7733
7754
|
attributeSettings?: {
|
|
7755
|
+
options?: any[] | null | undefined;
|
|
7734
7756
|
type: "string" | "number" | "boolean" | "date";
|
|
7735
7757
|
key: string;
|
|
7736
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
7758
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
7737
7759
|
}[] | null | undefined;
|
|
7738
7760
|
pf_agent?: {
|
|
7739
7761
|
clickupId?: string | null | undefined;
|
|
@@ -7797,9 +7819,10 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
|
|
|
7797
7819
|
expiredAt?: string | null | undefined;
|
|
7798
7820
|
agentId?: string | null | undefined;
|
|
7799
7821
|
attributeSettings?: {
|
|
7822
|
+
options?: any[] | null | undefined;
|
|
7800
7823
|
type: "string" | "number" | "boolean" | "date";
|
|
7801
7824
|
key: string;
|
|
7802
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
7825
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
7803
7826
|
}[] | null | undefined;
|
|
7804
7827
|
pf_agent?: {
|
|
7805
7828
|
clickupId?: string | null | undefined;
|
|
@@ -9529,6 +9552,31 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
|
|
|
9529
9552
|
}>>>;
|
|
9530
9553
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
9531
9554
|
}, "strip", z.ZodTypeAny, {
|
|
9555
|
+
pickup?: {
|
|
9556
|
+
catalogId?: string | null | undefined;
|
|
9557
|
+
autoAccept?: boolean | null | undefined;
|
|
9558
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
9559
|
+
offlinePaymentTypes?: {
|
|
9560
|
+
name: string;
|
|
9561
|
+
instruction: string;
|
|
9562
|
+
}[] | null | undefined;
|
|
9563
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
9564
|
+
ignoreStock?: boolean | null | undefined;
|
|
9565
|
+
pickupTime?: {
|
|
9566
|
+
day: {
|
|
9567
|
+
max: number;
|
|
9568
|
+
min: number;
|
|
9569
|
+
};
|
|
9570
|
+
} | null | undefined;
|
|
9571
|
+
pickupPointConfig?: {
|
|
9572
|
+
restaurantEnable: boolean;
|
|
9573
|
+
points: {
|
|
9574
|
+
name: string;
|
|
9575
|
+
address: string;
|
|
9576
|
+
coordinates: number[];
|
|
9577
|
+
}[];
|
|
9578
|
+
} | null | undefined;
|
|
9579
|
+
} | null | undefined;
|
|
9532
9580
|
channel?: string | null | undefined;
|
|
9533
9581
|
machineId?: string | null | undefined;
|
|
9534
9582
|
catalogId?: string | null | undefined;
|
|
@@ -9630,31 +9678,6 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
|
|
|
9630
9678
|
}[];
|
|
9631
9679
|
term: string;
|
|
9632
9680
|
} | null | undefined;
|
|
9633
|
-
pickup?: {
|
|
9634
|
-
catalogId?: string | null | undefined;
|
|
9635
|
-
autoAccept?: boolean | null | undefined;
|
|
9636
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
9637
|
-
offlinePaymentTypes?: {
|
|
9638
|
-
name: string;
|
|
9639
|
-
instruction: string;
|
|
9640
|
-
}[] | null | undefined;
|
|
9641
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
9642
|
-
ignoreStock?: boolean | null | undefined;
|
|
9643
|
-
pickupTime?: {
|
|
9644
|
-
day: {
|
|
9645
|
-
max: number;
|
|
9646
|
-
min: number;
|
|
9647
|
-
};
|
|
9648
|
-
} | null | undefined;
|
|
9649
|
-
pickupPointConfig?: {
|
|
9650
|
-
restaurantEnable: boolean;
|
|
9651
|
-
points: {
|
|
9652
|
-
name: string;
|
|
9653
|
-
address: string;
|
|
9654
|
-
coordinates: number[];
|
|
9655
|
-
}[];
|
|
9656
|
-
} | null | undefined;
|
|
9657
|
-
} | null | undefined;
|
|
9658
9681
|
dineIn?: {
|
|
9659
9682
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
9660
9683
|
offlinePaymentTypes?: {
|
|
@@ -9673,9 +9696,10 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
|
|
|
9673
9696
|
expiredAt?: string | null | undefined;
|
|
9674
9697
|
agentId?: string | null | undefined;
|
|
9675
9698
|
attributeSettings?: {
|
|
9699
|
+
options?: any[] | null | undefined;
|
|
9676
9700
|
type: "string" | "number" | "boolean" | "date";
|
|
9677
9701
|
key: string;
|
|
9678
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
9702
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
9679
9703
|
}[] | null | undefined;
|
|
9680
9704
|
pf_agent?: {
|
|
9681
9705
|
clickupId?: string | null | undefined;
|
|
@@ -9907,6 +9931,31 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
|
|
|
9907
9931
|
regNo: string;
|
|
9908
9932
|
};
|
|
9909
9933
|
}, {
|
|
9934
|
+
pickup?: {
|
|
9935
|
+
catalogId?: string | null | undefined;
|
|
9936
|
+
autoAccept?: boolean | null | undefined;
|
|
9937
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
9938
|
+
offlinePaymentTypes?: {
|
|
9939
|
+
name: string;
|
|
9940
|
+
instruction: string;
|
|
9941
|
+
}[] | null | undefined;
|
|
9942
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
9943
|
+
ignoreStock?: boolean | null | undefined;
|
|
9944
|
+
pickupTime?: {
|
|
9945
|
+
day: {
|
|
9946
|
+
max: number;
|
|
9947
|
+
min: number;
|
|
9948
|
+
};
|
|
9949
|
+
} | null | undefined;
|
|
9950
|
+
pickupPointConfig?: {
|
|
9951
|
+
restaurantEnable: boolean;
|
|
9952
|
+
points: {
|
|
9953
|
+
name: string;
|
|
9954
|
+
address: string;
|
|
9955
|
+
coordinates: number[];
|
|
9956
|
+
}[];
|
|
9957
|
+
} | null | undefined;
|
|
9958
|
+
} | null | undefined;
|
|
9910
9959
|
channel?: string | null | undefined;
|
|
9911
9960
|
machineId?: string | null | undefined;
|
|
9912
9961
|
catalogId?: string | null | undefined;
|
|
@@ -10008,31 +10057,6 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
|
|
|
10008
10057
|
}[];
|
|
10009
10058
|
term: string;
|
|
10010
10059
|
} | null | undefined;
|
|
10011
|
-
pickup?: {
|
|
10012
|
-
catalogId?: string | null | undefined;
|
|
10013
|
-
autoAccept?: boolean | null | undefined;
|
|
10014
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
10015
|
-
offlinePaymentTypes?: {
|
|
10016
|
-
name: string;
|
|
10017
|
-
instruction: string;
|
|
10018
|
-
}[] | null | undefined;
|
|
10019
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
10020
|
-
ignoreStock?: boolean | null | undefined;
|
|
10021
|
-
pickupTime?: {
|
|
10022
|
-
day: {
|
|
10023
|
-
max: number;
|
|
10024
|
-
min: number;
|
|
10025
|
-
};
|
|
10026
|
-
} | null | undefined;
|
|
10027
|
-
pickupPointConfig?: {
|
|
10028
|
-
restaurantEnable: boolean;
|
|
10029
|
-
points: {
|
|
10030
|
-
name: string;
|
|
10031
|
-
address: string;
|
|
10032
|
-
coordinates: number[];
|
|
10033
|
-
}[];
|
|
10034
|
-
} | null | undefined;
|
|
10035
|
-
} | null | undefined;
|
|
10036
10060
|
dineIn?: {
|
|
10037
10061
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
10038
10062
|
offlinePaymentTypes?: {
|
|
@@ -10051,9 +10075,10 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
|
|
|
10051
10075
|
expiredAt?: string | null | undefined;
|
|
10052
10076
|
agentId?: string | null | undefined;
|
|
10053
10077
|
attributeSettings?: {
|
|
10078
|
+
options?: any[] | null | undefined;
|
|
10054
10079
|
type: "string" | "number" | "boolean" | "date";
|
|
10055
10080
|
key: string;
|
|
10056
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
10081
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
10057
10082
|
}[] | null | undefined;
|
|
10058
10083
|
pf_agent?: {
|
|
10059
10084
|
clickupId?: string | null | undefined;
|
|
@@ -10359,6 +10384,31 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
|
|
|
10359
10384
|
userId?: string | undefined;
|
|
10360
10385
|
rejectReason?: string | undefined;
|
|
10361
10386
|
pf_restaurant?: {
|
|
10387
|
+
pickup?: {
|
|
10388
|
+
catalogId?: string | null | undefined;
|
|
10389
|
+
autoAccept?: boolean | null | undefined;
|
|
10390
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
10391
|
+
offlinePaymentTypes?: {
|
|
10392
|
+
name: string;
|
|
10393
|
+
instruction: string;
|
|
10394
|
+
}[] | null | undefined;
|
|
10395
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
10396
|
+
ignoreStock?: boolean | null | undefined;
|
|
10397
|
+
pickupTime?: {
|
|
10398
|
+
day: {
|
|
10399
|
+
max: number;
|
|
10400
|
+
min: number;
|
|
10401
|
+
};
|
|
10402
|
+
} | null | undefined;
|
|
10403
|
+
pickupPointConfig?: {
|
|
10404
|
+
restaurantEnable: boolean;
|
|
10405
|
+
points: {
|
|
10406
|
+
name: string;
|
|
10407
|
+
address: string;
|
|
10408
|
+
coordinates: number[];
|
|
10409
|
+
}[];
|
|
10410
|
+
} | null | undefined;
|
|
10411
|
+
} | null | undefined;
|
|
10362
10412
|
channel?: string | null | undefined;
|
|
10363
10413
|
machineId?: string | null | undefined;
|
|
10364
10414
|
catalogId?: string | null | undefined;
|
|
@@ -10460,31 +10510,6 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
|
|
|
10460
10510
|
}[];
|
|
10461
10511
|
term: string;
|
|
10462
10512
|
} | null | undefined;
|
|
10463
|
-
pickup?: {
|
|
10464
|
-
catalogId?: string | null | undefined;
|
|
10465
|
-
autoAccept?: boolean | null | undefined;
|
|
10466
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
10467
|
-
offlinePaymentTypes?: {
|
|
10468
|
-
name: string;
|
|
10469
|
-
instruction: string;
|
|
10470
|
-
}[] | null | undefined;
|
|
10471
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
10472
|
-
ignoreStock?: boolean | null | undefined;
|
|
10473
|
-
pickupTime?: {
|
|
10474
|
-
day: {
|
|
10475
|
-
max: number;
|
|
10476
|
-
min: number;
|
|
10477
|
-
};
|
|
10478
|
-
} | null | undefined;
|
|
10479
|
-
pickupPointConfig?: {
|
|
10480
|
-
restaurantEnable: boolean;
|
|
10481
|
-
points: {
|
|
10482
|
-
name: string;
|
|
10483
|
-
address: string;
|
|
10484
|
-
coordinates: number[];
|
|
10485
|
-
}[];
|
|
10486
|
-
} | null | undefined;
|
|
10487
|
-
} | null | undefined;
|
|
10488
10513
|
dineIn?: {
|
|
10489
10514
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
10490
10515
|
offlinePaymentTypes?: {
|
|
@@ -10503,9 +10528,10 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
|
|
|
10503
10528
|
expiredAt?: string | null | undefined;
|
|
10504
10529
|
agentId?: string | null | undefined;
|
|
10505
10530
|
attributeSettings?: {
|
|
10531
|
+
options?: any[] | null | undefined;
|
|
10506
10532
|
type: "string" | "number" | "boolean" | "date";
|
|
10507
10533
|
key: string;
|
|
10508
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
10534
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
10509
10535
|
}[] | null | undefined;
|
|
10510
10536
|
pf_agent?: {
|
|
10511
10537
|
clickupId?: string | null | undefined;
|
|
@@ -10765,6 +10791,31 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
|
|
|
10765
10791
|
userId?: string | undefined;
|
|
10766
10792
|
rejectReason?: string | undefined;
|
|
10767
10793
|
pf_restaurant?: {
|
|
10794
|
+
pickup?: {
|
|
10795
|
+
catalogId?: string | null | undefined;
|
|
10796
|
+
autoAccept?: boolean | null | undefined;
|
|
10797
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
10798
|
+
offlinePaymentTypes?: {
|
|
10799
|
+
name: string;
|
|
10800
|
+
instruction: string;
|
|
10801
|
+
}[] | null | undefined;
|
|
10802
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
10803
|
+
ignoreStock?: boolean | null | undefined;
|
|
10804
|
+
pickupTime?: {
|
|
10805
|
+
day: {
|
|
10806
|
+
max: number;
|
|
10807
|
+
min: number;
|
|
10808
|
+
};
|
|
10809
|
+
} | null | undefined;
|
|
10810
|
+
pickupPointConfig?: {
|
|
10811
|
+
restaurantEnable: boolean;
|
|
10812
|
+
points: {
|
|
10813
|
+
name: string;
|
|
10814
|
+
address: string;
|
|
10815
|
+
coordinates: number[];
|
|
10816
|
+
}[];
|
|
10817
|
+
} | null | undefined;
|
|
10818
|
+
} | null | undefined;
|
|
10768
10819
|
channel?: string | null | undefined;
|
|
10769
10820
|
machineId?: string | null | undefined;
|
|
10770
10821
|
catalogId?: string | null | undefined;
|
|
@@ -10866,31 +10917,6 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
|
|
|
10866
10917
|
}[];
|
|
10867
10918
|
term: string;
|
|
10868
10919
|
} | null | undefined;
|
|
10869
|
-
pickup?: {
|
|
10870
|
-
catalogId?: string | null | undefined;
|
|
10871
|
-
autoAccept?: boolean | null | undefined;
|
|
10872
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
10873
|
-
offlinePaymentTypes?: {
|
|
10874
|
-
name: string;
|
|
10875
|
-
instruction: string;
|
|
10876
|
-
}[] | null | undefined;
|
|
10877
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
10878
|
-
ignoreStock?: boolean | null | undefined;
|
|
10879
|
-
pickupTime?: {
|
|
10880
|
-
day: {
|
|
10881
|
-
max: number;
|
|
10882
|
-
min: number;
|
|
10883
|
-
};
|
|
10884
|
-
} | null | undefined;
|
|
10885
|
-
pickupPointConfig?: {
|
|
10886
|
-
restaurantEnable: boolean;
|
|
10887
|
-
points: {
|
|
10888
|
-
name: string;
|
|
10889
|
-
address: string;
|
|
10890
|
-
coordinates: number[];
|
|
10891
|
-
}[];
|
|
10892
|
-
} | null | undefined;
|
|
10893
|
-
} | null | undefined;
|
|
10894
10920
|
dineIn?: {
|
|
10895
10921
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
10896
10922
|
offlinePaymentTypes?: {
|
|
@@ -10909,9 +10935,10 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
|
|
|
10909
10935
|
expiredAt?: string | null | undefined;
|
|
10910
10936
|
agentId?: string | null | undefined;
|
|
10911
10937
|
attributeSettings?: {
|
|
10938
|
+
options?: any[] | null | undefined;
|
|
10912
10939
|
type: "string" | "number" | "boolean" | "date";
|
|
10913
10940
|
key: string;
|
|
10914
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
10941
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
10915
10942
|
}[] | null | undefined;
|
|
10916
10943
|
pf_agent?: {
|
|
10917
10944
|
clickupId?: string | null | undefined;
|
|
@@ -11193,15 +11220,18 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
11193
11220
|
attributeSettings: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11194
11221
|
key: z.ZodString;
|
|
11195
11222
|
type: z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"date">, z.ZodLiteral<"boolean">]>;
|
|
11196
|
-
entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"warehouse">]>;
|
|
11223
|
+
entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"warehouse">]>;
|
|
11224
|
+
options: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>>;
|
|
11197
11225
|
}, "strip", z.ZodTypeAny, {
|
|
11226
|
+
options?: any[] | null | undefined;
|
|
11198
11227
|
type: "string" | "number" | "boolean" | "date";
|
|
11199
11228
|
key: string;
|
|
11200
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
11229
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
11201
11230
|
}, {
|
|
11231
|
+
options?: any[] | null | undefined;
|
|
11202
11232
|
type: "string" | "number" | "boolean" | "date";
|
|
11203
11233
|
key: string;
|
|
11204
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
11234
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
11205
11235
|
}>, "many">>>;
|
|
11206
11236
|
pf_agent: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
11207
11237
|
_id: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -11457,9 +11487,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
11457
11487
|
expiredAt?: string | null | undefined;
|
|
11458
11488
|
agentId?: string | null | undefined;
|
|
11459
11489
|
attributeSettings?: {
|
|
11490
|
+
options?: any[] | null | undefined;
|
|
11460
11491
|
type: "string" | "number" | "boolean" | "date";
|
|
11461
11492
|
key: string;
|
|
11462
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
11493
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
11463
11494
|
}[] | null | undefined;
|
|
11464
11495
|
pf_agent?: {
|
|
11465
11496
|
clickupId?: string | null | undefined;
|
|
@@ -11523,9 +11554,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
11523
11554
|
expiredAt?: string | null | undefined;
|
|
11524
11555
|
agentId?: string | null | undefined;
|
|
11525
11556
|
attributeSettings?: {
|
|
11557
|
+
options?: any[] | null | undefined;
|
|
11526
11558
|
type: "string" | "number" | "boolean" | "date";
|
|
11527
11559
|
key: string;
|
|
11528
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
11560
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
11529
11561
|
}[] | null | undefined;
|
|
11530
11562
|
pf_agent?: {
|
|
11531
11563
|
clickupId?: string | null | undefined;
|
|
@@ -13255,6 +13287,31 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
13255
13287
|
}>>>;
|
|
13256
13288
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
13257
13289
|
}, "strip", z.ZodTypeAny, {
|
|
13290
|
+
pickup?: {
|
|
13291
|
+
catalogId?: string | null | undefined;
|
|
13292
|
+
autoAccept?: boolean | null | undefined;
|
|
13293
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
13294
|
+
offlinePaymentTypes?: {
|
|
13295
|
+
name: string;
|
|
13296
|
+
instruction: string;
|
|
13297
|
+
}[] | null | undefined;
|
|
13298
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
13299
|
+
ignoreStock?: boolean | null | undefined;
|
|
13300
|
+
pickupTime?: {
|
|
13301
|
+
day: {
|
|
13302
|
+
max: number;
|
|
13303
|
+
min: number;
|
|
13304
|
+
};
|
|
13305
|
+
} | null | undefined;
|
|
13306
|
+
pickupPointConfig?: {
|
|
13307
|
+
restaurantEnable: boolean;
|
|
13308
|
+
points: {
|
|
13309
|
+
name: string;
|
|
13310
|
+
address: string;
|
|
13311
|
+
coordinates: number[];
|
|
13312
|
+
}[];
|
|
13313
|
+
} | null | undefined;
|
|
13314
|
+
} | null | undefined;
|
|
13258
13315
|
channel?: string | null | undefined;
|
|
13259
13316
|
machineId?: string | null | undefined;
|
|
13260
13317
|
catalogId?: string | null | undefined;
|
|
@@ -13356,31 +13413,6 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
13356
13413
|
}[];
|
|
13357
13414
|
term: string;
|
|
13358
13415
|
} | null | undefined;
|
|
13359
|
-
pickup?: {
|
|
13360
|
-
catalogId?: string | null | undefined;
|
|
13361
|
-
autoAccept?: boolean | null | undefined;
|
|
13362
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
13363
|
-
offlinePaymentTypes?: {
|
|
13364
|
-
name: string;
|
|
13365
|
-
instruction: string;
|
|
13366
|
-
}[] | null | undefined;
|
|
13367
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
13368
|
-
ignoreStock?: boolean | null | undefined;
|
|
13369
|
-
pickupTime?: {
|
|
13370
|
-
day: {
|
|
13371
|
-
max: number;
|
|
13372
|
-
min: number;
|
|
13373
|
-
};
|
|
13374
|
-
} | null | undefined;
|
|
13375
|
-
pickupPointConfig?: {
|
|
13376
|
-
restaurantEnable: boolean;
|
|
13377
|
-
points: {
|
|
13378
|
-
name: string;
|
|
13379
|
-
address: string;
|
|
13380
|
-
coordinates: number[];
|
|
13381
|
-
}[];
|
|
13382
|
-
} | null | undefined;
|
|
13383
|
-
} | null | undefined;
|
|
13384
13416
|
dineIn?: {
|
|
13385
13417
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
13386
13418
|
offlinePaymentTypes?: {
|
|
@@ -13399,9 +13431,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
13399
13431
|
expiredAt?: string | null | undefined;
|
|
13400
13432
|
agentId?: string | null | undefined;
|
|
13401
13433
|
attributeSettings?: {
|
|
13434
|
+
options?: any[] | null | undefined;
|
|
13402
13435
|
type: "string" | "number" | "boolean" | "date";
|
|
13403
13436
|
key: string;
|
|
13404
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
13437
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
13405
13438
|
}[] | null | undefined;
|
|
13406
13439
|
pf_agent?: {
|
|
13407
13440
|
clickupId?: string | null | undefined;
|
|
@@ -13633,6 +13666,31 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
13633
13666
|
regNo: string;
|
|
13634
13667
|
};
|
|
13635
13668
|
}, {
|
|
13669
|
+
pickup?: {
|
|
13670
|
+
catalogId?: string | null | undefined;
|
|
13671
|
+
autoAccept?: boolean | null | undefined;
|
|
13672
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
13673
|
+
offlinePaymentTypes?: {
|
|
13674
|
+
name: string;
|
|
13675
|
+
instruction: string;
|
|
13676
|
+
}[] | null | undefined;
|
|
13677
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
13678
|
+
ignoreStock?: boolean | null | undefined;
|
|
13679
|
+
pickupTime?: {
|
|
13680
|
+
day: {
|
|
13681
|
+
max: number;
|
|
13682
|
+
min: number;
|
|
13683
|
+
};
|
|
13684
|
+
} | null | undefined;
|
|
13685
|
+
pickupPointConfig?: {
|
|
13686
|
+
restaurantEnable: boolean;
|
|
13687
|
+
points: {
|
|
13688
|
+
name: string;
|
|
13689
|
+
address: string;
|
|
13690
|
+
coordinates: number[];
|
|
13691
|
+
}[];
|
|
13692
|
+
} | null | undefined;
|
|
13693
|
+
} | null | undefined;
|
|
13636
13694
|
channel?: string | null | undefined;
|
|
13637
13695
|
machineId?: string | null | undefined;
|
|
13638
13696
|
catalogId?: string | null | undefined;
|
|
@@ -13734,31 +13792,6 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
13734
13792
|
}[];
|
|
13735
13793
|
term: string;
|
|
13736
13794
|
} | null | undefined;
|
|
13737
|
-
pickup?: {
|
|
13738
|
-
catalogId?: string | null | undefined;
|
|
13739
|
-
autoAccept?: boolean | null | undefined;
|
|
13740
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
13741
|
-
offlinePaymentTypes?: {
|
|
13742
|
-
name: string;
|
|
13743
|
-
instruction: string;
|
|
13744
|
-
}[] | null | undefined;
|
|
13745
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
13746
|
-
ignoreStock?: boolean | null | undefined;
|
|
13747
|
-
pickupTime?: {
|
|
13748
|
-
day: {
|
|
13749
|
-
max: number;
|
|
13750
|
-
min: number;
|
|
13751
|
-
};
|
|
13752
|
-
} | null | undefined;
|
|
13753
|
-
pickupPointConfig?: {
|
|
13754
|
-
restaurantEnable: boolean;
|
|
13755
|
-
points: {
|
|
13756
|
-
name: string;
|
|
13757
|
-
address: string;
|
|
13758
|
-
coordinates: number[];
|
|
13759
|
-
}[];
|
|
13760
|
-
} | null | undefined;
|
|
13761
|
-
} | null | undefined;
|
|
13762
13795
|
dineIn?: {
|
|
13763
13796
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
13764
13797
|
offlinePaymentTypes?: {
|
|
@@ -13777,9 +13810,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
13777
13810
|
expiredAt?: string | null | undefined;
|
|
13778
13811
|
agentId?: string | null | undefined;
|
|
13779
13812
|
attributeSettings?: {
|
|
13813
|
+
options?: any[] | null | undefined;
|
|
13780
13814
|
type: "string" | "number" | "boolean" | "date";
|
|
13781
13815
|
key: string;
|
|
13782
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
13816
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
13783
13817
|
}[] | null | undefined;
|
|
13784
13818
|
pf_agent?: {
|
|
13785
13819
|
clickupId?: string | null | undefined;
|
|
@@ -14084,6 +14118,31 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
14084
14118
|
userId?: string | undefined;
|
|
14085
14119
|
rejectReason?: string | undefined;
|
|
14086
14120
|
pf_restaurant?: {
|
|
14121
|
+
pickup?: {
|
|
14122
|
+
catalogId?: string | null | undefined;
|
|
14123
|
+
autoAccept?: boolean | null | undefined;
|
|
14124
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
14125
|
+
offlinePaymentTypes?: {
|
|
14126
|
+
name: string;
|
|
14127
|
+
instruction: string;
|
|
14128
|
+
}[] | null | undefined;
|
|
14129
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
14130
|
+
ignoreStock?: boolean | null | undefined;
|
|
14131
|
+
pickupTime?: {
|
|
14132
|
+
day: {
|
|
14133
|
+
max: number;
|
|
14134
|
+
min: number;
|
|
14135
|
+
};
|
|
14136
|
+
} | null | undefined;
|
|
14137
|
+
pickupPointConfig?: {
|
|
14138
|
+
restaurantEnable: boolean;
|
|
14139
|
+
points: {
|
|
14140
|
+
name: string;
|
|
14141
|
+
address: string;
|
|
14142
|
+
coordinates: number[];
|
|
14143
|
+
}[];
|
|
14144
|
+
} | null | undefined;
|
|
14145
|
+
} | null | undefined;
|
|
14087
14146
|
channel?: string | null | undefined;
|
|
14088
14147
|
machineId?: string | null | undefined;
|
|
14089
14148
|
catalogId?: string | null | undefined;
|
|
@@ -14178,37 +14237,12 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
14178
14237
|
} | null | undefined;
|
|
14179
14238
|
polygon: number[][];
|
|
14180
14239
|
deliveryFee: {
|
|
14181
|
-
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
14182
|
-
amount: number;
|
|
14183
|
-
precision: number;
|
|
14184
|
-
};
|
|
14185
|
-
}[];
|
|
14186
|
-
term: string;
|
|
14187
|
-
} | null | undefined;
|
|
14188
|
-
pickup?: {
|
|
14189
|
-
catalogId?: string | null | undefined;
|
|
14190
|
-
autoAccept?: boolean | null | undefined;
|
|
14191
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
14192
|
-
offlinePaymentTypes?: {
|
|
14193
|
-
name: string;
|
|
14194
|
-
instruction: string;
|
|
14195
|
-
}[] | null | undefined;
|
|
14196
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
14197
|
-
ignoreStock?: boolean | null | undefined;
|
|
14198
|
-
pickupTime?: {
|
|
14199
|
-
day: {
|
|
14200
|
-
max: number;
|
|
14201
|
-
min: number;
|
|
14202
|
-
};
|
|
14203
|
-
} | null | undefined;
|
|
14204
|
-
pickupPointConfig?: {
|
|
14205
|
-
restaurantEnable: boolean;
|
|
14206
|
-
points: {
|
|
14207
|
-
name: string;
|
|
14208
|
-
address: string;
|
|
14209
|
-
coordinates: number[];
|
|
14210
|
-
}[];
|
|
14211
|
-
} | null | undefined;
|
|
14240
|
+
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
14241
|
+
amount: number;
|
|
14242
|
+
precision: number;
|
|
14243
|
+
};
|
|
14244
|
+
}[];
|
|
14245
|
+
term: string;
|
|
14212
14246
|
} | null | undefined;
|
|
14213
14247
|
dineIn?: {
|
|
14214
14248
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
@@ -14228,9 +14262,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
14228
14262
|
expiredAt?: string | null | undefined;
|
|
14229
14263
|
agentId?: string | null | undefined;
|
|
14230
14264
|
attributeSettings?: {
|
|
14265
|
+
options?: any[] | null | undefined;
|
|
14231
14266
|
type: "string" | "number" | "boolean" | "date";
|
|
14232
14267
|
key: string;
|
|
14233
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
14268
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
14234
14269
|
}[] | null | undefined;
|
|
14235
14270
|
pf_agent?: {
|
|
14236
14271
|
clickupId?: string | null | undefined;
|
|
@@ -14489,6 +14524,31 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
14489
14524
|
userId?: string | undefined;
|
|
14490
14525
|
rejectReason?: string | undefined;
|
|
14491
14526
|
pf_restaurant?: {
|
|
14527
|
+
pickup?: {
|
|
14528
|
+
catalogId?: string | null | undefined;
|
|
14529
|
+
autoAccept?: boolean | null | undefined;
|
|
14530
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
14531
|
+
offlinePaymentTypes?: {
|
|
14532
|
+
name: string;
|
|
14533
|
+
instruction: string;
|
|
14534
|
+
}[] | null | undefined;
|
|
14535
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
14536
|
+
ignoreStock?: boolean | null | undefined;
|
|
14537
|
+
pickupTime?: {
|
|
14538
|
+
day: {
|
|
14539
|
+
max: number;
|
|
14540
|
+
min: number;
|
|
14541
|
+
};
|
|
14542
|
+
} | null | undefined;
|
|
14543
|
+
pickupPointConfig?: {
|
|
14544
|
+
restaurantEnable: boolean;
|
|
14545
|
+
points: {
|
|
14546
|
+
name: string;
|
|
14547
|
+
address: string;
|
|
14548
|
+
coordinates: number[];
|
|
14549
|
+
}[];
|
|
14550
|
+
} | null | undefined;
|
|
14551
|
+
} | null | undefined;
|
|
14492
14552
|
channel?: string | null | undefined;
|
|
14493
14553
|
machineId?: string | null | undefined;
|
|
14494
14554
|
catalogId?: string | null | undefined;
|
|
@@ -14590,31 +14650,6 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
14590
14650
|
}[];
|
|
14591
14651
|
term: string;
|
|
14592
14652
|
} | null | undefined;
|
|
14593
|
-
pickup?: {
|
|
14594
|
-
catalogId?: string | null | undefined;
|
|
14595
|
-
autoAccept?: boolean | null | undefined;
|
|
14596
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
14597
|
-
offlinePaymentTypes?: {
|
|
14598
|
-
name: string;
|
|
14599
|
-
instruction: string;
|
|
14600
|
-
}[] | null | undefined;
|
|
14601
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
14602
|
-
ignoreStock?: boolean | null | undefined;
|
|
14603
|
-
pickupTime?: {
|
|
14604
|
-
day: {
|
|
14605
|
-
max: number;
|
|
14606
|
-
min: number;
|
|
14607
|
-
};
|
|
14608
|
-
} | null | undefined;
|
|
14609
|
-
pickupPointConfig?: {
|
|
14610
|
-
restaurantEnable: boolean;
|
|
14611
|
-
points: {
|
|
14612
|
-
name: string;
|
|
14613
|
-
address: string;
|
|
14614
|
-
coordinates: number[];
|
|
14615
|
-
}[];
|
|
14616
|
-
} | null | undefined;
|
|
14617
|
-
} | null | undefined;
|
|
14618
14653
|
dineIn?: {
|
|
14619
14654
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
14620
14655
|
offlinePaymentTypes?: {
|
|
@@ -14633,9 +14668,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
14633
14668
|
expiredAt?: string | null | undefined;
|
|
14634
14669
|
agentId?: string | null | undefined;
|
|
14635
14670
|
attributeSettings?: {
|
|
14671
|
+
options?: any[] | null | undefined;
|
|
14636
14672
|
type: "string" | "number" | "boolean" | "date";
|
|
14637
14673
|
key: string;
|
|
14638
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
14674
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
14639
14675
|
}[] | null | undefined;
|
|
14640
14676
|
pf_agent?: {
|
|
14641
14677
|
clickupId?: string | null | undefined;
|
|
@@ -14914,15 +14950,18 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
14914
14950
|
attributeSettings: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14915
14951
|
key: z.ZodString;
|
|
14916
14952
|
type: z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"date">, z.ZodLiteral<"boolean">]>;
|
|
14917
|
-
entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"warehouse">]>;
|
|
14953
|
+
entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"warehouse">]>;
|
|
14954
|
+
options: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>>;
|
|
14918
14955
|
}, "strip", z.ZodTypeAny, {
|
|
14956
|
+
options?: any[] | null | undefined;
|
|
14919
14957
|
type: "string" | "number" | "boolean" | "date";
|
|
14920
14958
|
key: string;
|
|
14921
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
14959
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
14922
14960
|
}, {
|
|
14961
|
+
options?: any[] | null | undefined;
|
|
14923
14962
|
type: "string" | "number" | "boolean" | "date";
|
|
14924
14963
|
key: string;
|
|
14925
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
14964
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
14926
14965
|
}>, "many">>>;
|
|
14927
14966
|
pf_agent: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
14928
14967
|
_id: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -15178,9 +15217,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
15178
15217
|
expiredAt?: string | null | undefined;
|
|
15179
15218
|
agentId?: string | null | undefined;
|
|
15180
15219
|
attributeSettings?: {
|
|
15220
|
+
options?: any[] | null | undefined;
|
|
15181
15221
|
type: "string" | "number" | "boolean" | "date";
|
|
15182
15222
|
key: string;
|
|
15183
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
15223
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
15184
15224
|
}[] | null | undefined;
|
|
15185
15225
|
pf_agent?: {
|
|
15186
15226
|
clickupId?: string | null | undefined;
|
|
@@ -15244,9 +15284,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
15244
15284
|
expiredAt?: string | null | undefined;
|
|
15245
15285
|
agentId?: string | null | undefined;
|
|
15246
15286
|
attributeSettings?: {
|
|
15287
|
+
options?: any[] | null | undefined;
|
|
15247
15288
|
type: "string" | "number" | "boolean" | "date";
|
|
15248
15289
|
key: string;
|
|
15249
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
15290
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
15250
15291
|
}[] | null | undefined;
|
|
15251
15292
|
pf_agent?: {
|
|
15252
15293
|
clickupId?: string | null | undefined;
|
|
@@ -16976,6 +17017,31 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
16976
17017
|
}>>>;
|
|
16977
17018
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
16978
17019
|
}, "strip", z.ZodTypeAny, {
|
|
17020
|
+
pickup?: {
|
|
17021
|
+
catalogId?: string | null | undefined;
|
|
17022
|
+
autoAccept?: boolean | null | undefined;
|
|
17023
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
17024
|
+
offlinePaymentTypes?: {
|
|
17025
|
+
name: string;
|
|
17026
|
+
instruction: string;
|
|
17027
|
+
}[] | null | undefined;
|
|
17028
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
17029
|
+
ignoreStock?: boolean | null | undefined;
|
|
17030
|
+
pickupTime?: {
|
|
17031
|
+
day: {
|
|
17032
|
+
max: number;
|
|
17033
|
+
min: number;
|
|
17034
|
+
};
|
|
17035
|
+
} | null | undefined;
|
|
17036
|
+
pickupPointConfig?: {
|
|
17037
|
+
restaurantEnable: boolean;
|
|
17038
|
+
points: {
|
|
17039
|
+
name: string;
|
|
17040
|
+
address: string;
|
|
17041
|
+
coordinates: number[];
|
|
17042
|
+
}[];
|
|
17043
|
+
} | null | undefined;
|
|
17044
|
+
} | null | undefined;
|
|
16979
17045
|
channel?: string | null | undefined;
|
|
16980
17046
|
machineId?: string | null | undefined;
|
|
16981
17047
|
catalogId?: string | null | undefined;
|
|
@@ -17077,31 +17143,6 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
17077
17143
|
}[];
|
|
17078
17144
|
term: string;
|
|
17079
17145
|
} | null | undefined;
|
|
17080
|
-
pickup?: {
|
|
17081
|
-
catalogId?: string | null | undefined;
|
|
17082
|
-
autoAccept?: boolean | null | undefined;
|
|
17083
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
17084
|
-
offlinePaymentTypes?: {
|
|
17085
|
-
name: string;
|
|
17086
|
-
instruction: string;
|
|
17087
|
-
}[] | null | undefined;
|
|
17088
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
17089
|
-
ignoreStock?: boolean | null | undefined;
|
|
17090
|
-
pickupTime?: {
|
|
17091
|
-
day: {
|
|
17092
|
-
max: number;
|
|
17093
|
-
min: number;
|
|
17094
|
-
};
|
|
17095
|
-
} | null | undefined;
|
|
17096
|
-
pickupPointConfig?: {
|
|
17097
|
-
restaurantEnable: boolean;
|
|
17098
|
-
points: {
|
|
17099
|
-
name: string;
|
|
17100
|
-
address: string;
|
|
17101
|
-
coordinates: number[];
|
|
17102
|
-
}[];
|
|
17103
|
-
} | null | undefined;
|
|
17104
|
-
} | null | undefined;
|
|
17105
17146
|
dineIn?: {
|
|
17106
17147
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
17107
17148
|
offlinePaymentTypes?: {
|
|
@@ -17120,9 +17161,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
17120
17161
|
expiredAt?: string | null | undefined;
|
|
17121
17162
|
agentId?: string | null | undefined;
|
|
17122
17163
|
attributeSettings?: {
|
|
17164
|
+
options?: any[] | null | undefined;
|
|
17123
17165
|
type: "string" | "number" | "boolean" | "date";
|
|
17124
17166
|
key: string;
|
|
17125
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
17167
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
17126
17168
|
}[] | null | undefined;
|
|
17127
17169
|
pf_agent?: {
|
|
17128
17170
|
clickupId?: string | null | undefined;
|
|
@@ -17354,6 +17396,31 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
17354
17396
|
regNo: string;
|
|
17355
17397
|
};
|
|
17356
17398
|
}, {
|
|
17399
|
+
pickup?: {
|
|
17400
|
+
catalogId?: string | null | undefined;
|
|
17401
|
+
autoAccept?: boolean | null | undefined;
|
|
17402
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
17403
|
+
offlinePaymentTypes?: {
|
|
17404
|
+
name: string;
|
|
17405
|
+
instruction: string;
|
|
17406
|
+
}[] | null | undefined;
|
|
17407
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
17408
|
+
ignoreStock?: boolean | null | undefined;
|
|
17409
|
+
pickupTime?: {
|
|
17410
|
+
day: {
|
|
17411
|
+
max: number;
|
|
17412
|
+
min: number;
|
|
17413
|
+
};
|
|
17414
|
+
} | null | undefined;
|
|
17415
|
+
pickupPointConfig?: {
|
|
17416
|
+
restaurantEnable: boolean;
|
|
17417
|
+
points: {
|
|
17418
|
+
name: string;
|
|
17419
|
+
address: string;
|
|
17420
|
+
coordinates: number[];
|
|
17421
|
+
}[];
|
|
17422
|
+
} | null | undefined;
|
|
17423
|
+
} | null | undefined;
|
|
17357
17424
|
channel?: string | null | undefined;
|
|
17358
17425
|
machineId?: string | null | undefined;
|
|
17359
17426
|
catalogId?: string | null | undefined;
|
|
@@ -17455,31 +17522,6 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
17455
17522
|
}[];
|
|
17456
17523
|
term: string;
|
|
17457
17524
|
} | null | undefined;
|
|
17458
|
-
pickup?: {
|
|
17459
|
-
catalogId?: string | null | undefined;
|
|
17460
|
-
autoAccept?: boolean | null | undefined;
|
|
17461
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
17462
|
-
offlinePaymentTypes?: {
|
|
17463
|
-
name: string;
|
|
17464
|
-
instruction: string;
|
|
17465
|
-
}[] | null | undefined;
|
|
17466
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
17467
|
-
ignoreStock?: boolean | null | undefined;
|
|
17468
|
-
pickupTime?: {
|
|
17469
|
-
day: {
|
|
17470
|
-
max: number;
|
|
17471
|
-
min: number;
|
|
17472
|
-
};
|
|
17473
|
-
} | null | undefined;
|
|
17474
|
-
pickupPointConfig?: {
|
|
17475
|
-
restaurantEnable: boolean;
|
|
17476
|
-
points: {
|
|
17477
|
-
name: string;
|
|
17478
|
-
address: string;
|
|
17479
|
-
coordinates: number[];
|
|
17480
|
-
}[];
|
|
17481
|
-
} | null | undefined;
|
|
17482
|
-
} | null | undefined;
|
|
17483
17525
|
dineIn?: {
|
|
17484
17526
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
17485
17527
|
offlinePaymentTypes?: {
|
|
@@ -17498,9 +17540,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
17498
17540
|
expiredAt?: string | null | undefined;
|
|
17499
17541
|
agentId?: string | null | undefined;
|
|
17500
17542
|
attributeSettings?: {
|
|
17543
|
+
options?: any[] | null | undefined;
|
|
17501
17544
|
type: "string" | "number" | "boolean" | "date";
|
|
17502
17545
|
key: string;
|
|
17503
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
17546
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
17504
17547
|
}[] | null | undefined;
|
|
17505
17548
|
pf_agent?: {
|
|
17506
17549
|
clickupId?: string | null | undefined;
|
|
@@ -17806,6 +17849,31 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
17806
17849
|
userId?: string | undefined;
|
|
17807
17850
|
rejectReason?: string | undefined;
|
|
17808
17851
|
pf_restaurant?: {
|
|
17852
|
+
pickup?: {
|
|
17853
|
+
catalogId?: string | null | undefined;
|
|
17854
|
+
autoAccept?: boolean | null | undefined;
|
|
17855
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
17856
|
+
offlinePaymentTypes?: {
|
|
17857
|
+
name: string;
|
|
17858
|
+
instruction: string;
|
|
17859
|
+
}[] | null | undefined;
|
|
17860
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
17861
|
+
ignoreStock?: boolean | null | undefined;
|
|
17862
|
+
pickupTime?: {
|
|
17863
|
+
day: {
|
|
17864
|
+
max: number;
|
|
17865
|
+
min: number;
|
|
17866
|
+
};
|
|
17867
|
+
} | null | undefined;
|
|
17868
|
+
pickupPointConfig?: {
|
|
17869
|
+
restaurantEnable: boolean;
|
|
17870
|
+
points: {
|
|
17871
|
+
name: string;
|
|
17872
|
+
address: string;
|
|
17873
|
+
coordinates: number[];
|
|
17874
|
+
}[];
|
|
17875
|
+
} | null | undefined;
|
|
17876
|
+
} | null | undefined;
|
|
17809
17877
|
channel?: string | null | undefined;
|
|
17810
17878
|
machineId?: string | null | undefined;
|
|
17811
17879
|
catalogId?: string | null | undefined;
|
|
@@ -17907,31 +17975,6 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
17907
17975
|
}[];
|
|
17908
17976
|
term: string;
|
|
17909
17977
|
} | null | undefined;
|
|
17910
|
-
pickup?: {
|
|
17911
|
-
catalogId?: string | null | undefined;
|
|
17912
|
-
autoAccept?: boolean | null | undefined;
|
|
17913
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
17914
|
-
offlinePaymentTypes?: {
|
|
17915
|
-
name: string;
|
|
17916
|
-
instruction: string;
|
|
17917
|
-
}[] | null | undefined;
|
|
17918
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
17919
|
-
ignoreStock?: boolean | null | undefined;
|
|
17920
|
-
pickupTime?: {
|
|
17921
|
-
day: {
|
|
17922
|
-
max: number;
|
|
17923
|
-
min: number;
|
|
17924
|
-
};
|
|
17925
|
-
} | null | undefined;
|
|
17926
|
-
pickupPointConfig?: {
|
|
17927
|
-
restaurantEnable: boolean;
|
|
17928
|
-
points: {
|
|
17929
|
-
name: string;
|
|
17930
|
-
address: string;
|
|
17931
|
-
coordinates: number[];
|
|
17932
|
-
}[];
|
|
17933
|
-
} | null | undefined;
|
|
17934
|
-
} | null | undefined;
|
|
17935
17978
|
dineIn?: {
|
|
17936
17979
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
17937
17980
|
offlinePaymentTypes?: {
|
|
@@ -17950,9 +17993,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
17950
17993
|
expiredAt?: string | null | undefined;
|
|
17951
17994
|
agentId?: string | null | undefined;
|
|
17952
17995
|
attributeSettings?: {
|
|
17996
|
+
options?: any[] | null | undefined;
|
|
17953
17997
|
type: "string" | "number" | "boolean" | "date";
|
|
17954
17998
|
key: string;
|
|
17955
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
17999
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
17956
18000
|
}[] | null | undefined;
|
|
17957
18001
|
pf_agent?: {
|
|
17958
18002
|
clickupId?: string | null | undefined;
|
|
@@ -18212,6 +18256,31 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
18212
18256
|
userId?: string | undefined;
|
|
18213
18257
|
rejectReason?: string | undefined;
|
|
18214
18258
|
pf_restaurant?: {
|
|
18259
|
+
pickup?: {
|
|
18260
|
+
catalogId?: string | null | undefined;
|
|
18261
|
+
autoAccept?: boolean | null | undefined;
|
|
18262
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
18263
|
+
offlinePaymentTypes?: {
|
|
18264
|
+
name: string;
|
|
18265
|
+
instruction: string;
|
|
18266
|
+
}[] | null | undefined;
|
|
18267
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
18268
|
+
ignoreStock?: boolean | null | undefined;
|
|
18269
|
+
pickupTime?: {
|
|
18270
|
+
day: {
|
|
18271
|
+
max: number;
|
|
18272
|
+
min: number;
|
|
18273
|
+
};
|
|
18274
|
+
} | null | undefined;
|
|
18275
|
+
pickupPointConfig?: {
|
|
18276
|
+
restaurantEnable: boolean;
|
|
18277
|
+
points: {
|
|
18278
|
+
name: string;
|
|
18279
|
+
address: string;
|
|
18280
|
+
coordinates: number[];
|
|
18281
|
+
}[];
|
|
18282
|
+
} | null | undefined;
|
|
18283
|
+
} | null | undefined;
|
|
18215
18284
|
channel?: string | null | undefined;
|
|
18216
18285
|
machineId?: string | null | undefined;
|
|
18217
18286
|
catalogId?: string | null | undefined;
|
|
@@ -18313,31 +18382,6 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
18313
18382
|
}[];
|
|
18314
18383
|
term: string;
|
|
18315
18384
|
} | null | undefined;
|
|
18316
|
-
pickup?: {
|
|
18317
|
-
catalogId?: string | null | undefined;
|
|
18318
|
-
autoAccept?: boolean | null | undefined;
|
|
18319
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
18320
|
-
offlinePaymentTypes?: {
|
|
18321
|
-
name: string;
|
|
18322
|
-
instruction: string;
|
|
18323
|
-
}[] | null | undefined;
|
|
18324
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
18325
|
-
ignoreStock?: boolean | null | undefined;
|
|
18326
|
-
pickupTime?: {
|
|
18327
|
-
day: {
|
|
18328
|
-
max: number;
|
|
18329
|
-
min: number;
|
|
18330
|
-
};
|
|
18331
|
-
} | null | undefined;
|
|
18332
|
-
pickupPointConfig?: {
|
|
18333
|
-
restaurantEnable: boolean;
|
|
18334
|
-
points: {
|
|
18335
|
-
name: string;
|
|
18336
|
-
address: string;
|
|
18337
|
-
coordinates: number[];
|
|
18338
|
-
}[];
|
|
18339
|
-
} | null | undefined;
|
|
18340
|
-
} | null | undefined;
|
|
18341
18385
|
dineIn?: {
|
|
18342
18386
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
18343
18387
|
offlinePaymentTypes?: {
|
|
@@ -18356,9 +18400,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
|
|
|
18356
18400
|
expiredAt?: string | null | undefined;
|
|
18357
18401
|
agentId?: string | null | undefined;
|
|
18358
18402
|
attributeSettings?: {
|
|
18403
|
+
options?: any[] | null | undefined;
|
|
18359
18404
|
type: "string" | "number" | "boolean" | "date";
|
|
18360
18405
|
key: string;
|
|
18361
|
-
entity: "restaurant" | "item" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
18406
|
+
entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
|
|
18362
18407
|
}[] | null | undefined;
|
|
18363
18408
|
pf_agent?: {
|
|
18364
18409
|
clickupId?: string | null | undefined;
|