@shophost/rest-api 2.0.61 → 2.0.62
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/bootstrap.js +1 -1
- package/src/bootstrap.js.map +1 -1
- package/src/container.d.ts +4 -0
- package/src/container.js +1 -1
- package/src/container.js.map +1 -1
- package/src/core/lib/prisma.d.ts +24 -24
- package/src/core/notifications/email.service.d.ts +12 -14
- package/src/core/notifications/email.service.js +1 -1
- package/src/core/notifications/email.service.js.map +1 -1
- package/src/features/access/access.route.d.ts +6 -6
- package/src/features/cart/cart.route.d.ts +15 -15
- package/src/features/cart/cart.schema.d.ts +27 -27
- package/src/features/cart/cart.service.d.ts +4 -4
- package/src/features/customer/customer.route.d.ts +9 -9
- package/src/features/customer/customer.schema.d.ts +9 -9
- package/src/features/customer/customer.service.d.ts +1 -1
- package/src/features/integration/integration-registry.d.ts +10 -10
- package/src/features/integration/integration-registry.js +1 -1
- package/src/features/integration/integration-registry.js.map +1 -1
- package/src/features/integration/integration.service.d.ts +5 -1
- package/src/features/integration/integration.service.js +1 -1
- package/src/features/integration/integration.service.js.map +1 -1
- package/src/features/manufacturer/manufacturer.route.d.ts +14 -14
- package/src/features/manufacturer/manufacturer.schema.d.ts +1 -1
- package/src/features/manufacturer/manufacturer.service.d.ts +2 -2
- package/src/features/order/order-fulfillment.service.d.ts +12 -0
- package/src/features/order/order-fulfillment.service.js +1 -0
- package/src/features/order/order-fulfillment.service.js.map +1 -0
- package/src/features/order/order.route.d.ts +61 -61
- package/src/features/order/order.schema.d.ts +14 -14
- package/src/features/order/order.service.d.ts +10 -6
- package/src/features/order/order.service.js +1 -1
- package/src/features/order/order.service.js.map +1 -1
- package/src/features/order/recipient.schema.d.ts +2 -2
- package/src/features/organization/organization-configuration.schema.d.ts +25 -25
- package/src/features/organization/organization.route.d.ts +67 -67
- package/src/features/organization/organization.schema.d.ts +25 -25
- package/src/features/organization/organization.service.d.ts +8 -8
- package/src/features/payment/payment-webhook.service.d.ts +12 -0
- package/src/features/payment/payment-webhook.service.js +1 -0
- package/src/features/payment/payment-webhook.service.js.map +1 -0
- package/src/features/payment/payment.service.d.ts +3 -12
- package/src/features/payment/payment.service.js +1 -1
- package/src/features/payment/payment.service.js.map +1 -1
- package/src/features/payment/stripe.service.d.ts +22 -32
- package/src/features/payment/stripe.service.js +1 -1
- package/src/features/payment/stripe.service.js.map +1 -1
- package/src/features/product/product-modifier.schema.d.ts +30 -30
- package/src/features/product/product.route.d.ts +182 -182
- package/src/features/product/product.schema.d.ts +65 -65
- package/src/features/product/product.service.d.ts +26 -26
- package/src/features/product-category/product-category.route.d.ts +14 -14
- package/src/features/product-category/product-category.schema.d.ts +1 -1
- package/src/features/product-category/product-category.service.d.ts +2 -2
- package/src/features/reservation/reservation.route.d.ts +12 -12
- package/src/features/reservation/reservation.schema.d.ts +6 -6
- package/src/features/reservation/reservation.service.d.ts +3 -5
- package/src/features/reservation/reservation.service.js +1 -1
- package/src/features/reservation/reservation.service.js.map +1 -1
- package/src/features/shipping-method/shipping-method.route.d.ts +6 -6
- package/src/features/webhook/webhook.handler.d.ts +2 -2
- package/src/features/webhook/webhook.handler.js +1 -1
- package/src/features/webhook/webhook.handler.js.map +1 -1
- package/src/schemas/locales.schema.d.ts +6 -6
- package/src/schemas/pagination.schema.d.ts +6 -6
- package/src/schemas/queries.schema.d.ts +6 -6
|
@@ -17,7 +17,13 @@ export declare const organizationRoute: {
|
|
|
17
17
|
search: z.ZodOptional<z.ZodString>;
|
|
18
18
|
published: z.ZodOptional<z.ZodCoercedBoolean<unknown>>;
|
|
19
19
|
locale: z.ZodOptional<z.ZodEnum<{
|
|
20
|
+
hr: "hr";
|
|
21
|
+
th: "th";
|
|
22
|
+
tr: "tr";
|
|
20
23
|
id: "id";
|
|
24
|
+
is: "is";
|
|
25
|
+
mt: "mt";
|
|
26
|
+
ml: "ml";
|
|
21
27
|
af: "af";
|
|
22
28
|
sq: "sq";
|
|
23
29
|
ar_dz: "ar_dz";
|
|
@@ -44,7 +50,6 @@ export declare const organizationRoute: {
|
|
|
44
50
|
zh_cn: "zh_cn";
|
|
45
51
|
zh_sg: "zh_sg";
|
|
46
52
|
zh_tw: "zh_tw";
|
|
47
|
-
hr: "hr";
|
|
48
53
|
cs: "cs";
|
|
49
54
|
da: "da";
|
|
50
55
|
nl_be: "nl_be";
|
|
@@ -79,7 +84,6 @@ export declare const organizationRoute: {
|
|
|
79
84
|
he: "he";
|
|
80
85
|
hi: "hi";
|
|
81
86
|
hu: "hu";
|
|
82
|
-
is: "is";
|
|
83
87
|
ga: "ga";
|
|
84
88
|
it: "it";
|
|
85
89
|
it_ch: "it_ch";
|
|
@@ -89,9 +93,7 @@ export declare const organizationRoute: {
|
|
|
89
93
|
lv: "lv";
|
|
90
94
|
lt: "lt";
|
|
91
95
|
mk: "mk";
|
|
92
|
-
ml: "ml";
|
|
93
96
|
ms: "ms";
|
|
94
|
-
mt: "mt";
|
|
95
97
|
no: "no";
|
|
96
98
|
nb: "nb";
|
|
97
99
|
nn: "nn";
|
|
@@ -122,8 +124,6 @@ export declare const organizationRoute: {
|
|
|
122
124
|
es: "es";
|
|
123
125
|
sv: "sv";
|
|
124
126
|
sv_fi: "sv_fi";
|
|
125
|
-
th: "th";
|
|
126
|
-
tr: "tr";
|
|
127
127
|
uk: "uk";
|
|
128
128
|
ur: "ur";
|
|
129
129
|
vi: "vi";
|
|
@@ -170,7 +170,13 @@ export declare const organizationRoute: {
|
|
|
170
170
|
isAcceptingReservations: z.ZodBoolean;
|
|
171
171
|
isOpen: z.ZodDefault<z.ZodBoolean>;
|
|
172
172
|
defaultLocale: z.ZodEnum<{
|
|
173
|
+
hr: "hr";
|
|
174
|
+
th: "th";
|
|
175
|
+
tr: "tr";
|
|
173
176
|
id: "id";
|
|
177
|
+
is: "is";
|
|
178
|
+
mt: "mt";
|
|
179
|
+
ml: "ml";
|
|
174
180
|
af: "af";
|
|
175
181
|
sq: "sq";
|
|
176
182
|
ar_dz: "ar_dz";
|
|
@@ -197,7 +203,6 @@ export declare const organizationRoute: {
|
|
|
197
203
|
zh_cn: "zh_cn";
|
|
198
204
|
zh_sg: "zh_sg";
|
|
199
205
|
zh_tw: "zh_tw";
|
|
200
|
-
hr: "hr";
|
|
201
206
|
cs: "cs";
|
|
202
207
|
da: "da";
|
|
203
208
|
nl_be: "nl_be";
|
|
@@ -232,7 +237,6 @@ export declare const organizationRoute: {
|
|
|
232
237
|
he: "he";
|
|
233
238
|
hi: "hi";
|
|
234
239
|
hu: "hu";
|
|
235
|
-
is: "is";
|
|
236
240
|
ga: "ga";
|
|
237
241
|
it: "it";
|
|
238
242
|
it_ch: "it_ch";
|
|
@@ -242,9 +246,7 @@ export declare const organizationRoute: {
|
|
|
242
246
|
lv: "lv";
|
|
243
247
|
lt: "lt";
|
|
244
248
|
mk: "mk";
|
|
245
|
-
ml: "ml";
|
|
246
249
|
ms: "ms";
|
|
247
|
-
mt: "mt";
|
|
248
250
|
no: "no";
|
|
249
251
|
nb: "nb";
|
|
250
252
|
nn: "nn";
|
|
@@ -275,8 +277,6 @@ export declare const organizationRoute: {
|
|
|
275
277
|
es: "es";
|
|
276
278
|
sv: "sv";
|
|
277
279
|
sv_fi: "sv_fi";
|
|
278
|
-
th: "th";
|
|
279
|
-
tr: "tr";
|
|
280
280
|
uk: "uk";
|
|
281
281
|
ur: "ur";
|
|
282
282
|
vi: "vi";
|
|
@@ -285,7 +285,13 @@ export declare const organizationRoute: {
|
|
|
285
285
|
zu: "zu";
|
|
286
286
|
}>;
|
|
287
287
|
supportedLocales: z.ZodArray<z.ZodEnum<{
|
|
288
|
+
hr: "hr";
|
|
289
|
+
th: "th";
|
|
290
|
+
tr: "tr";
|
|
288
291
|
id: "id";
|
|
292
|
+
is: "is";
|
|
293
|
+
mt: "mt";
|
|
294
|
+
ml: "ml";
|
|
289
295
|
af: "af";
|
|
290
296
|
sq: "sq";
|
|
291
297
|
ar_dz: "ar_dz";
|
|
@@ -312,7 +318,6 @@ export declare const organizationRoute: {
|
|
|
312
318
|
zh_cn: "zh_cn";
|
|
313
319
|
zh_sg: "zh_sg";
|
|
314
320
|
zh_tw: "zh_tw";
|
|
315
|
-
hr: "hr";
|
|
316
321
|
cs: "cs";
|
|
317
322
|
da: "da";
|
|
318
323
|
nl_be: "nl_be";
|
|
@@ -347,7 +352,6 @@ export declare const organizationRoute: {
|
|
|
347
352
|
he: "he";
|
|
348
353
|
hi: "hi";
|
|
349
354
|
hu: "hu";
|
|
350
|
-
is: "is";
|
|
351
355
|
ga: "ga";
|
|
352
356
|
it: "it";
|
|
353
357
|
it_ch: "it_ch";
|
|
@@ -357,9 +361,7 @@ export declare const organizationRoute: {
|
|
|
357
361
|
lv: "lv";
|
|
358
362
|
lt: "lt";
|
|
359
363
|
mk: "mk";
|
|
360
|
-
ml: "ml";
|
|
361
364
|
ms: "ms";
|
|
362
|
-
mt: "mt";
|
|
363
365
|
no: "no";
|
|
364
366
|
nb: "nb";
|
|
365
367
|
nn: "nn";
|
|
@@ -390,8 +392,6 @@ export declare const organizationRoute: {
|
|
|
390
392
|
es: "es";
|
|
391
393
|
sv: "sv";
|
|
392
394
|
sv_fi: "sv_fi";
|
|
393
|
-
th: "th";
|
|
394
|
-
tr: "tr";
|
|
395
395
|
uk: "uk";
|
|
396
396
|
ur: "ur";
|
|
397
397
|
vi: "vi";
|
|
@@ -537,7 +537,13 @@ export declare const organizationRoute: {
|
|
|
537
537
|
isAcceptingReservations: z.ZodBoolean;
|
|
538
538
|
isOpen: z.ZodDefault<z.ZodBoolean>;
|
|
539
539
|
defaultLocale: z.ZodEnum<{
|
|
540
|
+
hr: "hr";
|
|
541
|
+
th: "th";
|
|
542
|
+
tr: "tr";
|
|
540
543
|
id: "id";
|
|
544
|
+
is: "is";
|
|
545
|
+
mt: "mt";
|
|
546
|
+
ml: "ml";
|
|
541
547
|
af: "af";
|
|
542
548
|
sq: "sq";
|
|
543
549
|
ar_dz: "ar_dz";
|
|
@@ -564,7 +570,6 @@ export declare const organizationRoute: {
|
|
|
564
570
|
zh_cn: "zh_cn";
|
|
565
571
|
zh_sg: "zh_sg";
|
|
566
572
|
zh_tw: "zh_tw";
|
|
567
|
-
hr: "hr";
|
|
568
573
|
cs: "cs";
|
|
569
574
|
da: "da";
|
|
570
575
|
nl_be: "nl_be";
|
|
@@ -599,7 +604,6 @@ export declare const organizationRoute: {
|
|
|
599
604
|
he: "he";
|
|
600
605
|
hi: "hi";
|
|
601
606
|
hu: "hu";
|
|
602
|
-
is: "is";
|
|
603
607
|
ga: "ga";
|
|
604
608
|
it: "it";
|
|
605
609
|
it_ch: "it_ch";
|
|
@@ -609,9 +613,7 @@ export declare const organizationRoute: {
|
|
|
609
613
|
lv: "lv";
|
|
610
614
|
lt: "lt";
|
|
611
615
|
mk: "mk";
|
|
612
|
-
ml: "ml";
|
|
613
616
|
ms: "ms";
|
|
614
|
-
mt: "mt";
|
|
615
617
|
no: "no";
|
|
616
618
|
nb: "nb";
|
|
617
619
|
nn: "nn";
|
|
@@ -642,8 +644,6 @@ export declare const organizationRoute: {
|
|
|
642
644
|
es: "es";
|
|
643
645
|
sv: "sv";
|
|
644
646
|
sv_fi: "sv_fi";
|
|
645
|
-
th: "th";
|
|
646
|
-
tr: "tr";
|
|
647
647
|
uk: "uk";
|
|
648
648
|
ur: "ur";
|
|
649
649
|
vi: "vi";
|
|
@@ -652,7 +652,13 @@ export declare const organizationRoute: {
|
|
|
652
652
|
zu: "zu";
|
|
653
653
|
}>;
|
|
654
654
|
supportedLocales: z.ZodArray<z.ZodEnum<{
|
|
655
|
+
hr: "hr";
|
|
656
|
+
th: "th";
|
|
657
|
+
tr: "tr";
|
|
655
658
|
id: "id";
|
|
659
|
+
is: "is";
|
|
660
|
+
mt: "mt";
|
|
661
|
+
ml: "ml";
|
|
656
662
|
af: "af";
|
|
657
663
|
sq: "sq";
|
|
658
664
|
ar_dz: "ar_dz";
|
|
@@ -679,7 +685,6 @@ export declare const organizationRoute: {
|
|
|
679
685
|
zh_cn: "zh_cn";
|
|
680
686
|
zh_sg: "zh_sg";
|
|
681
687
|
zh_tw: "zh_tw";
|
|
682
|
-
hr: "hr";
|
|
683
688
|
cs: "cs";
|
|
684
689
|
da: "da";
|
|
685
690
|
nl_be: "nl_be";
|
|
@@ -714,7 +719,6 @@ export declare const organizationRoute: {
|
|
|
714
719
|
he: "he";
|
|
715
720
|
hi: "hi";
|
|
716
721
|
hu: "hu";
|
|
717
|
-
is: "is";
|
|
718
722
|
ga: "ga";
|
|
719
723
|
it: "it";
|
|
720
724
|
it_ch: "it_ch";
|
|
@@ -724,9 +728,7 @@ export declare const organizationRoute: {
|
|
|
724
728
|
lv: "lv";
|
|
725
729
|
lt: "lt";
|
|
726
730
|
mk: "mk";
|
|
727
|
-
ml: "ml";
|
|
728
731
|
ms: "ms";
|
|
729
|
-
mt: "mt";
|
|
730
732
|
no: "no";
|
|
731
733
|
nb: "nb";
|
|
732
734
|
nn: "nn";
|
|
@@ -757,8 +759,6 @@ export declare const organizationRoute: {
|
|
|
757
759
|
es: "es";
|
|
758
760
|
sv: "sv";
|
|
759
761
|
sv_fi: "sv_fi";
|
|
760
|
-
th: "th";
|
|
761
|
-
tr: "tr";
|
|
762
762
|
uk: "uk";
|
|
763
763
|
ur: "ur";
|
|
764
764
|
vi: "vi";
|
|
@@ -931,7 +931,13 @@ export declare const organizationRoute: {
|
|
|
931
931
|
isAcceptingReservations: z.ZodBoolean;
|
|
932
932
|
isOpen: z.ZodDefault<z.ZodBoolean>;
|
|
933
933
|
defaultLocale: z.ZodEnum<{
|
|
934
|
+
hr: "hr";
|
|
935
|
+
th: "th";
|
|
936
|
+
tr: "tr";
|
|
934
937
|
id: "id";
|
|
938
|
+
is: "is";
|
|
939
|
+
mt: "mt";
|
|
940
|
+
ml: "ml";
|
|
935
941
|
af: "af";
|
|
936
942
|
sq: "sq";
|
|
937
943
|
ar_dz: "ar_dz";
|
|
@@ -958,7 +964,6 @@ export declare const organizationRoute: {
|
|
|
958
964
|
zh_cn: "zh_cn";
|
|
959
965
|
zh_sg: "zh_sg";
|
|
960
966
|
zh_tw: "zh_tw";
|
|
961
|
-
hr: "hr";
|
|
962
967
|
cs: "cs";
|
|
963
968
|
da: "da";
|
|
964
969
|
nl_be: "nl_be";
|
|
@@ -993,7 +998,6 @@ export declare const organizationRoute: {
|
|
|
993
998
|
he: "he";
|
|
994
999
|
hi: "hi";
|
|
995
1000
|
hu: "hu";
|
|
996
|
-
is: "is";
|
|
997
1001
|
ga: "ga";
|
|
998
1002
|
it: "it";
|
|
999
1003
|
it_ch: "it_ch";
|
|
@@ -1003,9 +1007,7 @@ export declare const organizationRoute: {
|
|
|
1003
1007
|
lv: "lv";
|
|
1004
1008
|
lt: "lt";
|
|
1005
1009
|
mk: "mk";
|
|
1006
|
-
ml: "ml";
|
|
1007
1010
|
ms: "ms";
|
|
1008
|
-
mt: "mt";
|
|
1009
1011
|
no: "no";
|
|
1010
1012
|
nb: "nb";
|
|
1011
1013
|
nn: "nn";
|
|
@@ -1036,8 +1038,6 @@ export declare const organizationRoute: {
|
|
|
1036
1038
|
es: "es";
|
|
1037
1039
|
sv: "sv";
|
|
1038
1040
|
sv_fi: "sv_fi";
|
|
1039
|
-
th: "th";
|
|
1040
|
-
tr: "tr";
|
|
1041
1041
|
uk: "uk";
|
|
1042
1042
|
ur: "ur";
|
|
1043
1043
|
vi: "vi";
|
|
@@ -1046,7 +1046,13 @@ export declare const organizationRoute: {
|
|
|
1046
1046
|
zu: "zu";
|
|
1047
1047
|
}>;
|
|
1048
1048
|
supportedLocales: z.ZodArray<z.ZodEnum<{
|
|
1049
|
+
hr: "hr";
|
|
1050
|
+
th: "th";
|
|
1051
|
+
tr: "tr";
|
|
1049
1052
|
id: "id";
|
|
1053
|
+
is: "is";
|
|
1054
|
+
mt: "mt";
|
|
1055
|
+
ml: "ml";
|
|
1050
1056
|
af: "af";
|
|
1051
1057
|
sq: "sq";
|
|
1052
1058
|
ar_dz: "ar_dz";
|
|
@@ -1073,7 +1079,6 @@ export declare const organizationRoute: {
|
|
|
1073
1079
|
zh_cn: "zh_cn";
|
|
1074
1080
|
zh_sg: "zh_sg";
|
|
1075
1081
|
zh_tw: "zh_tw";
|
|
1076
|
-
hr: "hr";
|
|
1077
1082
|
cs: "cs";
|
|
1078
1083
|
da: "da";
|
|
1079
1084
|
nl_be: "nl_be";
|
|
@@ -1108,7 +1113,6 @@ export declare const organizationRoute: {
|
|
|
1108
1113
|
he: "he";
|
|
1109
1114
|
hi: "hi";
|
|
1110
1115
|
hu: "hu";
|
|
1111
|
-
is: "is";
|
|
1112
1116
|
ga: "ga";
|
|
1113
1117
|
it: "it";
|
|
1114
1118
|
it_ch: "it_ch";
|
|
@@ -1118,9 +1122,7 @@ export declare const organizationRoute: {
|
|
|
1118
1122
|
lv: "lv";
|
|
1119
1123
|
lt: "lt";
|
|
1120
1124
|
mk: "mk";
|
|
1121
|
-
ml: "ml";
|
|
1122
1125
|
ms: "ms";
|
|
1123
|
-
mt: "mt";
|
|
1124
1126
|
no: "no";
|
|
1125
1127
|
nb: "nb";
|
|
1126
1128
|
nn: "nn";
|
|
@@ -1151,8 +1153,6 @@ export declare const organizationRoute: {
|
|
|
1151
1153
|
es: "es";
|
|
1152
1154
|
sv: "sv";
|
|
1153
1155
|
sv_fi: "sv_fi";
|
|
1154
|
-
th: "th";
|
|
1155
|
-
tr: "tr";
|
|
1156
1156
|
uk: "uk";
|
|
1157
1157
|
ur: "ur";
|
|
1158
1158
|
vi: "vi";
|
|
@@ -1279,6 +1279,7 @@ export declare const organizationRoute: {
|
|
|
1279
1279
|
placeId: z.ZodOptional<z.ZodString>;
|
|
1280
1280
|
}, z.core.$strip>>;
|
|
1281
1281
|
configuration: z.ZodOptional<z.ZodObject<{
|
|
1282
|
+
hostname: z.ZodOptional<z.ZodOptional<z.ZodCoercedString<unknown>>>;
|
|
1282
1283
|
openingTimes: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
1283
1284
|
monday: z.ZodNullable<z.ZodString>;
|
|
1284
1285
|
tuesday: z.ZodNullable<z.ZodString>;
|
|
@@ -1298,7 +1299,13 @@ export declare const organizationRoute: {
|
|
|
1298
1299
|
sunday: z.ZodNullable<z.ZodString>;
|
|
1299
1300
|
}, z.core.$strip>>>;
|
|
1300
1301
|
defaultLocale: z.ZodOptional<z.ZodEnum<{
|
|
1302
|
+
hr: "hr";
|
|
1303
|
+
th: "th";
|
|
1304
|
+
tr: "tr";
|
|
1301
1305
|
id: "id";
|
|
1306
|
+
is: "is";
|
|
1307
|
+
mt: "mt";
|
|
1308
|
+
ml: "ml";
|
|
1302
1309
|
af: "af";
|
|
1303
1310
|
sq: "sq";
|
|
1304
1311
|
ar_dz: "ar_dz";
|
|
@@ -1325,7 +1332,6 @@ export declare const organizationRoute: {
|
|
|
1325
1332
|
zh_cn: "zh_cn";
|
|
1326
1333
|
zh_sg: "zh_sg";
|
|
1327
1334
|
zh_tw: "zh_tw";
|
|
1328
|
-
hr: "hr";
|
|
1329
1335
|
cs: "cs";
|
|
1330
1336
|
da: "da";
|
|
1331
1337
|
nl_be: "nl_be";
|
|
@@ -1360,7 +1366,6 @@ export declare const organizationRoute: {
|
|
|
1360
1366
|
he: "he";
|
|
1361
1367
|
hi: "hi";
|
|
1362
1368
|
hu: "hu";
|
|
1363
|
-
is: "is";
|
|
1364
1369
|
ga: "ga";
|
|
1365
1370
|
it: "it";
|
|
1366
1371
|
it_ch: "it_ch";
|
|
@@ -1370,9 +1375,7 @@ export declare const organizationRoute: {
|
|
|
1370
1375
|
lv: "lv";
|
|
1371
1376
|
lt: "lt";
|
|
1372
1377
|
mk: "mk";
|
|
1373
|
-
ml: "ml";
|
|
1374
1378
|
ms: "ms";
|
|
1375
|
-
mt: "mt";
|
|
1376
1379
|
no: "no";
|
|
1377
1380
|
nb: "nb";
|
|
1378
1381
|
nn: "nn";
|
|
@@ -1403,8 +1406,6 @@ export declare const organizationRoute: {
|
|
|
1403
1406
|
es: "es";
|
|
1404
1407
|
sv: "sv";
|
|
1405
1408
|
sv_fi: "sv_fi";
|
|
1406
|
-
th: "th";
|
|
1407
|
-
tr: "tr";
|
|
1408
1409
|
uk: "uk";
|
|
1409
1410
|
ur: "ur";
|
|
1410
1411
|
vi: "vi";
|
|
@@ -1412,7 +1413,6 @@ export declare const organizationRoute: {
|
|
|
1412
1413
|
ji: "ji";
|
|
1413
1414
|
zu: "zu";
|
|
1414
1415
|
}>>;
|
|
1415
|
-
hostname: z.ZodOptional<z.ZodOptional<z.ZodCoercedString<unknown>>>;
|
|
1416
1416
|
countriesShipping: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1417
1417
|
stripeAccountId: z.ZodOptional<z.ZodOptional<z.ZodCoercedString<unknown>>>;
|
|
1418
1418
|
enableHostCheckout: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1420,7 +1420,13 @@ export declare const organizationRoute: {
|
|
|
1420
1420
|
isAcceptingOrders: z.ZodOptional<z.ZodBoolean>;
|
|
1421
1421
|
isAcceptingReservations: z.ZodOptional<z.ZodBoolean>;
|
|
1422
1422
|
supportedLocales: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1423
|
+
hr: "hr";
|
|
1424
|
+
th: "th";
|
|
1425
|
+
tr: "tr";
|
|
1423
1426
|
id: "id";
|
|
1427
|
+
is: "is";
|
|
1428
|
+
mt: "mt";
|
|
1429
|
+
ml: "ml";
|
|
1424
1430
|
af: "af";
|
|
1425
1431
|
sq: "sq";
|
|
1426
1432
|
ar_dz: "ar_dz";
|
|
@@ -1447,7 +1453,6 @@ export declare const organizationRoute: {
|
|
|
1447
1453
|
zh_cn: "zh_cn";
|
|
1448
1454
|
zh_sg: "zh_sg";
|
|
1449
1455
|
zh_tw: "zh_tw";
|
|
1450
|
-
hr: "hr";
|
|
1451
1456
|
cs: "cs";
|
|
1452
1457
|
da: "da";
|
|
1453
1458
|
nl_be: "nl_be";
|
|
@@ -1482,7 +1487,6 @@ export declare const organizationRoute: {
|
|
|
1482
1487
|
he: "he";
|
|
1483
1488
|
hi: "hi";
|
|
1484
1489
|
hu: "hu";
|
|
1485
|
-
is: "is";
|
|
1486
1490
|
ga: "ga";
|
|
1487
1491
|
it: "it";
|
|
1488
1492
|
it_ch: "it_ch";
|
|
@@ -1492,9 +1496,7 @@ export declare const organizationRoute: {
|
|
|
1492
1496
|
lv: "lv";
|
|
1493
1497
|
lt: "lt";
|
|
1494
1498
|
mk: "mk";
|
|
1495
|
-
ml: "ml";
|
|
1496
1499
|
ms: "ms";
|
|
1497
|
-
mt: "mt";
|
|
1498
1500
|
no: "no";
|
|
1499
1501
|
nb: "nb";
|
|
1500
1502
|
nn: "nn";
|
|
@@ -1525,8 +1527,6 @@ export declare const organizationRoute: {
|
|
|
1525
1527
|
es: "es";
|
|
1526
1528
|
sv: "sv";
|
|
1527
1529
|
sv_fi: "sv_fi";
|
|
1528
|
-
th: "th";
|
|
1529
|
-
tr: "tr";
|
|
1530
1530
|
uk: "uk";
|
|
1531
1531
|
ur: "ur";
|
|
1532
1532
|
vi: "vi";
|
|
@@ -1624,7 +1624,13 @@ export declare const organizationRoute: {
|
|
|
1624
1624
|
isAcceptingReservations: z.ZodBoolean;
|
|
1625
1625
|
isOpen: z.ZodDefault<z.ZodBoolean>;
|
|
1626
1626
|
defaultLocale: z.ZodEnum<{
|
|
1627
|
+
hr: "hr";
|
|
1628
|
+
th: "th";
|
|
1629
|
+
tr: "tr";
|
|
1627
1630
|
id: "id";
|
|
1631
|
+
is: "is";
|
|
1632
|
+
mt: "mt";
|
|
1633
|
+
ml: "ml";
|
|
1628
1634
|
af: "af";
|
|
1629
1635
|
sq: "sq";
|
|
1630
1636
|
ar_dz: "ar_dz";
|
|
@@ -1651,7 +1657,6 @@ export declare const organizationRoute: {
|
|
|
1651
1657
|
zh_cn: "zh_cn";
|
|
1652
1658
|
zh_sg: "zh_sg";
|
|
1653
1659
|
zh_tw: "zh_tw";
|
|
1654
|
-
hr: "hr";
|
|
1655
1660
|
cs: "cs";
|
|
1656
1661
|
da: "da";
|
|
1657
1662
|
nl_be: "nl_be";
|
|
@@ -1686,7 +1691,6 @@ export declare const organizationRoute: {
|
|
|
1686
1691
|
he: "he";
|
|
1687
1692
|
hi: "hi";
|
|
1688
1693
|
hu: "hu";
|
|
1689
|
-
is: "is";
|
|
1690
1694
|
ga: "ga";
|
|
1691
1695
|
it: "it";
|
|
1692
1696
|
it_ch: "it_ch";
|
|
@@ -1696,9 +1700,7 @@ export declare const organizationRoute: {
|
|
|
1696
1700
|
lv: "lv";
|
|
1697
1701
|
lt: "lt";
|
|
1698
1702
|
mk: "mk";
|
|
1699
|
-
ml: "ml";
|
|
1700
1703
|
ms: "ms";
|
|
1701
|
-
mt: "mt";
|
|
1702
1704
|
no: "no";
|
|
1703
1705
|
nb: "nb";
|
|
1704
1706
|
nn: "nn";
|
|
@@ -1729,8 +1731,6 @@ export declare const organizationRoute: {
|
|
|
1729
1731
|
es: "es";
|
|
1730
1732
|
sv: "sv";
|
|
1731
1733
|
sv_fi: "sv_fi";
|
|
1732
|
-
th: "th";
|
|
1733
|
-
tr: "tr";
|
|
1734
1734
|
uk: "uk";
|
|
1735
1735
|
ur: "ur";
|
|
1736
1736
|
vi: "vi";
|
|
@@ -1739,7 +1739,13 @@ export declare const organizationRoute: {
|
|
|
1739
1739
|
zu: "zu";
|
|
1740
1740
|
}>;
|
|
1741
1741
|
supportedLocales: z.ZodArray<z.ZodEnum<{
|
|
1742
|
+
hr: "hr";
|
|
1743
|
+
th: "th";
|
|
1744
|
+
tr: "tr";
|
|
1742
1745
|
id: "id";
|
|
1746
|
+
is: "is";
|
|
1747
|
+
mt: "mt";
|
|
1748
|
+
ml: "ml";
|
|
1743
1749
|
af: "af";
|
|
1744
1750
|
sq: "sq";
|
|
1745
1751
|
ar_dz: "ar_dz";
|
|
@@ -1766,7 +1772,6 @@ export declare const organizationRoute: {
|
|
|
1766
1772
|
zh_cn: "zh_cn";
|
|
1767
1773
|
zh_sg: "zh_sg";
|
|
1768
1774
|
zh_tw: "zh_tw";
|
|
1769
|
-
hr: "hr";
|
|
1770
1775
|
cs: "cs";
|
|
1771
1776
|
da: "da";
|
|
1772
1777
|
nl_be: "nl_be";
|
|
@@ -1801,7 +1806,6 @@ export declare const organizationRoute: {
|
|
|
1801
1806
|
he: "he";
|
|
1802
1807
|
hi: "hi";
|
|
1803
1808
|
hu: "hu";
|
|
1804
|
-
is: "is";
|
|
1805
1809
|
ga: "ga";
|
|
1806
1810
|
it: "it";
|
|
1807
1811
|
it_ch: "it_ch";
|
|
@@ -1811,9 +1815,7 @@ export declare const organizationRoute: {
|
|
|
1811
1815
|
lv: "lv";
|
|
1812
1816
|
lt: "lt";
|
|
1813
1817
|
mk: "mk";
|
|
1814
|
-
ml: "ml";
|
|
1815
1818
|
ms: "ms";
|
|
1816
|
-
mt: "mt";
|
|
1817
1819
|
no: "no";
|
|
1818
1820
|
nb: "nb";
|
|
1819
1821
|
nn: "nn";
|
|
@@ -1844,8 +1846,6 @@ export declare const organizationRoute: {
|
|
|
1844
1846
|
es: "es";
|
|
1845
1847
|
sv: "sv";
|
|
1846
1848
|
sv_fi: "sv_fi";
|
|
1847
|
-
th: "th";
|
|
1848
|
-
tr: "tr";
|
|
1849
1849
|
uk: "uk";
|
|
1850
1850
|
ur: "ur";
|
|
1851
1851
|
vi: "vi";
|