@feedmepos/mf-order-setting 0.0.32 → 0.0.34

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.
Files changed (55) hide show
  1. package/dist/{KioskDevicesView-D2w5MMCg.js → KioskDevicesView-BHzBoF_O.js} +1 -1
  2. package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-BwxGSbuI.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-C5JpMDP_.js} +2 -2
  3. package/dist/KioskSettingView-i8tgH3dF.js +841 -0
  4. package/dist/{KioskView-NetckXQx.js → KioskView-DW7vX6rJ.js} +41 -34
  5. package/dist/{OrderSettingsView-CL0o1fHq.js → OrderSettingsView-D3SQHET3.js} +5446 -5282
  6. package/dist/{app-DnvFFLBj.js → app-C15xKXga.js} +18 -8
  7. package/dist/app.js +1 -1
  8. package/dist/{dayjs.min-BAx2Uba9.js → dayjs.min-KE7XM_kc.js} +1 -1
  9. package/dist/frontend/mf-order/src/api/remoteOrder/index.d.ts +5 -2
  10. package/dist/frontend/mf-order/src/app.d.ts +10 -0
  11. package/dist/frontend/mf-order/src/main.d.ts +10 -0
  12. package/dist/frontend/mf-order/src/stores/order-setting/index.d.ts +12 -0
  13. package/dist/frontend/mf-order/src/stores/order-setting/mapper.d.ts +3 -3
  14. package/dist/frontend/mf-order/src/stores/restaurant/index.d.ts +5 -2
  15. package/dist/frontend/mf-order/src/views/kiosk/settings/KioskPaymentTypeSection.vue.d.ts +8 -0
  16. package/dist/frontend/mf-order/src/views/order-settings/delivery/DeliverySetting.vue.d.ts +1 -1
  17. package/dist/frontend/mf-order/src/views/order-settings/delivery/delivery.d.ts +3 -1
  18. package/dist/frontend/mf-order/src/views/order-settings/delivery/delivery.data.d.ts +3 -1
  19. package/dist/frontend/mf-order/src/views/order-settings/delivery/integrated-delivery/DeliverooSetting.vue.d.ts +46 -0
  20. package/dist/frontend/mf-order/src/views/order-settings/delivery/integrated-delivery/ExternalSetting.vue.d.ts +4 -4
  21. package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
  22. package/dist/{index-DuneL3VN.js → index-DGfFxIZo.js} +2 -2
  23. package/dist/{queue.do-B1npBXsB.js → menu.dto-CLARGRsi.js} +15200 -14810
  24. package/dist/package/entity/index.d.ts +22 -1
  25. package/dist/package/entity/order/order-item/order-item.dto.d.ts +2 -2
  26. package/dist/package/entity/order/order.enum.d.ts +1 -1
  27. package/dist/package/entity/order-platform/deliveroo/deliveroo-dto.d.ts +523 -0
  28. package/dist/package/entity/order-platform/deliveroo/deliveroo-order.do.d.ts +7814 -0
  29. package/dist/package/entity/order-platform/deliveroo/deliveroo-order.dto.d.ts +15 -0
  30. package/dist/package/entity/order-platform/deliveroo/deliveroo-setting.do.d.ts +37 -0
  31. package/dist/package/entity/order-platform/deliveroo/deliveroo.enum.d.ts +31 -0
  32. package/dist/package/entity/order-platform/deliveroo/deliveroo.menu.dto.d.ts +2341 -0
  33. package/dist/package/entity/order-platform/external/setting/external-setting.do.d.ts +3 -3
  34. package/dist/package/entity/order-platform/external/setting/external-setting.dto.d.ts +3 -3
  35. package/dist/package/entity/order-platform/order-platform.enum.d.ts +6 -1
  36. package/dist/package/entity/order-setting/kiosk/kiosk.do.d.ts +42 -0
  37. package/dist/package/entity/order-setting/kiosk/kiosk.dto.d.ts +32 -0
  38. package/dist/package/entity/order-setting/order-setting.do.d.ts +22 -0
  39. package/dist/package/entity/order-setting/order-setting.dto.d.ts +44 -0
  40. package/dist/package/entity/restaurant/restaurant.dto.d.ts +22 -0
  41. package/dist/package/entity/websocket/websocket.dto.d.ts +48 -0
  42. package/package.json +1 -1
  43. package/src/api/remoteOrder/index.ts +20 -2
  44. package/src/locales/en-US.json +3 -0
  45. package/src/locales/th-TH.json +3 -0
  46. package/src/locales/zh-CN.json +4 -0
  47. package/src/stores/order-setting/mapper.ts +230 -168
  48. package/src/stores/restaurant/index.ts +12 -7
  49. package/src/views/kiosk/settings/KioskPaymentTypeSection.vue +31 -1
  50. package/src/views/order-settings/delivery/DeliverySetting.vue +141 -57
  51. package/src/views/order-settings/delivery/delivery.data.ts +10 -1
  52. package/src/views/order-settings/delivery/delivery.ts +34 -9
  53. package/src/views/order-settings/delivery/integrated-delivery/DeliverooSetting.vue +109 -0
  54. package/src/views/order-settings/delivery/integrated-delivery/IntegratedDelivery.vue +11 -10
  55. package/dist/KioskSettingView-CUMAS8OG.js +0 -821
