@feedmepos/mf-order-setting 0.0.17 → 0.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{KioskDevicesView-DkDKK-o-.js → KioskDevicesView-CuHZd6_9.js} +1 -1
- package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-uz5kCfDz.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-5mr80TnE.js} +1 -1
- package/dist/{KioskView-dXsAOdRK.js → KioskView-Dy1o-gJs.js} +3 -3
- package/dist/{OrderSettingsView-mw8PFd0W.js → OrderSettingsView-B-uga-ib.js} +3 -3
- package/dist/{app-BsFGRC2y.js → app-DOZsphNG.js} +103 -109
- package/dist/app.js +4 -5
- package/dist/{dayjs.min-vPr9KJUN.js → dayjs.min-7bYz19Mt.js} +1 -1
- package/dist/frontend/mf-order/src/app.d.ts +0 -1
- package/dist/frontend/mf-order/src/stores/kiosk/index.d.ts +6 -6
- package/dist/frontend/mf-order/src/views/order-settings/pickup/PickUpPointDialog.vue.d.ts +2 -2
- package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{index-CpFXjGaf.js → index-B0G4vTU2.js} +1 -1
- package/dist/package/entity/delivery/delivery.dto.d.ts +18 -18
- package/dist/package/entity/delivery/gateway/grab.dto.d.ts +8 -8
- package/dist/package/entity/delivery/gateway/pandago.dto.d.ts +16 -16
- package/dist/package/entity/delivery/linked-delivery.do.d.ts +2 -2
- package/dist/package/entity/delivery/linked-delivery.dto.d.ts +8 -8
- package/dist/package/entity/food-court/food-court.dto.d.ts +44 -44
- package/dist/package/entity/kiosk/kiosk.do.d.ts +20 -20
- package/dist/package/entity/kiosk/kiosk.dto.d.ts +24 -24
- package/dist/package/entity/order/order.dto.d.ts +86 -86
- package/dist/package/entity/order/pickup/pickup.do.d.ts +2 -2
- package/dist/package/entity/order/pickup/pickup.dto.d.ts +2 -2
- package/dist/package/entity/order-platform/foodpanda/foodpanda-order.do.d.ts +16 -16
- package/dist/package/entity/order-platform/foodpanda/foodpanda-order.dto.d.ts +6 -6
- package/dist/package/entity/order-platform/grabfood/grabfood-menu.do.d.ts +74 -74
- package/dist/package/entity/order-platform/grabfood/grabfood-order.do.d.ts +124 -124
- package/dist/package/entity/order-platform/grabfood/grabfood.dto.d.ts +38 -38
- package/dist/package/entity/order-platform/menu.dto.d.ts +82 -82
- package/dist/package/entity/order-platform/shopeefood/shopeefood-order.do.d.ts +240 -240
- package/dist/package/entity/order-platform/shopeefood/shopeefood-order.dto.d.ts +72 -72
- package/dist/package/entity/printer/printer.do.d.ts +2 -2
- package/dist/package/entity/queue/queue.dto.d.ts +6 -6
- package/dist/package/entity/restaurant/restaurant.dto.d.ts +4 -4
- package/package.json +1 -1
- package/src/App.vue +20 -0
- package/src/Entry.vue +0 -3
- package/src/app.ts +1 -18
|
@@ -102,14 +102,14 @@ export declare const SFOrderDish: z.ZodObject<{
|
|
|
102
102
|
unit_list_price: z.ZodNumber;
|
|
103
103
|
unit_price: z.ZodNumber;
|
|
104
104
|
}, "strip", z.ZodTypeAny, {
|
|
105
|
-
id: string;
|
|
106
105
|
name: string;
|
|
106
|
+
id: string;
|
|
107
107
|
external_id: string;
|
|
108
108
|
unit_list_price: number;
|
|
109
109
|
unit_price: number;
|
|
110
110
|
}, {
|
|
111
|
-
id: string;
|
|
112
111
|
name: string;
|
|
112
|
+
id: string;
|
|
113
113
|
external_id: string;
|
|
114
114
|
unit_list_price: number;
|
|
115
115
|
unit_price: number;
|
|
@@ -120,13 +120,13 @@ export declare const SFItemOption: z.ZodObject<{
|
|
|
120
120
|
name: z.ZodString;
|
|
121
121
|
price: z.ZodNumber;
|
|
122
122
|
}, "strip", z.ZodTypeAny, {
|
|
123
|
-
id: string;
|
|
124
123
|
name: string;
|
|
124
|
+
id: string;
|
|
125
125
|
price: number;
|
|
126
126
|
external_id: string;
|
|
127
127
|
}, {
|
|
128
|
-
id: string;
|
|
129
128
|
name: string;
|
|
129
|
+
id: string;
|
|
130
130
|
price: number;
|
|
131
131
|
external_id: string;
|
|
132
132
|
}>;
|
|
@@ -140,32 +140,32 @@ export declare const SFItemOptionGroup: z.ZodObject<{
|
|
|
140
140
|
name: z.ZodString;
|
|
141
141
|
price: z.ZodNumber;
|
|
142
142
|
}, "strip", z.ZodTypeAny, {
|
|
143
|
-
id: string;
|
|
144
143
|
name: string;
|
|
144
|
+
id: string;
|
|
145
145
|
price: number;
|
|
146
146
|
external_id: string;
|
|
147
147
|
}, {
|
|
148
|
-
id: string;
|
|
149
148
|
name: string;
|
|
149
|
+
id: string;
|
|
150
150
|
price: number;
|
|
151
151
|
external_id: string;
|
|
152
152
|
}>, "many">;
|
|
153
153
|
}, "strip", z.ZodTypeAny, {
|
|
154
|
-
id: string;
|
|
155
154
|
name: string;
|
|
155
|
+
id: string;
|
|
156
156
|
options: {
|
|
157
|
-
id: string;
|
|
158
157
|
name: string;
|
|
158
|
+
id: string;
|
|
159
159
|
price: number;
|
|
160
160
|
external_id: string;
|
|
161
161
|
}[];
|
|
162
162
|
external_id: string;
|
|
163
163
|
}, {
|
|
164
|
-
id: string;
|
|
165
164
|
name: string;
|
|
165
|
+
id: string;
|
|
166
166
|
options: {
|
|
167
|
-
id: string;
|
|
168
167
|
name: string;
|
|
168
|
+
id: string;
|
|
169
169
|
price: number;
|
|
170
170
|
external_id: string;
|
|
171
171
|
}[];
|
|
@@ -179,14 +179,14 @@ export declare const SFItemDetail: z.ZodObject<{
|
|
|
179
179
|
unit_list_price: z.ZodNumber;
|
|
180
180
|
unit_price: z.ZodNumber;
|
|
181
181
|
}, "strip", z.ZodTypeAny, {
|
|
182
|
-
id: string;
|
|
183
182
|
name: string;
|
|
183
|
+
id: string;
|
|
184
184
|
external_id: string;
|
|
185
185
|
unit_list_price: number;
|
|
186
186
|
unit_price: number;
|
|
187
187
|
}, {
|
|
188
|
-
id: string;
|
|
189
188
|
name: string;
|
|
189
|
+
id: string;
|
|
190
190
|
external_id: string;
|
|
191
191
|
unit_list_price: number;
|
|
192
192
|
unit_price: number;
|
|
@@ -201,32 +201,32 @@ export declare const SFItemDetail: z.ZodObject<{
|
|
|
201
201
|
name: z.ZodString;
|
|
202
202
|
price: z.ZodNumber;
|
|
203
203
|
}, "strip", z.ZodTypeAny, {
|
|
204
|
-
id: string;
|
|
205
204
|
name: string;
|
|
205
|
+
id: string;
|
|
206
206
|
price: number;
|
|
207
207
|
external_id: string;
|
|
208
208
|
}, {
|
|
209
|
-
id: string;
|
|
210
209
|
name: string;
|
|
210
|
+
id: string;
|
|
211
211
|
price: number;
|
|
212
212
|
external_id: string;
|
|
213
213
|
}>, "many">;
|
|
214
214
|
}, "strip", z.ZodTypeAny, {
|
|
215
|
-
id: string;
|
|
216
215
|
name: string;
|
|
216
|
+
id: string;
|
|
217
217
|
options: {
|
|
218
|
-
id: string;
|
|
219
218
|
name: string;
|
|
219
|
+
id: string;
|
|
220
220
|
price: number;
|
|
221
221
|
external_id: string;
|
|
222
222
|
}[];
|
|
223
223
|
external_id: string;
|
|
224
224
|
}, {
|
|
225
|
-
id: string;
|
|
226
225
|
name: string;
|
|
226
|
+
id: string;
|
|
227
227
|
options: {
|
|
228
|
-
id: string;
|
|
229
228
|
name: string;
|
|
229
|
+
id: string;
|
|
230
230
|
price: number;
|
|
231
231
|
external_id: string;
|
|
232
232
|
}[];
|
|
@@ -234,38 +234,38 @@ export declare const SFItemDetail: z.ZodObject<{
|
|
|
234
234
|
}>, "many">>>;
|
|
235
235
|
}, "strip", z.ZodTypeAny, {
|
|
236
236
|
option_groups?: {
|
|
237
|
-
id: string;
|
|
238
237
|
name: string;
|
|
238
|
+
id: string;
|
|
239
239
|
options: {
|
|
240
|
-
id: string;
|
|
241
240
|
name: string;
|
|
241
|
+
id: string;
|
|
242
242
|
price: number;
|
|
243
243
|
external_id: string;
|
|
244
244
|
}[];
|
|
245
245
|
external_id: string;
|
|
246
246
|
}[] | null | undefined;
|
|
247
247
|
dish: {
|
|
248
|
-
id: string;
|
|
249
248
|
name: string;
|
|
249
|
+
id: string;
|
|
250
250
|
external_id: string;
|
|
251
251
|
unit_list_price: number;
|
|
252
252
|
unit_price: number;
|
|
253
253
|
};
|
|
254
254
|
}, {
|
|
255
255
|
option_groups?: {
|
|
256
|
-
id: string;
|
|
257
256
|
name: string;
|
|
257
|
+
id: string;
|
|
258
258
|
options: {
|
|
259
|
-
id: string;
|
|
260
259
|
name: string;
|
|
260
|
+
id: string;
|
|
261
261
|
price: number;
|
|
262
262
|
external_id: string;
|
|
263
263
|
}[];
|
|
264
264
|
external_id: string;
|
|
265
265
|
}[] | null | undefined;
|
|
266
266
|
dish: {
|
|
267
|
-
id: string;
|
|
268
267
|
name: string;
|
|
268
|
+
id: string;
|
|
269
269
|
external_id: string;
|
|
270
270
|
unit_list_price: number;
|
|
271
271
|
unit_price: number;
|
|
@@ -280,14 +280,14 @@ export declare const SFOrderItem: z.ZodObject<{
|
|
|
280
280
|
unit_list_price: z.ZodNumber;
|
|
281
281
|
unit_price: z.ZodNumber;
|
|
282
282
|
}, "strip", z.ZodTypeAny, {
|
|
283
|
-
id: string;
|
|
284
283
|
name: string;
|
|
284
|
+
id: string;
|
|
285
285
|
external_id: string;
|
|
286
286
|
unit_list_price: number;
|
|
287
287
|
unit_price: number;
|
|
288
288
|
}, {
|
|
289
|
-
id: string;
|
|
290
289
|
name: string;
|
|
290
|
+
id: string;
|
|
291
291
|
external_id: string;
|
|
292
292
|
unit_list_price: number;
|
|
293
293
|
unit_price: number;
|
|
@@ -302,32 +302,32 @@ export declare const SFOrderItem: z.ZodObject<{
|
|
|
302
302
|
name: z.ZodString;
|
|
303
303
|
price: z.ZodNumber;
|
|
304
304
|
}, "strip", z.ZodTypeAny, {
|
|
305
|
-
id: string;
|
|
306
305
|
name: string;
|
|
306
|
+
id: string;
|
|
307
307
|
price: number;
|
|
308
308
|
external_id: string;
|
|
309
309
|
}, {
|
|
310
|
-
id: string;
|
|
311
310
|
name: string;
|
|
311
|
+
id: string;
|
|
312
312
|
price: number;
|
|
313
313
|
external_id: string;
|
|
314
314
|
}>, "many">;
|
|
315
315
|
}, "strip", z.ZodTypeAny, {
|
|
316
|
-
id: string;
|
|
317
316
|
name: string;
|
|
317
|
+
id: string;
|
|
318
318
|
options: {
|
|
319
|
-
id: string;
|
|
320
319
|
name: string;
|
|
320
|
+
id: string;
|
|
321
321
|
price: number;
|
|
322
322
|
external_id: string;
|
|
323
323
|
}[];
|
|
324
324
|
external_id: string;
|
|
325
325
|
}, {
|
|
326
|
-
id: string;
|
|
327
326
|
name: string;
|
|
327
|
+
id: string;
|
|
328
328
|
options: {
|
|
329
|
-
id: string;
|
|
330
329
|
name: string;
|
|
330
|
+
id: string;
|
|
331
331
|
price: number;
|
|
332
332
|
external_id: string;
|
|
333
333
|
}[];
|
|
@@ -335,38 +335,38 @@ export declare const SFOrderItem: z.ZodObject<{
|
|
|
335
335
|
}>, "many">>>;
|
|
336
336
|
}, "strip", z.ZodTypeAny, {
|
|
337
337
|
option_groups?: {
|
|
338
|
-
id: string;
|
|
339
338
|
name: string;
|
|
339
|
+
id: string;
|
|
340
340
|
options: {
|
|
341
|
-
id: string;
|
|
342
341
|
name: string;
|
|
342
|
+
id: string;
|
|
343
343
|
price: number;
|
|
344
344
|
external_id: string;
|
|
345
345
|
}[];
|
|
346
346
|
external_id: string;
|
|
347
347
|
}[] | null | undefined;
|
|
348
348
|
dish: {
|
|
349
|
-
id: string;
|
|
350
349
|
name: string;
|
|
350
|
+
id: string;
|
|
351
351
|
external_id: string;
|
|
352
352
|
unit_list_price: number;
|
|
353
353
|
unit_price: number;
|
|
354
354
|
};
|
|
355
355
|
}, {
|
|
356
356
|
option_groups?: {
|
|
357
|
-
id: string;
|
|
358
357
|
name: string;
|
|
358
|
+
id: string;
|
|
359
359
|
options: {
|
|
360
|
-
id: string;
|
|
361
360
|
name: string;
|
|
361
|
+
id: string;
|
|
362
362
|
price: number;
|
|
363
363
|
external_id: string;
|
|
364
364
|
}[];
|
|
365
365
|
external_id: string;
|
|
366
366
|
}[] | null | undefined;
|
|
367
367
|
dish: {
|
|
368
|
-
id: string;
|
|
369
368
|
name: string;
|
|
369
|
+
id: string;
|
|
370
370
|
external_id: string;
|
|
371
371
|
unit_list_price: number;
|
|
372
372
|
unit_price: number;
|
|
@@ -385,19 +385,19 @@ export declare const SFOrderItem: z.ZodObject<{
|
|
|
385
385
|
unit_price: number;
|
|
386
386
|
detail: {
|
|
387
387
|
option_groups?: {
|
|
388
|
-
id: string;
|
|
389
388
|
name: string;
|
|
389
|
+
id: string;
|
|
390
390
|
options: {
|
|
391
|
-
id: string;
|
|
392
391
|
name: string;
|
|
392
|
+
id: string;
|
|
393
393
|
price: number;
|
|
394
394
|
external_id: string;
|
|
395
395
|
}[];
|
|
396
396
|
external_id: string;
|
|
397
397
|
}[] | null | undefined;
|
|
398
398
|
dish: {
|
|
399
|
-
id: string;
|
|
400
399
|
name: string;
|
|
400
|
+
id: string;
|
|
401
401
|
external_id: string;
|
|
402
402
|
unit_list_price: number;
|
|
403
403
|
unit_price: number;
|
|
@@ -411,19 +411,19 @@ export declare const SFOrderItem: z.ZodObject<{
|
|
|
411
411
|
unit_price: number;
|
|
412
412
|
detail: {
|
|
413
413
|
option_groups?: {
|
|
414
|
-
id: string;
|
|
415
414
|
name: string;
|
|
415
|
+
id: string;
|
|
416
416
|
options: {
|
|
417
|
-
id: string;
|
|
418
417
|
name: string;
|
|
418
|
+
id: string;
|
|
419
419
|
price: number;
|
|
420
420
|
external_id: string;
|
|
421
421
|
}[];
|
|
422
422
|
external_id: string;
|
|
423
423
|
}[] | null | undefined;
|
|
424
424
|
dish: {
|
|
425
|
-
id: string;
|
|
426
425
|
name: string;
|
|
426
|
+
id: string;
|
|
427
427
|
external_id: string;
|
|
428
428
|
unit_list_price: number;
|
|
429
429
|
unit_price: number;
|
|
@@ -554,14 +554,14 @@ export declare const SFOrder: z.ZodObject<{
|
|
|
554
554
|
unit_list_price: z.ZodNumber;
|
|
555
555
|
unit_price: z.ZodNumber;
|
|
556
556
|
}, "strip", z.ZodTypeAny, {
|
|
557
|
-
id: string;
|
|
558
557
|
name: string;
|
|
558
|
+
id: string;
|
|
559
559
|
external_id: string;
|
|
560
560
|
unit_list_price: number;
|
|
561
561
|
unit_price: number;
|
|
562
562
|
}, {
|
|
563
|
-
id: string;
|
|
564
563
|
name: string;
|
|
564
|
+
id: string;
|
|
565
565
|
external_id: string;
|
|
566
566
|
unit_list_price: number;
|
|
567
567
|
unit_price: number;
|
|
@@ -576,32 +576,32 @@ export declare const SFOrder: z.ZodObject<{
|
|
|
576
576
|
name: z.ZodString;
|
|
577
577
|
price: z.ZodNumber;
|
|
578
578
|
}, "strip", z.ZodTypeAny, {
|
|
579
|
-
id: string;
|
|
580
579
|
name: string;
|
|
580
|
+
id: string;
|
|
581
581
|
price: number;
|
|
582
582
|
external_id: string;
|
|
583
583
|
}, {
|
|
584
|
-
id: string;
|
|
585
584
|
name: string;
|
|
585
|
+
id: string;
|
|
586
586
|
price: number;
|
|
587
587
|
external_id: string;
|
|
588
588
|
}>, "many">;
|
|
589
589
|
}, "strip", z.ZodTypeAny, {
|
|
590
|
-
id: string;
|
|
591
590
|
name: string;
|
|
591
|
+
id: string;
|
|
592
592
|
options: {
|
|
593
|
-
id: string;
|
|
594
593
|
name: string;
|
|
594
|
+
id: string;
|
|
595
595
|
price: number;
|
|
596
596
|
external_id: string;
|
|
597
597
|
}[];
|
|
598
598
|
external_id: string;
|
|
599
599
|
}, {
|
|
600
|
-
id: string;
|
|
601
600
|
name: string;
|
|
601
|
+
id: string;
|
|
602
602
|
options: {
|
|
603
|
-
id: string;
|
|
604
603
|
name: string;
|
|
604
|
+
id: string;
|
|
605
605
|
price: number;
|
|
606
606
|
external_id: string;
|
|
607
607
|
}[];
|
|
@@ -609,38 +609,38 @@ export declare const SFOrder: z.ZodObject<{
|
|
|
609
609
|
}>, "many">>>;
|
|
610
610
|
}, "strip", z.ZodTypeAny, {
|
|
611
611
|
option_groups?: {
|
|
612
|
-
id: string;
|
|
613
612
|
name: string;
|
|
613
|
+
id: string;
|
|
614
614
|
options: {
|
|
615
|
-
id: string;
|
|
616
615
|
name: string;
|
|
616
|
+
id: string;
|
|
617
617
|
price: number;
|
|
618
618
|
external_id: string;
|
|
619
619
|
}[];
|
|
620
620
|
external_id: string;
|
|
621
621
|
}[] | null | undefined;
|
|
622
622
|
dish: {
|
|
623
|
-
id: string;
|
|
624
623
|
name: string;
|
|
624
|
+
id: string;
|
|
625
625
|
external_id: string;
|
|
626
626
|
unit_list_price: number;
|
|
627
627
|
unit_price: number;
|
|
628
628
|
};
|
|
629
629
|
}, {
|
|
630
630
|
option_groups?: {
|
|
631
|
-
id: string;
|
|
632
631
|
name: string;
|
|
632
|
+
id: string;
|
|
633
633
|
options: {
|
|
634
|
-
id: string;
|
|
635
634
|
name: string;
|
|
635
|
+
id: string;
|
|
636
636
|
price: number;
|
|
637
637
|
external_id: string;
|
|
638
638
|
}[];
|
|
639
639
|
external_id: string;
|
|
640
640
|
}[] | null | undefined;
|
|
641
641
|
dish: {
|
|
642
|
-
id: string;
|
|
643
642
|
name: string;
|
|
643
|
+
id: string;
|
|
644
644
|
external_id: string;
|
|
645
645
|
unit_list_price: number;
|
|
646
646
|
unit_price: number;
|
|
@@ -659,19 +659,19 @@ export declare const SFOrder: z.ZodObject<{
|
|
|
659
659
|
unit_price: number;
|
|
660
660
|
detail: {
|
|
661
661
|
option_groups?: {
|
|
662
|
-
id: string;
|
|
663
662
|
name: string;
|
|
663
|
+
id: string;
|
|
664
664
|
options: {
|
|
665
|
-
id: string;
|
|
666
665
|
name: string;
|
|
666
|
+
id: string;
|
|
667
667
|
price: number;
|
|
668
668
|
external_id: string;
|
|
669
669
|
}[];
|
|
670
670
|
external_id: string;
|
|
671
671
|
}[] | null | undefined;
|
|
672
672
|
dish: {
|
|
673
|
-
id: string;
|
|
674
673
|
name: string;
|
|
674
|
+
id: string;
|
|
675
675
|
external_id: string;
|
|
676
676
|
unit_list_price: number;
|
|
677
677
|
unit_price: number;
|
|
@@ -685,19 +685,19 @@ export declare const SFOrder: z.ZodObject<{
|
|
|
685
685
|
unit_price: number;
|
|
686
686
|
detail: {
|
|
687
687
|
option_groups?: {
|
|
688
|
-
id: string;
|
|
689
688
|
name: string;
|
|
689
|
+
id: string;
|
|
690
690
|
options: {
|
|
691
|
-
id: string;
|
|
692
691
|
name: string;
|
|
692
|
+
id: string;
|
|
693
693
|
price: number;
|
|
694
694
|
external_id: string;
|
|
695
695
|
}[];
|
|
696
696
|
external_id: string;
|
|
697
697
|
}[] | null | undefined;
|
|
698
698
|
dish: {
|
|
699
|
-
id: string;
|
|
700
699
|
name: string;
|
|
700
|
+
id: string;
|
|
701
701
|
external_id: string;
|
|
702
702
|
unit_list_price: number;
|
|
703
703
|
unit_price: number;
|
|
@@ -792,19 +792,19 @@ export declare const SFOrder: z.ZodObject<{
|
|
|
792
792
|
unit_price: number;
|
|
793
793
|
detail: {
|
|
794
794
|
option_groups?: {
|
|
795
|
-
id: string;
|
|
796
795
|
name: string;
|
|
796
|
+
id: string;
|
|
797
797
|
options: {
|
|
798
|
-
id: string;
|
|
799
798
|
name: string;
|
|
799
|
+
id: string;
|
|
800
800
|
price: number;
|
|
801
801
|
external_id: string;
|
|
802
802
|
}[];
|
|
803
803
|
external_id: string;
|
|
804
804
|
}[] | null | undefined;
|
|
805
805
|
dish: {
|
|
806
|
-
id: string;
|
|
807
806
|
name: string;
|
|
807
|
+
id: string;
|
|
808
808
|
external_id: string;
|
|
809
809
|
unit_list_price: number;
|
|
810
810
|
unit_price: number;
|
|
@@ -864,19 +864,19 @@ export declare const SFOrder: z.ZodObject<{
|
|
|
864
864
|
unit_price: number;
|
|
865
865
|
detail: {
|
|
866
866
|
option_groups?: {
|
|
867
|
-
id: string;
|
|
868
867
|
name: string;
|
|
868
|
+
id: string;
|
|
869
869
|
options: {
|
|
870
|
-
id: string;
|
|
871
870
|
name: string;
|
|
871
|
+
id: string;
|
|
872
872
|
price: number;
|
|
873
873
|
external_id: string;
|
|
874
874
|
}[];
|
|
875
875
|
external_id: string;
|
|
876
876
|
}[] | null | undefined;
|
|
877
877
|
dish: {
|
|
878
|
-
id: string;
|
|
879
878
|
name: string;
|
|
879
|
+
id: string;
|
|
880
880
|
external_id: string;
|
|
881
881
|
unit_list_price: number;
|
|
882
882
|
unit_price: number;
|
|
@@ -987,14 +987,14 @@ export declare const FdoShopeeFoodOrder: z.ZodObject<{
|
|
|
987
987
|
unit_list_price: z.ZodNumber;
|
|
988
988
|
unit_price: z.ZodNumber;
|
|
989
989
|
}, "strip", z.ZodTypeAny, {
|
|
990
|
-
id: string;
|
|
991
990
|
name: string;
|
|
991
|
+
id: string;
|
|
992
992
|
external_id: string;
|
|
993
993
|
unit_list_price: number;
|
|
994
994
|
unit_price: number;
|
|
995
995
|
}, {
|
|
996
|
-
id: string;
|
|
997
996
|
name: string;
|
|
997
|
+
id: string;
|
|
998
998
|
external_id: string;
|
|
999
999
|
unit_list_price: number;
|
|
1000
1000
|
unit_price: number;
|
|
@@ -1009,32 +1009,32 @@ export declare const FdoShopeeFoodOrder: z.ZodObject<{
|
|
|
1009
1009
|
name: z.ZodString;
|
|
1010
1010
|
price: z.ZodNumber;
|
|
1011
1011
|
}, "strip", z.ZodTypeAny, {
|
|
1012
|
-
id: string;
|
|
1013
1012
|
name: string;
|
|
1013
|
+
id: string;
|
|
1014
1014
|
price: number;
|
|
1015
1015
|
external_id: string;
|
|
1016
1016
|
}, {
|
|
1017
|
-
id: string;
|
|
1018
1017
|
name: string;
|
|
1018
|
+
id: string;
|
|
1019
1019
|
price: number;
|
|
1020
1020
|
external_id: string;
|
|
1021
1021
|
}>, "many">;
|
|
1022
1022
|
}, "strip", z.ZodTypeAny, {
|
|
1023
|
-
id: string;
|
|
1024
1023
|
name: string;
|
|
1024
|
+
id: string;
|
|
1025
1025
|
options: {
|
|
1026
|
-
id: string;
|
|
1027
1026
|
name: string;
|
|
1027
|
+
id: string;
|
|
1028
1028
|
price: number;
|
|
1029
1029
|
external_id: string;
|
|
1030
1030
|
}[];
|
|
1031
1031
|
external_id: string;
|
|
1032
1032
|
}, {
|
|
1033
|
-
id: string;
|
|
1034
1033
|
name: string;
|
|
1034
|
+
id: string;
|
|
1035
1035
|
options: {
|
|
1036
|
-
id: string;
|
|
1037
1036
|
name: string;
|
|
1037
|
+
id: string;
|
|
1038
1038
|
price: number;
|
|
1039
1039
|
external_id: string;
|
|
1040
1040
|
}[];
|
|
@@ -1042,38 +1042,38 @@ export declare const FdoShopeeFoodOrder: z.ZodObject<{
|
|
|
1042
1042
|
}>, "many">>>;
|
|
1043
1043
|
}, "strip", z.ZodTypeAny, {
|
|
1044
1044
|
option_groups?: {
|
|
1045
|
-
id: string;
|
|
1046
1045
|
name: string;
|
|
1046
|
+
id: string;
|
|
1047
1047
|
options: {
|
|
1048
|
-
id: string;
|
|
1049
1048
|
name: string;
|
|
1049
|
+
id: string;
|
|
1050
1050
|
price: number;
|
|
1051
1051
|
external_id: string;
|
|
1052
1052
|
}[];
|
|
1053
1053
|
external_id: string;
|
|
1054
1054
|
}[] | null | undefined;
|
|
1055
1055
|
dish: {
|
|
1056
|
-
id: string;
|
|
1057
1056
|
name: string;
|
|
1057
|
+
id: string;
|
|
1058
1058
|
external_id: string;
|
|
1059
1059
|
unit_list_price: number;
|
|
1060
1060
|
unit_price: number;
|
|
1061
1061
|
};
|
|
1062
1062
|
}, {
|
|
1063
1063
|
option_groups?: {
|
|
1064
|
-
id: string;
|
|
1065
1064
|
name: string;
|
|
1065
|
+
id: string;
|
|
1066
1066
|
options: {
|
|
1067
|
-
id: string;
|
|
1068
1067
|
name: string;
|
|
1068
|
+
id: string;
|
|
1069
1069
|
price: number;
|
|
1070
1070
|
external_id: string;
|
|
1071
1071
|
}[];
|
|
1072
1072
|
external_id: string;
|
|
1073
1073
|
}[] | null | undefined;
|
|
1074
1074
|
dish: {
|
|
1075
|
-
id: string;
|
|
1076
1075
|
name: string;
|
|
1076
|
+
id: string;
|
|
1077
1077
|
external_id: string;
|
|
1078
1078
|
unit_list_price: number;
|
|
1079
1079
|
unit_price: number;
|
|
@@ -1092,19 +1092,19 @@ export declare const FdoShopeeFoodOrder: z.ZodObject<{
|
|
|
1092
1092
|
unit_price: number;
|
|
1093
1093
|
detail: {
|
|
1094
1094
|
option_groups?: {
|
|
1095
|
-
id: string;
|
|
1096
1095
|
name: string;
|
|
1096
|
+
id: string;
|
|
1097
1097
|
options: {
|
|
1098
|
-
id: string;
|
|
1099
1098
|
name: string;
|
|
1099
|
+
id: string;
|
|
1100
1100
|
price: number;
|
|
1101
1101
|
external_id: string;
|
|
1102
1102
|
}[];
|
|
1103
1103
|
external_id: string;
|
|
1104
1104
|
}[] | null | undefined;
|
|
1105
1105
|
dish: {
|
|
1106
|
-
id: string;
|
|
1107
1106
|
name: string;
|
|
1107
|
+
id: string;
|
|
1108
1108
|
external_id: string;
|
|
1109
1109
|
unit_list_price: number;
|
|
1110
1110
|
unit_price: number;
|
|
@@ -1118,19 +1118,19 @@ export declare const FdoShopeeFoodOrder: z.ZodObject<{
|
|
|
1118
1118
|
unit_price: number;
|
|
1119
1119
|
detail: {
|
|
1120
1120
|
option_groups?: {
|
|
1121
|
-
id: string;
|
|
1122
1121
|
name: string;
|
|
1122
|
+
id: string;
|
|
1123
1123
|
options: {
|
|
1124
|
-
id: string;
|
|
1125
1124
|
name: string;
|
|
1125
|
+
id: string;
|
|
1126
1126
|
price: number;
|
|
1127
1127
|
external_id: string;
|
|
1128
1128
|
}[];
|
|
1129
1129
|
external_id: string;
|
|
1130
1130
|
}[] | null | undefined;
|
|
1131
1131
|
dish: {
|
|
1132
|
-
id: string;
|
|
1133
1132
|
name: string;
|
|
1133
|
+
id: string;
|
|
1134
1134
|
external_id: string;
|
|
1135
1135
|
unit_list_price: number;
|
|
1136
1136
|
unit_price: number;
|
|
@@ -1225,19 +1225,19 @@ export declare const FdoShopeeFoodOrder: z.ZodObject<{
|
|
|
1225
1225
|
unit_price: number;
|
|
1226
1226
|
detail: {
|
|
1227
1227
|
option_groups?: {
|
|
1228
|
-
id: string;
|
|
1229
1228
|
name: string;
|
|
1229
|
+
id: string;
|
|
1230
1230
|
options: {
|
|
1231
|
-
id: string;
|
|
1232
1231
|
name: string;
|
|
1232
|
+
id: string;
|
|
1233
1233
|
price: number;
|
|
1234
1234
|
external_id: string;
|
|
1235
1235
|
}[];
|
|
1236
1236
|
external_id: string;
|
|
1237
1237
|
}[] | null | undefined;
|
|
1238
1238
|
dish: {
|
|
1239
|
-
id: string;
|
|
1240
1239
|
name: string;
|
|
1240
|
+
id: string;
|
|
1241
1241
|
external_id: string;
|
|
1242
1242
|
unit_list_price: number;
|
|
1243
1243
|
unit_price: number;
|
|
@@ -1297,19 +1297,19 @@ export declare const FdoShopeeFoodOrder: z.ZodObject<{
|
|
|
1297
1297
|
unit_price: number;
|
|
1298
1298
|
detail: {
|
|
1299
1299
|
option_groups?: {
|
|
1300
|
-
id: string;
|
|
1301
1300
|
name: string;
|
|
1301
|
+
id: string;
|
|
1302
1302
|
options: {
|
|
1303
|
-
id: string;
|
|
1304
1303
|
name: string;
|
|
1304
|
+
id: string;
|
|
1305
1305
|
price: number;
|
|
1306
1306
|
external_id: string;
|
|
1307
1307
|
}[];
|
|
1308
1308
|
external_id: string;
|
|
1309
1309
|
}[] | null | undefined;
|
|
1310
1310
|
dish: {
|
|
1311
|
-
id: string;
|
|
1312
1311
|
name: string;
|
|
1312
|
+
id: string;
|
|
1313
1313
|
external_id: string;
|
|
1314
1314
|
unit_list_price: number;
|
|
1315
1315
|
unit_price: number;
|
|
@@ -1376,19 +1376,19 @@ export declare const FdoShopeeFoodOrder: z.ZodObject<{
|
|
|
1376
1376
|
unit_price: number;
|
|
1377
1377
|
detail: {
|
|
1378
1378
|
option_groups?: {
|
|
1379
|
-
id: string;
|
|
1380
1379
|
name: string;
|
|
1380
|
+
id: string;
|
|
1381
1381
|
options: {
|
|
1382
|
-
id: string;
|
|
1383
1382
|
name: string;
|
|
1383
|
+
id: string;
|
|
1384
1384
|
price: number;
|
|
1385
1385
|
external_id: string;
|
|
1386
1386
|
}[];
|
|
1387
1387
|
external_id: string;
|
|
1388
1388
|
}[] | null | undefined;
|
|
1389
1389
|
dish: {
|
|
1390
|
-
id: string;
|
|
1391
1390
|
name: string;
|
|
1391
|
+
id: string;
|
|
1392
1392
|
external_id: string;
|
|
1393
1393
|
unit_list_price: number;
|
|
1394
1394
|
unit_price: number;
|
|
@@ -1455,19 +1455,19 @@ export declare const FdoShopeeFoodOrder: z.ZodObject<{
|
|
|
1455
1455
|
unit_price: number;
|
|
1456
1456
|
detail: {
|
|
1457
1457
|
option_groups?: {
|
|
1458
|
-
id: string;
|
|
1459
1458
|
name: string;
|
|
1459
|
+
id: string;
|
|
1460
1460
|
options: {
|
|
1461
|
-
id: string;
|
|
1462
1461
|
name: string;
|
|
1462
|
+
id: string;
|
|
1463
1463
|
price: number;
|
|
1464
1464
|
external_id: string;
|
|
1465
1465
|
}[];
|
|
1466
1466
|
external_id: string;
|
|
1467
1467
|
}[] | null | undefined;
|
|
1468
1468
|
dish: {
|
|
1469
|
-
id: string;
|
|
1470
1469
|
name: string;
|
|
1470
|
+
id: string;
|
|
1471
1471
|
external_id: string;
|
|
1472
1472
|
unit_list_price: number;
|
|
1473
1473
|
unit_price: number;
|
|
@@ -1579,14 +1579,14 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1579
1579
|
unit_list_price: z.ZodNumber;
|
|
1580
1580
|
unit_price: z.ZodNumber;
|
|
1581
1581
|
}, "strip", z.ZodTypeAny, {
|
|
1582
|
-
id: string;
|
|
1583
1582
|
name: string;
|
|
1583
|
+
id: string;
|
|
1584
1584
|
external_id: string;
|
|
1585
1585
|
unit_list_price: number;
|
|
1586
1586
|
unit_price: number;
|
|
1587
1587
|
}, {
|
|
1588
|
-
id: string;
|
|
1589
1588
|
name: string;
|
|
1589
|
+
id: string;
|
|
1590
1590
|
external_id: string;
|
|
1591
1591
|
unit_list_price: number;
|
|
1592
1592
|
unit_price: number;
|
|
@@ -1601,32 +1601,32 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1601
1601
|
name: z.ZodString;
|
|
1602
1602
|
price: z.ZodNumber;
|
|
1603
1603
|
}, "strip", z.ZodTypeAny, {
|
|
1604
|
-
id: string;
|
|
1605
1604
|
name: string;
|
|
1605
|
+
id: string;
|
|
1606
1606
|
price: number;
|
|
1607
1607
|
external_id: string;
|
|
1608
1608
|
}, {
|
|
1609
|
-
id: string;
|
|
1610
1609
|
name: string;
|
|
1610
|
+
id: string;
|
|
1611
1611
|
price: number;
|
|
1612
1612
|
external_id: string;
|
|
1613
1613
|
}>, "many">;
|
|
1614
1614
|
}, "strip", z.ZodTypeAny, {
|
|
1615
|
-
id: string;
|
|
1616
1615
|
name: string;
|
|
1616
|
+
id: string;
|
|
1617
1617
|
options: {
|
|
1618
|
-
id: string;
|
|
1619
1618
|
name: string;
|
|
1619
|
+
id: string;
|
|
1620
1620
|
price: number;
|
|
1621
1621
|
external_id: string;
|
|
1622
1622
|
}[];
|
|
1623
1623
|
external_id: string;
|
|
1624
1624
|
}, {
|
|
1625
|
-
id: string;
|
|
1626
1625
|
name: string;
|
|
1626
|
+
id: string;
|
|
1627
1627
|
options: {
|
|
1628
|
-
id: string;
|
|
1629
1628
|
name: string;
|
|
1629
|
+
id: string;
|
|
1630
1630
|
price: number;
|
|
1631
1631
|
external_id: string;
|
|
1632
1632
|
}[];
|
|
@@ -1634,38 +1634,38 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1634
1634
|
}>, "many">>>;
|
|
1635
1635
|
}, "strip", z.ZodTypeAny, {
|
|
1636
1636
|
option_groups?: {
|
|
1637
|
-
id: string;
|
|
1638
1637
|
name: string;
|
|
1638
|
+
id: string;
|
|
1639
1639
|
options: {
|
|
1640
|
-
id: string;
|
|
1641
1640
|
name: string;
|
|
1641
|
+
id: string;
|
|
1642
1642
|
price: number;
|
|
1643
1643
|
external_id: string;
|
|
1644
1644
|
}[];
|
|
1645
1645
|
external_id: string;
|
|
1646
1646
|
}[] | null | undefined;
|
|
1647
1647
|
dish: {
|
|
1648
|
-
id: string;
|
|
1649
1648
|
name: string;
|
|
1649
|
+
id: string;
|
|
1650
1650
|
external_id: string;
|
|
1651
1651
|
unit_list_price: number;
|
|
1652
1652
|
unit_price: number;
|
|
1653
1653
|
};
|
|
1654
1654
|
}, {
|
|
1655
1655
|
option_groups?: {
|
|
1656
|
-
id: string;
|
|
1657
1656
|
name: string;
|
|
1657
|
+
id: string;
|
|
1658
1658
|
options: {
|
|
1659
|
-
id: string;
|
|
1660
1659
|
name: string;
|
|
1660
|
+
id: string;
|
|
1661
1661
|
price: number;
|
|
1662
1662
|
external_id: string;
|
|
1663
1663
|
}[];
|
|
1664
1664
|
external_id: string;
|
|
1665
1665
|
}[] | null | undefined;
|
|
1666
1666
|
dish: {
|
|
1667
|
-
id: string;
|
|
1668
1667
|
name: string;
|
|
1668
|
+
id: string;
|
|
1669
1669
|
external_id: string;
|
|
1670
1670
|
unit_list_price: number;
|
|
1671
1671
|
unit_price: number;
|
|
@@ -1684,19 +1684,19 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1684
1684
|
unit_price: number;
|
|
1685
1685
|
detail: {
|
|
1686
1686
|
option_groups?: {
|
|
1687
|
-
id: string;
|
|
1688
1687
|
name: string;
|
|
1688
|
+
id: string;
|
|
1689
1689
|
options: {
|
|
1690
|
-
id: string;
|
|
1691
1690
|
name: string;
|
|
1691
|
+
id: string;
|
|
1692
1692
|
price: number;
|
|
1693
1693
|
external_id: string;
|
|
1694
1694
|
}[];
|
|
1695
1695
|
external_id: string;
|
|
1696
1696
|
}[] | null | undefined;
|
|
1697
1697
|
dish: {
|
|
1698
|
-
id: string;
|
|
1699
1698
|
name: string;
|
|
1699
|
+
id: string;
|
|
1700
1700
|
external_id: string;
|
|
1701
1701
|
unit_list_price: number;
|
|
1702
1702
|
unit_price: number;
|
|
@@ -1710,19 +1710,19 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1710
1710
|
unit_price: number;
|
|
1711
1711
|
detail: {
|
|
1712
1712
|
option_groups?: {
|
|
1713
|
-
id: string;
|
|
1714
1713
|
name: string;
|
|
1714
|
+
id: string;
|
|
1715
1715
|
options: {
|
|
1716
|
-
id: string;
|
|
1717
1716
|
name: string;
|
|
1717
|
+
id: string;
|
|
1718
1718
|
price: number;
|
|
1719
1719
|
external_id: string;
|
|
1720
1720
|
}[];
|
|
1721
1721
|
external_id: string;
|
|
1722
1722
|
}[] | null | undefined;
|
|
1723
1723
|
dish: {
|
|
1724
|
-
id: string;
|
|
1725
1724
|
name: string;
|
|
1725
|
+
id: string;
|
|
1726
1726
|
external_id: string;
|
|
1727
1727
|
unit_list_price: number;
|
|
1728
1728
|
unit_price: number;
|
|
@@ -1817,19 +1817,19 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1817
1817
|
unit_price: number;
|
|
1818
1818
|
detail: {
|
|
1819
1819
|
option_groups?: {
|
|
1820
|
-
id: string;
|
|
1821
1820
|
name: string;
|
|
1821
|
+
id: string;
|
|
1822
1822
|
options: {
|
|
1823
|
-
id: string;
|
|
1824
1823
|
name: string;
|
|
1824
|
+
id: string;
|
|
1825
1825
|
price: number;
|
|
1826
1826
|
external_id: string;
|
|
1827
1827
|
}[];
|
|
1828
1828
|
external_id: string;
|
|
1829
1829
|
}[] | null | undefined;
|
|
1830
1830
|
dish: {
|
|
1831
|
-
id: string;
|
|
1832
1831
|
name: string;
|
|
1832
|
+
id: string;
|
|
1833
1833
|
external_id: string;
|
|
1834
1834
|
unit_list_price: number;
|
|
1835
1835
|
unit_price: number;
|
|
@@ -1889,19 +1889,19 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1889
1889
|
unit_price: number;
|
|
1890
1890
|
detail: {
|
|
1891
1891
|
option_groups?: {
|
|
1892
|
-
id: string;
|
|
1893
1892
|
name: string;
|
|
1893
|
+
id: string;
|
|
1894
1894
|
options: {
|
|
1895
|
-
id: string;
|
|
1896
1895
|
name: string;
|
|
1896
|
+
id: string;
|
|
1897
1897
|
price: number;
|
|
1898
1898
|
external_id: string;
|
|
1899
1899
|
}[];
|
|
1900
1900
|
external_id: string;
|
|
1901
1901
|
}[] | null | undefined;
|
|
1902
1902
|
dish: {
|
|
1903
|
-
id: string;
|
|
1904
1903
|
name: string;
|
|
1904
|
+
id: string;
|
|
1905
1905
|
external_id: string;
|
|
1906
1906
|
unit_list_price: number;
|
|
1907
1907
|
unit_price: number;
|
|
@@ -5141,19 +5141,19 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
5141
5141
|
unit_price: number;
|
|
5142
5142
|
detail: {
|
|
5143
5143
|
option_groups?: {
|
|
5144
|
-
id: string;
|
|
5145
5144
|
name: string;
|
|
5145
|
+
id: string;
|
|
5146
5146
|
options: {
|
|
5147
|
-
id: string;
|
|
5148
5147
|
name: string;
|
|
5148
|
+
id: string;
|
|
5149
5149
|
price: number;
|
|
5150
5150
|
external_id: string;
|
|
5151
5151
|
}[];
|
|
5152
5152
|
external_id: string;
|
|
5153
5153
|
}[] | null | undefined;
|
|
5154
5154
|
dish: {
|
|
5155
|
-
id: string;
|
|
5156
5155
|
name: string;
|
|
5156
|
+
id: string;
|
|
5157
5157
|
external_id: string;
|
|
5158
5158
|
unit_list_price: number;
|
|
5159
5159
|
unit_price: number;
|
|
@@ -5593,19 +5593,19 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
5593
5593
|
unit_price: number;
|
|
5594
5594
|
detail: {
|
|
5595
5595
|
option_groups?: {
|
|
5596
|
-
id: string;
|
|
5597
5596
|
name: string;
|
|
5597
|
+
id: string;
|
|
5598
5598
|
options: {
|
|
5599
|
-
id: string;
|
|
5600
5599
|
name: string;
|
|
5600
|
+
id: string;
|
|
5601
5601
|
price: number;
|
|
5602
5602
|
external_id: string;
|
|
5603
5603
|
}[];
|
|
5604
5604
|
external_id: string;
|
|
5605
5605
|
}[] | null | undefined;
|
|
5606
5606
|
dish: {
|
|
5607
|
-
id: string;
|
|
5608
5607
|
name: string;
|
|
5608
|
+
id: string;
|
|
5609
5609
|
external_id: string;
|
|
5610
5610
|
unit_list_price: number;
|
|
5611
5611
|
unit_price: number;
|
|
@@ -5626,13 +5626,13 @@ export declare const SFMenuOption: z.ZodObject<{
|
|
|
5626
5626
|
price: z.ZodNumber;
|
|
5627
5627
|
}, "strip", z.ZodTypeAny, {
|
|
5628
5628
|
available?: boolean | null | undefined;
|
|
5629
|
-
id: string;
|
|
5630
5629
|
name: string;
|
|
5630
|
+
id: string;
|
|
5631
5631
|
price: number;
|
|
5632
5632
|
}, {
|
|
5633
5633
|
available?: boolean | null | undefined;
|
|
5634
|
-
id: string;
|
|
5635
5634
|
name: string;
|
|
5635
|
+
id: string;
|
|
5636
5636
|
price: number;
|
|
5637
5637
|
}>;
|
|
5638
5638
|
export declare const SFMenuOptionGroup: z.ZodObject<{
|
|
@@ -5647,35 +5647,35 @@ export declare const SFMenuOptionGroup: z.ZodObject<{
|
|
|
5647
5647
|
price: z.ZodNumber;
|
|
5648
5648
|
}, "strip", z.ZodTypeAny, {
|
|
5649
5649
|
available?: boolean | null | undefined;
|
|
5650
|
-
id: string;
|
|
5651
5650
|
name: string;
|
|
5651
|
+
id: string;
|
|
5652
5652
|
price: number;
|
|
5653
5653
|
}, {
|
|
5654
5654
|
available?: boolean | null | undefined;
|
|
5655
|
-
id: string;
|
|
5656
5655
|
name: string;
|
|
5656
|
+
id: string;
|
|
5657
5657
|
price: number;
|
|
5658
5658
|
}>, "many">>>;
|
|
5659
5659
|
}, "strip", z.ZodTypeAny, {
|
|
5660
5660
|
options?: {
|
|
5661
5661
|
available?: boolean | null | undefined;
|
|
5662
|
-
id: string;
|
|
5663
5662
|
name: string;
|
|
5663
|
+
id: string;
|
|
5664
5664
|
price: number;
|
|
5665
5665
|
}[] | null | undefined;
|
|
5666
|
-
id: string;
|
|
5667
5666
|
name: string;
|
|
5667
|
+
id: string;
|
|
5668
5668
|
select_max: number;
|
|
5669
5669
|
select_min: number;
|
|
5670
5670
|
}, {
|
|
5671
5671
|
options?: {
|
|
5672
5672
|
available?: boolean | null | undefined;
|
|
5673
|
-
id: string;
|
|
5674
5673
|
name: string;
|
|
5674
|
+
id: string;
|
|
5675
5675
|
price: number;
|
|
5676
5676
|
}[] | null | undefined;
|
|
5677
|
-
id: string;
|
|
5678
5677
|
name: string;
|
|
5678
|
+
id: string;
|
|
5679
5679
|
select_max: number;
|
|
5680
5680
|
select_min: number;
|
|
5681
5681
|
}>;
|
|
@@ -5968,54 +5968,54 @@ export declare const SFMenuDish: z.ZodObject<{
|
|
|
5968
5968
|
price: z.ZodNumber;
|
|
5969
5969
|
}, "strip", z.ZodTypeAny, {
|
|
5970
5970
|
available?: boolean | null | undefined;
|
|
5971
|
-
id: string;
|
|
5972
5971
|
name: string;
|
|
5972
|
+
id: string;
|
|
5973
5973
|
price: number;
|
|
5974
5974
|
}, {
|
|
5975
5975
|
available?: boolean | null | undefined;
|
|
5976
|
-
id: string;
|
|
5977
5976
|
name: string;
|
|
5977
|
+
id: string;
|
|
5978
5978
|
price: number;
|
|
5979
5979
|
}>, "many">>>;
|
|
5980
5980
|
}, "strip", z.ZodTypeAny, {
|
|
5981
5981
|
options?: {
|
|
5982
5982
|
available?: boolean | null | undefined;
|
|
5983
|
-
id: string;
|
|
5984
5983
|
name: string;
|
|
5984
|
+
id: string;
|
|
5985
5985
|
price: number;
|
|
5986
5986
|
}[] | null | undefined;
|
|
5987
|
-
id: string;
|
|
5988
5987
|
name: string;
|
|
5988
|
+
id: string;
|
|
5989
5989
|
select_max: number;
|
|
5990
5990
|
select_min: number;
|
|
5991
5991
|
}, {
|
|
5992
5992
|
options?: {
|
|
5993
5993
|
available?: boolean | null | undefined;
|
|
5994
|
-
id: string;
|
|
5995
5994
|
name: string;
|
|
5995
|
+
id: string;
|
|
5996
5996
|
price: number;
|
|
5997
5997
|
}[] | null | undefined;
|
|
5998
|
-
id: string;
|
|
5999
5998
|
name: string;
|
|
5999
|
+
id: string;
|
|
6000
6000
|
select_max: number;
|
|
6001
6001
|
select_min: number;
|
|
6002
6002
|
}>, "many">;
|
|
6003
6003
|
}, "strip", z.ZodTypeAny, {
|
|
6004
6004
|
description?: string | null | undefined;
|
|
6005
6005
|
available?: boolean | null | undefined;
|
|
6006
|
+
name: string;
|
|
6006
6007
|
picture: string;
|
|
6007
6008
|
id: string;
|
|
6008
|
-
name: string;
|
|
6009
6009
|
price: number;
|
|
6010
6010
|
option_groups: {
|
|
6011
6011
|
options?: {
|
|
6012
6012
|
available?: boolean | null | undefined;
|
|
6013
|
-
id: string;
|
|
6014
6013
|
name: string;
|
|
6014
|
+
id: string;
|
|
6015
6015
|
price: number;
|
|
6016
6016
|
}[] | null | undefined;
|
|
6017
|
-
id: string;
|
|
6018
6017
|
name: string;
|
|
6018
|
+
id: string;
|
|
6019
6019
|
select_max: number;
|
|
6020
6020
|
select_min: number;
|
|
6021
6021
|
}[];
|
|
@@ -6052,19 +6052,19 @@ export declare const SFMenuDish: z.ZodObject<{
|
|
|
6052
6052
|
}, {
|
|
6053
6053
|
description?: string | null | undefined;
|
|
6054
6054
|
available?: boolean | null | undefined;
|
|
6055
|
+
name: string;
|
|
6055
6056
|
picture: string;
|
|
6056
6057
|
id: string;
|
|
6057
|
-
name: string;
|
|
6058
6058
|
price: number;
|
|
6059
6059
|
option_groups: {
|
|
6060
6060
|
options?: {
|
|
6061
6061
|
available?: boolean | null | undefined;
|
|
6062
|
-
id: string;
|
|
6063
6062
|
name: string;
|
|
6063
|
+
id: string;
|
|
6064
6064
|
price: number;
|
|
6065
6065
|
}[] | null | undefined;
|
|
6066
|
-
id: string;
|
|
6067
6066
|
name: string;
|
|
6067
|
+
id: string;
|
|
6068
6068
|
select_max: number;
|
|
6069
6069
|
select_min: number;
|
|
6070
6070
|
}[];
|
|
@@ -6251,54 +6251,54 @@ export declare const SFMenuCatalog: z.ZodObject<{
|
|
|
6251
6251
|
price: z.ZodNumber;
|
|
6252
6252
|
}, "strip", z.ZodTypeAny, {
|
|
6253
6253
|
available?: boolean | null | undefined;
|
|
6254
|
-
id: string;
|
|
6255
6254
|
name: string;
|
|
6255
|
+
id: string;
|
|
6256
6256
|
price: number;
|
|
6257
6257
|
}, {
|
|
6258
6258
|
available?: boolean | null | undefined;
|
|
6259
|
-
id: string;
|
|
6260
6259
|
name: string;
|
|
6260
|
+
id: string;
|
|
6261
6261
|
price: number;
|
|
6262
6262
|
}>, "many">>>;
|
|
6263
6263
|
}, "strip", z.ZodTypeAny, {
|
|
6264
6264
|
options?: {
|
|
6265
6265
|
available?: boolean | null | undefined;
|
|
6266
|
-
id: string;
|
|
6267
6266
|
name: string;
|
|
6267
|
+
id: string;
|
|
6268
6268
|
price: number;
|
|
6269
6269
|
}[] | null | undefined;
|
|
6270
|
-
id: string;
|
|
6271
6270
|
name: string;
|
|
6271
|
+
id: string;
|
|
6272
6272
|
select_max: number;
|
|
6273
6273
|
select_min: number;
|
|
6274
6274
|
}, {
|
|
6275
6275
|
options?: {
|
|
6276
6276
|
available?: boolean | null | undefined;
|
|
6277
|
-
id: string;
|
|
6278
6277
|
name: string;
|
|
6278
|
+
id: string;
|
|
6279
6279
|
price: number;
|
|
6280
6280
|
}[] | null | undefined;
|
|
6281
|
-
id: string;
|
|
6282
6281
|
name: string;
|
|
6282
|
+
id: string;
|
|
6283
6283
|
select_max: number;
|
|
6284
6284
|
select_min: number;
|
|
6285
6285
|
}>, "many">;
|
|
6286
6286
|
}, "strip", z.ZodTypeAny, {
|
|
6287
6287
|
description?: string | null | undefined;
|
|
6288
6288
|
available?: boolean | null | undefined;
|
|
6289
|
+
name: string;
|
|
6289
6290
|
picture: string;
|
|
6290
6291
|
id: string;
|
|
6291
|
-
name: string;
|
|
6292
6292
|
price: number;
|
|
6293
6293
|
option_groups: {
|
|
6294
6294
|
options?: {
|
|
6295
6295
|
available?: boolean | null | undefined;
|
|
6296
|
-
id: string;
|
|
6297
6296
|
name: string;
|
|
6297
|
+
id: string;
|
|
6298
6298
|
price: number;
|
|
6299
6299
|
}[] | null | undefined;
|
|
6300
|
-
id: string;
|
|
6301
6300
|
name: string;
|
|
6301
|
+
id: string;
|
|
6302
6302
|
select_max: number;
|
|
6303
6303
|
select_min: number;
|
|
6304
6304
|
}[];
|
|
@@ -6335,19 +6335,19 @@ export declare const SFMenuCatalog: z.ZodObject<{
|
|
|
6335
6335
|
}, {
|
|
6336
6336
|
description?: string | null | undefined;
|
|
6337
6337
|
available?: boolean | null | undefined;
|
|
6338
|
+
name: string;
|
|
6338
6339
|
picture: string;
|
|
6339
6340
|
id: string;
|
|
6340
|
-
name: string;
|
|
6341
6341
|
price: number;
|
|
6342
6342
|
option_groups: {
|
|
6343
6343
|
options?: {
|
|
6344
6344
|
available?: boolean | null | undefined;
|
|
6345
|
-
id: string;
|
|
6346
6345
|
name: string;
|
|
6346
|
+
id: string;
|
|
6347
6347
|
price: number;
|
|
6348
6348
|
}[] | null | undefined;
|
|
6349
|
-
id: string;
|
|
6350
6349
|
name: string;
|
|
6350
|
+
id: string;
|
|
6351
6351
|
select_max: number;
|
|
6352
6352
|
select_min: number;
|
|
6353
6353
|
}[];
|
|
@@ -6383,24 +6383,24 @@ export declare const SFMenuCatalog: z.ZodObject<{
|
|
|
6383
6383
|
};
|
|
6384
6384
|
}>, "many">;
|
|
6385
6385
|
}, "strip", z.ZodTypeAny, {
|
|
6386
|
-
id: string;
|
|
6387
6386
|
name: string;
|
|
6387
|
+
id: string;
|
|
6388
6388
|
dishes: {
|
|
6389
6389
|
description?: string | null | undefined;
|
|
6390
6390
|
available?: boolean | null | undefined;
|
|
6391
|
+
name: string;
|
|
6391
6392
|
picture: string;
|
|
6392
6393
|
id: string;
|
|
6393
|
-
name: string;
|
|
6394
6394
|
price: number;
|
|
6395
6395
|
option_groups: {
|
|
6396
6396
|
options?: {
|
|
6397
6397
|
available?: boolean | null | undefined;
|
|
6398
|
-
id: string;
|
|
6399
6398
|
name: string;
|
|
6399
|
+
id: string;
|
|
6400
6400
|
price: number;
|
|
6401
6401
|
}[] | null | undefined;
|
|
6402
|
-
id: string;
|
|
6403
6402
|
name: string;
|
|
6403
|
+
id: string;
|
|
6404
6404
|
select_max: number;
|
|
6405
6405
|
select_min: number;
|
|
6406
6406
|
}[];
|
|
@@ -6436,24 +6436,24 @@ export declare const SFMenuCatalog: z.ZodObject<{
|
|
|
6436
6436
|
};
|
|
6437
6437
|
}[];
|
|
6438
6438
|
}, {
|
|
6439
|
-
id: string;
|
|
6440
6439
|
name: string;
|
|
6440
|
+
id: string;
|
|
6441
6441
|
dishes: {
|
|
6442
6442
|
description?: string | null | undefined;
|
|
6443
6443
|
available?: boolean | null | undefined;
|
|
6444
|
+
name: string;
|
|
6444
6445
|
picture: string;
|
|
6445
6446
|
id: string;
|
|
6446
|
-
name: string;
|
|
6447
6447
|
price: number;
|
|
6448
6448
|
option_groups: {
|
|
6449
6449
|
options?: {
|
|
6450
6450
|
available?: boolean | null | undefined;
|
|
6451
|
-
id: string;
|
|
6452
6451
|
name: string;
|
|
6452
|
+
id: string;
|
|
6453
6453
|
price: number;
|
|
6454
6454
|
}[] | null | undefined;
|
|
6455
|
-
id: string;
|
|
6456
6455
|
name: string;
|
|
6456
|
+
id: string;
|
|
6457
6457
|
select_max: number;
|
|
6458
6458
|
select_min: number;
|
|
6459
6459
|
}[];
|
|
@@ -6642,54 +6642,54 @@ export declare const SFMenuResData: z.ZodObject<{
|
|
|
6642
6642
|
price: z.ZodNumber;
|
|
6643
6643
|
}, "strip", z.ZodTypeAny, {
|
|
6644
6644
|
available?: boolean | null | undefined;
|
|
6645
|
-
id: string;
|
|
6646
6645
|
name: string;
|
|
6646
|
+
id: string;
|
|
6647
6647
|
price: number;
|
|
6648
6648
|
}, {
|
|
6649
6649
|
available?: boolean | null | undefined;
|
|
6650
|
-
id: string;
|
|
6651
6650
|
name: string;
|
|
6651
|
+
id: string;
|
|
6652
6652
|
price: number;
|
|
6653
6653
|
}>, "many">>>;
|
|
6654
6654
|
}, "strip", z.ZodTypeAny, {
|
|
6655
6655
|
options?: {
|
|
6656
6656
|
available?: boolean | null | undefined;
|
|
6657
|
-
id: string;
|
|
6658
6657
|
name: string;
|
|
6658
|
+
id: string;
|
|
6659
6659
|
price: number;
|
|
6660
6660
|
}[] | null | undefined;
|
|
6661
|
-
id: string;
|
|
6662
6661
|
name: string;
|
|
6662
|
+
id: string;
|
|
6663
6663
|
select_max: number;
|
|
6664
6664
|
select_min: number;
|
|
6665
6665
|
}, {
|
|
6666
6666
|
options?: {
|
|
6667
6667
|
available?: boolean | null | undefined;
|
|
6668
|
-
id: string;
|
|
6669
6668
|
name: string;
|
|
6669
|
+
id: string;
|
|
6670
6670
|
price: number;
|
|
6671
6671
|
}[] | null | undefined;
|
|
6672
|
-
id: string;
|
|
6673
6672
|
name: string;
|
|
6673
|
+
id: string;
|
|
6674
6674
|
select_max: number;
|
|
6675
6675
|
select_min: number;
|
|
6676
6676
|
}>, "many">;
|
|
6677
6677
|
}, "strip", z.ZodTypeAny, {
|
|
6678
6678
|
description?: string | null | undefined;
|
|
6679
6679
|
available?: boolean | null | undefined;
|
|
6680
|
+
name: string;
|
|
6680
6681
|
picture: string;
|
|
6681
6682
|
id: string;
|
|
6682
|
-
name: string;
|
|
6683
6683
|
price: number;
|
|
6684
6684
|
option_groups: {
|
|
6685
6685
|
options?: {
|
|
6686
6686
|
available?: boolean | null | undefined;
|
|
6687
|
-
id: string;
|
|
6688
6687
|
name: string;
|
|
6688
|
+
id: string;
|
|
6689
6689
|
price: number;
|
|
6690
6690
|
}[] | null | undefined;
|
|
6691
|
-
id: string;
|
|
6692
6691
|
name: string;
|
|
6692
|
+
id: string;
|
|
6693
6693
|
select_max: number;
|
|
6694
6694
|
select_min: number;
|
|
6695
6695
|
}[];
|
|
@@ -6726,19 +6726,19 @@ export declare const SFMenuResData: z.ZodObject<{
|
|
|
6726
6726
|
}, {
|
|
6727
6727
|
description?: string | null | undefined;
|
|
6728
6728
|
available?: boolean | null | undefined;
|
|
6729
|
+
name: string;
|
|
6729
6730
|
picture: string;
|
|
6730
6731
|
id: string;
|
|
6731
|
-
name: string;
|
|
6732
6732
|
price: number;
|
|
6733
6733
|
option_groups: {
|
|
6734
6734
|
options?: {
|
|
6735
6735
|
available?: boolean | null | undefined;
|
|
6736
|
-
id: string;
|
|
6737
6736
|
name: string;
|
|
6737
|
+
id: string;
|
|
6738
6738
|
price: number;
|
|
6739
6739
|
}[] | null | undefined;
|
|
6740
|
-
id: string;
|
|
6741
6740
|
name: string;
|
|
6741
|
+
id: string;
|
|
6742
6742
|
select_max: number;
|
|
6743
6743
|
select_min: number;
|
|
6744
6744
|
}[];
|
|
@@ -6774,24 +6774,24 @@ export declare const SFMenuResData: z.ZodObject<{
|
|
|
6774
6774
|
};
|
|
6775
6775
|
}>, "many">;
|
|
6776
6776
|
}, "strip", z.ZodTypeAny, {
|
|
6777
|
-
id: string;
|
|
6778
6777
|
name: string;
|
|
6778
|
+
id: string;
|
|
6779
6779
|
dishes: {
|
|
6780
6780
|
description?: string | null | undefined;
|
|
6781
6781
|
available?: boolean | null | undefined;
|
|
6782
|
+
name: string;
|
|
6782
6783
|
picture: string;
|
|
6783
6784
|
id: string;
|
|
6784
|
-
name: string;
|
|
6785
6785
|
price: number;
|
|
6786
6786
|
option_groups: {
|
|
6787
6787
|
options?: {
|
|
6788
6788
|
available?: boolean | null | undefined;
|
|
6789
|
-
id: string;
|
|
6790
6789
|
name: string;
|
|
6790
|
+
id: string;
|
|
6791
6791
|
price: number;
|
|
6792
6792
|
}[] | null | undefined;
|
|
6793
|
-
id: string;
|
|
6794
6793
|
name: string;
|
|
6794
|
+
id: string;
|
|
6795
6795
|
select_max: number;
|
|
6796
6796
|
select_min: number;
|
|
6797
6797
|
}[];
|
|
@@ -6827,24 +6827,24 @@ export declare const SFMenuResData: z.ZodObject<{
|
|
|
6827
6827
|
};
|
|
6828
6828
|
}[];
|
|
6829
6829
|
}, {
|
|
6830
|
-
id: string;
|
|
6831
6830
|
name: string;
|
|
6831
|
+
id: string;
|
|
6832
6832
|
dishes: {
|
|
6833
6833
|
description?: string | null | undefined;
|
|
6834
6834
|
available?: boolean | null | undefined;
|
|
6835
|
+
name: string;
|
|
6835
6836
|
picture: string;
|
|
6836
6837
|
id: string;
|
|
6837
|
-
name: string;
|
|
6838
6838
|
price: number;
|
|
6839
6839
|
option_groups: {
|
|
6840
6840
|
options?: {
|
|
6841
6841
|
available?: boolean | null | undefined;
|
|
6842
|
-
id: string;
|
|
6843
6842
|
name: string;
|
|
6843
|
+
id: string;
|
|
6844
6844
|
price: number;
|
|
6845
6845
|
}[] | null | undefined;
|
|
6846
|
-
id: string;
|
|
6847
6846
|
name: string;
|
|
6847
|
+
id: string;
|
|
6848
6848
|
select_max: number;
|
|
6849
6849
|
select_min: number;
|
|
6850
6850
|
}[];
|
|
@@ -6882,24 +6882,24 @@ export declare const SFMenuResData: z.ZodObject<{
|
|
|
6882
6882
|
}>, "many">;
|
|
6883
6883
|
}, "strip", z.ZodTypeAny, {
|
|
6884
6884
|
catalogs: {
|
|
6885
|
-
id: string;
|
|
6886
6885
|
name: string;
|
|
6886
|
+
id: string;
|
|
6887
6887
|
dishes: {
|
|
6888
6888
|
description?: string | null | undefined;
|
|
6889
6889
|
available?: boolean | null | undefined;
|
|
6890
|
+
name: string;
|
|
6890
6891
|
picture: string;
|
|
6891
6892
|
id: string;
|
|
6892
|
-
name: string;
|
|
6893
6893
|
price: number;
|
|
6894
6894
|
option_groups: {
|
|
6895
6895
|
options?: {
|
|
6896
6896
|
available?: boolean | null | undefined;
|
|
6897
|
-
id: string;
|
|
6898
6897
|
name: string;
|
|
6898
|
+
id: string;
|
|
6899
6899
|
price: number;
|
|
6900
6900
|
}[] | null | undefined;
|
|
6901
|
-
id: string;
|
|
6902
6901
|
name: string;
|
|
6902
|
+
id: string;
|
|
6903
6903
|
select_max: number;
|
|
6904
6904
|
select_min: number;
|
|
6905
6905
|
}[];
|
|
@@ -6937,24 +6937,24 @@ export declare const SFMenuResData: z.ZodObject<{
|
|
|
6937
6937
|
}[];
|
|
6938
6938
|
}, {
|
|
6939
6939
|
catalogs: {
|
|
6940
|
-
id: string;
|
|
6941
6940
|
name: string;
|
|
6941
|
+
id: string;
|
|
6942
6942
|
dishes: {
|
|
6943
6943
|
description?: string | null | undefined;
|
|
6944
6944
|
available?: boolean | null | undefined;
|
|
6945
|
+
name: string;
|
|
6945
6946
|
picture: string;
|
|
6946
6947
|
id: string;
|
|
6947
|
-
name: string;
|
|
6948
6948
|
price: number;
|
|
6949
6949
|
option_groups: {
|
|
6950
6950
|
options?: {
|
|
6951
6951
|
available?: boolean | null | undefined;
|
|
6952
|
-
id: string;
|
|
6953
6952
|
name: string;
|
|
6953
|
+
id: string;
|
|
6954
6954
|
price: number;
|
|
6955
6955
|
}[] | null | undefined;
|
|
6956
|
-
id: string;
|
|
6957
6956
|
name: string;
|
|
6957
|
+
id: string;
|
|
6958
6958
|
select_max: number;
|
|
6959
6959
|
select_min: number;
|
|
6960
6960
|
}[];
|
|
@@ -7147,54 +7147,54 @@ export declare const SFMenuRes: z.ZodObject<{
|
|
|
7147
7147
|
price: z.ZodNumber;
|
|
7148
7148
|
}, "strip", z.ZodTypeAny, {
|
|
7149
7149
|
available?: boolean | null | undefined;
|
|
7150
|
-
id: string;
|
|
7151
7150
|
name: string;
|
|
7151
|
+
id: string;
|
|
7152
7152
|
price: number;
|
|
7153
7153
|
}, {
|
|
7154
7154
|
available?: boolean | null | undefined;
|
|
7155
|
-
id: string;
|
|
7156
7155
|
name: string;
|
|
7156
|
+
id: string;
|
|
7157
7157
|
price: number;
|
|
7158
7158
|
}>, "many">>>;
|
|
7159
7159
|
}, "strip", z.ZodTypeAny, {
|
|
7160
7160
|
options?: {
|
|
7161
7161
|
available?: boolean | null | undefined;
|
|
7162
|
-
id: string;
|
|
7163
7162
|
name: string;
|
|
7163
|
+
id: string;
|
|
7164
7164
|
price: number;
|
|
7165
7165
|
}[] | null | undefined;
|
|
7166
|
-
id: string;
|
|
7167
7166
|
name: string;
|
|
7167
|
+
id: string;
|
|
7168
7168
|
select_max: number;
|
|
7169
7169
|
select_min: number;
|
|
7170
7170
|
}, {
|
|
7171
7171
|
options?: {
|
|
7172
7172
|
available?: boolean | null | undefined;
|
|
7173
|
-
id: string;
|
|
7174
7173
|
name: string;
|
|
7174
|
+
id: string;
|
|
7175
7175
|
price: number;
|
|
7176
7176
|
}[] | null | undefined;
|
|
7177
|
-
id: string;
|
|
7178
7177
|
name: string;
|
|
7178
|
+
id: string;
|
|
7179
7179
|
select_max: number;
|
|
7180
7180
|
select_min: number;
|
|
7181
7181
|
}>, "many">;
|
|
7182
7182
|
}, "strip", z.ZodTypeAny, {
|
|
7183
7183
|
description?: string | null | undefined;
|
|
7184
7184
|
available?: boolean | null | undefined;
|
|
7185
|
+
name: string;
|
|
7185
7186
|
picture: string;
|
|
7186
7187
|
id: string;
|
|
7187
|
-
name: string;
|
|
7188
7188
|
price: number;
|
|
7189
7189
|
option_groups: {
|
|
7190
7190
|
options?: {
|
|
7191
7191
|
available?: boolean | null | undefined;
|
|
7192
|
-
id: string;
|
|
7193
7192
|
name: string;
|
|
7193
|
+
id: string;
|
|
7194
7194
|
price: number;
|
|
7195
7195
|
}[] | null | undefined;
|
|
7196
|
-
id: string;
|
|
7197
7196
|
name: string;
|
|
7197
|
+
id: string;
|
|
7198
7198
|
select_max: number;
|
|
7199
7199
|
select_min: number;
|
|
7200
7200
|
}[];
|
|
@@ -7231,19 +7231,19 @@ export declare const SFMenuRes: z.ZodObject<{
|
|
|
7231
7231
|
}, {
|
|
7232
7232
|
description?: string | null | undefined;
|
|
7233
7233
|
available?: boolean | null | undefined;
|
|
7234
|
+
name: string;
|
|
7234
7235
|
picture: string;
|
|
7235
7236
|
id: string;
|
|
7236
|
-
name: string;
|
|
7237
7237
|
price: number;
|
|
7238
7238
|
option_groups: {
|
|
7239
7239
|
options?: {
|
|
7240
7240
|
available?: boolean | null | undefined;
|
|
7241
|
-
id: string;
|
|
7242
7241
|
name: string;
|
|
7242
|
+
id: string;
|
|
7243
7243
|
price: number;
|
|
7244
7244
|
}[] | null | undefined;
|
|
7245
|
-
id: string;
|
|
7246
7245
|
name: string;
|
|
7246
|
+
id: string;
|
|
7247
7247
|
select_max: number;
|
|
7248
7248
|
select_min: number;
|
|
7249
7249
|
}[];
|
|
@@ -7279,24 +7279,24 @@ export declare const SFMenuRes: z.ZodObject<{
|
|
|
7279
7279
|
};
|
|
7280
7280
|
}>, "many">;
|
|
7281
7281
|
}, "strip", z.ZodTypeAny, {
|
|
7282
|
-
id: string;
|
|
7283
7282
|
name: string;
|
|
7283
|
+
id: string;
|
|
7284
7284
|
dishes: {
|
|
7285
7285
|
description?: string | null | undefined;
|
|
7286
7286
|
available?: boolean | null | undefined;
|
|
7287
|
+
name: string;
|
|
7287
7288
|
picture: string;
|
|
7288
7289
|
id: string;
|
|
7289
|
-
name: string;
|
|
7290
7290
|
price: number;
|
|
7291
7291
|
option_groups: {
|
|
7292
7292
|
options?: {
|
|
7293
7293
|
available?: boolean | null | undefined;
|
|
7294
|
-
id: string;
|
|
7295
7294
|
name: string;
|
|
7295
|
+
id: string;
|
|
7296
7296
|
price: number;
|
|
7297
7297
|
}[] | null | undefined;
|
|
7298
|
-
id: string;
|
|
7299
7298
|
name: string;
|
|
7299
|
+
id: string;
|
|
7300
7300
|
select_max: number;
|
|
7301
7301
|
select_min: number;
|
|
7302
7302
|
}[];
|
|
@@ -7332,24 +7332,24 @@ export declare const SFMenuRes: z.ZodObject<{
|
|
|
7332
7332
|
};
|
|
7333
7333
|
}[];
|
|
7334
7334
|
}, {
|
|
7335
|
-
id: string;
|
|
7336
7335
|
name: string;
|
|
7336
|
+
id: string;
|
|
7337
7337
|
dishes: {
|
|
7338
7338
|
description?: string | null | undefined;
|
|
7339
7339
|
available?: boolean | null | undefined;
|
|
7340
|
+
name: string;
|
|
7340
7341
|
picture: string;
|
|
7341
7342
|
id: string;
|
|
7342
|
-
name: string;
|
|
7343
7343
|
price: number;
|
|
7344
7344
|
option_groups: {
|
|
7345
7345
|
options?: {
|
|
7346
7346
|
available?: boolean | null | undefined;
|
|
7347
|
-
id: string;
|
|
7348
7347
|
name: string;
|
|
7348
|
+
id: string;
|
|
7349
7349
|
price: number;
|
|
7350
7350
|
}[] | null | undefined;
|
|
7351
|
-
id: string;
|
|
7352
7351
|
name: string;
|
|
7352
|
+
id: string;
|
|
7353
7353
|
select_max: number;
|
|
7354
7354
|
select_min: number;
|
|
7355
7355
|
}[];
|
|
@@ -7387,24 +7387,24 @@ export declare const SFMenuRes: z.ZodObject<{
|
|
|
7387
7387
|
}>, "many">;
|
|
7388
7388
|
}, "strip", z.ZodTypeAny, {
|
|
7389
7389
|
catalogs: {
|
|
7390
|
-
id: string;
|
|
7391
7390
|
name: string;
|
|
7391
|
+
id: string;
|
|
7392
7392
|
dishes: {
|
|
7393
7393
|
description?: string | null | undefined;
|
|
7394
7394
|
available?: boolean | null | undefined;
|
|
7395
|
+
name: string;
|
|
7395
7396
|
picture: string;
|
|
7396
7397
|
id: string;
|
|
7397
|
-
name: string;
|
|
7398
7398
|
price: number;
|
|
7399
7399
|
option_groups: {
|
|
7400
7400
|
options?: {
|
|
7401
7401
|
available?: boolean | null | undefined;
|
|
7402
|
-
id: string;
|
|
7403
7402
|
name: string;
|
|
7403
|
+
id: string;
|
|
7404
7404
|
price: number;
|
|
7405
7405
|
}[] | null | undefined;
|
|
7406
|
-
id: string;
|
|
7407
7406
|
name: string;
|
|
7407
|
+
id: string;
|
|
7408
7408
|
select_max: number;
|
|
7409
7409
|
select_min: number;
|
|
7410
7410
|
}[];
|
|
@@ -7442,24 +7442,24 @@ export declare const SFMenuRes: z.ZodObject<{
|
|
|
7442
7442
|
}[];
|
|
7443
7443
|
}, {
|
|
7444
7444
|
catalogs: {
|
|
7445
|
-
id: string;
|
|
7446
7445
|
name: string;
|
|
7446
|
+
id: string;
|
|
7447
7447
|
dishes: {
|
|
7448
7448
|
description?: string | null | undefined;
|
|
7449
7449
|
available?: boolean | null | undefined;
|
|
7450
|
+
name: string;
|
|
7450
7451
|
picture: string;
|
|
7451
7452
|
id: string;
|
|
7452
|
-
name: string;
|
|
7453
7453
|
price: number;
|
|
7454
7454
|
option_groups: {
|
|
7455
7455
|
options?: {
|
|
7456
7456
|
available?: boolean | null | undefined;
|
|
7457
|
-
id: string;
|
|
7458
7457
|
name: string;
|
|
7458
|
+
id: string;
|
|
7459
7459
|
price: number;
|
|
7460
7460
|
}[] | null | undefined;
|
|
7461
|
-
id: string;
|
|
7462
7461
|
name: string;
|
|
7462
|
+
id: string;
|
|
7463
7463
|
select_max: number;
|
|
7464
7464
|
select_min: number;
|
|
7465
7465
|
}[];
|
|
@@ -7497,27 +7497,26 @@ export declare const SFMenuRes: z.ZodObject<{
|
|
|
7497
7497
|
}[];
|
|
7498
7498
|
}>;
|
|
7499
7499
|
}, "strip", z.ZodTypeAny, {
|
|
7500
|
-
code: number;
|
|
7501
7500
|
data: {
|
|
7502
7501
|
catalogs: {
|
|
7503
|
-
id: string;
|
|
7504
7502
|
name: string;
|
|
7503
|
+
id: string;
|
|
7505
7504
|
dishes: {
|
|
7506
7505
|
description?: string | null | undefined;
|
|
7507
7506
|
available?: boolean | null | undefined;
|
|
7507
|
+
name: string;
|
|
7508
7508
|
picture: string;
|
|
7509
7509
|
id: string;
|
|
7510
|
-
name: string;
|
|
7511
7510
|
price: number;
|
|
7512
7511
|
option_groups: {
|
|
7513
7512
|
options?: {
|
|
7514
7513
|
available?: boolean | null | undefined;
|
|
7515
|
-
id: string;
|
|
7516
7514
|
name: string;
|
|
7515
|
+
id: string;
|
|
7517
7516
|
price: number;
|
|
7518
7517
|
}[] | null | undefined;
|
|
7519
|
-
id: string;
|
|
7520
7518
|
name: string;
|
|
7519
|
+
id: string;
|
|
7521
7520
|
select_max: number;
|
|
7522
7521
|
select_min: number;
|
|
7523
7522
|
}[];
|
|
@@ -7554,29 +7553,29 @@ export declare const SFMenuRes: z.ZodObject<{
|
|
|
7554
7553
|
}[];
|
|
7555
7554
|
}[];
|
|
7556
7555
|
};
|
|
7556
|
+
code: number;
|
|
7557
7557
|
msg: string;
|
|
7558
7558
|
}, {
|
|
7559
|
-
code: number;
|
|
7560
7559
|
data: {
|
|
7561
7560
|
catalogs: {
|
|
7562
|
-
id: string;
|
|
7563
7561
|
name: string;
|
|
7562
|
+
id: string;
|
|
7564
7563
|
dishes: {
|
|
7565
7564
|
description?: string | null | undefined;
|
|
7566
7565
|
available?: boolean | null | undefined;
|
|
7566
|
+
name: string;
|
|
7567
7567
|
picture: string;
|
|
7568
7568
|
id: string;
|
|
7569
|
-
name: string;
|
|
7570
7569
|
price: number;
|
|
7571
7570
|
option_groups: {
|
|
7572
7571
|
options?: {
|
|
7573
7572
|
available?: boolean | null | undefined;
|
|
7574
|
-
id: string;
|
|
7575
7573
|
name: string;
|
|
7574
|
+
id: string;
|
|
7576
7575
|
price: number;
|
|
7577
7576
|
}[] | null | undefined;
|
|
7578
|
-
id: string;
|
|
7579
7577
|
name: string;
|
|
7578
|
+
id: string;
|
|
7580
7579
|
select_max: number;
|
|
7581
7580
|
select_min: number;
|
|
7582
7581
|
}[];
|
|
@@ -7613,6 +7612,7 @@ export declare const SFMenuRes: z.ZodObject<{
|
|
|
7613
7612
|
}[];
|
|
7614
7613
|
}[];
|
|
7615
7614
|
};
|
|
7615
|
+
code: number;
|
|
7616
7616
|
msg: string;
|
|
7617
7617
|
}>;
|
|
7618
7618
|
export declare const SFStatus: z.ZodObject<{
|