@shophost/rest-api 2.0.61 → 2.0.63
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 +9 -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 +14 -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/features/webhook/webhook.route.d.ts +2 -2
- package/src/features/webhook/webhook.route.js +1 -1
- package/src/features/webhook/webhook.route.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
|
@@ -21,7 +21,13 @@ export declare const orderRoute: {
|
|
|
21
21
|
search: z.ZodOptional<z.ZodString>;
|
|
22
22
|
published: z.ZodOptional<z.ZodCoercedBoolean<unknown>>;
|
|
23
23
|
locale: z.ZodOptional<z.ZodEnum<{
|
|
24
|
+
hr: "hr";
|
|
25
|
+
th: "th";
|
|
26
|
+
tr: "tr";
|
|
24
27
|
id: "id";
|
|
28
|
+
is: "is";
|
|
29
|
+
mt: "mt";
|
|
30
|
+
ml: "ml";
|
|
25
31
|
af: "af";
|
|
26
32
|
sq: "sq";
|
|
27
33
|
ar_dz: "ar_dz";
|
|
@@ -48,7 +54,6 @@ export declare const orderRoute: {
|
|
|
48
54
|
zh_cn: "zh_cn";
|
|
49
55
|
zh_sg: "zh_sg";
|
|
50
56
|
zh_tw: "zh_tw";
|
|
51
|
-
hr: "hr";
|
|
52
57
|
cs: "cs";
|
|
53
58
|
da: "da";
|
|
54
59
|
nl_be: "nl_be";
|
|
@@ -83,7 +88,6 @@ export declare const orderRoute: {
|
|
|
83
88
|
he: "he";
|
|
84
89
|
hi: "hi";
|
|
85
90
|
hu: "hu";
|
|
86
|
-
is: "is";
|
|
87
91
|
ga: "ga";
|
|
88
92
|
it: "it";
|
|
89
93
|
it_ch: "it_ch";
|
|
@@ -93,9 +97,7 @@ export declare const orderRoute: {
|
|
|
93
97
|
lv: "lv";
|
|
94
98
|
lt: "lt";
|
|
95
99
|
mk: "mk";
|
|
96
|
-
ml: "ml";
|
|
97
100
|
ms: "ms";
|
|
98
|
-
mt: "mt";
|
|
99
101
|
no: "no";
|
|
100
102
|
nb: "nb";
|
|
101
103
|
nn: "nn";
|
|
@@ -126,8 +128,6 @@ export declare const orderRoute: {
|
|
|
126
128
|
es: "es";
|
|
127
129
|
sv: "sv";
|
|
128
130
|
sv_fi: "sv_fi";
|
|
129
|
-
th: "th";
|
|
130
|
-
tr: "tr";
|
|
131
131
|
uk: "uk";
|
|
132
132
|
ur: "ur";
|
|
133
133
|
vi: "vi";
|
|
@@ -159,7 +159,13 @@ export declare const orderRoute: {
|
|
|
159
159
|
items: z.ZodArray<z.ZodObject<{
|
|
160
160
|
translations: z.ZodArray<z.ZodObject<{
|
|
161
161
|
locale: z.ZodEnum<{
|
|
162
|
+
hr: "hr";
|
|
163
|
+
th: "th";
|
|
164
|
+
tr: "tr";
|
|
162
165
|
id: "id";
|
|
166
|
+
is: "is";
|
|
167
|
+
mt: "mt";
|
|
168
|
+
ml: "ml";
|
|
163
169
|
af: "af";
|
|
164
170
|
sq: "sq";
|
|
165
171
|
ar_dz: "ar_dz";
|
|
@@ -186,7 +192,6 @@ export declare const orderRoute: {
|
|
|
186
192
|
zh_cn: "zh_cn";
|
|
187
193
|
zh_sg: "zh_sg";
|
|
188
194
|
zh_tw: "zh_tw";
|
|
189
|
-
hr: "hr";
|
|
190
195
|
cs: "cs";
|
|
191
196
|
da: "da";
|
|
192
197
|
nl_be: "nl_be";
|
|
@@ -221,7 +226,6 @@ export declare const orderRoute: {
|
|
|
221
226
|
he: "he";
|
|
222
227
|
hi: "hi";
|
|
223
228
|
hu: "hu";
|
|
224
|
-
is: "is";
|
|
225
229
|
ga: "ga";
|
|
226
230
|
it: "it";
|
|
227
231
|
it_ch: "it_ch";
|
|
@@ -231,9 +235,7 @@ export declare const orderRoute: {
|
|
|
231
235
|
lv: "lv";
|
|
232
236
|
lt: "lt";
|
|
233
237
|
mk: "mk";
|
|
234
|
-
ml: "ml";
|
|
235
238
|
ms: "ms";
|
|
236
|
-
mt: "mt";
|
|
237
239
|
no: "no";
|
|
238
240
|
nb: "nb";
|
|
239
241
|
nn: "nn";
|
|
@@ -264,8 +266,6 @@ export declare const orderRoute: {
|
|
|
264
266
|
es: "es";
|
|
265
267
|
sv: "sv";
|
|
266
268
|
sv_fi: "sv_fi";
|
|
267
|
-
th: "th";
|
|
268
|
-
tr: "tr";
|
|
269
269
|
uk: "uk";
|
|
270
270
|
ur: "ur";
|
|
271
271
|
vi: "vi";
|
|
@@ -466,7 +466,7 @@ export declare const orderRoute: {
|
|
|
466
466
|
expiresAt: Date;
|
|
467
467
|
items: {
|
|
468
468
|
translations: {
|
|
469
|
-
locale: "id" | "af" | "sq" | "ar_dz" | "ar_bh" | "ar_eg" | "ar_iq" | "ar_jo" | "ar_kw" | "ar_lb" | "ar_ly" | "ar_ma" | "ar_om" | "ar_qa" | "ar_sa" | "ar_sy" | "ar_tn" | "ar_ae" | "ar_ye" | "eu" | "be" | "bg" | "ca" | "zh_hk" | "zh_cn" | "zh_sg" | "zh_tw" | "
|
|
469
|
+
locale: "hr" | "th" | "tr" | "id" | "is" | "mt" | "ml" | "af" | "sq" | "ar_dz" | "ar_bh" | "ar_eg" | "ar_iq" | "ar_jo" | "ar_kw" | "ar_lb" | "ar_ly" | "ar_ma" | "ar_om" | "ar_qa" | "ar_sa" | "ar_sy" | "ar_tn" | "ar_ae" | "ar_ye" | "eu" | "be" | "bg" | "ca" | "zh_hk" | "zh_cn" | "zh_sg" | "zh_tw" | "cs" | "da" | "nl_be" | "nl" | "en" | "en_au" | "en_bz" | "en_ca" | "en_ie" | "en_jm" | "en_nz" | "en_za" | "en_tt" | "en_gb" | "en_us" | "et" | "fo" | "fa" | "fi" | "fr_be" | "fr_ca" | "fr_lu" | "fr" | "fr_ch" | "gd" | "de_at" | "de_li" | "de_lu" | "de" | "de_ch" | "el" | "he" | "hi" | "hu" | "ga" | "it" | "it_ch" | "ja" | "ko" | "ku" | "lv" | "lt" | "mk" | "ms" | "no" | "nb" | "nn" | "pl" | "pt_br" | "pt" | "pa" | "rm" | "ro" | "ro_md" | "ru" | "ru_md" | "sr" | "sk" | "sl" | "sb" | "es_ar" | "es_bo" | "es_cl" | "es_co" | "es_cr" | "es_do" | "es_ec" | "es_sv" | "es_gt" | "es_hn" | "es_mx" | "es" | "sv" | "sv_fi" | "uk" | "ur" | "vi" | "cy" | "ji" | "zu";
|
|
470
470
|
title: string;
|
|
471
471
|
subtitle: string;
|
|
472
472
|
}[];
|
|
@@ -572,7 +572,7 @@ export declare const orderRoute: {
|
|
|
572
572
|
expiresAt: Date;
|
|
573
573
|
items: {
|
|
574
574
|
translations: {
|
|
575
|
-
locale: "id" | "af" | "sq" | "ar_dz" | "ar_bh" | "ar_eg" | "ar_iq" | "ar_jo" | "ar_kw" | "ar_lb" | "ar_ly" | "ar_ma" | "ar_om" | "ar_qa" | "ar_sa" | "ar_sy" | "ar_tn" | "ar_ae" | "ar_ye" | "eu" | "be" | "bg" | "ca" | "zh_hk" | "zh_cn" | "zh_sg" | "zh_tw" | "
|
|
575
|
+
locale: "hr" | "th" | "tr" | "id" | "is" | "mt" | "ml" | "af" | "sq" | "ar_dz" | "ar_bh" | "ar_eg" | "ar_iq" | "ar_jo" | "ar_kw" | "ar_lb" | "ar_ly" | "ar_ma" | "ar_om" | "ar_qa" | "ar_sa" | "ar_sy" | "ar_tn" | "ar_ae" | "ar_ye" | "eu" | "be" | "bg" | "ca" | "zh_hk" | "zh_cn" | "zh_sg" | "zh_tw" | "cs" | "da" | "nl_be" | "nl" | "en" | "en_au" | "en_bz" | "en_ca" | "en_ie" | "en_jm" | "en_nz" | "en_za" | "en_tt" | "en_gb" | "en_us" | "et" | "fo" | "fa" | "fi" | "fr_be" | "fr_ca" | "fr_lu" | "fr" | "fr_ch" | "gd" | "de_at" | "de_li" | "de_lu" | "de" | "de_ch" | "el" | "he" | "hi" | "hu" | "ga" | "it" | "it_ch" | "ja" | "ko" | "ku" | "lv" | "lt" | "mk" | "ms" | "no" | "nb" | "nn" | "pl" | "pt_br" | "pt" | "pa" | "rm" | "ro" | "ro_md" | "ru" | "ru_md" | "sr" | "sk" | "sl" | "sb" | "es_ar" | "es_bo" | "es_cl" | "es_co" | "es_cr" | "es_do" | "es_ec" | "es_sv" | "es_gt" | "es_hn" | "es_mx" | "es" | "sv" | "sv_fi" | "uk" | "ur" | "vi" | "cy" | "ji" | "zu";
|
|
576
576
|
title: string;
|
|
577
577
|
subtitle: string;
|
|
578
578
|
}[];
|
|
@@ -736,7 +736,13 @@ export declare const orderRoute: {
|
|
|
736
736
|
search: z.ZodOptional<z.ZodString>;
|
|
737
737
|
published: z.ZodOptional<z.ZodCoercedBoolean<unknown>>;
|
|
738
738
|
locale: z.ZodOptional<z.ZodEnum<{
|
|
739
|
+
hr: "hr";
|
|
740
|
+
th: "th";
|
|
741
|
+
tr: "tr";
|
|
739
742
|
id: "id";
|
|
743
|
+
is: "is";
|
|
744
|
+
mt: "mt";
|
|
745
|
+
ml: "ml";
|
|
740
746
|
af: "af";
|
|
741
747
|
sq: "sq";
|
|
742
748
|
ar_dz: "ar_dz";
|
|
@@ -763,7 +769,6 @@ export declare const orderRoute: {
|
|
|
763
769
|
zh_cn: "zh_cn";
|
|
764
770
|
zh_sg: "zh_sg";
|
|
765
771
|
zh_tw: "zh_tw";
|
|
766
|
-
hr: "hr";
|
|
767
772
|
cs: "cs";
|
|
768
773
|
da: "da";
|
|
769
774
|
nl_be: "nl_be";
|
|
@@ -798,7 +803,6 @@ export declare const orderRoute: {
|
|
|
798
803
|
he: "he";
|
|
799
804
|
hi: "hi";
|
|
800
805
|
hu: "hu";
|
|
801
|
-
is: "is";
|
|
802
806
|
ga: "ga";
|
|
803
807
|
it: "it";
|
|
804
808
|
it_ch: "it_ch";
|
|
@@ -808,9 +812,7 @@ export declare const orderRoute: {
|
|
|
808
812
|
lv: "lv";
|
|
809
813
|
lt: "lt";
|
|
810
814
|
mk: "mk";
|
|
811
|
-
ml: "ml";
|
|
812
815
|
ms: "ms";
|
|
813
|
-
mt: "mt";
|
|
814
816
|
no: "no";
|
|
815
817
|
nb: "nb";
|
|
816
818
|
nn: "nn";
|
|
@@ -841,8 +843,6 @@ export declare const orderRoute: {
|
|
|
841
843
|
es: "es";
|
|
842
844
|
sv: "sv";
|
|
843
845
|
sv_fi: "sv_fi";
|
|
844
|
-
th: "th";
|
|
845
|
-
tr: "tr";
|
|
846
846
|
uk: "uk";
|
|
847
847
|
ur: "ur";
|
|
848
848
|
vi: "vi";
|
|
@@ -874,7 +874,13 @@ export declare const orderRoute: {
|
|
|
874
874
|
items: z.ZodArray<z.ZodObject<{
|
|
875
875
|
translations: z.ZodArray<z.ZodObject<{
|
|
876
876
|
locale: z.ZodEnum<{
|
|
877
|
+
hr: "hr";
|
|
878
|
+
th: "th";
|
|
879
|
+
tr: "tr";
|
|
877
880
|
id: "id";
|
|
881
|
+
is: "is";
|
|
882
|
+
mt: "mt";
|
|
883
|
+
ml: "ml";
|
|
878
884
|
af: "af";
|
|
879
885
|
sq: "sq";
|
|
880
886
|
ar_dz: "ar_dz";
|
|
@@ -901,7 +907,6 @@ export declare const orderRoute: {
|
|
|
901
907
|
zh_cn: "zh_cn";
|
|
902
908
|
zh_sg: "zh_sg";
|
|
903
909
|
zh_tw: "zh_tw";
|
|
904
|
-
hr: "hr";
|
|
905
910
|
cs: "cs";
|
|
906
911
|
da: "da";
|
|
907
912
|
nl_be: "nl_be";
|
|
@@ -936,7 +941,6 @@ export declare const orderRoute: {
|
|
|
936
941
|
he: "he";
|
|
937
942
|
hi: "hi";
|
|
938
943
|
hu: "hu";
|
|
939
|
-
is: "is";
|
|
940
944
|
ga: "ga";
|
|
941
945
|
it: "it";
|
|
942
946
|
it_ch: "it_ch";
|
|
@@ -946,9 +950,7 @@ export declare const orderRoute: {
|
|
|
946
950
|
lv: "lv";
|
|
947
951
|
lt: "lt";
|
|
948
952
|
mk: "mk";
|
|
949
|
-
ml: "ml";
|
|
950
953
|
ms: "ms";
|
|
951
|
-
mt: "mt";
|
|
952
954
|
no: "no";
|
|
953
955
|
nb: "nb";
|
|
954
956
|
nn: "nn";
|
|
@@ -979,8 +981,6 @@ export declare const orderRoute: {
|
|
|
979
981
|
es: "es";
|
|
980
982
|
sv: "sv";
|
|
981
983
|
sv_fi: "sv_fi";
|
|
982
|
-
th: "th";
|
|
983
|
-
tr: "tr";
|
|
984
984
|
uk: "uk";
|
|
985
985
|
ur: "ur";
|
|
986
986
|
vi: "vi";
|
|
@@ -1181,7 +1181,7 @@ export declare const orderRoute: {
|
|
|
1181
1181
|
expiresAt: Date;
|
|
1182
1182
|
items: {
|
|
1183
1183
|
translations: {
|
|
1184
|
-
locale: "id" | "af" | "sq" | "ar_dz" | "ar_bh" | "ar_eg" | "ar_iq" | "ar_jo" | "ar_kw" | "ar_lb" | "ar_ly" | "ar_ma" | "ar_om" | "ar_qa" | "ar_sa" | "ar_sy" | "ar_tn" | "ar_ae" | "ar_ye" | "eu" | "be" | "bg" | "ca" | "zh_hk" | "zh_cn" | "zh_sg" | "zh_tw" | "
|
|
1184
|
+
locale: "hr" | "th" | "tr" | "id" | "is" | "mt" | "ml" | "af" | "sq" | "ar_dz" | "ar_bh" | "ar_eg" | "ar_iq" | "ar_jo" | "ar_kw" | "ar_lb" | "ar_ly" | "ar_ma" | "ar_om" | "ar_qa" | "ar_sa" | "ar_sy" | "ar_tn" | "ar_ae" | "ar_ye" | "eu" | "be" | "bg" | "ca" | "zh_hk" | "zh_cn" | "zh_sg" | "zh_tw" | "cs" | "da" | "nl_be" | "nl" | "en" | "en_au" | "en_bz" | "en_ca" | "en_ie" | "en_jm" | "en_nz" | "en_za" | "en_tt" | "en_gb" | "en_us" | "et" | "fo" | "fa" | "fi" | "fr_be" | "fr_ca" | "fr_lu" | "fr" | "fr_ch" | "gd" | "de_at" | "de_li" | "de_lu" | "de" | "de_ch" | "el" | "he" | "hi" | "hu" | "ga" | "it" | "it_ch" | "ja" | "ko" | "ku" | "lv" | "lt" | "mk" | "ms" | "no" | "nb" | "nn" | "pl" | "pt_br" | "pt" | "pa" | "rm" | "ro" | "ro_md" | "ru" | "ru_md" | "sr" | "sk" | "sl" | "sb" | "es_ar" | "es_bo" | "es_cl" | "es_co" | "es_cr" | "es_do" | "es_ec" | "es_sv" | "es_gt" | "es_hn" | "es_mx" | "es" | "sv" | "sv_fi" | "uk" | "ur" | "vi" | "cy" | "ji" | "zu";
|
|
1185
1185
|
title: string;
|
|
1186
1186
|
subtitle: string;
|
|
1187
1187
|
}[];
|
|
@@ -1287,7 +1287,7 @@ export declare const orderRoute: {
|
|
|
1287
1287
|
expiresAt: Date;
|
|
1288
1288
|
items: {
|
|
1289
1289
|
translations: {
|
|
1290
|
-
locale: "id" | "af" | "sq" | "ar_dz" | "ar_bh" | "ar_eg" | "ar_iq" | "ar_jo" | "ar_kw" | "ar_lb" | "ar_ly" | "ar_ma" | "ar_om" | "ar_qa" | "ar_sa" | "ar_sy" | "ar_tn" | "ar_ae" | "ar_ye" | "eu" | "be" | "bg" | "ca" | "zh_hk" | "zh_cn" | "zh_sg" | "zh_tw" | "
|
|
1290
|
+
locale: "hr" | "th" | "tr" | "id" | "is" | "mt" | "ml" | "af" | "sq" | "ar_dz" | "ar_bh" | "ar_eg" | "ar_iq" | "ar_jo" | "ar_kw" | "ar_lb" | "ar_ly" | "ar_ma" | "ar_om" | "ar_qa" | "ar_sa" | "ar_sy" | "ar_tn" | "ar_ae" | "ar_ye" | "eu" | "be" | "bg" | "ca" | "zh_hk" | "zh_cn" | "zh_sg" | "zh_tw" | "cs" | "da" | "nl_be" | "nl" | "en" | "en_au" | "en_bz" | "en_ca" | "en_ie" | "en_jm" | "en_nz" | "en_za" | "en_tt" | "en_gb" | "en_us" | "et" | "fo" | "fa" | "fi" | "fr_be" | "fr_ca" | "fr_lu" | "fr" | "fr_ch" | "gd" | "de_at" | "de_li" | "de_lu" | "de" | "de_ch" | "el" | "he" | "hi" | "hu" | "ga" | "it" | "it_ch" | "ja" | "ko" | "ku" | "lv" | "lt" | "mk" | "ms" | "no" | "nb" | "nn" | "pl" | "pt_br" | "pt" | "pa" | "rm" | "ro" | "ro_md" | "ru" | "ru_md" | "sr" | "sk" | "sl" | "sb" | "es_ar" | "es_bo" | "es_cl" | "es_co" | "es_cr" | "es_do" | "es_ec" | "es_sv" | "es_gt" | "es_hn" | "es_mx" | "es" | "sv" | "sv_fi" | "uk" | "ur" | "vi" | "cy" | "ji" | "zu";
|
|
1291
1291
|
title: string;
|
|
1292
1292
|
subtitle: string;
|
|
1293
1293
|
}[];
|
|
@@ -1508,7 +1508,13 @@ export declare const orderRoute: {
|
|
|
1508
1508
|
items: z.ZodArray<z.ZodObject<{
|
|
1509
1509
|
translations: z.ZodArray<z.ZodObject<{
|
|
1510
1510
|
locale: z.ZodEnum<{
|
|
1511
|
+
hr: "hr";
|
|
1512
|
+
th: "th";
|
|
1513
|
+
tr: "tr";
|
|
1511
1514
|
id: "id";
|
|
1515
|
+
is: "is";
|
|
1516
|
+
mt: "mt";
|
|
1517
|
+
ml: "ml";
|
|
1512
1518
|
af: "af";
|
|
1513
1519
|
sq: "sq";
|
|
1514
1520
|
ar_dz: "ar_dz";
|
|
@@ -1535,7 +1541,6 @@ export declare const orderRoute: {
|
|
|
1535
1541
|
zh_cn: "zh_cn";
|
|
1536
1542
|
zh_sg: "zh_sg";
|
|
1537
1543
|
zh_tw: "zh_tw";
|
|
1538
|
-
hr: "hr";
|
|
1539
1544
|
cs: "cs";
|
|
1540
1545
|
da: "da";
|
|
1541
1546
|
nl_be: "nl_be";
|
|
@@ -1570,7 +1575,6 @@ export declare const orderRoute: {
|
|
|
1570
1575
|
he: "he";
|
|
1571
1576
|
hi: "hi";
|
|
1572
1577
|
hu: "hu";
|
|
1573
|
-
is: "is";
|
|
1574
1578
|
ga: "ga";
|
|
1575
1579
|
it: "it";
|
|
1576
1580
|
it_ch: "it_ch";
|
|
@@ -1580,9 +1584,7 @@ export declare const orderRoute: {
|
|
|
1580
1584
|
lv: "lv";
|
|
1581
1585
|
lt: "lt";
|
|
1582
1586
|
mk: "mk";
|
|
1583
|
-
ml: "ml";
|
|
1584
1587
|
ms: "ms";
|
|
1585
|
-
mt: "mt";
|
|
1586
1588
|
no: "no";
|
|
1587
1589
|
nb: "nb";
|
|
1588
1590
|
nn: "nn";
|
|
@@ -1613,8 +1615,6 @@ export declare const orderRoute: {
|
|
|
1613
1615
|
es: "es";
|
|
1614
1616
|
sv: "sv";
|
|
1615
1617
|
sv_fi: "sv_fi";
|
|
1616
|
-
th: "th";
|
|
1617
|
-
tr: "tr";
|
|
1618
1618
|
uk: "uk";
|
|
1619
1619
|
ur: "ur";
|
|
1620
1620
|
vi: "vi";
|
|
@@ -1815,7 +1815,7 @@ export declare const orderRoute: {
|
|
|
1815
1815
|
expiresAt: Date;
|
|
1816
1816
|
items: {
|
|
1817
1817
|
translations: {
|
|
1818
|
-
locale: "id" | "af" | "sq" | "ar_dz" | "ar_bh" | "ar_eg" | "ar_iq" | "ar_jo" | "ar_kw" | "ar_lb" | "ar_ly" | "ar_ma" | "ar_om" | "ar_qa" | "ar_sa" | "ar_sy" | "ar_tn" | "ar_ae" | "ar_ye" | "eu" | "be" | "bg" | "ca" | "zh_hk" | "zh_cn" | "zh_sg" | "zh_tw" | "
|
|
1818
|
+
locale: "hr" | "th" | "tr" | "id" | "is" | "mt" | "ml" | "af" | "sq" | "ar_dz" | "ar_bh" | "ar_eg" | "ar_iq" | "ar_jo" | "ar_kw" | "ar_lb" | "ar_ly" | "ar_ma" | "ar_om" | "ar_qa" | "ar_sa" | "ar_sy" | "ar_tn" | "ar_ae" | "ar_ye" | "eu" | "be" | "bg" | "ca" | "zh_hk" | "zh_cn" | "zh_sg" | "zh_tw" | "cs" | "da" | "nl_be" | "nl" | "en" | "en_au" | "en_bz" | "en_ca" | "en_ie" | "en_jm" | "en_nz" | "en_za" | "en_tt" | "en_gb" | "en_us" | "et" | "fo" | "fa" | "fi" | "fr_be" | "fr_ca" | "fr_lu" | "fr" | "fr_ch" | "gd" | "de_at" | "de_li" | "de_lu" | "de" | "de_ch" | "el" | "he" | "hi" | "hu" | "ga" | "it" | "it_ch" | "ja" | "ko" | "ku" | "lv" | "lt" | "mk" | "ms" | "no" | "nb" | "nn" | "pl" | "pt_br" | "pt" | "pa" | "rm" | "ro" | "ro_md" | "ru" | "ru_md" | "sr" | "sk" | "sl" | "sb" | "es_ar" | "es_bo" | "es_cl" | "es_co" | "es_cr" | "es_do" | "es_ec" | "es_sv" | "es_gt" | "es_hn" | "es_mx" | "es" | "sv" | "sv_fi" | "uk" | "ur" | "vi" | "cy" | "ji" | "zu";
|
|
1819
1819
|
title: string;
|
|
1820
1820
|
subtitle: string;
|
|
1821
1821
|
}[];
|
|
@@ -1921,7 +1921,7 @@ export declare const orderRoute: {
|
|
|
1921
1921
|
expiresAt: Date;
|
|
1922
1922
|
items: {
|
|
1923
1923
|
translations: {
|
|
1924
|
-
locale: "id" | "af" | "sq" | "ar_dz" | "ar_bh" | "ar_eg" | "ar_iq" | "ar_jo" | "ar_kw" | "ar_lb" | "ar_ly" | "ar_ma" | "ar_om" | "ar_qa" | "ar_sa" | "ar_sy" | "ar_tn" | "ar_ae" | "ar_ye" | "eu" | "be" | "bg" | "ca" | "zh_hk" | "zh_cn" | "zh_sg" | "zh_tw" | "
|
|
1924
|
+
locale: "hr" | "th" | "tr" | "id" | "is" | "mt" | "ml" | "af" | "sq" | "ar_dz" | "ar_bh" | "ar_eg" | "ar_iq" | "ar_jo" | "ar_kw" | "ar_lb" | "ar_ly" | "ar_ma" | "ar_om" | "ar_qa" | "ar_sa" | "ar_sy" | "ar_tn" | "ar_ae" | "ar_ye" | "eu" | "be" | "bg" | "ca" | "zh_hk" | "zh_cn" | "zh_sg" | "zh_tw" | "cs" | "da" | "nl_be" | "nl" | "en" | "en_au" | "en_bz" | "en_ca" | "en_ie" | "en_jm" | "en_nz" | "en_za" | "en_tt" | "en_gb" | "en_us" | "et" | "fo" | "fa" | "fi" | "fr_be" | "fr_ca" | "fr_lu" | "fr" | "fr_ch" | "gd" | "de_at" | "de_li" | "de_lu" | "de" | "de_ch" | "el" | "he" | "hi" | "hu" | "ga" | "it" | "it_ch" | "ja" | "ko" | "ku" | "lv" | "lt" | "mk" | "ms" | "no" | "nb" | "nn" | "pl" | "pt_br" | "pt" | "pa" | "rm" | "ro" | "ro_md" | "ru" | "ru_md" | "sr" | "sk" | "sl" | "sb" | "es_ar" | "es_bo" | "es_cl" | "es_co" | "es_cr" | "es_do" | "es_ec" | "es_sv" | "es_gt" | "es_hn" | "es_mx" | "es" | "sv" | "sv_fi" | "uk" | "ur" | "vi" | "cy" | "ji" | "zu";
|
|
1925
1925
|
title: string;
|
|
1926
1926
|
subtitle: string;
|
|
1927
1927
|
}[];
|
|
@@ -2064,9 +2064,10 @@ export declare const orderRoute: {
|
|
|
2064
2064
|
products: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2065
2065
|
description: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
2066
2066
|
title: z.ZodDefault<z.ZodString>;
|
|
2067
|
-
currency: z.ZodString;
|
|
2068
|
-
id: z.ZodString;
|
|
2069
2067
|
createdAt: z.ZodDate;
|
|
2068
|
+
metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
2069
|
+
id: z.ZodString;
|
|
2070
|
+
currency: z.ZodString;
|
|
2070
2071
|
slug: z.ZodOptional<z.ZodString>;
|
|
2071
2072
|
publishedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
2072
2073
|
sku: z.ZodOptional<z.ZodString>;
|
|
@@ -2084,7 +2085,13 @@ export declare const orderRoute: {
|
|
|
2084
2085
|
title: z.ZodNullable<z.ZodDefault<z.ZodString>>;
|
|
2085
2086
|
id: z.ZodString;
|
|
2086
2087
|
defaultLocale: z.ZodOptional<z.ZodEnum<{
|
|
2088
|
+
hr: "hr";
|
|
2089
|
+
th: "th";
|
|
2090
|
+
tr: "tr";
|
|
2087
2091
|
id: "id";
|
|
2092
|
+
is: "is";
|
|
2093
|
+
mt: "mt";
|
|
2094
|
+
ml: "ml";
|
|
2088
2095
|
af: "af";
|
|
2089
2096
|
sq: "sq";
|
|
2090
2097
|
ar_dz: "ar_dz";
|
|
@@ -2111,7 +2118,6 @@ export declare const orderRoute: {
|
|
|
2111
2118
|
zh_cn: "zh_cn";
|
|
2112
2119
|
zh_sg: "zh_sg";
|
|
2113
2120
|
zh_tw: "zh_tw";
|
|
2114
|
-
hr: "hr";
|
|
2115
2121
|
cs: "cs";
|
|
2116
2122
|
da: "da";
|
|
2117
2123
|
nl_be: "nl_be";
|
|
@@ -2146,7 +2152,6 @@ export declare const orderRoute: {
|
|
|
2146
2152
|
he: "he";
|
|
2147
2153
|
hi: "hi";
|
|
2148
2154
|
hu: "hu";
|
|
2149
|
-
is: "is";
|
|
2150
2155
|
ga: "ga";
|
|
2151
2156
|
it: "it";
|
|
2152
2157
|
it_ch: "it_ch";
|
|
@@ -2156,9 +2161,7 @@ export declare const orderRoute: {
|
|
|
2156
2161
|
lv: "lv";
|
|
2157
2162
|
lt: "lt";
|
|
2158
2163
|
mk: "mk";
|
|
2159
|
-
ml: "ml";
|
|
2160
2164
|
ms: "ms";
|
|
2161
|
-
mt: "mt";
|
|
2162
2165
|
no: "no";
|
|
2163
2166
|
nb: "nb";
|
|
2164
2167
|
nn: "nn";
|
|
@@ -2189,8 +2192,6 @@ export declare const orderRoute: {
|
|
|
2189
2192
|
es: "es";
|
|
2190
2193
|
sv: "sv";
|
|
2191
2194
|
sv_fi: "sv_fi";
|
|
2192
|
-
th: "th";
|
|
2193
|
-
tr: "tr";
|
|
2194
2195
|
uk: "uk";
|
|
2195
2196
|
ur: "ur";
|
|
2196
2197
|
vi: "vi";
|
|
@@ -2211,7 +2212,6 @@ export declare const orderRoute: {
|
|
|
2211
2212
|
id: z.ZodString;
|
|
2212
2213
|
}, z.core.$strip>>>;
|
|
2213
2214
|
manufacturerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2214
|
-
metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
2215
2215
|
}, z.core.$strip>>;
|
|
2216
2216
|
shipping: z.ZodOptional<z.ZodNumber>;
|
|
2217
2217
|
subtotal: z.ZodNumber;
|
|
@@ -2298,7 +2298,13 @@ export declare const orderRoute: {
|
|
|
2298
2298
|
items: z.ZodArray<z.ZodObject<{
|
|
2299
2299
|
translations: z.ZodArray<z.ZodObject<{
|
|
2300
2300
|
locale: z.ZodEnum<{
|
|
2301
|
+
hr: "hr";
|
|
2302
|
+
th: "th";
|
|
2303
|
+
tr: "tr";
|
|
2301
2304
|
id: "id";
|
|
2305
|
+
is: "is";
|
|
2306
|
+
mt: "mt";
|
|
2307
|
+
ml: "ml";
|
|
2302
2308
|
af: "af";
|
|
2303
2309
|
sq: "sq";
|
|
2304
2310
|
ar_dz: "ar_dz";
|
|
@@ -2325,7 +2331,6 @@ export declare const orderRoute: {
|
|
|
2325
2331
|
zh_cn: "zh_cn";
|
|
2326
2332
|
zh_sg: "zh_sg";
|
|
2327
2333
|
zh_tw: "zh_tw";
|
|
2328
|
-
hr: "hr";
|
|
2329
2334
|
cs: "cs";
|
|
2330
2335
|
da: "da";
|
|
2331
2336
|
nl_be: "nl_be";
|
|
@@ -2360,7 +2365,6 @@ export declare const orderRoute: {
|
|
|
2360
2365
|
he: "he";
|
|
2361
2366
|
hi: "hi";
|
|
2362
2367
|
hu: "hu";
|
|
2363
|
-
is: "is";
|
|
2364
2368
|
ga: "ga";
|
|
2365
2369
|
it: "it";
|
|
2366
2370
|
it_ch: "it_ch";
|
|
@@ -2370,9 +2374,7 @@ export declare const orderRoute: {
|
|
|
2370
2374
|
lv: "lv";
|
|
2371
2375
|
lt: "lt";
|
|
2372
2376
|
mk: "mk";
|
|
2373
|
-
ml: "ml";
|
|
2374
2377
|
ms: "ms";
|
|
2375
|
-
mt: "mt";
|
|
2376
2378
|
no: "no";
|
|
2377
2379
|
nb: "nb";
|
|
2378
2380
|
nn: "nn";
|
|
@@ -2403,8 +2405,6 @@ export declare const orderRoute: {
|
|
|
2403
2405
|
es: "es";
|
|
2404
2406
|
sv: "sv";
|
|
2405
2407
|
sv_fi: "sv_fi";
|
|
2406
|
-
th: "th";
|
|
2407
|
-
tr: "tr";
|
|
2408
2408
|
uk: "uk";
|
|
2409
2409
|
ur: "ur";
|
|
2410
2410
|
vi: "vi";
|
|
@@ -2605,7 +2605,7 @@ export declare const orderRoute: {
|
|
|
2605
2605
|
expiresAt: Date;
|
|
2606
2606
|
items: {
|
|
2607
2607
|
translations: {
|
|
2608
|
-
locale: "id" | "af" | "sq" | "ar_dz" | "ar_bh" | "ar_eg" | "ar_iq" | "ar_jo" | "ar_kw" | "ar_lb" | "ar_ly" | "ar_ma" | "ar_om" | "ar_qa" | "ar_sa" | "ar_sy" | "ar_tn" | "ar_ae" | "ar_ye" | "eu" | "be" | "bg" | "ca" | "zh_hk" | "zh_cn" | "zh_sg" | "zh_tw" | "
|
|
2608
|
+
locale: "hr" | "th" | "tr" | "id" | "is" | "mt" | "ml" | "af" | "sq" | "ar_dz" | "ar_bh" | "ar_eg" | "ar_iq" | "ar_jo" | "ar_kw" | "ar_lb" | "ar_ly" | "ar_ma" | "ar_om" | "ar_qa" | "ar_sa" | "ar_sy" | "ar_tn" | "ar_ae" | "ar_ye" | "eu" | "be" | "bg" | "ca" | "zh_hk" | "zh_cn" | "zh_sg" | "zh_tw" | "cs" | "da" | "nl_be" | "nl" | "en" | "en_au" | "en_bz" | "en_ca" | "en_ie" | "en_jm" | "en_nz" | "en_za" | "en_tt" | "en_gb" | "en_us" | "et" | "fo" | "fa" | "fi" | "fr_be" | "fr_ca" | "fr_lu" | "fr" | "fr_ch" | "gd" | "de_at" | "de_li" | "de_lu" | "de" | "de_ch" | "el" | "he" | "hi" | "hu" | "ga" | "it" | "it_ch" | "ja" | "ko" | "ku" | "lv" | "lt" | "mk" | "ms" | "no" | "nb" | "nn" | "pl" | "pt_br" | "pt" | "pa" | "rm" | "ro" | "ro_md" | "ru" | "ru_md" | "sr" | "sk" | "sl" | "sb" | "es_ar" | "es_bo" | "es_cl" | "es_co" | "es_cr" | "es_do" | "es_ec" | "es_sv" | "es_gt" | "es_hn" | "es_mx" | "es" | "sv" | "sv_fi" | "uk" | "ur" | "vi" | "cy" | "ji" | "zu";
|
|
2609
2609
|
title: string;
|
|
2610
2610
|
subtitle: string;
|
|
2611
2611
|
}[];
|
|
@@ -2711,7 +2711,7 @@ export declare const orderRoute: {
|
|
|
2711
2711
|
expiresAt: Date;
|
|
2712
2712
|
items: {
|
|
2713
2713
|
translations: {
|
|
2714
|
-
locale: "id" | "af" | "sq" | "ar_dz" | "ar_bh" | "ar_eg" | "ar_iq" | "ar_jo" | "ar_kw" | "ar_lb" | "ar_ly" | "ar_ma" | "ar_om" | "ar_qa" | "ar_sa" | "ar_sy" | "ar_tn" | "ar_ae" | "ar_ye" | "eu" | "be" | "bg" | "ca" | "zh_hk" | "zh_cn" | "zh_sg" | "zh_tw" | "
|
|
2714
|
+
locale: "hr" | "th" | "tr" | "id" | "is" | "mt" | "ml" | "af" | "sq" | "ar_dz" | "ar_bh" | "ar_eg" | "ar_iq" | "ar_jo" | "ar_kw" | "ar_lb" | "ar_ly" | "ar_ma" | "ar_om" | "ar_qa" | "ar_sa" | "ar_sy" | "ar_tn" | "ar_ae" | "ar_ye" | "eu" | "be" | "bg" | "ca" | "zh_hk" | "zh_cn" | "zh_sg" | "zh_tw" | "cs" | "da" | "nl_be" | "nl" | "en" | "en_au" | "en_bz" | "en_ca" | "en_ie" | "en_jm" | "en_nz" | "en_za" | "en_tt" | "en_gb" | "en_us" | "et" | "fo" | "fa" | "fi" | "fr_be" | "fr_ca" | "fr_lu" | "fr" | "fr_ch" | "gd" | "de_at" | "de_li" | "de_lu" | "de" | "de_ch" | "el" | "he" | "hi" | "hu" | "ga" | "it" | "it_ch" | "ja" | "ko" | "ku" | "lv" | "lt" | "mk" | "ms" | "no" | "nb" | "nn" | "pl" | "pt_br" | "pt" | "pa" | "rm" | "ro" | "ro_md" | "ru" | "ru_md" | "sr" | "sk" | "sl" | "sb" | "es_ar" | "es_bo" | "es_cl" | "es_co" | "es_cr" | "es_do" | "es_ec" | "es_sv" | "es_gt" | "es_hn" | "es_mx" | "es" | "sv" | "sv_fi" | "uk" | "ur" | "vi" | "cy" | "ji" | "zu";
|
|
2715
2715
|
title: string;
|
|
2716
2716
|
subtitle: string;
|
|
2717
2717
|
}[];
|
|
@@ -2890,7 +2890,13 @@ export declare const orderRoute: {
|
|
|
2890
2890
|
items: z.ZodArray<z.ZodObject<{
|
|
2891
2891
|
translations: z.ZodArray<z.ZodObject<{
|
|
2892
2892
|
locale: z.ZodEnum<{
|
|
2893
|
+
hr: "hr";
|
|
2894
|
+
th: "th";
|
|
2895
|
+
tr: "tr";
|
|
2893
2896
|
id: "id";
|
|
2897
|
+
is: "is";
|
|
2898
|
+
mt: "mt";
|
|
2899
|
+
ml: "ml";
|
|
2894
2900
|
af: "af";
|
|
2895
2901
|
sq: "sq";
|
|
2896
2902
|
ar_dz: "ar_dz";
|
|
@@ -2917,7 +2923,6 @@ export declare const orderRoute: {
|
|
|
2917
2923
|
zh_cn: "zh_cn";
|
|
2918
2924
|
zh_sg: "zh_sg";
|
|
2919
2925
|
zh_tw: "zh_tw";
|
|
2920
|
-
hr: "hr";
|
|
2921
2926
|
cs: "cs";
|
|
2922
2927
|
da: "da";
|
|
2923
2928
|
nl_be: "nl_be";
|
|
@@ -2952,7 +2957,6 @@ export declare const orderRoute: {
|
|
|
2952
2957
|
he: "he";
|
|
2953
2958
|
hi: "hi";
|
|
2954
2959
|
hu: "hu";
|
|
2955
|
-
is: "is";
|
|
2956
2960
|
ga: "ga";
|
|
2957
2961
|
it: "it";
|
|
2958
2962
|
it_ch: "it_ch";
|
|
@@ -2962,9 +2966,7 @@ export declare const orderRoute: {
|
|
|
2962
2966
|
lv: "lv";
|
|
2963
2967
|
lt: "lt";
|
|
2964
2968
|
mk: "mk";
|
|
2965
|
-
ml: "ml";
|
|
2966
2969
|
ms: "ms";
|
|
2967
|
-
mt: "mt";
|
|
2968
2970
|
no: "no";
|
|
2969
2971
|
nb: "nb";
|
|
2970
2972
|
nn: "nn";
|
|
@@ -2995,8 +2997,6 @@ export declare const orderRoute: {
|
|
|
2995
2997
|
es: "es";
|
|
2996
2998
|
sv: "sv";
|
|
2997
2999
|
sv_fi: "sv_fi";
|
|
2998
|
-
th: "th";
|
|
2999
|
-
tr: "tr";
|
|
3000
3000
|
uk: "uk";
|
|
3001
3001
|
ur: "ur";
|
|
3002
3002
|
vi: "vi";
|
|
@@ -3197,7 +3197,7 @@ export declare const orderRoute: {
|
|
|
3197
3197
|
expiresAt: Date;
|
|
3198
3198
|
items: {
|
|
3199
3199
|
translations: {
|
|
3200
|
-
locale: "id" | "af" | "sq" | "ar_dz" | "ar_bh" | "ar_eg" | "ar_iq" | "ar_jo" | "ar_kw" | "ar_lb" | "ar_ly" | "ar_ma" | "ar_om" | "ar_qa" | "ar_sa" | "ar_sy" | "ar_tn" | "ar_ae" | "ar_ye" | "eu" | "be" | "bg" | "ca" | "zh_hk" | "zh_cn" | "zh_sg" | "zh_tw" | "
|
|
3200
|
+
locale: "hr" | "th" | "tr" | "id" | "is" | "mt" | "ml" | "af" | "sq" | "ar_dz" | "ar_bh" | "ar_eg" | "ar_iq" | "ar_jo" | "ar_kw" | "ar_lb" | "ar_ly" | "ar_ma" | "ar_om" | "ar_qa" | "ar_sa" | "ar_sy" | "ar_tn" | "ar_ae" | "ar_ye" | "eu" | "be" | "bg" | "ca" | "zh_hk" | "zh_cn" | "zh_sg" | "zh_tw" | "cs" | "da" | "nl_be" | "nl" | "en" | "en_au" | "en_bz" | "en_ca" | "en_ie" | "en_jm" | "en_nz" | "en_za" | "en_tt" | "en_gb" | "en_us" | "et" | "fo" | "fa" | "fi" | "fr_be" | "fr_ca" | "fr_lu" | "fr" | "fr_ch" | "gd" | "de_at" | "de_li" | "de_lu" | "de" | "de_ch" | "el" | "he" | "hi" | "hu" | "ga" | "it" | "it_ch" | "ja" | "ko" | "ku" | "lv" | "lt" | "mk" | "ms" | "no" | "nb" | "nn" | "pl" | "pt_br" | "pt" | "pa" | "rm" | "ro" | "ro_md" | "ru" | "ru_md" | "sr" | "sk" | "sl" | "sb" | "es_ar" | "es_bo" | "es_cl" | "es_co" | "es_cr" | "es_do" | "es_ec" | "es_sv" | "es_gt" | "es_hn" | "es_mx" | "es" | "sv" | "sv_fi" | "uk" | "ur" | "vi" | "cy" | "ji" | "zu";
|
|
3201
3201
|
title: string;
|
|
3202
3202
|
subtitle: string;
|
|
3203
3203
|
}[];
|
|
@@ -3303,7 +3303,7 @@ export declare const orderRoute: {
|
|
|
3303
3303
|
expiresAt: Date;
|
|
3304
3304
|
items: {
|
|
3305
3305
|
translations: {
|
|
3306
|
-
locale: "id" | "af" | "sq" | "ar_dz" | "ar_bh" | "ar_eg" | "ar_iq" | "ar_jo" | "ar_kw" | "ar_lb" | "ar_ly" | "ar_ma" | "ar_om" | "ar_qa" | "ar_sa" | "ar_sy" | "ar_tn" | "ar_ae" | "ar_ye" | "eu" | "be" | "bg" | "ca" | "zh_hk" | "zh_cn" | "zh_sg" | "zh_tw" | "
|
|
3306
|
+
locale: "hr" | "th" | "tr" | "id" | "is" | "mt" | "ml" | "af" | "sq" | "ar_dz" | "ar_bh" | "ar_eg" | "ar_iq" | "ar_jo" | "ar_kw" | "ar_lb" | "ar_ly" | "ar_ma" | "ar_om" | "ar_qa" | "ar_sa" | "ar_sy" | "ar_tn" | "ar_ae" | "ar_ye" | "eu" | "be" | "bg" | "ca" | "zh_hk" | "zh_cn" | "zh_sg" | "zh_tw" | "cs" | "da" | "nl_be" | "nl" | "en" | "en_au" | "en_bz" | "en_ca" | "en_ie" | "en_jm" | "en_nz" | "en_za" | "en_tt" | "en_gb" | "en_us" | "et" | "fo" | "fa" | "fi" | "fr_be" | "fr_ca" | "fr_lu" | "fr" | "fr_ch" | "gd" | "de_at" | "de_li" | "de_lu" | "de" | "de_ch" | "el" | "he" | "hi" | "hu" | "ga" | "it" | "it_ch" | "ja" | "ko" | "ku" | "lv" | "lt" | "mk" | "ms" | "no" | "nb" | "nn" | "pl" | "pt_br" | "pt" | "pa" | "rm" | "ro" | "ro_md" | "ru" | "ru_md" | "sr" | "sk" | "sl" | "sb" | "es_ar" | "es_bo" | "es_cl" | "es_co" | "es_cr" | "es_do" | "es_ec" | "es_sv" | "es_gt" | "es_hn" | "es_mx" | "es" | "sv" | "sv_fi" | "uk" | "ur" | "vi" | "cy" | "ji" | "zu";
|
|
3307
3307
|
title: string;
|
|
3308
3308
|
subtitle: string;
|
|
3309
3309
|
}[];
|