@mintlify/validation 0.1.229 → 0.1.231
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/dist/mint-config/schemas/v2/index.d.ts +188 -280
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +6 -6
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +6 -6
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +10 -10
- package/dist/mint-config/schemas/v2/properties/navigation/groups.js +1 -1
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +31 -31
- package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +17 -17
- package/dist/mint-config/schemas/v2/properties/navigation/languages.js +6 -6
- package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +1 -13
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +6 -6
- package/dist/mint-config/schemas/v2/properties/navigation/version.js +6 -6
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +47 -70
- package/dist/mint-config/schemas/v2/themes/prism.d.ts +47 -70
- package/dist/mint-config/schemas/v2/themes/quill.d.ts +47 -70
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +31 -44
- package/dist/mint-config/schemas/v2/themes/reusable/index.js +0 -2
- package/dist/mint-config/schemas/v2/themes/venus.d.ts +47 -70
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/dist/mint-config/schemas/v2/properties/feedback.d.ts +0 -14
- package/dist/mint-config/schemas/v2/properties/feedback.js +0 -8
|
@@ -211,31 +211,31 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
211
211
|
href: string;
|
|
212
212
|
}, {
|
|
213
213
|
href: string;
|
|
214
|
-
}>, z.ZodObject<{
|
|
214
|
+
}>, z.ZodLazy<z.ZodObject<{
|
|
215
215
|
versions: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
216
216
|
}, "strip", z.ZodTypeAny, {
|
|
217
217
|
versions: any[];
|
|
218
218
|
}, {
|
|
219
219
|
versions: any[];
|
|
220
|
-
}
|
|
220
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
221
221
|
tabs: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
222
222
|
}, "strip", z.ZodTypeAny, {
|
|
223
223
|
tabs: any[];
|
|
224
224
|
}, {
|
|
225
225
|
tabs: any[];
|
|
226
|
-
}
|
|
226
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
227
227
|
dropdowns: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
228
228
|
}, "strip", z.ZodTypeAny, {
|
|
229
229
|
dropdowns: any[];
|
|
230
230
|
}, {
|
|
231
231
|
dropdowns: any[];
|
|
232
|
-
}
|
|
232
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
233
233
|
anchors: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
234
234
|
}, "strip", z.ZodTypeAny, {
|
|
235
235
|
anchors: any[];
|
|
236
236
|
}, {
|
|
237
237
|
anchors: any[];
|
|
238
|
-
}
|
|
238
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
239
239
|
groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
240
240
|
group: z.ZodString;
|
|
241
241
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
@@ -272,13 +272,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
272
272
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
273
273
|
}, {
|
|
274
274
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
275
|
-
}>, z.ZodObject<{
|
|
276
|
-
pages: z.ZodArray<z.ZodType<
|
|
275
|
+
}>, z.ZodLazy<z.ZodObject<{
|
|
276
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
277
277
|
}, "strip", z.ZodTypeAny, {
|
|
278
|
-
pages:
|
|
278
|
+
pages: any[];
|
|
279
279
|
}, {
|
|
280
|
-
pages:
|
|
281
|
-
}
|
|
280
|
+
pages: any[];
|
|
281
|
+
}>>]>>, "many">;
|
|
282
282
|
}, "strip", z.ZodTypeAny, {
|
|
283
283
|
groups: ({
|
|
284
284
|
group: string;
|
|
@@ -291,7 +291,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
291
291
|
} & ({
|
|
292
292
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
293
293
|
} | {
|
|
294
|
-
pages:
|
|
294
|
+
pages: any[];
|
|
295
295
|
}))[];
|
|
296
296
|
}, {
|
|
297
297
|
groups: ({
|
|
@@ -305,15 +305,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
305
305
|
} & ({
|
|
306
306
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
307
307
|
} | {
|
|
308
|
-
pages:
|
|
308
|
+
pages: any[];
|
|
309
309
|
}))[];
|
|
310
|
-
}
|
|
311
|
-
pages: z.ZodArray<z.ZodType<
|
|
310
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
311
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
312
312
|
}, "strip", z.ZodTypeAny, {
|
|
313
|
-
pages:
|
|
313
|
+
pages: any[];
|
|
314
314
|
}, {
|
|
315
|
-
pages:
|
|
316
|
-
}
|
|
315
|
+
pages: any[];
|
|
316
|
+
}>>]>>, "many">;
|
|
317
317
|
}, "strip", z.ZodTypeAny, {
|
|
318
318
|
languages: ({
|
|
319
319
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -342,10 +342,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
342
342
|
} & ({
|
|
343
343
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
344
344
|
} | {
|
|
345
|
-
pages:
|
|
345
|
+
pages: any[];
|
|
346
346
|
}))[];
|
|
347
347
|
} | {
|
|
348
|
-
pages:
|
|
348
|
+
pages: any[];
|
|
349
349
|
}))[];
|
|
350
350
|
}, {
|
|
351
351
|
languages: ({
|
|
@@ -375,10 +375,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
375
375
|
} & ({
|
|
376
376
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
377
377
|
} | {
|
|
378
|
-
pages:
|
|
378
|
+
pages: any[];
|
|
379
379
|
}))[];
|
|
380
380
|
} | {
|
|
381
|
-
pages:
|
|
381
|
+
pages: any[];
|
|
382
382
|
}))[];
|
|
383
383
|
}>, z.ZodObject<{
|
|
384
384
|
versions: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
@@ -441,13 +441,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
441
441
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
442
442
|
}, {
|
|
443
443
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
444
|
-
}>, z.ZodObject<{
|
|
445
|
-
pages: z.ZodArray<z.ZodType<
|
|
444
|
+
}>, z.ZodLazy<z.ZodObject<{
|
|
445
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
446
446
|
}, "strip", z.ZodTypeAny, {
|
|
447
|
-
pages:
|
|
447
|
+
pages: any[];
|
|
448
448
|
}, {
|
|
449
|
-
pages:
|
|
450
|
-
}
|
|
449
|
+
pages: any[];
|
|
450
|
+
}>>]>>, "many">;
|
|
451
451
|
}, "strip", z.ZodTypeAny, {
|
|
452
452
|
groups: ({
|
|
453
453
|
group: string;
|
|
@@ -460,7 +460,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
460
460
|
} & ({
|
|
461
461
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
462
462
|
} | {
|
|
463
|
-
pages:
|
|
463
|
+
pages: any[];
|
|
464
464
|
}))[];
|
|
465
465
|
}, {
|
|
466
466
|
groups: ({
|
|
@@ -474,14 +474,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
474
474
|
} & ({
|
|
475
475
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
476
476
|
} | {
|
|
477
|
-
pages:
|
|
477
|
+
pages: any[];
|
|
478
478
|
}))[];
|
|
479
479
|
}>, z.ZodObject<{
|
|
480
|
-
pages: z.ZodArray<z.ZodType<
|
|
480
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
481
481
|
}, "strip", z.ZodTypeAny, {
|
|
482
|
-
pages:
|
|
482
|
+
pages: any[];
|
|
483
483
|
}, {
|
|
484
|
-
pages:
|
|
484
|
+
pages: any[];
|
|
485
485
|
}>]>;
|
|
486
486
|
footer: z.ZodOptional<z.ZodObject<{
|
|
487
487
|
socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter"]>, z.ZodString>>;
|
|
@@ -529,19 +529,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
529
529
|
header?: string | undefined;
|
|
530
530
|
}[] | undefined;
|
|
531
531
|
}>>;
|
|
532
|
-
feedback: z.ZodOptional<z.ZodObject<{
|
|
533
|
-
thumbs: z.ZodOptional<z.ZodBoolean>;
|
|
534
|
-
edits: z.ZodOptional<z.ZodBoolean>;
|
|
535
|
-
issues: z.ZodOptional<z.ZodBoolean>;
|
|
536
|
-
}, "strip", z.ZodTypeAny, {
|
|
537
|
-
thumbs?: boolean | undefined;
|
|
538
|
-
edits?: boolean | undefined;
|
|
539
|
-
issues?: boolean | undefined;
|
|
540
|
-
}, {
|
|
541
|
-
thumbs?: boolean | undefined;
|
|
542
|
-
edits?: boolean | undefined;
|
|
543
|
-
issues?: boolean | undefined;
|
|
544
|
-
}>>;
|
|
545
532
|
search: z.ZodOptional<z.ZodObject<{
|
|
546
533
|
prompt: z.ZodOptional<z.ZodString>;
|
|
547
534
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -993,10 +980,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
993
980
|
} & ({
|
|
994
981
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
995
982
|
} | {
|
|
996
|
-
pages:
|
|
983
|
+
pages: any[];
|
|
997
984
|
}))[];
|
|
998
985
|
} | {
|
|
999
|
-
pages:
|
|
986
|
+
pages: any[];
|
|
1000
987
|
}))[];
|
|
1001
988
|
} | {
|
|
1002
989
|
versions: any[];
|
|
@@ -1018,10 +1005,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1018
1005
|
} & ({
|
|
1019
1006
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1020
1007
|
} | {
|
|
1021
|
-
pages:
|
|
1008
|
+
pages: any[];
|
|
1022
1009
|
}))[];
|
|
1023
1010
|
} | {
|
|
1024
|
-
pages:
|
|
1011
|
+
pages: any[];
|
|
1025
1012
|
}) & ({
|
|
1026
1013
|
languages: ({
|
|
1027
1014
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -1050,10 +1037,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1050
1037
|
} & ({
|
|
1051
1038
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1052
1039
|
} | {
|
|
1053
|
-
pages:
|
|
1040
|
+
pages: any[];
|
|
1054
1041
|
}))[];
|
|
1055
1042
|
} | {
|
|
1056
|
-
pages:
|
|
1043
|
+
pages: any[];
|
|
1057
1044
|
}))[];
|
|
1058
1045
|
} | {
|
|
1059
1046
|
versions: any[];
|
|
@@ -1075,10 +1062,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1075
1062
|
} & ({
|
|
1076
1063
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1077
1064
|
} | {
|
|
1078
|
-
pages:
|
|
1065
|
+
pages: any[];
|
|
1079
1066
|
}))[];
|
|
1080
1067
|
} | {
|
|
1081
|
-
pages:
|
|
1068
|
+
pages: any[];
|
|
1082
1069
|
} | undefined);
|
|
1083
1070
|
description?: string | undefined;
|
|
1084
1071
|
logo?: string | {
|
|
@@ -1139,11 +1126,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1139
1126
|
header?: string | undefined;
|
|
1140
1127
|
}[] | undefined;
|
|
1141
1128
|
} | undefined;
|
|
1142
|
-
feedback?: {
|
|
1143
|
-
thumbs?: boolean | undefined;
|
|
1144
|
-
edits?: boolean | undefined;
|
|
1145
|
-
issues?: boolean | undefined;
|
|
1146
|
-
} | undefined;
|
|
1147
1129
|
search?: {
|
|
1148
1130
|
prompt?: string | undefined;
|
|
1149
1131
|
} | undefined;
|
|
@@ -1279,10 +1261,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1279
1261
|
} & ({
|
|
1280
1262
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1281
1263
|
} | {
|
|
1282
|
-
pages:
|
|
1264
|
+
pages: any[];
|
|
1283
1265
|
}))[];
|
|
1284
1266
|
} | {
|
|
1285
|
-
pages:
|
|
1267
|
+
pages: any[];
|
|
1286
1268
|
}))[];
|
|
1287
1269
|
} | {
|
|
1288
1270
|
versions: any[];
|
|
@@ -1304,10 +1286,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1304
1286
|
} & ({
|
|
1305
1287
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1306
1288
|
} | {
|
|
1307
|
-
pages:
|
|
1289
|
+
pages: any[];
|
|
1308
1290
|
}))[];
|
|
1309
1291
|
} | {
|
|
1310
|
-
pages:
|
|
1292
|
+
pages: any[];
|
|
1311
1293
|
}) & ({
|
|
1312
1294
|
languages: ({
|
|
1313
1295
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -1336,10 +1318,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1336
1318
|
} & ({
|
|
1337
1319
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1338
1320
|
} | {
|
|
1339
|
-
pages:
|
|
1321
|
+
pages: any[];
|
|
1340
1322
|
}))[];
|
|
1341
1323
|
} | {
|
|
1342
|
-
pages:
|
|
1324
|
+
pages: any[];
|
|
1343
1325
|
}))[];
|
|
1344
1326
|
} | {
|
|
1345
1327
|
versions: any[];
|
|
@@ -1361,10 +1343,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1361
1343
|
} & ({
|
|
1362
1344
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1363
1345
|
} | {
|
|
1364
|
-
pages:
|
|
1346
|
+
pages: any[];
|
|
1365
1347
|
}))[];
|
|
1366
1348
|
} | {
|
|
1367
|
-
pages:
|
|
1349
|
+
pages: any[];
|
|
1368
1350
|
} | undefined);
|
|
1369
1351
|
$schema?: string | undefined;
|
|
1370
1352
|
description?: string | undefined;
|
|
@@ -1426,11 +1408,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1426
1408
|
header?: string | undefined;
|
|
1427
1409
|
}[] | undefined;
|
|
1428
1410
|
} | undefined;
|
|
1429
|
-
feedback?: {
|
|
1430
|
-
thumbs?: boolean | undefined;
|
|
1431
|
-
edits?: boolean | undefined;
|
|
1432
|
-
issues?: boolean | undefined;
|
|
1433
|
-
} | undefined;
|
|
1434
1411
|
search?: {
|
|
1435
1412
|
prompt?: string | undefined;
|
|
1436
1413
|
} | undefined;
|
|
@@ -1741,31 +1718,31 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1741
1718
|
href: string;
|
|
1742
1719
|
}, {
|
|
1743
1720
|
href: string;
|
|
1744
|
-
}>, z.ZodObject<{
|
|
1721
|
+
}>, z.ZodLazy<z.ZodObject<{
|
|
1745
1722
|
versions: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
1746
1723
|
}, "strip", z.ZodTypeAny, {
|
|
1747
1724
|
versions: any[];
|
|
1748
1725
|
}, {
|
|
1749
1726
|
versions: any[];
|
|
1750
|
-
}
|
|
1727
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
1751
1728
|
tabs: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
1752
1729
|
}, "strip", z.ZodTypeAny, {
|
|
1753
1730
|
tabs: any[];
|
|
1754
1731
|
}, {
|
|
1755
1732
|
tabs: any[];
|
|
1756
|
-
}
|
|
1733
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
1757
1734
|
dropdowns: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
1758
1735
|
}, "strip", z.ZodTypeAny, {
|
|
1759
1736
|
dropdowns: any[];
|
|
1760
1737
|
}, {
|
|
1761
1738
|
dropdowns: any[];
|
|
1762
|
-
}
|
|
1739
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
1763
1740
|
anchors: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
1764
1741
|
}, "strip", z.ZodTypeAny, {
|
|
1765
1742
|
anchors: any[];
|
|
1766
1743
|
}, {
|
|
1767
1744
|
anchors: any[];
|
|
1768
|
-
}
|
|
1745
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
1769
1746
|
groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
1770
1747
|
group: z.ZodString;
|
|
1771
1748
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
@@ -1802,13 +1779,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1802
1779
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1803
1780
|
}, {
|
|
1804
1781
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1805
|
-
}>, z.ZodObject<{
|
|
1806
|
-
pages: z.ZodArray<z.ZodType<
|
|
1782
|
+
}>, z.ZodLazy<z.ZodObject<{
|
|
1783
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
1807
1784
|
}, "strip", z.ZodTypeAny, {
|
|
1808
|
-
pages:
|
|
1785
|
+
pages: any[];
|
|
1809
1786
|
}, {
|
|
1810
|
-
pages:
|
|
1811
|
-
}
|
|
1787
|
+
pages: any[];
|
|
1788
|
+
}>>]>>, "many">;
|
|
1812
1789
|
}, "strip", z.ZodTypeAny, {
|
|
1813
1790
|
groups: ({
|
|
1814
1791
|
group: string;
|
|
@@ -1821,7 +1798,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1821
1798
|
} & ({
|
|
1822
1799
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1823
1800
|
} | {
|
|
1824
|
-
pages:
|
|
1801
|
+
pages: any[];
|
|
1825
1802
|
}))[];
|
|
1826
1803
|
}, {
|
|
1827
1804
|
groups: ({
|
|
@@ -1835,15 +1812,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1835
1812
|
} & ({
|
|
1836
1813
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1837
1814
|
} | {
|
|
1838
|
-
pages:
|
|
1815
|
+
pages: any[];
|
|
1839
1816
|
}))[];
|
|
1840
|
-
}
|
|
1841
|
-
pages: z.ZodArray<z.ZodType<
|
|
1817
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
1818
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
1842
1819
|
}, "strip", z.ZodTypeAny, {
|
|
1843
|
-
pages:
|
|
1820
|
+
pages: any[];
|
|
1844
1821
|
}, {
|
|
1845
|
-
pages:
|
|
1846
|
-
}
|
|
1822
|
+
pages: any[];
|
|
1823
|
+
}>>]>>, "many">;
|
|
1847
1824
|
}, "strip", z.ZodTypeAny, {
|
|
1848
1825
|
languages: ({
|
|
1849
1826
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -1872,10 +1849,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1872
1849
|
} & ({
|
|
1873
1850
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1874
1851
|
} | {
|
|
1875
|
-
pages:
|
|
1852
|
+
pages: any[];
|
|
1876
1853
|
}))[];
|
|
1877
1854
|
} | {
|
|
1878
|
-
pages:
|
|
1855
|
+
pages: any[];
|
|
1879
1856
|
}))[];
|
|
1880
1857
|
}, {
|
|
1881
1858
|
languages: ({
|
|
@@ -1905,10 +1882,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1905
1882
|
} & ({
|
|
1906
1883
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1907
1884
|
} | {
|
|
1908
|
-
pages:
|
|
1885
|
+
pages: any[];
|
|
1909
1886
|
}))[];
|
|
1910
1887
|
} | {
|
|
1911
|
-
pages:
|
|
1888
|
+
pages: any[];
|
|
1912
1889
|
}))[];
|
|
1913
1890
|
}>, z.ZodObject<{
|
|
1914
1891
|
versions: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
@@ -1971,13 +1948,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1971
1948
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1972
1949
|
}, {
|
|
1973
1950
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1974
|
-
}>, z.ZodObject<{
|
|
1975
|
-
pages: z.ZodArray<z.ZodType<
|
|
1951
|
+
}>, z.ZodLazy<z.ZodObject<{
|
|
1952
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
1976
1953
|
}, "strip", z.ZodTypeAny, {
|
|
1977
|
-
pages:
|
|
1954
|
+
pages: any[];
|
|
1978
1955
|
}, {
|
|
1979
|
-
pages:
|
|
1980
|
-
}
|
|
1956
|
+
pages: any[];
|
|
1957
|
+
}>>]>>, "many">;
|
|
1981
1958
|
}, "strip", z.ZodTypeAny, {
|
|
1982
1959
|
groups: ({
|
|
1983
1960
|
group: string;
|
|
@@ -1990,7 +1967,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1990
1967
|
} & ({
|
|
1991
1968
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1992
1969
|
} | {
|
|
1993
|
-
pages:
|
|
1970
|
+
pages: any[];
|
|
1994
1971
|
}))[];
|
|
1995
1972
|
}, {
|
|
1996
1973
|
groups: ({
|
|
@@ -2004,14 +1981,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2004
1981
|
} & ({
|
|
2005
1982
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2006
1983
|
} | {
|
|
2007
|
-
pages:
|
|
1984
|
+
pages: any[];
|
|
2008
1985
|
}))[];
|
|
2009
1986
|
}>, z.ZodObject<{
|
|
2010
|
-
pages: z.ZodArray<z.ZodType<
|
|
1987
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
2011
1988
|
}, "strip", z.ZodTypeAny, {
|
|
2012
|
-
pages:
|
|
1989
|
+
pages: any[];
|
|
2013
1990
|
}, {
|
|
2014
|
-
pages:
|
|
1991
|
+
pages: any[];
|
|
2015
1992
|
}>]>;
|
|
2016
1993
|
footer: z.ZodOptional<z.ZodObject<{
|
|
2017
1994
|
socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter"]>, z.ZodString>>;
|
|
@@ -2059,19 +2036,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2059
2036
|
header?: string | undefined;
|
|
2060
2037
|
}[] | undefined;
|
|
2061
2038
|
}>>;
|
|
2062
|
-
feedback: z.ZodOptional<z.ZodObject<{
|
|
2063
|
-
thumbs: z.ZodOptional<z.ZodBoolean>;
|
|
2064
|
-
edits: z.ZodOptional<z.ZodBoolean>;
|
|
2065
|
-
issues: z.ZodOptional<z.ZodBoolean>;
|
|
2066
|
-
}, "strip", z.ZodTypeAny, {
|
|
2067
|
-
thumbs?: boolean | undefined;
|
|
2068
|
-
edits?: boolean | undefined;
|
|
2069
|
-
issues?: boolean | undefined;
|
|
2070
|
-
}, {
|
|
2071
|
-
thumbs?: boolean | undefined;
|
|
2072
|
-
edits?: boolean | undefined;
|
|
2073
|
-
issues?: boolean | undefined;
|
|
2074
|
-
}>>;
|
|
2075
2039
|
search: z.ZodOptional<z.ZodObject<{
|
|
2076
2040
|
prompt: z.ZodOptional<z.ZodString>;
|
|
2077
2041
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2523,10 +2487,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2523
2487
|
} & ({
|
|
2524
2488
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2525
2489
|
} | {
|
|
2526
|
-
pages:
|
|
2490
|
+
pages: any[];
|
|
2527
2491
|
}))[];
|
|
2528
2492
|
} | {
|
|
2529
|
-
pages:
|
|
2493
|
+
pages: any[];
|
|
2530
2494
|
}))[];
|
|
2531
2495
|
} | {
|
|
2532
2496
|
versions: any[];
|
|
@@ -2548,10 +2512,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2548
2512
|
} & ({
|
|
2549
2513
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2550
2514
|
} | {
|
|
2551
|
-
pages:
|
|
2515
|
+
pages: any[];
|
|
2552
2516
|
}))[];
|
|
2553
2517
|
} | {
|
|
2554
|
-
pages:
|
|
2518
|
+
pages: any[];
|
|
2555
2519
|
}) & ({
|
|
2556
2520
|
languages: ({
|
|
2557
2521
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -2580,10 +2544,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2580
2544
|
} & ({
|
|
2581
2545
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2582
2546
|
} | {
|
|
2583
|
-
pages:
|
|
2547
|
+
pages: any[];
|
|
2584
2548
|
}))[];
|
|
2585
2549
|
} | {
|
|
2586
|
-
pages:
|
|
2550
|
+
pages: any[];
|
|
2587
2551
|
}))[];
|
|
2588
2552
|
} | {
|
|
2589
2553
|
versions: any[];
|
|
@@ -2605,10 +2569,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2605
2569
|
} & ({
|
|
2606
2570
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2607
2571
|
} | {
|
|
2608
|
-
pages:
|
|
2572
|
+
pages: any[];
|
|
2609
2573
|
}))[];
|
|
2610
2574
|
} | {
|
|
2611
|
-
pages:
|
|
2575
|
+
pages: any[];
|
|
2612
2576
|
} | undefined);
|
|
2613
2577
|
description?: string | undefined;
|
|
2614
2578
|
logo?: string | {
|
|
@@ -2669,11 +2633,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2669
2633
|
header?: string | undefined;
|
|
2670
2634
|
}[] | undefined;
|
|
2671
2635
|
} | undefined;
|
|
2672
|
-
feedback?: {
|
|
2673
|
-
thumbs?: boolean | undefined;
|
|
2674
|
-
edits?: boolean | undefined;
|
|
2675
|
-
issues?: boolean | undefined;
|
|
2676
|
-
} | undefined;
|
|
2677
2636
|
search?: {
|
|
2678
2637
|
prompt?: string | undefined;
|
|
2679
2638
|
} | undefined;
|
|
@@ -2809,10 +2768,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2809
2768
|
} & ({
|
|
2810
2769
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2811
2770
|
} | {
|
|
2812
|
-
pages:
|
|
2771
|
+
pages: any[];
|
|
2813
2772
|
}))[];
|
|
2814
2773
|
} | {
|
|
2815
|
-
pages:
|
|
2774
|
+
pages: any[];
|
|
2816
2775
|
}))[];
|
|
2817
2776
|
} | {
|
|
2818
2777
|
versions: any[];
|
|
@@ -2834,10 +2793,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2834
2793
|
} & ({
|
|
2835
2794
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2836
2795
|
} | {
|
|
2837
|
-
pages:
|
|
2796
|
+
pages: any[];
|
|
2838
2797
|
}))[];
|
|
2839
2798
|
} | {
|
|
2840
|
-
pages:
|
|
2799
|
+
pages: any[];
|
|
2841
2800
|
}) & ({
|
|
2842
2801
|
languages: ({
|
|
2843
2802
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -2866,10 +2825,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2866
2825
|
} & ({
|
|
2867
2826
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2868
2827
|
} | {
|
|
2869
|
-
pages:
|
|
2828
|
+
pages: any[];
|
|
2870
2829
|
}))[];
|
|
2871
2830
|
} | {
|
|
2872
|
-
pages:
|
|
2831
|
+
pages: any[];
|
|
2873
2832
|
}))[];
|
|
2874
2833
|
} | {
|
|
2875
2834
|
versions: any[];
|
|
@@ -2891,10 +2850,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2891
2850
|
} & ({
|
|
2892
2851
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2893
2852
|
} | {
|
|
2894
|
-
pages:
|
|
2853
|
+
pages: any[];
|
|
2895
2854
|
}))[];
|
|
2896
2855
|
} | {
|
|
2897
|
-
pages:
|
|
2856
|
+
pages: any[];
|
|
2898
2857
|
} | undefined);
|
|
2899
2858
|
$schema?: string | undefined;
|
|
2900
2859
|
description?: string | undefined;
|
|
@@ -2956,11 +2915,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2956
2915
|
header?: string | undefined;
|
|
2957
2916
|
}[] | undefined;
|
|
2958
2917
|
} | undefined;
|
|
2959
|
-
feedback?: {
|
|
2960
|
-
thumbs?: boolean | undefined;
|
|
2961
|
-
edits?: boolean | undefined;
|
|
2962
|
-
issues?: boolean | undefined;
|
|
2963
|
-
} | undefined;
|
|
2964
2918
|
search?: {
|
|
2965
2919
|
prompt?: string | undefined;
|
|
2966
2920
|
} | undefined;
|
|
@@ -3271,31 +3225,31 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3271
3225
|
href: string;
|
|
3272
3226
|
}, {
|
|
3273
3227
|
href: string;
|
|
3274
|
-
}>, z.ZodObject<{
|
|
3228
|
+
}>, z.ZodLazy<z.ZodObject<{
|
|
3275
3229
|
versions: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
3276
3230
|
}, "strip", z.ZodTypeAny, {
|
|
3277
3231
|
versions: any[];
|
|
3278
3232
|
}, {
|
|
3279
3233
|
versions: any[];
|
|
3280
|
-
}
|
|
3234
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
3281
3235
|
tabs: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
3282
3236
|
}, "strip", z.ZodTypeAny, {
|
|
3283
3237
|
tabs: any[];
|
|
3284
3238
|
}, {
|
|
3285
3239
|
tabs: any[];
|
|
3286
|
-
}
|
|
3240
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
3287
3241
|
dropdowns: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
3288
3242
|
}, "strip", z.ZodTypeAny, {
|
|
3289
3243
|
dropdowns: any[];
|
|
3290
3244
|
}, {
|
|
3291
3245
|
dropdowns: any[];
|
|
3292
|
-
}
|
|
3246
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
3293
3247
|
anchors: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
3294
3248
|
}, "strip", z.ZodTypeAny, {
|
|
3295
3249
|
anchors: any[];
|
|
3296
3250
|
}, {
|
|
3297
3251
|
anchors: any[];
|
|
3298
|
-
}
|
|
3252
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
3299
3253
|
groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
3300
3254
|
group: z.ZodString;
|
|
3301
3255
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
@@ -3332,13 +3286,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3332
3286
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3333
3287
|
}, {
|
|
3334
3288
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3335
|
-
}>, z.ZodObject<{
|
|
3336
|
-
pages: z.ZodArray<z.ZodType<
|
|
3289
|
+
}>, z.ZodLazy<z.ZodObject<{
|
|
3290
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
3337
3291
|
}, "strip", z.ZodTypeAny, {
|
|
3338
|
-
pages:
|
|
3292
|
+
pages: any[];
|
|
3339
3293
|
}, {
|
|
3340
|
-
pages:
|
|
3341
|
-
}
|
|
3294
|
+
pages: any[];
|
|
3295
|
+
}>>]>>, "many">;
|
|
3342
3296
|
}, "strip", z.ZodTypeAny, {
|
|
3343
3297
|
groups: ({
|
|
3344
3298
|
group: string;
|
|
@@ -3351,7 +3305,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3351
3305
|
} & ({
|
|
3352
3306
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3353
3307
|
} | {
|
|
3354
|
-
pages:
|
|
3308
|
+
pages: any[];
|
|
3355
3309
|
}))[];
|
|
3356
3310
|
}, {
|
|
3357
3311
|
groups: ({
|
|
@@ -3365,15 +3319,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3365
3319
|
} & ({
|
|
3366
3320
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3367
3321
|
} | {
|
|
3368
|
-
pages:
|
|
3322
|
+
pages: any[];
|
|
3369
3323
|
}))[];
|
|
3370
|
-
}
|
|
3371
|
-
pages: z.ZodArray<z.ZodType<
|
|
3324
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
3325
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
3372
3326
|
}, "strip", z.ZodTypeAny, {
|
|
3373
|
-
pages:
|
|
3327
|
+
pages: any[];
|
|
3374
3328
|
}, {
|
|
3375
|
-
pages:
|
|
3376
|
-
}
|
|
3329
|
+
pages: any[];
|
|
3330
|
+
}>>]>>, "many">;
|
|
3377
3331
|
}, "strip", z.ZodTypeAny, {
|
|
3378
3332
|
languages: ({
|
|
3379
3333
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -3402,10 +3356,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3402
3356
|
} & ({
|
|
3403
3357
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3404
3358
|
} | {
|
|
3405
|
-
pages:
|
|
3359
|
+
pages: any[];
|
|
3406
3360
|
}))[];
|
|
3407
3361
|
} | {
|
|
3408
|
-
pages:
|
|
3362
|
+
pages: any[];
|
|
3409
3363
|
}))[];
|
|
3410
3364
|
}, {
|
|
3411
3365
|
languages: ({
|
|
@@ -3435,10 +3389,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3435
3389
|
} & ({
|
|
3436
3390
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3437
3391
|
} | {
|
|
3438
|
-
pages:
|
|
3392
|
+
pages: any[];
|
|
3439
3393
|
}))[];
|
|
3440
3394
|
} | {
|
|
3441
|
-
pages:
|
|
3395
|
+
pages: any[];
|
|
3442
3396
|
}))[];
|
|
3443
3397
|
}>, z.ZodObject<{
|
|
3444
3398
|
versions: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
@@ -3501,13 +3455,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3501
3455
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3502
3456
|
}, {
|
|
3503
3457
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3504
|
-
}>, z.ZodObject<{
|
|
3505
|
-
pages: z.ZodArray<z.ZodType<
|
|
3458
|
+
}>, z.ZodLazy<z.ZodObject<{
|
|
3459
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
3506
3460
|
}, "strip", z.ZodTypeAny, {
|
|
3507
|
-
pages:
|
|
3461
|
+
pages: any[];
|
|
3508
3462
|
}, {
|
|
3509
|
-
pages:
|
|
3510
|
-
}
|
|
3463
|
+
pages: any[];
|
|
3464
|
+
}>>]>>, "many">;
|
|
3511
3465
|
}, "strip", z.ZodTypeAny, {
|
|
3512
3466
|
groups: ({
|
|
3513
3467
|
group: string;
|
|
@@ -3520,7 +3474,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3520
3474
|
} & ({
|
|
3521
3475
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3522
3476
|
} | {
|
|
3523
|
-
pages:
|
|
3477
|
+
pages: any[];
|
|
3524
3478
|
}))[];
|
|
3525
3479
|
}, {
|
|
3526
3480
|
groups: ({
|
|
@@ -3534,14 +3488,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3534
3488
|
} & ({
|
|
3535
3489
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3536
3490
|
} | {
|
|
3537
|
-
pages:
|
|
3491
|
+
pages: any[];
|
|
3538
3492
|
}))[];
|
|
3539
3493
|
}>, z.ZodObject<{
|
|
3540
|
-
pages: z.ZodArray<z.ZodType<
|
|
3494
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
3541
3495
|
}, "strip", z.ZodTypeAny, {
|
|
3542
|
-
pages:
|
|
3496
|
+
pages: any[];
|
|
3543
3497
|
}, {
|
|
3544
|
-
pages:
|
|
3498
|
+
pages: any[];
|
|
3545
3499
|
}>]>;
|
|
3546
3500
|
footer: z.ZodOptional<z.ZodObject<{
|
|
3547
3501
|
socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter"]>, z.ZodString>>;
|
|
@@ -3589,19 +3543,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3589
3543
|
header?: string | undefined;
|
|
3590
3544
|
}[] | undefined;
|
|
3591
3545
|
}>>;
|
|
3592
|
-
feedback: z.ZodOptional<z.ZodObject<{
|
|
3593
|
-
thumbs: z.ZodOptional<z.ZodBoolean>;
|
|
3594
|
-
edits: z.ZodOptional<z.ZodBoolean>;
|
|
3595
|
-
issues: z.ZodOptional<z.ZodBoolean>;
|
|
3596
|
-
}, "strip", z.ZodTypeAny, {
|
|
3597
|
-
thumbs?: boolean | undefined;
|
|
3598
|
-
edits?: boolean | undefined;
|
|
3599
|
-
issues?: boolean | undefined;
|
|
3600
|
-
}, {
|
|
3601
|
-
thumbs?: boolean | undefined;
|
|
3602
|
-
edits?: boolean | undefined;
|
|
3603
|
-
issues?: boolean | undefined;
|
|
3604
|
-
}>>;
|
|
3605
3546
|
search: z.ZodOptional<z.ZodObject<{
|
|
3606
3547
|
prompt: z.ZodOptional<z.ZodString>;
|
|
3607
3548
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4053,10 +3994,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4053
3994
|
} & ({
|
|
4054
3995
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4055
3996
|
} | {
|
|
4056
|
-
pages:
|
|
3997
|
+
pages: any[];
|
|
4057
3998
|
}))[];
|
|
4058
3999
|
} | {
|
|
4059
|
-
pages:
|
|
4000
|
+
pages: any[];
|
|
4060
4001
|
}))[];
|
|
4061
4002
|
} | {
|
|
4062
4003
|
versions: any[];
|
|
@@ -4078,10 +4019,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4078
4019
|
} & ({
|
|
4079
4020
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4080
4021
|
} | {
|
|
4081
|
-
pages:
|
|
4022
|
+
pages: any[];
|
|
4082
4023
|
}))[];
|
|
4083
4024
|
} | {
|
|
4084
|
-
pages:
|
|
4025
|
+
pages: any[];
|
|
4085
4026
|
}) & ({
|
|
4086
4027
|
languages: ({
|
|
4087
4028
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -4110,10 +4051,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4110
4051
|
} & ({
|
|
4111
4052
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4112
4053
|
} | {
|
|
4113
|
-
pages:
|
|
4054
|
+
pages: any[];
|
|
4114
4055
|
}))[];
|
|
4115
4056
|
} | {
|
|
4116
|
-
pages:
|
|
4057
|
+
pages: any[];
|
|
4117
4058
|
}))[];
|
|
4118
4059
|
} | {
|
|
4119
4060
|
versions: any[];
|
|
@@ -4135,10 +4076,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4135
4076
|
} & ({
|
|
4136
4077
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4137
4078
|
} | {
|
|
4138
|
-
pages:
|
|
4079
|
+
pages: any[];
|
|
4139
4080
|
}))[];
|
|
4140
4081
|
} | {
|
|
4141
|
-
pages:
|
|
4082
|
+
pages: any[];
|
|
4142
4083
|
} | undefined);
|
|
4143
4084
|
description?: string | undefined;
|
|
4144
4085
|
logo?: string | {
|
|
@@ -4199,11 +4140,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4199
4140
|
header?: string | undefined;
|
|
4200
4141
|
}[] | undefined;
|
|
4201
4142
|
} | undefined;
|
|
4202
|
-
feedback?: {
|
|
4203
|
-
thumbs?: boolean | undefined;
|
|
4204
|
-
edits?: boolean | undefined;
|
|
4205
|
-
issues?: boolean | undefined;
|
|
4206
|
-
} | undefined;
|
|
4207
4143
|
search?: {
|
|
4208
4144
|
prompt?: string | undefined;
|
|
4209
4145
|
} | undefined;
|
|
@@ -4339,10 +4275,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4339
4275
|
} & ({
|
|
4340
4276
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4341
4277
|
} | {
|
|
4342
|
-
pages:
|
|
4278
|
+
pages: any[];
|
|
4343
4279
|
}))[];
|
|
4344
4280
|
} | {
|
|
4345
|
-
pages:
|
|
4281
|
+
pages: any[];
|
|
4346
4282
|
}))[];
|
|
4347
4283
|
} | {
|
|
4348
4284
|
versions: any[];
|
|
@@ -4364,10 +4300,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4364
4300
|
} & ({
|
|
4365
4301
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4366
4302
|
} | {
|
|
4367
|
-
pages:
|
|
4303
|
+
pages: any[];
|
|
4368
4304
|
}))[];
|
|
4369
4305
|
} | {
|
|
4370
|
-
pages:
|
|
4306
|
+
pages: any[];
|
|
4371
4307
|
}) & ({
|
|
4372
4308
|
languages: ({
|
|
4373
4309
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -4396,10 +4332,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4396
4332
|
} & ({
|
|
4397
4333
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4398
4334
|
} | {
|
|
4399
|
-
pages:
|
|
4335
|
+
pages: any[];
|
|
4400
4336
|
}))[];
|
|
4401
4337
|
} | {
|
|
4402
|
-
pages:
|
|
4338
|
+
pages: any[];
|
|
4403
4339
|
}))[];
|
|
4404
4340
|
} | {
|
|
4405
4341
|
versions: any[];
|
|
@@ -4421,10 +4357,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4421
4357
|
} & ({
|
|
4422
4358
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4423
4359
|
} | {
|
|
4424
|
-
pages:
|
|
4360
|
+
pages: any[];
|
|
4425
4361
|
}))[];
|
|
4426
4362
|
} | {
|
|
4427
|
-
pages:
|
|
4363
|
+
pages: any[];
|
|
4428
4364
|
} | undefined);
|
|
4429
4365
|
$schema?: string | undefined;
|
|
4430
4366
|
description?: string | undefined;
|
|
@@ -4486,11 +4422,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4486
4422
|
header?: string | undefined;
|
|
4487
4423
|
}[] | undefined;
|
|
4488
4424
|
} | undefined;
|
|
4489
|
-
feedback?: {
|
|
4490
|
-
thumbs?: boolean | undefined;
|
|
4491
|
-
edits?: boolean | undefined;
|
|
4492
|
-
issues?: boolean | undefined;
|
|
4493
|
-
} | undefined;
|
|
4494
4425
|
search?: {
|
|
4495
4426
|
prompt?: string | undefined;
|
|
4496
4427
|
} | undefined;
|
|
@@ -4801,31 +4732,31 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4801
4732
|
href: string;
|
|
4802
4733
|
}, {
|
|
4803
4734
|
href: string;
|
|
4804
|
-
}>, z.ZodObject<{
|
|
4735
|
+
}>, z.ZodLazy<z.ZodObject<{
|
|
4805
4736
|
versions: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
4806
4737
|
}, "strip", z.ZodTypeAny, {
|
|
4807
4738
|
versions: any[];
|
|
4808
4739
|
}, {
|
|
4809
4740
|
versions: any[];
|
|
4810
|
-
}
|
|
4741
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
4811
4742
|
tabs: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
4812
4743
|
}, "strip", z.ZodTypeAny, {
|
|
4813
4744
|
tabs: any[];
|
|
4814
4745
|
}, {
|
|
4815
4746
|
tabs: any[];
|
|
4816
|
-
}
|
|
4747
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
4817
4748
|
dropdowns: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
4818
4749
|
}, "strip", z.ZodTypeAny, {
|
|
4819
4750
|
dropdowns: any[];
|
|
4820
4751
|
}, {
|
|
4821
4752
|
dropdowns: any[];
|
|
4822
|
-
}
|
|
4753
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
4823
4754
|
anchors: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
4824
4755
|
}, "strip", z.ZodTypeAny, {
|
|
4825
4756
|
anchors: any[];
|
|
4826
4757
|
}, {
|
|
4827
4758
|
anchors: any[];
|
|
4828
|
-
}
|
|
4759
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
4829
4760
|
groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
4830
4761
|
group: z.ZodString;
|
|
4831
4762
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
@@ -4862,13 +4793,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4862
4793
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4863
4794
|
}, {
|
|
4864
4795
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4865
|
-
}>, z.ZodObject<{
|
|
4866
|
-
pages: z.ZodArray<z.ZodType<
|
|
4796
|
+
}>, z.ZodLazy<z.ZodObject<{
|
|
4797
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
4867
4798
|
}, "strip", z.ZodTypeAny, {
|
|
4868
|
-
pages:
|
|
4799
|
+
pages: any[];
|
|
4869
4800
|
}, {
|
|
4870
|
-
pages:
|
|
4871
|
-
}
|
|
4801
|
+
pages: any[];
|
|
4802
|
+
}>>]>>, "many">;
|
|
4872
4803
|
}, "strip", z.ZodTypeAny, {
|
|
4873
4804
|
groups: ({
|
|
4874
4805
|
group: string;
|
|
@@ -4881,7 +4812,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4881
4812
|
} & ({
|
|
4882
4813
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4883
4814
|
} | {
|
|
4884
|
-
pages:
|
|
4815
|
+
pages: any[];
|
|
4885
4816
|
}))[];
|
|
4886
4817
|
}, {
|
|
4887
4818
|
groups: ({
|
|
@@ -4895,15 +4826,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4895
4826
|
} & ({
|
|
4896
4827
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4897
4828
|
} | {
|
|
4898
|
-
pages:
|
|
4829
|
+
pages: any[];
|
|
4899
4830
|
}))[];
|
|
4900
|
-
}
|
|
4901
|
-
pages: z.ZodArray<z.ZodType<
|
|
4831
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
4832
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
4902
4833
|
}, "strip", z.ZodTypeAny, {
|
|
4903
|
-
pages:
|
|
4834
|
+
pages: any[];
|
|
4904
4835
|
}, {
|
|
4905
|
-
pages:
|
|
4906
|
-
}
|
|
4836
|
+
pages: any[];
|
|
4837
|
+
}>>]>>, "many">;
|
|
4907
4838
|
}, "strip", z.ZodTypeAny, {
|
|
4908
4839
|
languages: ({
|
|
4909
4840
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -4932,10 +4863,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4932
4863
|
} & ({
|
|
4933
4864
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4934
4865
|
} | {
|
|
4935
|
-
pages:
|
|
4866
|
+
pages: any[];
|
|
4936
4867
|
}))[];
|
|
4937
4868
|
} | {
|
|
4938
|
-
pages:
|
|
4869
|
+
pages: any[];
|
|
4939
4870
|
}))[];
|
|
4940
4871
|
}, {
|
|
4941
4872
|
languages: ({
|
|
@@ -4965,10 +4896,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4965
4896
|
} & ({
|
|
4966
4897
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4967
4898
|
} | {
|
|
4968
|
-
pages:
|
|
4899
|
+
pages: any[];
|
|
4969
4900
|
}))[];
|
|
4970
4901
|
} | {
|
|
4971
|
-
pages:
|
|
4902
|
+
pages: any[];
|
|
4972
4903
|
}))[];
|
|
4973
4904
|
}>, z.ZodObject<{
|
|
4974
4905
|
versions: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
@@ -5031,13 +4962,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5031
4962
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5032
4963
|
}, {
|
|
5033
4964
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5034
|
-
}>, z.ZodObject<{
|
|
5035
|
-
pages: z.ZodArray<z.ZodType<
|
|
4965
|
+
}>, z.ZodLazy<z.ZodObject<{
|
|
4966
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
5036
4967
|
}, "strip", z.ZodTypeAny, {
|
|
5037
|
-
pages:
|
|
4968
|
+
pages: any[];
|
|
5038
4969
|
}, {
|
|
5039
|
-
pages:
|
|
5040
|
-
}
|
|
4970
|
+
pages: any[];
|
|
4971
|
+
}>>]>>, "many">;
|
|
5041
4972
|
}, "strip", z.ZodTypeAny, {
|
|
5042
4973
|
groups: ({
|
|
5043
4974
|
group: string;
|
|
@@ -5050,7 +4981,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5050
4981
|
} & ({
|
|
5051
4982
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5052
4983
|
} | {
|
|
5053
|
-
pages:
|
|
4984
|
+
pages: any[];
|
|
5054
4985
|
}))[];
|
|
5055
4986
|
}, {
|
|
5056
4987
|
groups: ({
|
|
@@ -5064,14 +4995,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5064
4995
|
} & ({
|
|
5065
4996
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5066
4997
|
} | {
|
|
5067
|
-
pages:
|
|
4998
|
+
pages: any[];
|
|
5068
4999
|
}))[];
|
|
5069
5000
|
}>, z.ZodObject<{
|
|
5070
|
-
pages: z.ZodArray<z.ZodType<
|
|
5001
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
5071
5002
|
}, "strip", z.ZodTypeAny, {
|
|
5072
|
-
pages:
|
|
5003
|
+
pages: any[];
|
|
5073
5004
|
}, {
|
|
5074
|
-
pages:
|
|
5005
|
+
pages: any[];
|
|
5075
5006
|
}>]>;
|
|
5076
5007
|
footer: z.ZodOptional<z.ZodObject<{
|
|
5077
5008
|
socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter"]>, z.ZodString>>;
|
|
@@ -5119,19 +5050,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5119
5050
|
header?: string | undefined;
|
|
5120
5051
|
}[] | undefined;
|
|
5121
5052
|
}>>;
|
|
5122
|
-
feedback: z.ZodOptional<z.ZodObject<{
|
|
5123
|
-
thumbs: z.ZodOptional<z.ZodBoolean>;
|
|
5124
|
-
edits: z.ZodOptional<z.ZodBoolean>;
|
|
5125
|
-
issues: z.ZodOptional<z.ZodBoolean>;
|
|
5126
|
-
}, "strip", z.ZodTypeAny, {
|
|
5127
|
-
thumbs?: boolean | undefined;
|
|
5128
|
-
edits?: boolean | undefined;
|
|
5129
|
-
issues?: boolean | undefined;
|
|
5130
|
-
}, {
|
|
5131
|
-
thumbs?: boolean | undefined;
|
|
5132
|
-
edits?: boolean | undefined;
|
|
5133
|
-
issues?: boolean | undefined;
|
|
5134
|
-
}>>;
|
|
5135
5053
|
search: z.ZodOptional<z.ZodObject<{
|
|
5136
5054
|
prompt: z.ZodOptional<z.ZodString>;
|
|
5137
5055
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5583,10 +5501,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5583
5501
|
} & ({
|
|
5584
5502
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5585
5503
|
} | {
|
|
5586
|
-
pages:
|
|
5504
|
+
pages: any[];
|
|
5587
5505
|
}))[];
|
|
5588
5506
|
} | {
|
|
5589
|
-
pages:
|
|
5507
|
+
pages: any[];
|
|
5590
5508
|
}))[];
|
|
5591
5509
|
} | {
|
|
5592
5510
|
versions: any[];
|
|
@@ -5608,10 +5526,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5608
5526
|
} & ({
|
|
5609
5527
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5610
5528
|
} | {
|
|
5611
|
-
pages:
|
|
5529
|
+
pages: any[];
|
|
5612
5530
|
}))[];
|
|
5613
5531
|
} | {
|
|
5614
|
-
pages:
|
|
5532
|
+
pages: any[];
|
|
5615
5533
|
}) & ({
|
|
5616
5534
|
languages: ({
|
|
5617
5535
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -5640,10 +5558,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5640
5558
|
} & ({
|
|
5641
5559
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5642
5560
|
} | {
|
|
5643
|
-
pages:
|
|
5561
|
+
pages: any[];
|
|
5644
5562
|
}))[];
|
|
5645
5563
|
} | {
|
|
5646
|
-
pages:
|
|
5564
|
+
pages: any[];
|
|
5647
5565
|
}))[];
|
|
5648
5566
|
} | {
|
|
5649
5567
|
versions: any[];
|
|
@@ -5665,10 +5583,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5665
5583
|
} & ({
|
|
5666
5584
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5667
5585
|
} | {
|
|
5668
|
-
pages:
|
|
5586
|
+
pages: any[];
|
|
5669
5587
|
}))[];
|
|
5670
5588
|
} | {
|
|
5671
|
-
pages:
|
|
5589
|
+
pages: any[];
|
|
5672
5590
|
} | undefined);
|
|
5673
5591
|
description?: string | undefined;
|
|
5674
5592
|
logo?: string | {
|
|
@@ -5729,11 +5647,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5729
5647
|
header?: string | undefined;
|
|
5730
5648
|
}[] | undefined;
|
|
5731
5649
|
} | undefined;
|
|
5732
|
-
feedback?: {
|
|
5733
|
-
thumbs?: boolean | undefined;
|
|
5734
|
-
edits?: boolean | undefined;
|
|
5735
|
-
issues?: boolean | undefined;
|
|
5736
|
-
} | undefined;
|
|
5737
5650
|
search?: {
|
|
5738
5651
|
prompt?: string | undefined;
|
|
5739
5652
|
} | undefined;
|
|
@@ -5869,10 +5782,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5869
5782
|
} & ({
|
|
5870
5783
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5871
5784
|
} | {
|
|
5872
|
-
pages:
|
|
5785
|
+
pages: any[];
|
|
5873
5786
|
}))[];
|
|
5874
5787
|
} | {
|
|
5875
|
-
pages:
|
|
5788
|
+
pages: any[];
|
|
5876
5789
|
}))[];
|
|
5877
5790
|
} | {
|
|
5878
5791
|
versions: any[];
|
|
@@ -5894,10 +5807,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5894
5807
|
} & ({
|
|
5895
5808
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5896
5809
|
} | {
|
|
5897
|
-
pages:
|
|
5810
|
+
pages: any[];
|
|
5898
5811
|
}))[];
|
|
5899
5812
|
} | {
|
|
5900
|
-
pages:
|
|
5813
|
+
pages: any[];
|
|
5901
5814
|
}) & ({
|
|
5902
5815
|
languages: ({
|
|
5903
5816
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
@@ -5926,10 +5839,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5926
5839
|
} & ({
|
|
5927
5840
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5928
5841
|
} | {
|
|
5929
|
-
pages:
|
|
5842
|
+
pages: any[];
|
|
5930
5843
|
}))[];
|
|
5931
5844
|
} | {
|
|
5932
|
-
pages:
|
|
5845
|
+
pages: any[];
|
|
5933
5846
|
}))[];
|
|
5934
5847
|
} | {
|
|
5935
5848
|
versions: any[];
|
|
@@ -5951,10 +5864,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5951
5864
|
} & ({
|
|
5952
5865
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5953
5866
|
} | {
|
|
5954
|
-
pages:
|
|
5867
|
+
pages: any[];
|
|
5955
5868
|
}))[];
|
|
5956
5869
|
} | {
|
|
5957
|
-
pages:
|
|
5870
|
+
pages: any[];
|
|
5958
5871
|
} | undefined);
|
|
5959
5872
|
$schema?: string | undefined;
|
|
5960
5873
|
description?: string | undefined;
|
|
@@ -6016,11 +5929,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6016
5929
|
header?: string | undefined;
|
|
6017
5930
|
}[] | undefined;
|
|
6018
5931
|
} | undefined;
|
|
6019
|
-
feedback?: {
|
|
6020
|
-
thumbs?: boolean | undefined;
|
|
6021
|
-
edits?: boolean | undefined;
|
|
6022
|
-
issues?: boolean | undefined;
|
|
6023
|
-
} | undefined;
|
|
6024
5932
|
search?: {
|
|
6025
5933
|
prompt?: string | undefined;
|
|
6026
5934
|
} | undefined;
|