@nextorders/food-schema 0.0.1

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.
@@ -0,0 +1,4160 @@
1
+ import z from 'zod';
2
+
3
+ declare const ChannelSchema: z.ZodObject<{
4
+ id: z.ZodString;
5
+ selectorTitle: z.ZodArray<z.ZodObject<{
6
+ locale: z.ZodEnum<{
7
+ de: "de";
8
+ en: "en";
9
+ es: "es";
10
+ ka: "ka";
11
+ ru: "ru";
12
+ zh_cn: "zh_cn";
13
+ }>;
14
+ value: z.ZodString;
15
+ }, z.core.$strip>>;
16
+ title: z.ZodArray<z.ZodObject<{
17
+ locale: z.ZodEnum<{
18
+ de: "de";
19
+ en: "en";
20
+ es: "es";
21
+ ka: "ka";
22
+ ru: "ru";
23
+ zh_cn: "zh_cn";
24
+ }>;
25
+ value: z.ZodString;
26
+ }, z.core.$strip>>;
27
+ description: z.ZodOptional<z.ZodArray<z.ZodObject<{
28
+ locale: z.ZodEnum<{
29
+ de: "de";
30
+ en: "en";
31
+ es: "es";
32
+ ka: "ka";
33
+ ru: "ru";
34
+ zh_cn: "zh_cn";
35
+ }>;
36
+ value: z.ZodString;
37
+ }, z.core.$strip>>>;
38
+ url: z.ZodString;
39
+ timeZone: z.ZodEnum<{
40
+ "-12:00": "-12:00";
41
+ "-11:00": "-11:00";
42
+ "-10:00": "-10:00";
43
+ "-09:00": "-09:00";
44
+ "-08:00": "-08:00";
45
+ "-07:00": "-07:00";
46
+ "-06:00": "-06:00";
47
+ "-05:00": "-05:00";
48
+ "-04:00": "-04:00";
49
+ "-03:00": "-03:00";
50
+ "-02:00": "-02:00";
51
+ "-01:00": "-01:00";
52
+ "+00:00": "+00:00";
53
+ "+01:00": "+01:00";
54
+ "+02:00": "+02:00";
55
+ "+03:00": "+03:00";
56
+ "+04:00": "+04:00";
57
+ "+05:00": "+05:00";
58
+ "+06:00": "+06:00";
59
+ "+07:00": "+07:00";
60
+ "+08:00": "+08:00";
61
+ "+09:00": "+09:00";
62
+ "+10:00": "+10:00";
63
+ "+11:00": "+11:00";
64
+ "+12:00": "+12:00";
65
+ "+13:00": "+13:00";
66
+ "+14:00": "+14:00";
67
+ }>;
68
+ isActive: z.ZodBoolean;
69
+ deliveryByCourier: z.ZodObject<{
70
+ isAvailable: z.ZodBoolean;
71
+ paymentMethods: z.ZodArray<z.ZodObject<{
72
+ id: z.ZodString;
73
+ title: z.ZodArray<z.ZodObject<{
74
+ locale: z.ZodEnum<{
75
+ de: "de";
76
+ en: "en";
77
+ es: "es";
78
+ ka: "ka";
79
+ ru: "ru";
80
+ zh_cn: "zh_cn";
81
+ }>;
82
+ value: z.ZodString;
83
+ }, z.core.$strip>>;
84
+ type: z.ZodEnum<{
85
+ cash: "cash";
86
+ card: "card";
87
+ custom: "custom";
88
+ }>;
89
+ }, z.core.$strip>>;
90
+ conditions: z.ZodOptional<z.ZodArray<z.ZodObject<{
91
+ locale: z.ZodEnum<{
92
+ de: "de";
93
+ en: "en";
94
+ es: "es";
95
+ ka: "ka";
96
+ ru: "ru";
97
+ zh_cn: "zh_cn";
98
+ }>;
99
+ value: z.ZodString;
100
+ }, z.core.$strip>>>;
101
+ minAmountForDelivery: z.ZodOptional<z.ZodNumber>;
102
+ schedule: z.ZodOptional<z.ZodArray<z.ZodObject<{
103
+ day: z.ZodEnum<{
104
+ sun: "sun";
105
+ mon: "mon";
106
+ tue: "tue";
107
+ wed: "wed";
108
+ thu: "thu";
109
+ fri: "fri";
110
+ sat: "sat";
111
+ }>;
112
+ isClosed: z.ZodBoolean;
113
+ hours: z.ZodOptional<z.ZodArray<z.ZodObject<{
114
+ start: z.ZodString;
115
+ end: z.ZodString;
116
+ }, z.core.$strip>>>;
117
+ comment: z.ZodOptional<z.ZodArray<z.ZodObject<{
118
+ locale: z.ZodEnum<{
119
+ de: "de";
120
+ en: "en";
121
+ es: "es";
122
+ ka: "ka";
123
+ ru: "ru";
124
+ zh_cn: "zh_cn";
125
+ }>;
126
+ value: z.ZodString;
127
+ }, z.core.$strip>>>;
128
+ }, z.core.$strip>>>;
129
+ }, z.core.$strip>;
130
+ selfPickup: z.ZodObject<{
131
+ isAvailable: z.ZodBoolean;
132
+ paymentMethods: z.ZodArray<z.ZodObject<{
133
+ id: z.ZodString;
134
+ title: z.ZodArray<z.ZodObject<{
135
+ locale: z.ZodEnum<{
136
+ de: "de";
137
+ en: "en";
138
+ es: "es";
139
+ ka: "ka";
140
+ ru: "ru";
141
+ zh_cn: "zh_cn";
142
+ }>;
143
+ value: z.ZodString;
144
+ }, z.core.$strip>>;
145
+ type: z.ZodEnum<{
146
+ cash: "cash";
147
+ card: "card";
148
+ custom: "custom";
149
+ }>;
150
+ }, z.core.$strip>>;
151
+ conditions: z.ZodOptional<z.ZodArray<z.ZodObject<{
152
+ locale: z.ZodEnum<{
153
+ de: "de";
154
+ en: "en";
155
+ es: "es";
156
+ ka: "ka";
157
+ ru: "ru";
158
+ zh_cn: "zh_cn";
159
+ }>;
160
+ value: z.ZodString;
161
+ }, z.core.$strip>>>;
162
+ schedule: z.ZodOptional<z.ZodArray<z.ZodObject<{
163
+ day: z.ZodEnum<{
164
+ sun: "sun";
165
+ mon: "mon";
166
+ tue: "tue";
167
+ wed: "wed";
168
+ thu: "thu";
169
+ fri: "fri";
170
+ sat: "sat";
171
+ }>;
172
+ isClosed: z.ZodBoolean;
173
+ hours: z.ZodOptional<z.ZodArray<z.ZodObject<{
174
+ start: z.ZodString;
175
+ end: z.ZodString;
176
+ }, z.core.$strip>>>;
177
+ comment: z.ZodOptional<z.ZodArray<z.ZodObject<{
178
+ locale: z.ZodEnum<{
179
+ de: "de";
180
+ en: "en";
181
+ es: "es";
182
+ ka: "ka";
183
+ ru: "ru";
184
+ zh_cn: "zh_cn";
185
+ }>;
186
+ value: z.ZodString;
187
+ }, z.core.$strip>>>;
188
+ }, z.core.$strip>>>;
189
+ warehouses: z.ZodOptional<z.ZodArray<z.ZodObject<{
190
+ id: z.ZodString;
191
+ title: z.ZodArray<z.ZodObject<{
192
+ locale: z.ZodEnum<{
193
+ de: "de";
194
+ en: "en";
195
+ es: "es";
196
+ ka: "ka";
197
+ ru: "ru";
198
+ zh_cn: "zh_cn";
199
+ }>;
200
+ value: z.ZodString;
201
+ }, z.core.$strip>>;
202
+ address: z.ZodObject<{
203
+ street: z.ZodArray<z.ZodObject<{
204
+ locale: z.ZodEnum<{
205
+ de: "de";
206
+ en: "en";
207
+ es: "es";
208
+ ka: "ka";
209
+ ru: "ru";
210
+ zh_cn: "zh_cn";
211
+ }>;
212
+ value: z.ZodString;
213
+ }, z.core.$strip>>;
214
+ }, z.core.$strip>;
215
+ }, z.core.$strip>>>;
216
+ }, z.core.$strip>;
217
+ copyright: z.ZodOptional<z.ZodArray<z.ZodObject<{
218
+ locale: z.ZodEnum<{
219
+ de: "de";
220
+ en: "en";
221
+ es: "es";
222
+ ka: "ka";
223
+ ru: "ru";
224
+ zh_cn: "zh_cn";
225
+ }>;
226
+ value: z.ZodString;
227
+ }, z.core.$strip>>>;
228
+ links: z.ZodOptional<z.ZodObject<{
229
+ aside: z.ZodArray<z.ZodObject<{
230
+ to: z.ZodString;
231
+ label: z.ZodOptional<z.ZodArray<z.ZodObject<{
232
+ locale: z.ZodEnum<{
233
+ de: "de";
234
+ en: "en";
235
+ es: "es";
236
+ ka: "ka";
237
+ ru: "ru";
238
+ zh_cn: "zh_cn";
239
+ }>;
240
+ value: z.ZodString;
241
+ }, z.core.$strip>>>;
242
+ icon: z.ZodOptional<z.ZodString>;
243
+ target: z.ZodOptional<z.ZodString>;
244
+ }, z.core.$strip>>;
245
+ footer: z.ZodArray<z.ZodObject<{
246
+ to: z.ZodString;
247
+ label: z.ZodOptional<z.ZodArray<z.ZodObject<{
248
+ locale: z.ZodEnum<{
249
+ de: "de";
250
+ en: "en";
251
+ es: "es";
252
+ ka: "ka";
253
+ ru: "ru";
254
+ zh_cn: "zh_cn";
255
+ }>;
256
+ value: z.ZodString;
257
+ }, z.core.$strip>>>;
258
+ icon: z.ZodOptional<z.ZodString>;
259
+ target: z.ZodOptional<z.ZodString>;
260
+ }, z.core.$strip>>;
261
+ social: z.ZodArray<z.ZodObject<{
262
+ to: z.ZodString;
263
+ label: z.ZodOptional<z.ZodArray<z.ZodObject<{
264
+ locale: z.ZodEnum<{
265
+ de: "de";
266
+ en: "en";
267
+ es: "es";
268
+ ka: "ka";
269
+ ru: "ru";
270
+ zh_cn: "zh_cn";
271
+ }>;
272
+ value: z.ZodString;
273
+ }, z.core.$strip>>>;
274
+ icon: z.ZodOptional<z.ZodString>;
275
+ target: z.ZodOptional<z.ZodString>;
276
+ }, z.core.$strip>>;
277
+ }, z.core.$strip>>;
278
+ }, z.core.$strip>;
279
+ type Channel = z.infer<typeof ChannelSchema>;
280
+
281
+ declare const CurrencyCodeSchema: z.ZodEnum<{
282
+ USD: "USD";
283
+ EUR: "EUR";
284
+ RUB: "RUB";
285
+ CNY: "CNY";
286
+ GEL: "GEL";
287
+ BYN: "BYN";
288
+ UAH: "UAH";
289
+ KZT: "KZT";
290
+ PLN: "PLN";
291
+ TRY: "TRY";
292
+ }>;
293
+ type CurrencyCode = z.infer<typeof CurrencyCodeSchema>;
294
+ declare const CountryCodeSchema: z.ZodEnum<{
295
+ RU: "RU";
296
+ US: "US";
297
+ GB: "GB";
298
+ GR: "GR";
299
+ GE: "GE";
300
+ UA: "UA";
301
+ BY: "BY";
302
+ KZ: "KZ";
303
+ FR: "FR";
304
+ DE: "DE";
305
+ IT: "IT";
306
+ ES: "ES";
307
+ TR: "TR";
308
+ PL: "PL";
309
+ AC: "AC";
310
+ AD: "AD";
311
+ AE: "AE";
312
+ AF: "AF";
313
+ AG: "AG";
314
+ AI: "AI";
315
+ AL: "AL";
316
+ AM: "AM";
317
+ AO: "AO";
318
+ AR: "AR";
319
+ AS: "AS";
320
+ AT: "AT";
321
+ AU: "AU";
322
+ AW: "AW";
323
+ AX: "AX";
324
+ AZ: "AZ";
325
+ BA: "BA";
326
+ BB: "BB";
327
+ BD: "BD";
328
+ BE: "BE";
329
+ BF: "BF";
330
+ BG: "BG";
331
+ BH: "BH";
332
+ BI: "BI";
333
+ BJ: "BJ";
334
+ BL: "BL";
335
+ BM: "BM";
336
+ BN: "BN";
337
+ BO: "BO";
338
+ BQ: "BQ";
339
+ BR: "BR";
340
+ BS: "BS";
341
+ BT: "BT";
342
+ BW: "BW";
343
+ BZ: "BZ";
344
+ CA: "CA";
345
+ CC: "CC";
346
+ CD: "CD";
347
+ CF: "CF";
348
+ CG: "CG";
349
+ CH: "CH";
350
+ CI: "CI";
351
+ CK: "CK";
352
+ CL: "CL";
353
+ CM: "CM";
354
+ CN: "CN";
355
+ CO: "CO";
356
+ CR: "CR";
357
+ CU: "CU";
358
+ CV: "CV";
359
+ CW: "CW";
360
+ CX: "CX";
361
+ CY: "CY";
362
+ CZ: "CZ";
363
+ DJ: "DJ";
364
+ DK: "DK";
365
+ DM: "DM";
366
+ DO: "DO";
367
+ DZ: "DZ";
368
+ EC: "EC";
369
+ EE: "EE";
370
+ EG: "EG";
371
+ EH: "EH";
372
+ ER: "ER";
373
+ ET: "ET";
374
+ FI: "FI";
375
+ FJ: "FJ";
376
+ FK: "FK";
377
+ FM: "FM";
378
+ FO: "FO";
379
+ GA: "GA";
380
+ GD: "GD";
381
+ GF: "GF";
382
+ GG: "GG";
383
+ GH: "GH";
384
+ GI: "GI";
385
+ GL: "GL";
386
+ GM: "GM";
387
+ GN: "GN";
388
+ GP: "GP";
389
+ GQ: "GQ";
390
+ GT: "GT";
391
+ GU: "GU";
392
+ GW: "GW";
393
+ GY: "GY";
394
+ HK: "HK";
395
+ HN: "HN";
396
+ HR: "HR";
397
+ HT: "HT";
398
+ HU: "HU";
399
+ ID: "ID";
400
+ IE: "IE";
401
+ IL: "IL";
402
+ IM: "IM";
403
+ IN: "IN";
404
+ IO: "IO";
405
+ IQ: "IQ";
406
+ IR: "IR";
407
+ IS: "IS";
408
+ JE: "JE";
409
+ JM: "JM";
410
+ JO: "JO";
411
+ JP: "JP";
412
+ KE: "KE";
413
+ KG: "KG";
414
+ KH: "KH";
415
+ KI: "KI";
416
+ KM: "KM";
417
+ KN: "KN";
418
+ KP: "KP";
419
+ KR: "KR";
420
+ KW: "KW";
421
+ KY: "KY";
422
+ LA: "LA";
423
+ LB: "LB";
424
+ LC: "LC";
425
+ LI: "LI";
426
+ LK: "LK";
427
+ LR: "LR";
428
+ LS: "LS";
429
+ LT: "LT";
430
+ LU: "LU";
431
+ LV: "LV";
432
+ LY: "LY";
433
+ MA: "MA";
434
+ MC: "MC";
435
+ MD: "MD";
436
+ ME: "ME";
437
+ MF: "MF";
438
+ MG: "MG";
439
+ MH: "MH";
440
+ MK: "MK";
441
+ ML: "ML";
442
+ MM: "MM";
443
+ MN: "MN";
444
+ MO: "MO";
445
+ MP: "MP";
446
+ MQ: "MQ";
447
+ MR: "MR";
448
+ MS: "MS";
449
+ MT: "MT";
450
+ MU: "MU";
451
+ MV: "MV";
452
+ MW: "MW";
453
+ MX: "MX";
454
+ MY: "MY";
455
+ MZ: "MZ";
456
+ NA: "NA";
457
+ NC: "NC";
458
+ NE: "NE";
459
+ NF: "NF";
460
+ NG: "NG";
461
+ NI: "NI";
462
+ NL: "NL";
463
+ NO: "NO";
464
+ NP: "NP";
465
+ NR: "NR";
466
+ NU: "NU";
467
+ NZ: "NZ";
468
+ OM: "OM";
469
+ PA: "PA";
470
+ PE: "PE";
471
+ PF: "PF";
472
+ PG: "PG";
473
+ PH: "PH";
474
+ PK: "PK";
475
+ PM: "PM";
476
+ PR: "PR";
477
+ PS: "PS";
478
+ PT: "PT";
479
+ PW: "PW";
480
+ PY: "PY";
481
+ QA: "QA";
482
+ RE: "RE";
483
+ RO: "RO";
484
+ RS: "RS";
485
+ RW: "RW";
486
+ SA: "SA";
487
+ SB: "SB";
488
+ SC: "SC";
489
+ SD: "SD";
490
+ SE: "SE";
491
+ SG: "SG";
492
+ SH: "SH";
493
+ SI: "SI";
494
+ SJ: "SJ";
495
+ SK: "SK";
496
+ SL: "SL";
497
+ SM: "SM";
498
+ SN: "SN";
499
+ SO: "SO";
500
+ SR: "SR";
501
+ SS: "SS";
502
+ ST: "ST";
503
+ SV: "SV";
504
+ SX: "SX";
505
+ SY: "SY";
506
+ SZ: "SZ";
507
+ TA: "TA";
508
+ TC: "TC";
509
+ TD: "TD";
510
+ TG: "TG";
511
+ TH: "TH";
512
+ TJ: "TJ";
513
+ TK: "TK";
514
+ TL: "TL";
515
+ TM: "TM";
516
+ TN: "TN";
517
+ TO: "TO";
518
+ TT: "TT";
519
+ TV: "TV";
520
+ TW: "TW";
521
+ TZ: "TZ";
522
+ UG: "UG";
523
+ UY: "UY";
524
+ UZ: "UZ";
525
+ VA: "VA";
526
+ VC: "VC";
527
+ VE: "VE";
528
+ VG: "VG";
529
+ VI: "VI";
530
+ VN: "VN";
531
+ VU: "VU";
532
+ WF: "WF";
533
+ WS: "WS";
534
+ XK: "XK";
535
+ YE: "YE";
536
+ YT: "YT";
537
+ ZA: "ZA";
538
+ ZM: "ZM";
539
+ ZW: "ZW";
540
+ }>;
541
+ type CountryCode = z.infer<typeof CountryCodeSchema>;
542
+ declare const LocaleSchema: z.ZodEnum<{
543
+ de: "de";
544
+ en: "en";
545
+ es: "es";
546
+ ka: "ka";
547
+ ru: "ru";
548
+ zh_cn: "zh_cn";
549
+ }>;
550
+ type Locale = z.infer<typeof LocaleSchema>;
551
+ declare const LocaleValueSchema: z.ZodObject<{
552
+ locale: z.ZodEnum<{
553
+ de: "de";
554
+ en: "en";
555
+ es: "es";
556
+ ka: "ka";
557
+ ru: "ru";
558
+ zh_cn: "zh_cn";
559
+ }>;
560
+ value: z.ZodString;
561
+ }, z.core.$strip>;
562
+ type LocaleValue = z.infer<typeof LocaleValueSchema>;
563
+ declare const WeightUnitSchema: z.ZodEnum<{
564
+ g: "g";
565
+ kg: "kg";
566
+ ml: "ml";
567
+ l: "l";
568
+ oz: "oz";
569
+ lb: "lb";
570
+ }>;
571
+ type WeightUnit = z.infer<typeof WeightUnitSchema>;
572
+
573
+ /**
574
+ * Gateway Types
575
+ */
576
+ declare const GatewayActionTypeSchema: z.ZodEnum<{
577
+ getOptions: "getOptions";
578
+ getChannels: "getChannels";
579
+ getOrder: "getOrder";
580
+ createOrder: "createOrder";
581
+ updateOrder: "updateOrder";
582
+ addOrderItem: "addOrderItem";
583
+ incrementOrderItemQuantity: "incrementOrderItemQuantity";
584
+ decrementOrderItemQuantity: "decrementOrderItemQuantity";
585
+ getMenu: "getMenu";
586
+ getDeliveryByCourierStatus: "getDeliveryByCourierStatus";
587
+ getSelfPickupStatus: "getSelfPickupStatus";
588
+ getTimeSlots: "getTimeSlots";
589
+ }>;
590
+ type GatewayActionType = z.infer<typeof GatewayActionTypeSchema>;
591
+ /**
592
+ * Generic Request structure
593
+ */
594
+ declare const GatewayRequestSchema: z.ZodObject<{
595
+ type: z.ZodEnum<{
596
+ getOptions: "getOptions";
597
+ getChannels: "getChannels";
598
+ getOrder: "getOrder";
599
+ createOrder: "createOrder";
600
+ updateOrder: "updateOrder";
601
+ addOrderItem: "addOrderItem";
602
+ incrementOrderItemQuantity: "incrementOrderItemQuantity";
603
+ decrementOrderItemQuantity: "decrementOrderItemQuantity";
604
+ getMenu: "getMenu";
605
+ getDeliveryByCourierStatus: "getDeliveryByCourierStatus";
606
+ getSelfPickupStatus: "getSelfPickupStatus";
607
+ getTimeSlots: "getTimeSlots";
608
+ }>;
609
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
610
+ body: z.ZodOptional<z.ZodUnknown>;
611
+ }, z.core.$strip>;
612
+ type GatewayRequest = z.infer<typeof GatewayRequestSchema>;
613
+ /**
614
+ * Generic Response structure
615
+ */
616
+ declare const BaseResponseSchema: z.ZodObject<{
617
+ ok: z.ZodBoolean;
618
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
619
+ }, z.core.$strip>;
620
+ declare const GatewayGetOptionsRequestSchema: z.ZodObject<{
621
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
622
+ body: z.ZodOptional<z.ZodUnknown>;
623
+ type: z.ZodLiteral<"getOptions">;
624
+ }, z.core.$strip>;
625
+ type GatewayGetOptionsRequest = z.infer<typeof GatewayGetOptionsRequestSchema>;
626
+ declare const GatewayGetOptionsResponseSchema: z.ZodObject<{
627
+ ok: z.ZodBoolean;
628
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
629
+ type: z.ZodLiteral<"getOptions">;
630
+ result: z.ZodObject<{
631
+ selectorTitle: z.ZodArray<z.ZodObject<{
632
+ locale: z.ZodEnum<{
633
+ de: "de";
634
+ en: "en";
635
+ es: "es";
636
+ ka: "ka";
637
+ ru: "ru";
638
+ zh_cn: "zh_cn";
639
+ }>;
640
+ value: z.ZodString;
641
+ }, z.core.$strip>>;
642
+ selectorDescription: z.ZodOptional<z.ZodArray<z.ZodObject<{
643
+ locale: z.ZodEnum<{
644
+ de: "de";
645
+ en: "en";
646
+ es: "es";
647
+ ka: "ka";
648
+ ru: "ru";
649
+ zh_cn: "zh_cn";
650
+ }>;
651
+ value: z.ZodString;
652
+ }, z.core.$strip>>>;
653
+ logoUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
654
+ availableLocales: z.ZodArray<z.ZodEnum<{
655
+ de: "de";
656
+ en: "en";
657
+ es: "es";
658
+ ka: "ka";
659
+ ru: "ru";
660
+ zh_cn: "zh_cn";
661
+ }>>;
662
+ defaultLocale: z.ZodEnum<{
663
+ de: "de";
664
+ en: "en";
665
+ es: "es";
666
+ ka: "ka";
667
+ ru: "ru";
668
+ zh_cn: "zh_cn";
669
+ }>;
670
+ countryCode: z.ZodEnum<{
671
+ RU: "RU";
672
+ US: "US";
673
+ GB: "GB";
674
+ GR: "GR";
675
+ GE: "GE";
676
+ UA: "UA";
677
+ BY: "BY";
678
+ KZ: "KZ";
679
+ FR: "FR";
680
+ DE: "DE";
681
+ IT: "IT";
682
+ ES: "ES";
683
+ TR: "TR";
684
+ PL: "PL";
685
+ AC: "AC";
686
+ AD: "AD";
687
+ AE: "AE";
688
+ AF: "AF";
689
+ AG: "AG";
690
+ AI: "AI";
691
+ AL: "AL";
692
+ AM: "AM";
693
+ AO: "AO";
694
+ AR: "AR";
695
+ AS: "AS";
696
+ AT: "AT";
697
+ AU: "AU";
698
+ AW: "AW";
699
+ AX: "AX";
700
+ AZ: "AZ";
701
+ BA: "BA";
702
+ BB: "BB";
703
+ BD: "BD";
704
+ BE: "BE";
705
+ BF: "BF";
706
+ BG: "BG";
707
+ BH: "BH";
708
+ BI: "BI";
709
+ BJ: "BJ";
710
+ BL: "BL";
711
+ BM: "BM";
712
+ BN: "BN";
713
+ BO: "BO";
714
+ BQ: "BQ";
715
+ BR: "BR";
716
+ BS: "BS";
717
+ BT: "BT";
718
+ BW: "BW";
719
+ BZ: "BZ";
720
+ CA: "CA";
721
+ CC: "CC";
722
+ CD: "CD";
723
+ CF: "CF";
724
+ CG: "CG";
725
+ CH: "CH";
726
+ CI: "CI";
727
+ CK: "CK";
728
+ CL: "CL";
729
+ CM: "CM";
730
+ CN: "CN";
731
+ CO: "CO";
732
+ CR: "CR";
733
+ CU: "CU";
734
+ CV: "CV";
735
+ CW: "CW";
736
+ CX: "CX";
737
+ CY: "CY";
738
+ CZ: "CZ";
739
+ DJ: "DJ";
740
+ DK: "DK";
741
+ DM: "DM";
742
+ DO: "DO";
743
+ DZ: "DZ";
744
+ EC: "EC";
745
+ EE: "EE";
746
+ EG: "EG";
747
+ EH: "EH";
748
+ ER: "ER";
749
+ ET: "ET";
750
+ FI: "FI";
751
+ FJ: "FJ";
752
+ FK: "FK";
753
+ FM: "FM";
754
+ FO: "FO";
755
+ GA: "GA";
756
+ GD: "GD";
757
+ GF: "GF";
758
+ GG: "GG";
759
+ GH: "GH";
760
+ GI: "GI";
761
+ GL: "GL";
762
+ GM: "GM";
763
+ GN: "GN";
764
+ GP: "GP";
765
+ GQ: "GQ";
766
+ GT: "GT";
767
+ GU: "GU";
768
+ GW: "GW";
769
+ GY: "GY";
770
+ HK: "HK";
771
+ HN: "HN";
772
+ HR: "HR";
773
+ HT: "HT";
774
+ HU: "HU";
775
+ ID: "ID";
776
+ IE: "IE";
777
+ IL: "IL";
778
+ IM: "IM";
779
+ IN: "IN";
780
+ IO: "IO";
781
+ IQ: "IQ";
782
+ IR: "IR";
783
+ IS: "IS";
784
+ JE: "JE";
785
+ JM: "JM";
786
+ JO: "JO";
787
+ JP: "JP";
788
+ KE: "KE";
789
+ KG: "KG";
790
+ KH: "KH";
791
+ KI: "KI";
792
+ KM: "KM";
793
+ KN: "KN";
794
+ KP: "KP";
795
+ KR: "KR";
796
+ KW: "KW";
797
+ KY: "KY";
798
+ LA: "LA";
799
+ LB: "LB";
800
+ LC: "LC";
801
+ LI: "LI";
802
+ LK: "LK";
803
+ LR: "LR";
804
+ LS: "LS";
805
+ LT: "LT";
806
+ LU: "LU";
807
+ LV: "LV";
808
+ LY: "LY";
809
+ MA: "MA";
810
+ MC: "MC";
811
+ MD: "MD";
812
+ ME: "ME";
813
+ MF: "MF";
814
+ MG: "MG";
815
+ MH: "MH";
816
+ MK: "MK";
817
+ ML: "ML";
818
+ MM: "MM";
819
+ MN: "MN";
820
+ MO: "MO";
821
+ MP: "MP";
822
+ MQ: "MQ";
823
+ MR: "MR";
824
+ MS: "MS";
825
+ MT: "MT";
826
+ MU: "MU";
827
+ MV: "MV";
828
+ MW: "MW";
829
+ MX: "MX";
830
+ MY: "MY";
831
+ MZ: "MZ";
832
+ NA: "NA";
833
+ NC: "NC";
834
+ NE: "NE";
835
+ NF: "NF";
836
+ NG: "NG";
837
+ NI: "NI";
838
+ NL: "NL";
839
+ NO: "NO";
840
+ NP: "NP";
841
+ NR: "NR";
842
+ NU: "NU";
843
+ NZ: "NZ";
844
+ OM: "OM";
845
+ PA: "PA";
846
+ PE: "PE";
847
+ PF: "PF";
848
+ PG: "PG";
849
+ PH: "PH";
850
+ PK: "PK";
851
+ PM: "PM";
852
+ PR: "PR";
853
+ PS: "PS";
854
+ PT: "PT";
855
+ PW: "PW";
856
+ PY: "PY";
857
+ QA: "QA";
858
+ RE: "RE";
859
+ RO: "RO";
860
+ RS: "RS";
861
+ RW: "RW";
862
+ SA: "SA";
863
+ SB: "SB";
864
+ SC: "SC";
865
+ SD: "SD";
866
+ SE: "SE";
867
+ SG: "SG";
868
+ SH: "SH";
869
+ SI: "SI";
870
+ SJ: "SJ";
871
+ SK: "SK";
872
+ SL: "SL";
873
+ SM: "SM";
874
+ SN: "SN";
875
+ SO: "SO";
876
+ SR: "SR";
877
+ SS: "SS";
878
+ ST: "ST";
879
+ SV: "SV";
880
+ SX: "SX";
881
+ SY: "SY";
882
+ SZ: "SZ";
883
+ TA: "TA";
884
+ TC: "TC";
885
+ TD: "TD";
886
+ TG: "TG";
887
+ TH: "TH";
888
+ TJ: "TJ";
889
+ TK: "TK";
890
+ TL: "TL";
891
+ TM: "TM";
892
+ TN: "TN";
893
+ TO: "TO";
894
+ TT: "TT";
895
+ TV: "TV";
896
+ TW: "TW";
897
+ TZ: "TZ";
898
+ UG: "UG";
899
+ UY: "UY";
900
+ UZ: "UZ";
901
+ VA: "VA";
902
+ VC: "VC";
903
+ VE: "VE";
904
+ VG: "VG";
905
+ VI: "VI";
906
+ VN: "VN";
907
+ VU: "VU";
908
+ WF: "WF";
909
+ WS: "WS";
910
+ XK: "XK";
911
+ YE: "YE";
912
+ YT: "YT";
913
+ ZA: "ZA";
914
+ ZM: "ZM";
915
+ ZW: "ZW";
916
+ }>;
917
+ currencyCode: z.ZodEnum<{
918
+ USD: "USD";
919
+ EUR: "EUR";
920
+ RUB: "RUB";
921
+ CNY: "CNY";
922
+ GEL: "GEL";
923
+ BYN: "BYN";
924
+ UAH: "UAH";
925
+ KZT: "KZT";
926
+ PLN: "PLN";
927
+ TRY: "TRY";
928
+ }>;
929
+ headLinks: z.ZodOptional<z.ZodArray<z.ZodObject<{
930
+ rel: z.ZodOptional<z.ZodString>;
931
+ type: z.ZodOptional<z.ZodString>;
932
+ sizes: z.ZodOptional<z.ZodString>;
933
+ href: z.ZodOptional<z.ZodString>;
934
+ }, z.core.$strip>>>;
935
+ headScripts: z.ZodOptional<z.ZodArray<z.ZodObject<{
936
+ src: z.ZodOptional<z.ZodString>;
937
+ type: z.ZodOptional<z.ZodString>;
938
+ textContent: z.ZodOptional<z.ZodString>;
939
+ }, z.core.$strip>>>;
940
+ headStyles: z.ZodOptional<z.ZodArray<z.ZodString>>;
941
+ }, z.core.$strip>;
942
+ }, z.core.$strip>;
943
+ type GatewayGetOptionsResponse = z.infer<typeof GatewayGetOptionsResponseSchema>;
944
+ declare const GatewayGetChannelsRequestSchema: z.ZodObject<{
945
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
946
+ body: z.ZodOptional<z.ZodUnknown>;
947
+ type: z.ZodLiteral<"getChannels">;
948
+ }, z.core.$strip>;
949
+ type GatewayGetChannelsRequest = z.infer<typeof GatewayGetChannelsRequestSchema>;
950
+ declare const GatewayGetChannelsResponseSchema: z.ZodObject<{
951
+ ok: z.ZodBoolean;
952
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
953
+ type: z.ZodLiteral<"getChannels">;
954
+ result: z.ZodArray<z.ZodObject<{
955
+ id: z.ZodString;
956
+ selectorTitle: z.ZodArray<z.ZodObject<{
957
+ locale: z.ZodEnum<{
958
+ de: "de";
959
+ en: "en";
960
+ es: "es";
961
+ ka: "ka";
962
+ ru: "ru";
963
+ zh_cn: "zh_cn";
964
+ }>;
965
+ value: z.ZodString;
966
+ }, z.core.$strip>>;
967
+ title: z.ZodArray<z.ZodObject<{
968
+ locale: z.ZodEnum<{
969
+ de: "de";
970
+ en: "en";
971
+ es: "es";
972
+ ka: "ka";
973
+ ru: "ru";
974
+ zh_cn: "zh_cn";
975
+ }>;
976
+ value: z.ZodString;
977
+ }, z.core.$strip>>;
978
+ description: z.ZodOptional<z.ZodArray<z.ZodObject<{
979
+ locale: z.ZodEnum<{
980
+ de: "de";
981
+ en: "en";
982
+ es: "es";
983
+ ka: "ka";
984
+ ru: "ru";
985
+ zh_cn: "zh_cn";
986
+ }>;
987
+ value: z.ZodString;
988
+ }, z.core.$strip>>>;
989
+ url: z.ZodString;
990
+ timeZone: z.ZodEnum<{
991
+ "-12:00": "-12:00";
992
+ "-11:00": "-11:00";
993
+ "-10:00": "-10:00";
994
+ "-09:00": "-09:00";
995
+ "-08:00": "-08:00";
996
+ "-07:00": "-07:00";
997
+ "-06:00": "-06:00";
998
+ "-05:00": "-05:00";
999
+ "-04:00": "-04:00";
1000
+ "-03:00": "-03:00";
1001
+ "-02:00": "-02:00";
1002
+ "-01:00": "-01:00";
1003
+ "+00:00": "+00:00";
1004
+ "+01:00": "+01:00";
1005
+ "+02:00": "+02:00";
1006
+ "+03:00": "+03:00";
1007
+ "+04:00": "+04:00";
1008
+ "+05:00": "+05:00";
1009
+ "+06:00": "+06:00";
1010
+ "+07:00": "+07:00";
1011
+ "+08:00": "+08:00";
1012
+ "+09:00": "+09:00";
1013
+ "+10:00": "+10:00";
1014
+ "+11:00": "+11:00";
1015
+ "+12:00": "+12:00";
1016
+ "+13:00": "+13:00";
1017
+ "+14:00": "+14:00";
1018
+ }>;
1019
+ isActive: z.ZodBoolean;
1020
+ deliveryByCourier: z.ZodObject<{
1021
+ isAvailable: z.ZodBoolean;
1022
+ paymentMethods: z.ZodArray<z.ZodObject<{
1023
+ id: z.ZodString;
1024
+ title: z.ZodArray<z.ZodObject<{
1025
+ locale: z.ZodEnum<{
1026
+ de: "de";
1027
+ en: "en";
1028
+ es: "es";
1029
+ ka: "ka";
1030
+ ru: "ru";
1031
+ zh_cn: "zh_cn";
1032
+ }>;
1033
+ value: z.ZodString;
1034
+ }, z.core.$strip>>;
1035
+ type: z.ZodEnum<{
1036
+ cash: "cash";
1037
+ card: "card";
1038
+ custom: "custom";
1039
+ }>;
1040
+ }, z.core.$strip>>;
1041
+ conditions: z.ZodOptional<z.ZodArray<z.ZodObject<{
1042
+ locale: z.ZodEnum<{
1043
+ de: "de";
1044
+ en: "en";
1045
+ es: "es";
1046
+ ka: "ka";
1047
+ ru: "ru";
1048
+ zh_cn: "zh_cn";
1049
+ }>;
1050
+ value: z.ZodString;
1051
+ }, z.core.$strip>>>;
1052
+ minAmountForDelivery: z.ZodOptional<z.ZodNumber>;
1053
+ schedule: z.ZodOptional<z.ZodArray<z.ZodObject<{
1054
+ day: z.ZodEnum<{
1055
+ sun: "sun";
1056
+ mon: "mon";
1057
+ tue: "tue";
1058
+ wed: "wed";
1059
+ thu: "thu";
1060
+ fri: "fri";
1061
+ sat: "sat";
1062
+ }>;
1063
+ isClosed: z.ZodBoolean;
1064
+ hours: z.ZodOptional<z.ZodArray<z.ZodObject<{
1065
+ start: z.ZodString;
1066
+ end: z.ZodString;
1067
+ }, z.core.$strip>>>;
1068
+ comment: z.ZodOptional<z.ZodArray<z.ZodObject<{
1069
+ locale: z.ZodEnum<{
1070
+ de: "de";
1071
+ en: "en";
1072
+ es: "es";
1073
+ ka: "ka";
1074
+ ru: "ru";
1075
+ zh_cn: "zh_cn";
1076
+ }>;
1077
+ value: z.ZodString;
1078
+ }, z.core.$strip>>>;
1079
+ }, z.core.$strip>>>;
1080
+ }, z.core.$strip>;
1081
+ selfPickup: z.ZodObject<{
1082
+ isAvailable: z.ZodBoolean;
1083
+ paymentMethods: z.ZodArray<z.ZodObject<{
1084
+ id: z.ZodString;
1085
+ title: z.ZodArray<z.ZodObject<{
1086
+ locale: z.ZodEnum<{
1087
+ de: "de";
1088
+ en: "en";
1089
+ es: "es";
1090
+ ka: "ka";
1091
+ ru: "ru";
1092
+ zh_cn: "zh_cn";
1093
+ }>;
1094
+ value: z.ZodString;
1095
+ }, z.core.$strip>>;
1096
+ type: z.ZodEnum<{
1097
+ cash: "cash";
1098
+ card: "card";
1099
+ custom: "custom";
1100
+ }>;
1101
+ }, z.core.$strip>>;
1102
+ conditions: z.ZodOptional<z.ZodArray<z.ZodObject<{
1103
+ locale: z.ZodEnum<{
1104
+ de: "de";
1105
+ en: "en";
1106
+ es: "es";
1107
+ ka: "ka";
1108
+ ru: "ru";
1109
+ zh_cn: "zh_cn";
1110
+ }>;
1111
+ value: z.ZodString;
1112
+ }, z.core.$strip>>>;
1113
+ schedule: z.ZodOptional<z.ZodArray<z.ZodObject<{
1114
+ day: z.ZodEnum<{
1115
+ sun: "sun";
1116
+ mon: "mon";
1117
+ tue: "tue";
1118
+ wed: "wed";
1119
+ thu: "thu";
1120
+ fri: "fri";
1121
+ sat: "sat";
1122
+ }>;
1123
+ isClosed: z.ZodBoolean;
1124
+ hours: z.ZodOptional<z.ZodArray<z.ZodObject<{
1125
+ start: z.ZodString;
1126
+ end: z.ZodString;
1127
+ }, z.core.$strip>>>;
1128
+ comment: z.ZodOptional<z.ZodArray<z.ZodObject<{
1129
+ locale: z.ZodEnum<{
1130
+ de: "de";
1131
+ en: "en";
1132
+ es: "es";
1133
+ ka: "ka";
1134
+ ru: "ru";
1135
+ zh_cn: "zh_cn";
1136
+ }>;
1137
+ value: z.ZodString;
1138
+ }, z.core.$strip>>>;
1139
+ }, z.core.$strip>>>;
1140
+ warehouses: z.ZodOptional<z.ZodArray<z.ZodObject<{
1141
+ id: z.ZodString;
1142
+ title: z.ZodArray<z.ZodObject<{
1143
+ locale: z.ZodEnum<{
1144
+ de: "de";
1145
+ en: "en";
1146
+ es: "es";
1147
+ ka: "ka";
1148
+ ru: "ru";
1149
+ zh_cn: "zh_cn";
1150
+ }>;
1151
+ value: z.ZodString;
1152
+ }, z.core.$strip>>;
1153
+ address: z.ZodObject<{
1154
+ street: z.ZodArray<z.ZodObject<{
1155
+ locale: z.ZodEnum<{
1156
+ de: "de";
1157
+ en: "en";
1158
+ es: "es";
1159
+ ka: "ka";
1160
+ ru: "ru";
1161
+ zh_cn: "zh_cn";
1162
+ }>;
1163
+ value: z.ZodString;
1164
+ }, z.core.$strip>>;
1165
+ }, z.core.$strip>;
1166
+ }, z.core.$strip>>>;
1167
+ }, z.core.$strip>;
1168
+ copyright: z.ZodOptional<z.ZodArray<z.ZodObject<{
1169
+ locale: z.ZodEnum<{
1170
+ de: "de";
1171
+ en: "en";
1172
+ es: "es";
1173
+ ka: "ka";
1174
+ ru: "ru";
1175
+ zh_cn: "zh_cn";
1176
+ }>;
1177
+ value: z.ZodString;
1178
+ }, z.core.$strip>>>;
1179
+ links: z.ZodOptional<z.ZodObject<{
1180
+ aside: z.ZodArray<z.ZodObject<{
1181
+ to: z.ZodString;
1182
+ label: z.ZodOptional<z.ZodArray<z.ZodObject<{
1183
+ locale: z.ZodEnum<{
1184
+ de: "de";
1185
+ en: "en";
1186
+ es: "es";
1187
+ ka: "ka";
1188
+ ru: "ru";
1189
+ zh_cn: "zh_cn";
1190
+ }>;
1191
+ value: z.ZodString;
1192
+ }, z.core.$strip>>>;
1193
+ icon: z.ZodOptional<z.ZodString>;
1194
+ target: z.ZodOptional<z.ZodString>;
1195
+ }, z.core.$strip>>;
1196
+ footer: z.ZodArray<z.ZodObject<{
1197
+ to: z.ZodString;
1198
+ label: z.ZodOptional<z.ZodArray<z.ZodObject<{
1199
+ locale: z.ZodEnum<{
1200
+ de: "de";
1201
+ en: "en";
1202
+ es: "es";
1203
+ ka: "ka";
1204
+ ru: "ru";
1205
+ zh_cn: "zh_cn";
1206
+ }>;
1207
+ value: z.ZodString;
1208
+ }, z.core.$strip>>>;
1209
+ icon: z.ZodOptional<z.ZodString>;
1210
+ target: z.ZodOptional<z.ZodString>;
1211
+ }, z.core.$strip>>;
1212
+ social: z.ZodArray<z.ZodObject<{
1213
+ to: z.ZodString;
1214
+ label: z.ZodOptional<z.ZodArray<z.ZodObject<{
1215
+ locale: z.ZodEnum<{
1216
+ de: "de";
1217
+ en: "en";
1218
+ es: "es";
1219
+ ka: "ka";
1220
+ ru: "ru";
1221
+ zh_cn: "zh_cn";
1222
+ }>;
1223
+ value: z.ZodString;
1224
+ }, z.core.$strip>>>;
1225
+ icon: z.ZodOptional<z.ZodString>;
1226
+ target: z.ZodOptional<z.ZodString>;
1227
+ }, z.core.$strip>>;
1228
+ }, z.core.$strip>>;
1229
+ }, z.core.$strip>>;
1230
+ }, z.core.$strip>;
1231
+ type GatewayGetChannelsResponse = z.infer<typeof GatewayGetChannelsResponseSchema>;
1232
+ declare const GatewayGetOrderRequestSchema: z.ZodObject<{
1233
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1234
+ type: z.ZodLiteral<"getOrder">;
1235
+ body: z.ZodObject<{
1236
+ id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1237
+ }, z.core.$strip>;
1238
+ }, z.core.$strip>;
1239
+ type GatewayGetOrderRequest = z.infer<typeof GatewayGetOrderRequestSchema>;
1240
+ declare const GatewayGetOrderResponseSchema: z.ZodObject<{
1241
+ ok: z.ZodBoolean;
1242
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1243
+ type: z.ZodLiteral<"getOrder">;
1244
+ result: z.ZodNullable<z.ZodObject<{
1245
+ id: z.ZodString;
1246
+ status: z.ZodEnum<{
1247
+ draft: "draft";
1248
+ created: "created";
1249
+ ready: "ready";
1250
+ delivered: "delivered";
1251
+ }>;
1252
+ createdAt: z.ZodString;
1253
+ readyBy: z.ZodString;
1254
+ readyType: z.ZodEnum<{
1255
+ asap: "asap";
1256
+ scheduled: "scheduled";
1257
+ }>;
1258
+ deliveryMethod: z.ZodEnum<{
1259
+ deliveryByCourier: "deliveryByCourier";
1260
+ selfPickup: "selfPickup";
1261
+ }>;
1262
+ address: z.ZodUnion<readonly [z.ZodObject<{
1263
+ type: z.ZodLiteral<"deliveryAddress">;
1264
+ street: z.ZodString;
1265
+ flat: z.ZodOptional<z.ZodString>;
1266
+ intercom: z.ZodOptional<z.ZodString>;
1267
+ entrance: z.ZodOptional<z.ZodString>;
1268
+ floor: z.ZodOptional<z.ZodString>;
1269
+ addressNote: z.ZodOptional<z.ZodString>;
1270
+ }, z.core.$strip>, z.ZodObject<{
1271
+ type: z.ZodLiteral<"warehouseAddress">;
1272
+ id: z.ZodString;
1273
+ }, z.core.$strip>]>;
1274
+ paymentMethodId: z.ZodString;
1275
+ changeFrom: z.ZodOptional<z.ZodNumber>;
1276
+ totalPrice: z.ZodNumber;
1277
+ name: z.ZodString;
1278
+ phone: z.ZodString;
1279
+ note: z.ZodOptional<z.ZodString>;
1280
+ items: z.ZodArray<z.ZodObject<{
1281
+ id: z.ZodString;
1282
+ orderId: z.ZodString;
1283
+ productId: z.ZodString;
1284
+ productSlug: z.ZodString;
1285
+ categoryId: z.ZodString;
1286
+ categorySlug: z.ZodString;
1287
+ variantId: z.ZodString;
1288
+ quantity: z.ZodNumber;
1289
+ unitPrice: z.ZodNumber;
1290
+ totalPrice: z.ZodNumber;
1291
+ }, z.core.$strip>>;
1292
+ }, z.core.$strip>>;
1293
+ }, z.core.$strip>;
1294
+ type GatewayGetOrderResponse = z.infer<typeof GatewayGetOrderResponseSchema>;
1295
+ declare const GatewayCreateOrderRequestSchema: z.ZodObject<{
1296
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1297
+ body: z.ZodOptional<z.ZodUnknown>;
1298
+ type: z.ZodLiteral<"createOrder">;
1299
+ }, z.core.$strip>;
1300
+ type GatewayCreateOrderRequest = z.infer<typeof GatewayCreateOrderRequestSchema>;
1301
+ declare const GatewayCreateOrderResponseSchema: z.ZodObject<{
1302
+ ok: z.ZodBoolean;
1303
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1304
+ type: z.ZodLiteral<"createOrder">;
1305
+ result: z.ZodObject<{
1306
+ id: z.ZodString;
1307
+ status: z.ZodEnum<{
1308
+ draft: "draft";
1309
+ created: "created";
1310
+ ready: "ready";
1311
+ delivered: "delivered";
1312
+ }>;
1313
+ createdAt: z.ZodString;
1314
+ readyBy: z.ZodString;
1315
+ readyType: z.ZodEnum<{
1316
+ asap: "asap";
1317
+ scheduled: "scheduled";
1318
+ }>;
1319
+ deliveryMethod: z.ZodEnum<{
1320
+ deliveryByCourier: "deliveryByCourier";
1321
+ selfPickup: "selfPickup";
1322
+ }>;
1323
+ address: z.ZodUnion<readonly [z.ZodObject<{
1324
+ type: z.ZodLiteral<"deliveryAddress">;
1325
+ street: z.ZodString;
1326
+ flat: z.ZodOptional<z.ZodString>;
1327
+ intercom: z.ZodOptional<z.ZodString>;
1328
+ entrance: z.ZodOptional<z.ZodString>;
1329
+ floor: z.ZodOptional<z.ZodString>;
1330
+ addressNote: z.ZodOptional<z.ZodString>;
1331
+ }, z.core.$strip>, z.ZodObject<{
1332
+ type: z.ZodLiteral<"warehouseAddress">;
1333
+ id: z.ZodString;
1334
+ }, z.core.$strip>]>;
1335
+ paymentMethodId: z.ZodString;
1336
+ changeFrom: z.ZodOptional<z.ZodNumber>;
1337
+ totalPrice: z.ZodNumber;
1338
+ name: z.ZodString;
1339
+ phone: z.ZodString;
1340
+ note: z.ZodOptional<z.ZodString>;
1341
+ items: z.ZodArray<z.ZodObject<{
1342
+ id: z.ZodString;
1343
+ orderId: z.ZodString;
1344
+ productId: z.ZodString;
1345
+ productSlug: z.ZodString;
1346
+ categoryId: z.ZodString;
1347
+ categorySlug: z.ZodString;
1348
+ variantId: z.ZodString;
1349
+ quantity: z.ZodNumber;
1350
+ unitPrice: z.ZodNumber;
1351
+ totalPrice: z.ZodNumber;
1352
+ }, z.core.$strip>>;
1353
+ }, z.core.$strip>;
1354
+ }, z.core.$strip>;
1355
+ type GatewayCreateOrderResponse = z.infer<typeof GatewayCreateOrderResponseSchema>;
1356
+ declare const GatewayUpdateOrderRequestSchema: z.ZodObject<{
1357
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1358
+ type: z.ZodLiteral<"updateOrder">;
1359
+ body: z.ZodObject<{
1360
+ id: z.ZodOptional<z.ZodString>;
1361
+ status: z.ZodOptional<z.ZodEnum<{
1362
+ draft: "draft";
1363
+ created: "created";
1364
+ ready: "ready";
1365
+ delivered: "delivered";
1366
+ }>>;
1367
+ createdAt: z.ZodOptional<z.ZodString>;
1368
+ readyBy: z.ZodOptional<z.ZodString>;
1369
+ readyType: z.ZodOptional<z.ZodEnum<{
1370
+ asap: "asap";
1371
+ scheduled: "scheduled";
1372
+ }>>;
1373
+ deliveryMethod: z.ZodOptional<z.ZodEnum<{
1374
+ deliveryByCourier: "deliveryByCourier";
1375
+ selfPickup: "selfPickup";
1376
+ }>>;
1377
+ address: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
1378
+ type: z.ZodLiteral<"deliveryAddress">;
1379
+ street: z.ZodString;
1380
+ flat: z.ZodOptional<z.ZodString>;
1381
+ intercom: z.ZodOptional<z.ZodString>;
1382
+ entrance: z.ZodOptional<z.ZodString>;
1383
+ floor: z.ZodOptional<z.ZodString>;
1384
+ addressNote: z.ZodOptional<z.ZodString>;
1385
+ }, z.core.$strip>, z.ZodObject<{
1386
+ type: z.ZodLiteral<"warehouseAddress">;
1387
+ id: z.ZodString;
1388
+ }, z.core.$strip>]>>;
1389
+ paymentMethodId: z.ZodOptional<z.ZodString>;
1390
+ changeFrom: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
1391
+ totalPrice: z.ZodOptional<z.ZodNumber>;
1392
+ name: z.ZodOptional<z.ZodString>;
1393
+ phone: z.ZodOptional<z.ZodString>;
1394
+ note: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1395
+ items: z.ZodOptional<z.ZodArray<z.ZodObject<{
1396
+ id: z.ZodString;
1397
+ orderId: z.ZodString;
1398
+ productId: z.ZodString;
1399
+ productSlug: z.ZodString;
1400
+ categoryId: z.ZodString;
1401
+ categorySlug: z.ZodString;
1402
+ variantId: z.ZodString;
1403
+ quantity: z.ZodNumber;
1404
+ unitPrice: z.ZodNumber;
1405
+ totalPrice: z.ZodNumber;
1406
+ }, z.core.$strip>>>;
1407
+ }, z.core.$strip>;
1408
+ }, z.core.$strip>;
1409
+ type GatewayUpdateOrderRequest = z.infer<typeof GatewayUpdateOrderRequestSchema>;
1410
+ declare const GatewayUpdateOrderResponseSchema: z.ZodObject<{
1411
+ ok: z.ZodBoolean;
1412
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1413
+ type: z.ZodLiteral<"updateOrder">;
1414
+ result: z.ZodObject<{
1415
+ id: z.ZodString;
1416
+ status: z.ZodEnum<{
1417
+ draft: "draft";
1418
+ created: "created";
1419
+ ready: "ready";
1420
+ delivered: "delivered";
1421
+ }>;
1422
+ createdAt: z.ZodString;
1423
+ readyBy: z.ZodString;
1424
+ readyType: z.ZodEnum<{
1425
+ asap: "asap";
1426
+ scheduled: "scheduled";
1427
+ }>;
1428
+ deliveryMethod: z.ZodEnum<{
1429
+ deliveryByCourier: "deliveryByCourier";
1430
+ selfPickup: "selfPickup";
1431
+ }>;
1432
+ address: z.ZodUnion<readonly [z.ZodObject<{
1433
+ type: z.ZodLiteral<"deliveryAddress">;
1434
+ street: z.ZodString;
1435
+ flat: z.ZodOptional<z.ZodString>;
1436
+ intercom: z.ZodOptional<z.ZodString>;
1437
+ entrance: z.ZodOptional<z.ZodString>;
1438
+ floor: z.ZodOptional<z.ZodString>;
1439
+ addressNote: z.ZodOptional<z.ZodString>;
1440
+ }, z.core.$strip>, z.ZodObject<{
1441
+ type: z.ZodLiteral<"warehouseAddress">;
1442
+ id: z.ZodString;
1443
+ }, z.core.$strip>]>;
1444
+ paymentMethodId: z.ZodString;
1445
+ changeFrom: z.ZodOptional<z.ZodNumber>;
1446
+ totalPrice: z.ZodNumber;
1447
+ name: z.ZodString;
1448
+ phone: z.ZodString;
1449
+ note: z.ZodOptional<z.ZodString>;
1450
+ items: z.ZodArray<z.ZodObject<{
1451
+ id: z.ZodString;
1452
+ orderId: z.ZodString;
1453
+ productId: z.ZodString;
1454
+ productSlug: z.ZodString;
1455
+ categoryId: z.ZodString;
1456
+ categorySlug: z.ZodString;
1457
+ variantId: z.ZodString;
1458
+ quantity: z.ZodNumber;
1459
+ unitPrice: z.ZodNumber;
1460
+ totalPrice: z.ZodNumber;
1461
+ }, z.core.$strip>>;
1462
+ }, z.core.$strip>;
1463
+ }, z.core.$strip>;
1464
+ type GatewayUpdateOrderResponse = z.infer<typeof GatewayUpdateOrderResponseSchema>;
1465
+ declare const GatewayAddOrderItemRequestSchema: z.ZodObject<{
1466
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1467
+ type: z.ZodLiteral<"addOrderItem">;
1468
+ body: z.ZodObject<{
1469
+ orderId: z.ZodString;
1470
+ variantId: z.ZodString;
1471
+ }, z.core.$strip>;
1472
+ }, z.core.$strip>;
1473
+ type GatewayAddOrderItemRequest = z.infer<typeof GatewayAddOrderItemRequestSchema>;
1474
+ declare const GatewayAddOrderItemResponseSchema: z.ZodObject<{
1475
+ ok: z.ZodBoolean;
1476
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1477
+ type: z.ZodLiteral<"addOrderItem">;
1478
+ result: z.ZodObject<{
1479
+ id: z.ZodString;
1480
+ status: z.ZodEnum<{
1481
+ draft: "draft";
1482
+ created: "created";
1483
+ ready: "ready";
1484
+ delivered: "delivered";
1485
+ }>;
1486
+ createdAt: z.ZodString;
1487
+ readyBy: z.ZodString;
1488
+ readyType: z.ZodEnum<{
1489
+ asap: "asap";
1490
+ scheduled: "scheduled";
1491
+ }>;
1492
+ deliveryMethod: z.ZodEnum<{
1493
+ deliveryByCourier: "deliveryByCourier";
1494
+ selfPickup: "selfPickup";
1495
+ }>;
1496
+ address: z.ZodUnion<readonly [z.ZodObject<{
1497
+ type: z.ZodLiteral<"deliveryAddress">;
1498
+ street: z.ZodString;
1499
+ flat: z.ZodOptional<z.ZodString>;
1500
+ intercom: z.ZodOptional<z.ZodString>;
1501
+ entrance: z.ZodOptional<z.ZodString>;
1502
+ floor: z.ZodOptional<z.ZodString>;
1503
+ addressNote: z.ZodOptional<z.ZodString>;
1504
+ }, z.core.$strip>, z.ZodObject<{
1505
+ type: z.ZodLiteral<"warehouseAddress">;
1506
+ id: z.ZodString;
1507
+ }, z.core.$strip>]>;
1508
+ paymentMethodId: z.ZodString;
1509
+ changeFrom: z.ZodOptional<z.ZodNumber>;
1510
+ totalPrice: z.ZodNumber;
1511
+ name: z.ZodString;
1512
+ phone: z.ZodString;
1513
+ note: z.ZodOptional<z.ZodString>;
1514
+ items: z.ZodArray<z.ZodObject<{
1515
+ id: z.ZodString;
1516
+ orderId: z.ZodString;
1517
+ productId: z.ZodString;
1518
+ productSlug: z.ZodString;
1519
+ categoryId: z.ZodString;
1520
+ categorySlug: z.ZodString;
1521
+ variantId: z.ZodString;
1522
+ quantity: z.ZodNumber;
1523
+ unitPrice: z.ZodNumber;
1524
+ totalPrice: z.ZodNumber;
1525
+ }, z.core.$strip>>;
1526
+ }, z.core.$strip>;
1527
+ }, z.core.$strip>;
1528
+ type GatewayAddOrderItemResponse = z.infer<typeof GatewayAddOrderItemResponseSchema>;
1529
+ declare const GatewayIncrementOrderItemQuantityRequestSchema: z.ZodObject<{
1530
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1531
+ type: z.ZodLiteral<"incrementOrderItemQuantity">;
1532
+ body: z.ZodObject<{
1533
+ orderId: z.ZodString;
1534
+ itemId: z.ZodString;
1535
+ method: z.ZodEnum<{
1536
+ increment: "increment";
1537
+ decrement: "decrement";
1538
+ }>;
1539
+ }, z.core.$strip>;
1540
+ }, z.core.$strip>;
1541
+ type GatewayIncrementOrderItemQuantityRequest = z.infer<typeof GatewayIncrementOrderItemQuantityRequestSchema>;
1542
+ declare const GatewayIncrementOrderItemQuantityResponseSchema: z.ZodObject<{
1543
+ ok: z.ZodBoolean;
1544
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1545
+ type: z.ZodLiteral<"incrementOrderItemQuantity">;
1546
+ result: z.ZodObject<{
1547
+ id: z.ZodString;
1548
+ status: z.ZodEnum<{
1549
+ draft: "draft";
1550
+ created: "created";
1551
+ ready: "ready";
1552
+ delivered: "delivered";
1553
+ }>;
1554
+ createdAt: z.ZodString;
1555
+ readyBy: z.ZodString;
1556
+ readyType: z.ZodEnum<{
1557
+ asap: "asap";
1558
+ scheduled: "scheduled";
1559
+ }>;
1560
+ deliveryMethod: z.ZodEnum<{
1561
+ deliveryByCourier: "deliveryByCourier";
1562
+ selfPickup: "selfPickup";
1563
+ }>;
1564
+ address: z.ZodUnion<readonly [z.ZodObject<{
1565
+ type: z.ZodLiteral<"deliveryAddress">;
1566
+ street: z.ZodString;
1567
+ flat: z.ZodOptional<z.ZodString>;
1568
+ intercom: z.ZodOptional<z.ZodString>;
1569
+ entrance: z.ZodOptional<z.ZodString>;
1570
+ floor: z.ZodOptional<z.ZodString>;
1571
+ addressNote: z.ZodOptional<z.ZodString>;
1572
+ }, z.core.$strip>, z.ZodObject<{
1573
+ type: z.ZodLiteral<"warehouseAddress">;
1574
+ id: z.ZodString;
1575
+ }, z.core.$strip>]>;
1576
+ paymentMethodId: z.ZodString;
1577
+ changeFrom: z.ZodOptional<z.ZodNumber>;
1578
+ totalPrice: z.ZodNumber;
1579
+ name: z.ZodString;
1580
+ phone: z.ZodString;
1581
+ note: z.ZodOptional<z.ZodString>;
1582
+ items: z.ZodArray<z.ZodObject<{
1583
+ id: z.ZodString;
1584
+ orderId: z.ZodString;
1585
+ productId: z.ZodString;
1586
+ productSlug: z.ZodString;
1587
+ categoryId: z.ZodString;
1588
+ categorySlug: z.ZodString;
1589
+ variantId: z.ZodString;
1590
+ quantity: z.ZodNumber;
1591
+ unitPrice: z.ZodNumber;
1592
+ totalPrice: z.ZodNumber;
1593
+ }, z.core.$strip>>;
1594
+ }, z.core.$strip>;
1595
+ }, z.core.$strip>;
1596
+ type GatewayIncrementOrderItemQuantityResponse = z.infer<typeof GatewayIncrementOrderItemQuantityResponseSchema>;
1597
+ declare const GatewayDecrementOrderItemQuantityRequestSchema: z.ZodObject<{
1598
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1599
+ type: z.ZodLiteral<"decrementOrderItemQuantity">;
1600
+ body: z.ZodObject<{
1601
+ orderId: z.ZodString;
1602
+ itemId: z.ZodString;
1603
+ method: z.ZodEnum<{
1604
+ increment: "increment";
1605
+ decrement: "decrement";
1606
+ }>;
1607
+ }, z.core.$strip>;
1608
+ }, z.core.$strip>;
1609
+ type GatewayDecrementOrderItemQuantityRequest = z.infer<typeof GatewayDecrementOrderItemQuantityRequestSchema>;
1610
+ declare const GatewayDecrementOrderItemQuantityResponseSchema: z.ZodObject<{
1611
+ ok: z.ZodBoolean;
1612
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1613
+ type: z.ZodLiteral<"decrementOrderItemQuantity">;
1614
+ result: z.ZodObject<{
1615
+ id: z.ZodString;
1616
+ status: z.ZodEnum<{
1617
+ draft: "draft";
1618
+ created: "created";
1619
+ ready: "ready";
1620
+ delivered: "delivered";
1621
+ }>;
1622
+ createdAt: z.ZodString;
1623
+ readyBy: z.ZodString;
1624
+ readyType: z.ZodEnum<{
1625
+ asap: "asap";
1626
+ scheduled: "scheduled";
1627
+ }>;
1628
+ deliveryMethod: z.ZodEnum<{
1629
+ deliveryByCourier: "deliveryByCourier";
1630
+ selfPickup: "selfPickup";
1631
+ }>;
1632
+ address: z.ZodUnion<readonly [z.ZodObject<{
1633
+ type: z.ZodLiteral<"deliveryAddress">;
1634
+ street: z.ZodString;
1635
+ flat: z.ZodOptional<z.ZodString>;
1636
+ intercom: z.ZodOptional<z.ZodString>;
1637
+ entrance: z.ZodOptional<z.ZodString>;
1638
+ floor: z.ZodOptional<z.ZodString>;
1639
+ addressNote: z.ZodOptional<z.ZodString>;
1640
+ }, z.core.$strip>, z.ZodObject<{
1641
+ type: z.ZodLiteral<"warehouseAddress">;
1642
+ id: z.ZodString;
1643
+ }, z.core.$strip>]>;
1644
+ paymentMethodId: z.ZodString;
1645
+ changeFrom: z.ZodOptional<z.ZodNumber>;
1646
+ totalPrice: z.ZodNumber;
1647
+ name: z.ZodString;
1648
+ phone: z.ZodString;
1649
+ note: z.ZodOptional<z.ZodString>;
1650
+ items: z.ZodArray<z.ZodObject<{
1651
+ id: z.ZodString;
1652
+ orderId: z.ZodString;
1653
+ productId: z.ZodString;
1654
+ productSlug: z.ZodString;
1655
+ categoryId: z.ZodString;
1656
+ categorySlug: z.ZodString;
1657
+ variantId: z.ZodString;
1658
+ quantity: z.ZodNumber;
1659
+ unitPrice: z.ZodNumber;
1660
+ totalPrice: z.ZodNumber;
1661
+ }, z.core.$strip>>;
1662
+ }, z.core.$strip>;
1663
+ }, z.core.$strip>;
1664
+ type GatewayDecrementOrderItemQuantityResponse = z.infer<typeof GatewayDecrementOrderItemQuantityResponseSchema>;
1665
+ declare const GatewayGetMenuRequestSchema: z.ZodObject<{
1666
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1667
+ body: z.ZodOptional<z.ZodUnknown>;
1668
+ type: z.ZodLiteral<"getMenu">;
1669
+ }, z.core.$strip>;
1670
+ type GatewayGetMenuRequest = z.infer<typeof GatewayGetMenuRequestSchema>;
1671
+ declare const GatewayGetMenuResponseSchema: z.ZodObject<{
1672
+ ok: z.ZodBoolean;
1673
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1674
+ type: z.ZodLiteral<"getMenu">;
1675
+ result: z.ZodObject<{
1676
+ id: z.ZodString;
1677
+ slug: z.ZodString;
1678
+ title: z.ZodArray<z.ZodObject<{
1679
+ locale: z.ZodEnum<{
1680
+ de: "de";
1681
+ en: "en";
1682
+ es: "es";
1683
+ ka: "ka";
1684
+ ru: "ru";
1685
+ zh_cn: "zh_cn";
1686
+ }>;
1687
+ value: z.ZodString;
1688
+ }, z.core.$strip>>;
1689
+ isActive: z.ZodBoolean;
1690
+ categories: z.ZodArray<z.ZodObject<{
1691
+ id: z.ZodString;
1692
+ slug: z.ZodString;
1693
+ title: z.ZodArray<z.ZodObject<{
1694
+ locale: z.ZodEnum<{
1695
+ de: "de";
1696
+ en: "en";
1697
+ es: "es";
1698
+ ka: "ka";
1699
+ ru: "ru";
1700
+ zh_cn: "zh_cn";
1701
+ }>;
1702
+ value: z.ZodString;
1703
+ }, z.core.$strip>>;
1704
+ icon: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1705
+ products: z.ZodArray<z.ZodObject<{
1706
+ id: z.ZodString;
1707
+ slug: z.ZodString;
1708
+ title: z.ZodArray<z.ZodObject<{
1709
+ locale: z.ZodEnum<{
1710
+ de: "de";
1711
+ en: "en";
1712
+ es: "es";
1713
+ ka: "ka";
1714
+ ru: "ru";
1715
+ zh_cn: "zh_cn";
1716
+ }>;
1717
+ value: z.ZodString;
1718
+ }, z.core.$strip>>;
1719
+ description: z.ZodOptional<z.ZodArray<z.ZodObject<{
1720
+ locale: z.ZodEnum<{
1721
+ de: "de";
1722
+ en: "en";
1723
+ es: "es";
1724
+ ka: "ka";
1725
+ ru: "ru";
1726
+ zh_cn: "zh_cn";
1727
+ }>;
1728
+ value: z.ZodString;
1729
+ }, z.core.$strip>>>;
1730
+ isAvailableForPurchase: z.ZodBoolean;
1731
+ variants: z.ZodArray<z.ZodObject<{
1732
+ id: z.ZodString;
1733
+ title: z.ZodArray<z.ZodObject<{
1734
+ locale: z.ZodEnum<{
1735
+ de: "de";
1736
+ en: "en";
1737
+ es: "es";
1738
+ ka: "ka";
1739
+ ru: "ru";
1740
+ zh_cn: "zh_cn";
1741
+ }>;
1742
+ value: z.ZodString;
1743
+ }, z.core.$strip>>;
1744
+ images: z.ZodArray<z.ZodObject<{
1745
+ id: z.ZodString;
1746
+ url: z.ZodString;
1747
+ size: z.ZodEnum<{
1748
+ xs: "xs";
1749
+ sm: "sm";
1750
+ md: "md";
1751
+ lg: "lg";
1752
+ xl: "xl";
1753
+ }>;
1754
+ format: z.ZodEnum<{
1755
+ jpeg: "jpeg";
1756
+ webp: "webp";
1757
+ }>;
1758
+ }, z.core.$strip>>;
1759
+ weightUnit: z.ZodEnum<{
1760
+ g: "g";
1761
+ kg: "kg";
1762
+ ml: "ml";
1763
+ l: "l";
1764
+ oz: "oz";
1765
+ lb: "lb";
1766
+ }>;
1767
+ weightValue: z.ZodNumber;
1768
+ gross: z.ZodNumber;
1769
+ net: z.ZodNullable<z.ZodNumber>;
1770
+ sku: z.ZodNullable<z.ZodString>;
1771
+ nutritionFacts: z.ZodNullable<z.ZodObject<{
1772
+ calories: z.ZodNumber;
1773
+ carbohydrate: z.ZodNumber;
1774
+ protein: z.ZodNumber;
1775
+ fat: z.ZodNumber;
1776
+ }, z.core.$strip>>;
1777
+ }, z.core.$strip>>;
1778
+ }, z.core.$strip>>;
1779
+ }, z.core.$strip>>;
1780
+ }, z.core.$strip>;
1781
+ }, z.core.$strip>;
1782
+ type GatewayGetMenuResponse = z.infer<typeof GatewayGetMenuResponseSchema>;
1783
+ declare const GatewayGetDeliveryByCourierStatusRequestSchema: z.ZodObject<{
1784
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1785
+ type: z.ZodLiteral<"getDeliveryByCourierStatus">;
1786
+ body: z.ZodObject<{
1787
+ channelId: z.ZodString;
1788
+ }, z.core.$strip>;
1789
+ }, z.core.$strip>;
1790
+ type GatewayGetDeliveryByCourierStatusRequest = z.infer<typeof GatewayGetDeliveryByCourierStatusRequestSchema>;
1791
+ declare const GatewayGetDeliveryByCourierStatusResponseSchema: z.ZodObject<{
1792
+ ok: z.ZodBoolean;
1793
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1794
+ type: z.ZodLiteral<"getDeliveryByCourierStatus">;
1795
+ result: z.ZodObject<{
1796
+ isClosed: z.ZodBoolean;
1797
+ timeZone: z.ZodEnum<{
1798
+ "-12:00": "-12:00";
1799
+ "-11:00": "-11:00";
1800
+ "-10:00": "-10:00";
1801
+ "-09:00": "-09:00";
1802
+ "-08:00": "-08:00";
1803
+ "-07:00": "-07:00";
1804
+ "-06:00": "-06:00";
1805
+ "-05:00": "-05:00";
1806
+ "-04:00": "-04:00";
1807
+ "-03:00": "-03:00";
1808
+ "-02:00": "-02:00";
1809
+ "-01:00": "-01:00";
1810
+ "+00:00": "+00:00";
1811
+ "+01:00": "+01:00";
1812
+ "+02:00": "+02:00";
1813
+ "+03:00": "+03:00";
1814
+ "+04:00": "+04:00";
1815
+ "+05:00": "+05:00";
1816
+ "+06:00": "+06:00";
1817
+ "+07:00": "+07:00";
1818
+ "+08:00": "+08:00";
1819
+ "+09:00": "+09:00";
1820
+ "+10:00": "+10:00";
1821
+ "+11:00": "+11:00";
1822
+ "+12:00": "+12:00";
1823
+ "+13:00": "+13:00";
1824
+ "+14:00": "+14:00";
1825
+ }>;
1826
+ currentTime: z.ZodString;
1827
+ currentDay: z.ZodEnum<{
1828
+ sun: "sun";
1829
+ mon: "mon";
1830
+ tue: "tue";
1831
+ wed: "wed";
1832
+ thu: "thu";
1833
+ fri: "fri";
1834
+ sat: "sat";
1835
+ }>;
1836
+ todayHours: z.ZodNullable<z.ZodArray<z.ZodObject<{
1837
+ start: z.ZodString;
1838
+ end: z.ZodString;
1839
+ }, z.core.$strip>>>;
1840
+ todayEndAt: z.ZodNullable<z.ZodString>;
1841
+ todayEndInMinutes: z.ZodNullable<z.ZodNumber>;
1842
+ nextOpening: z.ZodNullable<z.ZodObject<{
1843
+ day: z.ZodEnum<{
1844
+ sun: "sun";
1845
+ mon: "mon";
1846
+ tue: "tue";
1847
+ wed: "wed";
1848
+ thu: "thu";
1849
+ fri: "fri";
1850
+ sat: "sat";
1851
+ }>;
1852
+ time: z.ZodString;
1853
+ relativeDays: z.ZodNumber;
1854
+ }, z.core.$strip>>;
1855
+ }, z.core.$strip>;
1856
+ }, z.core.$strip>;
1857
+ type GatewayGetDeliveryByCourierStatusResponse = z.infer<typeof GatewayGetDeliveryByCourierStatusResponseSchema>;
1858
+ declare const GatewayGetSelfPickupStatusRequestSchema: z.ZodObject<{
1859
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1860
+ type: z.ZodLiteral<"getSelfPickupStatus">;
1861
+ body: z.ZodObject<{
1862
+ channelId: z.ZodString;
1863
+ }, z.core.$strip>;
1864
+ }, z.core.$strip>;
1865
+ type GatewayGetSelfPickupStatusRequest = z.infer<typeof GatewayGetSelfPickupStatusRequestSchema>;
1866
+ declare const GatewayGetSelfPickupStatusResponseSchema: z.ZodObject<{
1867
+ ok: z.ZodBoolean;
1868
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1869
+ type: z.ZodLiteral<"getSelfPickupStatus">;
1870
+ result: z.ZodObject<{
1871
+ isClosed: z.ZodBoolean;
1872
+ timeZone: z.ZodEnum<{
1873
+ "-12:00": "-12:00";
1874
+ "-11:00": "-11:00";
1875
+ "-10:00": "-10:00";
1876
+ "-09:00": "-09:00";
1877
+ "-08:00": "-08:00";
1878
+ "-07:00": "-07:00";
1879
+ "-06:00": "-06:00";
1880
+ "-05:00": "-05:00";
1881
+ "-04:00": "-04:00";
1882
+ "-03:00": "-03:00";
1883
+ "-02:00": "-02:00";
1884
+ "-01:00": "-01:00";
1885
+ "+00:00": "+00:00";
1886
+ "+01:00": "+01:00";
1887
+ "+02:00": "+02:00";
1888
+ "+03:00": "+03:00";
1889
+ "+04:00": "+04:00";
1890
+ "+05:00": "+05:00";
1891
+ "+06:00": "+06:00";
1892
+ "+07:00": "+07:00";
1893
+ "+08:00": "+08:00";
1894
+ "+09:00": "+09:00";
1895
+ "+10:00": "+10:00";
1896
+ "+11:00": "+11:00";
1897
+ "+12:00": "+12:00";
1898
+ "+13:00": "+13:00";
1899
+ "+14:00": "+14:00";
1900
+ }>;
1901
+ currentTime: z.ZodString;
1902
+ currentDay: z.ZodEnum<{
1903
+ sun: "sun";
1904
+ mon: "mon";
1905
+ tue: "tue";
1906
+ wed: "wed";
1907
+ thu: "thu";
1908
+ fri: "fri";
1909
+ sat: "sat";
1910
+ }>;
1911
+ todayHours: z.ZodNullable<z.ZodArray<z.ZodObject<{
1912
+ start: z.ZodString;
1913
+ end: z.ZodString;
1914
+ }, z.core.$strip>>>;
1915
+ todayEndAt: z.ZodNullable<z.ZodString>;
1916
+ todayEndInMinutes: z.ZodNullable<z.ZodNumber>;
1917
+ nextOpening: z.ZodNullable<z.ZodObject<{
1918
+ day: z.ZodEnum<{
1919
+ sun: "sun";
1920
+ mon: "mon";
1921
+ tue: "tue";
1922
+ wed: "wed";
1923
+ thu: "thu";
1924
+ fri: "fri";
1925
+ sat: "sat";
1926
+ }>;
1927
+ time: z.ZodString;
1928
+ relativeDays: z.ZodNumber;
1929
+ }, z.core.$strip>>;
1930
+ }, z.core.$strip>;
1931
+ }, z.core.$strip>;
1932
+ type GatewayGetSelfPickupStatusResponse = z.infer<typeof GatewayGetSelfPickupStatusResponseSchema>;
1933
+ declare const GatewayGetTimeSlotsRequestSchema: z.ZodObject<{
1934
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1935
+ type: z.ZodLiteral<"getTimeSlots">;
1936
+ body: z.ZodObject<{
1937
+ channelId: z.ZodString;
1938
+ deliveryMethod: z.ZodEnum<{
1939
+ deliveryByCourier: "deliveryByCourier";
1940
+ selfPickup: "selfPickup";
1941
+ }>;
1942
+ }, z.core.$strip>;
1943
+ }, z.core.$strip>;
1944
+ type GatewayGetTimeSlotsRequest = z.infer<typeof GatewayGetTimeSlotsRequestSchema>;
1945
+ declare const GatewayGetTimeSlotsResponseSchema: z.ZodObject<{
1946
+ ok: z.ZodBoolean;
1947
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1948
+ type: z.ZodLiteral<"getTimeSlots">;
1949
+ result: z.ZodArray<z.ZodObject<{
1950
+ start: z.ZodString;
1951
+ end: z.ZodString;
1952
+ }, z.core.$strip>>;
1953
+ }, z.core.$strip>;
1954
+ type GatewayGetTimeSlotsResponse = z.infer<typeof GatewayGetTimeSlotsResponseSchema>;
1955
+ /**
1956
+ * Combined Gateway Response
1957
+ */
1958
+ declare const GatewayResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
1959
+ ok: z.ZodBoolean;
1960
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1961
+ type: z.ZodLiteral<"getOptions">;
1962
+ result: z.ZodObject<{
1963
+ selectorTitle: z.ZodArray<z.ZodObject<{
1964
+ locale: z.ZodEnum<{
1965
+ de: "de";
1966
+ en: "en";
1967
+ es: "es";
1968
+ ka: "ka";
1969
+ ru: "ru";
1970
+ zh_cn: "zh_cn";
1971
+ }>;
1972
+ value: z.ZodString;
1973
+ }, z.core.$strip>>;
1974
+ selectorDescription: z.ZodOptional<z.ZodArray<z.ZodObject<{
1975
+ locale: z.ZodEnum<{
1976
+ de: "de";
1977
+ en: "en";
1978
+ es: "es";
1979
+ ka: "ka";
1980
+ ru: "ru";
1981
+ zh_cn: "zh_cn";
1982
+ }>;
1983
+ value: z.ZodString;
1984
+ }, z.core.$strip>>>;
1985
+ logoUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1986
+ availableLocales: z.ZodArray<z.ZodEnum<{
1987
+ de: "de";
1988
+ en: "en";
1989
+ es: "es";
1990
+ ka: "ka";
1991
+ ru: "ru";
1992
+ zh_cn: "zh_cn";
1993
+ }>>;
1994
+ defaultLocale: z.ZodEnum<{
1995
+ de: "de";
1996
+ en: "en";
1997
+ es: "es";
1998
+ ka: "ka";
1999
+ ru: "ru";
2000
+ zh_cn: "zh_cn";
2001
+ }>;
2002
+ countryCode: z.ZodEnum<{
2003
+ RU: "RU";
2004
+ US: "US";
2005
+ GB: "GB";
2006
+ GR: "GR";
2007
+ GE: "GE";
2008
+ UA: "UA";
2009
+ BY: "BY";
2010
+ KZ: "KZ";
2011
+ FR: "FR";
2012
+ DE: "DE";
2013
+ IT: "IT";
2014
+ ES: "ES";
2015
+ TR: "TR";
2016
+ PL: "PL";
2017
+ AC: "AC";
2018
+ AD: "AD";
2019
+ AE: "AE";
2020
+ AF: "AF";
2021
+ AG: "AG";
2022
+ AI: "AI";
2023
+ AL: "AL";
2024
+ AM: "AM";
2025
+ AO: "AO";
2026
+ AR: "AR";
2027
+ AS: "AS";
2028
+ AT: "AT";
2029
+ AU: "AU";
2030
+ AW: "AW";
2031
+ AX: "AX";
2032
+ AZ: "AZ";
2033
+ BA: "BA";
2034
+ BB: "BB";
2035
+ BD: "BD";
2036
+ BE: "BE";
2037
+ BF: "BF";
2038
+ BG: "BG";
2039
+ BH: "BH";
2040
+ BI: "BI";
2041
+ BJ: "BJ";
2042
+ BL: "BL";
2043
+ BM: "BM";
2044
+ BN: "BN";
2045
+ BO: "BO";
2046
+ BQ: "BQ";
2047
+ BR: "BR";
2048
+ BS: "BS";
2049
+ BT: "BT";
2050
+ BW: "BW";
2051
+ BZ: "BZ";
2052
+ CA: "CA";
2053
+ CC: "CC";
2054
+ CD: "CD";
2055
+ CF: "CF";
2056
+ CG: "CG";
2057
+ CH: "CH";
2058
+ CI: "CI";
2059
+ CK: "CK";
2060
+ CL: "CL";
2061
+ CM: "CM";
2062
+ CN: "CN";
2063
+ CO: "CO";
2064
+ CR: "CR";
2065
+ CU: "CU";
2066
+ CV: "CV";
2067
+ CW: "CW";
2068
+ CX: "CX";
2069
+ CY: "CY";
2070
+ CZ: "CZ";
2071
+ DJ: "DJ";
2072
+ DK: "DK";
2073
+ DM: "DM";
2074
+ DO: "DO";
2075
+ DZ: "DZ";
2076
+ EC: "EC";
2077
+ EE: "EE";
2078
+ EG: "EG";
2079
+ EH: "EH";
2080
+ ER: "ER";
2081
+ ET: "ET";
2082
+ FI: "FI";
2083
+ FJ: "FJ";
2084
+ FK: "FK";
2085
+ FM: "FM";
2086
+ FO: "FO";
2087
+ GA: "GA";
2088
+ GD: "GD";
2089
+ GF: "GF";
2090
+ GG: "GG";
2091
+ GH: "GH";
2092
+ GI: "GI";
2093
+ GL: "GL";
2094
+ GM: "GM";
2095
+ GN: "GN";
2096
+ GP: "GP";
2097
+ GQ: "GQ";
2098
+ GT: "GT";
2099
+ GU: "GU";
2100
+ GW: "GW";
2101
+ GY: "GY";
2102
+ HK: "HK";
2103
+ HN: "HN";
2104
+ HR: "HR";
2105
+ HT: "HT";
2106
+ HU: "HU";
2107
+ ID: "ID";
2108
+ IE: "IE";
2109
+ IL: "IL";
2110
+ IM: "IM";
2111
+ IN: "IN";
2112
+ IO: "IO";
2113
+ IQ: "IQ";
2114
+ IR: "IR";
2115
+ IS: "IS";
2116
+ JE: "JE";
2117
+ JM: "JM";
2118
+ JO: "JO";
2119
+ JP: "JP";
2120
+ KE: "KE";
2121
+ KG: "KG";
2122
+ KH: "KH";
2123
+ KI: "KI";
2124
+ KM: "KM";
2125
+ KN: "KN";
2126
+ KP: "KP";
2127
+ KR: "KR";
2128
+ KW: "KW";
2129
+ KY: "KY";
2130
+ LA: "LA";
2131
+ LB: "LB";
2132
+ LC: "LC";
2133
+ LI: "LI";
2134
+ LK: "LK";
2135
+ LR: "LR";
2136
+ LS: "LS";
2137
+ LT: "LT";
2138
+ LU: "LU";
2139
+ LV: "LV";
2140
+ LY: "LY";
2141
+ MA: "MA";
2142
+ MC: "MC";
2143
+ MD: "MD";
2144
+ ME: "ME";
2145
+ MF: "MF";
2146
+ MG: "MG";
2147
+ MH: "MH";
2148
+ MK: "MK";
2149
+ ML: "ML";
2150
+ MM: "MM";
2151
+ MN: "MN";
2152
+ MO: "MO";
2153
+ MP: "MP";
2154
+ MQ: "MQ";
2155
+ MR: "MR";
2156
+ MS: "MS";
2157
+ MT: "MT";
2158
+ MU: "MU";
2159
+ MV: "MV";
2160
+ MW: "MW";
2161
+ MX: "MX";
2162
+ MY: "MY";
2163
+ MZ: "MZ";
2164
+ NA: "NA";
2165
+ NC: "NC";
2166
+ NE: "NE";
2167
+ NF: "NF";
2168
+ NG: "NG";
2169
+ NI: "NI";
2170
+ NL: "NL";
2171
+ NO: "NO";
2172
+ NP: "NP";
2173
+ NR: "NR";
2174
+ NU: "NU";
2175
+ NZ: "NZ";
2176
+ OM: "OM";
2177
+ PA: "PA";
2178
+ PE: "PE";
2179
+ PF: "PF";
2180
+ PG: "PG";
2181
+ PH: "PH";
2182
+ PK: "PK";
2183
+ PM: "PM";
2184
+ PR: "PR";
2185
+ PS: "PS";
2186
+ PT: "PT";
2187
+ PW: "PW";
2188
+ PY: "PY";
2189
+ QA: "QA";
2190
+ RE: "RE";
2191
+ RO: "RO";
2192
+ RS: "RS";
2193
+ RW: "RW";
2194
+ SA: "SA";
2195
+ SB: "SB";
2196
+ SC: "SC";
2197
+ SD: "SD";
2198
+ SE: "SE";
2199
+ SG: "SG";
2200
+ SH: "SH";
2201
+ SI: "SI";
2202
+ SJ: "SJ";
2203
+ SK: "SK";
2204
+ SL: "SL";
2205
+ SM: "SM";
2206
+ SN: "SN";
2207
+ SO: "SO";
2208
+ SR: "SR";
2209
+ SS: "SS";
2210
+ ST: "ST";
2211
+ SV: "SV";
2212
+ SX: "SX";
2213
+ SY: "SY";
2214
+ SZ: "SZ";
2215
+ TA: "TA";
2216
+ TC: "TC";
2217
+ TD: "TD";
2218
+ TG: "TG";
2219
+ TH: "TH";
2220
+ TJ: "TJ";
2221
+ TK: "TK";
2222
+ TL: "TL";
2223
+ TM: "TM";
2224
+ TN: "TN";
2225
+ TO: "TO";
2226
+ TT: "TT";
2227
+ TV: "TV";
2228
+ TW: "TW";
2229
+ TZ: "TZ";
2230
+ UG: "UG";
2231
+ UY: "UY";
2232
+ UZ: "UZ";
2233
+ VA: "VA";
2234
+ VC: "VC";
2235
+ VE: "VE";
2236
+ VG: "VG";
2237
+ VI: "VI";
2238
+ VN: "VN";
2239
+ VU: "VU";
2240
+ WF: "WF";
2241
+ WS: "WS";
2242
+ XK: "XK";
2243
+ YE: "YE";
2244
+ YT: "YT";
2245
+ ZA: "ZA";
2246
+ ZM: "ZM";
2247
+ ZW: "ZW";
2248
+ }>;
2249
+ currencyCode: z.ZodEnum<{
2250
+ USD: "USD";
2251
+ EUR: "EUR";
2252
+ RUB: "RUB";
2253
+ CNY: "CNY";
2254
+ GEL: "GEL";
2255
+ BYN: "BYN";
2256
+ UAH: "UAH";
2257
+ KZT: "KZT";
2258
+ PLN: "PLN";
2259
+ TRY: "TRY";
2260
+ }>;
2261
+ headLinks: z.ZodOptional<z.ZodArray<z.ZodObject<{
2262
+ rel: z.ZodOptional<z.ZodString>;
2263
+ type: z.ZodOptional<z.ZodString>;
2264
+ sizes: z.ZodOptional<z.ZodString>;
2265
+ href: z.ZodOptional<z.ZodString>;
2266
+ }, z.core.$strip>>>;
2267
+ headScripts: z.ZodOptional<z.ZodArray<z.ZodObject<{
2268
+ src: z.ZodOptional<z.ZodString>;
2269
+ type: z.ZodOptional<z.ZodString>;
2270
+ textContent: z.ZodOptional<z.ZodString>;
2271
+ }, z.core.$strip>>>;
2272
+ headStyles: z.ZodOptional<z.ZodArray<z.ZodString>>;
2273
+ }, z.core.$strip>;
2274
+ }, z.core.$strip>, z.ZodObject<{
2275
+ ok: z.ZodBoolean;
2276
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2277
+ type: z.ZodLiteral<"getChannels">;
2278
+ result: z.ZodArray<z.ZodObject<{
2279
+ id: z.ZodString;
2280
+ selectorTitle: z.ZodArray<z.ZodObject<{
2281
+ locale: z.ZodEnum<{
2282
+ de: "de";
2283
+ en: "en";
2284
+ es: "es";
2285
+ ka: "ka";
2286
+ ru: "ru";
2287
+ zh_cn: "zh_cn";
2288
+ }>;
2289
+ value: z.ZodString;
2290
+ }, z.core.$strip>>;
2291
+ title: z.ZodArray<z.ZodObject<{
2292
+ locale: z.ZodEnum<{
2293
+ de: "de";
2294
+ en: "en";
2295
+ es: "es";
2296
+ ka: "ka";
2297
+ ru: "ru";
2298
+ zh_cn: "zh_cn";
2299
+ }>;
2300
+ value: z.ZodString;
2301
+ }, z.core.$strip>>;
2302
+ description: z.ZodOptional<z.ZodArray<z.ZodObject<{
2303
+ locale: z.ZodEnum<{
2304
+ de: "de";
2305
+ en: "en";
2306
+ es: "es";
2307
+ ka: "ka";
2308
+ ru: "ru";
2309
+ zh_cn: "zh_cn";
2310
+ }>;
2311
+ value: z.ZodString;
2312
+ }, z.core.$strip>>>;
2313
+ url: z.ZodString;
2314
+ timeZone: z.ZodEnum<{
2315
+ "-12:00": "-12:00";
2316
+ "-11:00": "-11:00";
2317
+ "-10:00": "-10:00";
2318
+ "-09:00": "-09:00";
2319
+ "-08:00": "-08:00";
2320
+ "-07:00": "-07:00";
2321
+ "-06:00": "-06:00";
2322
+ "-05:00": "-05:00";
2323
+ "-04:00": "-04:00";
2324
+ "-03:00": "-03:00";
2325
+ "-02:00": "-02:00";
2326
+ "-01:00": "-01:00";
2327
+ "+00:00": "+00:00";
2328
+ "+01:00": "+01:00";
2329
+ "+02:00": "+02:00";
2330
+ "+03:00": "+03:00";
2331
+ "+04:00": "+04:00";
2332
+ "+05:00": "+05:00";
2333
+ "+06:00": "+06:00";
2334
+ "+07:00": "+07:00";
2335
+ "+08:00": "+08:00";
2336
+ "+09:00": "+09:00";
2337
+ "+10:00": "+10:00";
2338
+ "+11:00": "+11:00";
2339
+ "+12:00": "+12:00";
2340
+ "+13:00": "+13:00";
2341
+ "+14:00": "+14:00";
2342
+ }>;
2343
+ isActive: z.ZodBoolean;
2344
+ deliveryByCourier: z.ZodObject<{
2345
+ isAvailable: z.ZodBoolean;
2346
+ paymentMethods: z.ZodArray<z.ZodObject<{
2347
+ id: z.ZodString;
2348
+ title: z.ZodArray<z.ZodObject<{
2349
+ locale: z.ZodEnum<{
2350
+ de: "de";
2351
+ en: "en";
2352
+ es: "es";
2353
+ ka: "ka";
2354
+ ru: "ru";
2355
+ zh_cn: "zh_cn";
2356
+ }>;
2357
+ value: z.ZodString;
2358
+ }, z.core.$strip>>;
2359
+ type: z.ZodEnum<{
2360
+ cash: "cash";
2361
+ card: "card";
2362
+ custom: "custom";
2363
+ }>;
2364
+ }, z.core.$strip>>;
2365
+ conditions: z.ZodOptional<z.ZodArray<z.ZodObject<{
2366
+ locale: z.ZodEnum<{
2367
+ de: "de";
2368
+ en: "en";
2369
+ es: "es";
2370
+ ka: "ka";
2371
+ ru: "ru";
2372
+ zh_cn: "zh_cn";
2373
+ }>;
2374
+ value: z.ZodString;
2375
+ }, z.core.$strip>>>;
2376
+ minAmountForDelivery: z.ZodOptional<z.ZodNumber>;
2377
+ schedule: z.ZodOptional<z.ZodArray<z.ZodObject<{
2378
+ day: z.ZodEnum<{
2379
+ sun: "sun";
2380
+ mon: "mon";
2381
+ tue: "tue";
2382
+ wed: "wed";
2383
+ thu: "thu";
2384
+ fri: "fri";
2385
+ sat: "sat";
2386
+ }>;
2387
+ isClosed: z.ZodBoolean;
2388
+ hours: z.ZodOptional<z.ZodArray<z.ZodObject<{
2389
+ start: z.ZodString;
2390
+ end: z.ZodString;
2391
+ }, z.core.$strip>>>;
2392
+ comment: z.ZodOptional<z.ZodArray<z.ZodObject<{
2393
+ locale: z.ZodEnum<{
2394
+ de: "de";
2395
+ en: "en";
2396
+ es: "es";
2397
+ ka: "ka";
2398
+ ru: "ru";
2399
+ zh_cn: "zh_cn";
2400
+ }>;
2401
+ value: z.ZodString;
2402
+ }, z.core.$strip>>>;
2403
+ }, z.core.$strip>>>;
2404
+ }, z.core.$strip>;
2405
+ selfPickup: z.ZodObject<{
2406
+ isAvailable: z.ZodBoolean;
2407
+ paymentMethods: z.ZodArray<z.ZodObject<{
2408
+ id: z.ZodString;
2409
+ title: z.ZodArray<z.ZodObject<{
2410
+ locale: z.ZodEnum<{
2411
+ de: "de";
2412
+ en: "en";
2413
+ es: "es";
2414
+ ka: "ka";
2415
+ ru: "ru";
2416
+ zh_cn: "zh_cn";
2417
+ }>;
2418
+ value: z.ZodString;
2419
+ }, z.core.$strip>>;
2420
+ type: z.ZodEnum<{
2421
+ cash: "cash";
2422
+ card: "card";
2423
+ custom: "custom";
2424
+ }>;
2425
+ }, z.core.$strip>>;
2426
+ conditions: z.ZodOptional<z.ZodArray<z.ZodObject<{
2427
+ locale: z.ZodEnum<{
2428
+ de: "de";
2429
+ en: "en";
2430
+ es: "es";
2431
+ ka: "ka";
2432
+ ru: "ru";
2433
+ zh_cn: "zh_cn";
2434
+ }>;
2435
+ value: z.ZodString;
2436
+ }, z.core.$strip>>>;
2437
+ schedule: z.ZodOptional<z.ZodArray<z.ZodObject<{
2438
+ day: z.ZodEnum<{
2439
+ sun: "sun";
2440
+ mon: "mon";
2441
+ tue: "tue";
2442
+ wed: "wed";
2443
+ thu: "thu";
2444
+ fri: "fri";
2445
+ sat: "sat";
2446
+ }>;
2447
+ isClosed: z.ZodBoolean;
2448
+ hours: z.ZodOptional<z.ZodArray<z.ZodObject<{
2449
+ start: z.ZodString;
2450
+ end: z.ZodString;
2451
+ }, z.core.$strip>>>;
2452
+ comment: z.ZodOptional<z.ZodArray<z.ZodObject<{
2453
+ locale: z.ZodEnum<{
2454
+ de: "de";
2455
+ en: "en";
2456
+ es: "es";
2457
+ ka: "ka";
2458
+ ru: "ru";
2459
+ zh_cn: "zh_cn";
2460
+ }>;
2461
+ value: z.ZodString;
2462
+ }, z.core.$strip>>>;
2463
+ }, z.core.$strip>>>;
2464
+ warehouses: z.ZodOptional<z.ZodArray<z.ZodObject<{
2465
+ id: z.ZodString;
2466
+ title: z.ZodArray<z.ZodObject<{
2467
+ locale: z.ZodEnum<{
2468
+ de: "de";
2469
+ en: "en";
2470
+ es: "es";
2471
+ ka: "ka";
2472
+ ru: "ru";
2473
+ zh_cn: "zh_cn";
2474
+ }>;
2475
+ value: z.ZodString;
2476
+ }, z.core.$strip>>;
2477
+ address: z.ZodObject<{
2478
+ street: z.ZodArray<z.ZodObject<{
2479
+ locale: z.ZodEnum<{
2480
+ de: "de";
2481
+ en: "en";
2482
+ es: "es";
2483
+ ka: "ka";
2484
+ ru: "ru";
2485
+ zh_cn: "zh_cn";
2486
+ }>;
2487
+ value: z.ZodString;
2488
+ }, z.core.$strip>>;
2489
+ }, z.core.$strip>;
2490
+ }, z.core.$strip>>>;
2491
+ }, z.core.$strip>;
2492
+ copyright: z.ZodOptional<z.ZodArray<z.ZodObject<{
2493
+ locale: z.ZodEnum<{
2494
+ de: "de";
2495
+ en: "en";
2496
+ es: "es";
2497
+ ka: "ka";
2498
+ ru: "ru";
2499
+ zh_cn: "zh_cn";
2500
+ }>;
2501
+ value: z.ZodString;
2502
+ }, z.core.$strip>>>;
2503
+ links: z.ZodOptional<z.ZodObject<{
2504
+ aside: z.ZodArray<z.ZodObject<{
2505
+ to: z.ZodString;
2506
+ label: z.ZodOptional<z.ZodArray<z.ZodObject<{
2507
+ locale: z.ZodEnum<{
2508
+ de: "de";
2509
+ en: "en";
2510
+ es: "es";
2511
+ ka: "ka";
2512
+ ru: "ru";
2513
+ zh_cn: "zh_cn";
2514
+ }>;
2515
+ value: z.ZodString;
2516
+ }, z.core.$strip>>>;
2517
+ icon: z.ZodOptional<z.ZodString>;
2518
+ target: z.ZodOptional<z.ZodString>;
2519
+ }, z.core.$strip>>;
2520
+ footer: z.ZodArray<z.ZodObject<{
2521
+ to: z.ZodString;
2522
+ label: z.ZodOptional<z.ZodArray<z.ZodObject<{
2523
+ locale: z.ZodEnum<{
2524
+ de: "de";
2525
+ en: "en";
2526
+ es: "es";
2527
+ ka: "ka";
2528
+ ru: "ru";
2529
+ zh_cn: "zh_cn";
2530
+ }>;
2531
+ value: z.ZodString;
2532
+ }, z.core.$strip>>>;
2533
+ icon: z.ZodOptional<z.ZodString>;
2534
+ target: z.ZodOptional<z.ZodString>;
2535
+ }, z.core.$strip>>;
2536
+ social: z.ZodArray<z.ZodObject<{
2537
+ to: z.ZodString;
2538
+ label: z.ZodOptional<z.ZodArray<z.ZodObject<{
2539
+ locale: z.ZodEnum<{
2540
+ de: "de";
2541
+ en: "en";
2542
+ es: "es";
2543
+ ka: "ka";
2544
+ ru: "ru";
2545
+ zh_cn: "zh_cn";
2546
+ }>;
2547
+ value: z.ZodString;
2548
+ }, z.core.$strip>>>;
2549
+ icon: z.ZodOptional<z.ZodString>;
2550
+ target: z.ZodOptional<z.ZodString>;
2551
+ }, z.core.$strip>>;
2552
+ }, z.core.$strip>>;
2553
+ }, z.core.$strip>>;
2554
+ }, z.core.$strip>, z.ZodObject<{
2555
+ ok: z.ZodBoolean;
2556
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2557
+ type: z.ZodLiteral<"getOrder">;
2558
+ result: z.ZodNullable<z.ZodObject<{
2559
+ id: z.ZodString;
2560
+ status: z.ZodEnum<{
2561
+ draft: "draft";
2562
+ created: "created";
2563
+ ready: "ready";
2564
+ delivered: "delivered";
2565
+ }>;
2566
+ createdAt: z.ZodString;
2567
+ readyBy: z.ZodString;
2568
+ readyType: z.ZodEnum<{
2569
+ asap: "asap";
2570
+ scheduled: "scheduled";
2571
+ }>;
2572
+ deliveryMethod: z.ZodEnum<{
2573
+ deliveryByCourier: "deliveryByCourier";
2574
+ selfPickup: "selfPickup";
2575
+ }>;
2576
+ address: z.ZodUnion<readonly [z.ZodObject<{
2577
+ type: z.ZodLiteral<"deliveryAddress">;
2578
+ street: z.ZodString;
2579
+ flat: z.ZodOptional<z.ZodString>;
2580
+ intercom: z.ZodOptional<z.ZodString>;
2581
+ entrance: z.ZodOptional<z.ZodString>;
2582
+ floor: z.ZodOptional<z.ZodString>;
2583
+ addressNote: z.ZodOptional<z.ZodString>;
2584
+ }, z.core.$strip>, z.ZodObject<{
2585
+ type: z.ZodLiteral<"warehouseAddress">;
2586
+ id: z.ZodString;
2587
+ }, z.core.$strip>]>;
2588
+ paymentMethodId: z.ZodString;
2589
+ changeFrom: z.ZodOptional<z.ZodNumber>;
2590
+ totalPrice: z.ZodNumber;
2591
+ name: z.ZodString;
2592
+ phone: z.ZodString;
2593
+ note: z.ZodOptional<z.ZodString>;
2594
+ items: z.ZodArray<z.ZodObject<{
2595
+ id: z.ZodString;
2596
+ orderId: z.ZodString;
2597
+ productId: z.ZodString;
2598
+ productSlug: z.ZodString;
2599
+ categoryId: z.ZodString;
2600
+ categorySlug: z.ZodString;
2601
+ variantId: z.ZodString;
2602
+ quantity: z.ZodNumber;
2603
+ unitPrice: z.ZodNumber;
2604
+ totalPrice: z.ZodNumber;
2605
+ }, z.core.$strip>>;
2606
+ }, z.core.$strip>>;
2607
+ }, z.core.$strip>, z.ZodObject<{
2608
+ ok: z.ZodBoolean;
2609
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2610
+ type: z.ZodLiteral<"createOrder">;
2611
+ result: z.ZodObject<{
2612
+ id: z.ZodString;
2613
+ status: z.ZodEnum<{
2614
+ draft: "draft";
2615
+ created: "created";
2616
+ ready: "ready";
2617
+ delivered: "delivered";
2618
+ }>;
2619
+ createdAt: z.ZodString;
2620
+ readyBy: z.ZodString;
2621
+ readyType: z.ZodEnum<{
2622
+ asap: "asap";
2623
+ scheduled: "scheduled";
2624
+ }>;
2625
+ deliveryMethod: z.ZodEnum<{
2626
+ deliveryByCourier: "deliveryByCourier";
2627
+ selfPickup: "selfPickup";
2628
+ }>;
2629
+ address: z.ZodUnion<readonly [z.ZodObject<{
2630
+ type: z.ZodLiteral<"deliveryAddress">;
2631
+ street: z.ZodString;
2632
+ flat: z.ZodOptional<z.ZodString>;
2633
+ intercom: z.ZodOptional<z.ZodString>;
2634
+ entrance: z.ZodOptional<z.ZodString>;
2635
+ floor: z.ZodOptional<z.ZodString>;
2636
+ addressNote: z.ZodOptional<z.ZodString>;
2637
+ }, z.core.$strip>, z.ZodObject<{
2638
+ type: z.ZodLiteral<"warehouseAddress">;
2639
+ id: z.ZodString;
2640
+ }, z.core.$strip>]>;
2641
+ paymentMethodId: z.ZodString;
2642
+ changeFrom: z.ZodOptional<z.ZodNumber>;
2643
+ totalPrice: z.ZodNumber;
2644
+ name: z.ZodString;
2645
+ phone: z.ZodString;
2646
+ note: z.ZodOptional<z.ZodString>;
2647
+ items: z.ZodArray<z.ZodObject<{
2648
+ id: z.ZodString;
2649
+ orderId: z.ZodString;
2650
+ productId: z.ZodString;
2651
+ productSlug: z.ZodString;
2652
+ categoryId: z.ZodString;
2653
+ categorySlug: z.ZodString;
2654
+ variantId: z.ZodString;
2655
+ quantity: z.ZodNumber;
2656
+ unitPrice: z.ZodNumber;
2657
+ totalPrice: z.ZodNumber;
2658
+ }, z.core.$strip>>;
2659
+ }, z.core.$strip>;
2660
+ }, z.core.$strip>, z.ZodObject<{
2661
+ ok: z.ZodBoolean;
2662
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2663
+ type: z.ZodLiteral<"updateOrder">;
2664
+ result: z.ZodObject<{
2665
+ id: z.ZodString;
2666
+ status: z.ZodEnum<{
2667
+ draft: "draft";
2668
+ created: "created";
2669
+ ready: "ready";
2670
+ delivered: "delivered";
2671
+ }>;
2672
+ createdAt: z.ZodString;
2673
+ readyBy: z.ZodString;
2674
+ readyType: z.ZodEnum<{
2675
+ asap: "asap";
2676
+ scheduled: "scheduled";
2677
+ }>;
2678
+ deliveryMethod: z.ZodEnum<{
2679
+ deliveryByCourier: "deliveryByCourier";
2680
+ selfPickup: "selfPickup";
2681
+ }>;
2682
+ address: z.ZodUnion<readonly [z.ZodObject<{
2683
+ type: z.ZodLiteral<"deliveryAddress">;
2684
+ street: z.ZodString;
2685
+ flat: z.ZodOptional<z.ZodString>;
2686
+ intercom: z.ZodOptional<z.ZodString>;
2687
+ entrance: z.ZodOptional<z.ZodString>;
2688
+ floor: z.ZodOptional<z.ZodString>;
2689
+ addressNote: z.ZodOptional<z.ZodString>;
2690
+ }, z.core.$strip>, z.ZodObject<{
2691
+ type: z.ZodLiteral<"warehouseAddress">;
2692
+ id: z.ZodString;
2693
+ }, z.core.$strip>]>;
2694
+ paymentMethodId: z.ZodString;
2695
+ changeFrom: z.ZodOptional<z.ZodNumber>;
2696
+ totalPrice: z.ZodNumber;
2697
+ name: z.ZodString;
2698
+ phone: z.ZodString;
2699
+ note: z.ZodOptional<z.ZodString>;
2700
+ items: z.ZodArray<z.ZodObject<{
2701
+ id: z.ZodString;
2702
+ orderId: z.ZodString;
2703
+ productId: z.ZodString;
2704
+ productSlug: z.ZodString;
2705
+ categoryId: z.ZodString;
2706
+ categorySlug: z.ZodString;
2707
+ variantId: z.ZodString;
2708
+ quantity: z.ZodNumber;
2709
+ unitPrice: z.ZodNumber;
2710
+ totalPrice: z.ZodNumber;
2711
+ }, z.core.$strip>>;
2712
+ }, z.core.$strip>;
2713
+ }, z.core.$strip>, z.ZodObject<{
2714
+ ok: z.ZodBoolean;
2715
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2716
+ type: z.ZodLiteral<"addOrderItem">;
2717
+ result: z.ZodObject<{
2718
+ id: z.ZodString;
2719
+ status: z.ZodEnum<{
2720
+ draft: "draft";
2721
+ created: "created";
2722
+ ready: "ready";
2723
+ delivered: "delivered";
2724
+ }>;
2725
+ createdAt: z.ZodString;
2726
+ readyBy: z.ZodString;
2727
+ readyType: z.ZodEnum<{
2728
+ asap: "asap";
2729
+ scheduled: "scheduled";
2730
+ }>;
2731
+ deliveryMethod: z.ZodEnum<{
2732
+ deliveryByCourier: "deliveryByCourier";
2733
+ selfPickup: "selfPickup";
2734
+ }>;
2735
+ address: z.ZodUnion<readonly [z.ZodObject<{
2736
+ type: z.ZodLiteral<"deliveryAddress">;
2737
+ street: z.ZodString;
2738
+ flat: z.ZodOptional<z.ZodString>;
2739
+ intercom: z.ZodOptional<z.ZodString>;
2740
+ entrance: z.ZodOptional<z.ZodString>;
2741
+ floor: z.ZodOptional<z.ZodString>;
2742
+ addressNote: z.ZodOptional<z.ZodString>;
2743
+ }, z.core.$strip>, z.ZodObject<{
2744
+ type: z.ZodLiteral<"warehouseAddress">;
2745
+ id: z.ZodString;
2746
+ }, z.core.$strip>]>;
2747
+ paymentMethodId: z.ZodString;
2748
+ changeFrom: z.ZodOptional<z.ZodNumber>;
2749
+ totalPrice: z.ZodNumber;
2750
+ name: z.ZodString;
2751
+ phone: z.ZodString;
2752
+ note: z.ZodOptional<z.ZodString>;
2753
+ items: z.ZodArray<z.ZodObject<{
2754
+ id: z.ZodString;
2755
+ orderId: z.ZodString;
2756
+ productId: z.ZodString;
2757
+ productSlug: z.ZodString;
2758
+ categoryId: z.ZodString;
2759
+ categorySlug: z.ZodString;
2760
+ variantId: z.ZodString;
2761
+ quantity: z.ZodNumber;
2762
+ unitPrice: z.ZodNumber;
2763
+ totalPrice: z.ZodNumber;
2764
+ }, z.core.$strip>>;
2765
+ }, z.core.$strip>;
2766
+ }, z.core.$strip>, z.ZodObject<{
2767
+ ok: z.ZodBoolean;
2768
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2769
+ type: z.ZodLiteral<"incrementOrderItemQuantity">;
2770
+ result: z.ZodObject<{
2771
+ id: z.ZodString;
2772
+ status: z.ZodEnum<{
2773
+ draft: "draft";
2774
+ created: "created";
2775
+ ready: "ready";
2776
+ delivered: "delivered";
2777
+ }>;
2778
+ createdAt: z.ZodString;
2779
+ readyBy: z.ZodString;
2780
+ readyType: z.ZodEnum<{
2781
+ asap: "asap";
2782
+ scheduled: "scheduled";
2783
+ }>;
2784
+ deliveryMethod: z.ZodEnum<{
2785
+ deliveryByCourier: "deliveryByCourier";
2786
+ selfPickup: "selfPickup";
2787
+ }>;
2788
+ address: z.ZodUnion<readonly [z.ZodObject<{
2789
+ type: z.ZodLiteral<"deliveryAddress">;
2790
+ street: z.ZodString;
2791
+ flat: z.ZodOptional<z.ZodString>;
2792
+ intercom: z.ZodOptional<z.ZodString>;
2793
+ entrance: z.ZodOptional<z.ZodString>;
2794
+ floor: z.ZodOptional<z.ZodString>;
2795
+ addressNote: z.ZodOptional<z.ZodString>;
2796
+ }, z.core.$strip>, z.ZodObject<{
2797
+ type: z.ZodLiteral<"warehouseAddress">;
2798
+ id: z.ZodString;
2799
+ }, z.core.$strip>]>;
2800
+ paymentMethodId: z.ZodString;
2801
+ changeFrom: z.ZodOptional<z.ZodNumber>;
2802
+ totalPrice: z.ZodNumber;
2803
+ name: z.ZodString;
2804
+ phone: z.ZodString;
2805
+ note: z.ZodOptional<z.ZodString>;
2806
+ items: z.ZodArray<z.ZodObject<{
2807
+ id: z.ZodString;
2808
+ orderId: z.ZodString;
2809
+ productId: z.ZodString;
2810
+ productSlug: z.ZodString;
2811
+ categoryId: z.ZodString;
2812
+ categorySlug: z.ZodString;
2813
+ variantId: z.ZodString;
2814
+ quantity: z.ZodNumber;
2815
+ unitPrice: z.ZodNumber;
2816
+ totalPrice: z.ZodNumber;
2817
+ }, z.core.$strip>>;
2818
+ }, z.core.$strip>;
2819
+ }, z.core.$strip>, z.ZodObject<{
2820
+ ok: z.ZodBoolean;
2821
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2822
+ type: z.ZodLiteral<"decrementOrderItemQuantity">;
2823
+ result: z.ZodObject<{
2824
+ id: z.ZodString;
2825
+ status: z.ZodEnum<{
2826
+ draft: "draft";
2827
+ created: "created";
2828
+ ready: "ready";
2829
+ delivered: "delivered";
2830
+ }>;
2831
+ createdAt: z.ZodString;
2832
+ readyBy: z.ZodString;
2833
+ readyType: z.ZodEnum<{
2834
+ asap: "asap";
2835
+ scheduled: "scheduled";
2836
+ }>;
2837
+ deliveryMethod: z.ZodEnum<{
2838
+ deliveryByCourier: "deliveryByCourier";
2839
+ selfPickup: "selfPickup";
2840
+ }>;
2841
+ address: z.ZodUnion<readonly [z.ZodObject<{
2842
+ type: z.ZodLiteral<"deliveryAddress">;
2843
+ street: z.ZodString;
2844
+ flat: z.ZodOptional<z.ZodString>;
2845
+ intercom: z.ZodOptional<z.ZodString>;
2846
+ entrance: z.ZodOptional<z.ZodString>;
2847
+ floor: z.ZodOptional<z.ZodString>;
2848
+ addressNote: z.ZodOptional<z.ZodString>;
2849
+ }, z.core.$strip>, z.ZodObject<{
2850
+ type: z.ZodLiteral<"warehouseAddress">;
2851
+ id: z.ZodString;
2852
+ }, z.core.$strip>]>;
2853
+ paymentMethodId: z.ZodString;
2854
+ changeFrom: z.ZodOptional<z.ZodNumber>;
2855
+ totalPrice: z.ZodNumber;
2856
+ name: z.ZodString;
2857
+ phone: z.ZodString;
2858
+ note: z.ZodOptional<z.ZodString>;
2859
+ items: z.ZodArray<z.ZodObject<{
2860
+ id: z.ZodString;
2861
+ orderId: z.ZodString;
2862
+ productId: z.ZodString;
2863
+ productSlug: z.ZodString;
2864
+ categoryId: z.ZodString;
2865
+ categorySlug: z.ZodString;
2866
+ variantId: z.ZodString;
2867
+ quantity: z.ZodNumber;
2868
+ unitPrice: z.ZodNumber;
2869
+ totalPrice: z.ZodNumber;
2870
+ }, z.core.$strip>>;
2871
+ }, z.core.$strip>;
2872
+ }, z.core.$strip>, z.ZodObject<{
2873
+ ok: z.ZodBoolean;
2874
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2875
+ type: z.ZodLiteral<"getMenu">;
2876
+ result: z.ZodObject<{
2877
+ id: z.ZodString;
2878
+ slug: z.ZodString;
2879
+ title: z.ZodArray<z.ZodObject<{
2880
+ locale: z.ZodEnum<{
2881
+ de: "de";
2882
+ en: "en";
2883
+ es: "es";
2884
+ ka: "ka";
2885
+ ru: "ru";
2886
+ zh_cn: "zh_cn";
2887
+ }>;
2888
+ value: z.ZodString;
2889
+ }, z.core.$strip>>;
2890
+ isActive: z.ZodBoolean;
2891
+ categories: z.ZodArray<z.ZodObject<{
2892
+ id: z.ZodString;
2893
+ slug: z.ZodString;
2894
+ title: z.ZodArray<z.ZodObject<{
2895
+ locale: z.ZodEnum<{
2896
+ de: "de";
2897
+ en: "en";
2898
+ es: "es";
2899
+ ka: "ka";
2900
+ ru: "ru";
2901
+ zh_cn: "zh_cn";
2902
+ }>;
2903
+ value: z.ZodString;
2904
+ }, z.core.$strip>>;
2905
+ icon: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2906
+ products: z.ZodArray<z.ZodObject<{
2907
+ id: z.ZodString;
2908
+ slug: z.ZodString;
2909
+ title: z.ZodArray<z.ZodObject<{
2910
+ locale: z.ZodEnum<{
2911
+ de: "de";
2912
+ en: "en";
2913
+ es: "es";
2914
+ ka: "ka";
2915
+ ru: "ru";
2916
+ zh_cn: "zh_cn";
2917
+ }>;
2918
+ value: z.ZodString;
2919
+ }, z.core.$strip>>;
2920
+ description: z.ZodOptional<z.ZodArray<z.ZodObject<{
2921
+ locale: z.ZodEnum<{
2922
+ de: "de";
2923
+ en: "en";
2924
+ es: "es";
2925
+ ka: "ka";
2926
+ ru: "ru";
2927
+ zh_cn: "zh_cn";
2928
+ }>;
2929
+ value: z.ZodString;
2930
+ }, z.core.$strip>>>;
2931
+ isAvailableForPurchase: z.ZodBoolean;
2932
+ variants: z.ZodArray<z.ZodObject<{
2933
+ id: z.ZodString;
2934
+ title: z.ZodArray<z.ZodObject<{
2935
+ locale: z.ZodEnum<{
2936
+ de: "de";
2937
+ en: "en";
2938
+ es: "es";
2939
+ ka: "ka";
2940
+ ru: "ru";
2941
+ zh_cn: "zh_cn";
2942
+ }>;
2943
+ value: z.ZodString;
2944
+ }, z.core.$strip>>;
2945
+ images: z.ZodArray<z.ZodObject<{
2946
+ id: z.ZodString;
2947
+ url: z.ZodString;
2948
+ size: z.ZodEnum<{
2949
+ xs: "xs";
2950
+ sm: "sm";
2951
+ md: "md";
2952
+ lg: "lg";
2953
+ xl: "xl";
2954
+ }>;
2955
+ format: z.ZodEnum<{
2956
+ jpeg: "jpeg";
2957
+ webp: "webp";
2958
+ }>;
2959
+ }, z.core.$strip>>;
2960
+ weightUnit: z.ZodEnum<{
2961
+ g: "g";
2962
+ kg: "kg";
2963
+ ml: "ml";
2964
+ l: "l";
2965
+ oz: "oz";
2966
+ lb: "lb";
2967
+ }>;
2968
+ weightValue: z.ZodNumber;
2969
+ gross: z.ZodNumber;
2970
+ net: z.ZodNullable<z.ZodNumber>;
2971
+ sku: z.ZodNullable<z.ZodString>;
2972
+ nutritionFacts: z.ZodNullable<z.ZodObject<{
2973
+ calories: z.ZodNumber;
2974
+ carbohydrate: z.ZodNumber;
2975
+ protein: z.ZodNumber;
2976
+ fat: z.ZodNumber;
2977
+ }, z.core.$strip>>;
2978
+ }, z.core.$strip>>;
2979
+ }, z.core.$strip>>;
2980
+ }, z.core.$strip>>;
2981
+ }, z.core.$strip>;
2982
+ }, z.core.$strip>, z.ZodObject<{
2983
+ ok: z.ZodBoolean;
2984
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2985
+ type: z.ZodLiteral<"getDeliveryByCourierStatus">;
2986
+ result: z.ZodObject<{
2987
+ isClosed: z.ZodBoolean;
2988
+ timeZone: z.ZodEnum<{
2989
+ "-12:00": "-12:00";
2990
+ "-11:00": "-11:00";
2991
+ "-10:00": "-10:00";
2992
+ "-09:00": "-09:00";
2993
+ "-08:00": "-08:00";
2994
+ "-07:00": "-07:00";
2995
+ "-06:00": "-06:00";
2996
+ "-05:00": "-05:00";
2997
+ "-04:00": "-04:00";
2998
+ "-03:00": "-03:00";
2999
+ "-02:00": "-02:00";
3000
+ "-01:00": "-01:00";
3001
+ "+00:00": "+00:00";
3002
+ "+01:00": "+01:00";
3003
+ "+02:00": "+02:00";
3004
+ "+03:00": "+03:00";
3005
+ "+04:00": "+04:00";
3006
+ "+05:00": "+05:00";
3007
+ "+06:00": "+06:00";
3008
+ "+07:00": "+07:00";
3009
+ "+08:00": "+08:00";
3010
+ "+09:00": "+09:00";
3011
+ "+10:00": "+10:00";
3012
+ "+11:00": "+11:00";
3013
+ "+12:00": "+12:00";
3014
+ "+13:00": "+13:00";
3015
+ "+14:00": "+14:00";
3016
+ }>;
3017
+ currentTime: z.ZodString;
3018
+ currentDay: z.ZodEnum<{
3019
+ sun: "sun";
3020
+ mon: "mon";
3021
+ tue: "tue";
3022
+ wed: "wed";
3023
+ thu: "thu";
3024
+ fri: "fri";
3025
+ sat: "sat";
3026
+ }>;
3027
+ todayHours: z.ZodNullable<z.ZodArray<z.ZodObject<{
3028
+ start: z.ZodString;
3029
+ end: z.ZodString;
3030
+ }, z.core.$strip>>>;
3031
+ todayEndAt: z.ZodNullable<z.ZodString>;
3032
+ todayEndInMinutes: z.ZodNullable<z.ZodNumber>;
3033
+ nextOpening: z.ZodNullable<z.ZodObject<{
3034
+ day: z.ZodEnum<{
3035
+ sun: "sun";
3036
+ mon: "mon";
3037
+ tue: "tue";
3038
+ wed: "wed";
3039
+ thu: "thu";
3040
+ fri: "fri";
3041
+ sat: "sat";
3042
+ }>;
3043
+ time: z.ZodString;
3044
+ relativeDays: z.ZodNumber;
3045
+ }, z.core.$strip>>;
3046
+ }, z.core.$strip>;
3047
+ }, z.core.$strip>, z.ZodObject<{
3048
+ ok: z.ZodBoolean;
3049
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3050
+ type: z.ZodLiteral<"getSelfPickupStatus">;
3051
+ result: z.ZodObject<{
3052
+ isClosed: z.ZodBoolean;
3053
+ timeZone: z.ZodEnum<{
3054
+ "-12:00": "-12:00";
3055
+ "-11:00": "-11:00";
3056
+ "-10:00": "-10:00";
3057
+ "-09:00": "-09:00";
3058
+ "-08:00": "-08:00";
3059
+ "-07:00": "-07:00";
3060
+ "-06:00": "-06:00";
3061
+ "-05:00": "-05:00";
3062
+ "-04:00": "-04:00";
3063
+ "-03:00": "-03:00";
3064
+ "-02:00": "-02:00";
3065
+ "-01:00": "-01:00";
3066
+ "+00:00": "+00:00";
3067
+ "+01:00": "+01:00";
3068
+ "+02:00": "+02:00";
3069
+ "+03:00": "+03:00";
3070
+ "+04:00": "+04:00";
3071
+ "+05:00": "+05:00";
3072
+ "+06:00": "+06:00";
3073
+ "+07:00": "+07:00";
3074
+ "+08:00": "+08:00";
3075
+ "+09:00": "+09:00";
3076
+ "+10:00": "+10:00";
3077
+ "+11:00": "+11:00";
3078
+ "+12:00": "+12:00";
3079
+ "+13:00": "+13:00";
3080
+ "+14:00": "+14:00";
3081
+ }>;
3082
+ currentTime: z.ZodString;
3083
+ currentDay: z.ZodEnum<{
3084
+ sun: "sun";
3085
+ mon: "mon";
3086
+ tue: "tue";
3087
+ wed: "wed";
3088
+ thu: "thu";
3089
+ fri: "fri";
3090
+ sat: "sat";
3091
+ }>;
3092
+ todayHours: z.ZodNullable<z.ZodArray<z.ZodObject<{
3093
+ start: z.ZodString;
3094
+ end: z.ZodString;
3095
+ }, z.core.$strip>>>;
3096
+ todayEndAt: z.ZodNullable<z.ZodString>;
3097
+ todayEndInMinutes: z.ZodNullable<z.ZodNumber>;
3098
+ nextOpening: z.ZodNullable<z.ZodObject<{
3099
+ day: z.ZodEnum<{
3100
+ sun: "sun";
3101
+ mon: "mon";
3102
+ tue: "tue";
3103
+ wed: "wed";
3104
+ thu: "thu";
3105
+ fri: "fri";
3106
+ sat: "sat";
3107
+ }>;
3108
+ time: z.ZodString;
3109
+ relativeDays: z.ZodNumber;
3110
+ }, z.core.$strip>>;
3111
+ }, z.core.$strip>;
3112
+ }, z.core.$strip>, z.ZodObject<{
3113
+ ok: z.ZodBoolean;
3114
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3115
+ type: z.ZodLiteral<"getTimeSlots">;
3116
+ result: z.ZodArray<z.ZodObject<{
3117
+ start: z.ZodString;
3118
+ end: z.ZodString;
3119
+ }, z.core.$strip>>;
3120
+ }, z.core.$strip>], "type">;
3121
+ type GatewayResponse = z.infer<typeof GatewayResponseSchema>;
3122
+
3123
+ declare const ImageFormatSchema: z.ZodEnum<{
3124
+ jpeg: "jpeg";
3125
+ webp: "webp";
3126
+ }>;
3127
+ type ImageFormat = z.infer<typeof ImageFormatSchema>;
3128
+ /**
3129
+ * Image sizes. Max width or height:
3130
+ * - xs - 320px
3131
+ * - sm - 640px
3132
+ * - md - 960px
3133
+ * - lg - 1280px
3134
+ * - xl - 1920px
3135
+ */
3136
+ declare const ImageSizeSchema: z.ZodEnum<{
3137
+ xs: "xs";
3138
+ sm: "sm";
3139
+ md: "md";
3140
+ lg: "lg";
3141
+ xl: "xl";
3142
+ }>;
3143
+ type ImageSize = z.infer<typeof ImageSizeSchema>;
3144
+ declare const ImageSchema: z.ZodObject<{
3145
+ id: z.ZodString;
3146
+ url: z.ZodString;
3147
+ size: z.ZodEnum<{
3148
+ xs: "xs";
3149
+ sm: "sm";
3150
+ md: "md";
3151
+ lg: "lg";
3152
+ xl: "xl";
3153
+ }>;
3154
+ format: z.ZodEnum<{
3155
+ jpeg: "jpeg";
3156
+ webp: "webp";
3157
+ }>;
3158
+ }, z.core.$strip>;
3159
+ type Image = z.infer<typeof ImageSchema>;
3160
+
3161
+ declare const MenuCategorySchema: z.ZodObject<{
3162
+ id: z.ZodString;
3163
+ slug: z.ZodString;
3164
+ title: z.ZodArray<z.ZodObject<{
3165
+ locale: z.ZodEnum<{
3166
+ de: "de";
3167
+ en: "en";
3168
+ es: "es";
3169
+ ka: "ka";
3170
+ ru: "ru";
3171
+ zh_cn: "zh_cn";
3172
+ }>;
3173
+ value: z.ZodString;
3174
+ }, z.core.$strip>>;
3175
+ icon: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3176
+ products: z.ZodArray<z.ZodObject<{
3177
+ id: z.ZodString;
3178
+ slug: z.ZodString;
3179
+ title: z.ZodArray<z.ZodObject<{
3180
+ locale: z.ZodEnum<{
3181
+ de: "de";
3182
+ en: "en";
3183
+ es: "es";
3184
+ ka: "ka";
3185
+ ru: "ru";
3186
+ zh_cn: "zh_cn";
3187
+ }>;
3188
+ value: z.ZodString;
3189
+ }, z.core.$strip>>;
3190
+ description: z.ZodOptional<z.ZodArray<z.ZodObject<{
3191
+ locale: z.ZodEnum<{
3192
+ de: "de";
3193
+ en: "en";
3194
+ es: "es";
3195
+ ka: "ka";
3196
+ ru: "ru";
3197
+ zh_cn: "zh_cn";
3198
+ }>;
3199
+ value: z.ZodString;
3200
+ }, z.core.$strip>>>;
3201
+ isAvailableForPurchase: z.ZodBoolean;
3202
+ variants: z.ZodArray<z.ZodObject<{
3203
+ id: z.ZodString;
3204
+ title: z.ZodArray<z.ZodObject<{
3205
+ locale: z.ZodEnum<{
3206
+ de: "de";
3207
+ en: "en";
3208
+ es: "es";
3209
+ ka: "ka";
3210
+ ru: "ru";
3211
+ zh_cn: "zh_cn";
3212
+ }>;
3213
+ value: z.ZodString;
3214
+ }, z.core.$strip>>;
3215
+ images: z.ZodArray<z.ZodObject<{
3216
+ id: z.ZodString;
3217
+ url: z.ZodString;
3218
+ size: z.ZodEnum<{
3219
+ xs: "xs";
3220
+ sm: "sm";
3221
+ md: "md";
3222
+ lg: "lg";
3223
+ xl: "xl";
3224
+ }>;
3225
+ format: z.ZodEnum<{
3226
+ jpeg: "jpeg";
3227
+ webp: "webp";
3228
+ }>;
3229
+ }, z.core.$strip>>;
3230
+ weightUnit: z.ZodEnum<{
3231
+ g: "g";
3232
+ kg: "kg";
3233
+ ml: "ml";
3234
+ l: "l";
3235
+ oz: "oz";
3236
+ lb: "lb";
3237
+ }>;
3238
+ weightValue: z.ZodNumber;
3239
+ gross: z.ZodNumber;
3240
+ net: z.ZodNullable<z.ZodNumber>;
3241
+ sku: z.ZodNullable<z.ZodString>;
3242
+ nutritionFacts: z.ZodNullable<z.ZodObject<{
3243
+ calories: z.ZodNumber;
3244
+ carbohydrate: z.ZodNumber;
3245
+ protein: z.ZodNumber;
3246
+ fat: z.ZodNumber;
3247
+ }, z.core.$strip>>;
3248
+ }, z.core.$strip>>;
3249
+ }, z.core.$strip>>;
3250
+ }, z.core.$strip>;
3251
+ type MenuCategory = z.infer<typeof MenuCategorySchema>;
3252
+ declare const MenuSchema: z.ZodObject<{
3253
+ id: z.ZodString;
3254
+ slug: z.ZodString;
3255
+ title: z.ZodArray<z.ZodObject<{
3256
+ locale: z.ZodEnum<{
3257
+ de: "de";
3258
+ en: "en";
3259
+ es: "es";
3260
+ ka: "ka";
3261
+ ru: "ru";
3262
+ zh_cn: "zh_cn";
3263
+ }>;
3264
+ value: z.ZodString;
3265
+ }, z.core.$strip>>;
3266
+ isActive: z.ZodBoolean;
3267
+ categories: z.ZodArray<z.ZodObject<{
3268
+ id: z.ZodString;
3269
+ slug: z.ZodString;
3270
+ title: z.ZodArray<z.ZodObject<{
3271
+ locale: z.ZodEnum<{
3272
+ de: "de";
3273
+ en: "en";
3274
+ es: "es";
3275
+ ka: "ka";
3276
+ ru: "ru";
3277
+ zh_cn: "zh_cn";
3278
+ }>;
3279
+ value: z.ZodString;
3280
+ }, z.core.$strip>>;
3281
+ icon: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3282
+ products: z.ZodArray<z.ZodObject<{
3283
+ id: z.ZodString;
3284
+ slug: z.ZodString;
3285
+ title: z.ZodArray<z.ZodObject<{
3286
+ locale: z.ZodEnum<{
3287
+ de: "de";
3288
+ en: "en";
3289
+ es: "es";
3290
+ ka: "ka";
3291
+ ru: "ru";
3292
+ zh_cn: "zh_cn";
3293
+ }>;
3294
+ value: z.ZodString;
3295
+ }, z.core.$strip>>;
3296
+ description: z.ZodOptional<z.ZodArray<z.ZodObject<{
3297
+ locale: z.ZodEnum<{
3298
+ de: "de";
3299
+ en: "en";
3300
+ es: "es";
3301
+ ka: "ka";
3302
+ ru: "ru";
3303
+ zh_cn: "zh_cn";
3304
+ }>;
3305
+ value: z.ZodString;
3306
+ }, z.core.$strip>>>;
3307
+ isAvailableForPurchase: z.ZodBoolean;
3308
+ variants: z.ZodArray<z.ZodObject<{
3309
+ id: z.ZodString;
3310
+ title: z.ZodArray<z.ZodObject<{
3311
+ locale: z.ZodEnum<{
3312
+ de: "de";
3313
+ en: "en";
3314
+ es: "es";
3315
+ ka: "ka";
3316
+ ru: "ru";
3317
+ zh_cn: "zh_cn";
3318
+ }>;
3319
+ value: z.ZodString;
3320
+ }, z.core.$strip>>;
3321
+ images: z.ZodArray<z.ZodObject<{
3322
+ id: z.ZodString;
3323
+ url: z.ZodString;
3324
+ size: z.ZodEnum<{
3325
+ xs: "xs";
3326
+ sm: "sm";
3327
+ md: "md";
3328
+ lg: "lg";
3329
+ xl: "xl";
3330
+ }>;
3331
+ format: z.ZodEnum<{
3332
+ jpeg: "jpeg";
3333
+ webp: "webp";
3334
+ }>;
3335
+ }, z.core.$strip>>;
3336
+ weightUnit: z.ZodEnum<{
3337
+ g: "g";
3338
+ kg: "kg";
3339
+ ml: "ml";
3340
+ l: "l";
3341
+ oz: "oz";
3342
+ lb: "lb";
3343
+ }>;
3344
+ weightValue: z.ZodNumber;
3345
+ gross: z.ZodNumber;
3346
+ net: z.ZodNullable<z.ZodNumber>;
3347
+ sku: z.ZodNullable<z.ZodString>;
3348
+ nutritionFacts: z.ZodNullable<z.ZodObject<{
3349
+ calories: z.ZodNumber;
3350
+ carbohydrate: z.ZodNumber;
3351
+ protein: z.ZodNumber;
3352
+ fat: z.ZodNumber;
3353
+ }, z.core.$strip>>;
3354
+ }, z.core.$strip>>;
3355
+ }, z.core.$strip>>;
3356
+ }, z.core.$strip>>;
3357
+ }, z.core.$strip>;
3358
+ type Menu = z.infer<typeof MenuSchema>;
3359
+
3360
+ declare const OptionsSchema: z.ZodObject<{
3361
+ selectorTitle: z.ZodArray<z.ZodObject<{
3362
+ locale: z.ZodEnum<{
3363
+ de: "de";
3364
+ en: "en";
3365
+ es: "es";
3366
+ ka: "ka";
3367
+ ru: "ru";
3368
+ zh_cn: "zh_cn";
3369
+ }>;
3370
+ value: z.ZodString;
3371
+ }, z.core.$strip>>;
3372
+ selectorDescription: z.ZodOptional<z.ZodArray<z.ZodObject<{
3373
+ locale: z.ZodEnum<{
3374
+ de: "de";
3375
+ en: "en";
3376
+ es: "es";
3377
+ ka: "ka";
3378
+ ru: "ru";
3379
+ zh_cn: "zh_cn";
3380
+ }>;
3381
+ value: z.ZodString;
3382
+ }, z.core.$strip>>>;
3383
+ logoUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3384
+ availableLocales: z.ZodArray<z.ZodEnum<{
3385
+ de: "de";
3386
+ en: "en";
3387
+ es: "es";
3388
+ ka: "ka";
3389
+ ru: "ru";
3390
+ zh_cn: "zh_cn";
3391
+ }>>;
3392
+ defaultLocale: z.ZodEnum<{
3393
+ de: "de";
3394
+ en: "en";
3395
+ es: "es";
3396
+ ka: "ka";
3397
+ ru: "ru";
3398
+ zh_cn: "zh_cn";
3399
+ }>;
3400
+ countryCode: z.ZodEnum<{
3401
+ RU: "RU";
3402
+ US: "US";
3403
+ GB: "GB";
3404
+ GR: "GR";
3405
+ GE: "GE";
3406
+ UA: "UA";
3407
+ BY: "BY";
3408
+ KZ: "KZ";
3409
+ FR: "FR";
3410
+ DE: "DE";
3411
+ IT: "IT";
3412
+ ES: "ES";
3413
+ TR: "TR";
3414
+ PL: "PL";
3415
+ AC: "AC";
3416
+ AD: "AD";
3417
+ AE: "AE";
3418
+ AF: "AF";
3419
+ AG: "AG";
3420
+ AI: "AI";
3421
+ AL: "AL";
3422
+ AM: "AM";
3423
+ AO: "AO";
3424
+ AR: "AR";
3425
+ AS: "AS";
3426
+ AT: "AT";
3427
+ AU: "AU";
3428
+ AW: "AW";
3429
+ AX: "AX";
3430
+ AZ: "AZ";
3431
+ BA: "BA";
3432
+ BB: "BB";
3433
+ BD: "BD";
3434
+ BE: "BE";
3435
+ BF: "BF";
3436
+ BG: "BG";
3437
+ BH: "BH";
3438
+ BI: "BI";
3439
+ BJ: "BJ";
3440
+ BL: "BL";
3441
+ BM: "BM";
3442
+ BN: "BN";
3443
+ BO: "BO";
3444
+ BQ: "BQ";
3445
+ BR: "BR";
3446
+ BS: "BS";
3447
+ BT: "BT";
3448
+ BW: "BW";
3449
+ BZ: "BZ";
3450
+ CA: "CA";
3451
+ CC: "CC";
3452
+ CD: "CD";
3453
+ CF: "CF";
3454
+ CG: "CG";
3455
+ CH: "CH";
3456
+ CI: "CI";
3457
+ CK: "CK";
3458
+ CL: "CL";
3459
+ CM: "CM";
3460
+ CN: "CN";
3461
+ CO: "CO";
3462
+ CR: "CR";
3463
+ CU: "CU";
3464
+ CV: "CV";
3465
+ CW: "CW";
3466
+ CX: "CX";
3467
+ CY: "CY";
3468
+ CZ: "CZ";
3469
+ DJ: "DJ";
3470
+ DK: "DK";
3471
+ DM: "DM";
3472
+ DO: "DO";
3473
+ DZ: "DZ";
3474
+ EC: "EC";
3475
+ EE: "EE";
3476
+ EG: "EG";
3477
+ EH: "EH";
3478
+ ER: "ER";
3479
+ ET: "ET";
3480
+ FI: "FI";
3481
+ FJ: "FJ";
3482
+ FK: "FK";
3483
+ FM: "FM";
3484
+ FO: "FO";
3485
+ GA: "GA";
3486
+ GD: "GD";
3487
+ GF: "GF";
3488
+ GG: "GG";
3489
+ GH: "GH";
3490
+ GI: "GI";
3491
+ GL: "GL";
3492
+ GM: "GM";
3493
+ GN: "GN";
3494
+ GP: "GP";
3495
+ GQ: "GQ";
3496
+ GT: "GT";
3497
+ GU: "GU";
3498
+ GW: "GW";
3499
+ GY: "GY";
3500
+ HK: "HK";
3501
+ HN: "HN";
3502
+ HR: "HR";
3503
+ HT: "HT";
3504
+ HU: "HU";
3505
+ ID: "ID";
3506
+ IE: "IE";
3507
+ IL: "IL";
3508
+ IM: "IM";
3509
+ IN: "IN";
3510
+ IO: "IO";
3511
+ IQ: "IQ";
3512
+ IR: "IR";
3513
+ IS: "IS";
3514
+ JE: "JE";
3515
+ JM: "JM";
3516
+ JO: "JO";
3517
+ JP: "JP";
3518
+ KE: "KE";
3519
+ KG: "KG";
3520
+ KH: "KH";
3521
+ KI: "KI";
3522
+ KM: "KM";
3523
+ KN: "KN";
3524
+ KP: "KP";
3525
+ KR: "KR";
3526
+ KW: "KW";
3527
+ KY: "KY";
3528
+ LA: "LA";
3529
+ LB: "LB";
3530
+ LC: "LC";
3531
+ LI: "LI";
3532
+ LK: "LK";
3533
+ LR: "LR";
3534
+ LS: "LS";
3535
+ LT: "LT";
3536
+ LU: "LU";
3537
+ LV: "LV";
3538
+ LY: "LY";
3539
+ MA: "MA";
3540
+ MC: "MC";
3541
+ MD: "MD";
3542
+ ME: "ME";
3543
+ MF: "MF";
3544
+ MG: "MG";
3545
+ MH: "MH";
3546
+ MK: "MK";
3547
+ ML: "ML";
3548
+ MM: "MM";
3549
+ MN: "MN";
3550
+ MO: "MO";
3551
+ MP: "MP";
3552
+ MQ: "MQ";
3553
+ MR: "MR";
3554
+ MS: "MS";
3555
+ MT: "MT";
3556
+ MU: "MU";
3557
+ MV: "MV";
3558
+ MW: "MW";
3559
+ MX: "MX";
3560
+ MY: "MY";
3561
+ MZ: "MZ";
3562
+ NA: "NA";
3563
+ NC: "NC";
3564
+ NE: "NE";
3565
+ NF: "NF";
3566
+ NG: "NG";
3567
+ NI: "NI";
3568
+ NL: "NL";
3569
+ NO: "NO";
3570
+ NP: "NP";
3571
+ NR: "NR";
3572
+ NU: "NU";
3573
+ NZ: "NZ";
3574
+ OM: "OM";
3575
+ PA: "PA";
3576
+ PE: "PE";
3577
+ PF: "PF";
3578
+ PG: "PG";
3579
+ PH: "PH";
3580
+ PK: "PK";
3581
+ PM: "PM";
3582
+ PR: "PR";
3583
+ PS: "PS";
3584
+ PT: "PT";
3585
+ PW: "PW";
3586
+ PY: "PY";
3587
+ QA: "QA";
3588
+ RE: "RE";
3589
+ RO: "RO";
3590
+ RS: "RS";
3591
+ RW: "RW";
3592
+ SA: "SA";
3593
+ SB: "SB";
3594
+ SC: "SC";
3595
+ SD: "SD";
3596
+ SE: "SE";
3597
+ SG: "SG";
3598
+ SH: "SH";
3599
+ SI: "SI";
3600
+ SJ: "SJ";
3601
+ SK: "SK";
3602
+ SL: "SL";
3603
+ SM: "SM";
3604
+ SN: "SN";
3605
+ SO: "SO";
3606
+ SR: "SR";
3607
+ SS: "SS";
3608
+ ST: "ST";
3609
+ SV: "SV";
3610
+ SX: "SX";
3611
+ SY: "SY";
3612
+ SZ: "SZ";
3613
+ TA: "TA";
3614
+ TC: "TC";
3615
+ TD: "TD";
3616
+ TG: "TG";
3617
+ TH: "TH";
3618
+ TJ: "TJ";
3619
+ TK: "TK";
3620
+ TL: "TL";
3621
+ TM: "TM";
3622
+ TN: "TN";
3623
+ TO: "TO";
3624
+ TT: "TT";
3625
+ TV: "TV";
3626
+ TW: "TW";
3627
+ TZ: "TZ";
3628
+ UG: "UG";
3629
+ UY: "UY";
3630
+ UZ: "UZ";
3631
+ VA: "VA";
3632
+ VC: "VC";
3633
+ VE: "VE";
3634
+ VG: "VG";
3635
+ VI: "VI";
3636
+ VN: "VN";
3637
+ VU: "VU";
3638
+ WF: "WF";
3639
+ WS: "WS";
3640
+ XK: "XK";
3641
+ YE: "YE";
3642
+ YT: "YT";
3643
+ ZA: "ZA";
3644
+ ZM: "ZM";
3645
+ ZW: "ZW";
3646
+ }>;
3647
+ currencyCode: z.ZodEnum<{
3648
+ USD: "USD";
3649
+ EUR: "EUR";
3650
+ RUB: "RUB";
3651
+ CNY: "CNY";
3652
+ GEL: "GEL";
3653
+ BYN: "BYN";
3654
+ UAH: "UAH";
3655
+ KZT: "KZT";
3656
+ PLN: "PLN";
3657
+ TRY: "TRY";
3658
+ }>;
3659
+ headLinks: z.ZodOptional<z.ZodArray<z.ZodObject<{
3660
+ rel: z.ZodOptional<z.ZodString>;
3661
+ type: z.ZodOptional<z.ZodString>;
3662
+ sizes: z.ZodOptional<z.ZodString>;
3663
+ href: z.ZodOptional<z.ZodString>;
3664
+ }, z.core.$strip>>>;
3665
+ headScripts: z.ZodOptional<z.ZodArray<z.ZodObject<{
3666
+ src: z.ZodOptional<z.ZodString>;
3667
+ type: z.ZodOptional<z.ZodString>;
3668
+ textContent: z.ZodOptional<z.ZodString>;
3669
+ }, z.core.$strip>>>;
3670
+ headStyles: z.ZodOptional<z.ZodArray<z.ZodString>>;
3671
+ }, z.core.$strip>;
3672
+ type Options = z.infer<typeof OptionsSchema>;
3673
+
3674
+ declare const DeliveryMethodSchema: z.ZodEnum<{
3675
+ deliveryByCourier: "deliveryByCourier";
3676
+ selfPickup: "selfPickup";
3677
+ }>;
3678
+ type DeliveryMethod = z.infer<typeof DeliveryMethodSchema>;
3679
+ declare const TimeTypeSchema: z.ZodEnum<{
3680
+ asap: "asap";
3681
+ scheduled: "scheduled";
3682
+ }>;
3683
+ type TimeType = z.infer<typeof TimeTypeSchema>;
3684
+ declare const OrderItemSchema: z.ZodObject<{
3685
+ id: z.ZodString;
3686
+ orderId: z.ZodString;
3687
+ productId: z.ZodString;
3688
+ productSlug: z.ZodString;
3689
+ categoryId: z.ZodString;
3690
+ categorySlug: z.ZodString;
3691
+ variantId: z.ZodString;
3692
+ quantity: z.ZodNumber;
3693
+ unitPrice: z.ZodNumber;
3694
+ totalPrice: z.ZodNumber;
3695
+ }, z.core.$strip>;
3696
+ type OrderItem = z.infer<typeof OrderItemSchema>;
3697
+ declare const OrderItemChangeSchema: z.ZodObject<{
3698
+ orderId: z.ZodString;
3699
+ itemId: z.ZodString;
3700
+ method: z.ZodEnum<{
3701
+ increment: "increment";
3702
+ decrement: "decrement";
3703
+ }>;
3704
+ }, z.core.$strip>;
3705
+ type OrderItemChange = z.infer<typeof OrderItemChangeSchema>;
3706
+ declare const OrderStatusSchema: z.ZodEnum<{
3707
+ draft: "draft";
3708
+ created: "created";
3709
+ ready: "ready";
3710
+ delivered: "delivered";
3711
+ }>;
3712
+ type OrderStatus = z.infer<typeof OrderStatusSchema>;
3713
+ declare const OrderDeliveryAddressSchema: z.ZodObject<{
3714
+ type: z.ZodLiteral<"deliveryAddress">;
3715
+ street: z.ZodString;
3716
+ flat: z.ZodOptional<z.ZodString>;
3717
+ intercom: z.ZodOptional<z.ZodString>;
3718
+ entrance: z.ZodOptional<z.ZodString>;
3719
+ floor: z.ZodOptional<z.ZodString>;
3720
+ addressNote: z.ZodOptional<z.ZodString>;
3721
+ }, z.core.$strip>;
3722
+ type OrderDeliveryAddress = z.infer<typeof OrderDeliveryAddressSchema>;
3723
+ declare const OrderWarehouseAddressSchema: z.ZodObject<{
3724
+ type: z.ZodLiteral<"warehouseAddress">;
3725
+ id: z.ZodString;
3726
+ }, z.core.$strip>;
3727
+ type OrderWarehouseAddress = z.infer<typeof OrderWarehouseAddressSchema>;
3728
+ declare const OrderSchema: z.ZodObject<{
3729
+ id: z.ZodString;
3730
+ status: z.ZodEnum<{
3731
+ draft: "draft";
3732
+ created: "created";
3733
+ ready: "ready";
3734
+ delivered: "delivered";
3735
+ }>;
3736
+ createdAt: z.ZodString;
3737
+ readyBy: z.ZodString;
3738
+ readyType: z.ZodEnum<{
3739
+ asap: "asap";
3740
+ scheduled: "scheduled";
3741
+ }>;
3742
+ deliveryMethod: z.ZodEnum<{
3743
+ deliveryByCourier: "deliveryByCourier";
3744
+ selfPickup: "selfPickup";
3745
+ }>;
3746
+ address: z.ZodUnion<readonly [z.ZodObject<{
3747
+ type: z.ZodLiteral<"deliveryAddress">;
3748
+ street: z.ZodString;
3749
+ flat: z.ZodOptional<z.ZodString>;
3750
+ intercom: z.ZodOptional<z.ZodString>;
3751
+ entrance: z.ZodOptional<z.ZodString>;
3752
+ floor: z.ZodOptional<z.ZodString>;
3753
+ addressNote: z.ZodOptional<z.ZodString>;
3754
+ }, z.core.$strip>, z.ZodObject<{
3755
+ type: z.ZodLiteral<"warehouseAddress">;
3756
+ id: z.ZodString;
3757
+ }, z.core.$strip>]>;
3758
+ paymentMethodId: z.ZodString;
3759
+ changeFrom: z.ZodOptional<z.ZodNumber>;
3760
+ totalPrice: z.ZodNumber;
3761
+ name: z.ZodString;
3762
+ phone: z.ZodString;
3763
+ note: z.ZodOptional<z.ZodString>;
3764
+ items: z.ZodArray<z.ZodObject<{
3765
+ id: z.ZodString;
3766
+ orderId: z.ZodString;
3767
+ productId: z.ZodString;
3768
+ productSlug: z.ZodString;
3769
+ categoryId: z.ZodString;
3770
+ categorySlug: z.ZodString;
3771
+ variantId: z.ZodString;
3772
+ quantity: z.ZodNumber;
3773
+ unitPrice: z.ZodNumber;
3774
+ totalPrice: z.ZodNumber;
3775
+ }, z.core.$strip>>;
3776
+ }, z.core.$strip>;
3777
+ type Order = z.infer<typeof OrderSchema>;
3778
+
3779
+ declare const PaymentMethodTypeSchema: z.ZodEnum<{
3780
+ cash: "cash";
3781
+ card: "card";
3782
+ custom: "custom";
3783
+ }>;
3784
+ type PaymentMethodType = z.infer<typeof PaymentMethodTypeSchema>;
3785
+ declare const PaymentMethodSchema: z.ZodObject<{
3786
+ id: z.ZodString;
3787
+ title: z.ZodArray<z.ZodObject<{
3788
+ locale: z.ZodEnum<{
3789
+ de: "de";
3790
+ en: "en";
3791
+ es: "es";
3792
+ ka: "ka";
3793
+ ru: "ru";
3794
+ zh_cn: "zh_cn";
3795
+ }>;
3796
+ value: z.ZodString;
3797
+ }, z.core.$strip>>;
3798
+ type: z.ZodEnum<{
3799
+ cash: "cash";
3800
+ card: "card";
3801
+ custom: "custom";
3802
+ }>;
3803
+ }, z.core.$strip>;
3804
+ type PaymentMethod = z.infer<typeof PaymentMethodSchema>;
3805
+
3806
+ declare const NutritionFactsSchema: z.ZodObject<{
3807
+ calories: z.ZodNumber;
3808
+ carbohydrate: z.ZodNumber;
3809
+ protein: z.ZodNumber;
3810
+ fat: z.ZodNumber;
3811
+ }, z.core.$strip>;
3812
+ type NutritionFacts = z.infer<typeof NutritionFactsSchema>;
3813
+ declare const ProductVariantSchema: z.ZodObject<{
3814
+ id: z.ZodString;
3815
+ title: z.ZodArray<z.ZodObject<{
3816
+ locale: z.ZodEnum<{
3817
+ de: "de";
3818
+ en: "en";
3819
+ es: "es";
3820
+ ka: "ka";
3821
+ ru: "ru";
3822
+ zh_cn: "zh_cn";
3823
+ }>;
3824
+ value: z.ZodString;
3825
+ }, z.core.$strip>>;
3826
+ images: z.ZodArray<z.ZodObject<{
3827
+ id: z.ZodString;
3828
+ url: z.ZodString;
3829
+ size: z.ZodEnum<{
3830
+ xs: "xs";
3831
+ sm: "sm";
3832
+ md: "md";
3833
+ lg: "lg";
3834
+ xl: "xl";
3835
+ }>;
3836
+ format: z.ZodEnum<{
3837
+ jpeg: "jpeg";
3838
+ webp: "webp";
3839
+ }>;
3840
+ }, z.core.$strip>>;
3841
+ weightUnit: z.ZodEnum<{
3842
+ g: "g";
3843
+ kg: "kg";
3844
+ ml: "ml";
3845
+ l: "l";
3846
+ oz: "oz";
3847
+ lb: "lb";
3848
+ }>;
3849
+ weightValue: z.ZodNumber;
3850
+ gross: z.ZodNumber;
3851
+ net: z.ZodNullable<z.ZodNumber>;
3852
+ sku: z.ZodNullable<z.ZodString>;
3853
+ nutritionFacts: z.ZodNullable<z.ZodObject<{
3854
+ calories: z.ZodNumber;
3855
+ carbohydrate: z.ZodNumber;
3856
+ protein: z.ZodNumber;
3857
+ fat: z.ZodNumber;
3858
+ }, z.core.$strip>>;
3859
+ }, z.core.$strip>;
3860
+ type ProductVariant = z.infer<typeof ProductVariantSchema>;
3861
+ declare const ProductSchema: z.ZodObject<{
3862
+ id: z.ZodString;
3863
+ slug: z.ZodString;
3864
+ title: z.ZodArray<z.ZodObject<{
3865
+ locale: z.ZodEnum<{
3866
+ de: "de";
3867
+ en: "en";
3868
+ es: "es";
3869
+ ka: "ka";
3870
+ ru: "ru";
3871
+ zh_cn: "zh_cn";
3872
+ }>;
3873
+ value: z.ZodString;
3874
+ }, z.core.$strip>>;
3875
+ description: z.ZodOptional<z.ZodArray<z.ZodObject<{
3876
+ locale: z.ZodEnum<{
3877
+ de: "de";
3878
+ en: "en";
3879
+ es: "es";
3880
+ ka: "ka";
3881
+ ru: "ru";
3882
+ zh_cn: "zh_cn";
3883
+ }>;
3884
+ value: z.ZodString;
3885
+ }, z.core.$strip>>>;
3886
+ isAvailableForPurchase: z.ZodBoolean;
3887
+ variants: z.ZodArray<z.ZodObject<{
3888
+ id: z.ZodString;
3889
+ title: z.ZodArray<z.ZodObject<{
3890
+ locale: z.ZodEnum<{
3891
+ de: "de";
3892
+ en: "en";
3893
+ es: "es";
3894
+ ka: "ka";
3895
+ ru: "ru";
3896
+ zh_cn: "zh_cn";
3897
+ }>;
3898
+ value: z.ZodString;
3899
+ }, z.core.$strip>>;
3900
+ images: z.ZodArray<z.ZodObject<{
3901
+ id: z.ZodString;
3902
+ url: z.ZodString;
3903
+ size: z.ZodEnum<{
3904
+ xs: "xs";
3905
+ sm: "sm";
3906
+ md: "md";
3907
+ lg: "lg";
3908
+ xl: "xl";
3909
+ }>;
3910
+ format: z.ZodEnum<{
3911
+ jpeg: "jpeg";
3912
+ webp: "webp";
3913
+ }>;
3914
+ }, z.core.$strip>>;
3915
+ weightUnit: z.ZodEnum<{
3916
+ g: "g";
3917
+ kg: "kg";
3918
+ ml: "ml";
3919
+ l: "l";
3920
+ oz: "oz";
3921
+ lb: "lb";
3922
+ }>;
3923
+ weightValue: z.ZodNumber;
3924
+ gross: z.ZodNumber;
3925
+ net: z.ZodNullable<z.ZodNumber>;
3926
+ sku: z.ZodNullable<z.ZodString>;
3927
+ nutritionFacts: z.ZodNullable<z.ZodObject<{
3928
+ calories: z.ZodNumber;
3929
+ carbohydrate: z.ZodNumber;
3930
+ protein: z.ZodNumber;
3931
+ fat: z.ZodNumber;
3932
+ }, z.core.$strip>>;
3933
+ }, z.core.$strip>>;
3934
+ }, z.core.$strip>;
3935
+ type Product = z.infer<typeof ProductSchema>;
3936
+
3937
+ declare const TimeZoneSchema: z.ZodEnum<{
3938
+ "-12:00": "-12:00";
3939
+ "-11:00": "-11:00";
3940
+ "-10:00": "-10:00";
3941
+ "-09:00": "-09:00";
3942
+ "-08:00": "-08:00";
3943
+ "-07:00": "-07:00";
3944
+ "-06:00": "-06:00";
3945
+ "-05:00": "-05:00";
3946
+ "-04:00": "-04:00";
3947
+ "-03:00": "-03:00";
3948
+ "-02:00": "-02:00";
3949
+ "-01:00": "-01:00";
3950
+ "+00:00": "+00:00";
3951
+ "+01:00": "+01:00";
3952
+ "+02:00": "+02:00";
3953
+ "+03:00": "+03:00";
3954
+ "+04:00": "+04:00";
3955
+ "+05:00": "+05:00";
3956
+ "+06:00": "+06:00";
3957
+ "+07:00": "+07:00";
3958
+ "+08:00": "+08:00";
3959
+ "+09:00": "+09:00";
3960
+ "+10:00": "+10:00";
3961
+ "+11:00": "+11:00";
3962
+ "+12:00": "+12:00";
3963
+ "+13:00": "+13:00";
3964
+ "+14:00": "+14:00";
3965
+ }>;
3966
+ type TimeZone = z.infer<typeof TimeZoneSchema>;
3967
+ declare const TimeSchema: z.ZodString;
3968
+ declare const TimePeriodSchema: z.ZodObject<{
3969
+ start: z.ZodString;
3970
+ end: z.ZodString;
3971
+ }, z.core.$strip>;
3972
+ type TimePeriod = z.infer<typeof TimePeriodSchema>;
3973
+ declare const WeekDaySchema: z.ZodEnum<{
3974
+ sun: "sun";
3975
+ mon: "mon";
3976
+ tue: "tue";
3977
+ wed: "wed";
3978
+ thu: "thu";
3979
+ fri: "fri";
3980
+ sat: "sat";
3981
+ }>;
3982
+ type WeekDay = z.infer<typeof WeekDaySchema>;
3983
+ declare const DayScheduleSchema: z.ZodObject<{
3984
+ day: z.ZodEnum<{
3985
+ sun: "sun";
3986
+ mon: "mon";
3987
+ tue: "tue";
3988
+ wed: "wed";
3989
+ thu: "thu";
3990
+ fri: "fri";
3991
+ sat: "sat";
3992
+ }>;
3993
+ isClosed: z.ZodBoolean;
3994
+ hours: z.ZodOptional<z.ZodArray<z.ZodObject<{
3995
+ start: z.ZodString;
3996
+ end: z.ZodString;
3997
+ }, z.core.$strip>>>;
3998
+ comment: z.ZodOptional<z.ZodArray<z.ZodObject<{
3999
+ locale: z.ZodEnum<{
4000
+ de: "de";
4001
+ en: "en";
4002
+ es: "es";
4003
+ ka: "ka";
4004
+ ru: "ru";
4005
+ zh_cn: "zh_cn";
4006
+ }>;
4007
+ value: z.ZodString;
4008
+ }, z.core.$strip>>>;
4009
+ }, z.core.$strip>;
4010
+ type DaySchedule = z.infer<typeof DayScheduleSchema>;
4011
+ declare const ScheduleSchema: z.ZodArray<z.ZodObject<{
4012
+ day: z.ZodEnum<{
4013
+ sun: "sun";
4014
+ mon: "mon";
4015
+ tue: "tue";
4016
+ wed: "wed";
4017
+ thu: "thu";
4018
+ fri: "fri";
4019
+ sat: "sat";
4020
+ }>;
4021
+ isClosed: z.ZodBoolean;
4022
+ hours: z.ZodOptional<z.ZodArray<z.ZodObject<{
4023
+ start: z.ZodString;
4024
+ end: z.ZodString;
4025
+ }, z.core.$strip>>>;
4026
+ comment: z.ZodOptional<z.ZodArray<z.ZodObject<{
4027
+ locale: z.ZodEnum<{
4028
+ de: "de";
4029
+ en: "en";
4030
+ es: "es";
4031
+ ka: "ka";
4032
+ ru: "ru";
4033
+ zh_cn: "zh_cn";
4034
+ }>;
4035
+ value: z.ZodString;
4036
+ }, z.core.$strip>>>;
4037
+ }, z.core.$strip>>;
4038
+ type Schedule = z.infer<typeof ScheduleSchema>;
4039
+ declare const NextOpeningSchema: z.ZodObject<{
4040
+ day: z.ZodEnum<{
4041
+ sun: "sun";
4042
+ mon: "mon";
4043
+ tue: "tue";
4044
+ wed: "wed";
4045
+ thu: "thu";
4046
+ fri: "fri";
4047
+ sat: "sat";
4048
+ }>;
4049
+ time: z.ZodString;
4050
+ relativeDays: z.ZodNumber;
4051
+ }, z.core.$strip>;
4052
+ type NextOpening = z.infer<typeof NextOpeningSchema>;
4053
+ declare const OpeningStatusSchema: z.ZodObject<{
4054
+ isClosed: z.ZodBoolean;
4055
+ timeZone: z.ZodEnum<{
4056
+ "-12:00": "-12:00";
4057
+ "-11:00": "-11:00";
4058
+ "-10:00": "-10:00";
4059
+ "-09:00": "-09:00";
4060
+ "-08:00": "-08:00";
4061
+ "-07:00": "-07:00";
4062
+ "-06:00": "-06:00";
4063
+ "-05:00": "-05:00";
4064
+ "-04:00": "-04:00";
4065
+ "-03:00": "-03:00";
4066
+ "-02:00": "-02:00";
4067
+ "-01:00": "-01:00";
4068
+ "+00:00": "+00:00";
4069
+ "+01:00": "+01:00";
4070
+ "+02:00": "+02:00";
4071
+ "+03:00": "+03:00";
4072
+ "+04:00": "+04:00";
4073
+ "+05:00": "+05:00";
4074
+ "+06:00": "+06:00";
4075
+ "+07:00": "+07:00";
4076
+ "+08:00": "+08:00";
4077
+ "+09:00": "+09:00";
4078
+ "+10:00": "+10:00";
4079
+ "+11:00": "+11:00";
4080
+ "+12:00": "+12:00";
4081
+ "+13:00": "+13:00";
4082
+ "+14:00": "+14:00";
4083
+ }>;
4084
+ currentTime: z.ZodString;
4085
+ currentDay: z.ZodEnum<{
4086
+ sun: "sun";
4087
+ mon: "mon";
4088
+ tue: "tue";
4089
+ wed: "wed";
4090
+ thu: "thu";
4091
+ fri: "fri";
4092
+ sat: "sat";
4093
+ }>;
4094
+ todayHours: z.ZodNullable<z.ZodArray<z.ZodObject<{
4095
+ start: z.ZodString;
4096
+ end: z.ZodString;
4097
+ }, z.core.$strip>>>;
4098
+ todayEndAt: z.ZodNullable<z.ZodString>;
4099
+ todayEndInMinutes: z.ZodNullable<z.ZodNumber>;
4100
+ nextOpening: z.ZodNullable<z.ZodObject<{
4101
+ day: z.ZodEnum<{
4102
+ sun: "sun";
4103
+ mon: "mon";
4104
+ tue: "tue";
4105
+ wed: "wed";
4106
+ thu: "thu";
4107
+ fri: "fri";
4108
+ sat: "sat";
4109
+ }>;
4110
+ time: z.ZodString;
4111
+ relativeDays: z.ZodNumber;
4112
+ }, z.core.$strip>>;
4113
+ }, z.core.$strip>;
4114
+ type OpeningStatus = z.infer<typeof OpeningStatusSchema>;
4115
+
4116
+ declare const WarehouseAddressSchema: z.ZodObject<{
4117
+ street: z.ZodArray<z.ZodObject<{
4118
+ locale: z.ZodEnum<{
4119
+ de: "de";
4120
+ en: "en";
4121
+ es: "es";
4122
+ ka: "ka";
4123
+ ru: "ru";
4124
+ zh_cn: "zh_cn";
4125
+ }>;
4126
+ value: z.ZodString;
4127
+ }, z.core.$strip>>;
4128
+ }, z.core.$strip>;
4129
+ type WarehouseAddress = z.infer<typeof WarehouseAddressSchema>;
4130
+ declare const WarehouseSchema: z.ZodObject<{
4131
+ id: z.ZodString;
4132
+ title: z.ZodArray<z.ZodObject<{
4133
+ locale: z.ZodEnum<{
4134
+ de: "de";
4135
+ en: "en";
4136
+ es: "es";
4137
+ ka: "ka";
4138
+ ru: "ru";
4139
+ zh_cn: "zh_cn";
4140
+ }>;
4141
+ value: z.ZodString;
4142
+ }, z.core.$strip>>;
4143
+ address: z.ZodObject<{
4144
+ street: z.ZodArray<z.ZodObject<{
4145
+ locale: z.ZodEnum<{
4146
+ de: "de";
4147
+ en: "en";
4148
+ es: "es";
4149
+ ka: "ka";
4150
+ ru: "ru";
4151
+ zh_cn: "zh_cn";
4152
+ }>;
4153
+ value: z.ZodString;
4154
+ }, z.core.$strip>>;
4155
+ }, z.core.$strip>;
4156
+ }, z.core.$strip>;
4157
+ type Warehouse = z.infer<typeof WarehouseSchema>;
4158
+
4159
+ export { BaseResponseSchema, ChannelSchema, CountryCodeSchema, CurrencyCodeSchema, DeliveryMethodSchema, GatewayActionTypeSchema, GatewayAddOrderItemRequestSchema, GatewayAddOrderItemResponseSchema, GatewayCreateOrderRequestSchema, GatewayCreateOrderResponseSchema, GatewayDecrementOrderItemQuantityRequestSchema, GatewayDecrementOrderItemQuantityResponseSchema, GatewayGetChannelsRequestSchema, GatewayGetChannelsResponseSchema, GatewayGetDeliveryByCourierStatusRequestSchema, GatewayGetDeliveryByCourierStatusResponseSchema, GatewayGetMenuRequestSchema, GatewayGetMenuResponseSchema, GatewayGetOptionsRequestSchema, GatewayGetOptionsResponseSchema, GatewayGetOrderRequestSchema, GatewayGetOrderResponseSchema, GatewayGetSelfPickupStatusRequestSchema, GatewayGetSelfPickupStatusResponseSchema, GatewayGetTimeSlotsRequestSchema, GatewayGetTimeSlotsResponseSchema, GatewayIncrementOrderItemQuantityRequestSchema, GatewayIncrementOrderItemQuantityResponseSchema, GatewayRequestSchema, GatewayResponseSchema, GatewayUpdateOrderRequestSchema, GatewayUpdateOrderResponseSchema, ImageFormatSchema, ImageSchema, ImageSizeSchema, LocaleSchema, LocaleValueSchema, MenuCategorySchema, MenuSchema, NutritionFactsSchema, OpeningStatusSchema, OptionsSchema, OrderDeliveryAddressSchema, OrderItemChangeSchema, OrderItemSchema, OrderSchema, OrderStatusSchema, OrderWarehouseAddressSchema, PaymentMethodSchema, PaymentMethodTypeSchema, ProductSchema, ProductVariantSchema, ScheduleSchema, TimePeriodSchema, TimeSchema, TimeTypeSchema, TimeZoneSchema, WarehouseAddressSchema, WarehouseSchema, WeekDaySchema, WeightUnitSchema };
4160
+ export type { Channel, CountryCode, CurrencyCode, DaySchedule, DeliveryMethod, GatewayActionType, GatewayAddOrderItemRequest, GatewayAddOrderItemResponse, GatewayCreateOrderRequest, GatewayCreateOrderResponse, GatewayDecrementOrderItemQuantityRequest, GatewayDecrementOrderItemQuantityResponse, GatewayGetChannelsRequest, GatewayGetChannelsResponse, GatewayGetDeliveryByCourierStatusRequest, GatewayGetDeliveryByCourierStatusResponse, GatewayGetMenuRequest, GatewayGetMenuResponse, GatewayGetOptionsRequest, GatewayGetOptionsResponse, GatewayGetOrderRequest, GatewayGetOrderResponse, GatewayGetSelfPickupStatusRequest, GatewayGetSelfPickupStatusResponse, GatewayGetTimeSlotsRequest, GatewayGetTimeSlotsResponse, GatewayIncrementOrderItemQuantityRequest, GatewayIncrementOrderItemQuantityResponse, GatewayRequest, GatewayResponse, GatewayUpdateOrderRequest, GatewayUpdateOrderResponse, Image, ImageFormat, ImageSize, Locale, LocaleValue, Menu, MenuCategory, NextOpening, NutritionFacts, OpeningStatus, Options, Order, OrderDeliveryAddress, OrderItem, OrderItemChange, OrderStatus, OrderWarehouseAddress, PaymentMethod, PaymentMethodType, Product, ProductVariant, Schedule, TimePeriod, TimeType, TimeZone, Warehouse, WarehouseAddress, WeekDay, WeightUnit };