@deliverart/sdk-js-menu 2.1.31 → 2.1.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +141 -2
- package/dist/index.d.cts +546 -141
- package/dist/index.d.ts +546 -141
- package/dist/index.js +130 -2
- package/package.json +6 -6
package/dist/index.d.cts
CHANGED
|
@@ -11,6 +11,15 @@ declare const salesPriceDTOSchema: z.ZodObject<{
|
|
|
11
11
|
salesMode: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/sales_modes/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/sales_modes/:id">, unknown>>;
|
|
12
12
|
price: z.ZodDefault<z.ZodString>;
|
|
13
13
|
}, z.core.$strip>;
|
|
14
|
+
declare const menuVersionSchema: z.ZodObject<{
|
|
15
|
+
id: z.ZodString;
|
|
16
|
+
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
17
|
+
contentUrl: z.ZodURL;
|
|
18
|
+
filePath: z.ZodString;
|
|
19
|
+
createdAt: z.ZodString;
|
|
20
|
+
updatedAt: z.ZodString;
|
|
21
|
+
}, z.core.$strip>;
|
|
22
|
+
type MenuVersion = z.infer<typeof menuVersionSchema>;
|
|
14
23
|
declare const menuItemChoiceSchema: z.ZodObject<{
|
|
15
24
|
price: z.ZodDefault<z.ZodString>;
|
|
16
25
|
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
@@ -51,9 +60,10 @@ declare const menuItemChoiceSchema: z.ZodObject<{
|
|
|
51
60
|
mushrooms: "mushrooms";
|
|
52
61
|
}>>>;
|
|
53
62
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
63
|
+
vegan: "vegan";
|
|
64
|
+
vegetarian: "vegetarian";
|
|
65
|
+
"gluten-free": "gluten-free";
|
|
66
|
+
"dairy-free": "dairy-free";
|
|
57
67
|
}>>>;
|
|
58
68
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
59
69
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -85,10 +95,10 @@ declare const menuItemChoiceSchema: z.ZodObject<{
|
|
|
85
95
|
declare const menuItemItemSchema: z.ZodObject<{
|
|
86
96
|
price: z.ZodDefault<z.ZodString>;
|
|
87
97
|
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
88
|
-
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
89
98
|
createdAt: z.ZodString;
|
|
90
99
|
updatedAt: z.ZodString;
|
|
91
100
|
id: z.ZodString;
|
|
101
|
+
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
92
102
|
channels: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
93
103
|
application: "application";
|
|
94
104
|
ecommerce: "ecommerce";
|
|
@@ -123,9 +133,10 @@ declare const menuItemItemSchema: z.ZodObject<{
|
|
|
123
133
|
mushrooms: "mushrooms";
|
|
124
134
|
}>>>;
|
|
125
135
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
136
|
+
vegan: "vegan";
|
|
137
|
+
vegetarian: "vegetarian";
|
|
138
|
+
"gluten-free": "gluten-free";
|
|
139
|
+
"dairy-free": "dairy-free";
|
|
129
140
|
}>>>;
|
|
130
141
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
131
142
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -160,10 +171,10 @@ declare const menuItemItemSchema: z.ZodObject<{
|
|
|
160
171
|
declare const menuItemBundleSchema: z.ZodObject<{
|
|
161
172
|
price: z.ZodDefault<z.ZodString>;
|
|
162
173
|
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
163
|
-
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
164
174
|
createdAt: z.ZodString;
|
|
165
175
|
updatedAt: z.ZodString;
|
|
166
176
|
id: z.ZodString;
|
|
177
|
+
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
167
178
|
channels: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
168
179
|
application: "application";
|
|
169
180
|
ecommerce: "ecommerce";
|
|
@@ -198,9 +209,10 @@ declare const menuItemBundleSchema: z.ZodObject<{
|
|
|
198
209
|
mushrooms: "mushrooms";
|
|
199
210
|
}>>>;
|
|
200
211
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
212
|
+
vegan: "vegan";
|
|
213
|
+
vegetarian: "vegetarian";
|
|
214
|
+
"gluten-free": "gluten-free";
|
|
215
|
+
"dairy-free": "dairy-free";
|
|
204
216
|
}>>>;
|
|
205
217
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
206
218
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -272,9 +284,10 @@ declare const menuItemSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
272
284
|
mushrooms: "mushrooms";
|
|
273
285
|
}>>>;
|
|
274
286
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
287
|
+
vegan: "vegan";
|
|
288
|
+
vegetarian: "vegetarian";
|
|
289
|
+
"gluten-free": "gluten-free";
|
|
290
|
+
"dairy-free": "dairy-free";
|
|
278
291
|
}>>>;
|
|
279
292
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
280
293
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -305,10 +318,10 @@ declare const menuItemSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
305
318
|
}, z.core.$strip>, z.ZodObject<{
|
|
306
319
|
price: z.ZodDefault<z.ZodString>;
|
|
307
320
|
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
308
|
-
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
309
321
|
createdAt: z.ZodString;
|
|
310
322
|
updatedAt: z.ZodString;
|
|
311
323
|
id: z.ZodString;
|
|
324
|
+
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
312
325
|
channels: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
313
326
|
application: "application";
|
|
314
327
|
ecommerce: "ecommerce";
|
|
@@ -343,9 +356,10 @@ declare const menuItemSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
343
356
|
mushrooms: "mushrooms";
|
|
344
357
|
}>>>;
|
|
345
358
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
359
|
+
vegan: "vegan";
|
|
360
|
+
vegetarian: "vegetarian";
|
|
361
|
+
"gluten-free": "gluten-free";
|
|
362
|
+
"dairy-free": "dairy-free";
|
|
349
363
|
}>>>;
|
|
350
364
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
351
365
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -379,10 +393,10 @@ declare const menuItemSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
379
393
|
}, z.core.$strip>, z.ZodObject<{
|
|
380
394
|
price: z.ZodDefault<z.ZodString>;
|
|
381
395
|
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
382
|
-
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
383
396
|
createdAt: z.ZodString;
|
|
384
397
|
updatedAt: z.ZodString;
|
|
385
398
|
id: z.ZodString;
|
|
399
|
+
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
386
400
|
channels: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
387
401
|
application: "application";
|
|
388
402
|
ecommerce: "ecommerce";
|
|
@@ -417,9 +431,10 @@ declare const menuItemSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
417
431
|
mushrooms: "mushrooms";
|
|
418
432
|
}>>>;
|
|
419
433
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
434
|
+
vegan: "vegan";
|
|
435
|
+
vegetarian: "vegetarian";
|
|
436
|
+
"gluten-free": "gluten-free";
|
|
437
|
+
"dairy-free": "dairy-free";
|
|
423
438
|
}>>>;
|
|
424
439
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
425
440
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -492,9 +507,10 @@ declare const menuItemDetailsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
492
507
|
mushrooms: "mushrooms";
|
|
493
508
|
}>>>;
|
|
494
509
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
510
|
+
vegan: "vegan";
|
|
511
|
+
vegetarian: "vegetarian";
|
|
512
|
+
"gluten-free": "gluten-free";
|
|
513
|
+
"dairy-free": "dairy-free";
|
|
498
514
|
}>>>;
|
|
499
515
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
500
516
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -525,10 +541,10 @@ declare const menuItemDetailsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
525
541
|
}, z.core.$strip>, z.ZodObject<{
|
|
526
542
|
price: z.ZodDefault<z.ZodString>;
|
|
527
543
|
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
528
|
-
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
529
544
|
createdAt: z.ZodString;
|
|
530
545
|
updatedAt: z.ZodString;
|
|
531
546
|
id: z.ZodString;
|
|
547
|
+
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
532
548
|
channels: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
533
549
|
application: "application";
|
|
534
550
|
ecommerce: "ecommerce";
|
|
@@ -563,9 +579,10 @@ declare const menuItemDetailsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
563
579
|
mushrooms: "mushrooms";
|
|
564
580
|
}>>>;
|
|
565
581
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
582
|
+
vegan: "vegan";
|
|
583
|
+
vegetarian: "vegetarian";
|
|
584
|
+
"gluten-free": "gluten-free";
|
|
585
|
+
"dairy-free": "dairy-free";
|
|
569
586
|
}>>>;
|
|
570
587
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
571
588
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -599,10 +616,10 @@ declare const menuItemDetailsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
599
616
|
}, z.core.$strip>, z.ZodObject<{
|
|
600
617
|
price: z.ZodDefault<z.ZodString>;
|
|
601
618
|
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
602
|
-
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
603
619
|
createdAt: z.ZodString;
|
|
604
620
|
updatedAt: z.ZodString;
|
|
605
621
|
id: z.ZodString;
|
|
622
|
+
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
606
623
|
channels: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
607
624
|
application: "application";
|
|
608
625
|
ecommerce: "ecommerce";
|
|
@@ -637,9 +654,10 @@ declare const menuItemDetailsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
637
654
|
mushrooms: "mushrooms";
|
|
638
655
|
}>>>;
|
|
639
656
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
657
|
+
vegan: "vegan";
|
|
658
|
+
vegetarian: "vegetarian";
|
|
659
|
+
"gluten-free": "gluten-free";
|
|
660
|
+
"dairy-free": "dairy-free";
|
|
643
661
|
}>>>;
|
|
644
662
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
645
663
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -715,9 +733,10 @@ declare const writableMenuItemSchema: z.ZodObject<{
|
|
|
715
733
|
mushrooms: "mushrooms";
|
|
716
734
|
}>>>;
|
|
717
735
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
736
|
+
vegan: "vegan";
|
|
737
|
+
vegetarian: "vegetarian";
|
|
738
|
+
"gluten-free": "gluten-free";
|
|
739
|
+
"dairy-free": "dairy-free";
|
|
721
740
|
}>>>;
|
|
722
741
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
723
742
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -1083,6 +1102,271 @@ declare const menuItemPriceOverridesQuerySchema: z.ZodObject<{
|
|
|
1083
1102
|
'updatedAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
1084
1103
|
}, z.core.$strip>;
|
|
1085
1104
|
type MenuItemPriceOverridesQueryParams = z.infer<typeof menuItemPriceOverridesQuerySchema>;
|
|
1105
|
+
declare const menuPriceDtoSchema: z.ZodObject<{
|
|
1106
|
+
salesModeId: z.ZodNullable<z.ZodUUID>;
|
|
1107
|
+
salesModeName: z.ZodNullable<z.ZodString>;
|
|
1108
|
+
price: z.ZodString;
|
|
1109
|
+
}, z.core.$strict>;
|
|
1110
|
+
type MenuPriceDto = z.infer<typeof menuPriceDtoSchema>;
|
|
1111
|
+
declare const menuPriceOverrideDtoSchema: z.ZodObject<{
|
|
1112
|
+
id: z.ZodUUID;
|
|
1113
|
+
type: z.ZodEnum<{
|
|
1114
|
+
ITEM: "ITEM";
|
|
1115
|
+
MODIFIER: "MODIFIER";
|
|
1116
|
+
}>;
|
|
1117
|
+
prices: z.ZodArray<z.ZodObject<{
|
|
1118
|
+
salesModeId: z.ZodNullable<z.ZodUUID>;
|
|
1119
|
+
salesModeName: z.ZodNullable<z.ZodString>;
|
|
1120
|
+
price: z.ZodString;
|
|
1121
|
+
}, z.core.$strict>>;
|
|
1122
|
+
suspended: z.ZodBoolean;
|
|
1123
|
+
referenceItem: z.ZodUUID;
|
|
1124
|
+
}, z.core.$strict>;
|
|
1125
|
+
type MenuPriceOverrideDto = z.infer<typeof menuPriceOverrideDtoSchema>;
|
|
1126
|
+
declare const menuCategoryDtoSchema: z.ZodObject<{
|
|
1127
|
+
id: z.ZodUUID;
|
|
1128
|
+
name: z.ZodArray<z.ZodObject<{
|
|
1129
|
+
locale: z.ZodNonOptional<z.ZodString>;
|
|
1130
|
+
text: z.ZodNonOptional<z.ZodString>;
|
|
1131
|
+
}, z.core.$strip>>;
|
|
1132
|
+
description: z.ZodArray<z.ZodObject<{
|
|
1133
|
+
locale: z.ZodNonOptional<z.ZodString>;
|
|
1134
|
+
text: z.ZodNonOptional<z.ZodString>;
|
|
1135
|
+
}, z.core.$strip>>;
|
|
1136
|
+
items: z.ZodArray<z.ZodUUID>;
|
|
1137
|
+
}, z.core.$strict>;
|
|
1138
|
+
type MenuCategoryDto = z.infer<typeof menuCategoryDtoSchema>;
|
|
1139
|
+
declare const menuItemDtoSchema: z.ZodObject<{
|
|
1140
|
+
id: z.ZodUUID;
|
|
1141
|
+
type: z.ZodEnum<{
|
|
1142
|
+
ITEM: "ITEM";
|
|
1143
|
+
CHOICE: "CHOICE";
|
|
1144
|
+
BUNDLE: "BUNDLE";
|
|
1145
|
+
}>;
|
|
1146
|
+
category: z.ZodNullable<z.ZodUUID>;
|
|
1147
|
+
name: z.ZodArray<z.ZodObject<{
|
|
1148
|
+
locale: z.ZodNonOptional<z.ZodString>;
|
|
1149
|
+
text: z.ZodNonOptional<z.ZodString>;
|
|
1150
|
+
}, z.core.$strip>>;
|
|
1151
|
+
description: z.ZodArray<z.ZodObject<{
|
|
1152
|
+
locale: z.ZodNonOptional<z.ZodString>;
|
|
1153
|
+
text: z.ZodNonOptional<z.ZodString>;
|
|
1154
|
+
}, z.core.$strip>>;
|
|
1155
|
+
allergens: z.ZodArray<z.ZodEnum<{
|
|
1156
|
+
"peanuts-and-derivatives": "peanuts-and-derivatives";
|
|
1157
|
+
crustaceans: "crustaceans";
|
|
1158
|
+
nuts: "nuts";
|
|
1159
|
+
gluten: "gluten";
|
|
1160
|
+
"milk-and-derivatives": "milk-and-derivatives";
|
|
1161
|
+
lupins: "lupins";
|
|
1162
|
+
molluscs: "molluscs";
|
|
1163
|
+
mustard: "mustard";
|
|
1164
|
+
fish: "fish";
|
|
1165
|
+
celery: "celery";
|
|
1166
|
+
sesame: "sesame";
|
|
1167
|
+
"sulfur-dioxide": "sulfur-dioxide";
|
|
1168
|
+
soy: "soy";
|
|
1169
|
+
"eggs-and-derivatives": "eggs-and-derivatives";
|
|
1170
|
+
mushrooms: "mushrooms";
|
|
1171
|
+
}>>;
|
|
1172
|
+
diets: z.ZodArray<z.ZodEnum<{
|
|
1173
|
+
vegan: "vegan";
|
|
1174
|
+
vegetarian: "vegetarian";
|
|
1175
|
+
"gluten-free": "gluten-free";
|
|
1176
|
+
"dairy-free": "dairy-free";
|
|
1177
|
+
}>>;
|
|
1178
|
+
prices: z.ZodArray<z.ZodObject<{
|
|
1179
|
+
salesModeId: z.ZodNullable<z.ZodUUID>;
|
|
1180
|
+
salesModeName: z.ZodNullable<z.ZodString>;
|
|
1181
|
+
price: z.ZodString;
|
|
1182
|
+
}, z.core.$strict>>;
|
|
1183
|
+
containsAlcohol: z.ZodBoolean;
|
|
1184
|
+
soldIndividually: z.ZodBoolean;
|
|
1185
|
+
suspended: z.ZodBoolean;
|
|
1186
|
+
variants: z.ZodArray<z.ZodObject<{
|
|
1187
|
+
id: z.ZodUUID;
|
|
1188
|
+
type: z.ZodEnum<{
|
|
1189
|
+
ITEM: "ITEM";
|
|
1190
|
+
MODIFIER: "MODIFIER";
|
|
1191
|
+
}>;
|
|
1192
|
+
prices: z.ZodArray<z.ZodObject<{
|
|
1193
|
+
salesModeId: z.ZodNullable<z.ZodUUID>;
|
|
1194
|
+
salesModeName: z.ZodNullable<z.ZodString>;
|
|
1195
|
+
price: z.ZodString;
|
|
1196
|
+
}, z.core.$strict>>;
|
|
1197
|
+
suspended: z.ZodBoolean;
|
|
1198
|
+
referenceItem: z.ZodUUID;
|
|
1199
|
+
}, z.core.$strict>>;
|
|
1200
|
+
modifiers: z.ZodArray<z.ZodUUID>;
|
|
1201
|
+
}, z.core.$strict>;
|
|
1202
|
+
type MenuItemDto = z.infer<typeof menuItemDtoSchema>;
|
|
1203
|
+
declare const menuModifierDtoSchema: z.ZodObject<{
|
|
1204
|
+
id: z.ZodUUID;
|
|
1205
|
+
name: z.ZodArray<z.ZodObject<{
|
|
1206
|
+
locale: z.ZodNonOptional<z.ZodString>;
|
|
1207
|
+
text: z.ZodNonOptional<z.ZodString>;
|
|
1208
|
+
}, z.core.$strip>>;
|
|
1209
|
+
description: z.ZodArray<z.ZodObject<{
|
|
1210
|
+
locale: z.ZodNonOptional<z.ZodString>;
|
|
1211
|
+
text: z.ZodNonOptional<z.ZodString>;
|
|
1212
|
+
}, z.core.$strip>>;
|
|
1213
|
+
sorting: z.ZodNumber;
|
|
1214
|
+
minSelection: z.ZodNumber;
|
|
1215
|
+
maxSelection: z.ZodNullable<z.ZodNumber>;
|
|
1216
|
+
repeatable: z.ZodBoolean;
|
|
1217
|
+
choices: z.ZodArray<z.ZodUUID>;
|
|
1218
|
+
priceOverrides: z.ZodArray<z.ZodObject<{
|
|
1219
|
+
id: z.ZodUUID;
|
|
1220
|
+
type: z.ZodEnum<{
|
|
1221
|
+
ITEM: "ITEM";
|
|
1222
|
+
MODIFIER: "MODIFIER";
|
|
1223
|
+
}>;
|
|
1224
|
+
prices: z.ZodArray<z.ZodObject<{
|
|
1225
|
+
salesModeId: z.ZodNullable<z.ZodUUID>;
|
|
1226
|
+
salesModeName: z.ZodNullable<z.ZodString>;
|
|
1227
|
+
price: z.ZodString;
|
|
1228
|
+
}, z.core.$strict>>;
|
|
1229
|
+
suspended: z.ZodBoolean;
|
|
1230
|
+
referenceItem: z.ZodUUID;
|
|
1231
|
+
}, z.core.$strict>>;
|
|
1232
|
+
variantOverrides: z.ZodArray<z.ZodObject<{
|
|
1233
|
+
id: z.ZodUUID;
|
|
1234
|
+
type: z.ZodEnum<{
|
|
1235
|
+
ITEM: "ITEM";
|
|
1236
|
+
MODIFIER: "MODIFIER";
|
|
1237
|
+
}>;
|
|
1238
|
+
prices: z.ZodArray<z.ZodObject<{
|
|
1239
|
+
salesModeId: z.ZodNullable<z.ZodUUID>;
|
|
1240
|
+
salesModeName: z.ZodNullable<z.ZodString>;
|
|
1241
|
+
price: z.ZodString;
|
|
1242
|
+
}, z.core.$strict>>;
|
|
1243
|
+
suspended: z.ZodBoolean;
|
|
1244
|
+
referenceItem: z.ZodUUID;
|
|
1245
|
+
}, z.core.$strict>>;
|
|
1246
|
+
}, z.core.$strict>;
|
|
1247
|
+
type MenuModifierDto = z.infer<typeof menuModifierDtoSchema>;
|
|
1248
|
+
declare const menuDtoSchema: z.ZodObject<{
|
|
1249
|
+
categories: z.ZodArray<z.ZodObject<{
|
|
1250
|
+
id: z.ZodUUID;
|
|
1251
|
+
name: z.ZodArray<z.ZodObject<{
|
|
1252
|
+
locale: z.ZodNonOptional<z.ZodString>;
|
|
1253
|
+
text: z.ZodNonOptional<z.ZodString>;
|
|
1254
|
+
}, z.core.$strip>>;
|
|
1255
|
+
description: z.ZodArray<z.ZodObject<{
|
|
1256
|
+
locale: z.ZodNonOptional<z.ZodString>;
|
|
1257
|
+
text: z.ZodNonOptional<z.ZodString>;
|
|
1258
|
+
}, z.core.$strip>>;
|
|
1259
|
+
items: z.ZodArray<z.ZodUUID>;
|
|
1260
|
+
}, z.core.$strict>>;
|
|
1261
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1262
|
+
id: z.ZodUUID;
|
|
1263
|
+
type: z.ZodEnum<{
|
|
1264
|
+
ITEM: "ITEM";
|
|
1265
|
+
CHOICE: "CHOICE";
|
|
1266
|
+
BUNDLE: "BUNDLE";
|
|
1267
|
+
}>;
|
|
1268
|
+
category: z.ZodNullable<z.ZodUUID>;
|
|
1269
|
+
name: z.ZodArray<z.ZodObject<{
|
|
1270
|
+
locale: z.ZodNonOptional<z.ZodString>;
|
|
1271
|
+
text: z.ZodNonOptional<z.ZodString>;
|
|
1272
|
+
}, z.core.$strip>>;
|
|
1273
|
+
description: z.ZodArray<z.ZodObject<{
|
|
1274
|
+
locale: z.ZodNonOptional<z.ZodString>;
|
|
1275
|
+
text: z.ZodNonOptional<z.ZodString>;
|
|
1276
|
+
}, z.core.$strip>>;
|
|
1277
|
+
allergens: z.ZodArray<z.ZodEnum<{
|
|
1278
|
+
"peanuts-and-derivatives": "peanuts-and-derivatives";
|
|
1279
|
+
crustaceans: "crustaceans";
|
|
1280
|
+
nuts: "nuts";
|
|
1281
|
+
gluten: "gluten";
|
|
1282
|
+
"milk-and-derivatives": "milk-and-derivatives";
|
|
1283
|
+
lupins: "lupins";
|
|
1284
|
+
molluscs: "molluscs";
|
|
1285
|
+
mustard: "mustard";
|
|
1286
|
+
fish: "fish";
|
|
1287
|
+
celery: "celery";
|
|
1288
|
+
sesame: "sesame";
|
|
1289
|
+
"sulfur-dioxide": "sulfur-dioxide";
|
|
1290
|
+
soy: "soy";
|
|
1291
|
+
"eggs-and-derivatives": "eggs-and-derivatives";
|
|
1292
|
+
mushrooms: "mushrooms";
|
|
1293
|
+
}>>;
|
|
1294
|
+
diets: z.ZodArray<z.ZodEnum<{
|
|
1295
|
+
vegan: "vegan";
|
|
1296
|
+
vegetarian: "vegetarian";
|
|
1297
|
+
"gluten-free": "gluten-free";
|
|
1298
|
+
"dairy-free": "dairy-free";
|
|
1299
|
+
}>>;
|
|
1300
|
+
prices: z.ZodArray<z.ZodObject<{
|
|
1301
|
+
salesModeId: z.ZodNullable<z.ZodUUID>;
|
|
1302
|
+
salesModeName: z.ZodNullable<z.ZodString>;
|
|
1303
|
+
price: z.ZodString;
|
|
1304
|
+
}, z.core.$strict>>;
|
|
1305
|
+
containsAlcohol: z.ZodBoolean;
|
|
1306
|
+
soldIndividually: z.ZodBoolean;
|
|
1307
|
+
suspended: z.ZodBoolean;
|
|
1308
|
+
variants: z.ZodArray<z.ZodObject<{
|
|
1309
|
+
id: z.ZodUUID;
|
|
1310
|
+
type: z.ZodEnum<{
|
|
1311
|
+
ITEM: "ITEM";
|
|
1312
|
+
MODIFIER: "MODIFIER";
|
|
1313
|
+
}>;
|
|
1314
|
+
prices: z.ZodArray<z.ZodObject<{
|
|
1315
|
+
salesModeId: z.ZodNullable<z.ZodUUID>;
|
|
1316
|
+
salesModeName: z.ZodNullable<z.ZodString>;
|
|
1317
|
+
price: z.ZodString;
|
|
1318
|
+
}, z.core.$strict>>;
|
|
1319
|
+
suspended: z.ZodBoolean;
|
|
1320
|
+
referenceItem: z.ZodUUID;
|
|
1321
|
+
}, z.core.$strict>>;
|
|
1322
|
+
modifiers: z.ZodArray<z.ZodUUID>;
|
|
1323
|
+
}, z.core.$strict>>;
|
|
1324
|
+
modifiers: z.ZodArray<z.ZodObject<{
|
|
1325
|
+
id: z.ZodUUID;
|
|
1326
|
+
name: z.ZodArray<z.ZodObject<{
|
|
1327
|
+
locale: z.ZodNonOptional<z.ZodString>;
|
|
1328
|
+
text: z.ZodNonOptional<z.ZodString>;
|
|
1329
|
+
}, z.core.$strip>>;
|
|
1330
|
+
description: z.ZodArray<z.ZodObject<{
|
|
1331
|
+
locale: z.ZodNonOptional<z.ZodString>;
|
|
1332
|
+
text: z.ZodNonOptional<z.ZodString>;
|
|
1333
|
+
}, z.core.$strip>>;
|
|
1334
|
+
sorting: z.ZodNumber;
|
|
1335
|
+
minSelection: z.ZodNumber;
|
|
1336
|
+
maxSelection: z.ZodNullable<z.ZodNumber>;
|
|
1337
|
+
repeatable: z.ZodBoolean;
|
|
1338
|
+
choices: z.ZodArray<z.ZodUUID>;
|
|
1339
|
+
priceOverrides: z.ZodArray<z.ZodObject<{
|
|
1340
|
+
id: z.ZodUUID;
|
|
1341
|
+
type: z.ZodEnum<{
|
|
1342
|
+
ITEM: "ITEM";
|
|
1343
|
+
MODIFIER: "MODIFIER";
|
|
1344
|
+
}>;
|
|
1345
|
+
prices: z.ZodArray<z.ZodObject<{
|
|
1346
|
+
salesModeId: z.ZodNullable<z.ZodUUID>;
|
|
1347
|
+
salesModeName: z.ZodNullable<z.ZodString>;
|
|
1348
|
+
price: z.ZodString;
|
|
1349
|
+
}, z.core.$strict>>;
|
|
1350
|
+
suspended: z.ZodBoolean;
|
|
1351
|
+
referenceItem: z.ZodUUID;
|
|
1352
|
+
}, z.core.$strict>>;
|
|
1353
|
+
variantOverrides: z.ZodArray<z.ZodObject<{
|
|
1354
|
+
id: z.ZodUUID;
|
|
1355
|
+
type: z.ZodEnum<{
|
|
1356
|
+
ITEM: "ITEM";
|
|
1357
|
+
MODIFIER: "MODIFIER";
|
|
1358
|
+
}>;
|
|
1359
|
+
prices: z.ZodArray<z.ZodObject<{
|
|
1360
|
+
salesModeId: z.ZodNullable<z.ZodUUID>;
|
|
1361
|
+
salesModeName: z.ZodNullable<z.ZodString>;
|
|
1362
|
+
price: z.ZodString;
|
|
1363
|
+
}, z.core.$strict>>;
|
|
1364
|
+
suspended: z.ZodBoolean;
|
|
1365
|
+
referenceItem: z.ZodUUID;
|
|
1366
|
+
}, z.core.$strict>>;
|
|
1367
|
+
}, z.core.$strict>>;
|
|
1368
|
+
}, z.core.$strict>;
|
|
1369
|
+
type MenuDto = z.infer<typeof menuDtoSchema>;
|
|
1086
1370
|
|
|
1087
1371
|
declare const createMenuItemCategoryInputSchema: z.ZodObject<{
|
|
1088
1372
|
pointOfSale: z.ZodNonOptional<z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>>;
|
|
@@ -2349,9 +2633,10 @@ declare const createMenuItemInputSchema: z.ZodObject<{
|
|
|
2349
2633
|
mushrooms: "mushrooms";
|
|
2350
2634
|
}>>>>;
|
|
2351
2635
|
diets: z.ZodNonOptional<z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
2636
|
+
vegan: "vegan";
|
|
2637
|
+
vegetarian: "vegetarian";
|
|
2638
|
+
"gluten-free": "gluten-free";
|
|
2639
|
+
"dairy-free": "dairy-free";
|
|
2355
2640
|
}>>>>;
|
|
2356
2641
|
taxRate: z.ZodNonOptional<z.ZodCoercedNumber<unknown>>;
|
|
2357
2642
|
containsAlcohol: z.ZodNonOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
@@ -2405,9 +2690,10 @@ declare const createMenuItemResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
2405
2690
|
mushrooms: "mushrooms";
|
|
2406
2691
|
}>>>;
|
|
2407
2692
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2693
|
+
vegan: "vegan";
|
|
2694
|
+
vegetarian: "vegetarian";
|
|
2695
|
+
"gluten-free": "gluten-free";
|
|
2696
|
+
"dairy-free": "dairy-free";
|
|
2411
2697
|
}>>>;
|
|
2412
2698
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
2413
2699
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -2438,10 +2724,10 @@ declare const createMenuItemResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
2438
2724
|
}, z.core.$strip>, z.ZodObject<{
|
|
2439
2725
|
price: z.ZodDefault<z.ZodString>;
|
|
2440
2726
|
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
2441
|
-
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
2442
2727
|
createdAt: z.ZodString;
|
|
2443
2728
|
updatedAt: z.ZodString;
|
|
2444
2729
|
id: z.ZodString;
|
|
2730
|
+
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
2445
2731
|
channels: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2446
2732
|
application: "application";
|
|
2447
2733
|
ecommerce: "ecommerce";
|
|
@@ -2476,9 +2762,10 @@ declare const createMenuItemResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
2476
2762
|
mushrooms: "mushrooms";
|
|
2477
2763
|
}>>>;
|
|
2478
2764
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2765
|
+
vegan: "vegan";
|
|
2766
|
+
vegetarian: "vegetarian";
|
|
2767
|
+
"gluten-free": "gluten-free";
|
|
2768
|
+
"dairy-free": "dairy-free";
|
|
2482
2769
|
}>>>;
|
|
2483
2770
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
2484
2771
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -2512,10 +2799,10 @@ declare const createMenuItemResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
2512
2799
|
}, z.core.$strip>, z.ZodObject<{
|
|
2513
2800
|
price: z.ZodDefault<z.ZodString>;
|
|
2514
2801
|
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
2515
|
-
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
2516
2802
|
createdAt: z.ZodString;
|
|
2517
2803
|
updatedAt: z.ZodString;
|
|
2518
2804
|
id: z.ZodString;
|
|
2805
|
+
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
2519
2806
|
channels: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2520
2807
|
application: "application";
|
|
2521
2808
|
ecommerce: "ecommerce";
|
|
@@ -2550,9 +2837,10 @@ declare const createMenuItemResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
2550
2837
|
mushrooms: "mushrooms";
|
|
2551
2838
|
}>>>;
|
|
2552
2839
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2840
|
+
vegan: "vegan";
|
|
2841
|
+
vegetarian: "vegetarian";
|
|
2842
|
+
"gluten-free": "gluten-free";
|
|
2843
|
+
"dairy-free": "dairy-free";
|
|
2556
2844
|
}>>>;
|
|
2557
2845
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
2558
2846
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -2632,9 +2920,10 @@ declare class CreateMenuItem extends AbstractApiRequest<typeof createMenuItemInp
|
|
|
2632
2920
|
mushrooms: "mushrooms";
|
|
2633
2921
|
}>>>>;
|
|
2634
2922
|
diets: z.ZodNonOptional<z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
|
|
2923
|
+
vegan: "vegan";
|
|
2924
|
+
vegetarian: "vegetarian";
|
|
2925
|
+
"gluten-free": "gluten-free";
|
|
2926
|
+
"dairy-free": "dairy-free";
|
|
2638
2927
|
}>>>>;
|
|
2639
2928
|
taxRate: z.ZodNonOptional<z.ZodCoercedNumber<unknown>>;
|
|
2640
2929
|
containsAlcohol: z.ZodNonOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
@@ -2687,9 +2976,10 @@ declare class CreateMenuItem extends AbstractApiRequest<typeof createMenuItemInp
|
|
|
2687
2976
|
mushrooms: "mushrooms";
|
|
2688
2977
|
}>>>;
|
|
2689
2978
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
|
|
2979
|
+
vegan: "vegan";
|
|
2980
|
+
vegetarian: "vegetarian";
|
|
2981
|
+
"gluten-free": "gluten-free";
|
|
2982
|
+
"dairy-free": "dairy-free";
|
|
2693
2983
|
}>>>;
|
|
2694
2984
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
2695
2985
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -2720,10 +3010,10 @@ declare class CreateMenuItem extends AbstractApiRequest<typeof createMenuItemInp
|
|
|
2720
3010
|
}, z.core.$strip>, z.ZodObject<{
|
|
2721
3011
|
price: z.ZodDefault<z.ZodString>;
|
|
2722
3012
|
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
2723
|
-
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
2724
3013
|
createdAt: z.ZodString;
|
|
2725
3014
|
updatedAt: z.ZodString;
|
|
2726
3015
|
id: z.ZodString;
|
|
3016
|
+
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
2727
3017
|
channels: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2728
3018
|
application: "application";
|
|
2729
3019
|
ecommerce: "ecommerce";
|
|
@@ -2758,9 +3048,10 @@ declare class CreateMenuItem extends AbstractApiRequest<typeof createMenuItemInp
|
|
|
2758
3048
|
mushrooms: "mushrooms";
|
|
2759
3049
|
}>>>;
|
|
2760
3050
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2761
|
-
|
|
2762
|
-
|
|
2763
|
-
|
|
3051
|
+
vegan: "vegan";
|
|
3052
|
+
vegetarian: "vegetarian";
|
|
3053
|
+
"gluten-free": "gluten-free";
|
|
3054
|
+
"dairy-free": "dairy-free";
|
|
2764
3055
|
}>>>;
|
|
2765
3056
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
2766
3057
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -2794,10 +3085,10 @@ declare class CreateMenuItem extends AbstractApiRequest<typeof createMenuItemInp
|
|
|
2794
3085
|
}, z.core.$strip>, z.ZodObject<{
|
|
2795
3086
|
price: z.ZodDefault<z.ZodString>;
|
|
2796
3087
|
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
2797
|
-
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
2798
3088
|
createdAt: z.ZodString;
|
|
2799
3089
|
updatedAt: z.ZodString;
|
|
2800
3090
|
id: z.ZodString;
|
|
3091
|
+
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
2801
3092
|
channels: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2802
3093
|
application: "application";
|
|
2803
3094
|
ecommerce: "ecommerce";
|
|
@@ -2832,9 +3123,10 @@ declare class CreateMenuItem extends AbstractApiRequest<typeof createMenuItemInp
|
|
|
2832
3123
|
mushrooms: "mushrooms";
|
|
2833
3124
|
}>>>;
|
|
2834
3125
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
3126
|
+
vegan: "vegan";
|
|
3127
|
+
vegetarian: "vegetarian";
|
|
3128
|
+
"gluten-free": "gluten-free";
|
|
3129
|
+
"dairy-free": "dairy-free";
|
|
2838
3130
|
}>>>;
|
|
2839
3131
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
2840
3132
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -2929,9 +3221,10 @@ declare const getMenuItemDetailsResponseSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
2929
3221
|
mushrooms: "mushrooms";
|
|
2930
3222
|
}>>>;
|
|
2931
3223
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
|
|
3224
|
+
vegan: "vegan";
|
|
3225
|
+
vegetarian: "vegetarian";
|
|
3226
|
+
"gluten-free": "gluten-free";
|
|
3227
|
+
"dairy-free": "dairy-free";
|
|
2935
3228
|
}>>>;
|
|
2936
3229
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
2937
3230
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -2962,10 +3255,10 @@ declare const getMenuItemDetailsResponseSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
2962
3255
|
}, z.core.$strip>, z.ZodObject<{
|
|
2963
3256
|
price: z.ZodDefault<z.ZodString>;
|
|
2964
3257
|
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
2965
|
-
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
2966
3258
|
createdAt: z.ZodString;
|
|
2967
3259
|
updatedAt: z.ZodString;
|
|
2968
3260
|
id: z.ZodString;
|
|
3261
|
+
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
2969
3262
|
channels: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2970
3263
|
application: "application";
|
|
2971
3264
|
ecommerce: "ecommerce";
|
|
@@ -3000,9 +3293,10 @@ declare const getMenuItemDetailsResponseSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
3000
3293
|
mushrooms: "mushrooms";
|
|
3001
3294
|
}>>>;
|
|
3002
3295
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
|
|
3296
|
+
vegan: "vegan";
|
|
3297
|
+
vegetarian: "vegetarian";
|
|
3298
|
+
"gluten-free": "gluten-free";
|
|
3299
|
+
"dairy-free": "dairy-free";
|
|
3006
3300
|
}>>>;
|
|
3007
3301
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
3008
3302
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -3036,10 +3330,10 @@ declare const getMenuItemDetailsResponseSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
3036
3330
|
}, z.core.$strip>, z.ZodObject<{
|
|
3037
3331
|
price: z.ZodDefault<z.ZodString>;
|
|
3038
3332
|
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
3039
|
-
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
3040
3333
|
createdAt: z.ZodString;
|
|
3041
3334
|
updatedAt: z.ZodString;
|
|
3042
3335
|
id: z.ZodString;
|
|
3336
|
+
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
3043
3337
|
channels: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
3044
3338
|
application: "application";
|
|
3045
3339
|
ecommerce: "ecommerce";
|
|
@@ -3074,9 +3368,10 @@ declare const getMenuItemDetailsResponseSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
3074
3368
|
mushrooms: "mushrooms";
|
|
3075
3369
|
}>>>;
|
|
3076
3370
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
3077
|
-
|
|
3078
|
-
|
|
3079
|
-
|
|
3371
|
+
vegan: "vegan";
|
|
3372
|
+
vegetarian: "vegetarian";
|
|
3373
|
+
"gluten-free": "gluten-free";
|
|
3374
|
+
"dairy-free": "dairy-free";
|
|
3080
3375
|
}>>>;
|
|
3081
3376
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
3082
3377
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -3154,9 +3449,10 @@ declare class GetMenuItemDetails extends AbstractApiRequest<typeof getMenuItemDe
|
|
|
3154
3449
|
mushrooms: "mushrooms";
|
|
3155
3450
|
}>>>;
|
|
3156
3451
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
|
|
3452
|
+
vegan: "vegan";
|
|
3453
|
+
vegetarian: "vegetarian";
|
|
3454
|
+
"gluten-free": "gluten-free";
|
|
3455
|
+
"dairy-free": "dairy-free";
|
|
3160
3456
|
}>>>;
|
|
3161
3457
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
3162
3458
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -3187,10 +3483,10 @@ declare class GetMenuItemDetails extends AbstractApiRequest<typeof getMenuItemDe
|
|
|
3187
3483
|
}, z.core.$strip>, z.ZodObject<{
|
|
3188
3484
|
price: z.ZodDefault<z.ZodString>;
|
|
3189
3485
|
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
3190
|
-
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
3191
3486
|
createdAt: z.ZodString;
|
|
3192
3487
|
updatedAt: z.ZodString;
|
|
3193
3488
|
id: z.ZodString;
|
|
3489
|
+
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
3194
3490
|
channels: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
3195
3491
|
application: "application";
|
|
3196
3492
|
ecommerce: "ecommerce";
|
|
@@ -3225,9 +3521,10 @@ declare class GetMenuItemDetails extends AbstractApiRequest<typeof getMenuItemDe
|
|
|
3225
3521
|
mushrooms: "mushrooms";
|
|
3226
3522
|
}>>>;
|
|
3227
3523
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
3228
|
-
|
|
3229
|
-
|
|
3230
|
-
|
|
3524
|
+
vegan: "vegan";
|
|
3525
|
+
vegetarian: "vegetarian";
|
|
3526
|
+
"gluten-free": "gluten-free";
|
|
3527
|
+
"dairy-free": "dairy-free";
|
|
3231
3528
|
}>>>;
|
|
3232
3529
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
3233
3530
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -3261,10 +3558,10 @@ declare class GetMenuItemDetails extends AbstractApiRequest<typeof getMenuItemDe
|
|
|
3261
3558
|
}, z.core.$strip>, z.ZodObject<{
|
|
3262
3559
|
price: z.ZodDefault<z.ZodString>;
|
|
3263
3560
|
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
3264
|
-
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
3265
3561
|
createdAt: z.ZodString;
|
|
3266
3562
|
updatedAt: z.ZodString;
|
|
3267
3563
|
id: z.ZodString;
|
|
3564
|
+
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
3268
3565
|
channels: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
3269
3566
|
application: "application";
|
|
3270
3567
|
ecommerce: "ecommerce";
|
|
@@ -3299,9 +3596,10 @@ declare class GetMenuItemDetails extends AbstractApiRequest<typeof getMenuItemDe
|
|
|
3299
3596
|
mushrooms: "mushrooms";
|
|
3300
3597
|
}>>>;
|
|
3301
3598
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
3302
|
-
|
|
3303
|
-
|
|
3304
|
-
|
|
3599
|
+
vegan: "vegan";
|
|
3600
|
+
vegetarian: "vegetarian";
|
|
3601
|
+
"gluten-free": "gluten-free";
|
|
3602
|
+
"dairy-free": "dairy-free";
|
|
3305
3603
|
}>>>;
|
|
3306
3604
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
3307
3605
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -3434,9 +3732,10 @@ declare const getMenuItemsResponseSchema: z.ZodObject<{
|
|
|
3434
3732
|
mushrooms: "mushrooms";
|
|
3435
3733
|
}>>>;
|
|
3436
3734
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
3437
|
-
|
|
3438
|
-
|
|
3439
|
-
|
|
3735
|
+
vegan: "vegan";
|
|
3736
|
+
vegetarian: "vegetarian";
|
|
3737
|
+
"gluten-free": "gluten-free";
|
|
3738
|
+
"dairy-free": "dairy-free";
|
|
3440
3739
|
}>>>;
|
|
3441
3740
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
3442
3741
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -3467,10 +3766,10 @@ declare const getMenuItemsResponseSchema: z.ZodObject<{
|
|
|
3467
3766
|
}, z.core.$strip>, z.ZodObject<{
|
|
3468
3767
|
price: z.ZodDefault<z.ZodString>;
|
|
3469
3768
|
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
3470
|
-
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
3471
3769
|
createdAt: z.ZodString;
|
|
3472
3770
|
updatedAt: z.ZodString;
|
|
3473
3771
|
id: z.ZodString;
|
|
3772
|
+
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
3474
3773
|
channels: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
3475
3774
|
application: "application";
|
|
3476
3775
|
ecommerce: "ecommerce";
|
|
@@ -3505,9 +3804,10 @@ declare const getMenuItemsResponseSchema: z.ZodObject<{
|
|
|
3505
3804
|
mushrooms: "mushrooms";
|
|
3506
3805
|
}>>>;
|
|
3507
3806
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
3508
|
-
|
|
3509
|
-
|
|
3510
|
-
|
|
3807
|
+
vegan: "vegan";
|
|
3808
|
+
vegetarian: "vegetarian";
|
|
3809
|
+
"gluten-free": "gluten-free";
|
|
3810
|
+
"dairy-free": "dairy-free";
|
|
3511
3811
|
}>>>;
|
|
3512
3812
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
3513
3813
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -3541,10 +3841,10 @@ declare const getMenuItemsResponseSchema: z.ZodObject<{
|
|
|
3541
3841
|
}, z.core.$strip>, z.ZodObject<{
|
|
3542
3842
|
price: z.ZodDefault<z.ZodString>;
|
|
3543
3843
|
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
3544
|
-
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
3545
3844
|
createdAt: z.ZodString;
|
|
3546
3845
|
updatedAt: z.ZodString;
|
|
3547
3846
|
id: z.ZodString;
|
|
3847
|
+
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
3548
3848
|
channels: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
3549
3849
|
application: "application";
|
|
3550
3850
|
ecommerce: "ecommerce";
|
|
@@ -3579,9 +3879,10 @@ declare const getMenuItemsResponseSchema: z.ZodObject<{
|
|
|
3579
3879
|
mushrooms: "mushrooms";
|
|
3580
3880
|
}>>>;
|
|
3581
3881
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3882
|
+
vegan: "vegan";
|
|
3883
|
+
vegetarian: "vegetarian";
|
|
3884
|
+
"gluten-free": "gluten-free";
|
|
3885
|
+
"dairy-free": "dairy-free";
|
|
3585
3886
|
}>>>;
|
|
3586
3887
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
3587
3888
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -3669,9 +3970,10 @@ declare class GetMenuItems extends AbstractApiRequest<typeof getMenuItemsInputSc
|
|
|
3669
3970
|
mushrooms: "mushrooms";
|
|
3670
3971
|
}>>>;
|
|
3671
3972
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
3672
|
-
|
|
3673
|
-
|
|
3674
|
-
|
|
3973
|
+
vegan: "vegan";
|
|
3974
|
+
vegetarian: "vegetarian";
|
|
3975
|
+
"gluten-free": "gluten-free";
|
|
3976
|
+
"dairy-free": "dairy-free";
|
|
3675
3977
|
}>>>;
|
|
3676
3978
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
3677
3979
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -3702,10 +4004,10 @@ declare class GetMenuItems extends AbstractApiRequest<typeof getMenuItemsInputSc
|
|
|
3702
4004
|
}, z.core.$strip>, z.ZodObject<{
|
|
3703
4005
|
price: z.ZodDefault<z.ZodString>;
|
|
3704
4006
|
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
3705
|
-
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
3706
4007
|
createdAt: z.ZodString;
|
|
3707
4008
|
updatedAt: z.ZodString;
|
|
3708
4009
|
id: z.ZodString;
|
|
4010
|
+
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
3709
4011
|
channels: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
3710
4012
|
application: "application";
|
|
3711
4013
|
ecommerce: "ecommerce";
|
|
@@ -3740,9 +4042,10 @@ declare class GetMenuItems extends AbstractApiRequest<typeof getMenuItemsInputSc
|
|
|
3740
4042
|
mushrooms: "mushrooms";
|
|
3741
4043
|
}>>>;
|
|
3742
4044
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
|
|
4045
|
+
vegan: "vegan";
|
|
4046
|
+
vegetarian: "vegetarian";
|
|
4047
|
+
"gluten-free": "gluten-free";
|
|
4048
|
+
"dairy-free": "dairy-free";
|
|
3746
4049
|
}>>>;
|
|
3747
4050
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
3748
4051
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -3776,10 +4079,10 @@ declare class GetMenuItems extends AbstractApiRequest<typeof getMenuItemsInputSc
|
|
|
3776
4079
|
}, z.core.$strip>, z.ZodObject<{
|
|
3777
4080
|
price: z.ZodDefault<z.ZodString>;
|
|
3778
4081
|
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
3779
|
-
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
3780
4082
|
createdAt: z.ZodString;
|
|
3781
4083
|
updatedAt: z.ZodString;
|
|
3782
4084
|
id: z.ZodString;
|
|
4085
|
+
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
3783
4086
|
channels: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
3784
4087
|
application: "application";
|
|
3785
4088
|
ecommerce: "ecommerce";
|
|
@@ -3814,9 +4117,10 @@ declare class GetMenuItems extends AbstractApiRequest<typeof getMenuItemsInputSc
|
|
|
3814
4117
|
mushrooms: "mushrooms";
|
|
3815
4118
|
}>>>;
|
|
3816
4119
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
3817
|
-
|
|
3818
|
-
|
|
3819
|
-
|
|
4120
|
+
vegan: "vegan";
|
|
4121
|
+
vegetarian: "vegetarian";
|
|
4122
|
+
"gluten-free": "gluten-free";
|
|
4123
|
+
"dairy-free": "dairy-free";
|
|
3820
4124
|
}>>>;
|
|
3821
4125
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
3822
4126
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -3957,9 +4261,10 @@ declare const updateMenuItemInputSchema: z.ZodObject<{
|
|
|
3957
4261
|
mushrooms: "mushrooms";
|
|
3958
4262
|
}>>>>;
|
|
3959
4263
|
diets: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
3960
|
-
|
|
3961
|
-
|
|
3962
|
-
|
|
4264
|
+
vegan: "vegan";
|
|
4265
|
+
vegetarian: "vegetarian";
|
|
4266
|
+
"gluten-free": "gluten-free";
|
|
4267
|
+
"dairy-free": "dairy-free";
|
|
3963
4268
|
}>>>>;
|
|
3964
4269
|
taxRate: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
3965
4270
|
containsAlcohol: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
@@ -4013,9 +4318,10 @@ declare const updateMenuItemResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
4013
4318
|
mushrooms: "mushrooms";
|
|
4014
4319
|
}>>>;
|
|
4015
4320
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
4016
|
-
|
|
4017
|
-
|
|
4018
|
-
|
|
4321
|
+
vegan: "vegan";
|
|
4322
|
+
vegetarian: "vegetarian";
|
|
4323
|
+
"gluten-free": "gluten-free";
|
|
4324
|
+
"dairy-free": "dairy-free";
|
|
4019
4325
|
}>>>;
|
|
4020
4326
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
4021
4327
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -4046,10 +4352,10 @@ declare const updateMenuItemResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
4046
4352
|
}, z.core.$strip>, z.ZodObject<{
|
|
4047
4353
|
price: z.ZodDefault<z.ZodString>;
|
|
4048
4354
|
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
4049
|
-
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
4050
4355
|
createdAt: z.ZodString;
|
|
4051
4356
|
updatedAt: z.ZodString;
|
|
4052
4357
|
id: z.ZodString;
|
|
4358
|
+
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
4053
4359
|
channels: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
4054
4360
|
application: "application";
|
|
4055
4361
|
ecommerce: "ecommerce";
|
|
@@ -4084,9 +4390,10 @@ declare const updateMenuItemResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
4084
4390
|
mushrooms: "mushrooms";
|
|
4085
4391
|
}>>>;
|
|
4086
4392
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
4087
|
-
|
|
4088
|
-
|
|
4089
|
-
|
|
4393
|
+
vegan: "vegan";
|
|
4394
|
+
vegetarian: "vegetarian";
|
|
4395
|
+
"gluten-free": "gluten-free";
|
|
4396
|
+
"dairy-free": "dairy-free";
|
|
4090
4397
|
}>>>;
|
|
4091
4398
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
4092
4399
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -4120,10 +4427,10 @@ declare const updateMenuItemResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
4120
4427
|
}, z.core.$strip>, z.ZodObject<{
|
|
4121
4428
|
price: z.ZodDefault<z.ZodString>;
|
|
4122
4429
|
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
4123
|
-
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
4124
4430
|
createdAt: z.ZodString;
|
|
4125
4431
|
updatedAt: z.ZodString;
|
|
4126
4432
|
id: z.ZodString;
|
|
4433
|
+
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
4127
4434
|
channels: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
4128
4435
|
application: "application";
|
|
4129
4436
|
ecommerce: "ecommerce";
|
|
@@ -4158,9 +4465,10 @@ declare const updateMenuItemResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject
|
|
|
4158
4465
|
mushrooms: "mushrooms";
|
|
4159
4466
|
}>>>;
|
|
4160
4467
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
4161
|
-
|
|
4162
|
-
|
|
4163
|
-
|
|
4468
|
+
vegan: "vegan";
|
|
4469
|
+
vegetarian: "vegetarian";
|
|
4470
|
+
"gluten-free": "gluten-free";
|
|
4471
|
+
"dairy-free": "dairy-free";
|
|
4164
4472
|
}>>>;
|
|
4165
4473
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
4166
4474
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -4239,9 +4547,10 @@ declare class UpdateMenuItem extends AbstractApiRequest<typeof updateMenuItemInp
|
|
|
4239
4547
|
mushrooms: "mushrooms";
|
|
4240
4548
|
}>>>>;
|
|
4241
4549
|
diets: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
4242
|
-
|
|
4243
|
-
|
|
4244
|
-
|
|
4550
|
+
vegan: "vegan";
|
|
4551
|
+
vegetarian: "vegetarian";
|
|
4552
|
+
"gluten-free": "gluten-free";
|
|
4553
|
+
"dairy-free": "dairy-free";
|
|
4245
4554
|
}>>>>;
|
|
4246
4555
|
taxRate: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
4247
4556
|
containsAlcohol: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
@@ -4294,9 +4603,10 @@ declare class UpdateMenuItem extends AbstractApiRequest<typeof updateMenuItemInp
|
|
|
4294
4603
|
mushrooms: "mushrooms";
|
|
4295
4604
|
}>>>;
|
|
4296
4605
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
4297
|
-
|
|
4298
|
-
|
|
4299
|
-
|
|
4606
|
+
vegan: "vegan";
|
|
4607
|
+
vegetarian: "vegetarian";
|
|
4608
|
+
"gluten-free": "gluten-free";
|
|
4609
|
+
"dairy-free": "dairy-free";
|
|
4300
4610
|
}>>>;
|
|
4301
4611
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
4302
4612
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -4327,10 +4637,10 @@ declare class UpdateMenuItem extends AbstractApiRequest<typeof updateMenuItemInp
|
|
|
4327
4637
|
}, z.core.$strip>, z.ZodObject<{
|
|
4328
4638
|
price: z.ZodDefault<z.ZodString>;
|
|
4329
4639
|
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
4330
|
-
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
4331
4640
|
createdAt: z.ZodString;
|
|
4332
4641
|
updatedAt: z.ZodString;
|
|
4333
4642
|
id: z.ZodString;
|
|
4643
|
+
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
4334
4644
|
channels: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
4335
4645
|
application: "application";
|
|
4336
4646
|
ecommerce: "ecommerce";
|
|
@@ -4365,9 +4675,10 @@ declare class UpdateMenuItem extends AbstractApiRequest<typeof updateMenuItemInp
|
|
|
4365
4675
|
mushrooms: "mushrooms";
|
|
4366
4676
|
}>>>;
|
|
4367
4677
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
4368
|
-
|
|
4369
|
-
|
|
4370
|
-
|
|
4678
|
+
vegan: "vegan";
|
|
4679
|
+
vegetarian: "vegetarian";
|
|
4680
|
+
"gluten-free": "gluten-free";
|
|
4681
|
+
"dairy-free": "dairy-free";
|
|
4371
4682
|
}>>>;
|
|
4372
4683
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
4373
4684
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -4401,10 +4712,10 @@ declare class UpdateMenuItem extends AbstractApiRequest<typeof updateMenuItemInp
|
|
|
4401
4712
|
}, z.core.$strip>, z.ZodObject<{
|
|
4402
4713
|
price: z.ZodDefault<z.ZodString>;
|
|
4403
4714
|
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
4404
|
-
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
4405
4715
|
createdAt: z.ZodString;
|
|
4406
4716
|
updatedAt: z.ZodString;
|
|
4407
4717
|
id: z.ZodString;
|
|
4718
|
+
category: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_categories/:id"> | null, unknown>>;
|
|
4408
4719
|
channels: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
4409
4720
|
application: "application";
|
|
4410
4721
|
ecommerce: "ecommerce";
|
|
@@ -4439,9 +4750,10 @@ declare class UpdateMenuItem extends AbstractApiRequest<typeof updateMenuItemInp
|
|
|
4439
4750
|
mushrooms: "mushrooms";
|
|
4440
4751
|
}>>>;
|
|
4441
4752
|
diets: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
4442
|
-
|
|
4443
|
-
|
|
4444
|
-
|
|
4753
|
+
vegan: "vegan";
|
|
4754
|
+
vegetarian: "vegetarian";
|
|
4755
|
+
"gluten-free": "gluten-free";
|
|
4756
|
+
"dairy-free": "dairy-free";
|
|
4445
4757
|
}>>>;
|
|
4446
4758
|
taxRate: z.ZodCoercedNumber<unknown>;
|
|
4447
4759
|
containsAlcohol: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -4480,6 +4792,98 @@ declare class UpdateMenuItem extends AbstractApiRequest<typeof updateMenuItemInp
|
|
|
4480
4792
|
getPath(): string;
|
|
4481
4793
|
}
|
|
4482
4794
|
|
|
4795
|
+
declare const getMenuVersionDetailsInputSchema: z.ZodUndefined;
|
|
4796
|
+
type GetMenuVersionDetailsInput = z.infer<typeof getMenuVersionDetailsInputSchema>;
|
|
4797
|
+
declare const getMenuVersionDetailsResponseSchema: z.ZodObject<{
|
|
4798
|
+
id: z.ZodString;
|
|
4799
|
+
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
4800
|
+
contentUrl: z.ZodURL;
|
|
4801
|
+
filePath: z.ZodString;
|
|
4802
|
+
createdAt: z.ZodString;
|
|
4803
|
+
updatedAt: z.ZodString;
|
|
4804
|
+
}, z.core.$strip>;
|
|
4805
|
+
type GetMenuVersionDetailsResponse = z.infer<typeof getMenuVersionDetailsResponseSchema>;
|
|
4806
|
+
declare class GetMenuVersionDetails extends AbstractApiRequest<typeof getMenuVersionDetailsInputSchema, typeof getMenuVersionDetailsResponseSchema> {
|
|
4807
|
+
readonly method = "GET";
|
|
4808
|
+
readonly contentType = "application/json";
|
|
4809
|
+
readonly accept = "application/json";
|
|
4810
|
+
readonly inputSchema: z.ZodUndefined;
|
|
4811
|
+
readonly outputSchema: z.ZodObject<{
|
|
4812
|
+
id: z.ZodString;
|
|
4813
|
+
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
4814
|
+
contentUrl: z.ZodURL;
|
|
4815
|
+
filePath: z.ZodString;
|
|
4816
|
+
createdAt: z.ZodString;
|
|
4817
|
+
updatedAt: z.ZodString;
|
|
4818
|
+
}, z.core.$strip>;
|
|
4819
|
+
readonly querySchema: undefined;
|
|
4820
|
+
readonly headersSchema: undefined;
|
|
4821
|
+
private readonly pointOfSaleId;
|
|
4822
|
+
private readonly menuVersionId;
|
|
4823
|
+
constructor(pointOfSaleId: string, menuVersionId: string);
|
|
4824
|
+
getPath(): string;
|
|
4825
|
+
}
|
|
4826
|
+
|
|
4827
|
+
declare const getMenuVersionsQuerySchema: z.ZodObject<{
|
|
4828
|
+
page: z.ZodOptional<z.ZodNumber>;
|
|
4829
|
+
}, z.core.$strip>;
|
|
4830
|
+
type GetMenuVersionsQueryParams = z.infer<typeof getMenuVersionsQuerySchema>;
|
|
4831
|
+
declare const getMenuVersionsInputSchema: z.ZodUndefined;
|
|
4832
|
+
type GetMenuVersionsInput = z.input<typeof getMenuVersionsInputSchema>;
|
|
4833
|
+
declare const getMenuVersionsResponseSchema: z.ZodObject<{
|
|
4834
|
+
data: z.ZodArray<z.ZodObject<{
|
|
4835
|
+
id: z.ZodString;
|
|
4836
|
+
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
4837
|
+
contentUrl: z.ZodURL;
|
|
4838
|
+
filePath: z.ZodString;
|
|
4839
|
+
createdAt: z.ZodString;
|
|
4840
|
+
updatedAt: z.ZodString;
|
|
4841
|
+
}, z.core.$strip>>;
|
|
4842
|
+
pagination: z.ZodObject<{
|
|
4843
|
+
from: z.ZodNumber;
|
|
4844
|
+
to: z.ZodNumber;
|
|
4845
|
+
itemsPerPage: z.ZodNumber;
|
|
4846
|
+
totalItems: z.ZodNumber;
|
|
4847
|
+
currentPage: z.ZodNumber;
|
|
4848
|
+
lastPage: z.ZodNumber;
|
|
4849
|
+
}, z.core.$strip>;
|
|
4850
|
+
}, z.core.$strip>;
|
|
4851
|
+
type GetMenuVersionsResponse = z.infer<typeof getMenuVersionsResponseSchema>;
|
|
4852
|
+
declare class GetMenuVersions extends AbstractApiRequest<typeof getMenuVersionsInputSchema, typeof getMenuVersionsResponseSchema> {
|
|
4853
|
+
readonly method = "GET";
|
|
4854
|
+
readonly contentType = "application/json";
|
|
4855
|
+
readonly accept = "application/json";
|
|
4856
|
+
readonly inputSchema: z.ZodUndefined;
|
|
4857
|
+
readonly outputSchema: z.ZodObject<{
|
|
4858
|
+
data: z.ZodArray<z.ZodObject<{
|
|
4859
|
+
id: z.ZodString;
|
|
4860
|
+
pointOfSale: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id">, unknown>>;
|
|
4861
|
+
contentUrl: z.ZodURL;
|
|
4862
|
+
filePath: z.ZodString;
|
|
4863
|
+
createdAt: z.ZodString;
|
|
4864
|
+
updatedAt: z.ZodString;
|
|
4865
|
+
}, z.core.$strip>>;
|
|
4866
|
+
pagination: z.ZodObject<{
|
|
4867
|
+
from: z.ZodNumber;
|
|
4868
|
+
to: z.ZodNumber;
|
|
4869
|
+
itemsPerPage: z.ZodNumber;
|
|
4870
|
+
totalItems: z.ZodNumber;
|
|
4871
|
+
currentPage: z.ZodNumber;
|
|
4872
|
+
lastPage: z.ZodNumber;
|
|
4873
|
+
}, z.core.$strip>;
|
|
4874
|
+
}, z.core.$strip>;
|
|
4875
|
+
readonly querySchema: z.ZodObject<{
|
|
4876
|
+
page: z.ZodOptional<z.ZodNumber>;
|
|
4877
|
+
}, z.core.$strip>;
|
|
4878
|
+
readonly headersSchema: undefined;
|
|
4879
|
+
private readonly pointOfSaleId;
|
|
4880
|
+
constructor(pointOfSaleId: string, options?: {
|
|
4881
|
+
query?: GetMenuVersionsQueryParams;
|
|
4882
|
+
});
|
|
4883
|
+
getPath(): string;
|
|
4884
|
+
parseResponse(data: unknown, rawResponse: Response): Paginated<MenuVersion>;
|
|
4885
|
+
}
|
|
4886
|
+
|
|
4483
4887
|
declare const menuChannels: readonly ["application", "ecommerce", "deliveroo", "justeat", "glovo"];
|
|
4484
4888
|
declare const menuChannelSchema: z.ZodEnum<{
|
|
4485
4889
|
application: "application";
|
|
@@ -4508,11 +4912,12 @@ declare const menuItemAllergenSchema: z.ZodEnum<{
|
|
|
4508
4912
|
mushrooms: "mushrooms";
|
|
4509
4913
|
}>;
|
|
4510
4914
|
type MenuItemAllergen = z.infer<typeof menuItemAllergenSchema>;
|
|
4511
|
-
declare const menuItemDiets: readonly ["
|
|
4915
|
+
declare const menuItemDiets: readonly ["vegan", "vegetarian", "gluten-free", "dairy-free"];
|
|
4512
4916
|
declare const menuItemDietSchema: z.ZodEnum<{
|
|
4513
|
-
|
|
4514
|
-
|
|
4515
|
-
|
|
4917
|
+
vegan: "vegan";
|
|
4918
|
+
vegetarian: "vegetarian";
|
|
4919
|
+
"gluten-free": "gluten-free";
|
|
4920
|
+
"dairy-free": "dairy-free";
|
|
4516
4921
|
}>;
|
|
4517
4922
|
type MenuItemDiet = z.infer<typeof menuItemDietSchema>;
|
|
4518
4923
|
declare const menuItemPriceOverrideTypes: readonly ["ITEM", "MODIFIER"];
|
|
@@ -4553,4 +4958,4 @@ type MenuItemPriceOverrideSalesPriceIri = z.infer<typeof menuItemPriceOverrideSa
|
|
|
4553
4958
|
declare const menuItemPriceOverrideSalesPriceNullableIriSchema: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/menu_item_price_overrides/sales_prices/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/menu_item_price_overrides/sales_prices/:id"> | null, unknown>>;
|
|
4554
4959
|
type MenuItemPriceOverrideSalesPriceNullableIri = z.infer<typeof menuItemPriceOverrideSalesPriceNullableIriSchema>;
|
|
4555
4960
|
|
|
4556
|
-
export { CreateMenuItem, CreateMenuItemCategory, type CreateMenuItemCategoryInput, type CreateMenuItemCategoryResponse, type CreateMenuItemInput, CreateMenuItemModifier, type CreateMenuItemModifierInput, type CreateMenuItemModifierResponse, CreateMenuItemPriceOverride, type CreateMenuItemPriceOverrideInput, type CreateMenuItemPriceOverrideResponse, type CreateMenuItemResponse, DeleteMenuItem, DeleteMenuItemCategory, DeleteMenuItemModifier, DeleteMenuItemPriceOverride, GetMenuItemCategories, type GetMenuItemCategoriesInput, type GetMenuItemCategoriesQueryParams, type GetMenuItemCategoriesResponse, GetMenuItemCategoryDetails, type GetMenuItemCategoryDetailsInput, type GetMenuItemCategoryDetailsResponse, GetMenuItemDetails, type GetMenuItemDetailsInput, type GetMenuItemDetailsResponse, GetMenuItemModifierDetails, type GetMenuItemModifierDetailsInput, type GetMenuItemModifierDetailsResponse, GetMenuItemModifiers, type GetMenuItemModifiersInput, type GetMenuItemModifiersQueryParams, type GetMenuItemModifiersResponse, GetMenuItemPriceOverrideDetails, type GetMenuItemPriceOverrideDetailsInput, type GetMenuItemPriceOverrideDetailsResponse, GetMenuItemPriceOverrides, type GetMenuItemPriceOverridesInput, type GetMenuItemPriceOverridesQueryParams, type GetMenuItemPriceOverridesResponse, GetMenuItems, type GetMenuItemsInput, type GetMenuItemsQueryParams, type GetMenuItemsResponse, type MenuChannel, type MenuItem, type MenuItemAllergen, type MenuItemCategoriesQueryParams, type MenuItemCategory, type MenuItemCategoryDetails, type MenuItemCategoryIri, type MenuItemCategoryNullableIri, type MenuItemDetails, type MenuItemDiet, type MenuItemIri, type MenuItemModifier, type MenuItemModifierDetails, type MenuItemModifierIri, type MenuItemModifierNullableIri, type MenuItemModifiersQueryParams, type MenuItemNullableIri, type MenuItemPriceOverride, type MenuItemPriceOverrideDetails, type MenuItemPriceOverrideIri, type MenuItemPriceOverrideNullableIri, type MenuItemPriceOverrideSalesPriceIri, type MenuItemPriceOverrideSalesPriceNullableIri, type MenuItemPriceOverrideType, type MenuItemPriceOverridesQueryParams, type MenuItemSalesPriceIri, type MenuItemSalesPriceNullableIri, type MenuItemType, type MenuItemsQueryParams, UpdateMenuItem, UpdateMenuItemCategory, type UpdateMenuItemCategoryInput, type UpdateMenuItemCategoryResponse, type UpdateMenuItemInput, UpdateMenuItemModifier, type UpdateMenuItemModifierInput, type UpdateMenuItemModifierResponse, UpdateMenuItemPriceOverride, type UpdateMenuItemPriceOverrideInput, type UpdateMenuItemPriceOverrideResponse, type UpdateMenuItemResponse, type WritableMenuItemPriceOverride, createMenuItemCategoryInputSchema, createMenuItemCategoryResponseSchema, createMenuItemInputSchema, createMenuItemModifierInputSchema, createMenuItemModifierResponseSchema, createMenuItemPriceOverrideInputSchema, createMenuItemPriceOverrideResponseSchema, createMenuItemResponseSchema, deleteMenuItemCategoryInputSchema, deleteMenuItemCategoryResponseSchema, deleteMenuItemInputSchema, deleteMenuItemModifierInputSchema, deleteMenuItemModifierResponseSchema, deleteMenuItemPriceOverrideInputSchema, deleteMenuItemPriceOverrideResponseSchema, deleteMenuItemResponseSchema, getMenuItemCategoriesInputSchema, getMenuItemCategoriesQuerySchema, getMenuItemCategoriesResponseSchema, getMenuItemCategoryDetailsInputSchema, getMenuItemCategoryDetailsResponseSchema, getMenuItemDetailsInputSchema, getMenuItemDetailsResponseSchema, getMenuItemModifierDetailsInputSchema, getMenuItemModifierDetailsResponseSchema, getMenuItemModifiersInputSchema, getMenuItemModifiersQuerySchema, getMenuItemModifiersResponseSchema, getMenuItemPriceOverrideDetailsInputSchema, getMenuItemPriceOverrideDetailsResponseSchema, getMenuItemPriceOverridesInputSchema, getMenuItemPriceOverridesQuerySchema, getMenuItemPriceOverridesResponseSchema, getMenuItemsInputSchema, getMenuItemsQuerySchema, getMenuItemsResponseSchema, localeItemSchema, menuChannelSchema, menuChannels, menuItemAllergenSchema, menuItemAllergens, menuItemBundleSchema, menuItemCategoriesQuerySchema, menuItemCategoryDetailsSchema, menuItemCategoryIriSchema, menuItemCategoryNullableIriSchema, menuItemCategorySchema, menuItemChoiceSchema, menuItemDetailsSchema, menuItemDietSchema, menuItemDiets, menuItemIriSchema, menuItemItemSchema, menuItemModifierDetailsSchema, menuItemModifierIriSchema, menuItemModifierNullableIriSchema, menuItemModifierSchema, menuItemModifiersQuerySchema, menuItemNullableIriSchema, menuItemPriceOverrideDetailsSchema, menuItemPriceOverrideIriSchema, menuItemPriceOverrideNullableIriSchema, menuItemPriceOverrideSalesPriceIriSchema, menuItemPriceOverrideSalesPriceNullableIriSchema, menuItemPriceOverrideSchema, menuItemPriceOverrideTypeSchema, menuItemPriceOverrideTypes, menuItemPriceOverridesQuerySchema, menuItemSalesPriceIriSchema, menuItemSalesPriceNullableIriSchema, menuItemSchema, menuItemTypeSchema, menuItemTypes, menuItemsQuerySchema, salesPriceDTOSchema, updateMenuItemCategoryInputSchema, updateMenuItemCategoryResponseSchema, updateMenuItemInputSchema, updateMenuItemModifierInputSchema, updateMenuItemModifierResponseSchema, updateMenuItemPriceOverrideInputSchema, updateMenuItemPriceOverrideResponseSchema, updateMenuItemResponseSchema, writableMenuItemCategorySchema, writableMenuItemModifierSchema, writableMenuItemPriceOverridePartialSchema, writableMenuItemPriceOverrideSchema, writableMenuItemSchema };
|
|
4961
|
+
export { CreateMenuItem, CreateMenuItemCategory, type CreateMenuItemCategoryInput, type CreateMenuItemCategoryResponse, type CreateMenuItemInput, CreateMenuItemModifier, type CreateMenuItemModifierInput, type CreateMenuItemModifierResponse, CreateMenuItemPriceOverride, type CreateMenuItemPriceOverrideInput, type CreateMenuItemPriceOverrideResponse, type CreateMenuItemResponse, DeleteMenuItem, DeleteMenuItemCategory, DeleteMenuItemModifier, DeleteMenuItemPriceOverride, GetMenuItemCategories, type GetMenuItemCategoriesInput, type GetMenuItemCategoriesQueryParams, type GetMenuItemCategoriesResponse, GetMenuItemCategoryDetails, type GetMenuItemCategoryDetailsInput, type GetMenuItemCategoryDetailsResponse, GetMenuItemDetails, type GetMenuItemDetailsInput, type GetMenuItemDetailsResponse, GetMenuItemModifierDetails, type GetMenuItemModifierDetailsInput, type GetMenuItemModifierDetailsResponse, GetMenuItemModifiers, type GetMenuItemModifiersInput, type GetMenuItemModifiersQueryParams, type GetMenuItemModifiersResponse, GetMenuItemPriceOverrideDetails, type GetMenuItemPriceOverrideDetailsInput, type GetMenuItemPriceOverrideDetailsResponse, GetMenuItemPriceOverrides, type GetMenuItemPriceOverridesInput, type GetMenuItemPriceOverridesQueryParams, type GetMenuItemPriceOverridesResponse, GetMenuItems, type GetMenuItemsInput, type GetMenuItemsQueryParams, type GetMenuItemsResponse, GetMenuVersionDetails, type GetMenuVersionDetailsInput, type GetMenuVersionDetailsResponse, GetMenuVersions, type GetMenuVersionsInput, type GetMenuVersionsQueryParams, type GetMenuVersionsResponse, type MenuCategoryDto, type MenuChannel, type MenuDto, type MenuItem, type MenuItemAllergen, type MenuItemCategoriesQueryParams, type MenuItemCategory, type MenuItemCategoryDetails, type MenuItemCategoryIri, type MenuItemCategoryNullableIri, type MenuItemDetails, type MenuItemDiet, type MenuItemDto, type MenuItemIri, type MenuItemModifier, type MenuItemModifierDetails, type MenuItemModifierIri, type MenuItemModifierNullableIri, type MenuItemModifiersQueryParams, type MenuItemNullableIri, type MenuItemPriceOverride, type MenuItemPriceOverrideDetails, type MenuItemPriceOverrideIri, type MenuItemPriceOverrideNullableIri, type MenuItemPriceOverrideSalesPriceIri, type MenuItemPriceOverrideSalesPriceNullableIri, type MenuItemPriceOverrideType, type MenuItemPriceOverridesQueryParams, type MenuItemSalesPriceIri, type MenuItemSalesPriceNullableIri, type MenuItemType, type MenuItemsQueryParams, type MenuModifierDto, type MenuPriceDto, type MenuPriceOverrideDto, type MenuVersion, UpdateMenuItem, UpdateMenuItemCategory, type UpdateMenuItemCategoryInput, type UpdateMenuItemCategoryResponse, type UpdateMenuItemInput, UpdateMenuItemModifier, type UpdateMenuItemModifierInput, type UpdateMenuItemModifierResponse, UpdateMenuItemPriceOverride, type UpdateMenuItemPriceOverrideInput, type UpdateMenuItemPriceOverrideResponse, type UpdateMenuItemResponse, type WritableMenuItemPriceOverride, createMenuItemCategoryInputSchema, createMenuItemCategoryResponseSchema, createMenuItemInputSchema, createMenuItemModifierInputSchema, createMenuItemModifierResponseSchema, createMenuItemPriceOverrideInputSchema, createMenuItemPriceOverrideResponseSchema, createMenuItemResponseSchema, deleteMenuItemCategoryInputSchema, deleteMenuItemCategoryResponseSchema, deleteMenuItemInputSchema, deleteMenuItemModifierInputSchema, deleteMenuItemModifierResponseSchema, deleteMenuItemPriceOverrideInputSchema, deleteMenuItemPriceOverrideResponseSchema, deleteMenuItemResponseSchema, getMenuItemCategoriesInputSchema, getMenuItemCategoriesQuerySchema, getMenuItemCategoriesResponseSchema, getMenuItemCategoryDetailsInputSchema, getMenuItemCategoryDetailsResponseSchema, getMenuItemDetailsInputSchema, getMenuItemDetailsResponseSchema, getMenuItemModifierDetailsInputSchema, getMenuItemModifierDetailsResponseSchema, getMenuItemModifiersInputSchema, getMenuItemModifiersQuerySchema, getMenuItemModifiersResponseSchema, getMenuItemPriceOverrideDetailsInputSchema, getMenuItemPriceOverrideDetailsResponseSchema, getMenuItemPriceOverridesInputSchema, getMenuItemPriceOverridesQuerySchema, getMenuItemPriceOverridesResponseSchema, getMenuItemsInputSchema, getMenuItemsQuerySchema, getMenuItemsResponseSchema, getMenuVersionDetailsInputSchema, getMenuVersionDetailsResponseSchema, getMenuVersionsInputSchema, getMenuVersionsQuerySchema, getMenuVersionsResponseSchema, localeItemSchema, menuCategoryDtoSchema, menuChannelSchema, menuChannels, menuDtoSchema, menuItemAllergenSchema, menuItemAllergens, menuItemBundleSchema, menuItemCategoriesQuerySchema, menuItemCategoryDetailsSchema, menuItemCategoryIriSchema, menuItemCategoryNullableIriSchema, menuItemCategorySchema, menuItemChoiceSchema, menuItemDetailsSchema, menuItemDietSchema, menuItemDiets, menuItemDtoSchema, menuItemIriSchema, menuItemItemSchema, menuItemModifierDetailsSchema, menuItemModifierIriSchema, menuItemModifierNullableIriSchema, menuItemModifierSchema, menuItemModifiersQuerySchema, menuItemNullableIriSchema, menuItemPriceOverrideDetailsSchema, menuItemPriceOverrideIriSchema, menuItemPriceOverrideNullableIriSchema, menuItemPriceOverrideSalesPriceIriSchema, menuItemPriceOverrideSalesPriceNullableIriSchema, menuItemPriceOverrideSchema, menuItemPriceOverrideTypeSchema, menuItemPriceOverrideTypes, menuItemPriceOverridesQuerySchema, menuItemSalesPriceIriSchema, menuItemSalesPriceNullableIriSchema, menuItemSchema, menuItemTypeSchema, menuItemTypes, menuItemsQuerySchema, menuModifierDtoSchema, menuPriceDtoSchema, menuPriceOverrideDtoSchema, menuVersionSchema, salesPriceDTOSchema, updateMenuItemCategoryInputSchema, updateMenuItemCategoryResponseSchema, updateMenuItemInputSchema, updateMenuItemModifierInputSchema, updateMenuItemModifierResponseSchema, updateMenuItemPriceOverrideInputSchema, updateMenuItemPriceOverrideResponseSchema, updateMenuItemResponseSchema, writableMenuItemCategorySchema, writableMenuItemModifierSchema, writableMenuItemPriceOverridePartialSchema, writableMenuItemPriceOverrideSchema, writableMenuItemSchema };
|