@@ -0,0 +1,2341 @@
1
+ import { z } from 'zod';
2
+ declare const DRItemName: z.ZodObject<{
3
+ en: z.ZodString;
4
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5
+ }, "strip", z.ZodTypeAny, {
6
+ zh?: string | null | undefined;
7
+ en: string;
8
+ }, {
9
+ zh?: string | null | undefined;
10
+ en: string;
11
+ }>;
12
+ declare const DRItemDescription: z.ZodObject<{
13
+ en: z.ZodString;
14
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
15
+ }, "strip", z.ZodTypeAny, {
16
+ zh?: string | null | undefined;
17
+ en: string;
18
+ }, {
19
+ zh?: string | null | undefined;
20
+ en: string;
21
+ }>;
22
+ declare const DRItemPriceInfoOverride: z.ZodObject<{
23
+ type: z.ZodEnum<["ITEM", "MODIFIER", "PICKUP_ITEM", "PICKUP_MODIFIER"]>;
24
+ id: z.ZodString;
25
+ price: z.ZodNumber;
26
+ }, "strip", z.ZodTypeAny, {
27
+ id: string;
28
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
29
+ price: number;
30
+ }, {
31
+ id: string;
32
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
33
+ price: number;
34
+ }>;
35
+ declare const DRItemPriceInfoFee: z.ZodObject<{
36
+ type: z.ZodString;
37
+ amount: z.ZodNumber;
38
+ }, "strip", z.ZodTypeAny, {
39
+ type: string;
40
+ amount: number;
41
+ }, {
42
+ type: string;
43
+ amount: number;
44
+ }>;
45
+ declare const DRItemPriceInfo: z.ZodObject<{
46
+ price: z.ZodNumber;
47
+ overrides: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
48
+ type: z.ZodEnum<["ITEM", "MODIFIER", "PICKUP_ITEM", "PICKUP_MODIFIER"]>;
49
+ id: z.ZodString;
50
+ price: z.ZodNumber;
51
+ }, "strip", z.ZodTypeAny, {
52
+ id: string;
53
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
54
+ price: number;
55
+ }, {
56
+ id: string;
57
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
58
+ price: number;
59
+ }>, "many">>>;
60
+ fees: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
61
+ type: z.ZodString;
62
+ amount: z.ZodNumber;
63
+ }, "strip", z.ZodTypeAny, {
64
+ type: string;
65
+ amount: number;
66
+ }, {
67
+ type: string;
68
+ amount: number;
69
+ }>, "many">>>;
70
+ }, "strip", z.ZodTypeAny, {
71
+ overrides?: {
72
+ id: string;
73
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
74
+ price: number;
75
+ }[] | null | undefined;
76
+ fees?: {
77
+ type: string;
78
+ amount: number;
79
+ }[] | null | undefined;
80
+ price: number;
81
+ }, {
82
+ overrides?: {
83
+ id: string;
84
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
85
+ price: number;
86
+ }[] | null | undefined;
87
+ fees?: {
88
+ type: string;
89
+ amount: number;
90
+ }[] | null | undefined;
91
+ price: number;
92
+ }>;
93
+ declare const DRImage: z.ZodObject<{
94
+ url: z.ZodString;
95
+ }, "strip", z.ZodTypeAny, {
96
+ url: string;
97
+ }, {
98
+ url: string;
99
+ }>;
100
+ declare const DRItemEnergyKcal: z.ZodObject<{
101
+ low: z.ZodNumber;
102
+ high: z.ZodNumber;
103
+ }, "strip", z.ZodTypeAny, {
104
+ low: number;
105
+ high: number;
106
+ }, {
107
+ low: number;
108
+ high: number;
109
+ }>;
110
+ declare const DRItemNutritionInfo: z.ZodObject<{
111
+ energy_kcal: z.ZodObject<{
112
+ low: z.ZodNumber;
113
+ high: z.ZodNumber;
114
+ }, "strip", z.ZodTypeAny, {
115
+ low: number;
116
+ high: number;
117
+ }, {
118
+ low: number;
119
+ high: number;
120
+ }>;
121
+ hfss: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
122
+ }, "strip", z.ZodTypeAny, {
123
+ hfss?: boolean | null | undefined;
124
+ energy_kcal: {
125
+ low: number;
126
+ high: number;
127
+ };
128
+ }, {
129
+ hfss?: boolean | null | undefined;
130
+ energy_kcal: {
131
+ low: number;
132
+ high: number;
133
+ };
134
+ }>;
135
+ declare const DRItem: z.ZodObject<{
136
+ id: z.ZodString;
137
+ name: z.ZodObject<{
138
+ en: z.ZodString;
139
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
140
+ }, "strip", z.ZodTypeAny, {
141
+ zh?: string | null | undefined;
142
+ en: string;
143
+ }, {
144
+ zh?: string | null | undefined;
145
+ en: string;
146
+ }>;
147
+ description: z.ZodNullable<z.ZodOptional<z.ZodObject<{
148
+ en: z.ZodString;
149
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
150
+ }, "strip", z.ZodTypeAny, {
151
+ zh?: string | null | undefined;
152
+ en: string;
153
+ }, {
154
+ zh?: string | null | undefined;
155
+ en: string;
156
+ }>>>;
157
+ operational_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
158
+ price_info: z.ZodObject<{
159
+ price: z.ZodNumber;
160
+ overrides: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
161
+ type: z.ZodEnum<["ITEM", "MODIFIER", "PICKUP_ITEM", "PICKUP_MODIFIER"]>;
162
+ id: z.ZodString;
163
+ price: z.ZodNumber;
164
+ }, "strip", z.ZodTypeAny, {
165
+ id: string;
166
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
167
+ price: number;
168
+ }, {
169
+ id: string;
170
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
171
+ price: number;
172
+ }>, "many">>>;
173
+ fees: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
174
+ type: z.ZodString;
175
+ amount: z.ZodNumber;
176
+ }, "strip", z.ZodTypeAny, {
177
+ type: string;
178
+ amount: number;
179
+ }, {
180
+ type: string;
181
+ amount: number;
182
+ }>, "many">>>;
183
+ }, "strip", z.ZodTypeAny, {
184
+ overrides?: {
185
+ id: string;
186
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
187
+ price: number;
188
+ }[] | null | undefined;
189
+ fees?: {
190
+ type: string;
191
+ amount: number;
192
+ }[] | null | undefined;
193
+ price: number;
194
+ }, {
195
+ overrides?: {
196
+ id: string;
197
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
198
+ price: number;
199
+ }[] | null | undefined;
200
+ fees?: {
201
+ type: string;
202
+ amount: number;
203
+ }[] | null | undefined;
204
+ price: number;
205
+ }>;
206
+ plu: z.ZodNullable<z.ZodOptional<z.ZodString>>;
207
+ ian: z.ZodNullable<z.ZodOptional<z.ZodString>>;
208
+ barcodes: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
209
+ image: z.ZodNullable<z.ZodOptional<z.ZodObject<{
210
+ url: z.ZodString;
211
+ }, "strip", z.ZodTypeAny, {
212
+ url: string;
213
+ }, {
214
+ url: string;
215
+ }>>>;
216
+ is_eligible_as_replacement: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
217
+ is_eligible_for_substitution: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
218
+ is_returnable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
219
+ tax_rate: z.ZodEnum<["0", "9"]>;
220
+ modifier_ids: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
221
+ allergies: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
222
+ classifications: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
223
+ diets: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
224
+ nutritional_info: z.ZodNullable<z.ZodOptional<z.ZodObject<{
225
+ energy_kcal: z.ZodObject<{
226
+ low: z.ZodNumber;
227
+ high: z.ZodNumber;
228
+ }, "strip", z.ZodTypeAny, {
229
+ low: number;
230
+ high: number;
231
+ }, {
232
+ low: number;
233
+ high: number;
234
+ }>;
235
+ hfss: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
236
+ }, "strip", z.ZodTypeAny, {
237
+ hfss?: boolean | null | undefined;
238
+ energy_kcal: {
239
+ low: number;
240
+ high: number;
241
+ };
242
+ }, {
243
+ hfss?: boolean | null | undefined;
244
+ energy_kcal: {
245
+ low: number;
246
+ high: number;
247
+ };
248
+ }>>>;
249
+ contains_alcohol: z.ZodDefault<z.ZodBoolean>;
250
+ max_quantity: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
251
+ external_data: z.ZodNullable<z.ZodOptional<z.ZodString>>;
252
+ highlights: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
253
+ type: z.ZodEnum<["CHOICE", "ITEM", "BUNDLE"]>;
254
+ party_size: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
255
+ }, "strip", z.ZodTypeAny, {
256
+ image?: {
257
+ url: string;
258
+ } | null | undefined;
259
+ description?: {
260
+ zh?: string | null | undefined;
261
+ en: string;
262
+ } | null | undefined;
263
+ operational_name?: string | null | undefined;
264
+ plu?: string | null | undefined;
265
+ ian?: string | null | undefined;
266
+ barcodes?: string[] | null | undefined;
267
+ is_eligible_as_replacement?: boolean | null | undefined;
268
+ is_eligible_for_substitution?: boolean | null | undefined;
269
+ is_returnable?: boolean | null | undefined;
270
+ modifier_ids?: string[] | null | undefined;
271
+ allergies?: string[] | null | undefined;
272
+ classifications?: string[] | null | undefined;
273
+ diets?: string[] | null | undefined;
274
+ nutritional_info?: {
275
+ hfss?: boolean | null | undefined;
276
+ energy_kcal: {
277
+ low: number;
278
+ high: number;
279
+ };
280
+ } | null | undefined;
281
+ max_quantity?: number | null | undefined;
282
+ external_data?: string | null | undefined;
283
+ highlights?: string[] | null | undefined;
284
+ party_size?: number | null | undefined;
285
+ name: {
286
+ zh?: string | null | undefined;
287
+ en: string;
288
+ };
289
+ id: string;
290
+ type: "ITEM" | "CHOICE" | "BUNDLE";
291
+ price_info: {
292
+ overrides?: {
293
+ id: string;
294
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
295
+ price: number;
296
+ }[] | null | undefined;
297
+ fees?: {
298
+ type: string;
299
+ amount: number;
300
+ }[] | null | undefined;
301
+ price: number;
302
+ };
303
+ tax_rate: "0" | "9";
304
+ contains_alcohol: boolean;
305
+ }, {
306
+ image?: {
307
+ url: string;
308
+ } | null | undefined;
309
+ description?: {
310
+ zh?: string | null | undefined;
311
+ en: string;
312
+ } | null | undefined;
313
+ operational_name?: string | null | undefined;
314
+ plu?: string | null | undefined;
315
+ ian?: string | null | undefined;
316
+ barcodes?: string[] | null | undefined;
317
+ is_eligible_as_replacement?: boolean | null | undefined;
318
+ is_eligible_for_substitution?: boolean | null | undefined;
319
+ is_returnable?: boolean | null | undefined;
320
+ modifier_ids?: string[] | null | undefined;
321
+ allergies?: string[] | null | undefined;
322
+ classifications?: string[] | null | undefined;
323
+ diets?: string[] | null | undefined;
324
+ nutritional_info?: {
325
+ hfss?: boolean | null | undefined;
326
+ energy_kcal: {
327
+ low: number;
328
+ high: number;
329
+ };
330
+ } | null | undefined;
331
+ contains_alcohol?: boolean | undefined;
332
+ max_quantity?: number | null | undefined;
333
+ external_data?: string | null | undefined;
334
+ highlights?: string[] | null | undefined;
335
+ party_size?: number | null | undefined;
336
+ name: {
337
+ zh?: string | null | undefined;
338
+ en: string;
339
+ };
340
+ id: string;
341
+ type: "ITEM" | "CHOICE" | "BUNDLE";
342
+ price_info: {
343
+ overrides?: {
344
+ id: string;
345
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
346
+ price: number;
347
+ }[] | null | undefined;
348
+ fees?: {
349
+ type: string;
350
+ amount: number;
351
+ }[] | null | undefined;
352
+ price: number;
353
+ };
354
+ tax_rate: "0" | "9";
355
+ }>;
356
+ declare const DRMealtimeName: z.ZodObject<{
357
+ en: z.ZodString;
358
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
359
+ }, "strip", z.ZodTypeAny, {
360
+ zh?: string | null | undefined;
361
+ en: string;
362
+ }, {
363
+ zh?: string | null | undefined;
364
+ en: string;
365
+ }>;
366
+ declare const DRMealtimeDescription: z.ZodObject<{
367
+ en: z.ZodString;
368
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
369
+ }, "strip", z.ZodTypeAny, {
370
+ zh?: string | null | undefined;
371
+ en: string;
372
+ }, {
373
+ zh?: string | null | undefined;
374
+ en: string;
375
+ }>;
376
+ declare const DRMealtimeSeoDescription: z.ZodObject<{
377
+ en: z.ZodString;
378
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
379
+ }, "strip", z.ZodTypeAny, {
380
+ zh?: string | null | undefined;
381
+ en: string;
382
+ }, {
383
+ zh?: string | null | undefined;
384
+ en: string;
385
+ }>;
386
+ declare const DRMealtimeTimePeriod: z.ZodObject<{
387
+ start: z.ZodString;
388
+ end: z.ZodString;
389
+ }, "strip", z.ZodTypeAny, {
390
+ start: string;
391
+ end: string;
392
+ }, {
393
+ start: string;
394
+ end: string;
395
+ }>;
396
+ declare const DRMealtimeScheduler: z.ZodObject<{
397
+ day_of_week: z.ZodNumber;
398
+ time_periods: z.ZodArray<z.ZodObject<{
399
+ start: z.ZodString;
400
+ end: z.ZodString;
401
+ }, "strip", z.ZodTypeAny, {
402
+ start: string;
403
+ end: string;
404
+ }, {
405
+ start: string;
406
+ end: string;
407
+ }>, "many">;
408
+ }, "strip", z.ZodTypeAny, {
409
+ day_of_week: number;
410
+ time_periods: {
411
+ start: string;
412
+ end: string;
413
+ }[];
414
+ }, {
415
+ day_of_week: number;
416
+ time_periods: {
417
+ start: string;
418
+ end: string;
419
+ }[];
420
+ }>;
421
+ declare const DRMealtime: z.ZodObject<{
422
+ id: z.ZodString;
423
+ name: z.ZodObject<{
424
+ en: z.ZodString;
425
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
426
+ }, "strip", z.ZodTypeAny, {
427
+ zh?: string | null | undefined;
428
+ en: string;
429
+ }, {
430
+ zh?: string | null | undefined;
431
+ en: string;
432
+ }>;
433
+ description: z.ZodNullable<z.ZodOptional<z.ZodObject<{
434
+ en: z.ZodString;
435
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
436
+ }, "strip", z.ZodTypeAny, {
437
+ zh?: string | null | undefined;
438
+ en: string;
439
+ }, {
440
+ zh?: string | null | undefined;
441
+ en: string;
442
+ }>>>;
443
+ seo_description: z.ZodNullable<z.ZodOptional<z.ZodObject<{
444
+ en: z.ZodString;
445
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
446
+ }, "strip", z.ZodTypeAny, {
447
+ zh?: string | null | undefined;
448
+ en: string;
449
+ }, {
450
+ zh?: string | null | undefined;
451
+ en: string;
452
+ }>>>;
453
+ image: z.ZodObject<{
454
+ url: z.ZodString;
455
+ }, "strip", z.ZodTypeAny, {
456
+ url: string;
457
+ }, {
458
+ url: string;
459
+ }>;
460
+ category_ids: z.ZodArray<z.ZodString, "many">;
461
+ schedule: z.ZodArray<z.ZodObject<{
462
+ day_of_week: z.ZodNumber;
463
+ time_periods: z.ZodArray<z.ZodObject<{
464
+ start: z.ZodString;
465
+ end: z.ZodString;
466
+ }, "strip", z.ZodTypeAny, {
467
+ start: string;
468
+ end: string;
469
+ }, {
470
+ start: string;
471
+ end: string;
472
+ }>, "many">;
473
+ }, "strip", z.ZodTypeAny, {
474
+ day_of_week: number;
475
+ time_periods: {
476
+ start: string;
477
+ end: string;
478
+ }[];
479
+ }, {
480
+ day_of_week: number;
481
+ time_periods: {
482
+ start: string;
483
+ end: string;
484
+ }[];
485
+ }>, "many">;
486
+ }, "strip", z.ZodTypeAny, {
487
+ description?: {
488
+ zh?: string | null | undefined;
489
+ en: string;
490
+ } | null | undefined;
491
+ seo_description?: {
492
+ zh?: string | null | undefined;
493
+ en: string;
494
+ } | null | undefined;
495
+ name: {
496
+ zh?: string | null | undefined;
497
+ en: string;
498
+ };
499
+ image: {
500
+ url: string;
501
+ };
502
+ id: string;
503
+ schedule: {
504
+ day_of_week: number;
505
+ time_periods: {
506
+ start: string;
507
+ end: string;
508
+ }[];
509
+ }[];
510
+ category_ids: string[];
511
+ }, {
512
+ description?: {
513
+ zh?: string | null | undefined;
514
+ en: string;
515
+ } | null | undefined;
516
+ seo_description?: {
517
+ zh?: string | null | undefined;
518
+ en: string;
519
+ } | null | undefined;
520
+ name: {
521
+ zh?: string | null | undefined;
522
+ en: string;
523
+ };
524
+ image: {
525
+ url: string;
526
+ };
527
+ id: string;
528
+ schedule: {
529
+ day_of_week: number;
530
+ time_periods: {
531
+ start: string;
532
+ end: string;
533
+ }[];
534
+ }[];
535
+ category_ids: string[];
536
+ }>;
537
+ declare const DRCategoryName: z.ZodObject<{
538
+ en: z.ZodString;
539
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
540
+ }, "strip", z.ZodTypeAny, {
541
+ zh?: string | null | undefined;
542
+ en: string;
543
+ }, {
544
+ zh?: string | null | undefined;
545
+ en: string;
546
+ }>;
547
+ declare const DRCategoryDescription: z.ZodObject<{
548
+ en: z.ZodString;
549
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
550
+ }, "strip", z.ZodTypeAny, {
551
+ zh?: string | null | undefined;
552
+ en: string;
553
+ }, {
554
+ zh?: string | null | undefined;
555
+ en: string;
556
+ }>;
557
+ declare const DRCategory: z.ZodObject<{
558
+ id: z.ZodString;
559
+ name: z.ZodObject<{
560
+ en: z.ZodString;
561
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
562
+ }, "strip", z.ZodTypeAny, {
563
+ zh?: string | null | undefined;
564
+ en: string;
565
+ }, {
566
+ zh?: string | null | undefined;
567
+ en: string;
568
+ }>;
569
+ description: z.ZodNullable<z.ZodOptional<z.ZodObject<{
570
+ en: z.ZodString;
571
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
572
+ }, "strip", z.ZodTypeAny, {
573
+ zh?: string | null | undefined;
574
+ en: string;
575
+ }, {
576
+ zh?: string | null | undefined;
577
+ en: string;
578
+ }>>>;
579
+ item_ids: z.ZodArray<z.ZodString, "many">;
580
+ }, "strip", z.ZodTypeAny, {
581
+ description?: {
582
+ zh?: string | null | undefined;
583
+ en: string;
584
+ } | null | undefined;
585
+ name: {
586
+ zh?: string | null | undefined;
587
+ en: string;
588
+ };
589
+ id: string;
590
+ item_ids: string[];
591
+ }, {
592
+ description?: {
593
+ zh?: string | null | undefined;
594
+ en: string;
595
+ } | null | undefined;
596
+ name: {
597
+ zh?: string | null | undefined;
598
+ en: string;
599
+ };
600
+ id: string;
601
+ item_ids: string[];
602
+ }>;
603
+ declare const DRModifierName: z.ZodObject<{
604
+ en: z.ZodString;
605
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
606
+ }, "strip", z.ZodTypeAny, {
607
+ zh?: string | null | undefined;
608
+ en: string;
609
+ }, {
610
+ zh?: string | null | undefined;
611
+ en: string;
612
+ }>;
613
+ declare const DRModifierDescription: z.ZodObject<{
614
+ en: z.ZodString;
615
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
616
+ }, "strip", z.ZodTypeAny, {
617
+ zh?: string | null | undefined;
618
+ en: string;
619
+ }, {
620
+ zh?: string | null | undefined;
621
+ en: string;
622
+ }>;
623
+ declare const DRModifier: z.ZodObject<{
624
+ id: z.ZodString;
625
+ name: z.ZodObject<{
626
+ en: z.ZodString;
627
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
628
+ }, "strip", z.ZodTypeAny, {
629
+ zh?: string | null | undefined;
630
+ en: string;
631
+ }, {
632
+ zh?: string | null | undefined;
633
+ en: string;
634
+ }>;
635
+ description: z.ZodNullable<z.ZodOptional<z.ZodObject<{
636
+ en: z.ZodString;
637
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
638
+ }, "strip", z.ZodTypeAny, {
639
+ zh?: string | null | undefined;
640
+ en: string;
641
+ }, {
642
+ zh?: string | null | undefined;
643
+ en: string;
644
+ }>>>;
645
+ min_selection: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
646
+ max_selection: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
647
+ repeatable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
648
+ item_ids: z.ZodArray<z.ZodString, "many">;
649
+ type: z.ZodNullable<z.ZodOptional<z.ZodEnum<["up-sell-existing-items", "remove-ingredient", "add-ingredient", "cooking-instruction", "size-modification", "product-variation", "gift-wrap", "bundle-item", "add-separate-condimen"]>>>;
650
+ }, "strip", z.ZodTypeAny, {
651
+ type?: "up-sell-existing-items" | "remove-ingredient" | "add-ingredient" | "cooking-instruction" | "size-modification" | "product-variation" | "gift-wrap" | "bundle-item" | "add-separate-condimen" | null | undefined;
652
+ description?: {
653
+ zh?: string | null | undefined;
654
+ en: string;
655
+ } | null | undefined;
656
+ min_selection?: number | null | undefined;
657
+ max_selection?: number | null | undefined;
658
+ repeatable?: boolean | null | undefined;
659
+ name: {
660
+ zh?: string | null | undefined;
661
+ en: string;
662
+ };
663
+ id: string;
664
+ item_ids: string[];
665
+ }, {
666
+ type?: "up-sell-existing-items" | "remove-ingredient" | "add-ingredient" | "cooking-instruction" | "size-modification" | "product-variation" | "gift-wrap" | "bundle-item" | "add-separate-condimen" | null | undefined;
667
+ description?: {
668
+ zh?: string | null | undefined;
669
+ en: string;
670
+ } | null | undefined;
671
+ min_selection?: number | null | undefined;
672
+ max_selection?: number | null | undefined;
673
+ repeatable?: boolean | null | undefined;
674
+ name: {
675
+ zh?: string | null | undefined;
676
+ en: string;
677
+ };
678
+ id: string;
679
+ item_ids: string[];
680
+ }>;
681
+ declare const DRCatalog: z.ZodObject<{
682
+ mealtimes: z.ZodArray<z.ZodObject<{
683
+ id: z.ZodString;
684
+ name: z.ZodObject<{
685
+ en: z.ZodString;
686
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
687
+ }, "strip", z.ZodTypeAny, {
688
+ zh?: string | null | undefined;
689
+ en: string;
690
+ }, {
691
+ zh?: string | null | undefined;
692
+ en: string;
693
+ }>;
694
+ description: z.ZodNullable<z.ZodOptional<z.ZodObject<{
695
+ en: z.ZodString;
696
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
697
+ }, "strip", z.ZodTypeAny, {
698
+ zh?: string | null | undefined;
699
+ en: string;
700
+ }, {
701
+ zh?: string | null | undefined;
702
+ en: string;
703
+ }>>>;
704
+ seo_description: z.ZodNullable<z.ZodOptional<z.ZodObject<{
705
+ en: z.ZodString;
706
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
707
+ }, "strip", z.ZodTypeAny, {
708
+ zh?: string | null | undefined;
709
+ en: string;
710
+ }, {
711
+ zh?: string | null | undefined;
712
+ en: string;
713
+ }>>>;
714
+ image: z.ZodObject<{
715
+ url: z.ZodString;
716
+ }, "strip", z.ZodTypeAny, {
717
+ url: string;
718
+ }, {
719
+ url: string;
720
+ }>;
721
+ category_ids: z.ZodArray<z.ZodString, "many">;
722
+ schedule: z.ZodArray<z.ZodObject<{
723
+ day_of_week: z.ZodNumber;
724
+ time_periods: z.ZodArray<z.ZodObject<{
725
+ start: z.ZodString;
726
+ end: z.ZodString;
727
+ }, "strip", z.ZodTypeAny, {
728
+ start: string;
729
+ end: string;
730
+ }, {
731
+ start: string;
732
+ end: string;
733
+ }>, "many">;
734
+ }, "strip", z.ZodTypeAny, {
735
+ day_of_week: number;
736
+ time_periods: {
737
+ start: string;
738
+ end: string;
739
+ }[];
740
+ }, {
741
+ day_of_week: number;
742
+ time_periods: {
743
+ start: string;
744
+ end: string;
745
+ }[];
746
+ }>, "many">;
747
+ }, "strip", z.ZodTypeAny, {
748
+ description?: {
749
+ zh?: string | null | undefined;
750
+ en: string;
751
+ } | null | undefined;
752
+ seo_description?: {
753
+ zh?: string | null | undefined;
754
+ en: string;
755
+ } | null | undefined;
756
+ name: {
757
+ zh?: string | null | undefined;
758
+ en: string;
759
+ };
760
+ image: {
761
+ url: string;
762
+ };
763
+ id: string;
764
+ schedule: {
765
+ day_of_week: number;
766
+ time_periods: {
767
+ start: string;
768
+ end: string;
769
+ }[];
770
+ }[];
771
+ category_ids: string[];
772
+ }, {
773
+ description?: {
774
+ zh?: string | null | undefined;
775
+ en: string;
776
+ } | null | undefined;
777
+ seo_description?: {
778
+ zh?: string | null | undefined;
779
+ en: string;
780
+ } | null | undefined;
781
+ name: {
782
+ zh?: string | null | undefined;
783
+ en: string;
784
+ };
785
+ image: {
786
+ url: string;
787
+ };
788
+ id: string;
789
+ schedule: {
790
+ day_of_week: number;
791
+ time_periods: {
792
+ start: string;
793
+ end: string;
794
+ }[];
795
+ }[];
796
+ category_ids: string[];
797
+ }>, "many">;
798
+ categories: z.ZodArray<z.ZodObject<{
799
+ id: z.ZodString;
800
+ name: z.ZodObject<{
801
+ en: z.ZodString;
802
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
803
+ }, "strip", z.ZodTypeAny, {
804
+ zh?: string | null | undefined;
805
+ en: string;
806
+ }, {
807
+ zh?: string | null | undefined;
808
+ en: string;
809
+ }>;
810
+ description: z.ZodNullable<z.ZodOptional<z.ZodObject<{
811
+ en: z.ZodString;
812
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
813
+ }, "strip", z.ZodTypeAny, {
814
+ zh?: string | null | undefined;
815
+ en: string;
816
+ }, {
817
+ zh?: string | null | undefined;
818
+ en: string;
819
+ }>>>;
820
+ item_ids: z.ZodArray<z.ZodString, "many">;
821
+ }, "strip", z.ZodTypeAny, {
822
+ description?: {
823
+ zh?: string | null | undefined;
824
+ en: string;
825
+ } | null | undefined;
826
+ name: {
827
+ zh?: string | null | undefined;
828
+ en: string;
829
+ };
830
+ id: string;
831
+ item_ids: string[];
832
+ }, {
833
+ description?: {
834
+ zh?: string | null | undefined;
835
+ en: string;
836
+ } | null | undefined;
837
+ name: {
838
+ zh?: string | null | undefined;
839
+ en: string;
840
+ };
841
+ id: string;
842
+ item_ids: string[];
843
+ }>, "many">;
844
+ items: z.ZodArray<z.ZodObject<{
845
+ id: z.ZodString;
846
+ name: z.ZodObject<{
847
+ en: z.ZodString;
848
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
849
+ }, "strip", z.ZodTypeAny, {
850
+ zh?: string | null | undefined;
851
+ en: string;
852
+ }, {
853
+ zh?: string | null | undefined;
854
+ en: string;
855
+ }>;
856
+ description: z.ZodNullable<z.ZodOptional<z.ZodObject<{
857
+ en: z.ZodString;
858
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
859
+ }, "strip", z.ZodTypeAny, {
860
+ zh?: string | null | undefined;
861
+ en: string;
862
+ }, {
863
+ zh?: string | null | undefined;
864
+ en: string;
865
+ }>>>;
866
+ operational_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
867
+ price_info: z.ZodObject<{
868
+ price: z.ZodNumber;
869
+ overrides: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
870
+ type: z.ZodEnum<["ITEM", "MODIFIER", "PICKUP_ITEM", "PICKUP_MODIFIER"]>;
871
+ id: z.ZodString;
872
+ price: z.ZodNumber;
873
+ }, "strip", z.ZodTypeAny, {
874
+ id: string;
875
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
876
+ price: number;
877
+ }, {
878
+ id: string;
879
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
880
+ price: number;
881
+ }>, "many">>>;
882
+ fees: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
883
+ type: z.ZodString;
884
+ amount: z.ZodNumber;
885
+ }, "strip", z.ZodTypeAny, {
886
+ type: string;
887
+ amount: number;
888
+ }, {
889
+ type: string;
890
+ amount: number;
891
+ }>, "many">>>;
892
+ }, "strip", z.ZodTypeAny, {
893
+ overrides?: {
894
+ id: string;
895
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
896
+ price: number;
897
+ }[] | null | undefined;
898
+ fees?: {
899
+ type: string;
900
+ amount: number;
901
+ }[] | null | undefined;
902
+ price: number;
903
+ }, {
904
+ overrides?: {
905
+ id: string;
906
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
907
+ price: number;
908
+ }[] | null | undefined;
909
+ fees?: {
910
+ type: string;
911
+ amount: number;
912
+ }[] | null | undefined;
913
+ price: number;
914
+ }>;
915
+ plu: z.ZodNullable<z.ZodOptional<z.ZodString>>;
916
+ ian: z.ZodNullable<z.ZodOptional<z.ZodString>>;
917
+ barcodes: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
918
+ image: z.ZodNullable<z.ZodOptional<z.ZodObject<{
919
+ url: z.ZodString;
920
+ }, "strip", z.ZodTypeAny, {
921
+ url: string;
922
+ }, {
923
+ url: string;
924
+ }>>>;
925
+ is_eligible_as_replacement: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
926
+ is_eligible_for_substitution: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
927
+ is_returnable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
928
+ tax_rate: z.ZodEnum<["0", "9"]>;
929
+ modifier_ids: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
930
+ allergies: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
931
+ classifications: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
932
+ diets: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
933
+ nutritional_info: z.ZodNullable<z.ZodOptional<z.ZodObject<{
934
+ energy_kcal: z.ZodObject<{
935
+ low: z.ZodNumber;
936
+ high: z.ZodNumber;
937
+ }, "strip", z.ZodTypeAny, {
938
+ low: number;
939
+ high: number;
940
+ }, {
941
+ low: number;
942
+ high: number;
943
+ }>;
944
+ hfss: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
945
+ }, "strip", z.ZodTypeAny, {
946
+ hfss?: boolean | null | undefined;
947
+ energy_kcal: {
948
+ low: number;
949
+ high: number;
950
+ };
951
+ }, {
952
+ hfss?: boolean | null | undefined;
953
+ energy_kcal: {
954
+ low: number;
955
+ high: number;
956
+ };
957
+ }>>>;
958
+ contains_alcohol: z.ZodDefault<z.ZodBoolean>;
959
+ max_quantity: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
960
+ external_data: z.ZodNullable<z.ZodOptional<z.ZodString>>;
961
+ highlights: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
962
+ type: z.ZodEnum<["CHOICE", "ITEM", "BUNDLE"]>;
963
+ party_size: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
964
+ }, "strip", z.ZodTypeAny, {
965
+ image?: {
966
+ url: string;
967
+ } | null | undefined;
968
+ description?: {
969
+ zh?: string | null | undefined;
970
+ en: string;
971
+ } | null | undefined;
972
+ operational_name?: string | null | undefined;
973
+ plu?: string | null | undefined;
974
+ ian?: string | null | undefined;
975
+ barcodes?: string[] | null | undefined;
976
+ is_eligible_as_replacement?: boolean | null | undefined;
977
+ is_eligible_for_substitution?: boolean | null | undefined;
978
+ is_returnable?: boolean | null | undefined;
979
+ modifier_ids?: string[] | null | undefined;
980
+ allergies?: string[] | null | undefined;
981
+ classifications?: string[] | null | undefined;
982
+ diets?: string[] | null | undefined;
983
+ nutritional_info?: {
984
+ hfss?: boolean | null | undefined;
985
+ energy_kcal: {
986
+ low: number;
987
+ high: number;
988
+ };
989
+ } | null | undefined;
990
+ max_quantity?: number | null | undefined;
991
+ external_data?: string | null | undefined;
992
+ highlights?: string[] | null | undefined;
993
+ party_size?: number | null | undefined;
994
+ name: {
995
+ zh?: string | null | undefined;
996
+ en: string;
997
+ };
998
+ id: string;
999
+ type: "ITEM" | "CHOICE" | "BUNDLE";
1000
+ price_info: {
1001
+ overrides?: {
1002
+ id: string;
1003
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
1004
+ price: number;
1005
+ }[] | null | undefined;
1006
+ fees?: {
1007
+ type: string;
1008
+ amount: number;
1009
+ }[] | null | undefined;
1010
+ price: number;
1011
+ };
1012
+ tax_rate: "0" | "9";
1013
+ contains_alcohol: boolean;
1014
+ }, {
1015
+ image?: {
1016
+ url: string;
1017
+ } | null | undefined;
1018
+ description?: {
1019
+ zh?: string | null | undefined;
1020
+ en: string;
1021
+ } | null | undefined;
1022
+ operational_name?: string | null | undefined;
1023
+ plu?: string | null | undefined;
1024
+ ian?: string | null | undefined;
1025
+ barcodes?: string[] | null | undefined;
1026
+ is_eligible_as_replacement?: boolean | null | undefined;
1027
+ is_eligible_for_substitution?: boolean | null | undefined;
1028
+ is_returnable?: boolean | null | undefined;
1029
+ modifier_ids?: string[] | null | undefined;
1030
+ allergies?: string[] | null | undefined;
1031
+ classifications?: string[] | null | undefined;
1032
+ diets?: string[] | null | undefined;
1033
+ nutritional_info?: {
1034
+ hfss?: boolean | null | undefined;
1035
+ energy_kcal: {
1036
+ low: number;
1037
+ high: number;
1038
+ };
1039
+ } | null | undefined;
1040
+ contains_alcohol?: boolean | undefined;
1041
+ max_quantity?: number | null | undefined;
1042
+ external_data?: string | null | undefined;
1043
+ highlights?: string[] | null | undefined;
1044
+ party_size?: number | null | undefined;
1045
+ name: {
1046
+ zh?: string | null | undefined;
1047
+ en: string;
1048
+ };
1049
+ id: string;
1050
+ type: "ITEM" | "CHOICE" | "BUNDLE";
1051
+ price_info: {
1052
+ overrides?: {
1053
+ id: string;
1054
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
1055
+ price: number;
1056
+ }[] | null | undefined;
1057
+ fees?: {
1058
+ type: string;
1059
+ amount: number;
1060
+ }[] | null | undefined;
1061
+ price: number;
1062
+ };
1063
+ tax_rate: "0" | "9";
1064
+ }>, "many">;
1065
+ modifiers: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
1066
+ id: z.ZodString;
1067
+ name: z.ZodObject<{
1068
+ en: z.ZodString;
1069
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1070
+ }, "strip", z.ZodTypeAny, {
1071
+ zh?: string | null | undefined;
1072
+ en: string;
1073
+ }, {
1074
+ zh?: string | null | undefined;
1075
+ en: string;
1076
+ }>;
1077
+ description: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1078
+ en: z.ZodString;
1079
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1080
+ }, "strip", z.ZodTypeAny, {
1081
+ zh?: string | null | undefined;
1082
+ en: string;
1083
+ }, {
1084
+ zh?: string | null | undefined;
1085
+ en: string;
1086
+ }>>>;
1087
+ min_selection: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1088
+ max_selection: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1089
+ repeatable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1090
+ item_ids: z.ZodArray<z.ZodString, "many">;
1091
+ type: z.ZodNullable<z.ZodOptional<z.ZodEnum<["up-sell-existing-items", "remove-ingredient", "add-ingredient", "cooking-instruction", "size-modification", "product-variation", "gift-wrap", "bundle-item", "add-separate-condimen"]>>>;
1092
+ }, "strip", z.ZodTypeAny, {
1093
+ type?: "up-sell-existing-items" | "remove-ingredient" | "add-ingredient" | "cooking-instruction" | "size-modification" | "product-variation" | "gift-wrap" | "bundle-item" | "add-separate-condimen" | null | undefined;
1094
+ description?: {
1095
+ zh?: string | null | undefined;
1096
+ en: string;
1097
+ } | null | undefined;
1098
+ min_selection?: number | null | undefined;
1099
+ max_selection?: number | null | undefined;
1100
+ repeatable?: boolean | null | undefined;
1101
+ name: {
1102
+ zh?: string | null | undefined;
1103
+ en: string;
1104
+ };
1105
+ id: string;
1106
+ item_ids: string[];
1107
+ }, {
1108
+ type?: "up-sell-existing-items" | "remove-ingredient" | "add-ingredient" | "cooking-instruction" | "size-modification" | "product-variation" | "gift-wrap" | "bundle-item" | "add-separate-condimen" | null | undefined;
1109
+ description?: {
1110
+ zh?: string | null | undefined;
1111
+ en: string;
1112
+ } | null | undefined;
1113
+ min_selection?: number | null | undefined;
1114
+ max_selection?: number | null | undefined;
1115
+ repeatable?: boolean | null | undefined;
1116
+ name: {
1117
+ zh?: string | null | undefined;
1118
+ en: string;
1119
+ };
1120
+ id: string;
1121
+ item_ids: string[];
1122
+ }>, "many">>>;
1123
+ experience: z.ZodOptional<z.ZodEnum<["aisles"]>>;
1124
+ }, "strip", z.ZodTypeAny, {
1125
+ experience?: "aisles" | undefined;
1126
+ modifiers?: {
1127
+ type?: "up-sell-existing-items" | "remove-ingredient" | "add-ingredient" | "cooking-instruction" | "size-modification" | "product-variation" | "gift-wrap" | "bundle-item" | "add-separate-condimen" | null | undefined;
1128
+ description?: {
1129
+ zh?: string | null | undefined;
1130
+ en: string;
1131
+ } | null | undefined;
1132
+ min_selection?: number | null | undefined;
1133
+ max_selection?: number | null | undefined;
1134
+ repeatable?: boolean | null | undefined;
1135
+ name: {
1136
+ zh?: string | null | undefined;
1137
+ en: string;
1138
+ };
1139
+ id: string;
1140
+ item_ids: string[];
1141
+ }[] | null | undefined;
1142
+ items: {
1143
+ image?: {
1144
+ url: string;
1145
+ } | null | undefined;
1146
+ description?: {
1147
+ zh?: string | null | undefined;
1148
+ en: string;
1149
+ } | null | undefined;
1150
+ operational_name?: string | null | undefined;
1151
+ plu?: string | null | undefined;
1152
+ ian?: string | null | undefined;
1153
+ barcodes?: string[] | null | undefined;
1154
+ is_eligible_as_replacement?: boolean | null | undefined;
1155
+ is_eligible_for_substitution?: boolean | null | undefined;
1156
+ is_returnable?: boolean | null | undefined;
1157
+ modifier_ids?: string[] | null | undefined;
1158
+ allergies?: string[] | null | undefined;
1159
+ classifications?: string[] | null | undefined;
1160
+ diets?: string[] | null | undefined;
1161
+ nutritional_info?: {
1162
+ hfss?: boolean | null | undefined;
1163
+ energy_kcal: {
1164
+ low: number;
1165
+ high: number;
1166
+ };
1167
+ } | null | undefined;
1168
+ max_quantity?: number | null | undefined;
1169
+ external_data?: string | null | undefined;
1170
+ highlights?: string[] | null | undefined;
1171
+ party_size?: number | null | undefined;
1172
+ name: {
1173
+ zh?: string | null | undefined;
1174
+ en: string;
1175
+ };
1176
+ id: string;
1177
+ type: "ITEM" | "CHOICE" | "BUNDLE";
1178
+ price_info: {
1179
+ overrides?: {
1180
+ id: string;
1181
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
1182
+ price: number;
1183
+ }[] | null | undefined;
1184
+ fees?: {
1185
+ type: string;
1186
+ amount: number;
1187
+ }[] | null | undefined;
1188
+ price: number;
1189
+ };
1190
+ tax_rate: "0" | "9";
1191
+ contains_alcohol: boolean;
1192
+ }[];
1193
+ categories: {
1194
+ description?: {
1195
+ zh?: string | null | undefined;
1196
+ en: string;
1197
+ } | null | undefined;
1198
+ name: {
1199
+ zh?: string | null | undefined;
1200
+ en: string;
1201
+ };
1202
+ id: string;
1203
+ item_ids: string[];
1204
+ }[];
1205
+ mealtimes: {
1206
+ description?: {
1207
+ zh?: string | null | undefined;
1208
+ en: string;
1209
+ } | null | undefined;
1210
+ seo_description?: {
1211
+ zh?: string | null | undefined;
1212
+ en: string;
1213
+ } | null | undefined;
1214
+ name: {
1215
+ zh?: string | null | undefined;
1216
+ en: string;
1217
+ };
1218
+ image: {
1219
+ url: string;
1220
+ };
1221
+ id: string;
1222
+ schedule: {
1223
+ day_of_week: number;
1224
+ time_periods: {
1225
+ start: string;
1226
+ end: string;
1227
+ }[];
1228
+ }[];
1229
+ category_ids: string[];
1230
+ }[];
1231
+ }, {
1232
+ experience?: "aisles" | undefined;
1233
+ modifiers?: {
1234
+ type?: "up-sell-existing-items" | "remove-ingredient" | "add-ingredient" | "cooking-instruction" | "size-modification" | "product-variation" | "gift-wrap" | "bundle-item" | "add-separate-condimen" | null | undefined;
1235
+ description?: {
1236
+ zh?: string | null | undefined;
1237
+ en: string;
1238
+ } | null | undefined;
1239
+ min_selection?: number | null | undefined;
1240
+ max_selection?: number | null | undefined;
1241
+ repeatable?: boolean | null | undefined;
1242
+ name: {
1243
+ zh?: string | null | undefined;
1244
+ en: string;
1245
+ };
1246
+ id: string;
1247
+ item_ids: string[];
1248
+ }[] | null | undefined;
1249
+ items: {
1250
+ image?: {
1251
+ url: string;
1252
+ } | null | undefined;
1253
+ description?: {
1254
+ zh?: string | null | undefined;
1255
+ en: string;
1256
+ } | null | undefined;
1257
+ operational_name?: string | null | undefined;
1258
+ plu?: string | null | undefined;
1259
+ ian?: string | null | undefined;
1260
+ barcodes?: string[] | null | undefined;
1261
+ is_eligible_as_replacement?: boolean | null | undefined;
1262
+ is_eligible_for_substitution?: boolean | null | undefined;
1263
+ is_returnable?: boolean | null | undefined;
1264
+ modifier_ids?: string[] | null | undefined;
1265
+ allergies?: string[] | null | undefined;
1266
+ classifications?: string[] | null | undefined;
1267
+ diets?: string[] | null | undefined;
1268
+ nutritional_info?: {
1269
+ hfss?: boolean | null | undefined;
1270
+ energy_kcal: {
1271
+ low: number;
1272
+ high: number;
1273
+ };
1274
+ } | null | undefined;
1275
+ contains_alcohol?: boolean | undefined;
1276
+ max_quantity?: number | null | undefined;
1277
+ external_data?: string | null | undefined;
1278
+ highlights?: string[] | null | undefined;
1279
+ party_size?: number | null | undefined;
1280
+ name: {
1281
+ zh?: string | null | undefined;
1282
+ en: string;
1283
+ };
1284
+ id: string;
1285
+ type: "ITEM" | "CHOICE" | "BUNDLE";
1286
+ price_info: {
1287
+ overrides?: {
1288
+ id: string;
1289
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
1290
+ price: number;
1291
+ }[] | null | undefined;
1292
+ fees?: {
1293
+ type: string;
1294
+ amount: number;
1295
+ }[] | null | undefined;
1296
+ price: number;
1297
+ };
1298
+ tax_rate: "0" | "9";
1299
+ }[];
1300
+ categories: {
1301
+ description?: {
1302
+ zh?: string | null | undefined;
1303
+ en: string;
1304
+ } | null | undefined;
1305
+ name: {
1306
+ zh?: string | null | undefined;
1307
+ en: string;
1308
+ };
1309
+ id: string;
1310
+ item_ids: string[];
1311
+ }[];
1312
+ mealtimes: {
1313
+ description?: {
1314
+ zh?: string | null | undefined;
1315
+ en: string;
1316
+ } | null | undefined;
1317
+ seo_description?: {
1318
+ zh?: string | null | undefined;
1319
+ en: string;
1320
+ } | null | undefined;
1321
+ name: {
1322
+ zh?: string | null | undefined;
1323
+ en: string;
1324
+ };
1325
+ image: {
1326
+ url: string;
1327
+ };
1328
+ id: string;
1329
+ schedule: {
1330
+ day_of_week: number;
1331
+ time_periods: {
1332
+ start: string;
1333
+ end: string;
1334
+ }[];
1335
+ }[];
1336
+ category_ids: string[];
1337
+ }[];
1338
+ }>;
1339
+ declare const DRMenu: z.ZodObject<{
1340
+ name: z.ZodString;
1341
+ menu: z.ZodObject<{
1342
+ mealtimes: z.ZodArray<z.ZodObject<{
1343
+ id: z.ZodString;
1344
+ name: z.ZodObject<{
1345
+ en: z.ZodString;
1346
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1347
+ }, "strip", z.ZodTypeAny, {
1348
+ zh?: string | null | undefined;
1349
+ en: string;
1350
+ }, {
1351
+ zh?: string | null | undefined;
1352
+ en: string;
1353
+ }>;
1354
+ description: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1355
+ en: z.ZodString;
1356
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1357
+ }, "strip", z.ZodTypeAny, {
1358
+ zh?: string | null | undefined;
1359
+ en: string;
1360
+ }, {
1361
+ zh?: string | null | undefined;
1362
+ en: string;
1363
+ }>>>;
1364
+ seo_description: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1365
+ en: z.ZodString;
1366
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1367
+ }, "strip", z.ZodTypeAny, {
1368
+ zh?: string | null | undefined;
1369
+ en: string;
1370
+ }, {
1371
+ zh?: string | null | undefined;
1372
+ en: string;
1373
+ }>>>;
1374
+ image: z.ZodObject<{
1375
+ url: z.ZodString;
1376
+ }, "strip", z.ZodTypeAny, {
1377
+ url: string;
1378
+ }, {
1379
+ url: string;
1380
+ }>;
1381
+ category_ids: z.ZodArray<z.ZodString, "many">;
1382
+ schedule: z.ZodArray<z.ZodObject<{
1383
+ day_of_week: z.ZodNumber;
1384
+ time_periods: z.ZodArray<z.ZodObject<{
1385
+ start: z.ZodString;
1386
+ end: z.ZodString;
1387
+ }, "strip", z.ZodTypeAny, {
1388
+ start: string;
1389
+ end: string;
1390
+ }, {
1391
+ start: string;
1392
+ end: string;
1393
+ }>, "many">;
1394
+ }, "strip", z.ZodTypeAny, {
1395
+ day_of_week: number;
1396
+ time_periods: {
1397
+ start: string;
1398
+ end: string;
1399
+ }[];
1400
+ }, {
1401
+ day_of_week: number;
1402
+ time_periods: {
1403
+ start: string;
1404
+ end: string;
1405
+ }[];
1406
+ }>, "many">;
1407
+ }, "strip", z.ZodTypeAny, {
1408
+ description?: {
1409
+ zh?: string | null | undefined;
1410
+ en: string;
1411
+ } | null | undefined;
1412
+ seo_description?: {
1413
+ zh?: string | null | undefined;
1414
+ en: string;
1415
+ } | null | undefined;
1416
+ name: {
1417
+ zh?: string | null | undefined;
1418
+ en: string;
1419
+ };
1420
+ image: {
1421
+ url: string;
1422
+ };
1423
+ id: string;
1424
+ schedule: {
1425
+ day_of_week: number;
1426
+ time_periods: {
1427
+ start: string;
1428
+ end: string;
1429
+ }[];
1430
+ }[];
1431
+ category_ids: string[];
1432
+ }, {
1433
+ description?: {
1434
+ zh?: string | null | undefined;
1435
+ en: string;
1436
+ } | null | undefined;
1437
+ seo_description?: {
1438
+ zh?: string | null | undefined;
1439
+ en: string;
1440
+ } | null | undefined;
1441
+ name: {
1442
+ zh?: string | null | undefined;
1443
+ en: string;
1444
+ };
1445
+ image: {
1446
+ url: string;
1447
+ };
1448
+ id: string;
1449
+ schedule: {
1450
+ day_of_week: number;
1451
+ time_periods: {
1452
+ start: string;
1453
+ end: string;
1454
+ }[];
1455
+ }[];
1456
+ category_ids: string[];
1457
+ }>, "many">;
1458
+ categories: z.ZodArray<z.ZodObject<{
1459
+ id: z.ZodString;
1460
+ name: z.ZodObject<{
1461
+ en: z.ZodString;
1462
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1463
+ }, "strip", z.ZodTypeAny, {
1464
+ zh?: string | null | undefined;
1465
+ en: string;
1466
+ }, {
1467
+ zh?: string | null | undefined;
1468
+ en: string;
1469
+ }>;
1470
+ description: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1471
+ en: z.ZodString;
1472
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1473
+ }, "strip", z.ZodTypeAny, {
1474
+ zh?: string | null | undefined;
1475
+ en: string;
1476
+ }, {
1477
+ zh?: string | null | undefined;
1478
+ en: string;
1479
+ }>>>;
1480
+ item_ids: z.ZodArray<z.ZodString, "many">;
1481
+ }, "strip", z.ZodTypeAny, {
1482
+ description?: {
1483
+ zh?: string | null | undefined;
1484
+ en: string;
1485
+ } | null | undefined;
1486
+ name: {
1487
+ zh?: string | null | undefined;
1488
+ en: string;
1489
+ };
1490
+ id: string;
1491
+ item_ids: string[];
1492
+ }, {
1493
+ description?: {
1494
+ zh?: string | null | undefined;
1495
+ en: string;
1496
+ } | null | undefined;
1497
+ name: {
1498
+ zh?: string | null | undefined;
1499
+ en: string;
1500
+ };
1501
+ id: string;
1502
+ item_ids: string[];
1503
+ }>, "many">;
1504
+ items: z.ZodArray<z.ZodObject<{
1505
+ id: z.ZodString;
1506
+ name: z.ZodObject<{
1507
+ en: z.ZodString;
1508
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1509
+ }, "strip", z.ZodTypeAny, {
1510
+ zh?: string | null | undefined;
1511
+ en: string;
1512
+ }, {
1513
+ zh?: string | null | undefined;
1514
+ en: string;
1515
+ }>;
1516
+ description: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1517
+ en: z.ZodString;
1518
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1519
+ }, "strip", z.ZodTypeAny, {
1520
+ zh?: string | null | undefined;
1521
+ en: string;
1522
+ }, {
1523
+ zh?: string | null | undefined;
1524
+ en: string;
1525
+ }>>>;
1526
+ operational_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1527
+ price_info: z.ZodObject<{
1528
+ price: z.ZodNumber;
1529
+ overrides: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
1530
+ type: z.ZodEnum<["ITEM", "MODIFIER", "PICKUP_ITEM", "PICKUP_MODIFIER"]>;
1531
+ id: z.ZodString;
1532
+ price: z.ZodNumber;
1533
+ }, "strip", z.ZodTypeAny, {
1534
+ id: string;
1535
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
1536
+ price: number;
1537
+ }, {
1538
+ id: string;
1539
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
1540
+ price: number;
1541
+ }>, "many">>>;
1542
+ fees: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
1543
+ type: z.ZodString;
1544
+ amount: z.ZodNumber;
1545
+ }, "strip", z.ZodTypeAny, {
1546
+ type: string;
1547
+ amount: number;
1548
+ }, {
1549
+ type: string;
1550
+ amount: number;
1551
+ }>, "many">>>;
1552
+ }, "strip", z.ZodTypeAny, {
1553
+ overrides?: {
1554
+ id: string;
1555
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
1556
+ price: number;
1557
+ }[] | null | undefined;
1558
+ fees?: {
1559
+ type: string;
1560
+ amount: number;
1561
+ }[] | null | undefined;
1562
+ price: number;
1563
+ }, {
1564
+ overrides?: {
1565
+ id: string;
1566
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
1567
+ price: number;
1568
+ }[] | null | undefined;
1569
+ fees?: {
1570
+ type: string;
1571
+ amount: number;
1572
+ }[] | null | undefined;
1573
+ price: number;
1574
+ }>;
1575
+ plu: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1576
+ ian: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1577
+ barcodes: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
1578
+ image: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1579
+ url: z.ZodString;
1580
+ }, "strip", z.ZodTypeAny, {
1581
+ url: string;
1582
+ }, {
1583
+ url: string;
1584
+ }>>>;
1585
+ is_eligible_as_replacement: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1586
+ is_eligible_for_substitution: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1587
+ is_returnable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1588
+ tax_rate: z.ZodEnum<["0", "9"]>;
1589
+ modifier_ids: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
1590
+ allergies: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
1591
+ classifications: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
1592
+ diets: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
1593
+ nutritional_info: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1594
+ energy_kcal: z.ZodObject<{
1595
+ low: z.ZodNumber;
1596
+ high: z.ZodNumber;
1597
+ }, "strip", z.ZodTypeAny, {
1598
+ low: number;
1599
+ high: number;
1600
+ }, {
1601
+ low: number;
1602
+ high: number;
1603
+ }>;
1604
+ hfss: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1605
+ }, "strip", z.ZodTypeAny, {
1606
+ hfss?: boolean | null | undefined;
1607
+ energy_kcal: {
1608
+ low: number;
1609
+ high: number;
1610
+ };
1611
+ }, {
1612
+ hfss?: boolean | null | undefined;
1613
+ energy_kcal: {
1614
+ low: number;
1615
+ high: number;
1616
+ };
1617
+ }>>>;
1618
+ contains_alcohol: z.ZodDefault<z.ZodBoolean>;
1619
+ max_quantity: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1620
+ external_data: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1621
+ highlights: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
1622
+ type: z.ZodEnum<["CHOICE", "ITEM", "BUNDLE"]>;
1623
+ party_size: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1624
+ }, "strip", z.ZodTypeAny, {
1625
+ image?: {
1626
+ url: string;
1627
+ } | null | undefined;
1628
+ description?: {
1629
+ zh?: string | null | undefined;
1630
+ en: string;
1631
+ } | null | undefined;
1632
+ operational_name?: string | null | undefined;
1633
+ plu?: string | null | undefined;
1634
+ ian?: string | null | undefined;
1635
+ barcodes?: string[] | null | undefined;
1636
+ is_eligible_as_replacement?: boolean | null | undefined;
1637
+ is_eligible_for_substitution?: boolean | null | undefined;
1638
+ is_returnable?: boolean | null | undefined;
1639
+ modifier_ids?: string[] | null | undefined;
1640
+ allergies?: string[] | null | undefined;
1641
+ classifications?: string[] | null | undefined;
1642
+ diets?: string[] | null | undefined;
1643
+ nutritional_info?: {
1644
+ hfss?: boolean | null | undefined;
1645
+ energy_kcal: {
1646
+ low: number;
1647
+ high: number;
1648
+ };
1649
+ } | null | undefined;
1650
+ max_quantity?: number | null | undefined;
1651
+ external_data?: string | null | undefined;
1652
+ highlights?: string[] | null | undefined;
1653
+ party_size?: number | null | undefined;
1654
+ name: {
1655
+ zh?: string | null | undefined;
1656
+ en: string;
1657
+ };
1658
+ id: string;
1659
+ type: "ITEM" | "CHOICE" | "BUNDLE";
1660
+ price_info: {
1661
+ overrides?: {
1662
+ id: string;
1663
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
1664
+ price: number;
1665
+ }[] | null | undefined;
1666
+ fees?: {
1667
+ type: string;
1668
+ amount: number;
1669
+ }[] | null | undefined;
1670
+ price: number;
1671
+ };
1672
+ tax_rate: "0" | "9";
1673
+ contains_alcohol: boolean;
1674
+ }, {
1675
+ image?: {
1676
+ url: string;
1677
+ } | null | undefined;
1678
+ description?: {
1679
+ zh?: string | null | undefined;
1680
+ en: string;
1681
+ } | null | undefined;
1682
+ operational_name?: string | null | undefined;
1683
+ plu?: string | null | undefined;
1684
+ ian?: string | null | undefined;
1685
+ barcodes?: string[] | null | undefined;
1686
+ is_eligible_as_replacement?: boolean | null | undefined;
1687
+ is_eligible_for_substitution?: boolean | null | undefined;
1688
+ is_returnable?: boolean | null | undefined;
1689
+ modifier_ids?: string[] | null | undefined;
1690
+ allergies?: string[] | null | undefined;
1691
+ classifications?: string[] | null | undefined;
1692
+ diets?: string[] | null | undefined;
1693
+ nutritional_info?: {
1694
+ hfss?: boolean | null | undefined;
1695
+ energy_kcal: {
1696
+ low: number;
1697
+ high: number;
1698
+ };
1699
+ } | null | undefined;
1700
+ contains_alcohol?: boolean | undefined;
1701
+ max_quantity?: number | null | undefined;
1702
+ external_data?: string | null | undefined;
1703
+ highlights?: string[] | null | undefined;
1704
+ party_size?: number | null | undefined;
1705
+ name: {
1706
+ zh?: string | null | undefined;
1707
+ en: string;
1708
+ };
1709
+ id: string;
1710
+ type: "ITEM" | "CHOICE" | "BUNDLE";
1711
+ price_info: {
1712
+ overrides?: {
1713
+ id: string;
1714
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
1715
+ price: number;
1716
+ }[] | null | undefined;
1717
+ fees?: {
1718
+ type: string;
1719
+ amount: number;
1720
+ }[] | null | undefined;
1721
+ price: number;
1722
+ };
1723
+ tax_rate: "0" | "9";
1724
+ }>, "many">;
1725
+ modifiers: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
1726
+ id: z.ZodString;
1727
+ name: z.ZodObject<{
1728
+ en: z.ZodString;
1729
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1730
+ }, "strip", z.ZodTypeAny, {
1731
+ zh?: string | null | undefined;
1732
+ en: string;
1733
+ }, {
1734
+ zh?: string | null | undefined;
1735
+ en: string;
1736
+ }>;
1737
+ description: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1738
+ en: z.ZodString;
1739
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1740
+ }, "strip", z.ZodTypeAny, {
1741
+ zh?: string | null | undefined;
1742
+ en: string;
1743
+ }, {
1744
+ zh?: string | null | undefined;
1745
+ en: string;
1746
+ }>>>;
1747
+ min_selection: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1748
+ max_selection: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1749
+ repeatable: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1750
+ item_ids: z.ZodArray<z.ZodString, "many">;
1751
+ type: z.ZodNullable<z.ZodOptional<z.ZodEnum<["up-sell-existing-items", "remove-ingredient", "add-ingredient", "cooking-instruction", "size-modification", "product-variation", "gift-wrap", "bundle-item", "add-separate-condimen"]>>>;
1752
+ }, "strip", z.ZodTypeAny, {
1753
+ type?: "up-sell-existing-items" | "remove-ingredient" | "add-ingredient" | "cooking-instruction" | "size-modification" | "product-variation" | "gift-wrap" | "bundle-item" | "add-separate-condimen" | null | undefined;
1754
+ description?: {
1755
+ zh?: string | null | undefined;
1756
+ en: string;
1757
+ } | null | undefined;
1758
+ min_selection?: number | null | undefined;
1759
+ max_selection?: number | null | undefined;
1760
+ repeatable?: boolean | null | undefined;
1761
+ name: {
1762
+ zh?: string | null | undefined;
1763
+ en: string;
1764
+ };
1765
+ id: string;
1766
+ item_ids: string[];
1767
+ }, {
1768
+ type?: "up-sell-existing-items" | "remove-ingredient" | "add-ingredient" | "cooking-instruction" | "size-modification" | "product-variation" | "gift-wrap" | "bundle-item" | "add-separate-condimen" | null | undefined;
1769
+ description?: {
1770
+ zh?: string | null | undefined;
1771
+ en: string;
1772
+ } | null | undefined;
1773
+ min_selection?: number | null | undefined;
1774
+ max_selection?: number | null | undefined;
1775
+ repeatable?: boolean | null | undefined;
1776
+ name: {
1777
+ zh?: string | null | undefined;
1778
+ en: string;
1779
+ };
1780
+ id: string;
1781
+ item_ids: string[];
1782
+ }>, "many">>>;
1783
+ experience: z.ZodOptional<z.ZodEnum<["aisles"]>>;
1784
+ }, "strip", z.ZodTypeAny, {
1785
+ experience?: "aisles" | undefined;
1786
+ modifiers?: {
1787
+ type?: "up-sell-existing-items" | "remove-ingredient" | "add-ingredient" | "cooking-instruction" | "size-modification" | "product-variation" | "gift-wrap" | "bundle-item" | "add-separate-condimen" | null | undefined;
1788
+ description?: {
1789
+ zh?: string | null | undefined;
1790
+ en: string;
1791
+ } | null | undefined;
1792
+ min_selection?: number | null | undefined;
1793
+ max_selection?: number | null | undefined;
1794
+ repeatable?: boolean | null | undefined;
1795
+ name: {
1796
+ zh?: string | null | undefined;
1797
+ en: string;
1798
+ };
1799
+ id: string;
1800
+ item_ids: string[];
1801
+ }[] | null | undefined;
1802
+ items: {
1803
+ image?: {
1804
+ url: string;
1805
+ } | null | undefined;
1806
+ description?: {
1807
+ zh?: string | null | undefined;
1808
+ en: string;
1809
+ } | null | undefined;
1810
+ operational_name?: string | null | undefined;
1811
+ plu?: string | null | undefined;
1812
+ ian?: string | null | undefined;
1813
+ barcodes?: string[] | null | undefined;
1814
+ is_eligible_as_replacement?: boolean | null | undefined;
1815
+ is_eligible_for_substitution?: boolean | null | undefined;
1816
+ is_returnable?: boolean | null | undefined;
1817
+ modifier_ids?: string[] | null | undefined;
1818
+ allergies?: string[] | null | undefined;
1819
+ classifications?: string[] | null | undefined;
1820
+ diets?: string[] | null | undefined;
1821
+ nutritional_info?: {
1822
+ hfss?: boolean | null | undefined;
1823
+ energy_kcal: {
1824
+ low: number;
1825
+ high: number;
1826
+ };
1827
+ } | null | undefined;
1828
+ max_quantity?: number | null | undefined;
1829
+ external_data?: string | null | undefined;
1830
+ highlights?: string[] | null | undefined;
1831
+ party_size?: number | null | undefined;
1832
+ name: {
1833
+ zh?: string | null | undefined;
1834
+ en: string;
1835
+ };
1836
+ id: string;
1837
+ type: "ITEM" | "CHOICE" | "BUNDLE";
1838
+ price_info: {
1839
+ overrides?: {
1840
+ id: string;
1841
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
1842
+ price: number;
1843
+ }[] | null | undefined;
1844
+ fees?: {
1845
+ type: string;
1846
+ amount: number;
1847
+ }[] | null | undefined;
1848
+ price: number;
1849
+ };
1850
+ tax_rate: "0" | "9";
1851
+ contains_alcohol: boolean;
1852
+ }[];
1853
+ categories: {
1854
+ description?: {
1855
+ zh?: string | null | undefined;
1856
+ en: string;
1857
+ } | null | undefined;
1858
+ name: {
1859
+ zh?: string | null | undefined;
1860
+ en: string;
1861
+ };
1862
+ id: string;
1863
+ item_ids: string[];
1864
+ }[];
1865
+ mealtimes: {
1866
+ description?: {
1867
+ zh?: string | null | undefined;
1868
+ en: string;
1869
+ } | null | undefined;
1870
+ seo_description?: {
1871
+ zh?: string | null | undefined;
1872
+ en: string;
1873
+ } | null | undefined;
1874
+ name: {
1875
+ zh?: string | null | undefined;
1876
+ en: string;
1877
+ };
1878
+ image: {
1879
+ url: string;
1880
+ };
1881
+ id: string;
1882
+ schedule: {
1883
+ day_of_week: number;
1884
+ time_periods: {
1885
+ start: string;
1886
+ end: string;
1887
+ }[];
1888
+ }[];
1889
+ category_ids: string[];
1890
+ }[];
1891
+ }, {
1892
+ experience?: "aisles" | undefined;
1893
+ modifiers?: {
1894
+ type?: "up-sell-existing-items" | "remove-ingredient" | "add-ingredient" | "cooking-instruction" | "size-modification" | "product-variation" | "gift-wrap" | "bundle-item" | "add-separate-condimen" | null | undefined;
1895
+ description?: {
1896
+ zh?: string | null | undefined;
1897
+ en: string;
1898
+ } | null | undefined;
1899
+ min_selection?: number | null | undefined;
1900
+ max_selection?: number | null | undefined;
1901
+ repeatable?: boolean | null | undefined;
1902
+ name: {
1903
+ zh?: string | null | undefined;
1904
+ en: string;
1905
+ };
1906
+ id: string;
1907
+ item_ids: string[];
1908
+ }[] | null | undefined;
1909
+ items: {
1910
+ image?: {
1911
+ url: string;
1912
+ } | null | undefined;
1913
+ description?: {
1914
+ zh?: string | null | undefined;
1915
+ en: string;
1916
+ } | null | undefined;
1917
+ operational_name?: string | null | undefined;
1918
+ plu?: string | null | undefined;
1919
+ ian?: string | null | undefined;
1920
+ barcodes?: string[] | null | undefined;
1921
+ is_eligible_as_replacement?: boolean | null | undefined;
1922
+ is_eligible_for_substitution?: boolean | null | undefined;
1923
+ is_returnable?: boolean | null | undefined;
1924
+ modifier_ids?: string[] | null | undefined;
1925
+ allergies?: string[] | null | undefined;
1926
+ classifications?: string[] | null | undefined;
1927
+ diets?: string[] | null | undefined;
1928
+ nutritional_info?: {
1929
+ hfss?: boolean | null | undefined;
1930
+ energy_kcal: {
1931
+ low: number;
1932
+ high: number;
1933
+ };
1934
+ } | null | undefined;
1935
+ contains_alcohol?: boolean | undefined;
1936
+ max_quantity?: number | null | undefined;
1937
+ external_data?: string | null | undefined;
1938
+ highlights?: string[] | null | undefined;
1939
+ party_size?: number | null | undefined;
1940
+ name: {
1941
+ zh?: string | null | undefined;
1942
+ en: string;
1943
+ };
1944
+ id: string;
1945
+ type: "ITEM" | "CHOICE" | "BUNDLE";
1946
+ price_info: {
1947
+ overrides?: {
1948
+ id: string;
1949
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
1950
+ price: number;
1951
+ }[] | null | undefined;
1952
+ fees?: {
1953
+ type: string;
1954
+ amount: number;
1955
+ }[] | null | undefined;
1956
+ price: number;
1957
+ };
1958
+ tax_rate: "0" | "9";
1959
+ }[];
1960
+ categories: {
1961
+ description?: {
1962
+ zh?: string | null | undefined;
1963
+ en: string;
1964
+ } | null | undefined;
1965
+ name: {
1966
+ zh?: string | null | undefined;
1967
+ en: string;
1968
+ };
1969
+ id: string;
1970
+ item_ids: string[];
1971
+ }[];
1972
+ mealtimes: {
1973
+ description?: {
1974
+ zh?: string | null | undefined;
1975
+ en: string;
1976
+ } | null | undefined;
1977
+ seo_description?: {
1978
+ zh?: string | null | undefined;
1979
+ en: string;
1980
+ } | null | undefined;
1981
+ name: {
1982
+ zh?: string | null | undefined;
1983
+ en: string;
1984
+ };
1985
+ image: {
1986
+ url: string;
1987
+ };
1988
+ id: string;
1989
+ schedule: {
1990
+ day_of_week: number;
1991
+ time_periods: {
1992
+ start: string;
1993
+ end: string;
1994
+ }[];
1995
+ }[];
1996
+ category_ids: string[];
1997
+ }[];
1998
+ }>;
1999
+ site_ids: z.ZodArray<z.ZodString, "many">;
2000
+ }, "strip", z.ZodTypeAny, {
2001
+ name: string;
2002
+ menu: {
2003
+ experience?: "aisles" | undefined;
2004
+ modifiers?: {
2005
+ type?: "up-sell-existing-items" | "remove-ingredient" | "add-ingredient" | "cooking-instruction" | "size-modification" | "product-variation" | "gift-wrap" | "bundle-item" | "add-separate-condimen" | null | undefined;
2006
+ description?: {
2007
+ zh?: string | null | undefined;
2008
+ en: string;
2009
+ } | null | undefined;
2010
+ min_selection?: number | null | undefined;
2011
+ max_selection?: number | null | undefined;
2012
+ repeatable?: boolean | null | undefined;
2013
+ name: {
2014
+ zh?: string | null | undefined;
2015
+ en: string;
2016
+ };
2017
+ id: string;
2018
+ item_ids: string[];
2019
+ }[] | null | undefined;
2020
+ items: {
2021
+ image?: {
2022
+ url: string;
2023
+ } | null | undefined;
2024
+ description?: {
2025
+ zh?: string | null | undefined;
2026
+ en: string;
2027
+ } | null | undefined;
2028
+ operational_name?: string | null | undefined;
2029
+ plu?: string | null | undefined;
2030
+ ian?: string | null | undefined;
2031
+ barcodes?: string[] | null | undefined;
2032
+ is_eligible_as_replacement?: boolean | null | undefined;
2033
+ is_eligible_for_substitution?: boolean | null | undefined;
2034
+ is_returnable?: boolean | null | undefined;
2035
+ modifier_ids?: string[] | null | undefined;
2036
+ allergies?: string[] | null | undefined;
2037
+ classifications?: string[] | null | undefined;
2038
+ diets?: string[] | null | undefined;
2039
+ nutritional_info?: {
2040
+ hfss?: boolean | null | undefined;
2041
+ energy_kcal: {
2042
+ low: number;
2043
+ high: number;
2044
+ };
2045
+ } | null | undefined;
2046
+ max_quantity?: number | null | undefined;
2047
+ external_data?: string | null | undefined;
2048
+ highlights?: string[] | null | undefined;
2049
+ party_size?: number | null | undefined;
2050
+ name: {
2051
+ zh?: string | null | undefined;
2052
+ en: string;
2053
+ };
2054
+ id: string;
2055
+ type: "ITEM" | "CHOICE" | "BUNDLE";
2056
+ price_info: {
2057
+ overrides?: {
2058
+ id: string;
2059
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
2060
+ price: number;
2061
+ }[] | null | undefined;
2062
+ fees?: {
2063
+ type: string;
2064
+ amount: number;
2065
+ }[] | null | undefined;
2066
+ price: number;
2067
+ };
2068
+ tax_rate: "0" | "9";
2069
+ contains_alcohol: boolean;
2070
+ }[];
2071
+ categories: {
2072
+ description?: {
2073
+ zh?: string | null | undefined;
2074
+ en: string;
2075
+ } | null | undefined;
2076
+ name: {
2077
+ zh?: string | null | undefined;
2078
+ en: string;
2079
+ };
2080
+ id: string;
2081
+ item_ids: string[];
2082
+ }[];
2083
+ mealtimes: {
2084
+ description?: {
2085
+ zh?: string | null | undefined;
2086
+ en: string;
2087
+ } | null | undefined;
2088
+ seo_description?: {
2089
+ zh?: string | null | undefined;
2090
+ en: string;
2091
+ } | null | undefined;
2092
+ name: {
2093
+ zh?: string | null | undefined;
2094
+ en: string;
2095
+ };
2096
+ image: {
2097
+ url: string;
2098
+ };
2099
+ id: string;
2100
+ schedule: {
2101
+ day_of_week: number;
2102
+ time_periods: {
2103
+ start: string;
2104
+ end: string;
2105
+ }[];
2106
+ }[];
2107
+ category_ids: string[];
2108
+ }[];
2109
+ };
2110
+ site_ids: string[];
2111
+ }, {
2112
+ name: string;
2113
+ menu: {
2114
+ experience?: "aisles" | undefined;
2115
+ modifiers?: {
2116
+ type?: "up-sell-existing-items" | "remove-ingredient" | "add-ingredient" | "cooking-instruction" | "size-modification" | "product-variation" | "gift-wrap" | "bundle-item" | "add-separate-condimen" | null | undefined;
2117
+ description?: {
2118
+ zh?: string | null | undefined;
2119
+ en: string;
2120
+ } | null | undefined;
2121
+ min_selection?: number | null | undefined;
2122
+ max_selection?: number | null | undefined;
2123
+ repeatable?: boolean | null | undefined;
2124
+ name: {
2125
+ zh?: string | null | undefined;
2126
+ en: string;
2127
+ };
2128
+ id: string;
2129
+ item_ids: string[];
2130
+ }[] | null | undefined;
2131
+ items: {
2132
+ image?: {
2133
+ url: string;
2134
+ } | null | undefined;
2135
+ description?: {
2136
+ zh?: string | null | undefined;
2137
+ en: string;
2138
+ } | null | undefined;
2139
+ operational_name?: string | null | undefined;
2140
+ plu?: string | null | undefined;
2141
+ ian?: string | null | undefined;
2142
+ barcodes?: string[] | null | undefined;
2143
+ is_eligible_as_replacement?: boolean | null | undefined;
2144
+ is_eligible_for_substitution?: boolean | null | undefined;
2145
+ is_returnable?: boolean | null | undefined;
2146
+ modifier_ids?: string[] | null | undefined;
2147
+ allergies?: string[] | null | undefined;
2148
+ classifications?: string[] | null | undefined;
2149
+ diets?: string[] | null | undefined;
2150
+ nutritional_info?: {
2151
+ hfss?: boolean | null | undefined;
2152
+ energy_kcal: {
2153
+ low: number;
2154
+ high: number;
2155
+ };
2156
+ } | null | undefined;
2157
+ contains_alcohol?: boolean | undefined;
2158
+ max_quantity?: number | null | undefined;
2159
+ external_data?: string | null | undefined;
2160
+ highlights?: string[] | null | undefined;
2161
+ party_size?: number | null | undefined;
2162
+ name: {
2163
+ zh?: string | null | undefined;
2164
+ en: string;
2165
+ };
2166
+ id: string;
2167
+ type: "ITEM" | "CHOICE" | "BUNDLE";
2168
+ price_info: {
2169
+ overrides?: {
2170
+ id: string;
2171
+ type: "ITEM" | "MODIFIER" | "PICKUP_ITEM" | "PICKUP_MODIFIER";
2172
+ price: number;
2173
+ }[] | null | undefined;
2174
+ fees?: {
2175
+ type: string;
2176
+ amount: number;
2177
+ }[] | null | undefined;
2178
+ price: number;
2179
+ };
2180
+ tax_rate: "0" | "9";
2181
+ }[];
2182
+ categories: {
2183
+ description?: {
2184
+ zh?: string | null | undefined;
2185
+ en: string;
2186
+ } | null | undefined;
2187
+ name: {
2188
+ zh?: string | null | undefined;
2189
+ en: string;
2190
+ };
2191
+ id: string;
2192
+ item_ids: string[];
2193
+ }[];
2194
+ mealtimes: {
2195
+ description?: {
2196
+ zh?: string | null | undefined;
2197
+ en: string;
2198
+ } | null | undefined;
2199
+ seo_description?: {
2200
+ zh?: string | null | undefined;
2201
+ en: string;
2202
+ } | null | undefined;
2203
+ name: {
2204
+ zh?: string | null | undefined;
2205
+ en: string;
2206
+ };
2207
+ image: {
2208
+ url: string;
2209
+ };
2210
+ id: string;
2211
+ schedule: {
2212
+ day_of_week: number;
2213
+ time_periods: {
2214
+ start: string;
2215
+ end: string;
2216
+ }[];
2217
+ }[];
2218
+ category_ids: string[];
2219
+ }[];
2220
+ };
2221
+ site_ids: string[];
2222
+ }>;
2223
+ declare const DRItemStatus: z.ZodObject<{
2224
+ item_id: z.ZodString;
2225
+ status: z.ZodEnum<["available", "unavailable", "hidden"]>;
2226
+ }, "strip", z.ZodTypeAny, {
2227
+ status: "hidden" | "available" | "unavailable";
2228
+ item_id: string;
2229
+ }, {
2230
+ status: "hidden" | "available" | "unavailable";
2231
+ item_id: string;
2232
+ }>;
2233
+ declare const DRItemUnavailability: z.ZodObject<{
2234
+ item_unavailabilities: z.ZodArray<z.ZodObject<{
2235
+ item_id: z.ZodString;
2236
+ status: z.ZodEnum<["available", "unavailable", "hidden"]>;
2237
+ }, "strip", z.ZodTypeAny, {
2238
+ status: "hidden" | "available" | "unavailable";
2239
+ item_id: string;
2240
+ }, {
2241
+ status: "hidden" | "available" | "unavailable";
2242
+ item_id: string;
2243
+ }>, "many">;
2244
+ }, "strip", z.ZodTypeAny, {
2245
+ item_unavailabilities: {
2246
+ status: "hidden" | "available" | "unavailable";
2247
+ item_id: string;
2248
+ }[];
2249
+ }, {
2250
+ item_unavailabilities: {
2251
+ status: "hidden" | "available" | "unavailable";
2252
+ item_id: string;
2253
+ }[];
2254
+ }>;
2255
+ declare const tempMealTime: z.ZodObject<{
2256
+ id: z.ZodString;
2257
+ name: z.ZodObject<{
2258
+ en: z.ZodString;
2259
+ zh: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2260
+ }, "strip", z.ZodTypeAny, {
2261
+ zh?: string | null | undefined;
2262
+ en: string;
2263
+ }, {
2264
+ zh?: string | null | undefined;
2265
+ en: string;
2266
+ }>;
2267
+ missingItemCategory: z.ZodArray<z.ZodString, "many">;
2268
+ missingItems: z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">;
2269
+ timePeriod: z.ZodArray<z.ZodArray<z.ZodObject<{
2270
+ start: z.ZodString;
2271
+ end: z.ZodString;
2272
+ }, "strip", z.ZodTypeAny, {
2273
+ start: string;
2274
+ end: string;
2275
+ }, {
2276
+ start: string;
2277
+ end: string;
2278
+ }>, "many">, "many">;
2279
+ }, "strip", z.ZodTypeAny, {
2280
+ name: {
2281
+ zh?: string | null | undefined;
2282
+ en: string;
2283
+ };
2284
+ id: string;
2285
+ missingItemCategory: string[];
2286
+ missingItems: string[][];
2287
+ timePeriod: {
2288
+ start: string;
2289
+ end: string;
2290
+ }[][];
2291
+ }, {
2292
+ name: {
2293
+ zh?: string | null | undefined;
2294
+ en: string;
2295
+ };
2296
+ id: string;
2297
+ missingItemCategory: string[];
2298
+ missingItems: string[][];
2299
+ timePeriod: {
2300
+ start: string;
2301
+ end: string;
2302
+ }[][];
2303
+ }>;
2304
+ declare const DRMenuUpdateResult: z.ZodObject<{
2305
+ status: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2306
+ result: z.ZodNullable<z.ZodOptional<z.ZodEnum<["MATCH_EXISTING_MENU"]>>>;
2307
+ }, "strip", z.ZodTypeAny, {
2308
+ status?: string | null | undefined;
2309
+ result?: "MATCH_EXISTING_MENU" | null | undefined;
2310
+ }, {
2311
+ status?: string | null | undefined;
2312
+ result?: "MATCH_EXISTING_MENU" | null | undefined;
2313
+ }>;
2314
+ export type TempMealTime = z.infer<typeof tempMealTime>;
2315
+ export type DRMenu = z.infer<typeof DRMenu>;
2316
+ export type DRItemName = z.infer<typeof DRItemName>;
2317
+ export type DRItemDescription = z.infer<typeof DRItemDescription>;
2318
+ export type DRItemPriceInfoOverride = z.infer<typeof DRItemPriceInfoOverride>;
2319
+ export type DRItemPriceInfoFee = z.infer<typeof DRItemPriceInfoFee>;
2320
+ export type DRItemPriceInfo = z.infer<typeof DRItemPriceInfo>;
2321
+ export type DRImage = z.infer<typeof DRImage>;
2322
+ export type DRItemEnergyKcal = z.infer<typeof DRItemEnergyKcal>;
2323
+ export type DRItemNutritionInfo = z.infer<typeof DRItemNutritionInfo>;
2324
+ export type DRItem = z.infer<typeof DRItem>;
2325
+ export type DRMealtimeName = z.infer<typeof DRMealtimeName>;
2326
+ export type DRMealtimeDescription = z.infer<typeof DRMealtimeDescription>;
2327
+ export type DRMealtimeSeoDescription = z.infer<typeof DRMealtimeSeoDescription>;
2328
+ export type DRMealtimeTimePeriod = z.infer<typeof DRMealtimeTimePeriod>;
2329
+ export type DRMealtimeScheduler = z.infer<typeof DRMealtimeScheduler>;
2330
+ export type DRMealtime = z.infer<typeof DRMealtime>;
2331
+ export type DRCategoryName = z.infer<typeof DRCategoryName>;
2332
+ export type DRCategoryDescription = z.infer<typeof DRCategoryDescription>;
2333
+ export type DRCategory = z.infer<typeof DRCategory>;
2334
+ export type DRModifierName = z.infer<typeof DRModifierName>;
2335
+ export type DRModifierDescription = z.infer<typeof DRModifierDescription>;
2336
+ export type DRModifier = z.infer<typeof DRModifier>;
2337
+ export type DRCatalog = z.infer<typeof DRCatalog>;
2338
+ export type DRItemStatus = z.infer<typeof DRItemStatus>;
2339
+ export type DRItemUnavailability = z.infer<typeof DRItemUnavailability>;
2340
+ export type DRMenuUpdateResult = z.infer<typeof DRMenuUpdateResult>;
2341
+ export {};