@mintlify/validation 0.1.251 → 0.1.252
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 +2 -2
- package/dist/mint-config/validateMintConfig.d.ts +0 -478
|
@@ -41,7 +41,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
41
41
|
dark: string;
|
|
42
42
|
}>]>>;
|
|
43
43
|
api: z.ZodOptional<z.ZodObject<{
|
|
44
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
44
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
45
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
46
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
47
|
+
}, "strict", z.ZodTypeAny, {
|
|
48
|
+
source: string;
|
|
49
|
+
directory?: string | undefined;
|
|
50
|
+
}, {
|
|
51
|
+
source: string;
|
|
52
|
+
directory?: string | undefined;
|
|
53
|
+
}>]>>;
|
|
45
54
|
playground: z.ZodOptional<z.ZodObject<{
|
|
46
55
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
|
|
47
56
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -70,7 +79,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
70
79
|
server?: string | string[] | undefined;
|
|
71
80
|
}>>;
|
|
72
81
|
}, "strip", z.ZodTypeAny, {
|
|
73
|
-
openapi?: string | string[] |
|
|
82
|
+
openapi?: string | string[] | {
|
|
83
|
+
source: string;
|
|
84
|
+
directory?: string | undefined;
|
|
85
|
+
} | undefined;
|
|
74
86
|
playground?: {
|
|
75
87
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
76
88
|
proxy?: boolean | undefined;
|
|
@@ -83,7 +95,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
83
95
|
server?: string | string[] | undefined;
|
|
84
96
|
} | undefined;
|
|
85
97
|
}, {
|
|
86
|
-
openapi?: string | string[] |
|
|
98
|
+
openapi?: string | string[] | {
|
|
99
|
+
source: string;
|
|
100
|
+
directory?: string | undefined;
|
|
101
|
+
} | undefined;
|
|
87
102
|
playground?: {
|
|
88
103
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
89
104
|
proxy?: boolean | undefined;
|
|
@@ -588,11 +603,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
588
603
|
}, {
|
|
589
604
|
href: string;
|
|
590
605
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
591
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
606
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
607
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
608
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
609
|
+
}, "strict", z.ZodTypeAny, {
|
|
610
|
+
source: string;
|
|
611
|
+
directory?: string | undefined;
|
|
612
|
+
}, {
|
|
613
|
+
source: string;
|
|
614
|
+
directory?: string | undefined;
|
|
615
|
+
}>]>>;
|
|
592
616
|
}, "strip", z.ZodTypeAny, {
|
|
593
|
-
openapi?: string | string[] |
|
|
617
|
+
openapi?: string | string[] | {
|
|
618
|
+
source: string;
|
|
619
|
+
directory?: string | undefined;
|
|
620
|
+
} | undefined;
|
|
594
621
|
}, {
|
|
595
|
-
openapi?: string | string[] |
|
|
622
|
+
openapi?: string | string[] | {
|
|
623
|
+
source: string;
|
|
624
|
+
directory?: string | undefined;
|
|
625
|
+
} | undefined;
|
|
596
626
|
}>>, "many">;
|
|
597
627
|
}, "strip", z.ZodTypeAny, {
|
|
598
628
|
languages: any[];
|
|
@@ -630,11 +660,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
630
660
|
}, {
|
|
631
661
|
href: string;
|
|
632
662
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
633
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
663
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
664
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
665
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
666
|
+
}, "strict", z.ZodTypeAny, {
|
|
667
|
+
source: string;
|
|
668
|
+
directory?: string | undefined;
|
|
669
|
+
}, {
|
|
670
|
+
source: string;
|
|
671
|
+
directory?: string | undefined;
|
|
672
|
+
}>]>>;
|
|
634
673
|
}, "strip", z.ZodTypeAny, {
|
|
635
|
-
openapi?: string | string[] |
|
|
674
|
+
openapi?: string | string[] | {
|
|
675
|
+
source: string;
|
|
676
|
+
directory?: string | undefined;
|
|
677
|
+
} | undefined;
|
|
636
678
|
}, {
|
|
637
|
-
openapi?: string | string[] |
|
|
679
|
+
openapi?: string | string[] | {
|
|
680
|
+
source: string;
|
|
681
|
+
directory?: string | undefined;
|
|
682
|
+
} | undefined;
|
|
638
683
|
}>>, "many">;
|
|
639
684
|
}, "strip", z.ZodTypeAny, {
|
|
640
685
|
versions: any[];
|
|
@@ -708,11 +753,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
708
753
|
}, {
|
|
709
754
|
href: string;
|
|
710
755
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
711
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
756
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
757
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
758
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
759
|
+
}, "strict", z.ZodTypeAny, {
|
|
760
|
+
source: string;
|
|
761
|
+
directory?: string | undefined;
|
|
762
|
+
}, {
|
|
763
|
+
source: string;
|
|
764
|
+
directory?: string | undefined;
|
|
765
|
+
}>]>>;
|
|
712
766
|
}, "strip", z.ZodTypeAny, {
|
|
713
|
-
openapi?: string | string[] |
|
|
767
|
+
openapi?: string | string[] | {
|
|
768
|
+
source: string;
|
|
769
|
+
directory?: string | undefined;
|
|
770
|
+
} | undefined;
|
|
714
771
|
}, {
|
|
715
|
-
openapi?: string | string[] |
|
|
772
|
+
openapi?: string | string[] | {
|
|
773
|
+
source: string;
|
|
774
|
+
directory?: string | undefined;
|
|
775
|
+
} | undefined;
|
|
716
776
|
}>>, "many">;
|
|
717
777
|
}, "strip", z.ZodTypeAny, {
|
|
718
778
|
tabs: any[];
|
|
@@ -786,11 +846,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
786
846
|
}, {
|
|
787
847
|
href: string;
|
|
788
848
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
789
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
849
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
850
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
851
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
852
|
+
}, "strict", z.ZodTypeAny, {
|
|
853
|
+
source: string;
|
|
854
|
+
directory?: string | undefined;
|
|
855
|
+
}, {
|
|
856
|
+
source: string;
|
|
857
|
+
directory?: string | undefined;
|
|
858
|
+
}>]>>;
|
|
790
859
|
}, "strip", z.ZodTypeAny, {
|
|
791
|
-
openapi?: string | string[] |
|
|
860
|
+
openapi?: string | string[] | {
|
|
861
|
+
source: string;
|
|
862
|
+
directory?: string | undefined;
|
|
863
|
+
} | undefined;
|
|
792
864
|
}, {
|
|
793
|
-
openapi?: string | string[] |
|
|
865
|
+
openapi?: string | string[] | {
|
|
866
|
+
source: string;
|
|
867
|
+
directory?: string | undefined;
|
|
868
|
+
} | undefined;
|
|
794
869
|
}>>, "many">;
|
|
795
870
|
}, "strip", z.ZodTypeAny, {
|
|
796
871
|
dropdowns: any[];
|
|
@@ -900,11 +975,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
900
975
|
}, {
|
|
901
976
|
href: string;
|
|
902
977
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
903
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
978
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
979
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
980
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
981
|
+
}, "strict", z.ZodTypeAny, {
|
|
982
|
+
source: string;
|
|
983
|
+
directory?: string | undefined;
|
|
984
|
+
}, {
|
|
985
|
+
source: string;
|
|
986
|
+
directory?: string | undefined;
|
|
987
|
+
}>]>>;
|
|
904
988
|
}, "strip", z.ZodTypeAny, {
|
|
905
|
-
openapi?: string | string[] |
|
|
989
|
+
openapi?: string | string[] | {
|
|
990
|
+
source: string;
|
|
991
|
+
directory?: string | undefined;
|
|
992
|
+
} | undefined;
|
|
906
993
|
}, {
|
|
907
|
-
openapi?: string | string[] |
|
|
994
|
+
openapi?: string | string[] | {
|
|
995
|
+
source: string;
|
|
996
|
+
directory?: string | undefined;
|
|
997
|
+
} | undefined;
|
|
908
998
|
}>>, "many">;
|
|
909
999
|
}, "strip", z.ZodTypeAny, {
|
|
910
1000
|
anchors: any[];
|
|
@@ -1078,11 +1168,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1078
1168
|
isPublic?: boolean | undefined;
|
|
1079
1169
|
} | undefined;
|
|
1080
1170
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
1081
|
-
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1171
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
1172
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
1173
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
1174
|
+
}, "strict", z.ZodTypeAny, {
|
|
1175
|
+
source: string;
|
|
1176
|
+
directory?: string | undefined;
|
|
1177
|
+
}, {
|
|
1178
|
+
source: string;
|
|
1179
|
+
directory?: string | undefined;
|
|
1180
|
+
}>]>;
|
|
1181
|
+
}, "strip", z.ZodTypeAny, {
|
|
1182
|
+
openapi: (string | string[] | {
|
|
1183
|
+
source: string;
|
|
1184
|
+
directory?: string | undefined;
|
|
1185
|
+
}) & (string | string[] | {
|
|
1186
|
+
source: string;
|
|
1187
|
+
directory?: string | undefined;
|
|
1188
|
+
} | undefined);
|
|
1189
|
+
}, {
|
|
1190
|
+
openapi: (string | string[] | {
|
|
1191
|
+
source: string;
|
|
1192
|
+
directory?: string | undefined;
|
|
1193
|
+
}) & (string | string[] | {
|
|
1194
|
+
source: string;
|
|
1195
|
+
directory?: string | undefined;
|
|
1196
|
+
} | undefined);
|
|
1086
1197
|
}>, z.ZodLazy<z.ZodObject<{
|
|
1087
1198
|
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
1088
1199
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1126,7 +1237,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1126
1237
|
isPublic?: boolean | undefined;
|
|
1127
1238
|
} | undefined;
|
|
1128
1239
|
} & ({
|
|
1129
|
-
openapi: (string | string[]
|
|
1240
|
+
openapi: (string | string[] | {
|
|
1241
|
+
source: string;
|
|
1242
|
+
directory?: string | undefined;
|
|
1243
|
+
}) & (string | string[] | {
|
|
1244
|
+
source: string;
|
|
1245
|
+
directory?: string | undefined;
|
|
1246
|
+
} | undefined);
|
|
1130
1247
|
} | {
|
|
1131
1248
|
pages: any[];
|
|
1132
1249
|
}))[];
|
|
@@ -1166,7 +1283,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1166
1283
|
isPublic?: boolean | undefined;
|
|
1167
1284
|
} | undefined;
|
|
1168
1285
|
} & ({
|
|
1169
|
-
openapi: (string | string[]
|
|
1286
|
+
openapi: (string | string[] | {
|
|
1287
|
+
source: string;
|
|
1288
|
+
directory?: string | undefined;
|
|
1289
|
+
}) & (string | string[] | {
|
|
1290
|
+
source: string;
|
|
1291
|
+
directory?: string | undefined;
|
|
1292
|
+
} | undefined);
|
|
1170
1293
|
} | {
|
|
1171
1294
|
pages: any[];
|
|
1172
1295
|
}))[];
|
|
@@ -1731,7 +1854,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1731
1854
|
isPublic?: boolean | undefined;
|
|
1732
1855
|
} | undefined;
|
|
1733
1856
|
} & ({
|
|
1734
|
-
openapi: (string | string[]
|
|
1857
|
+
openapi: (string | string[] | {
|
|
1858
|
+
source: string;
|
|
1859
|
+
directory?: string | undefined;
|
|
1860
|
+
}) & (string | string[] | {
|
|
1861
|
+
source: string;
|
|
1862
|
+
directory?: string | undefined;
|
|
1863
|
+
} | undefined);
|
|
1735
1864
|
} | {
|
|
1736
1865
|
pages: any[];
|
|
1737
1866
|
}))[];
|
|
@@ -1832,7 +1961,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1832
1961
|
isPublic?: boolean | undefined;
|
|
1833
1962
|
} | undefined;
|
|
1834
1963
|
} & ({
|
|
1835
|
-
openapi: (string | string[]
|
|
1964
|
+
openapi: (string | string[] | {
|
|
1965
|
+
source: string;
|
|
1966
|
+
directory?: string | undefined;
|
|
1967
|
+
}) & (string | string[] | {
|
|
1968
|
+
source: string;
|
|
1969
|
+
directory?: string | undefined;
|
|
1970
|
+
} | undefined);
|
|
1836
1971
|
} | {
|
|
1837
1972
|
pages: any[];
|
|
1838
1973
|
}))[];
|
|
@@ -1850,7 +1985,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1850
1985
|
dark: string;
|
|
1851
1986
|
} | undefined;
|
|
1852
1987
|
api?: {
|
|
1853
|
-
openapi?: string | string[] |
|
|
1988
|
+
openapi?: string | string[] | {
|
|
1989
|
+
source: string;
|
|
1990
|
+
directory?: string | undefined;
|
|
1991
|
+
} | undefined;
|
|
1854
1992
|
playground?: {
|
|
1855
1993
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
1856
1994
|
proxy?: boolean | undefined;
|
|
@@ -2100,7 +2238,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2100
2238
|
isPublic?: boolean | undefined;
|
|
2101
2239
|
} | undefined;
|
|
2102
2240
|
} & ({
|
|
2103
|
-
openapi: (string | string[]
|
|
2241
|
+
openapi: (string | string[] | {
|
|
2242
|
+
source: string;
|
|
2243
|
+
directory?: string | undefined;
|
|
2244
|
+
}) & (string | string[] | {
|
|
2245
|
+
source: string;
|
|
2246
|
+
directory?: string | undefined;
|
|
2247
|
+
} | undefined);
|
|
2104
2248
|
} | {
|
|
2105
2249
|
pages: any[];
|
|
2106
2250
|
}))[];
|
|
@@ -2201,7 +2345,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2201
2345
|
isPublic?: boolean | undefined;
|
|
2202
2346
|
} | undefined;
|
|
2203
2347
|
} & ({
|
|
2204
|
-
openapi: (string | string[]
|
|
2348
|
+
openapi: (string | string[] | {
|
|
2349
|
+
source: string;
|
|
2350
|
+
directory?: string | undefined;
|
|
2351
|
+
}) & (string | string[] | {
|
|
2352
|
+
source: string;
|
|
2353
|
+
directory?: string | undefined;
|
|
2354
|
+
} | undefined);
|
|
2205
2355
|
} | {
|
|
2206
2356
|
pages: any[];
|
|
2207
2357
|
}))[];
|
|
@@ -2220,7 +2370,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2220
2370
|
dark: string;
|
|
2221
2371
|
} | undefined;
|
|
2222
2372
|
api?: {
|
|
2223
|
-
openapi?: string | string[] |
|
|
2373
|
+
openapi?: string | string[] | {
|
|
2374
|
+
source: string;
|
|
2375
|
+
directory?: string | undefined;
|
|
2376
|
+
} | undefined;
|
|
2224
2377
|
playground?: {
|
|
2225
2378
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
2226
2379
|
proxy?: boolean | undefined;
|
|
@@ -2408,7 +2561,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2408
2561
|
dark: string;
|
|
2409
2562
|
}>]>>;
|
|
2410
2563
|
api: z.ZodOptional<z.ZodObject<{
|
|
2411
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
2564
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
2565
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
2566
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
2567
|
+
}, "strict", z.ZodTypeAny, {
|
|
2568
|
+
source: string;
|
|
2569
|
+
directory?: string | undefined;
|
|
2570
|
+
}, {
|
|
2571
|
+
source: string;
|
|
2572
|
+
directory?: string | undefined;
|
|
2573
|
+
}>]>>;
|
|
2412
2574
|
playground: z.ZodOptional<z.ZodObject<{
|
|
2413
2575
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
|
|
2414
2576
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2437,7 +2599,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2437
2599
|
server?: string | string[] | undefined;
|
|
2438
2600
|
}>>;
|
|
2439
2601
|
}, "strip", z.ZodTypeAny, {
|
|
2440
|
-
openapi?: string | string[] |
|
|
2602
|
+
openapi?: string | string[] | {
|
|
2603
|
+
source: string;
|
|
2604
|
+
directory?: string | undefined;
|
|
2605
|
+
} | undefined;
|
|
2441
2606
|
playground?: {
|
|
2442
2607
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
2443
2608
|
proxy?: boolean | undefined;
|
|
@@ -2450,7 +2615,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2450
2615
|
server?: string | string[] | undefined;
|
|
2451
2616
|
} | undefined;
|
|
2452
2617
|
}, {
|
|
2453
|
-
openapi?: string | string[] |
|
|
2618
|
+
openapi?: string | string[] | {
|
|
2619
|
+
source: string;
|
|
2620
|
+
directory?: string | undefined;
|
|
2621
|
+
} | undefined;
|
|
2454
2622
|
playground?: {
|
|
2455
2623
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
2456
2624
|
proxy?: boolean | undefined;
|
|
@@ -2955,11 +3123,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2955
3123
|
}, {
|
|
2956
3124
|
href: string;
|
|
2957
3125
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
2958
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
3126
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
3127
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
3128
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
3129
|
+
}, "strict", z.ZodTypeAny, {
|
|
3130
|
+
source: string;
|
|
3131
|
+
directory?: string | undefined;
|
|
3132
|
+
}, {
|
|
3133
|
+
source: string;
|
|
3134
|
+
directory?: string | undefined;
|
|
3135
|
+
}>]>>;
|
|
2959
3136
|
}, "strip", z.ZodTypeAny, {
|
|
2960
|
-
openapi?: string | string[] |
|
|
3137
|
+
openapi?: string | string[] | {
|
|
3138
|
+
source: string;
|
|
3139
|
+
directory?: string | undefined;
|
|
3140
|
+
} | undefined;
|
|
2961
3141
|
}, {
|
|
2962
|
-
openapi?: string | string[] |
|
|
3142
|
+
openapi?: string | string[] | {
|
|
3143
|
+
source: string;
|
|
3144
|
+
directory?: string | undefined;
|
|
3145
|
+
} | undefined;
|
|
2963
3146
|
}>>, "many">;
|
|
2964
3147
|
}, "strip", z.ZodTypeAny, {
|
|
2965
3148
|
languages: any[];
|
|
@@ -2997,11 +3180,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2997
3180
|
}, {
|
|
2998
3181
|
href: string;
|
|
2999
3182
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
3000
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
3183
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
3184
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
3185
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
3186
|
+
}, "strict", z.ZodTypeAny, {
|
|
3187
|
+
source: string;
|
|
3188
|
+
directory?: string | undefined;
|
|
3189
|
+
}, {
|
|
3190
|
+
source: string;
|
|
3191
|
+
directory?: string | undefined;
|
|
3192
|
+
}>]>>;
|
|
3001
3193
|
}, "strip", z.ZodTypeAny, {
|
|
3002
|
-
openapi?: string | string[] |
|
|
3194
|
+
openapi?: string | string[] | {
|
|
3195
|
+
source: string;
|
|
3196
|
+
directory?: string | undefined;
|
|
3197
|
+
} | undefined;
|
|
3003
3198
|
}, {
|
|
3004
|
-
openapi?: string | string[] |
|
|
3199
|
+
openapi?: string | string[] | {
|
|
3200
|
+
source: string;
|
|
3201
|
+
directory?: string | undefined;
|
|
3202
|
+
} | undefined;
|
|
3005
3203
|
}>>, "many">;
|
|
3006
3204
|
}, "strip", z.ZodTypeAny, {
|
|
3007
3205
|
versions: any[];
|
|
@@ -3075,11 +3273,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3075
3273
|
}, {
|
|
3076
3274
|
href: string;
|
|
3077
3275
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
3078
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
3276
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
3277
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
3278
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
3279
|
+
}, "strict", z.ZodTypeAny, {
|
|
3280
|
+
source: string;
|
|
3281
|
+
directory?: string | undefined;
|
|
3282
|
+
}, {
|
|
3283
|
+
source: string;
|
|
3284
|
+
directory?: string | undefined;
|
|
3285
|
+
}>]>>;
|
|
3079
3286
|
}, "strip", z.ZodTypeAny, {
|
|
3080
|
-
openapi?: string | string[] |
|
|
3287
|
+
openapi?: string | string[] | {
|
|
3288
|
+
source: string;
|
|
3289
|
+
directory?: string | undefined;
|
|
3290
|
+
} | undefined;
|
|
3081
3291
|
}, {
|
|
3082
|
-
openapi?: string | string[] |
|
|
3292
|
+
openapi?: string | string[] | {
|
|
3293
|
+
source: string;
|
|
3294
|
+
directory?: string | undefined;
|
|
3295
|
+
} | undefined;
|
|
3083
3296
|
}>>, "many">;
|
|
3084
3297
|
}, "strip", z.ZodTypeAny, {
|
|
3085
3298
|
tabs: any[];
|
|
@@ -3153,11 +3366,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3153
3366
|
}, {
|
|
3154
3367
|
href: string;
|
|
3155
3368
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
3156
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
3369
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
3370
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
3371
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
3372
|
+
}, "strict", z.ZodTypeAny, {
|
|
3373
|
+
source: string;
|
|
3374
|
+
directory?: string | undefined;
|
|
3375
|
+
}, {
|
|
3376
|
+
source: string;
|
|
3377
|
+
directory?: string | undefined;
|
|
3378
|
+
}>]>>;
|
|
3157
3379
|
}, "strip", z.ZodTypeAny, {
|
|
3158
|
-
openapi?: string | string[] |
|
|
3380
|
+
openapi?: string | string[] | {
|
|
3381
|
+
source: string;
|
|
3382
|
+
directory?: string | undefined;
|
|
3383
|
+
} | undefined;
|
|
3159
3384
|
}, {
|
|
3160
|
-
openapi?: string | string[] |
|
|
3385
|
+
openapi?: string | string[] | {
|
|
3386
|
+
source: string;
|
|
3387
|
+
directory?: string | undefined;
|
|
3388
|
+
} | undefined;
|
|
3161
3389
|
}>>, "many">;
|
|
3162
3390
|
}, "strip", z.ZodTypeAny, {
|
|
3163
3391
|
dropdowns: any[];
|
|
@@ -3267,11 +3495,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3267
3495
|
}, {
|
|
3268
3496
|
href: string;
|
|
3269
3497
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
3270
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
3498
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
3499
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
3500
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
3501
|
+
}, "strict", z.ZodTypeAny, {
|
|
3502
|
+
source: string;
|
|
3503
|
+
directory?: string | undefined;
|
|
3504
|
+
}, {
|
|
3505
|
+
source: string;
|
|
3506
|
+
directory?: string | undefined;
|
|
3507
|
+
}>]>>;
|
|
3271
3508
|
}, "strip", z.ZodTypeAny, {
|
|
3272
|
-
openapi?: string | string[] |
|
|
3509
|
+
openapi?: string | string[] | {
|
|
3510
|
+
source: string;
|
|
3511
|
+
directory?: string | undefined;
|
|
3512
|
+
} | undefined;
|
|
3273
3513
|
}, {
|
|
3274
|
-
openapi?: string | string[] |
|
|
3514
|
+
openapi?: string | string[] | {
|
|
3515
|
+
source: string;
|
|
3516
|
+
directory?: string | undefined;
|
|
3517
|
+
} | undefined;
|
|
3275
3518
|
}>>, "many">;
|
|
3276
3519
|
}, "strip", z.ZodTypeAny, {
|
|
3277
3520
|
anchors: any[];
|
|
@@ -3445,11 +3688,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3445
3688
|
isPublic?: boolean | undefined;
|
|
3446
3689
|
} | undefined;
|
|
3447
3690
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
3448
|
-
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
3449
|
-
|
|
3450
|
-
|
|
3451
|
-
|
|
3452
|
-
|
|
3691
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
3692
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
3693
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
3694
|
+
}, "strict", z.ZodTypeAny, {
|
|
3695
|
+
source: string;
|
|
3696
|
+
directory?: string | undefined;
|
|
3697
|
+
}, {
|
|
3698
|
+
source: string;
|
|
3699
|
+
directory?: string | undefined;
|
|
3700
|
+
}>]>;
|
|
3701
|
+
}, "strip", z.ZodTypeAny, {
|
|
3702
|
+
openapi: (string | string[] | {
|
|
3703
|
+
source: string;
|
|
3704
|
+
directory?: string | undefined;
|
|
3705
|
+
}) & (string | string[] | {
|
|
3706
|
+
source: string;
|
|
3707
|
+
directory?: string | undefined;
|
|
3708
|
+
} | undefined);
|
|
3709
|
+
}, {
|
|
3710
|
+
openapi: (string | string[] | {
|
|
3711
|
+
source: string;
|
|
3712
|
+
directory?: string | undefined;
|
|
3713
|
+
}) & (string | string[] | {
|
|
3714
|
+
source: string;
|
|
3715
|
+
directory?: string | undefined;
|
|
3716
|
+
} | undefined);
|
|
3453
3717
|
}>, z.ZodLazy<z.ZodObject<{
|
|
3454
3718
|
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
3455
3719
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3493,7 +3757,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3493
3757
|
isPublic?: boolean | undefined;
|
|
3494
3758
|
} | undefined;
|
|
3495
3759
|
} & ({
|
|
3496
|
-
openapi: (string | string[]
|
|
3760
|
+
openapi: (string | string[] | {
|
|
3761
|
+
source: string;
|
|
3762
|
+
directory?: string | undefined;
|
|
3763
|
+
}) & (string | string[] | {
|
|
3764
|
+
source: string;
|
|
3765
|
+
directory?: string | undefined;
|
|
3766
|
+
} | undefined);
|
|
3497
3767
|
} | {
|
|
3498
3768
|
pages: any[];
|
|
3499
3769
|
}))[];
|
|
@@ -3533,7 +3803,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3533
3803
|
isPublic?: boolean | undefined;
|
|
3534
3804
|
} | undefined;
|
|
3535
3805
|
} & ({
|
|
3536
|
-
openapi: (string | string[]
|
|
3806
|
+
openapi: (string | string[] | {
|
|
3807
|
+
source: string;
|
|
3808
|
+
directory?: string | undefined;
|
|
3809
|
+
}) & (string | string[] | {
|
|
3810
|
+
source: string;
|
|
3811
|
+
directory?: string | undefined;
|
|
3812
|
+
} | undefined);
|
|
3537
3813
|
} | {
|
|
3538
3814
|
pages: any[];
|
|
3539
3815
|
}))[];
|
|
@@ -4098,7 +4374,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4098
4374
|
isPublic?: boolean | undefined;
|
|
4099
4375
|
} | undefined;
|
|
4100
4376
|
} & ({
|
|
4101
|
-
openapi: (string | string[]
|
|
4377
|
+
openapi: (string | string[] | {
|
|
4378
|
+
source: string;
|
|
4379
|
+
directory?: string | undefined;
|
|
4380
|
+
}) & (string | string[] | {
|
|
4381
|
+
source: string;
|
|
4382
|
+
directory?: string | undefined;
|
|
4383
|
+
} | undefined);
|
|
4102
4384
|
} | {
|
|
4103
4385
|
pages: any[];
|
|
4104
4386
|
}))[];
|
|
@@ -4199,7 +4481,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4199
4481
|
isPublic?: boolean | undefined;
|
|
4200
4482
|
} | undefined;
|
|
4201
4483
|
} & ({
|
|
4202
|
-
openapi: (string | string[]
|
|
4484
|
+
openapi: (string | string[] | {
|
|
4485
|
+
source: string;
|
|
4486
|
+
directory?: string | undefined;
|
|
4487
|
+
}) & (string | string[] | {
|
|
4488
|
+
source: string;
|
|
4489
|
+
directory?: string | undefined;
|
|
4490
|
+
} | undefined);
|
|
4203
4491
|
} | {
|
|
4204
4492
|
pages: any[];
|
|
4205
4493
|
}))[];
|
|
@@ -4217,7 +4505,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4217
4505
|
dark: string;
|
|
4218
4506
|
} | undefined;
|
|
4219
4507
|
api?: {
|
|
4220
|
-
openapi?: string | string[] |
|
|
4508
|
+
openapi?: string | string[] | {
|
|
4509
|
+
source: string;
|
|
4510
|
+
directory?: string | undefined;
|
|
4511
|
+
} | undefined;
|
|
4221
4512
|
playground?: {
|
|
4222
4513
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
4223
4514
|
proxy?: boolean | undefined;
|
|
@@ -4467,7 +4758,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4467
4758
|
isPublic?: boolean | undefined;
|
|
4468
4759
|
} | undefined;
|
|
4469
4760
|
} & ({
|
|
4470
|
-
openapi: (string | string[]
|
|
4761
|
+
openapi: (string | string[] | {
|
|
4762
|
+
source: string;
|
|
4763
|
+
directory?: string | undefined;
|
|
4764
|
+
}) & (string | string[] | {
|
|
4765
|
+
source: string;
|
|
4766
|
+
directory?: string | undefined;
|
|
4767
|
+
} | undefined);
|
|
4471
4768
|
} | {
|
|
4472
4769
|
pages: any[];
|
|
4473
4770
|
}))[];
|
|
@@ -4568,7 +4865,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4568
4865
|
isPublic?: boolean | undefined;
|
|
4569
4866
|
} | undefined;
|
|
4570
4867
|
} & ({
|
|
4571
|
-
openapi: (string | string[]
|
|
4868
|
+
openapi: (string | string[] | {
|
|
4869
|
+
source: string;
|
|
4870
|
+
directory?: string | undefined;
|
|
4871
|
+
}) & (string | string[] | {
|
|
4872
|
+
source: string;
|
|
4873
|
+
directory?: string | undefined;
|
|
4874
|
+
} | undefined);
|
|
4572
4875
|
} | {
|
|
4573
4876
|
pages: any[];
|
|
4574
4877
|
}))[];
|
|
@@ -4587,7 +4890,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4587
4890
|
dark: string;
|
|
4588
4891
|
} | undefined;
|
|
4589
4892
|
api?: {
|
|
4590
|
-
openapi?: string | string[] |
|
|
4893
|
+
openapi?: string | string[] | {
|
|
4894
|
+
source: string;
|
|
4895
|
+
directory?: string | undefined;
|
|
4896
|
+
} | undefined;
|
|
4591
4897
|
playground?: {
|
|
4592
4898
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
4593
4899
|
proxy?: boolean | undefined;
|
|
@@ -4775,7 +5081,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4775
5081
|
dark: string;
|
|
4776
5082
|
}>]>>;
|
|
4777
5083
|
api: z.ZodOptional<z.ZodObject<{
|
|
4778
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
5084
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
5085
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
5086
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
5087
|
+
}, "strict", z.ZodTypeAny, {
|
|
5088
|
+
source: string;
|
|
5089
|
+
directory?: string | undefined;
|
|
5090
|
+
}, {
|
|
5091
|
+
source: string;
|
|
5092
|
+
directory?: string | undefined;
|
|
5093
|
+
}>]>>;
|
|
4779
5094
|
playground: z.ZodOptional<z.ZodObject<{
|
|
4780
5095
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
|
|
4781
5096
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4804,7 +5119,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4804
5119
|
server?: string | string[] | undefined;
|
|
4805
5120
|
}>>;
|
|
4806
5121
|
}, "strip", z.ZodTypeAny, {
|
|
4807
|
-
openapi?: string | string[] |
|
|
5122
|
+
openapi?: string | string[] | {
|
|
5123
|
+
source: string;
|
|
5124
|
+
directory?: string | undefined;
|
|
5125
|
+
} | undefined;
|
|
4808
5126
|
playground?: {
|
|
4809
5127
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
4810
5128
|
proxy?: boolean | undefined;
|
|
@@ -4817,7 +5135,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4817
5135
|
server?: string | string[] | undefined;
|
|
4818
5136
|
} | undefined;
|
|
4819
5137
|
}, {
|
|
4820
|
-
openapi?: string | string[] |
|
|
5138
|
+
openapi?: string | string[] | {
|
|
5139
|
+
source: string;
|
|
5140
|
+
directory?: string | undefined;
|
|
5141
|
+
} | undefined;
|
|
4821
5142
|
playground?: {
|
|
4822
5143
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
4823
5144
|
proxy?: boolean | undefined;
|
|
@@ -5322,11 +5643,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5322
5643
|
}, {
|
|
5323
5644
|
href: string;
|
|
5324
5645
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
5325
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
5646
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
5647
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
5648
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
5649
|
+
}, "strict", z.ZodTypeAny, {
|
|
5650
|
+
source: string;
|
|
5651
|
+
directory?: string | undefined;
|
|
5652
|
+
}, {
|
|
5653
|
+
source: string;
|
|
5654
|
+
directory?: string | undefined;
|
|
5655
|
+
}>]>>;
|
|
5326
5656
|
}, "strip", z.ZodTypeAny, {
|
|
5327
|
-
openapi?: string | string[] |
|
|
5657
|
+
openapi?: string | string[] | {
|
|
5658
|
+
source: string;
|
|
5659
|
+
directory?: string | undefined;
|
|
5660
|
+
} | undefined;
|
|
5328
5661
|
}, {
|
|
5329
|
-
openapi?: string | string[] |
|
|
5662
|
+
openapi?: string | string[] | {
|
|
5663
|
+
source: string;
|
|
5664
|
+
directory?: string | undefined;
|
|
5665
|
+
} | undefined;
|
|
5330
5666
|
}>>, "many">;
|
|
5331
5667
|
}, "strip", z.ZodTypeAny, {
|
|
5332
5668
|
languages: any[];
|
|
@@ -5364,11 +5700,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5364
5700
|
}, {
|
|
5365
5701
|
href: string;
|
|
5366
5702
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
5367
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
5703
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
5704
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
5705
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
5706
|
+
}, "strict", z.ZodTypeAny, {
|
|
5707
|
+
source: string;
|
|
5708
|
+
directory?: string | undefined;
|
|
5709
|
+
}, {
|
|
5710
|
+
source: string;
|
|
5711
|
+
directory?: string | undefined;
|
|
5712
|
+
}>]>>;
|
|
5368
5713
|
}, "strip", z.ZodTypeAny, {
|
|
5369
|
-
openapi?: string | string[] |
|
|
5714
|
+
openapi?: string | string[] | {
|
|
5715
|
+
source: string;
|
|
5716
|
+
directory?: string | undefined;
|
|
5717
|
+
} | undefined;
|
|
5370
5718
|
}, {
|
|
5371
|
-
openapi?: string | string[] |
|
|
5719
|
+
openapi?: string | string[] | {
|
|
5720
|
+
source: string;
|
|
5721
|
+
directory?: string | undefined;
|
|
5722
|
+
} | undefined;
|
|
5372
5723
|
}>>, "many">;
|
|
5373
5724
|
}, "strip", z.ZodTypeAny, {
|
|
5374
5725
|
versions: any[];
|
|
@@ -5442,11 +5793,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5442
5793
|
}, {
|
|
5443
5794
|
href: string;
|
|
5444
5795
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
5445
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
5796
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
5797
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
5798
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
5799
|
+
}, "strict", z.ZodTypeAny, {
|
|
5800
|
+
source: string;
|
|
5801
|
+
directory?: string | undefined;
|
|
5802
|
+
}, {
|
|
5803
|
+
source: string;
|
|
5804
|
+
directory?: string | undefined;
|
|
5805
|
+
}>]>>;
|
|
5446
5806
|
}, "strip", z.ZodTypeAny, {
|
|
5447
|
-
openapi?: string | string[] |
|
|
5807
|
+
openapi?: string | string[] | {
|
|
5808
|
+
source: string;
|
|
5809
|
+
directory?: string | undefined;
|
|
5810
|
+
} | undefined;
|
|
5448
5811
|
}, {
|
|
5449
|
-
openapi?: string | string[] |
|
|
5812
|
+
openapi?: string | string[] | {
|
|
5813
|
+
source: string;
|
|
5814
|
+
directory?: string | undefined;
|
|
5815
|
+
} | undefined;
|
|
5450
5816
|
}>>, "many">;
|
|
5451
5817
|
}, "strip", z.ZodTypeAny, {
|
|
5452
5818
|
tabs: any[];
|
|
@@ -5520,11 +5886,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5520
5886
|
}, {
|
|
5521
5887
|
href: string;
|
|
5522
5888
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
5523
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
5889
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
5890
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
5891
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
5892
|
+
}, "strict", z.ZodTypeAny, {
|
|
5893
|
+
source: string;
|
|
5894
|
+
directory?: string | undefined;
|
|
5895
|
+
}, {
|
|
5896
|
+
source: string;
|
|
5897
|
+
directory?: string | undefined;
|
|
5898
|
+
}>]>>;
|
|
5524
5899
|
}, "strip", z.ZodTypeAny, {
|
|
5525
|
-
openapi?: string | string[] |
|
|
5900
|
+
openapi?: string | string[] | {
|
|
5901
|
+
source: string;
|
|
5902
|
+
directory?: string | undefined;
|
|
5903
|
+
} | undefined;
|
|
5526
5904
|
}, {
|
|
5527
|
-
openapi?: string | string[] |
|
|
5905
|
+
openapi?: string | string[] | {
|
|
5906
|
+
source: string;
|
|
5907
|
+
directory?: string | undefined;
|
|
5908
|
+
} | undefined;
|
|
5528
5909
|
}>>, "many">;
|
|
5529
5910
|
}, "strip", z.ZodTypeAny, {
|
|
5530
5911
|
dropdowns: any[];
|
|
@@ -5634,11 +6015,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5634
6015
|
}, {
|
|
5635
6016
|
href: string;
|
|
5636
6017
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
5637
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
6018
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
6019
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
6020
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
6021
|
+
}, "strict", z.ZodTypeAny, {
|
|
6022
|
+
source: string;
|
|
6023
|
+
directory?: string | undefined;
|
|
6024
|
+
}, {
|
|
6025
|
+
source: string;
|
|
6026
|
+
directory?: string | undefined;
|
|
6027
|
+
}>]>>;
|
|
5638
6028
|
}, "strip", z.ZodTypeAny, {
|
|
5639
|
-
openapi?: string | string[] |
|
|
6029
|
+
openapi?: string | string[] | {
|
|
6030
|
+
source: string;
|
|
6031
|
+
directory?: string | undefined;
|
|
6032
|
+
} | undefined;
|
|
5640
6033
|
}, {
|
|
5641
|
-
openapi?: string | string[] |
|
|
6034
|
+
openapi?: string | string[] | {
|
|
6035
|
+
source: string;
|
|
6036
|
+
directory?: string | undefined;
|
|
6037
|
+
} | undefined;
|
|
5642
6038
|
}>>, "many">;
|
|
5643
6039
|
}, "strip", z.ZodTypeAny, {
|
|
5644
6040
|
anchors: any[];
|
|
@@ -5812,11 +6208,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5812
6208
|
isPublic?: boolean | undefined;
|
|
5813
6209
|
} | undefined;
|
|
5814
6210
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
5815
|
-
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
5816
|
-
|
|
5817
|
-
|
|
5818
|
-
|
|
5819
|
-
|
|
6211
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
6212
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
6213
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
6214
|
+
}, "strict", z.ZodTypeAny, {
|
|
6215
|
+
source: string;
|
|
6216
|
+
directory?: string | undefined;
|
|
6217
|
+
}, {
|
|
6218
|
+
source: string;
|
|
6219
|
+
directory?: string | undefined;
|
|
6220
|
+
}>]>;
|
|
6221
|
+
}, "strip", z.ZodTypeAny, {
|
|
6222
|
+
openapi: (string | string[] | {
|
|
6223
|
+
source: string;
|
|
6224
|
+
directory?: string | undefined;
|
|
6225
|
+
}) & (string | string[] | {
|
|
6226
|
+
source: string;
|
|
6227
|
+
directory?: string | undefined;
|
|
6228
|
+
} | undefined);
|
|
6229
|
+
}, {
|
|
6230
|
+
openapi: (string | string[] | {
|
|
6231
|
+
source: string;
|
|
6232
|
+
directory?: string | undefined;
|
|
6233
|
+
}) & (string | string[] | {
|
|
6234
|
+
source: string;
|
|
6235
|
+
directory?: string | undefined;
|
|
6236
|
+
} | undefined);
|
|
5820
6237
|
}>, z.ZodLazy<z.ZodObject<{
|
|
5821
6238
|
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
5822
6239
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5860,7 +6277,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5860
6277
|
isPublic?: boolean | undefined;
|
|
5861
6278
|
} | undefined;
|
|
5862
6279
|
} & ({
|
|
5863
|
-
openapi: (string | string[]
|
|
6280
|
+
openapi: (string | string[] | {
|
|
6281
|
+
source: string;
|
|
6282
|
+
directory?: string | undefined;
|
|
6283
|
+
}) & (string | string[] | {
|
|
6284
|
+
source: string;
|
|
6285
|
+
directory?: string | undefined;
|
|
6286
|
+
} | undefined);
|
|
5864
6287
|
} | {
|
|
5865
6288
|
pages: any[];
|
|
5866
6289
|
}))[];
|
|
@@ -5900,7 +6323,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5900
6323
|
isPublic?: boolean | undefined;
|
|
5901
6324
|
} | undefined;
|
|
5902
6325
|
} & ({
|
|
5903
|
-
openapi: (string | string[]
|
|
6326
|
+
openapi: (string | string[] | {
|
|
6327
|
+
source: string;
|
|
6328
|
+
directory?: string | undefined;
|
|
6329
|
+
}) & (string | string[] | {
|
|
6330
|
+
source: string;
|
|
6331
|
+
directory?: string | undefined;
|
|
6332
|
+
} | undefined);
|
|
5904
6333
|
} | {
|
|
5905
6334
|
pages: any[];
|
|
5906
6335
|
}))[];
|
|
@@ -6465,7 +6894,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6465
6894
|
isPublic?: boolean | undefined;
|
|
6466
6895
|
} | undefined;
|
|
6467
6896
|
} & ({
|
|
6468
|
-
openapi: (string | string[]
|
|
6897
|
+
openapi: (string | string[] | {
|
|
6898
|
+
source: string;
|
|
6899
|
+
directory?: string | undefined;
|
|
6900
|
+
}) & (string | string[] | {
|
|
6901
|
+
source: string;
|
|
6902
|
+
directory?: string | undefined;
|
|
6903
|
+
} | undefined);
|
|
6469
6904
|
} | {
|
|
6470
6905
|
pages: any[];
|
|
6471
6906
|
}))[];
|
|
@@ -6566,7 +7001,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6566
7001
|
isPublic?: boolean | undefined;
|
|
6567
7002
|
} | undefined;
|
|
6568
7003
|
} & ({
|
|
6569
|
-
openapi: (string | string[]
|
|
7004
|
+
openapi: (string | string[] | {
|
|
7005
|
+
source: string;
|
|
7006
|
+
directory?: string | undefined;
|
|
7007
|
+
}) & (string | string[] | {
|
|
7008
|
+
source: string;
|
|
7009
|
+
directory?: string | undefined;
|
|
7010
|
+
} | undefined);
|
|
6570
7011
|
} | {
|
|
6571
7012
|
pages: any[];
|
|
6572
7013
|
}))[];
|
|
@@ -6584,7 +7025,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6584
7025
|
dark: string;
|
|
6585
7026
|
} | undefined;
|
|
6586
7027
|
api?: {
|
|
6587
|
-
openapi?: string | string[] |
|
|
7028
|
+
openapi?: string | string[] | {
|
|
7029
|
+
source: string;
|
|
7030
|
+
directory?: string | undefined;
|
|
7031
|
+
} | undefined;
|
|
6588
7032
|
playground?: {
|
|
6589
7033
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
6590
7034
|
proxy?: boolean | undefined;
|
|
@@ -6834,7 +7278,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6834
7278
|
isPublic?: boolean | undefined;
|
|
6835
7279
|
} | undefined;
|
|
6836
7280
|
} & ({
|
|
6837
|
-
openapi: (string | string[]
|
|
7281
|
+
openapi: (string | string[] | {
|
|
7282
|
+
source: string;
|
|
7283
|
+
directory?: string | undefined;
|
|
7284
|
+
}) & (string | string[] | {
|
|
7285
|
+
source: string;
|
|
7286
|
+
directory?: string | undefined;
|
|
7287
|
+
} | undefined);
|
|
6838
7288
|
} | {
|
|
6839
7289
|
pages: any[];
|
|
6840
7290
|
}))[];
|
|
@@ -6935,7 +7385,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6935
7385
|
isPublic?: boolean | undefined;
|
|
6936
7386
|
} | undefined;
|
|
6937
7387
|
} & ({
|
|
6938
|
-
openapi: (string | string[]
|
|
7388
|
+
openapi: (string | string[] | {
|
|
7389
|
+
source: string;
|
|
7390
|
+
directory?: string | undefined;
|
|
7391
|
+
}) & (string | string[] | {
|
|
7392
|
+
source: string;
|
|
7393
|
+
directory?: string | undefined;
|
|
7394
|
+
} | undefined);
|
|
6939
7395
|
} | {
|
|
6940
7396
|
pages: any[];
|
|
6941
7397
|
}))[];
|
|
@@ -6954,7 +7410,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6954
7410
|
dark: string;
|
|
6955
7411
|
} | undefined;
|
|
6956
7412
|
api?: {
|
|
6957
|
-
openapi?: string | string[] |
|
|
7413
|
+
openapi?: string | string[] | {
|
|
7414
|
+
source: string;
|
|
7415
|
+
directory?: string | undefined;
|
|
7416
|
+
} | undefined;
|
|
6958
7417
|
playground?: {
|
|
6959
7418
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
6960
7419
|
proxy?: boolean | undefined;
|
|
@@ -7142,7 +7601,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7142
7601
|
dark: string;
|
|
7143
7602
|
}>]>>;
|
|
7144
7603
|
api: z.ZodOptional<z.ZodObject<{
|
|
7145
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
7604
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
7605
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
7606
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
7607
|
+
}, "strict", z.ZodTypeAny, {
|
|
7608
|
+
source: string;
|
|
7609
|
+
directory?: string | undefined;
|
|
7610
|
+
}, {
|
|
7611
|
+
source: string;
|
|
7612
|
+
directory?: string | undefined;
|
|
7613
|
+
}>]>>;
|
|
7146
7614
|
playground: z.ZodOptional<z.ZodObject<{
|
|
7147
7615
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
|
|
7148
7616
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7171,7 +7639,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7171
7639
|
server?: string | string[] | undefined;
|
|
7172
7640
|
}>>;
|
|
7173
7641
|
}, "strip", z.ZodTypeAny, {
|
|
7174
|
-
openapi?: string | string[] |
|
|
7642
|
+
openapi?: string | string[] | {
|
|
7643
|
+
source: string;
|
|
7644
|
+
directory?: string | undefined;
|
|
7645
|
+
} | undefined;
|
|
7175
7646
|
playground?: {
|
|
7176
7647
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
7177
7648
|
proxy?: boolean | undefined;
|
|
@@ -7184,7 +7655,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7184
7655
|
server?: string | string[] | undefined;
|
|
7185
7656
|
} | undefined;
|
|
7186
7657
|
}, {
|
|
7187
|
-
openapi?: string | string[] |
|
|
7658
|
+
openapi?: string | string[] | {
|
|
7659
|
+
source: string;
|
|
7660
|
+
directory?: string | undefined;
|
|
7661
|
+
} | undefined;
|
|
7188
7662
|
playground?: {
|
|
7189
7663
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
7190
7664
|
proxy?: boolean | undefined;
|
|
@@ -7689,11 +8163,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7689
8163
|
}, {
|
|
7690
8164
|
href: string;
|
|
7691
8165
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
7692
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
8166
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
8167
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
8168
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
8169
|
+
}, "strict", z.ZodTypeAny, {
|
|
8170
|
+
source: string;
|
|
8171
|
+
directory?: string | undefined;
|
|
8172
|
+
}, {
|
|
8173
|
+
source: string;
|
|
8174
|
+
directory?: string | undefined;
|
|
8175
|
+
}>]>>;
|
|
7693
8176
|
}, "strip", z.ZodTypeAny, {
|
|
7694
|
-
openapi?: string | string[] |
|
|
8177
|
+
openapi?: string | string[] | {
|
|
8178
|
+
source: string;
|
|
8179
|
+
directory?: string | undefined;
|
|
8180
|
+
} | undefined;
|
|
7695
8181
|
}, {
|
|
7696
|
-
openapi?: string | string[] |
|
|
8182
|
+
openapi?: string | string[] | {
|
|
8183
|
+
source: string;
|
|
8184
|
+
directory?: string | undefined;
|
|
8185
|
+
} | undefined;
|
|
7697
8186
|
}>>, "many">;
|
|
7698
8187
|
}, "strip", z.ZodTypeAny, {
|
|
7699
8188
|
languages: any[];
|
|
@@ -7731,11 +8220,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7731
8220
|
}, {
|
|
7732
8221
|
href: string;
|
|
7733
8222
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
7734
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
8223
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
8224
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
8225
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
8226
|
+
}, "strict", z.ZodTypeAny, {
|
|
8227
|
+
source: string;
|
|
8228
|
+
directory?: string | undefined;
|
|
8229
|
+
}, {
|
|
8230
|
+
source: string;
|
|
8231
|
+
directory?: string | undefined;
|
|
8232
|
+
}>]>>;
|
|
7735
8233
|
}, "strip", z.ZodTypeAny, {
|
|
7736
|
-
openapi?: string | string[] |
|
|
8234
|
+
openapi?: string | string[] | {
|
|
8235
|
+
source: string;
|
|
8236
|
+
directory?: string | undefined;
|
|
8237
|
+
} | undefined;
|
|
7737
8238
|
}, {
|
|
7738
|
-
openapi?: string | string[] |
|
|
8239
|
+
openapi?: string | string[] | {
|
|
8240
|
+
source: string;
|
|
8241
|
+
directory?: string | undefined;
|
|
8242
|
+
} | undefined;
|
|
7739
8243
|
}>>, "many">;
|
|
7740
8244
|
}, "strip", z.ZodTypeAny, {
|
|
7741
8245
|
versions: any[];
|
|
@@ -7809,11 +8313,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7809
8313
|
}, {
|
|
7810
8314
|
href: string;
|
|
7811
8315
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
7812
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
8316
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
8317
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
8318
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
8319
|
+
}, "strict", z.ZodTypeAny, {
|
|
8320
|
+
source: string;
|
|
8321
|
+
directory?: string | undefined;
|
|
8322
|
+
}, {
|
|
8323
|
+
source: string;
|
|
8324
|
+
directory?: string | undefined;
|
|
8325
|
+
}>]>>;
|
|
7813
8326
|
}, "strip", z.ZodTypeAny, {
|
|
7814
|
-
openapi?: string | string[] |
|
|
8327
|
+
openapi?: string | string[] | {
|
|
8328
|
+
source: string;
|
|
8329
|
+
directory?: string | undefined;
|
|
8330
|
+
} | undefined;
|
|
7815
8331
|
}, {
|
|
7816
|
-
openapi?: string | string[] |
|
|
8332
|
+
openapi?: string | string[] | {
|
|
8333
|
+
source: string;
|
|
8334
|
+
directory?: string | undefined;
|
|
8335
|
+
} | undefined;
|
|
7817
8336
|
}>>, "many">;
|
|
7818
8337
|
}, "strip", z.ZodTypeAny, {
|
|
7819
8338
|
tabs: any[];
|
|
@@ -7887,11 +8406,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7887
8406
|
}, {
|
|
7888
8407
|
href: string;
|
|
7889
8408
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
7890
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
8409
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
8410
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
8411
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
8412
|
+
}, "strict", z.ZodTypeAny, {
|
|
8413
|
+
source: string;
|
|
8414
|
+
directory?: string | undefined;
|
|
8415
|
+
}, {
|
|
8416
|
+
source: string;
|
|
8417
|
+
directory?: string | undefined;
|
|
8418
|
+
}>]>>;
|
|
7891
8419
|
}, "strip", z.ZodTypeAny, {
|
|
7892
|
-
openapi?: string | string[] |
|
|
8420
|
+
openapi?: string | string[] | {
|
|
8421
|
+
source: string;
|
|
8422
|
+
directory?: string | undefined;
|
|
8423
|
+
} | undefined;
|
|
7893
8424
|
}, {
|
|
7894
|
-
openapi?: string | string[] |
|
|
8425
|
+
openapi?: string | string[] | {
|
|
8426
|
+
source: string;
|
|
8427
|
+
directory?: string | undefined;
|
|
8428
|
+
} | undefined;
|
|
7895
8429
|
}>>, "many">;
|
|
7896
8430
|
}, "strip", z.ZodTypeAny, {
|
|
7897
8431
|
dropdowns: any[];
|
|
@@ -8001,11 +8535,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8001
8535
|
}, {
|
|
8002
8536
|
href: string;
|
|
8003
8537
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
8004
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
8538
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
8539
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
8540
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
8541
|
+
}, "strict", z.ZodTypeAny, {
|
|
8542
|
+
source: string;
|
|
8543
|
+
directory?: string | undefined;
|
|
8544
|
+
}, {
|
|
8545
|
+
source: string;
|
|
8546
|
+
directory?: string | undefined;
|
|
8547
|
+
}>]>>;
|
|
8005
8548
|
}, "strip", z.ZodTypeAny, {
|
|
8006
|
-
openapi?: string | string[] |
|
|
8549
|
+
openapi?: string | string[] | {
|
|
8550
|
+
source: string;
|
|
8551
|
+
directory?: string | undefined;
|
|
8552
|
+
} | undefined;
|
|
8007
8553
|
}, {
|
|
8008
|
-
openapi?: string | string[] |
|
|
8554
|
+
openapi?: string | string[] | {
|
|
8555
|
+
source: string;
|
|
8556
|
+
directory?: string | undefined;
|
|
8557
|
+
} | undefined;
|
|
8009
8558
|
}>>, "many">;
|
|
8010
8559
|
}, "strip", z.ZodTypeAny, {
|
|
8011
8560
|
anchors: any[];
|
|
@@ -8179,11 +8728,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8179
8728
|
isPublic?: boolean | undefined;
|
|
8180
8729
|
} | undefined;
|
|
8181
8730
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
8182
|
-
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
8183
|
-
|
|
8184
|
-
|
|
8185
|
-
|
|
8186
|
-
|
|
8731
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
8732
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
8733
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
8734
|
+
}, "strict", z.ZodTypeAny, {
|
|
8735
|
+
source: string;
|
|
8736
|
+
directory?: string | undefined;
|
|
8737
|
+
}, {
|
|
8738
|
+
source: string;
|
|
8739
|
+
directory?: string | undefined;
|
|
8740
|
+
}>]>;
|
|
8741
|
+
}, "strip", z.ZodTypeAny, {
|
|
8742
|
+
openapi: (string | string[] | {
|
|
8743
|
+
source: string;
|
|
8744
|
+
directory?: string | undefined;
|
|
8745
|
+
}) & (string | string[] | {
|
|
8746
|
+
source: string;
|
|
8747
|
+
directory?: string | undefined;
|
|
8748
|
+
} | undefined);
|
|
8749
|
+
}, {
|
|
8750
|
+
openapi: (string | string[] | {
|
|
8751
|
+
source: string;
|
|
8752
|
+
directory?: string | undefined;
|
|
8753
|
+
}) & (string | string[] | {
|
|
8754
|
+
source: string;
|
|
8755
|
+
directory?: string | undefined;
|
|
8756
|
+
} | undefined);
|
|
8187
8757
|
}>, z.ZodLazy<z.ZodObject<{
|
|
8188
8758
|
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
8189
8759
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8227,7 +8797,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8227
8797
|
isPublic?: boolean | undefined;
|
|
8228
8798
|
} | undefined;
|
|
8229
8799
|
} & ({
|
|
8230
|
-
openapi: (string | string[]
|
|
8800
|
+
openapi: (string | string[] | {
|
|
8801
|
+
source: string;
|
|
8802
|
+
directory?: string | undefined;
|
|
8803
|
+
}) & (string | string[] | {
|
|
8804
|
+
source: string;
|
|
8805
|
+
directory?: string | undefined;
|
|
8806
|
+
} | undefined);
|
|
8231
8807
|
} | {
|
|
8232
8808
|
pages: any[];
|
|
8233
8809
|
}))[];
|
|
@@ -8267,7 +8843,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8267
8843
|
isPublic?: boolean | undefined;
|
|
8268
8844
|
} | undefined;
|
|
8269
8845
|
} & ({
|
|
8270
|
-
openapi: (string | string[]
|
|
8846
|
+
openapi: (string | string[] | {
|
|
8847
|
+
source: string;
|
|
8848
|
+
directory?: string | undefined;
|
|
8849
|
+
}) & (string | string[] | {
|
|
8850
|
+
source: string;
|
|
8851
|
+
directory?: string | undefined;
|
|
8852
|
+
} | undefined);
|
|
8271
8853
|
} | {
|
|
8272
8854
|
pages: any[];
|
|
8273
8855
|
}))[];
|
|
@@ -8832,7 +9414,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8832
9414
|
isPublic?: boolean | undefined;
|
|
8833
9415
|
} | undefined;
|
|
8834
9416
|
} & ({
|
|
8835
|
-
openapi: (string | string[]
|
|
9417
|
+
openapi: (string | string[] | {
|
|
9418
|
+
source: string;
|
|
9419
|
+
directory?: string | undefined;
|
|
9420
|
+
}) & (string | string[] | {
|
|
9421
|
+
source: string;
|
|
9422
|
+
directory?: string | undefined;
|
|
9423
|
+
} | undefined);
|
|
8836
9424
|
} | {
|
|
8837
9425
|
pages: any[];
|
|
8838
9426
|
}))[];
|
|
@@ -8933,7 +9521,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8933
9521
|
isPublic?: boolean | undefined;
|
|
8934
9522
|
} | undefined;
|
|
8935
9523
|
} & ({
|
|
8936
|
-
openapi: (string | string[]
|
|
9524
|
+
openapi: (string | string[] | {
|
|
9525
|
+
source: string;
|
|
9526
|
+
directory?: string | undefined;
|
|
9527
|
+
}) & (string | string[] | {
|
|
9528
|
+
source: string;
|
|
9529
|
+
directory?: string | undefined;
|
|
9530
|
+
} | undefined);
|
|
8937
9531
|
} | {
|
|
8938
9532
|
pages: any[];
|
|
8939
9533
|
}))[];
|
|
@@ -8951,7 +9545,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8951
9545
|
dark: string;
|
|
8952
9546
|
} | undefined;
|
|
8953
9547
|
api?: {
|
|
8954
|
-
openapi?: string | string[] |
|
|
9548
|
+
openapi?: string | string[] | {
|
|
9549
|
+
source: string;
|
|
9550
|
+
directory?: string | undefined;
|
|
9551
|
+
} | undefined;
|
|
8955
9552
|
playground?: {
|
|
8956
9553
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
8957
9554
|
proxy?: boolean | undefined;
|
|
@@ -9201,7 +9798,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9201
9798
|
isPublic?: boolean | undefined;
|
|
9202
9799
|
} | undefined;
|
|
9203
9800
|
} & ({
|
|
9204
|
-
openapi: (string | string[]
|
|
9801
|
+
openapi: (string | string[] | {
|
|
9802
|
+
source: string;
|
|
9803
|
+
directory?: string | undefined;
|
|
9804
|
+
}) & (string | string[] | {
|
|
9805
|
+
source: string;
|
|
9806
|
+
directory?: string | undefined;
|
|
9807
|
+
} | undefined);
|
|
9205
9808
|
} | {
|
|
9206
9809
|
pages: any[];
|
|
9207
9810
|
}))[];
|
|
@@ -9302,7 +9905,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9302
9905
|
isPublic?: boolean | undefined;
|
|
9303
9906
|
} | undefined;
|
|
9304
9907
|
} & ({
|
|
9305
|
-
openapi: (string | string[]
|
|
9908
|
+
openapi: (string | string[] | {
|
|
9909
|
+
source: string;
|
|
9910
|
+
directory?: string | undefined;
|
|
9911
|
+
}) & (string | string[] | {
|
|
9912
|
+
source: string;
|
|
9913
|
+
directory?: string | undefined;
|
|
9914
|
+
} | undefined);
|
|
9306
9915
|
} | {
|
|
9307
9916
|
pages: any[];
|
|
9308
9917
|
}))[];
|
|
@@ -9321,7 +9930,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9321
9930
|
dark: string;
|
|
9322
9931
|
} | undefined;
|
|
9323
9932
|
api?: {
|
|
9324
|
-
openapi?: string | string[] |
|
|
9933
|
+
openapi?: string | string[] | {
|
|
9934
|
+
source: string;
|
|
9935
|
+
directory?: string | undefined;
|
|
9936
|
+
} | undefined;
|
|
9325
9937
|
playground?: {
|
|
9326
9938
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
9327
9939
|
proxy?: boolean | undefined;
|
|
@@ -9509,7 +10121,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9509
10121
|
dark: string;
|
|
9510
10122
|
}>]>>;
|
|
9511
10123
|
api: z.ZodOptional<z.ZodObject<{
|
|
9512
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
10124
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
10125
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
10126
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
10127
|
+
}, "strict", z.ZodTypeAny, {
|
|
10128
|
+
source: string;
|
|
10129
|
+
directory?: string | undefined;
|
|
10130
|
+
}, {
|
|
10131
|
+
source: string;
|
|
10132
|
+
directory?: string | undefined;
|
|
10133
|
+
}>]>>;
|
|
9513
10134
|
playground: z.ZodOptional<z.ZodObject<{
|
|
9514
10135
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
|
|
9515
10136
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -9538,7 +10159,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9538
10159
|
server?: string | string[] | undefined;
|
|
9539
10160
|
}>>;
|
|
9540
10161
|
}, "strip", z.ZodTypeAny, {
|
|
9541
|
-
openapi?: string | string[] |
|
|
10162
|
+
openapi?: string | string[] | {
|
|
10163
|
+
source: string;
|
|
10164
|
+
directory?: string | undefined;
|
|
10165
|
+
} | undefined;
|
|
9542
10166
|
playground?: {
|
|
9543
10167
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
9544
10168
|
proxy?: boolean | undefined;
|
|
@@ -9551,7 +10175,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9551
10175
|
server?: string | string[] | undefined;
|
|
9552
10176
|
} | undefined;
|
|
9553
10177
|
}, {
|
|
9554
|
-
openapi?: string | string[] |
|
|
10178
|
+
openapi?: string | string[] | {
|
|
10179
|
+
source: string;
|
|
10180
|
+
directory?: string | undefined;
|
|
10181
|
+
} | undefined;
|
|
9555
10182
|
playground?: {
|
|
9556
10183
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
9557
10184
|
proxy?: boolean | undefined;
|
|
@@ -10056,11 +10683,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10056
10683
|
}, {
|
|
10057
10684
|
href: string;
|
|
10058
10685
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
10059
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
10686
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
10687
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
10688
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
10689
|
+
}, "strict", z.ZodTypeAny, {
|
|
10690
|
+
source: string;
|
|
10691
|
+
directory?: string | undefined;
|
|
10692
|
+
}, {
|
|
10693
|
+
source: string;
|
|
10694
|
+
directory?: string | undefined;
|
|
10695
|
+
}>]>>;
|
|
10060
10696
|
}, "strip", z.ZodTypeAny, {
|
|
10061
|
-
openapi?: string | string[] |
|
|
10697
|
+
openapi?: string | string[] | {
|
|
10698
|
+
source: string;
|
|
10699
|
+
directory?: string | undefined;
|
|
10700
|
+
} | undefined;
|
|
10062
10701
|
}, {
|
|
10063
|
-
openapi?: string | string[] |
|
|
10702
|
+
openapi?: string | string[] | {
|
|
10703
|
+
source: string;
|
|
10704
|
+
directory?: string | undefined;
|
|
10705
|
+
} | undefined;
|
|
10064
10706
|
}>>, "many">;
|
|
10065
10707
|
}, "strip", z.ZodTypeAny, {
|
|
10066
10708
|
languages: any[];
|
|
@@ -10098,11 +10740,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10098
10740
|
}, {
|
|
10099
10741
|
href: string;
|
|
10100
10742
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
10101
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
10743
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
10744
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
10745
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
10746
|
+
}, "strict", z.ZodTypeAny, {
|
|
10747
|
+
source: string;
|
|
10748
|
+
directory?: string | undefined;
|
|
10749
|
+
}, {
|
|
10750
|
+
source: string;
|
|
10751
|
+
directory?: string | undefined;
|
|
10752
|
+
}>]>>;
|
|
10102
10753
|
}, "strip", z.ZodTypeAny, {
|
|
10103
|
-
openapi?: string | string[] |
|
|
10754
|
+
openapi?: string | string[] | {
|
|
10755
|
+
source: string;
|
|
10756
|
+
directory?: string | undefined;
|
|
10757
|
+
} | undefined;
|
|
10104
10758
|
}, {
|
|
10105
|
-
openapi?: string | string[] |
|
|
10759
|
+
openapi?: string | string[] | {
|
|
10760
|
+
source: string;
|
|
10761
|
+
directory?: string | undefined;
|
|
10762
|
+
} | undefined;
|
|
10106
10763
|
}>>, "many">;
|
|
10107
10764
|
}, "strip", z.ZodTypeAny, {
|
|
10108
10765
|
versions: any[];
|
|
@@ -10176,11 +10833,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10176
10833
|
}, {
|
|
10177
10834
|
href: string;
|
|
10178
10835
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
10179
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
10836
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
10837
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
10838
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
10839
|
+
}, "strict", z.ZodTypeAny, {
|
|
10840
|
+
source: string;
|
|
10841
|
+
directory?: string | undefined;
|
|
10842
|
+
}, {
|
|
10843
|
+
source: string;
|
|
10844
|
+
directory?: string | undefined;
|
|
10845
|
+
}>]>>;
|
|
10180
10846
|
}, "strip", z.ZodTypeAny, {
|
|
10181
|
-
openapi?: string | string[] |
|
|
10847
|
+
openapi?: string | string[] | {
|
|
10848
|
+
source: string;
|
|
10849
|
+
directory?: string | undefined;
|
|
10850
|
+
} | undefined;
|
|
10182
10851
|
}, {
|
|
10183
|
-
openapi?: string | string[] |
|
|
10852
|
+
openapi?: string | string[] | {
|
|
10853
|
+
source: string;
|
|
10854
|
+
directory?: string | undefined;
|
|
10855
|
+
} | undefined;
|
|
10184
10856
|
}>>, "many">;
|
|
10185
10857
|
}, "strip", z.ZodTypeAny, {
|
|
10186
10858
|
tabs: any[];
|
|
@@ -10254,11 +10926,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10254
10926
|
}, {
|
|
10255
10927
|
href: string;
|
|
10256
10928
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
10257
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
10929
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
10930
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
10931
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
10932
|
+
}, "strict", z.ZodTypeAny, {
|
|
10933
|
+
source: string;
|
|
10934
|
+
directory?: string | undefined;
|
|
10935
|
+
}, {
|
|
10936
|
+
source: string;
|
|
10937
|
+
directory?: string | undefined;
|
|
10938
|
+
}>]>>;
|
|
10258
10939
|
}, "strip", z.ZodTypeAny, {
|
|
10259
|
-
openapi?: string | string[] |
|
|
10940
|
+
openapi?: string | string[] | {
|
|
10941
|
+
source: string;
|
|
10942
|
+
directory?: string | undefined;
|
|
10943
|
+
} | undefined;
|
|
10260
10944
|
}, {
|
|
10261
|
-
openapi?: string | string[] |
|
|
10945
|
+
openapi?: string | string[] | {
|
|
10946
|
+
source: string;
|
|
10947
|
+
directory?: string | undefined;
|
|
10948
|
+
} | undefined;
|
|
10262
10949
|
}>>, "many">;
|
|
10263
10950
|
}, "strip", z.ZodTypeAny, {
|
|
10264
10951
|
dropdowns: any[];
|
|
@@ -10368,11 +11055,26 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10368
11055
|
}, {
|
|
10369
11056
|
href: string;
|
|
10370
11057
|
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
10371
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
11058
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
11059
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
11060
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
11061
|
+
}, "strict", z.ZodTypeAny, {
|
|
11062
|
+
source: string;
|
|
11063
|
+
directory?: string | undefined;
|
|
11064
|
+
}, {
|
|
11065
|
+
source: string;
|
|
11066
|
+
directory?: string | undefined;
|
|
11067
|
+
}>]>>;
|
|
10372
11068
|
}, "strip", z.ZodTypeAny, {
|
|
10373
|
-
openapi?: string | string[] |
|
|
11069
|
+
openapi?: string | string[] | {
|
|
11070
|
+
source: string;
|
|
11071
|
+
directory?: string | undefined;
|
|
11072
|
+
} | undefined;
|
|
10374
11073
|
}, {
|
|
10375
|
-
openapi?: string | string[] |
|
|
11074
|
+
openapi?: string | string[] | {
|
|
11075
|
+
source: string;
|
|
11076
|
+
directory?: string | undefined;
|
|
11077
|
+
} | undefined;
|
|
10376
11078
|
}>>, "many">;
|
|
10377
11079
|
}, "strip", z.ZodTypeAny, {
|
|
10378
11080
|
anchors: any[];
|
|
@@ -10546,11 +11248,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10546
11248
|
isPublic?: boolean | undefined;
|
|
10547
11249
|
} | undefined;
|
|
10548
11250
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
10549
|
-
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many"
|
|
10550
|
-
|
|
10551
|
-
|
|
10552
|
-
|
|
10553
|
-
|
|
11251
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
11252
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
11253
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
11254
|
+
}, "strict", z.ZodTypeAny, {
|
|
11255
|
+
source: string;
|
|
11256
|
+
directory?: string | undefined;
|
|
11257
|
+
}, {
|
|
11258
|
+
source: string;
|
|
11259
|
+
directory?: string | undefined;
|
|
11260
|
+
}>]>;
|
|
11261
|
+
}, "strip", z.ZodTypeAny, {
|
|
11262
|
+
openapi: (string | string[] | {
|
|
11263
|
+
source: string;
|
|
11264
|
+
directory?: string | undefined;
|
|
11265
|
+
}) & (string | string[] | {
|
|
11266
|
+
source: string;
|
|
11267
|
+
directory?: string | undefined;
|
|
11268
|
+
} | undefined);
|
|
11269
|
+
}, {
|
|
11270
|
+
openapi: (string | string[] | {
|
|
11271
|
+
source: string;
|
|
11272
|
+
directory?: string | undefined;
|
|
11273
|
+
}) & (string | string[] | {
|
|
11274
|
+
source: string;
|
|
11275
|
+
directory?: string | undefined;
|
|
11276
|
+
} | undefined);
|
|
10554
11277
|
}>, z.ZodLazy<z.ZodObject<{
|
|
10555
11278
|
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
10556
11279
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10594,7 +11317,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10594
11317
|
isPublic?: boolean | undefined;
|
|
10595
11318
|
} | undefined;
|
|
10596
11319
|
} & ({
|
|
10597
|
-
openapi: (string | string[]
|
|
11320
|
+
openapi: (string | string[] | {
|
|
11321
|
+
source: string;
|
|
11322
|
+
directory?: string | undefined;
|
|
11323
|
+
}) & (string | string[] | {
|
|
11324
|
+
source: string;
|
|
11325
|
+
directory?: string | undefined;
|
|
11326
|
+
} | undefined);
|
|
10598
11327
|
} | {
|
|
10599
11328
|
pages: any[];
|
|
10600
11329
|
}))[];
|
|
@@ -10634,7 +11363,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10634
11363
|
isPublic?: boolean | undefined;
|
|
10635
11364
|
} | undefined;
|
|
10636
11365
|
} & ({
|
|
10637
|
-
openapi: (string | string[]
|
|
11366
|
+
openapi: (string | string[] | {
|
|
11367
|
+
source: string;
|
|
11368
|
+
directory?: string | undefined;
|
|
11369
|
+
}) & (string | string[] | {
|
|
11370
|
+
source: string;
|
|
11371
|
+
directory?: string | undefined;
|
|
11372
|
+
} | undefined);
|
|
10638
11373
|
} | {
|
|
10639
11374
|
pages: any[];
|
|
10640
11375
|
}))[];
|
|
@@ -11199,7 +11934,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11199
11934
|
isPublic?: boolean | undefined;
|
|
11200
11935
|
} | undefined;
|
|
11201
11936
|
} & ({
|
|
11202
|
-
openapi: (string | string[]
|
|
11937
|
+
openapi: (string | string[] | {
|
|
11938
|
+
source: string;
|
|
11939
|
+
directory?: string | undefined;
|
|
11940
|
+
}) & (string | string[] | {
|
|
11941
|
+
source: string;
|
|
11942
|
+
directory?: string | undefined;
|
|
11943
|
+
} | undefined);
|
|
11203
11944
|
} | {
|
|
11204
11945
|
pages: any[];
|
|
11205
11946
|
}))[];
|
|
@@ -11300,7 +12041,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11300
12041
|
isPublic?: boolean | undefined;
|
|
11301
12042
|
} | undefined;
|
|
11302
12043
|
} & ({
|
|
11303
|
-
openapi: (string | string[]
|
|
12044
|
+
openapi: (string | string[] | {
|
|
12045
|
+
source: string;
|
|
12046
|
+
directory?: string | undefined;
|
|
12047
|
+
}) & (string | string[] | {
|
|
12048
|
+
source: string;
|
|
12049
|
+
directory?: string | undefined;
|
|
12050
|
+
} | undefined);
|
|
11304
12051
|
} | {
|
|
11305
12052
|
pages: any[];
|
|
11306
12053
|
}))[];
|
|
@@ -11318,7 +12065,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11318
12065
|
dark: string;
|
|
11319
12066
|
} | undefined;
|
|
11320
12067
|
api?: {
|
|
11321
|
-
openapi?: string | string[] |
|
|
12068
|
+
openapi?: string | string[] | {
|
|
12069
|
+
source: string;
|
|
12070
|
+
directory?: string | undefined;
|
|
12071
|
+
} | undefined;
|
|
11322
12072
|
playground?: {
|
|
11323
12073
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
11324
12074
|
proxy?: boolean | undefined;
|
|
@@ -11568,7 +12318,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11568
12318
|
isPublic?: boolean | undefined;
|
|
11569
12319
|
} | undefined;
|
|
11570
12320
|
} & ({
|
|
11571
|
-
openapi: (string | string[]
|
|
12321
|
+
openapi: (string | string[] | {
|
|
12322
|
+
source: string;
|
|
12323
|
+
directory?: string | undefined;
|
|
12324
|
+
}) & (string | string[] | {
|
|
12325
|
+
source: string;
|
|
12326
|
+
directory?: string | undefined;
|
|
12327
|
+
} | undefined);
|
|
11572
12328
|
} | {
|
|
11573
12329
|
pages: any[];
|
|
11574
12330
|
}))[];
|
|
@@ -11669,7 +12425,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11669
12425
|
isPublic?: boolean | undefined;
|
|
11670
12426
|
} | undefined;
|
|
11671
12427
|
} & ({
|
|
11672
|
-
openapi: (string | string[]
|
|
12428
|
+
openapi: (string | string[] | {
|
|
12429
|
+
source: string;
|
|
12430
|
+
directory?: string | undefined;
|
|
12431
|
+
}) & (string | string[] | {
|
|
12432
|
+
source: string;
|
|
12433
|
+
directory?: string | undefined;
|
|
12434
|
+
} | undefined);
|
|
11673
12435
|
} | {
|
|
11674
12436
|
pages: any[];
|
|
11675
12437
|
}))[];
|
|
@@ -11688,7 +12450,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11688
12450
|
dark: string;
|
|
11689
12451
|
} | undefined;
|
|
11690
12452
|
api?: {
|
|
11691
|
-
openapi?: string | string[] |
|
|
12453
|
+
openapi?: string | string[] | {
|
|
12454
|
+
source: string;
|
|
12455
|
+
directory?: string | undefined;
|
|
12456
|
+
} | undefined;
|
|
11692
12457
|
playground?: {
|
|
11693
12458
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
11694
12459
|
proxy?: boolean | undefined;
|