@shophost/rest-api 2.0.60 → 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 -11
- 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 -31
- 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
|
@@ -21,7 +21,13 @@ export declare const productRoute: {
|
|
|
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 productRoute: {
|
|
|
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 productRoute: {
|
|
|
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 productRoute: {
|
|
|
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 productRoute: {
|
|
|
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";
|
|
@@ -167,7 +167,13 @@ export declare const productRoute: {
|
|
|
167
167
|
selectMin: z.ZodCoercedNumber<unknown>;
|
|
168
168
|
selectMax: z.ZodCoercedNumber<unknown>;
|
|
169
169
|
defaultLocale: z.ZodOptional<z.ZodEnum<{
|
|
170
|
+
hr: "hr";
|
|
171
|
+
th: "th";
|
|
172
|
+
tr: "tr";
|
|
170
173
|
id: "id";
|
|
174
|
+
is: "is";
|
|
175
|
+
mt: "mt";
|
|
176
|
+
ml: "ml";
|
|
171
177
|
af: "af";
|
|
172
178
|
sq: "sq";
|
|
173
179
|
ar_dz: "ar_dz";
|
|
@@ -194,7 +200,6 @@ export declare const productRoute: {
|
|
|
194
200
|
zh_cn: "zh_cn";
|
|
195
201
|
zh_sg: "zh_sg";
|
|
196
202
|
zh_tw: "zh_tw";
|
|
197
|
-
hr: "hr";
|
|
198
203
|
cs: "cs";
|
|
199
204
|
da: "da";
|
|
200
205
|
nl_be: "nl_be";
|
|
@@ -229,7 +234,6 @@ export declare const productRoute: {
|
|
|
229
234
|
he: "he";
|
|
230
235
|
hi: "hi";
|
|
231
236
|
hu: "hu";
|
|
232
|
-
is: "is";
|
|
233
237
|
ga: "ga";
|
|
234
238
|
it: "it";
|
|
235
239
|
it_ch: "it_ch";
|
|
@@ -239,9 +243,7 @@ export declare const productRoute: {
|
|
|
239
243
|
lv: "lv";
|
|
240
244
|
lt: "lt";
|
|
241
245
|
mk: "mk";
|
|
242
|
-
ml: "ml";
|
|
243
246
|
ms: "ms";
|
|
244
|
-
mt: "mt";
|
|
245
247
|
no: "no";
|
|
246
248
|
nb: "nb";
|
|
247
249
|
nn: "nn";
|
|
@@ -272,8 +274,6 @@ export declare const productRoute: {
|
|
|
272
274
|
es: "es";
|
|
273
275
|
sv: "sv";
|
|
274
276
|
sv_fi: "sv_fi";
|
|
275
|
-
th: "th";
|
|
276
|
-
tr: "tr";
|
|
277
277
|
uk: "uk";
|
|
278
278
|
ur: "ur";
|
|
279
279
|
vi: "vi";
|
|
@@ -289,7 +289,13 @@ export declare const productRoute: {
|
|
|
289
289
|
}, z.core.$strip>>>;
|
|
290
290
|
translations: z.ZodArray<z.ZodObject<{
|
|
291
291
|
locale: z.ZodEnum<{
|
|
292
|
+
hr: "hr";
|
|
293
|
+
th: "th";
|
|
294
|
+
tr: "tr";
|
|
292
295
|
id: "id";
|
|
296
|
+
is: "is";
|
|
297
|
+
mt: "mt";
|
|
298
|
+
ml: "ml";
|
|
293
299
|
af: "af";
|
|
294
300
|
sq: "sq";
|
|
295
301
|
ar_dz: "ar_dz";
|
|
@@ -316,7 +322,6 @@ export declare const productRoute: {
|
|
|
316
322
|
zh_cn: "zh_cn";
|
|
317
323
|
zh_sg: "zh_sg";
|
|
318
324
|
zh_tw: "zh_tw";
|
|
319
|
-
hr: "hr";
|
|
320
325
|
cs: "cs";
|
|
321
326
|
da: "da";
|
|
322
327
|
nl_be: "nl_be";
|
|
@@ -351,7 +356,6 @@ export declare const productRoute: {
|
|
|
351
356
|
he: "he";
|
|
352
357
|
hi: "hi";
|
|
353
358
|
hu: "hu";
|
|
354
|
-
is: "is";
|
|
355
359
|
ga: "ga";
|
|
356
360
|
it: "it";
|
|
357
361
|
it_ch: "it_ch";
|
|
@@ -361,9 +365,7 @@ export declare const productRoute: {
|
|
|
361
365
|
lv: "lv";
|
|
362
366
|
lt: "lt";
|
|
363
367
|
mk: "mk";
|
|
364
|
-
ml: "ml";
|
|
365
368
|
ms: "ms";
|
|
366
|
-
mt: "mt";
|
|
367
369
|
no: "no";
|
|
368
370
|
nb: "nb";
|
|
369
371
|
nn: "nn";
|
|
@@ -394,8 +396,6 @@ export declare const productRoute: {
|
|
|
394
396
|
es: "es";
|
|
395
397
|
sv: "sv";
|
|
396
398
|
sv_fi: "sv_fi";
|
|
397
|
-
th: "th";
|
|
398
|
-
tr: "tr";
|
|
399
399
|
uk: "uk";
|
|
400
400
|
ur: "ur";
|
|
401
401
|
vi: "vi";
|
|
@@ -429,7 +429,13 @@ export declare const productRoute: {
|
|
|
429
429
|
publishedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
430
430
|
translations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
431
431
|
locale: z.ZodEnum<{
|
|
432
|
+
hr: "hr";
|
|
433
|
+
th: "th";
|
|
434
|
+
tr: "tr";
|
|
432
435
|
id: "id";
|
|
436
|
+
is: "is";
|
|
437
|
+
mt: "mt";
|
|
438
|
+
ml: "ml";
|
|
433
439
|
af: "af";
|
|
434
440
|
sq: "sq";
|
|
435
441
|
ar_dz: "ar_dz";
|
|
@@ -456,7 +462,6 @@ export declare const productRoute: {
|
|
|
456
462
|
zh_cn: "zh_cn";
|
|
457
463
|
zh_sg: "zh_sg";
|
|
458
464
|
zh_tw: "zh_tw";
|
|
459
|
-
hr: "hr";
|
|
460
465
|
cs: "cs";
|
|
461
466
|
da: "da";
|
|
462
467
|
nl_be: "nl_be";
|
|
@@ -491,7 +496,6 @@ export declare const productRoute: {
|
|
|
491
496
|
he: "he";
|
|
492
497
|
hi: "hi";
|
|
493
498
|
hu: "hu";
|
|
494
|
-
is: "is";
|
|
495
499
|
ga: "ga";
|
|
496
500
|
it: "it";
|
|
497
501
|
it_ch: "it_ch";
|
|
@@ -501,9 +505,7 @@ export declare const productRoute: {
|
|
|
501
505
|
lv: "lv";
|
|
502
506
|
lt: "lt";
|
|
503
507
|
mk: "mk";
|
|
504
|
-
ml: "ml";
|
|
505
508
|
ms: "ms";
|
|
506
|
-
mt: "mt";
|
|
507
509
|
no: "no";
|
|
508
510
|
nb: "nb";
|
|
509
511
|
nn: "nn";
|
|
@@ -534,8 +536,6 @@ export declare const productRoute: {
|
|
|
534
536
|
es: "es";
|
|
535
537
|
sv: "sv";
|
|
536
538
|
sv_fi: "sv_fi";
|
|
537
|
-
th: "th";
|
|
538
|
-
tr: "tr";
|
|
539
539
|
uk: "uk";
|
|
540
540
|
ur: "ur";
|
|
541
541
|
vi: "vi";
|
|
@@ -550,9 +550,10 @@ export declare const productRoute: {
|
|
|
550
550
|
}, z.core.$strip>, z.ZodObject<{
|
|
551
551
|
description: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
552
552
|
title: z.ZodDefault<z.ZodString>;
|
|
553
|
-
currency: z.ZodString;
|
|
554
|
-
id: z.ZodString;
|
|
555
553
|
createdAt: z.ZodDate;
|
|
554
|
+
metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
555
|
+
id: z.ZodString;
|
|
556
|
+
currency: z.ZodString;
|
|
556
557
|
slug: z.ZodOptional<z.ZodString>;
|
|
557
558
|
publishedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
558
559
|
sku: z.ZodOptional<z.ZodString>;
|
|
@@ -570,7 +571,13 @@ export declare const productRoute: {
|
|
|
570
571
|
title: z.ZodNullable<z.ZodDefault<z.ZodString>>;
|
|
571
572
|
id: z.ZodString;
|
|
572
573
|
defaultLocale: z.ZodOptional<z.ZodEnum<{
|
|
574
|
+
hr: "hr";
|
|
575
|
+
th: "th";
|
|
576
|
+
tr: "tr";
|
|
573
577
|
id: "id";
|
|
578
|
+
is: "is";
|
|
579
|
+
mt: "mt";
|
|
580
|
+
ml: "ml";
|
|
574
581
|
af: "af";
|
|
575
582
|
sq: "sq";
|
|
576
583
|
ar_dz: "ar_dz";
|
|
@@ -597,7 +604,6 @@ export declare const productRoute: {
|
|
|
597
604
|
zh_cn: "zh_cn";
|
|
598
605
|
zh_sg: "zh_sg";
|
|
599
606
|
zh_tw: "zh_tw";
|
|
600
|
-
hr: "hr";
|
|
601
607
|
cs: "cs";
|
|
602
608
|
da: "da";
|
|
603
609
|
nl_be: "nl_be";
|
|
@@ -632,7 +638,6 @@ export declare const productRoute: {
|
|
|
632
638
|
he: "he";
|
|
633
639
|
hi: "hi";
|
|
634
640
|
hu: "hu";
|
|
635
|
-
is: "is";
|
|
636
641
|
ga: "ga";
|
|
637
642
|
it: "it";
|
|
638
643
|
it_ch: "it_ch";
|
|
@@ -642,9 +647,7 @@ export declare const productRoute: {
|
|
|
642
647
|
lv: "lv";
|
|
643
648
|
lt: "lt";
|
|
644
649
|
mk: "mk";
|
|
645
|
-
ml: "ml";
|
|
646
650
|
ms: "ms";
|
|
647
|
-
mt: "mt";
|
|
648
651
|
no: "no";
|
|
649
652
|
nb: "nb";
|
|
650
653
|
nn: "nn";
|
|
@@ -675,8 +678,6 @@ export declare const productRoute: {
|
|
|
675
678
|
es: "es";
|
|
676
679
|
sv: "sv";
|
|
677
680
|
sv_fi: "sv_fi";
|
|
678
|
-
th: "th";
|
|
679
|
-
tr: "tr";
|
|
680
681
|
uk: "uk";
|
|
681
682
|
ur: "ur";
|
|
682
683
|
vi: "vi";
|
|
@@ -697,7 +698,6 @@ export declare const productRoute: {
|
|
|
697
698
|
id: z.ZodString;
|
|
698
699
|
}, z.core.$strip>>>;
|
|
699
700
|
manufacturerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
700
|
-
metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
701
701
|
}, z.core.$strip>]>>;
|
|
702
702
|
meta: z.ZodObject<{
|
|
703
703
|
isFirstPage: z.ZodBoolean;
|
|
@@ -759,7 +759,13 @@ export declare const productRoute: {
|
|
|
759
759
|
} & {
|
|
760
760
|
query: z.ZodObject<{
|
|
761
761
|
locale: z.ZodNullable<z.ZodOptional<z.ZodEnum<{
|
|
762
|
+
hr: "hr";
|
|
763
|
+
th: "th";
|
|
764
|
+
tr: "tr";
|
|
762
765
|
id: "id";
|
|
766
|
+
is: "is";
|
|
767
|
+
mt: "mt";
|
|
768
|
+
ml: "ml";
|
|
763
769
|
af: "af";
|
|
764
770
|
sq: "sq";
|
|
765
771
|
ar_dz: "ar_dz";
|
|
@@ -786,7 +792,6 @@ export declare const productRoute: {
|
|
|
786
792
|
zh_cn: "zh_cn";
|
|
787
793
|
zh_sg: "zh_sg";
|
|
788
794
|
zh_tw: "zh_tw";
|
|
789
|
-
hr: "hr";
|
|
790
795
|
cs: "cs";
|
|
791
796
|
da: "da";
|
|
792
797
|
nl_be: "nl_be";
|
|
@@ -821,7 +826,6 @@ export declare const productRoute: {
|
|
|
821
826
|
he: "he";
|
|
822
827
|
hi: "hi";
|
|
823
828
|
hu: "hu";
|
|
824
|
-
is: "is";
|
|
825
829
|
ga: "ga";
|
|
826
830
|
it: "it";
|
|
827
831
|
it_ch: "it_ch";
|
|
@@ -831,9 +835,7 @@ export declare const productRoute: {
|
|
|
831
835
|
lv: "lv";
|
|
832
836
|
lt: "lt";
|
|
833
837
|
mk: "mk";
|
|
834
|
-
ml: "ml";
|
|
835
838
|
ms: "ms";
|
|
836
|
-
mt: "mt";
|
|
837
839
|
no: "no";
|
|
838
840
|
nb: "nb";
|
|
839
841
|
nn: "nn";
|
|
@@ -864,8 +866,6 @@ export declare const productRoute: {
|
|
|
864
866
|
es: "es";
|
|
865
867
|
sv: "sv";
|
|
866
868
|
sv_fi: "sv_fi";
|
|
867
|
-
th: "th";
|
|
868
|
-
tr: "tr";
|
|
869
869
|
uk: "uk";
|
|
870
870
|
ur: "ur";
|
|
871
871
|
vi: "vi";
|
|
@@ -899,7 +899,13 @@ export declare const productRoute: {
|
|
|
899
899
|
selectMin: z.ZodCoercedNumber<unknown>;
|
|
900
900
|
selectMax: z.ZodCoercedNumber<unknown>;
|
|
901
901
|
defaultLocale: z.ZodOptional<z.ZodEnum<{
|
|
902
|
+
hr: "hr";
|
|
903
|
+
th: "th";
|
|
904
|
+
tr: "tr";
|
|
902
905
|
id: "id";
|
|
906
|
+
is: "is";
|
|
907
|
+
mt: "mt";
|
|
908
|
+
ml: "ml";
|
|
903
909
|
af: "af";
|
|
904
910
|
sq: "sq";
|
|
905
911
|
ar_dz: "ar_dz";
|
|
@@ -926,7 +932,6 @@ export declare const productRoute: {
|
|
|
926
932
|
zh_cn: "zh_cn";
|
|
927
933
|
zh_sg: "zh_sg";
|
|
928
934
|
zh_tw: "zh_tw";
|
|
929
|
-
hr: "hr";
|
|
930
935
|
cs: "cs";
|
|
931
936
|
da: "da";
|
|
932
937
|
nl_be: "nl_be";
|
|
@@ -961,7 +966,6 @@ export declare const productRoute: {
|
|
|
961
966
|
he: "he";
|
|
962
967
|
hi: "hi";
|
|
963
968
|
hu: "hu";
|
|
964
|
-
is: "is";
|
|
965
969
|
ga: "ga";
|
|
966
970
|
it: "it";
|
|
967
971
|
it_ch: "it_ch";
|
|
@@ -971,9 +975,7 @@ export declare const productRoute: {
|
|
|
971
975
|
lv: "lv";
|
|
972
976
|
lt: "lt";
|
|
973
977
|
mk: "mk";
|
|
974
|
-
ml: "ml";
|
|
975
978
|
ms: "ms";
|
|
976
|
-
mt: "mt";
|
|
977
979
|
no: "no";
|
|
978
980
|
nb: "nb";
|
|
979
981
|
nn: "nn";
|
|
@@ -1004,8 +1006,6 @@ export declare const productRoute: {
|
|
|
1004
1006
|
es: "es";
|
|
1005
1007
|
sv: "sv";
|
|
1006
1008
|
sv_fi: "sv_fi";
|
|
1007
|
-
th: "th";
|
|
1008
|
-
tr: "tr";
|
|
1009
1009
|
uk: "uk";
|
|
1010
1010
|
ur: "ur";
|
|
1011
1011
|
vi: "vi";
|
|
@@ -1021,7 +1021,13 @@ export declare const productRoute: {
|
|
|
1021
1021
|
}, z.core.$strip>>>;
|
|
1022
1022
|
translations: z.ZodArray<z.ZodObject<{
|
|
1023
1023
|
locale: z.ZodEnum<{
|
|
1024
|
+
hr: "hr";
|
|
1025
|
+
th: "th";
|
|
1026
|
+
tr: "tr";
|
|
1024
1027
|
id: "id";
|
|
1028
|
+
is: "is";
|
|
1029
|
+
mt: "mt";
|
|
1030
|
+
ml: "ml";
|
|
1025
1031
|
af: "af";
|
|
1026
1032
|
sq: "sq";
|
|
1027
1033
|
ar_dz: "ar_dz";
|
|
@@ -1048,7 +1054,6 @@ export declare const productRoute: {
|
|
|
1048
1054
|
zh_cn: "zh_cn";
|
|
1049
1055
|
zh_sg: "zh_sg";
|
|
1050
1056
|
zh_tw: "zh_tw";
|
|
1051
|
-
hr: "hr";
|
|
1052
1057
|
cs: "cs";
|
|
1053
1058
|
da: "da";
|
|
1054
1059
|
nl_be: "nl_be";
|
|
@@ -1083,7 +1088,6 @@ export declare const productRoute: {
|
|
|
1083
1088
|
he: "he";
|
|
1084
1089
|
hi: "hi";
|
|
1085
1090
|
hu: "hu";
|
|
1086
|
-
is: "is";
|
|
1087
1091
|
ga: "ga";
|
|
1088
1092
|
it: "it";
|
|
1089
1093
|
it_ch: "it_ch";
|
|
@@ -1093,9 +1097,7 @@ export declare const productRoute: {
|
|
|
1093
1097
|
lv: "lv";
|
|
1094
1098
|
lt: "lt";
|
|
1095
1099
|
mk: "mk";
|
|
1096
|
-
ml: "ml";
|
|
1097
1100
|
ms: "ms";
|
|
1098
|
-
mt: "mt";
|
|
1099
1101
|
no: "no";
|
|
1100
1102
|
nb: "nb";
|
|
1101
1103
|
nn: "nn";
|
|
@@ -1126,8 +1128,6 @@ export declare const productRoute: {
|
|
|
1126
1128
|
es: "es";
|
|
1127
1129
|
sv: "sv";
|
|
1128
1130
|
sv_fi: "sv_fi";
|
|
1129
|
-
th: "th";
|
|
1130
|
-
tr: "tr";
|
|
1131
1131
|
uk: "uk";
|
|
1132
1132
|
ur: "ur";
|
|
1133
1133
|
vi: "vi";
|
|
@@ -1161,7 +1161,13 @@ export declare const productRoute: {
|
|
|
1161
1161
|
publishedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1162
1162
|
translations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1163
1163
|
locale: z.ZodEnum<{
|
|
1164
|
+
hr: "hr";
|
|
1165
|
+
th: "th";
|
|
1166
|
+
tr: "tr";
|
|
1164
1167
|
id: "id";
|
|
1168
|
+
is: "is";
|
|
1169
|
+
mt: "mt";
|
|
1170
|
+
ml: "ml";
|
|
1165
1171
|
af: "af";
|
|
1166
1172
|
sq: "sq";
|
|
1167
1173
|
ar_dz: "ar_dz";
|
|
@@ -1188,7 +1194,6 @@ export declare const productRoute: {
|
|
|
1188
1194
|
zh_cn: "zh_cn";
|
|
1189
1195
|
zh_sg: "zh_sg";
|
|
1190
1196
|
zh_tw: "zh_tw";
|
|
1191
|
-
hr: "hr";
|
|
1192
1197
|
cs: "cs";
|
|
1193
1198
|
da: "da";
|
|
1194
1199
|
nl_be: "nl_be";
|
|
@@ -1223,7 +1228,6 @@ export declare const productRoute: {
|
|
|
1223
1228
|
he: "he";
|
|
1224
1229
|
hi: "hi";
|
|
1225
1230
|
hu: "hu";
|
|
1226
|
-
is: "is";
|
|
1227
1231
|
ga: "ga";
|
|
1228
1232
|
it: "it";
|
|
1229
1233
|
it_ch: "it_ch";
|
|
@@ -1233,9 +1237,7 @@ export declare const productRoute: {
|
|
|
1233
1237
|
lv: "lv";
|
|
1234
1238
|
lt: "lt";
|
|
1235
1239
|
mk: "mk";
|
|
1236
|
-
ml: "ml";
|
|
1237
1240
|
ms: "ms";
|
|
1238
|
-
mt: "mt";
|
|
1239
1241
|
no: "no";
|
|
1240
1242
|
nb: "nb";
|
|
1241
1243
|
nn: "nn";
|
|
@@ -1266,8 +1268,6 @@ export declare const productRoute: {
|
|
|
1266
1268
|
es: "es";
|
|
1267
1269
|
sv: "sv";
|
|
1268
1270
|
sv_fi: "sv_fi";
|
|
1269
|
-
th: "th";
|
|
1270
|
-
tr: "tr";
|
|
1271
1271
|
uk: "uk";
|
|
1272
1272
|
ur: "ur";
|
|
1273
1273
|
vi: "vi";
|
|
@@ -1282,9 +1282,10 @@ export declare const productRoute: {
|
|
|
1282
1282
|
}, z.core.$strip>, z.ZodObject<{
|
|
1283
1283
|
description: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
1284
1284
|
title: z.ZodDefault<z.ZodString>;
|
|
1285
|
-
currency: z.ZodString;
|
|
1286
|
-
id: z.ZodString;
|
|
1287
1285
|
createdAt: z.ZodDate;
|
|
1286
|
+
metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
1287
|
+
id: z.ZodString;
|
|
1288
|
+
currency: z.ZodString;
|
|
1288
1289
|
slug: z.ZodOptional<z.ZodString>;
|
|
1289
1290
|
publishedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1290
1291
|
sku: z.ZodOptional<z.ZodString>;
|
|
@@ -1302,7 +1303,13 @@ export declare const productRoute: {
|
|
|
1302
1303
|
title: z.ZodNullable<z.ZodDefault<z.ZodString>>;
|
|
1303
1304
|
id: z.ZodString;
|
|
1304
1305
|
defaultLocale: z.ZodOptional<z.ZodEnum<{
|
|
1306
|
+
hr: "hr";
|
|
1307
|
+
th: "th";
|
|
1308
|
+
tr: "tr";
|
|
1305
1309
|
id: "id";
|
|
1310
|
+
is: "is";
|
|
1311
|
+
mt: "mt";
|
|
1312
|
+
ml: "ml";
|
|
1306
1313
|
af: "af";
|
|
1307
1314
|
sq: "sq";
|
|
1308
1315
|
ar_dz: "ar_dz";
|
|
@@ -1329,7 +1336,6 @@ export declare const productRoute: {
|
|
|
1329
1336
|
zh_cn: "zh_cn";
|
|
1330
1337
|
zh_sg: "zh_sg";
|
|
1331
1338
|
zh_tw: "zh_tw";
|
|
1332
|
-
hr: "hr";
|
|
1333
1339
|
cs: "cs";
|
|
1334
1340
|
da: "da";
|
|
1335
1341
|
nl_be: "nl_be";
|
|
@@ -1364,7 +1370,6 @@ export declare const productRoute: {
|
|
|
1364
1370
|
he: "he";
|
|
1365
1371
|
hi: "hi";
|
|
1366
1372
|
hu: "hu";
|
|
1367
|
-
is: "is";
|
|
1368
1373
|
ga: "ga";
|
|
1369
1374
|
it: "it";
|
|
1370
1375
|
it_ch: "it_ch";
|
|
@@ -1374,9 +1379,7 @@ export declare const productRoute: {
|
|
|
1374
1379
|
lv: "lv";
|
|
1375
1380
|
lt: "lt";
|
|
1376
1381
|
mk: "mk";
|
|
1377
|
-
ml: "ml";
|
|
1378
1382
|
ms: "ms";
|
|
1379
|
-
mt: "mt";
|
|
1380
1383
|
no: "no";
|
|
1381
1384
|
nb: "nb";
|
|
1382
1385
|
nn: "nn";
|
|
@@ -1407,8 +1410,6 @@ export declare const productRoute: {
|
|
|
1407
1410
|
es: "es";
|
|
1408
1411
|
sv: "sv";
|
|
1409
1412
|
sv_fi: "sv_fi";
|
|
1410
|
-
th: "th";
|
|
1411
|
-
tr: "tr";
|
|
1412
1413
|
uk: "uk";
|
|
1413
1414
|
ur: "ur";
|
|
1414
1415
|
vi: "vi";
|
|
@@ -1429,7 +1430,6 @@ export declare const productRoute: {
|
|
|
1429
1430
|
id: z.ZodString;
|
|
1430
1431
|
}, z.core.$strip>>>;
|
|
1431
1432
|
manufacturerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1432
|
-
metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
1433
1433
|
}, z.core.$strip>]>;
|
|
1434
1434
|
};
|
|
1435
1435
|
};
|
|
@@ -1473,10 +1473,17 @@ export declare const productRoute: {
|
|
|
1473
1473
|
content: {
|
|
1474
1474
|
"application/json": {
|
|
1475
1475
|
schema: z.ZodObject<{
|
|
1476
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
1476
1477
|
currency: z.ZodOptional<z.ZodString>;
|
|
1477
1478
|
translations: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1478
1479
|
locale: z.ZodEnum<{
|
|
1480
|
+
hr: "hr";
|
|
1481
|
+
th: "th";
|
|
1482
|
+
tr: "tr";
|
|
1479
1483
|
id: "id";
|
|
1484
|
+
is: "is";
|
|
1485
|
+
mt: "mt";
|
|
1486
|
+
ml: "ml";
|
|
1480
1487
|
af: "af";
|
|
1481
1488
|
sq: "sq";
|
|
1482
1489
|
ar_dz: "ar_dz";
|
|
@@ -1503,7 +1510,6 @@ export declare const productRoute: {
|
|
|
1503
1510
|
zh_cn: "zh_cn";
|
|
1504
1511
|
zh_sg: "zh_sg";
|
|
1505
1512
|
zh_tw: "zh_tw";
|
|
1506
|
-
hr: "hr";
|
|
1507
1513
|
cs: "cs";
|
|
1508
1514
|
da: "da";
|
|
1509
1515
|
nl_be: "nl_be";
|
|
@@ -1538,7 +1544,6 @@ export declare const productRoute: {
|
|
|
1538
1544
|
he: "he";
|
|
1539
1545
|
hi: "hi";
|
|
1540
1546
|
hu: "hu";
|
|
1541
|
-
is: "is";
|
|
1542
1547
|
ga: "ga";
|
|
1543
1548
|
it: "it";
|
|
1544
1549
|
it_ch: "it_ch";
|
|
@@ -1548,9 +1553,7 @@ export declare const productRoute: {
|
|
|
1548
1553
|
lv: "lv";
|
|
1549
1554
|
lt: "lt";
|
|
1550
1555
|
mk: "mk";
|
|
1551
|
-
ml: "ml";
|
|
1552
1556
|
ms: "ms";
|
|
1553
|
-
mt: "mt";
|
|
1554
1557
|
no: "no";
|
|
1555
1558
|
nb: "nb";
|
|
1556
1559
|
nn: "nn";
|
|
@@ -1581,8 +1584,6 @@ export declare const productRoute: {
|
|
|
1581
1584
|
es: "es";
|
|
1582
1585
|
sv: "sv";
|
|
1583
1586
|
sv_fi: "sv_fi";
|
|
1584
|
-
th: "th";
|
|
1585
|
-
tr: "tr";
|
|
1586
1587
|
uk: "uk";
|
|
1587
1588
|
ur: "ur";
|
|
1588
1589
|
vi: "vi";
|
|
@@ -1606,13 +1607,18 @@ export declare const productRoute: {
|
|
|
1606
1607
|
filename: z.ZodString;
|
|
1607
1608
|
}, z.core.$strip>>>>;
|
|
1608
1609
|
manufacturerId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
1609
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>>;
|
|
1610
1610
|
defaultLocale: z.ZodOptional<z.ZodString>;
|
|
1611
1611
|
modifierGroups: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1612
1612
|
selectMin: z.ZodCoercedNumber<unknown>;
|
|
1613
1613
|
selectMax: z.ZodCoercedNumber<unknown>;
|
|
1614
1614
|
defaultLocale: z.ZodOptional<z.ZodEnum<{
|
|
1615
|
+
hr: "hr";
|
|
1616
|
+
th: "th";
|
|
1617
|
+
tr: "tr";
|
|
1615
1618
|
id: "id";
|
|
1619
|
+
is: "is";
|
|
1620
|
+
mt: "mt";
|
|
1621
|
+
ml: "ml";
|
|
1616
1622
|
af: "af";
|
|
1617
1623
|
sq: "sq";
|
|
1618
1624
|
ar_dz: "ar_dz";
|
|
@@ -1639,7 +1645,6 @@ export declare const productRoute: {
|
|
|
1639
1645
|
zh_cn: "zh_cn";
|
|
1640
1646
|
zh_sg: "zh_sg";
|
|
1641
1647
|
zh_tw: "zh_tw";
|
|
1642
|
-
hr: "hr";
|
|
1643
1648
|
cs: "cs";
|
|
1644
1649
|
da: "da";
|
|
1645
1650
|
nl_be: "nl_be";
|
|
@@ -1674,7 +1679,6 @@ export declare const productRoute: {
|
|
|
1674
1679
|
he: "he";
|
|
1675
1680
|
hi: "hi";
|
|
1676
1681
|
hu: "hu";
|
|
1677
|
-
is: "is";
|
|
1678
1682
|
ga: "ga";
|
|
1679
1683
|
it: "it";
|
|
1680
1684
|
it_ch: "it_ch";
|
|
@@ -1684,9 +1688,7 @@ export declare const productRoute: {
|
|
|
1684
1688
|
lv: "lv";
|
|
1685
1689
|
lt: "lt";
|
|
1686
1690
|
mk: "mk";
|
|
1687
|
-
ml: "ml";
|
|
1688
1691
|
ms: "ms";
|
|
1689
|
-
mt: "mt";
|
|
1690
1692
|
no: "no";
|
|
1691
1693
|
nb: "nb";
|
|
1692
1694
|
nn: "nn";
|
|
@@ -1717,8 +1719,6 @@ export declare const productRoute: {
|
|
|
1717
1719
|
es: "es";
|
|
1718
1720
|
sv: "sv";
|
|
1719
1721
|
sv_fi: "sv_fi";
|
|
1720
|
-
th: "th";
|
|
1721
|
-
tr: "tr";
|
|
1722
1722
|
uk: "uk";
|
|
1723
1723
|
ur: "ur";
|
|
1724
1724
|
vi: "vi";
|
|
@@ -1734,7 +1734,13 @@ export declare const productRoute: {
|
|
|
1734
1734
|
}, z.core.$strip>>>;
|
|
1735
1735
|
translations: z.ZodArray<z.ZodObject<{
|
|
1736
1736
|
locale: z.ZodEnum<{
|
|
1737
|
+
hr: "hr";
|
|
1738
|
+
th: "th";
|
|
1739
|
+
tr: "tr";
|
|
1737
1740
|
id: "id";
|
|
1741
|
+
is: "is";
|
|
1742
|
+
mt: "mt";
|
|
1743
|
+
ml: "ml";
|
|
1738
1744
|
af: "af";
|
|
1739
1745
|
sq: "sq";
|
|
1740
1746
|
ar_dz: "ar_dz";
|
|
@@ -1761,7 +1767,6 @@ export declare const productRoute: {
|
|
|
1761
1767
|
zh_cn: "zh_cn";
|
|
1762
1768
|
zh_sg: "zh_sg";
|
|
1763
1769
|
zh_tw: "zh_tw";
|
|
1764
|
-
hr: "hr";
|
|
1765
1770
|
cs: "cs";
|
|
1766
1771
|
da: "da";
|
|
1767
1772
|
nl_be: "nl_be";
|
|
@@ -1796,7 +1801,6 @@ export declare const productRoute: {
|
|
|
1796
1801
|
he: "he";
|
|
1797
1802
|
hi: "hi";
|
|
1798
1803
|
hu: "hu";
|
|
1799
|
-
is: "is";
|
|
1800
1804
|
ga: "ga";
|
|
1801
1805
|
it: "it";
|
|
1802
1806
|
it_ch: "it_ch";
|
|
@@ -1806,9 +1810,7 @@ export declare const productRoute: {
|
|
|
1806
1810
|
lv: "lv";
|
|
1807
1811
|
lt: "lt";
|
|
1808
1812
|
mk: "mk";
|
|
1809
|
-
ml: "ml";
|
|
1810
1813
|
ms: "ms";
|
|
1811
|
-
mt: "mt";
|
|
1812
1814
|
no: "no";
|
|
1813
1815
|
nb: "nb";
|
|
1814
1816
|
nn: "nn";
|
|
@@ -1839,8 +1841,6 @@ export declare const productRoute: {
|
|
|
1839
1841
|
es: "es";
|
|
1840
1842
|
sv: "sv";
|
|
1841
1843
|
sv_fi: "sv_fi";
|
|
1842
|
-
th: "th";
|
|
1843
|
-
tr: "tr";
|
|
1844
1844
|
uk: "uk";
|
|
1845
1845
|
ur: "ur";
|
|
1846
1846
|
vi: "vi";
|
|
@@ -1892,7 +1892,13 @@ export declare const productRoute: {
|
|
|
1892
1892
|
selectMin: z.ZodCoercedNumber<unknown>;
|
|
1893
1893
|
selectMax: z.ZodCoercedNumber<unknown>;
|
|
1894
1894
|
defaultLocale: z.ZodOptional<z.ZodEnum<{
|
|
1895
|
+
hr: "hr";
|
|
1896
|
+
th: "th";
|
|
1897
|
+
tr: "tr";
|
|
1895
1898
|
id: "id";
|
|
1899
|
+
is: "is";
|
|
1900
|
+
mt: "mt";
|
|
1901
|
+
ml: "ml";
|
|
1896
1902
|
af: "af";
|
|
1897
1903
|
sq: "sq";
|
|
1898
1904
|
ar_dz: "ar_dz";
|
|
@@ -1919,7 +1925,6 @@ export declare const productRoute: {
|
|
|
1919
1925
|
zh_cn: "zh_cn";
|
|
1920
1926
|
zh_sg: "zh_sg";
|
|
1921
1927
|
zh_tw: "zh_tw";
|
|
1922
|
-
hr: "hr";
|
|
1923
1928
|
cs: "cs";
|
|
1924
1929
|
da: "da";
|
|
1925
1930
|
nl_be: "nl_be";
|
|
@@ -1954,7 +1959,6 @@ export declare const productRoute: {
|
|
|
1954
1959
|
he: "he";
|
|
1955
1960
|
hi: "hi";
|
|
1956
1961
|
hu: "hu";
|
|
1957
|
-
is: "is";
|
|
1958
1962
|
ga: "ga";
|
|
1959
1963
|
it: "it";
|
|
1960
1964
|
it_ch: "it_ch";
|
|
@@ -1964,9 +1968,7 @@ export declare const productRoute: {
|
|
|
1964
1968
|
lv: "lv";
|
|
1965
1969
|
lt: "lt";
|
|
1966
1970
|
mk: "mk";
|
|
1967
|
-
ml: "ml";
|
|
1968
1971
|
ms: "ms";
|
|
1969
|
-
mt: "mt";
|
|
1970
1972
|
no: "no";
|
|
1971
1973
|
nb: "nb";
|
|
1972
1974
|
nn: "nn";
|
|
@@ -1997,8 +1999,6 @@ export declare const productRoute: {
|
|
|
1997
1999
|
es: "es";
|
|
1998
2000
|
sv: "sv";
|
|
1999
2001
|
sv_fi: "sv_fi";
|
|
2000
|
-
th: "th";
|
|
2001
|
-
tr: "tr";
|
|
2002
2002
|
uk: "uk";
|
|
2003
2003
|
ur: "ur";
|
|
2004
2004
|
vi: "vi";
|
|
@@ -2014,7 +2014,13 @@ export declare const productRoute: {
|
|
|
2014
2014
|
}, z.core.$strip>>>;
|
|
2015
2015
|
translations: z.ZodArray<z.ZodObject<{
|
|
2016
2016
|
locale: z.ZodEnum<{
|
|
2017
|
+
hr: "hr";
|
|
2018
|
+
th: "th";
|
|
2019
|
+
tr: "tr";
|
|
2017
2020
|
id: "id";
|
|
2021
|
+
is: "is";
|
|
2022
|
+
mt: "mt";
|
|
2023
|
+
ml: "ml";
|
|
2018
2024
|
af: "af";
|
|
2019
2025
|
sq: "sq";
|
|
2020
2026
|
ar_dz: "ar_dz";
|
|
@@ -2041,7 +2047,6 @@ export declare const productRoute: {
|
|
|
2041
2047
|
zh_cn: "zh_cn";
|
|
2042
2048
|
zh_sg: "zh_sg";
|
|
2043
2049
|
zh_tw: "zh_tw";
|
|
2044
|
-
hr: "hr";
|
|
2045
2050
|
cs: "cs";
|
|
2046
2051
|
da: "da";
|
|
2047
2052
|
nl_be: "nl_be";
|
|
@@ -2076,7 +2081,6 @@ export declare const productRoute: {
|
|
|
2076
2081
|
he: "he";
|
|
2077
2082
|
hi: "hi";
|
|
2078
2083
|
hu: "hu";
|
|
2079
|
-
is: "is";
|
|
2080
2084
|
ga: "ga";
|
|
2081
2085
|
it: "it";
|
|
2082
2086
|
it_ch: "it_ch";
|
|
@@ -2086,9 +2090,7 @@ export declare const productRoute: {
|
|
|
2086
2090
|
lv: "lv";
|
|
2087
2091
|
lt: "lt";
|
|
2088
2092
|
mk: "mk";
|
|
2089
|
-
ml: "ml";
|
|
2090
2093
|
ms: "ms";
|
|
2091
|
-
mt: "mt";
|
|
2092
2094
|
no: "no";
|
|
2093
2095
|
nb: "nb";
|
|
2094
2096
|
nn: "nn";
|
|
@@ -2119,8 +2121,6 @@ export declare const productRoute: {
|
|
|
2119
2121
|
es: "es";
|
|
2120
2122
|
sv: "sv";
|
|
2121
2123
|
sv_fi: "sv_fi";
|
|
2122
|
-
th: "th";
|
|
2123
|
-
tr: "tr";
|
|
2124
2124
|
uk: "uk";
|
|
2125
2125
|
ur: "ur";
|
|
2126
2126
|
vi: "vi";
|
|
@@ -2154,7 +2154,13 @@ export declare const productRoute: {
|
|
|
2154
2154
|
publishedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
2155
2155
|
translations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2156
2156
|
locale: z.ZodEnum<{
|
|
2157
|
+
hr: "hr";
|
|
2158
|
+
th: "th";
|
|
2159
|
+
tr: "tr";
|
|
2157
2160
|
id: "id";
|
|
2161
|
+
is: "is";
|
|
2162
|
+
mt: "mt";
|
|
2163
|
+
ml: "ml";
|
|
2158
2164
|
af: "af";
|
|
2159
2165
|
sq: "sq";
|
|
2160
2166
|
ar_dz: "ar_dz";
|
|
@@ -2181,7 +2187,6 @@ export declare const productRoute: {
|
|
|
2181
2187
|
zh_cn: "zh_cn";
|
|
2182
2188
|
zh_sg: "zh_sg";
|
|
2183
2189
|
zh_tw: "zh_tw";
|
|
2184
|
-
hr: "hr";
|
|
2185
2190
|
cs: "cs";
|
|
2186
2191
|
da: "da";
|
|
2187
2192
|
nl_be: "nl_be";
|
|
@@ -2216,7 +2221,6 @@ export declare const productRoute: {
|
|
|
2216
2221
|
he: "he";
|
|
2217
2222
|
hi: "hi";
|
|
2218
2223
|
hu: "hu";
|
|
2219
|
-
is: "is";
|
|
2220
2224
|
ga: "ga";
|
|
2221
2225
|
it: "it";
|
|
2222
2226
|
it_ch: "it_ch";
|
|
@@ -2226,9 +2230,7 @@ export declare const productRoute: {
|
|
|
2226
2230
|
lv: "lv";
|
|
2227
2231
|
lt: "lt";
|
|
2228
2232
|
mk: "mk";
|
|
2229
|
-
ml: "ml";
|
|
2230
2233
|
ms: "ms";
|
|
2231
|
-
mt: "mt";
|
|
2232
2234
|
no: "no";
|
|
2233
2235
|
nb: "nb";
|
|
2234
2236
|
nn: "nn";
|
|
@@ -2259,8 +2261,6 @@ export declare const productRoute: {
|
|
|
2259
2261
|
es: "es";
|
|
2260
2262
|
sv: "sv";
|
|
2261
2263
|
sv_fi: "sv_fi";
|
|
2262
|
-
th: "th";
|
|
2263
|
-
tr: "tr";
|
|
2264
2264
|
uk: "uk";
|
|
2265
2265
|
ur: "ur";
|
|
2266
2266
|
vi: "vi";
|
|
@@ -2326,10 +2326,17 @@ export declare const productRoute: {
|
|
|
2326
2326
|
content: {
|
|
2327
2327
|
"application/json": {
|
|
2328
2328
|
schema: z.ZodObject<{
|
|
2329
|
+
metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
2329
2330
|
currency: z.ZodString;
|
|
2330
2331
|
translations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2331
2332
|
locale: z.ZodEnum<{
|
|
2333
|
+
hr: "hr";
|
|
2334
|
+
th: "th";
|
|
2335
|
+
tr: "tr";
|
|
2332
2336
|
id: "id";
|
|
2337
|
+
is: "is";
|
|
2338
|
+
mt: "mt";
|
|
2339
|
+
ml: "ml";
|
|
2333
2340
|
af: "af";
|
|
2334
2341
|
sq: "sq";
|
|
2335
2342
|
ar_dz: "ar_dz";
|
|
@@ -2356,7 +2363,6 @@ export declare const productRoute: {
|
|
|
2356
2363
|
zh_cn: "zh_cn";
|
|
2357
2364
|
zh_sg: "zh_sg";
|
|
2358
2365
|
zh_tw: "zh_tw";
|
|
2359
|
-
hr: "hr";
|
|
2360
2366
|
cs: "cs";
|
|
2361
2367
|
da: "da";
|
|
2362
2368
|
nl_be: "nl_be";
|
|
@@ -2391,7 +2397,6 @@ export declare const productRoute: {
|
|
|
2391
2397
|
he: "he";
|
|
2392
2398
|
hi: "hi";
|
|
2393
2399
|
hu: "hu";
|
|
2394
|
-
is: "is";
|
|
2395
2400
|
ga: "ga";
|
|
2396
2401
|
it: "it";
|
|
2397
2402
|
it_ch: "it_ch";
|
|
@@ -2401,9 +2406,7 @@ export declare const productRoute: {
|
|
|
2401
2406
|
lv: "lv";
|
|
2402
2407
|
lt: "lt";
|
|
2403
2408
|
mk: "mk";
|
|
2404
|
-
ml: "ml";
|
|
2405
2409
|
ms: "ms";
|
|
2406
|
-
mt: "mt";
|
|
2407
2410
|
no: "no";
|
|
2408
2411
|
nb: "nb";
|
|
2409
2412
|
nn: "nn";
|
|
@@ -2434,8 +2437,6 @@ export declare const productRoute: {
|
|
|
2434
2437
|
es: "es";
|
|
2435
2438
|
sv: "sv";
|
|
2436
2439
|
sv_fi: "sv_fi";
|
|
2437
|
-
th: "th";
|
|
2438
|
-
tr: "tr";
|
|
2439
2440
|
uk: "uk";
|
|
2440
2441
|
ur: "ur";
|
|
2441
2442
|
vi: "vi";
|
|
@@ -2459,13 +2460,18 @@ export declare const productRoute: {
|
|
|
2459
2460
|
filename: z.ZodString;
|
|
2460
2461
|
}, z.core.$strip>>>;
|
|
2461
2462
|
manufacturerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2462
|
-
metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
2463
2463
|
defaultLocale: z.ZodString;
|
|
2464
2464
|
modifierGroups: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2465
2465
|
selectMin: z.ZodCoercedNumber<unknown>;
|
|
2466
2466
|
selectMax: z.ZodCoercedNumber<unknown>;
|
|
2467
2467
|
defaultLocale: z.ZodOptional<z.ZodEnum<{
|
|
2468
|
+
hr: "hr";
|
|
2469
|
+
th: "th";
|
|
2470
|
+
tr: "tr";
|
|
2468
2471
|
id: "id";
|
|
2472
|
+
is: "is";
|
|
2473
|
+
mt: "mt";
|
|
2474
|
+
ml: "ml";
|
|
2469
2475
|
af: "af";
|
|
2470
2476
|
sq: "sq";
|
|
2471
2477
|
ar_dz: "ar_dz";
|
|
@@ -2492,7 +2498,6 @@ export declare const productRoute: {
|
|
|
2492
2498
|
zh_cn: "zh_cn";
|
|
2493
2499
|
zh_sg: "zh_sg";
|
|
2494
2500
|
zh_tw: "zh_tw";
|
|
2495
|
-
hr: "hr";
|
|
2496
2501
|
cs: "cs";
|
|
2497
2502
|
da: "da";
|
|
2498
2503
|
nl_be: "nl_be";
|
|
@@ -2527,7 +2532,6 @@ export declare const productRoute: {
|
|
|
2527
2532
|
he: "he";
|
|
2528
2533
|
hi: "hi";
|
|
2529
2534
|
hu: "hu";
|
|
2530
|
-
is: "is";
|
|
2531
2535
|
ga: "ga";
|
|
2532
2536
|
it: "it";
|
|
2533
2537
|
it_ch: "it_ch";
|
|
@@ -2537,9 +2541,7 @@ export declare const productRoute: {
|
|
|
2537
2541
|
lv: "lv";
|
|
2538
2542
|
lt: "lt";
|
|
2539
2543
|
mk: "mk";
|
|
2540
|
-
ml: "ml";
|
|
2541
2544
|
ms: "ms";
|
|
2542
|
-
mt: "mt";
|
|
2543
2545
|
no: "no";
|
|
2544
2546
|
nb: "nb";
|
|
2545
2547
|
nn: "nn";
|
|
@@ -2570,8 +2572,6 @@ export declare const productRoute: {
|
|
|
2570
2572
|
es: "es";
|
|
2571
2573
|
sv: "sv";
|
|
2572
2574
|
sv_fi: "sv_fi";
|
|
2573
|
-
th: "th";
|
|
2574
|
-
tr: "tr";
|
|
2575
2575
|
uk: "uk";
|
|
2576
2576
|
ur: "ur";
|
|
2577
2577
|
vi: "vi";
|
|
@@ -2587,7 +2587,13 @@ export declare const productRoute: {
|
|
|
2587
2587
|
}, z.core.$strip>>>;
|
|
2588
2588
|
translations: z.ZodArray<z.ZodObject<{
|
|
2589
2589
|
locale: z.ZodEnum<{
|
|
2590
|
+
hr: "hr";
|
|
2591
|
+
th: "th";
|
|
2592
|
+
tr: "tr";
|
|
2590
2593
|
id: "id";
|
|
2594
|
+
is: "is";
|
|
2595
|
+
mt: "mt";
|
|
2596
|
+
ml: "ml";
|
|
2591
2597
|
af: "af";
|
|
2592
2598
|
sq: "sq";
|
|
2593
2599
|
ar_dz: "ar_dz";
|
|
@@ -2614,7 +2620,6 @@ export declare const productRoute: {
|
|
|
2614
2620
|
zh_cn: "zh_cn";
|
|
2615
2621
|
zh_sg: "zh_sg";
|
|
2616
2622
|
zh_tw: "zh_tw";
|
|
2617
|
-
hr: "hr";
|
|
2618
2623
|
cs: "cs";
|
|
2619
2624
|
da: "da";
|
|
2620
2625
|
nl_be: "nl_be";
|
|
@@ -2649,7 +2654,6 @@ export declare const productRoute: {
|
|
|
2649
2654
|
he: "he";
|
|
2650
2655
|
hi: "hi";
|
|
2651
2656
|
hu: "hu";
|
|
2652
|
-
is: "is";
|
|
2653
2657
|
ga: "ga";
|
|
2654
2658
|
it: "it";
|
|
2655
2659
|
it_ch: "it_ch";
|
|
@@ -2659,9 +2663,7 @@ export declare const productRoute: {
|
|
|
2659
2663
|
lv: "lv";
|
|
2660
2664
|
lt: "lt";
|
|
2661
2665
|
mk: "mk";
|
|
2662
|
-
ml: "ml";
|
|
2663
2666
|
ms: "ms";
|
|
2664
|
-
mt: "mt";
|
|
2665
2667
|
no: "no";
|
|
2666
2668
|
nb: "nb";
|
|
2667
2669
|
nn: "nn";
|
|
@@ -2692,8 +2694,6 @@ export declare const productRoute: {
|
|
|
2692
2694
|
es: "es";
|
|
2693
2695
|
sv: "sv";
|
|
2694
2696
|
sv_fi: "sv_fi";
|
|
2695
|
-
th: "th";
|
|
2696
|
-
tr: "tr";
|
|
2697
2697
|
uk: "uk";
|
|
2698
2698
|
ur: "ur";
|
|
2699
2699
|
vi: "vi";
|
|
@@ -2744,7 +2744,13 @@ export declare const productRoute: {
|
|
|
2744
2744
|
selectMin: z.ZodCoercedNumber<unknown>;
|
|
2745
2745
|
selectMax: z.ZodCoercedNumber<unknown>;
|
|
2746
2746
|
defaultLocale: z.ZodOptional<z.ZodEnum<{
|
|
2747
|
+
hr: "hr";
|
|
2748
|
+
th: "th";
|
|
2749
|
+
tr: "tr";
|
|
2747
2750
|
id: "id";
|
|
2751
|
+
is: "is";
|
|
2752
|
+
mt: "mt";
|
|
2753
|
+
ml: "ml";
|
|
2748
2754
|
af: "af";
|
|
2749
2755
|
sq: "sq";
|
|
2750
2756
|
ar_dz: "ar_dz";
|
|
@@ -2771,7 +2777,6 @@ export declare const productRoute: {
|
|
|
2771
2777
|
zh_cn: "zh_cn";
|
|
2772
2778
|
zh_sg: "zh_sg";
|
|
2773
2779
|
zh_tw: "zh_tw";
|
|
2774
|
-
hr: "hr";
|
|
2775
2780
|
cs: "cs";
|
|
2776
2781
|
da: "da";
|
|
2777
2782
|
nl_be: "nl_be";
|
|
@@ -2806,7 +2811,6 @@ export declare const productRoute: {
|
|
|
2806
2811
|
he: "he";
|
|
2807
2812
|
hi: "hi";
|
|
2808
2813
|
hu: "hu";
|
|
2809
|
-
is: "is";
|
|
2810
2814
|
ga: "ga";
|
|
2811
2815
|
it: "it";
|
|
2812
2816
|
it_ch: "it_ch";
|
|
@@ -2816,9 +2820,7 @@ export declare const productRoute: {
|
|
|
2816
2820
|
lv: "lv";
|
|
2817
2821
|
lt: "lt";
|
|
2818
2822
|
mk: "mk";
|
|
2819
|
-
ml: "ml";
|
|
2820
2823
|
ms: "ms";
|
|
2821
|
-
mt: "mt";
|
|
2822
2824
|
no: "no";
|
|
2823
2825
|
nb: "nb";
|
|
2824
2826
|
nn: "nn";
|
|
@@ -2849,8 +2851,6 @@ export declare const productRoute: {
|
|
|
2849
2851
|
es: "es";
|
|
2850
2852
|
sv: "sv";
|
|
2851
2853
|
sv_fi: "sv_fi";
|
|
2852
|
-
th: "th";
|
|
2853
|
-
tr: "tr";
|
|
2854
2854
|
uk: "uk";
|
|
2855
2855
|
ur: "ur";
|
|
2856
2856
|
vi: "vi";
|
|
@@ -2866,7 +2866,13 @@ export declare const productRoute: {
|
|
|
2866
2866
|
}, z.core.$strip>>>;
|
|
2867
2867
|
translations: z.ZodArray<z.ZodObject<{
|
|
2868
2868
|
locale: z.ZodEnum<{
|
|
2869
|
+
hr: "hr";
|
|
2870
|
+
th: "th";
|
|
2871
|
+
tr: "tr";
|
|
2869
2872
|
id: "id";
|
|
2873
|
+
is: "is";
|
|
2874
|
+
mt: "mt";
|
|
2875
|
+
ml: "ml";
|
|
2870
2876
|
af: "af";
|
|
2871
2877
|
sq: "sq";
|
|
2872
2878
|
ar_dz: "ar_dz";
|
|
@@ -2893,7 +2899,6 @@ export declare const productRoute: {
|
|
|
2893
2899
|
zh_cn: "zh_cn";
|
|
2894
2900
|
zh_sg: "zh_sg";
|
|
2895
2901
|
zh_tw: "zh_tw";
|
|
2896
|
-
hr: "hr";
|
|
2897
2902
|
cs: "cs";
|
|
2898
2903
|
da: "da";
|
|
2899
2904
|
nl_be: "nl_be";
|
|
@@ -2928,7 +2933,6 @@ export declare const productRoute: {
|
|
|
2928
2933
|
he: "he";
|
|
2929
2934
|
hi: "hi";
|
|
2930
2935
|
hu: "hu";
|
|
2931
|
-
is: "is";
|
|
2932
2936
|
ga: "ga";
|
|
2933
2937
|
it: "it";
|
|
2934
2938
|
it_ch: "it_ch";
|
|
@@ -2938,9 +2942,7 @@ export declare const productRoute: {
|
|
|
2938
2942
|
lv: "lv";
|
|
2939
2943
|
lt: "lt";
|
|
2940
2944
|
mk: "mk";
|
|
2941
|
-
ml: "ml";
|
|
2942
2945
|
ms: "ms";
|
|
2943
|
-
mt: "mt";
|
|
2944
2946
|
no: "no";
|
|
2945
2947
|
nb: "nb";
|
|
2946
2948
|
nn: "nn";
|
|
@@ -2971,8 +2973,6 @@ export declare const productRoute: {
|
|
|
2971
2973
|
es: "es";
|
|
2972
2974
|
sv: "sv";
|
|
2973
2975
|
sv_fi: "sv_fi";
|
|
2974
|
-
th: "th";
|
|
2975
|
-
tr: "tr";
|
|
2976
2976
|
uk: "uk";
|
|
2977
2977
|
ur: "ur";
|
|
2978
2978
|
vi: "vi";
|
|
@@ -3006,7 +3006,13 @@ export declare const productRoute: {
|
|
|
3006
3006
|
publishedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
3007
3007
|
translations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3008
3008
|
locale: z.ZodEnum<{
|
|
3009
|
+
hr: "hr";
|
|
3010
|
+
th: "th";
|
|
3011
|
+
tr: "tr";
|
|
3009
3012
|
id: "id";
|
|
3013
|
+
is: "is";
|
|
3014
|
+
mt: "mt";
|
|
3015
|
+
ml: "ml";
|
|
3010
3016
|
af: "af";
|
|
3011
3017
|
sq: "sq";
|
|
3012
3018
|
ar_dz: "ar_dz";
|
|
@@ -3033,7 +3039,6 @@ export declare const productRoute: {
|
|
|
3033
3039
|
zh_cn: "zh_cn";
|
|
3034
3040
|
zh_sg: "zh_sg";
|
|
3035
3041
|
zh_tw: "zh_tw";
|
|
3036
|
-
hr: "hr";
|
|
3037
3042
|
cs: "cs";
|
|
3038
3043
|
da: "da";
|
|
3039
3044
|
nl_be: "nl_be";
|
|
@@ -3068,7 +3073,6 @@ export declare const productRoute: {
|
|
|
3068
3073
|
he: "he";
|
|
3069
3074
|
hi: "hi";
|
|
3070
3075
|
hu: "hu";
|
|
3071
|
-
is: "is";
|
|
3072
3076
|
ga: "ga";
|
|
3073
3077
|
it: "it";
|
|
3074
3078
|
it_ch: "it_ch";
|
|
@@ -3078,9 +3082,7 @@ export declare const productRoute: {
|
|
|
3078
3082
|
lv: "lv";
|
|
3079
3083
|
lt: "lt";
|
|
3080
3084
|
mk: "mk";
|
|
3081
|
-
ml: "ml";
|
|
3082
3085
|
ms: "ms";
|
|
3083
|
-
mt: "mt";
|
|
3084
3086
|
no: "no";
|
|
3085
3087
|
nb: "nb";
|
|
3086
3088
|
nn: "nn";
|
|
@@ -3111,8 +3113,6 @@ export declare const productRoute: {
|
|
|
3111
3113
|
es: "es";
|
|
3112
3114
|
sv: "sv";
|
|
3113
3115
|
sv_fi: "sv_fi";
|
|
3114
|
-
th: "th";
|
|
3115
|
-
tr: "tr";
|
|
3116
3116
|
uk: "uk";
|
|
3117
3117
|
ur: "ur";
|
|
3118
3118
|
vi: "vi";
|
|
@@ -3212,7 +3212,13 @@ export declare const productRoute: {
|
|
|
3212
3212
|
selectMin: z.ZodCoercedNumber<unknown>;
|
|
3213
3213
|
selectMax: z.ZodCoercedNumber<unknown>;
|
|
3214
3214
|
defaultLocale: z.ZodOptional<z.ZodEnum<{
|
|
3215
|
+
hr: "hr";
|
|
3216
|
+
th: "th";
|
|
3217
|
+
tr: "tr";
|
|
3215
3218
|
id: "id";
|
|
3219
|
+
is: "is";
|
|
3220
|
+
mt: "mt";
|
|
3221
|
+
ml: "ml";
|
|
3216
3222
|
af: "af";
|
|
3217
3223
|
sq: "sq";
|
|
3218
3224
|
ar_dz: "ar_dz";
|
|
@@ -3239,7 +3245,6 @@ export declare const productRoute: {
|
|
|
3239
3245
|
zh_cn: "zh_cn";
|
|
3240
3246
|
zh_sg: "zh_sg";
|
|
3241
3247
|
zh_tw: "zh_tw";
|
|
3242
|
-
hr: "hr";
|
|
3243
3248
|
cs: "cs";
|
|
3244
3249
|
da: "da";
|
|
3245
3250
|
nl_be: "nl_be";
|
|
@@ -3274,7 +3279,6 @@ export declare const productRoute: {
|
|
|
3274
3279
|
he: "he";
|
|
3275
3280
|
hi: "hi";
|
|
3276
3281
|
hu: "hu";
|
|
3277
|
-
is: "is";
|
|
3278
3282
|
ga: "ga";
|
|
3279
3283
|
it: "it";
|
|
3280
3284
|
it_ch: "it_ch";
|
|
@@ -3284,9 +3288,7 @@ export declare const productRoute: {
|
|
|
3284
3288
|
lv: "lv";
|
|
3285
3289
|
lt: "lt";
|
|
3286
3290
|
mk: "mk";
|
|
3287
|
-
ml: "ml";
|
|
3288
3291
|
ms: "ms";
|
|
3289
|
-
mt: "mt";
|
|
3290
3292
|
no: "no";
|
|
3291
3293
|
nb: "nb";
|
|
3292
3294
|
nn: "nn";
|
|
@@ -3317,8 +3319,6 @@ export declare const productRoute: {
|
|
|
3317
3319
|
es: "es";
|
|
3318
3320
|
sv: "sv";
|
|
3319
3321
|
sv_fi: "sv_fi";
|
|
3320
|
-
th: "th";
|
|
3321
|
-
tr: "tr";
|
|
3322
3322
|
uk: "uk";
|
|
3323
3323
|
ur: "ur";
|
|
3324
3324
|
vi: "vi";
|
|
@@ -3334,7 +3334,13 @@ export declare const productRoute: {
|
|
|
3334
3334
|
}, z.core.$strip>>>;
|
|
3335
3335
|
translations: z.ZodArray<z.ZodObject<{
|
|
3336
3336
|
locale: z.ZodEnum<{
|
|
3337
|
+
hr: "hr";
|
|
3338
|
+
th: "th";
|
|
3339
|
+
tr: "tr";
|
|
3337
3340
|
id: "id";
|
|
3341
|
+
is: "is";
|
|
3342
|
+
mt: "mt";
|
|
3343
|
+
ml: "ml";
|
|
3338
3344
|
af: "af";
|
|
3339
3345
|
sq: "sq";
|
|
3340
3346
|
ar_dz: "ar_dz";
|
|
@@ -3361,7 +3367,6 @@ export declare const productRoute: {
|
|
|
3361
3367
|
zh_cn: "zh_cn";
|
|
3362
3368
|
zh_sg: "zh_sg";
|
|
3363
3369
|
zh_tw: "zh_tw";
|
|
3364
|
-
hr: "hr";
|
|
3365
3370
|
cs: "cs";
|
|
3366
3371
|
da: "da";
|
|
3367
3372
|
nl_be: "nl_be";
|
|
@@ -3396,7 +3401,6 @@ export declare const productRoute: {
|
|
|
3396
3401
|
he: "he";
|
|
3397
3402
|
hi: "hi";
|
|
3398
3403
|
hu: "hu";
|
|
3399
|
-
is: "is";
|
|
3400
3404
|
ga: "ga";
|
|
3401
3405
|
it: "it";
|
|
3402
3406
|
it_ch: "it_ch";
|
|
@@ -3406,9 +3410,7 @@ export declare const productRoute: {
|
|
|
3406
3410
|
lv: "lv";
|
|
3407
3411
|
lt: "lt";
|
|
3408
3412
|
mk: "mk";
|
|
3409
|
-
ml: "ml";
|
|
3410
3413
|
ms: "ms";
|
|
3411
|
-
mt: "mt";
|
|
3412
3414
|
no: "no";
|
|
3413
3415
|
nb: "nb";
|
|
3414
3416
|
nn: "nn";
|
|
@@ -3439,8 +3441,6 @@ export declare const productRoute: {
|
|
|
3439
3441
|
es: "es";
|
|
3440
3442
|
sv: "sv";
|
|
3441
3443
|
sv_fi: "sv_fi";
|
|
3442
|
-
th: "th";
|
|
3443
|
-
tr: "tr";
|
|
3444
3444
|
uk: "uk";
|
|
3445
3445
|
ur: "ur";
|
|
3446
3446
|
vi: "vi";
|
|
@@ -3474,7 +3474,13 @@ export declare const productRoute: {
|
|
|
3474
3474
|
publishedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
3475
3475
|
translations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3476
3476
|
locale: z.ZodEnum<{
|
|
3477
|
+
hr: "hr";
|
|
3478
|
+
th: "th";
|
|
3479
|
+
tr: "tr";
|
|
3477
3480
|
id: "id";
|
|
3481
|
+
is: "is";
|
|
3482
|
+
mt: "mt";
|
|
3483
|
+
ml: "ml";
|
|
3478
3484
|
af: "af";
|
|
3479
3485
|
sq: "sq";
|
|
3480
3486
|
ar_dz: "ar_dz";
|
|
@@ -3501,7 +3507,6 @@ export declare const productRoute: {
|
|
|
3501
3507
|
zh_cn: "zh_cn";
|
|
3502
3508
|
zh_sg: "zh_sg";
|
|
3503
3509
|
zh_tw: "zh_tw";
|
|
3504
|
-
hr: "hr";
|
|
3505
3510
|
cs: "cs";
|
|
3506
3511
|
da: "da";
|
|
3507
3512
|
nl_be: "nl_be";
|
|
@@ -3536,7 +3541,6 @@ export declare const productRoute: {
|
|
|
3536
3541
|
he: "he";
|
|
3537
3542
|
hi: "hi";
|
|
3538
3543
|
hu: "hu";
|
|
3539
|
-
is: "is";
|
|
3540
3544
|
ga: "ga";
|
|
3541
3545
|
it: "it";
|
|
3542
3546
|
it_ch: "it_ch";
|
|
@@ -3546,9 +3550,7 @@ export declare const productRoute: {
|
|
|
3546
3550
|
lv: "lv";
|
|
3547
3551
|
lt: "lt";
|
|
3548
3552
|
mk: "mk";
|
|
3549
|
-
ml: "ml";
|
|
3550
3553
|
ms: "ms";
|
|
3551
|
-
mt: "mt";
|
|
3552
3554
|
no: "no";
|
|
3553
3555
|
nb: "nb";
|
|
3554
3556
|
nn: "nn";
|
|
@@ -3579,8 +3581,6 @@ export declare const productRoute: {
|
|
|
3579
3581
|
es: "es";
|
|
3580
3582
|
sv: "sv";
|
|
3581
3583
|
sv_fi: "sv_fi";
|
|
3582
|
-
th: "th";
|
|
3583
|
-
tr: "tr";
|
|
3584
3584
|
uk: "uk";
|
|
3585
3585
|
ur: "ur";
|
|
3586
3586
|
vi: "vi";
|
|
@@ -3717,7 +3717,13 @@ export declare const productRoute: {
|
|
|
3717
3717
|
search: z.ZodOptional<z.ZodString>;
|
|
3718
3718
|
published: z.ZodOptional<z.ZodCoercedBoolean<unknown>>;
|
|
3719
3719
|
locale: z.ZodOptional<z.ZodEnum<{
|
|
3720
|
+
hr: "hr";
|
|
3721
|
+
th: "th";
|
|
3722
|
+
tr: "tr";
|
|
3720
3723
|
id: "id";
|
|
3724
|
+
is: "is";
|
|
3725
|
+
mt: "mt";
|
|
3726
|
+
ml: "ml";
|
|
3721
3727
|
af: "af";
|
|
3722
3728
|
sq: "sq";
|
|
3723
3729
|
ar_dz: "ar_dz";
|
|
@@ -3744,7 +3750,6 @@ export declare const productRoute: {
|
|
|
3744
3750
|
zh_cn: "zh_cn";
|
|
3745
3751
|
zh_sg: "zh_sg";
|
|
3746
3752
|
zh_tw: "zh_tw";
|
|
3747
|
-
hr: "hr";
|
|
3748
3753
|
cs: "cs";
|
|
3749
3754
|
da: "da";
|
|
3750
3755
|
nl_be: "nl_be";
|
|
@@ -3779,7 +3784,6 @@ export declare const productRoute: {
|
|
|
3779
3784
|
he: "he";
|
|
3780
3785
|
hi: "hi";
|
|
3781
3786
|
hu: "hu";
|
|
3782
|
-
is: "is";
|
|
3783
3787
|
ga: "ga";
|
|
3784
3788
|
it: "it";
|
|
3785
3789
|
it_ch: "it_ch";
|
|
@@ -3789,9 +3793,7 @@ export declare const productRoute: {
|
|
|
3789
3793
|
lv: "lv";
|
|
3790
3794
|
lt: "lt";
|
|
3791
3795
|
mk: "mk";
|
|
3792
|
-
ml: "ml";
|
|
3793
3796
|
ms: "ms";
|
|
3794
|
-
mt: "mt";
|
|
3795
3797
|
no: "no";
|
|
3796
3798
|
nb: "nb";
|
|
3797
3799
|
nn: "nn";
|
|
@@ -3822,8 +3824,6 @@ export declare const productRoute: {
|
|
|
3822
3824
|
es: "es";
|
|
3823
3825
|
sv: "sv";
|
|
3824
3826
|
sv_fi: "sv_fi";
|
|
3825
|
-
th: "th";
|
|
3826
|
-
tr: "tr";
|
|
3827
3827
|
uk: "uk";
|
|
3828
3828
|
ur: "ur";
|
|
3829
3829
|
vi: "vi";
|
|
@@ -3858,7 +3858,13 @@ export declare const productRoute: {
|
|
|
3858
3858
|
selectMin: z.ZodCoercedNumber<unknown>;
|
|
3859
3859
|
selectMax: z.ZodCoercedNumber<unknown>;
|
|
3860
3860
|
defaultLocale: z.ZodOptional<z.ZodEnum<{
|
|
3861
|
+
hr: "hr";
|
|
3862
|
+
th: "th";
|
|
3863
|
+
tr: "tr";
|
|
3861
3864
|
id: "id";
|
|
3865
|
+
is: "is";
|
|
3866
|
+
mt: "mt";
|
|
3867
|
+
ml: "ml";
|
|
3862
3868
|
af: "af";
|
|
3863
3869
|
sq: "sq";
|
|
3864
3870
|
ar_dz: "ar_dz";
|
|
@@ -3885,7 +3891,6 @@ export declare const productRoute: {
|
|
|
3885
3891
|
zh_cn: "zh_cn";
|
|
3886
3892
|
zh_sg: "zh_sg";
|
|
3887
3893
|
zh_tw: "zh_tw";
|
|
3888
|
-
hr: "hr";
|
|
3889
3894
|
cs: "cs";
|
|
3890
3895
|
da: "da";
|
|
3891
3896
|
nl_be: "nl_be";
|
|
@@ -3920,7 +3925,6 @@ export declare const productRoute: {
|
|
|
3920
3925
|
he: "he";
|
|
3921
3926
|
hi: "hi";
|
|
3922
3927
|
hu: "hu";
|
|
3923
|
-
is: "is";
|
|
3924
3928
|
ga: "ga";
|
|
3925
3929
|
it: "it";
|
|
3926
3930
|
it_ch: "it_ch";
|
|
@@ -3930,9 +3934,7 @@ export declare const productRoute: {
|
|
|
3930
3934
|
lv: "lv";
|
|
3931
3935
|
lt: "lt";
|
|
3932
3936
|
mk: "mk";
|
|
3933
|
-
ml: "ml";
|
|
3934
3937
|
ms: "ms";
|
|
3935
|
-
mt: "mt";
|
|
3936
3938
|
no: "no";
|
|
3937
3939
|
nb: "nb";
|
|
3938
3940
|
nn: "nn";
|
|
@@ -3963,8 +3965,6 @@ export declare const productRoute: {
|
|
|
3963
3965
|
es: "es";
|
|
3964
3966
|
sv: "sv";
|
|
3965
3967
|
sv_fi: "sv_fi";
|
|
3966
|
-
th: "th";
|
|
3967
|
-
tr: "tr";
|
|
3968
3968
|
uk: "uk";
|
|
3969
3969
|
ur: "ur";
|
|
3970
3970
|
vi: "vi";
|
|
@@ -3980,7 +3980,13 @@ export declare const productRoute: {
|
|
|
3980
3980
|
}, z.core.$strip>>>;
|
|
3981
3981
|
translations: z.ZodArray<z.ZodObject<{
|
|
3982
3982
|
locale: z.ZodEnum<{
|
|
3983
|
+
hr: "hr";
|
|
3984
|
+
th: "th";
|
|
3985
|
+
tr: "tr";
|
|
3983
3986
|
id: "id";
|
|
3987
|
+
is: "is";
|
|
3988
|
+
mt: "mt";
|
|
3989
|
+
ml: "ml";
|
|
3984
3990
|
af: "af";
|
|
3985
3991
|
sq: "sq";
|
|
3986
3992
|
ar_dz: "ar_dz";
|
|
@@ -4007,7 +4013,6 @@ export declare const productRoute: {
|
|
|
4007
4013
|
zh_cn: "zh_cn";
|
|
4008
4014
|
zh_sg: "zh_sg";
|
|
4009
4015
|
zh_tw: "zh_tw";
|
|
4010
|
-
hr: "hr";
|
|
4011
4016
|
cs: "cs";
|
|
4012
4017
|
da: "da";
|
|
4013
4018
|
nl_be: "nl_be";
|
|
@@ -4042,7 +4047,6 @@ export declare const productRoute: {
|
|
|
4042
4047
|
he: "he";
|
|
4043
4048
|
hi: "hi";
|
|
4044
4049
|
hu: "hu";
|
|
4045
|
-
is: "is";
|
|
4046
4050
|
ga: "ga";
|
|
4047
4051
|
it: "it";
|
|
4048
4052
|
it_ch: "it_ch";
|
|
@@ -4052,9 +4056,7 @@ export declare const productRoute: {
|
|
|
4052
4056
|
lv: "lv";
|
|
4053
4057
|
lt: "lt";
|
|
4054
4058
|
mk: "mk";
|
|
4055
|
-
ml: "ml";
|
|
4056
4059
|
ms: "ms";
|
|
4057
|
-
mt: "mt";
|
|
4058
4060
|
no: "no";
|
|
4059
4061
|
nb: "nb";
|
|
4060
4062
|
nn: "nn";
|
|
@@ -4085,8 +4087,6 @@ export declare const productRoute: {
|
|
|
4085
4087
|
es: "es";
|
|
4086
4088
|
sv: "sv";
|
|
4087
4089
|
sv_fi: "sv_fi";
|
|
4088
|
-
th: "th";
|
|
4089
|
-
tr: "tr";
|
|
4090
4090
|
uk: "uk";
|
|
4091
4091
|
ur: "ur";
|
|
4092
4092
|
vi: "vi";
|
|
@@ -4120,7 +4120,13 @@ export declare const productRoute: {
|
|
|
4120
4120
|
publishedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
4121
4121
|
translations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4122
4122
|
locale: z.ZodEnum<{
|
|
4123
|
+
hr: "hr";
|
|
4124
|
+
th: "th";
|
|
4125
|
+
tr: "tr";
|
|
4123
4126
|
id: "id";
|
|
4127
|
+
is: "is";
|
|
4128
|
+
mt: "mt";
|
|
4129
|
+
ml: "ml";
|
|
4124
4130
|
af: "af";
|
|
4125
4131
|
sq: "sq";
|
|
4126
4132
|
ar_dz: "ar_dz";
|
|
@@ -4147,7 +4153,6 @@ export declare const productRoute: {
|
|
|
4147
4153
|
zh_cn: "zh_cn";
|
|
4148
4154
|
zh_sg: "zh_sg";
|
|
4149
4155
|
zh_tw: "zh_tw";
|
|
4150
|
-
hr: "hr";
|
|
4151
4156
|
cs: "cs";
|
|
4152
4157
|
da: "da";
|
|
4153
4158
|
nl_be: "nl_be";
|
|
@@ -4182,7 +4187,6 @@ export declare const productRoute: {
|
|
|
4182
4187
|
he: "he";
|
|
4183
4188
|
hi: "hi";
|
|
4184
4189
|
hu: "hu";
|
|
4185
|
-
is: "is";
|
|
4186
4190
|
ga: "ga";
|
|
4187
4191
|
it: "it";
|
|
4188
4192
|
it_ch: "it_ch";
|
|
@@ -4192,9 +4196,7 @@ export declare const productRoute: {
|
|
|
4192
4196
|
lv: "lv";
|
|
4193
4197
|
lt: "lt";
|
|
4194
4198
|
mk: "mk";
|
|
4195
|
-
ml: "ml";
|
|
4196
4199
|
ms: "ms";
|
|
4197
|
-
mt: "mt";
|
|
4198
4200
|
no: "no";
|
|
4199
4201
|
nb: "nb";
|
|
4200
4202
|
nn: "nn";
|
|
@@ -4225,8 +4227,6 @@ export declare const productRoute: {
|
|
|
4225
4227
|
es: "es";
|
|
4226
4228
|
sv: "sv";
|
|
4227
4229
|
sv_fi: "sv_fi";
|
|
4228
|
-
th: "th";
|
|
4229
|
-
tr: "tr";
|
|
4230
4230
|
uk: "uk";
|
|
4231
4231
|
ur: "ur";
|
|
4232
4232
|
vi: "vi";
|