@mintlify/validation 0.1.251 → 0.1.253
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/README.md +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/mint-config/schemas/v2/index.d.ts +920 -155
- package/dist/mint-config/schemas/v2/properties/api.d.ts +18 -3
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +72 -12
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +72 -12
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +96 -12
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +256 -40
- package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +80 -20
- package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +5 -0
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +72 -12
- package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +80 -20
- package/dist/mint-config/schemas/v2/properties/reusable/openapi.d.ts +22 -1
- package/dist/mint-config/schemas/v2/properties/reusable/openapi.js +7 -1
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +182 -29
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +182 -29
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +182 -29
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +182 -29
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +146 -23
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +182 -29
- package/dist/mint-config/validateConfig.d.ts +4333 -0
- package/dist/mint-config/{validateMintConfig.js → validateConfig.js} +10 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/dist/mint-config/validateMintConfig.d.ts +0 -478
|
@@ -40,7 +40,16 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
40
40
|
dark: string;
|
|
41
41
|
}>]>>;
|
|
42
42
|
api: z.ZodOptional<z.ZodObject<{
|
|
43
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
43
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
44
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
45
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
46
|
+
}, "strict", z.ZodTypeAny, {
|
|
47
|
+
source: string;
|
|
48
|
+
directory?: string | undefined;
|
|
49
|
+
}, {
|
|
50
|
+
source: string;
|
|
51
|
+
directory?: string | undefined;
|
|
52
|
+
}>]>>;
|
|
44
53
|
playground: z.ZodOptional<z.ZodObject<{
|
|
45
54
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
|
|
46
55
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -69,7 +78,10 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
69
78
|
server?: string | string[] | undefined;
|
|
70
79
|
}>>;
|
|
71
80
|
}, "strip", z.ZodTypeAny, {
|
|
72
|
-
openapi?: string | string[] |
|
|
81
|
+
openapi?: string | string[] | {
|
|
82
|
+
source: string;
|
|
83
|
+
directory?: string | undefined;
|
|
84
|
+
} | undefined;
|
|
73
85
|
playground?: {
|
|
74
86
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
75
87
|
proxy?: boolean | undefined;
|
|
@@ -82,7 +94,10 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
82
94
|
server?: string | string[] | undefined;
|
|
83
95
|
} | undefined;
|
|
84
96
|
}, {
|
|
85
|
-
openapi?: string | string[] |
|
|
97
|
+
openapi?: string | string[] | {
|
|
98
|
+
source: string;
|
|
99
|
+
directory?: string | undefined;
|
|
100
|
+
} | undefined;
|
|
86
101
|
playground?: {
|
|
87
102
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
88
103
|
proxy?: boolean | undefined;
|
|
@@ -587,11 +602,26 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
587
602
|
}, {
|
|
588
603
|
href: string;
|
|
589
604
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
590
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
605
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
606
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
607
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
608
|
+
}, "strict", z.ZodTypeAny, {
|
|
609
|
+
source: string;
|
|
610
|
+
directory?: string | undefined;
|
|
611
|
+
}, {
|
|
612
|
+
source: string;
|
|
613
|
+
directory?: string | undefined;
|
|
614
|
+
}>]>>;
|
|
591
615
|
}, "strip", z.ZodTypeAny, {
|
|
592
|
-
openapi?: string | string[] |
|
|
616
|
+
openapi?: string | string[] | {
|
|
617
|
+
source: string;
|
|
618
|
+
directory?: string | undefined;
|
|
619
|
+
} | undefined;
|
|
593
620
|
}, {
|
|
594
|
-
openapi?: string | string[] |
|
|
621
|
+
openapi?: string | string[] | {
|
|
622
|
+
source: string;
|
|
623
|
+
directory?: string | undefined;
|
|
624
|
+
} | undefined;
|
|
595
625
|
}>>, "many">;
|
|
596
626
|
}, "strip", z.ZodTypeAny, {
|
|
597
627
|
languages: any[];
|
|
@@ -629,11 +659,26 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
629
659
|
}, {
|
|
630
660
|
href: string;
|
|
631
661
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
632
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
662
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
663
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
664
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
665
|
+
}, "strict", z.ZodTypeAny, {
|
|
666
|
+
source: string;
|
|
667
|
+
directory?: string | undefined;
|
|
668
|
+
}, {
|
|
669
|
+
source: string;
|
|
670
|
+
directory?: string | undefined;
|
|
671
|
+
}>]>>;
|
|
633
672
|
}, "strip", z.ZodTypeAny, {
|
|
634
|
-
openapi?: string | string[] |
|
|
673
|
+
openapi?: string | string[] | {
|
|
674
|
+
source: string;
|
|
675
|
+
directory?: string | undefined;
|
|
676
|
+
} | undefined;
|
|
635
677
|
}, {
|
|
636
|
-
openapi?: string | string[] |
|
|
678
|
+
openapi?: string | string[] | {
|
|
679
|
+
source: string;
|
|
680
|
+
directory?: string | undefined;
|
|
681
|
+
} | undefined;
|
|
637
682
|
}>>, "many">;
|
|
638
683
|
}, "strip", z.ZodTypeAny, {
|
|
639
684
|
versions: any[];
|
|
@@ -707,11 +752,26 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
707
752
|
}, {
|
|
708
753
|
href: string;
|
|
709
754
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
710
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
755
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
756
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
757
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
758
|
+
}, "strict", z.ZodTypeAny, {
|
|
759
|
+
source: string;
|
|
760
|
+
directory?: string | undefined;
|
|
761
|
+
}, {
|
|
762
|
+
source: string;
|
|
763
|
+
directory?: string | undefined;
|
|
764
|
+
}>]>>;
|
|
711
765
|
}, "strip", z.ZodTypeAny, {
|
|
712
|
-
openapi?: string | string[] |
|
|
766
|
+
openapi?: string | string[] | {
|
|
767
|
+
source: string;
|
|
768
|
+
directory?: string | undefined;
|
|
769
|
+
} | undefined;
|
|
713
770
|
}, {
|
|
714
|
-
openapi?: string | string[] |
|
|
771
|
+
openapi?: string | string[] | {
|
|
772
|
+
source: string;
|
|
773
|
+
directory?: string | undefined;
|
|
774
|
+
} | undefined;
|
|
715
775
|
}>>, "many">;
|
|
716
776
|
}, "strip", z.ZodTypeAny, {
|
|
717
777
|
tabs: any[];
|
|
@@ -785,11 +845,26 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
785
845
|
}, {
|
|
786
846
|
href: string;
|
|
787
847
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
788
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
848
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
849
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
850
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
851
|
+
}, "strict", z.ZodTypeAny, {
|
|
852
|
+
source: string;
|
|
853
|
+
directory?: string | undefined;
|
|
854
|
+
}, {
|
|
855
|
+
source: string;
|
|
856
|
+
directory?: string | undefined;
|
|
857
|
+
}>]>>;
|
|
789
858
|
}, "strip", z.ZodTypeAny, {
|
|
790
|
-
openapi?: string | string[] |
|
|
859
|
+
openapi?: string | string[] | {
|
|
860
|
+
source: string;
|
|
861
|
+
directory?: string | undefined;
|
|
862
|
+
} | undefined;
|
|
791
863
|
}, {
|
|
792
|
-
openapi?: string | string[] |
|
|
864
|
+
openapi?: string | string[] | {
|
|
865
|
+
source: string;
|
|
866
|
+
directory?: string | undefined;
|
|
867
|
+
} | undefined;
|
|
793
868
|
}>>, "many">;
|
|
794
869
|
}, "strip", z.ZodTypeAny, {
|
|
795
870
|
dropdowns: any[];
|
|
@@ -899,11 +974,26 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
899
974
|
}, {
|
|
900
975
|
href: string;
|
|
901
976
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
902
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
977
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
978
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
979
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
980
|
+
}, "strict", z.ZodTypeAny, {
|
|
981
|
+
source: string;
|
|
982
|
+
directory?: string | undefined;
|
|
983
|
+
}, {
|
|
984
|
+
source: string;
|
|
985
|
+
directory?: string | undefined;
|
|
986
|
+
}>]>>;
|
|
903
987
|
}, "strip", z.ZodTypeAny, {
|
|
904
|
-
openapi?: string | string[] |
|
|
988
|
+
openapi?: string | string[] | {
|
|
989
|
+
source: string;
|
|
990
|
+
directory?: string | undefined;
|
|
991
|
+
} | undefined;
|
|
905
992
|
}, {
|
|
906
|
-
openapi?: string | string[] |
|
|
993
|
+
openapi?: string | string[] | {
|
|
994
|
+
source: string;
|
|
995
|
+
directory?: string | undefined;
|
|
996
|
+
} | undefined;
|
|
907
997
|
}>>, "many">;
|
|
908
998
|
}, "strip", z.ZodTypeAny, {
|
|
909
999
|
anchors: any[];
|
|
@@ -1077,11 +1167,32 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1077
1167
|
isPublic?: boolean | undefined;
|
|
1078
1168
|
} | undefined;
|
|
1079
1169
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
1080
|
-
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
1170
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
1171
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
1172
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
1173
|
+
}, "strict", z.ZodTypeAny, {
|
|
1174
|
+
source: string;
|
|
1175
|
+
directory?: string | undefined;
|
|
1176
|
+
}, {
|
|
1177
|
+
source: string;
|
|
1178
|
+
directory?: string | undefined;
|
|
1179
|
+
}>]>;
|
|
1081
1180
|
}, "strip", z.ZodTypeAny, {
|
|
1082
|
-
openapi: (string | string[]
|
|
1181
|
+
openapi: (string | string[] | {
|
|
1182
|
+
source: string;
|
|
1183
|
+
directory?: string | undefined;
|
|
1184
|
+
}) & (string | string[] | {
|
|
1185
|
+
source: string;
|
|
1186
|
+
directory?: string | undefined;
|
|
1187
|
+
} | undefined);
|
|
1083
1188
|
}, {
|
|
1084
|
-
openapi: (string | string[]
|
|
1189
|
+
openapi: (string | string[] | {
|
|
1190
|
+
source: string;
|
|
1191
|
+
directory?: string | undefined;
|
|
1192
|
+
}) & (string | string[] | {
|
|
1193
|
+
source: string;
|
|
1194
|
+
directory?: string | undefined;
|
|
1195
|
+
} | undefined);
|
|
1085
1196
|
}>, z.ZodLazy<z.ZodObject<{
|
|
1086
1197
|
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
1087
1198
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1125,7 +1236,13 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1125
1236
|
isPublic?: boolean | undefined;
|
|
1126
1237
|
} | undefined;
|
|
1127
1238
|
} & ({
|
|
1128
|
-
openapi: (string | string[]
|
|
1239
|
+
openapi: (string | string[] | {
|
|
1240
|
+
source: string;
|
|
1241
|
+
directory?: string | undefined;
|
|
1242
|
+
}) & (string | string[] | {
|
|
1243
|
+
source: string;
|
|
1244
|
+
directory?: string | undefined;
|
|
1245
|
+
} | undefined);
|
|
1129
1246
|
} | {
|
|
1130
1247
|
pages: any[];
|
|
1131
1248
|
}))[];
|
|
@@ -1165,7 +1282,13 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1165
1282
|
isPublic?: boolean | undefined;
|
|
1166
1283
|
} | undefined;
|
|
1167
1284
|
} & ({
|
|
1168
|
-
openapi: (string | string[]
|
|
1285
|
+
openapi: (string | string[] | {
|
|
1286
|
+
source: string;
|
|
1287
|
+
directory?: string | undefined;
|
|
1288
|
+
}) & (string | string[] | {
|
|
1289
|
+
source: string;
|
|
1290
|
+
directory?: string | undefined;
|
|
1291
|
+
} | undefined);
|
|
1169
1292
|
} | {
|
|
1170
1293
|
pages: any[];
|
|
1171
1294
|
}))[];
|
|
@@ -1730,7 +1853,13 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1730
1853
|
isPublic?: boolean | undefined;
|
|
1731
1854
|
} | undefined;
|
|
1732
1855
|
} & ({
|
|
1733
|
-
openapi: (string | string[]
|
|
1856
|
+
openapi: (string | string[] | {
|
|
1857
|
+
source: string;
|
|
1858
|
+
directory?: string | undefined;
|
|
1859
|
+
}) & (string | string[] | {
|
|
1860
|
+
source: string;
|
|
1861
|
+
directory?: string | undefined;
|
|
1862
|
+
} | undefined);
|
|
1734
1863
|
} | {
|
|
1735
1864
|
pages: any[];
|
|
1736
1865
|
}))[];
|
|
@@ -1831,7 +1960,13 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1831
1960
|
isPublic?: boolean | undefined;
|
|
1832
1961
|
} | undefined;
|
|
1833
1962
|
} & ({
|
|
1834
|
-
openapi: (string | string[]
|
|
1963
|
+
openapi: (string | string[] | {
|
|
1964
|
+
source: string;
|
|
1965
|
+
directory?: string | undefined;
|
|
1966
|
+
}) & (string | string[] | {
|
|
1967
|
+
source: string;
|
|
1968
|
+
directory?: string | undefined;
|
|
1969
|
+
} | undefined);
|
|
1835
1970
|
} | {
|
|
1836
1971
|
pages: any[];
|
|
1837
1972
|
}))[];
|
|
@@ -1849,7 +1984,10 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1849
1984
|
dark: string;
|
|
1850
1985
|
} | undefined;
|
|
1851
1986
|
api?: {
|
|
1852
|
-
openapi?: string | string[] |
|
|
1987
|
+
openapi?: string | string[] | {
|
|
1988
|
+
source: string;
|
|
1989
|
+
directory?: string | undefined;
|
|
1990
|
+
} | undefined;
|
|
1853
1991
|
playground?: {
|
|
1854
1992
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
1855
1993
|
proxy?: boolean | undefined;
|
|
@@ -2099,7 +2237,13 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
2099
2237
|
isPublic?: boolean | undefined;
|
|
2100
2238
|
} | undefined;
|
|
2101
2239
|
} & ({
|
|
2102
|
-
openapi: (string | string[]
|
|
2240
|
+
openapi: (string | string[] | {
|
|
2241
|
+
source: string;
|
|
2242
|
+
directory?: string | undefined;
|
|
2243
|
+
}) & (string | string[] | {
|
|
2244
|
+
source: string;
|
|
2245
|
+
directory?: string | undefined;
|
|
2246
|
+
} | undefined);
|
|
2103
2247
|
} | {
|
|
2104
2248
|
pages: any[];
|
|
2105
2249
|
}))[];
|
|
@@ -2200,7 +2344,13 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
2200
2344
|
isPublic?: boolean | undefined;
|
|
2201
2345
|
} | undefined;
|
|
2202
2346
|
} & ({
|
|
2203
|
-
openapi: (string | string[]
|
|
2347
|
+
openapi: (string | string[] | {
|
|
2348
|
+
source: string;
|
|
2349
|
+
directory?: string | undefined;
|
|
2350
|
+
}) & (string | string[] | {
|
|
2351
|
+
source: string;
|
|
2352
|
+
directory?: string | undefined;
|
|
2353
|
+
} | undefined);
|
|
2204
2354
|
} | {
|
|
2205
2355
|
pages: any[];
|
|
2206
2356
|
}))[];
|
|
@@ -2219,7 +2369,10 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
2219
2369
|
dark: string;
|
|
2220
2370
|
} | undefined;
|
|
2221
2371
|
api?: {
|
|
2222
|
-
openapi?: string | string[] |
|
|
2372
|
+
openapi?: string | string[] | {
|
|
2373
|
+
source: string;
|
|
2374
|
+
directory?: string | undefined;
|
|
2375
|
+
} | undefined;
|
|
2223
2376
|
playground?: {
|
|
2224
2377
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
2225
2378
|
proxy?: boolean | undefined;
|
|
@@ -39,7 +39,16 @@ export declare const standardConfigSchema: {
|
|
|
39
39
|
dark: string;
|
|
40
40
|
}>]>>;
|
|
41
41
|
api: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
42
|
-
openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many"
|
|
42
|
+
openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">, import("zod").ZodObject<{
|
|
43
|
+
source: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
|
44
|
+
directory: import("zod").ZodOptional<import("zod").ZodString>;
|
|
45
|
+
}, "strict", import("zod").ZodTypeAny, {
|
|
46
|
+
source: string;
|
|
47
|
+
directory?: string | undefined;
|
|
48
|
+
}, {
|
|
49
|
+
source: string;
|
|
50
|
+
directory?: string | undefined;
|
|
51
|
+
}>]>>;
|
|
43
52
|
playground: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
44
53
|
display: import("zod").ZodOptional<import("zod").ZodEnum<["interactive", "simple", "none"]>>;
|
|
45
54
|
proxy: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -68,7 +77,10 @@ export declare const standardConfigSchema: {
|
|
|
68
77
|
server?: string | string[] | undefined;
|
|
69
78
|
}>>;
|
|
70
79
|
}, "strip", import("zod").ZodTypeAny, {
|
|
71
|
-
openapi?: string | string[] |
|
|
80
|
+
openapi?: string | string[] | {
|
|
81
|
+
source: string;
|
|
82
|
+
directory?: string | undefined;
|
|
83
|
+
} | undefined;
|
|
72
84
|
playground?: {
|
|
73
85
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
74
86
|
proxy?: boolean | undefined;
|
|
@@ -81,7 +93,10 @@ export declare const standardConfigSchema: {
|
|
|
81
93
|
server?: string | string[] | undefined;
|
|
82
94
|
} | undefined;
|
|
83
95
|
}, {
|
|
84
|
-
openapi?: string | string[] |
|
|
96
|
+
openapi?: string | string[] | {
|
|
97
|
+
source: string;
|
|
98
|
+
directory?: string | undefined;
|
|
99
|
+
} | undefined;
|
|
85
100
|
playground?: {
|
|
86
101
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
87
102
|
proxy?: boolean | undefined;
|
|
@@ -586,11 +601,26 @@ export declare const standardConfigSchema: {
|
|
|
586
601
|
}, {
|
|
587
602
|
href: string;
|
|
588
603
|
}>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, ...import("zod").ZodType<any, import("zod").ZodTypeDef, any>[]]>>, import("zod").ZodObject<{
|
|
589
|
-
openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many"
|
|
604
|
+
openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">, import("zod").ZodObject<{
|
|
605
|
+
source: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
|
606
|
+
directory: import("zod").ZodOptional<import("zod").ZodString>;
|
|
607
|
+
}, "strict", import("zod").ZodTypeAny, {
|
|
608
|
+
source: string;
|
|
609
|
+
directory?: string | undefined;
|
|
610
|
+
}, {
|
|
611
|
+
source: string;
|
|
612
|
+
directory?: string | undefined;
|
|
613
|
+
}>]>>;
|
|
590
614
|
}, "strip", import("zod").ZodTypeAny, {
|
|
591
|
-
openapi?: string | string[] |
|
|
615
|
+
openapi?: string | string[] | {
|
|
616
|
+
source: string;
|
|
617
|
+
directory?: string | undefined;
|
|
618
|
+
} | undefined;
|
|
592
619
|
}, {
|
|
593
|
-
openapi?: string | string[] |
|
|
620
|
+
openapi?: string | string[] | {
|
|
621
|
+
source: string;
|
|
622
|
+
directory?: string | undefined;
|
|
623
|
+
} | undefined;
|
|
594
624
|
}>>, "many">;
|
|
595
625
|
}, "strip", import("zod").ZodTypeAny, {
|
|
596
626
|
languages: any[];
|
|
@@ -628,11 +658,26 @@ export declare const standardConfigSchema: {
|
|
|
628
658
|
}, {
|
|
629
659
|
href: string;
|
|
630
660
|
}>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, ...import("zod").ZodType<any, import("zod").ZodTypeDef, any>[]]>>, import("zod").ZodObject<{
|
|
631
|
-
openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many"
|
|
661
|
+
openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">, import("zod").ZodObject<{
|
|
662
|
+
source: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
|
663
|
+
directory: import("zod").ZodOptional<import("zod").ZodString>;
|
|
664
|
+
}, "strict", import("zod").ZodTypeAny, {
|
|
665
|
+
source: string;
|
|
666
|
+
directory?: string | undefined;
|
|
667
|
+
}, {
|
|
668
|
+
source: string;
|
|
669
|
+
directory?: string | undefined;
|
|
670
|
+
}>]>>;
|
|
632
671
|
}, "strip", import("zod").ZodTypeAny, {
|
|
633
|
-
openapi?: string | string[] |
|
|
672
|
+
openapi?: string | string[] | {
|
|
673
|
+
source: string;
|
|
674
|
+
directory?: string | undefined;
|
|
675
|
+
} | undefined;
|
|
634
676
|
}, {
|
|
635
|
-
openapi?: string | string[] |
|
|
677
|
+
openapi?: string | string[] | {
|
|
678
|
+
source: string;
|
|
679
|
+
directory?: string | undefined;
|
|
680
|
+
} | undefined;
|
|
636
681
|
}>>, "many">;
|
|
637
682
|
}, "strip", import("zod").ZodTypeAny, {
|
|
638
683
|
versions: any[];
|
|
@@ -706,11 +751,26 @@ export declare const standardConfigSchema: {
|
|
|
706
751
|
}, {
|
|
707
752
|
href: string;
|
|
708
753
|
}>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, ...import("zod").ZodType<any, import("zod").ZodTypeDef, any>[]]>>, import("zod").ZodObject<{
|
|
709
|
-
openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many"
|
|
754
|
+
openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">, import("zod").ZodObject<{
|
|
755
|
+
source: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
|
756
|
+
directory: import("zod").ZodOptional<import("zod").ZodString>;
|
|
757
|
+
}, "strict", import("zod").ZodTypeAny, {
|
|
758
|
+
source: string;
|
|
759
|
+
directory?: string | undefined;
|
|
760
|
+
}, {
|
|
761
|
+
source: string;
|
|
762
|
+
directory?: string | undefined;
|
|
763
|
+
}>]>>;
|
|
710
764
|
}, "strip", import("zod").ZodTypeAny, {
|
|
711
|
-
openapi?: string | string[] |
|
|
765
|
+
openapi?: string | string[] | {
|
|
766
|
+
source: string;
|
|
767
|
+
directory?: string | undefined;
|
|
768
|
+
} | undefined;
|
|
712
769
|
}, {
|
|
713
|
-
openapi?: string | string[] |
|
|
770
|
+
openapi?: string | string[] | {
|
|
771
|
+
source: string;
|
|
772
|
+
directory?: string | undefined;
|
|
773
|
+
} | undefined;
|
|
714
774
|
}>>, "many">;
|
|
715
775
|
}, "strip", import("zod").ZodTypeAny, {
|
|
716
776
|
tabs: any[];
|
|
@@ -784,11 +844,26 @@ export declare const standardConfigSchema: {
|
|
|
784
844
|
}, {
|
|
785
845
|
href: string;
|
|
786
846
|
}>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, ...import("zod").ZodType<any, import("zod").ZodTypeDef, any>[]]>>, import("zod").ZodObject<{
|
|
787
|
-
openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many"
|
|
847
|
+
openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">, import("zod").ZodObject<{
|
|
848
|
+
source: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
|
849
|
+
directory: import("zod").ZodOptional<import("zod").ZodString>;
|
|
850
|
+
}, "strict", import("zod").ZodTypeAny, {
|
|
851
|
+
source: string;
|
|
852
|
+
directory?: string | undefined;
|
|
853
|
+
}, {
|
|
854
|
+
source: string;
|
|
855
|
+
directory?: string | undefined;
|
|
856
|
+
}>]>>;
|
|
788
857
|
}, "strip", import("zod").ZodTypeAny, {
|
|
789
|
-
openapi?: string | string[] |
|
|
858
|
+
openapi?: string | string[] | {
|
|
859
|
+
source: string;
|
|
860
|
+
directory?: string | undefined;
|
|
861
|
+
} | undefined;
|
|
790
862
|
}, {
|
|
791
|
-
openapi?: string | string[] |
|
|
863
|
+
openapi?: string | string[] | {
|
|
864
|
+
source: string;
|
|
865
|
+
directory?: string | undefined;
|
|
866
|
+
} | undefined;
|
|
792
867
|
}>>, "many">;
|
|
793
868
|
}, "strip", import("zod").ZodTypeAny, {
|
|
794
869
|
dropdowns: any[];
|
|
@@ -898,11 +973,26 @@ export declare const standardConfigSchema: {
|
|
|
898
973
|
}, {
|
|
899
974
|
href: string;
|
|
900
975
|
}>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, ...import("zod").ZodType<any, import("zod").ZodTypeDef, any>[]]>>, import("zod").ZodObject<{
|
|
901
|
-
openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many"
|
|
976
|
+
openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">, import("zod").ZodObject<{
|
|
977
|
+
source: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
|
978
|
+
directory: import("zod").ZodOptional<import("zod").ZodString>;
|
|
979
|
+
}, "strict", import("zod").ZodTypeAny, {
|
|
980
|
+
source: string;
|
|
981
|
+
directory?: string | undefined;
|
|
982
|
+
}, {
|
|
983
|
+
source: string;
|
|
984
|
+
directory?: string | undefined;
|
|
985
|
+
}>]>>;
|
|
902
986
|
}, "strip", import("zod").ZodTypeAny, {
|
|
903
|
-
openapi?: string | string[] |
|
|
987
|
+
openapi?: string | string[] | {
|
|
988
|
+
source: string;
|
|
989
|
+
directory?: string | undefined;
|
|
990
|
+
} | undefined;
|
|
904
991
|
}, {
|
|
905
|
-
openapi?: string | string[] |
|
|
992
|
+
openapi?: string | string[] | {
|
|
993
|
+
source: string;
|
|
994
|
+
directory?: string | undefined;
|
|
995
|
+
} | undefined;
|
|
906
996
|
}>>, "many">;
|
|
907
997
|
}, "strip", import("zod").ZodTypeAny, {
|
|
908
998
|
anchors: any[];
|
|
@@ -1076,11 +1166,32 @@ export declare const standardConfigSchema: {
|
|
|
1076
1166
|
isPublic?: boolean | undefined;
|
|
1077
1167
|
} | undefined;
|
|
1078
1168
|
}>, import("zod").ZodUnion<[import("zod").ZodObject<{
|
|
1079
|
-
openapi: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many"
|
|
1169
|
+
openapi: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">, import("zod").ZodObject<{
|
|
1170
|
+
source: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
|
1171
|
+
directory: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1172
|
+
}, "strict", import("zod").ZodTypeAny, {
|
|
1173
|
+
source: string;
|
|
1174
|
+
directory?: string | undefined;
|
|
1175
|
+
}, {
|
|
1176
|
+
source: string;
|
|
1177
|
+
directory?: string | undefined;
|
|
1178
|
+
}>]>;
|
|
1080
1179
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1081
|
-
openapi: (string | string[]
|
|
1180
|
+
openapi: (string | string[] | {
|
|
1181
|
+
source: string;
|
|
1182
|
+
directory?: string | undefined;
|
|
1183
|
+
}) & (string | string[] | {
|
|
1184
|
+
source: string;
|
|
1185
|
+
directory?: string | undefined;
|
|
1186
|
+
} | undefined);
|
|
1082
1187
|
}, {
|
|
1083
|
-
openapi: (string | string[]
|
|
1188
|
+
openapi: (string | string[] | {
|
|
1189
|
+
source: string;
|
|
1190
|
+
directory?: string | undefined;
|
|
1191
|
+
}) & (string | string[] | {
|
|
1192
|
+
source: string;
|
|
1193
|
+
directory?: string | undefined;
|
|
1194
|
+
} | undefined);
|
|
1084
1195
|
}>, import("zod").ZodLazy<import("zod").ZodObject<{
|
|
1085
1196
|
pages: import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">;
|
|
1086
1197
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -1124,7 +1235,13 @@ export declare const standardConfigSchema: {
|
|
|
1124
1235
|
isPublic?: boolean | undefined;
|
|
1125
1236
|
} | undefined;
|
|
1126
1237
|
} & ({
|
|
1127
|
-
openapi: (string | string[]
|
|
1238
|
+
openapi: (string | string[] | {
|
|
1239
|
+
source: string;
|
|
1240
|
+
directory?: string | undefined;
|
|
1241
|
+
}) & (string | string[] | {
|
|
1242
|
+
source: string;
|
|
1243
|
+
directory?: string | undefined;
|
|
1244
|
+
} | undefined);
|
|
1128
1245
|
} | {
|
|
1129
1246
|
pages: any[];
|
|
1130
1247
|
}))[];
|
|
@@ -1164,7 +1281,13 @@ export declare const standardConfigSchema: {
|
|
|
1164
1281
|
isPublic?: boolean | undefined;
|
|
1165
1282
|
} | undefined;
|
|
1166
1283
|
} & ({
|
|
1167
|
-
openapi: (string | string[]
|
|
1284
|
+
openapi: (string | string[] | {
|
|
1285
|
+
source: string;
|
|
1286
|
+
directory?: string | undefined;
|
|
1287
|
+
}) & (string | string[] | {
|
|
1288
|
+
source: string;
|
|
1289
|
+
directory?: string | undefined;
|
|
1290
|
+
} | undefined);
|
|
1168
1291
|
} | {
|
|
1169
1292
|
pages: any[];
|
|
1170
1293
|
}))[];
|