@mintlify/validation 0.1.264 → 0.1.265
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/index.js +30 -18
- package/dist/mint-config/schemas/v2/index.d.ts +640 -340
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +28 -13
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +28 -13
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +96 -17
- package/dist/mint-config/schemas/v2/properties/navigation/groups.js +7 -4
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +68 -32
- package/dist/mint-config/schemas/v2/properties/navigation/languages.js +27 -12
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +28 -13
- package/dist/mint-config/schemas/v2/properties/navigation/version.js +28 -13
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +128 -68
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +128 -68
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +128 -68
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +128 -68
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +68 -32
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +128 -68
- package/dist/mint-config/validateConfig.d.ts +300 -180
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -255,8 +255,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
255
255
|
}, {
|
|
256
256
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
257
257
|
}>, z.ZodObject<{
|
|
258
|
-
groups: z.ZodArray<z.
|
|
259
|
-
group: z.ZodString;
|
|
258
|
+
groups: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
260
259
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
261
260
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
262
261
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -267,25 +266,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
267
266
|
name: string;
|
|
268
267
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
269
268
|
}>]>>;
|
|
269
|
+
group: z.ZodString;
|
|
270
270
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
271
271
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
272
|
-
}, "strip", z.ZodTypeAny, {
|
|
273
|
-
group: string;
|
|
274
|
-
icon?: string | {
|
|
275
|
-
name: string;
|
|
276
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
277
|
-
} | undefined;
|
|
278
|
-
hidden?: boolean | undefined;
|
|
279
|
-
root?: string | undefined;
|
|
280
|
-
}, {
|
|
281
|
-
group: string;
|
|
282
|
-
icon?: string | {
|
|
283
|
-
name: string;
|
|
284
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
285
|
-
} | undefined;
|
|
286
|
-
hidden?: boolean | undefined;
|
|
287
|
-
root?: string | undefined;
|
|
288
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
289
272
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
290
273
|
source: z.ZodEffects<z.ZodString, string, string>;
|
|
291
274
|
directory: z.ZodOptional<z.ZodString>;
|
|
@@ -304,6 +287,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
304
287
|
source: string;
|
|
305
288
|
directory?: string | undefined;
|
|
306
289
|
} | undefined);
|
|
290
|
+
group: string;
|
|
291
|
+
icon?: string | {
|
|
292
|
+
name: string;
|
|
293
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
294
|
+
} | undefined;
|
|
295
|
+
hidden?: boolean | undefined;
|
|
296
|
+
root?: string | undefined;
|
|
307
297
|
}, {
|
|
308
298
|
openapi: (string | string[] | {
|
|
309
299
|
source: string;
|
|
@@ -312,23 +302,49 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
312
302
|
source: string;
|
|
313
303
|
directory?: string | undefined;
|
|
314
304
|
} | undefined);
|
|
315
|
-
|
|
316
|
-
|
|
305
|
+
group: string;
|
|
306
|
+
icon?: string | {
|
|
307
|
+
name: string;
|
|
308
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
309
|
+
} | undefined;
|
|
310
|
+
hidden?: boolean | undefined;
|
|
311
|
+
root?: string | undefined;
|
|
312
|
+
}>, z.ZodObject<{
|
|
313
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
314
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
315
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
316
|
+
}, "strip", z.ZodTypeAny, {
|
|
317
|
+
name: string;
|
|
318
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
319
|
+
}, {
|
|
320
|
+
name: string;
|
|
321
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
322
|
+
}>]>>;
|
|
323
|
+
group: z.ZodString;
|
|
324
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
325
|
+
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
326
|
+
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
317
327
|
}, "strip", z.ZodTypeAny, {
|
|
328
|
+
group: string;
|
|
318
329
|
pages: any[];
|
|
330
|
+
icon?: string | {
|
|
331
|
+
name: string;
|
|
332
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
333
|
+
} | undefined;
|
|
334
|
+
hidden?: boolean | undefined;
|
|
335
|
+
root?: string | undefined;
|
|
319
336
|
}, {
|
|
320
|
-
pages: any[];
|
|
321
|
-
}>>]>>, "many">;
|
|
322
|
-
}, "strip", z.ZodTypeAny, {
|
|
323
|
-
groups: ({
|
|
324
337
|
group: string;
|
|
338
|
+
pages: any[];
|
|
325
339
|
icon?: string | {
|
|
326
340
|
name: string;
|
|
327
341
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
328
342
|
} | undefined;
|
|
329
343
|
hidden?: boolean | undefined;
|
|
330
344
|
root?: string | undefined;
|
|
331
|
-
}
|
|
345
|
+
}>]>, "many">;
|
|
346
|
+
}, "strip", z.ZodTypeAny, {
|
|
347
|
+
groups: ({
|
|
332
348
|
openapi: (string | string[] | {
|
|
333
349
|
source: string;
|
|
334
350
|
directory?: string | undefined;
|
|
@@ -336,19 +352,25 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
336
352
|
source: string;
|
|
337
353
|
directory?: string | undefined;
|
|
338
354
|
} | undefined);
|
|
355
|
+
group: string;
|
|
356
|
+
icon?: string | {
|
|
357
|
+
name: string;
|
|
358
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
359
|
+
} | undefined;
|
|
360
|
+
hidden?: boolean | undefined;
|
|
361
|
+
root?: string | undefined;
|
|
339
362
|
} | {
|
|
340
|
-
pages: any[];
|
|
341
|
-
}))[];
|
|
342
|
-
}, {
|
|
343
|
-
groups: ({
|
|
344
363
|
group: string;
|
|
364
|
+
pages: any[];
|
|
345
365
|
icon?: string | {
|
|
346
366
|
name: string;
|
|
347
367
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
348
368
|
} | undefined;
|
|
349
369
|
hidden?: boolean | undefined;
|
|
350
370
|
root?: string | undefined;
|
|
351
|
-
}
|
|
371
|
+
})[];
|
|
372
|
+
}, {
|
|
373
|
+
groups: ({
|
|
352
374
|
openapi: (string | string[] | {
|
|
353
375
|
source: string;
|
|
354
376
|
directory?: string | undefined;
|
|
@@ -356,9 +378,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
356
378
|
source: string;
|
|
357
379
|
directory?: string | undefined;
|
|
358
380
|
} | undefined);
|
|
381
|
+
group: string;
|
|
382
|
+
icon?: string | {
|
|
383
|
+
name: string;
|
|
384
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
385
|
+
} | undefined;
|
|
386
|
+
hidden?: boolean | undefined;
|
|
387
|
+
root?: string | undefined;
|
|
359
388
|
} | {
|
|
389
|
+
group: string;
|
|
360
390
|
pages: any[];
|
|
361
|
-
|
|
391
|
+
icon?: string | {
|
|
392
|
+
name: string;
|
|
393
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
394
|
+
} | undefined;
|
|
395
|
+
hidden?: boolean | undefined;
|
|
396
|
+
root?: string | undefined;
|
|
397
|
+
})[];
|
|
362
398
|
}>, z.ZodObject<{
|
|
363
399
|
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
364
400
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1184,14 +1220,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1184
1220
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
1185
1221
|
} | {
|
|
1186
1222
|
groups: ({
|
|
1187
|
-
group: string;
|
|
1188
|
-
icon?: string | {
|
|
1189
|
-
name: string;
|
|
1190
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1191
|
-
} | undefined;
|
|
1192
|
-
hidden?: boolean | undefined;
|
|
1193
|
-
root?: string | undefined;
|
|
1194
|
-
} & ({
|
|
1195
1223
|
openapi: (string | string[] | {
|
|
1196
1224
|
source: string;
|
|
1197
1225
|
directory?: string | undefined;
|
|
@@ -1199,9 +1227,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1199
1227
|
source: string;
|
|
1200
1228
|
directory?: string | undefined;
|
|
1201
1229
|
} | undefined);
|
|
1230
|
+
group: string;
|
|
1231
|
+
icon?: string | {
|
|
1232
|
+
name: string;
|
|
1233
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1234
|
+
} | undefined;
|
|
1235
|
+
hidden?: boolean | undefined;
|
|
1236
|
+
root?: string | undefined;
|
|
1202
1237
|
} | {
|
|
1238
|
+
group: string;
|
|
1203
1239
|
pages: any[];
|
|
1204
|
-
|
|
1240
|
+
icon?: string | {
|
|
1241
|
+
name: string;
|
|
1242
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1243
|
+
} | undefined;
|
|
1244
|
+
hidden?: boolean | undefined;
|
|
1245
|
+
root?: string | undefined;
|
|
1246
|
+
})[];
|
|
1205
1247
|
} | {
|
|
1206
1248
|
pages: any[];
|
|
1207
1249
|
}) & {
|
|
@@ -1265,14 +1307,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1265
1307
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
1266
1308
|
} | {
|
|
1267
1309
|
groups: ({
|
|
1268
|
-
group: string;
|
|
1269
|
-
icon?: string | {
|
|
1270
|
-
name: string;
|
|
1271
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1272
|
-
} | undefined;
|
|
1273
|
-
hidden?: boolean | undefined;
|
|
1274
|
-
root?: string | undefined;
|
|
1275
|
-
} & ({
|
|
1276
1310
|
openapi: (string | string[] | {
|
|
1277
1311
|
source: string;
|
|
1278
1312
|
directory?: string | undefined;
|
|
@@ -1280,9 +1314,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1280
1314
|
source: string;
|
|
1281
1315
|
directory?: string | undefined;
|
|
1282
1316
|
} | undefined);
|
|
1317
|
+
group: string;
|
|
1318
|
+
icon?: string | {
|
|
1319
|
+
name: string;
|
|
1320
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1321
|
+
} | undefined;
|
|
1322
|
+
hidden?: boolean | undefined;
|
|
1323
|
+
root?: string | undefined;
|
|
1283
1324
|
} | {
|
|
1325
|
+
group: string;
|
|
1284
1326
|
pages: any[];
|
|
1285
|
-
|
|
1327
|
+
icon?: string | {
|
|
1328
|
+
name: string;
|
|
1329
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1330
|
+
} | undefined;
|
|
1331
|
+
hidden?: boolean | undefined;
|
|
1332
|
+
root?: string | undefined;
|
|
1333
|
+
})[];
|
|
1286
1334
|
} | {
|
|
1287
1335
|
pages: any[];
|
|
1288
1336
|
}) & {
|
|
@@ -1516,14 +1564,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1516
1564
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
1517
1565
|
} | {
|
|
1518
1566
|
groups: ({
|
|
1519
|
-
group: string;
|
|
1520
|
-
icon?: string | {
|
|
1521
|
-
name: string;
|
|
1522
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1523
|
-
} | undefined;
|
|
1524
|
-
hidden?: boolean | undefined;
|
|
1525
|
-
root?: string | undefined;
|
|
1526
|
-
} & ({
|
|
1527
1567
|
openapi: (string | string[] | {
|
|
1528
1568
|
source: string;
|
|
1529
1569
|
directory?: string | undefined;
|
|
@@ -1531,9 +1571,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1531
1571
|
source: string;
|
|
1532
1572
|
directory?: string | undefined;
|
|
1533
1573
|
} | undefined);
|
|
1574
|
+
group: string;
|
|
1575
|
+
icon?: string | {
|
|
1576
|
+
name: string;
|
|
1577
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1578
|
+
} | undefined;
|
|
1579
|
+
hidden?: boolean | undefined;
|
|
1580
|
+
root?: string | undefined;
|
|
1534
1581
|
} | {
|
|
1582
|
+
group: string;
|
|
1535
1583
|
pages: any[];
|
|
1536
|
-
|
|
1584
|
+
icon?: string | {
|
|
1585
|
+
name: string;
|
|
1586
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1587
|
+
} | undefined;
|
|
1588
|
+
hidden?: boolean | undefined;
|
|
1589
|
+
root?: string | undefined;
|
|
1590
|
+
})[];
|
|
1537
1591
|
} | {
|
|
1538
1592
|
pages: any[];
|
|
1539
1593
|
}) & {
|
|
@@ -1597,14 +1651,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1597
1651
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
1598
1652
|
} | {
|
|
1599
1653
|
groups: ({
|
|
1600
|
-
group: string;
|
|
1601
|
-
icon?: string | {
|
|
1602
|
-
name: string;
|
|
1603
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1604
|
-
} | undefined;
|
|
1605
|
-
hidden?: boolean | undefined;
|
|
1606
|
-
root?: string | undefined;
|
|
1607
|
-
} & ({
|
|
1608
1654
|
openapi: (string | string[] | {
|
|
1609
1655
|
source: string;
|
|
1610
1656
|
directory?: string | undefined;
|
|
@@ -1612,9 +1658,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1612
1658
|
source: string;
|
|
1613
1659
|
directory?: string | undefined;
|
|
1614
1660
|
} | undefined);
|
|
1661
|
+
group: string;
|
|
1662
|
+
icon?: string | {
|
|
1663
|
+
name: string;
|
|
1664
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1665
|
+
} | undefined;
|
|
1666
|
+
hidden?: boolean | undefined;
|
|
1667
|
+
root?: string | undefined;
|
|
1615
1668
|
} | {
|
|
1669
|
+
group: string;
|
|
1616
1670
|
pages: any[];
|
|
1617
|
-
|
|
1671
|
+
icon?: string | {
|
|
1672
|
+
name: string;
|
|
1673
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1674
|
+
} | undefined;
|
|
1675
|
+
hidden?: boolean | undefined;
|
|
1676
|
+
root?: string | undefined;
|
|
1677
|
+
})[];
|
|
1618
1678
|
} | {
|
|
1619
1679
|
pages: any[];
|
|
1620
1680
|
}) & {
|
|
@@ -2084,8 +2144,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2084
2144
|
}, {
|
|
2085
2145
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
2086
2146
|
}>, z.ZodObject<{
|
|
2087
|
-
groups: z.ZodArray<z.
|
|
2088
|
-
group: z.ZodString;
|
|
2147
|
+
groups: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
2089
2148
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
2090
2149
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
2091
2150
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -2096,25 +2155,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2096
2155
|
name: string;
|
|
2097
2156
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2098
2157
|
}>]>>;
|
|
2158
|
+
group: z.ZodString;
|
|
2099
2159
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2100
2160
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2101
|
-
}, "strip", z.ZodTypeAny, {
|
|
2102
|
-
group: string;
|
|
2103
|
-
icon?: string | {
|
|
2104
|
-
name: string;
|
|
2105
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2106
|
-
} | undefined;
|
|
2107
|
-
hidden?: boolean | undefined;
|
|
2108
|
-
root?: string | undefined;
|
|
2109
|
-
}, {
|
|
2110
|
-
group: string;
|
|
2111
|
-
icon?: string | {
|
|
2112
|
-
name: string;
|
|
2113
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2114
|
-
} | undefined;
|
|
2115
|
-
hidden?: boolean | undefined;
|
|
2116
|
-
root?: string | undefined;
|
|
2117
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
2118
2161
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
2119
2162
|
source: z.ZodEffects<z.ZodString, string, string>;
|
|
2120
2163
|
directory: z.ZodOptional<z.ZodString>;
|
|
@@ -2133,6 +2176,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2133
2176
|
source: string;
|
|
2134
2177
|
directory?: string | undefined;
|
|
2135
2178
|
} | undefined);
|
|
2179
|
+
group: string;
|
|
2180
|
+
icon?: string | {
|
|
2181
|
+
name: string;
|
|
2182
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2183
|
+
} | undefined;
|
|
2184
|
+
hidden?: boolean | undefined;
|
|
2185
|
+
root?: string | undefined;
|
|
2136
2186
|
}, {
|
|
2137
2187
|
openapi: (string | string[] | {
|
|
2138
2188
|
source: string;
|
|
@@ -2141,23 +2191,49 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2141
2191
|
source: string;
|
|
2142
2192
|
directory?: string | undefined;
|
|
2143
2193
|
} | undefined);
|
|
2144
|
-
|
|
2145
|
-
|
|
2194
|
+
group: string;
|
|
2195
|
+
icon?: string | {
|
|
2196
|
+
name: string;
|
|
2197
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2198
|
+
} | undefined;
|
|
2199
|
+
hidden?: boolean | undefined;
|
|
2200
|
+
root?: string | undefined;
|
|
2201
|
+
}>, z.ZodObject<{
|
|
2202
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
2203
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
2204
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
2205
|
+
}, "strip", z.ZodTypeAny, {
|
|
2206
|
+
name: string;
|
|
2207
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2208
|
+
}, {
|
|
2209
|
+
name: string;
|
|
2210
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2211
|
+
}>]>>;
|
|
2212
|
+
group: z.ZodString;
|
|
2213
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2214
|
+
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2215
|
+
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
2146
2216
|
}, "strip", z.ZodTypeAny, {
|
|
2217
|
+
group: string;
|
|
2147
2218
|
pages: any[];
|
|
2219
|
+
icon?: string | {
|
|
2220
|
+
name: string;
|
|
2221
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2222
|
+
} | undefined;
|
|
2223
|
+
hidden?: boolean | undefined;
|
|
2224
|
+
root?: string | undefined;
|
|
2148
2225
|
}, {
|
|
2149
|
-
pages: any[];
|
|
2150
|
-
}>>]>>, "many">;
|
|
2151
|
-
}, "strip", z.ZodTypeAny, {
|
|
2152
|
-
groups: ({
|
|
2153
2226
|
group: string;
|
|
2227
|
+
pages: any[];
|
|
2154
2228
|
icon?: string | {
|
|
2155
2229
|
name: string;
|
|
2156
2230
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2157
2231
|
} | undefined;
|
|
2158
2232
|
hidden?: boolean | undefined;
|
|
2159
2233
|
root?: string | undefined;
|
|
2160
|
-
}
|
|
2234
|
+
}>]>, "many">;
|
|
2235
|
+
}, "strip", z.ZodTypeAny, {
|
|
2236
|
+
groups: ({
|
|
2161
2237
|
openapi: (string | string[] | {
|
|
2162
2238
|
source: string;
|
|
2163
2239
|
directory?: string | undefined;
|
|
@@ -2165,19 +2241,25 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2165
2241
|
source: string;
|
|
2166
2242
|
directory?: string | undefined;
|
|
2167
2243
|
} | undefined);
|
|
2244
|
+
group: string;
|
|
2245
|
+
icon?: string | {
|
|
2246
|
+
name: string;
|
|
2247
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2248
|
+
} | undefined;
|
|
2249
|
+
hidden?: boolean | undefined;
|
|
2250
|
+
root?: string | undefined;
|
|
2168
2251
|
} | {
|
|
2169
|
-
pages: any[];
|
|
2170
|
-
}))[];
|
|
2171
|
-
}, {
|
|
2172
|
-
groups: ({
|
|
2173
2252
|
group: string;
|
|
2253
|
+
pages: any[];
|
|
2174
2254
|
icon?: string | {
|
|
2175
2255
|
name: string;
|
|
2176
2256
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2177
2257
|
} | undefined;
|
|
2178
2258
|
hidden?: boolean | undefined;
|
|
2179
2259
|
root?: string | undefined;
|
|
2180
|
-
}
|
|
2260
|
+
})[];
|
|
2261
|
+
}, {
|
|
2262
|
+
groups: ({
|
|
2181
2263
|
openapi: (string | string[] | {
|
|
2182
2264
|
source: string;
|
|
2183
2265
|
directory?: string | undefined;
|
|
@@ -2185,9 +2267,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2185
2267
|
source: string;
|
|
2186
2268
|
directory?: string | undefined;
|
|
2187
2269
|
} | undefined);
|
|
2270
|
+
group: string;
|
|
2271
|
+
icon?: string | {
|
|
2272
|
+
name: string;
|
|
2273
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2274
|
+
} | undefined;
|
|
2275
|
+
hidden?: boolean | undefined;
|
|
2276
|
+
root?: string | undefined;
|
|
2188
2277
|
} | {
|
|
2278
|
+
group: string;
|
|
2189
2279
|
pages: any[];
|
|
2190
|
-
|
|
2280
|
+
icon?: string | {
|
|
2281
|
+
name: string;
|
|
2282
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2283
|
+
} | undefined;
|
|
2284
|
+
hidden?: boolean | undefined;
|
|
2285
|
+
root?: string | undefined;
|
|
2286
|
+
})[];
|
|
2191
2287
|
}>, z.ZodObject<{
|
|
2192
2288
|
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
2193
2289
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3013,14 +3109,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3013
3109
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
3014
3110
|
} | {
|
|
3015
3111
|
groups: ({
|
|
3016
|
-
group: string;
|
|
3017
|
-
icon?: string | {
|
|
3018
|
-
name: string;
|
|
3019
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3020
|
-
} | undefined;
|
|
3021
|
-
hidden?: boolean | undefined;
|
|
3022
|
-
root?: string | undefined;
|
|
3023
|
-
} & ({
|
|
3024
3112
|
openapi: (string | string[] | {
|
|
3025
3113
|
source: string;
|
|
3026
3114
|
directory?: string | undefined;
|
|
@@ -3028,9 +3116,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3028
3116
|
source: string;
|
|
3029
3117
|
directory?: string | undefined;
|
|
3030
3118
|
} | undefined);
|
|
3119
|
+
group: string;
|
|
3120
|
+
icon?: string | {
|
|
3121
|
+
name: string;
|
|
3122
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3123
|
+
} | undefined;
|
|
3124
|
+
hidden?: boolean | undefined;
|
|
3125
|
+
root?: string | undefined;
|
|
3031
3126
|
} | {
|
|
3127
|
+
group: string;
|
|
3032
3128
|
pages: any[];
|
|
3033
|
-
|
|
3129
|
+
icon?: string | {
|
|
3130
|
+
name: string;
|
|
3131
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3132
|
+
} | undefined;
|
|
3133
|
+
hidden?: boolean | undefined;
|
|
3134
|
+
root?: string | undefined;
|
|
3135
|
+
})[];
|
|
3034
3136
|
} | {
|
|
3035
3137
|
pages: any[];
|
|
3036
3138
|
}) & {
|
|
@@ -3094,14 +3196,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3094
3196
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
3095
3197
|
} | {
|
|
3096
3198
|
groups: ({
|
|
3097
|
-
group: string;
|
|
3098
|
-
icon?: string | {
|
|
3099
|
-
name: string;
|
|
3100
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3101
|
-
} | undefined;
|
|
3102
|
-
hidden?: boolean | undefined;
|
|
3103
|
-
root?: string | undefined;
|
|
3104
|
-
} & ({
|
|
3105
3199
|
openapi: (string | string[] | {
|
|
3106
3200
|
source: string;
|
|
3107
3201
|
directory?: string | undefined;
|
|
@@ -3109,9 +3203,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3109
3203
|
source: string;
|
|
3110
3204
|
directory?: string | undefined;
|
|
3111
3205
|
} | undefined);
|
|
3206
|
+
group: string;
|
|
3207
|
+
icon?: string | {
|
|
3208
|
+
name: string;
|
|
3209
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3210
|
+
} | undefined;
|
|
3211
|
+
hidden?: boolean | undefined;
|
|
3212
|
+
root?: string | undefined;
|
|
3112
3213
|
} | {
|
|
3214
|
+
group: string;
|
|
3113
3215
|
pages: any[];
|
|
3114
|
-
|
|
3216
|
+
icon?: string | {
|
|
3217
|
+
name: string;
|
|
3218
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3219
|
+
} | undefined;
|
|
3220
|
+
hidden?: boolean | undefined;
|
|
3221
|
+
root?: string | undefined;
|
|
3222
|
+
})[];
|
|
3115
3223
|
} | {
|
|
3116
3224
|
pages: any[];
|
|
3117
3225
|
}) & {
|
|
@@ -3345,14 +3453,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3345
3453
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
3346
3454
|
} | {
|
|
3347
3455
|
groups: ({
|
|
3348
|
-
group: string;
|
|
3349
|
-
icon?: string | {
|
|
3350
|
-
name: string;
|
|
3351
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3352
|
-
} | undefined;
|
|
3353
|
-
hidden?: boolean | undefined;
|
|
3354
|
-
root?: string | undefined;
|
|
3355
|
-
} & ({
|
|
3356
3456
|
openapi: (string | string[] | {
|
|
3357
3457
|
source: string;
|
|
3358
3458
|
directory?: string | undefined;
|
|
@@ -3360,9 +3460,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3360
3460
|
source: string;
|
|
3361
3461
|
directory?: string | undefined;
|
|
3362
3462
|
} | undefined);
|
|
3463
|
+
group: string;
|
|
3464
|
+
icon?: string | {
|
|
3465
|
+
name: string;
|
|
3466
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3467
|
+
} | undefined;
|
|
3468
|
+
hidden?: boolean | undefined;
|
|
3469
|
+
root?: string | undefined;
|
|
3363
3470
|
} | {
|
|
3471
|
+
group: string;
|
|
3364
3472
|
pages: any[];
|
|
3365
|
-
|
|
3473
|
+
icon?: string | {
|
|
3474
|
+
name: string;
|
|
3475
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3476
|
+
} | undefined;
|
|
3477
|
+
hidden?: boolean | undefined;
|
|
3478
|
+
root?: string | undefined;
|
|
3479
|
+
})[];
|
|
3366
3480
|
} | {
|
|
3367
3481
|
pages: any[];
|
|
3368
3482
|
}) & {
|
|
@@ -3426,14 +3540,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3426
3540
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
3427
3541
|
} | {
|
|
3428
3542
|
groups: ({
|
|
3429
|
-
group: string;
|
|
3430
|
-
icon?: string | {
|
|
3431
|
-
name: string;
|
|
3432
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3433
|
-
} | undefined;
|
|
3434
|
-
hidden?: boolean | undefined;
|
|
3435
|
-
root?: string | undefined;
|
|
3436
|
-
} & ({
|
|
3437
3543
|
openapi: (string | string[] | {
|
|
3438
3544
|
source: string;
|
|
3439
3545
|
directory?: string | undefined;
|
|
@@ -3441,9 +3547,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3441
3547
|
source: string;
|
|
3442
3548
|
directory?: string | undefined;
|
|
3443
3549
|
} | undefined);
|
|
3550
|
+
group: string;
|
|
3551
|
+
icon?: string | {
|
|
3552
|
+
name: string;
|
|
3553
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3554
|
+
} | undefined;
|
|
3555
|
+
hidden?: boolean | undefined;
|
|
3556
|
+
root?: string | undefined;
|
|
3444
3557
|
} | {
|
|
3558
|
+
group: string;
|
|
3445
3559
|
pages: any[];
|
|
3446
|
-
|
|
3560
|
+
icon?: string | {
|
|
3561
|
+
name: string;
|
|
3562
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3563
|
+
} | undefined;
|
|
3564
|
+
hidden?: boolean | undefined;
|
|
3565
|
+
root?: string | undefined;
|
|
3566
|
+
})[];
|
|
3447
3567
|
} | {
|
|
3448
3568
|
pages: any[];
|
|
3449
3569
|
}) & {
|
|
@@ -3913,8 +4033,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3913
4033
|
}, {
|
|
3914
4034
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
3915
4035
|
}>, z.ZodObject<{
|
|
3916
|
-
groups: z.ZodArray<z.
|
|
3917
|
-
group: z.ZodString;
|
|
4036
|
+
groups: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
3918
4037
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
3919
4038
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
3920
4039
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -3925,25 +4044,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3925
4044
|
name: string;
|
|
3926
4045
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3927
4046
|
}>]>>;
|
|
4047
|
+
group: z.ZodString;
|
|
3928
4048
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3929
4049
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
3930
|
-
}, "strip", z.ZodTypeAny, {
|
|
3931
|
-
group: string;
|
|
3932
|
-
icon?: string | {
|
|
3933
|
-
name: string;
|
|
3934
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3935
|
-
} | undefined;
|
|
3936
|
-
hidden?: boolean | undefined;
|
|
3937
|
-
root?: string | undefined;
|
|
3938
|
-
}, {
|
|
3939
|
-
group: string;
|
|
3940
|
-
icon?: string | {
|
|
3941
|
-
name: string;
|
|
3942
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3943
|
-
} | undefined;
|
|
3944
|
-
hidden?: boolean | undefined;
|
|
3945
|
-
root?: string | undefined;
|
|
3946
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
3947
4050
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
3948
4051
|
source: z.ZodEffects<z.ZodString, string, string>;
|
|
3949
4052
|
directory: z.ZodOptional<z.ZodString>;
|
|
@@ -3962,6 +4065,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3962
4065
|
source: string;
|
|
3963
4066
|
directory?: string | undefined;
|
|
3964
4067
|
} | undefined);
|
|
4068
|
+
group: string;
|
|
4069
|
+
icon?: string | {
|
|
4070
|
+
name: string;
|
|
4071
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4072
|
+
} | undefined;
|
|
4073
|
+
hidden?: boolean | undefined;
|
|
4074
|
+
root?: string | undefined;
|
|
3965
4075
|
}, {
|
|
3966
4076
|
openapi: (string | string[] | {
|
|
3967
4077
|
source: string;
|
|
@@ -3970,23 +4080,49 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3970
4080
|
source: string;
|
|
3971
4081
|
directory?: string | undefined;
|
|
3972
4082
|
} | undefined);
|
|
3973
|
-
|
|
3974
|
-
|
|
4083
|
+
group: string;
|
|
4084
|
+
icon?: string | {
|
|
4085
|
+
name: string;
|
|
4086
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4087
|
+
} | undefined;
|
|
4088
|
+
hidden?: boolean | undefined;
|
|
4089
|
+
root?: string | undefined;
|
|
4090
|
+
}>, z.ZodObject<{
|
|
4091
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
4092
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
4093
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
4094
|
+
}, "strip", z.ZodTypeAny, {
|
|
4095
|
+
name: string;
|
|
4096
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4097
|
+
}, {
|
|
4098
|
+
name: string;
|
|
4099
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4100
|
+
}>]>>;
|
|
4101
|
+
group: z.ZodString;
|
|
4102
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
4103
|
+
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4104
|
+
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
3975
4105
|
}, "strip", z.ZodTypeAny, {
|
|
4106
|
+
group: string;
|
|
3976
4107
|
pages: any[];
|
|
4108
|
+
icon?: string | {
|
|
4109
|
+
name: string;
|
|
4110
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4111
|
+
} | undefined;
|
|
4112
|
+
hidden?: boolean | undefined;
|
|
4113
|
+
root?: string | undefined;
|
|
3977
4114
|
}, {
|
|
3978
|
-
pages: any[];
|
|
3979
|
-
}>>]>>, "many">;
|
|
3980
|
-
}, "strip", z.ZodTypeAny, {
|
|
3981
|
-
groups: ({
|
|
3982
4115
|
group: string;
|
|
4116
|
+
pages: any[];
|
|
3983
4117
|
icon?: string | {
|
|
3984
4118
|
name: string;
|
|
3985
4119
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3986
4120
|
} | undefined;
|
|
3987
4121
|
hidden?: boolean | undefined;
|
|
3988
4122
|
root?: string | undefined;
|
|
3989
|
-
}
|
|
4123
|
+
}>]>, "many">;
|
|
4124
|
+
}, "strip", z.ZodTypeAny, {
|
|
4125
|
+
groups: ({
|
|
3990
4126
|
openapi: (string | string[] | {
|
|
3991
4127
|
source: string;
|
|
3992
4128
|
directory?: string | undefined;
|
|
@@ -3994,19 +4130,25 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3994
4130
|
source: string;
|
|
3995
4131
|
directory?: string | undefined;
|
|
3996
4132
|
} | undefined);
|
|
4133
|
+
group: string;
|
|
4134
|
+
icon?: string | {
|
|
4135
|
+
name: string;
|
|
4136
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4137
|
+
} | undefined;
|
|
4138
|
+
hidden?: boolean | undefined;
|
|
4139
|
+
root?: string | undefined;
|
|
3997
4140
|
} | {
|
|
3998
|
-
pages: any[];
|
|
3999
|
-
}))[];
|
|
4000
|
-
}, {
|
|
4001
|
-
groups: ({
|
|
4002
4141
|
group: string;
|
|
4142
|
+
pages: any[];
|
|
4003
4143
|
icon?: string | {
|
|
4004
4144
|
name: string;
|
|
4005
4145
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4006
4146
|
} | undefined;
|
|
4007
4147
|
hidden?: boolean | undefined;
|
|
4008
4148
|
root?: string | undefined;
|
|
4009
|
-
}
|
|
4149
|
+
})[];
|
|
4150
|
+
}, {
|
|
4151
|
+
groups: ({
|
|
4010
4152
|
openapi: (string | string[] | {
|
|
4011
4153
|
source: string;
|
|
4012
4154
|
directory?: string | undefined;
|
|
@@ -4014,9 +4156,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4014
4156
|
source: string;
|
|
4015
4157
|
directory?: string | undefined;
|
|
4016
4158
|
} | undefined);
|
|
4159
|
+
group: string;
|
|
4160
|
+
icon?: string | {
|
|
4161
|
+
name: string;
|
|
4162
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4163
|
+
} | undefined;
|
|
4164
|
+
hidden?: boolean | undefined;
|
|
4165
|
+
root?: string | undefined;
|
|
4017
4166
|
} | {
|
|
4167
|
+
group: string;
|
|
4018
4168
|
pages: any[];
|
|
4019
|
-
|
|
4169
|
+
icon?: string | {
|
|
4170
|
+
name: string;
|
|
4171
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4172
|
+
} | undefined;
|
|
4173
|
+
hidden?: boolean | undefined;
|
|
4174
|
+
root?: string | undefined;
|
|
4175
|
+
})[];
|
|
4020
4176
|
}>, z.ZodObject<{
|
|
4021
4177
|
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
4022
4178
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4842,14 +4998,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4842
4998
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
4843
4999
|
} | {
|
|
4844
5000
|
groups: ({
|
|
4845
|
-
group: string;
|
|
4846
|
-
icon?: string | {
|
|
4847
|
-
name: string;
|
|
4848
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4849
|
-
} | undefined;
|
|
4850
|
-
hidden?: boolean | undefined;
|
|
4851
|
-
root?: string | undefined;
|
|
4852
|
-
} & ({
|
|
4853
5001
|
openapi: (string | string[] | {
|
|
4854
5002
|
source: string;
|
|
4855
5003
|
directory?: string | undefined;
|
|
@@ -4857,9 +5005,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4857
5005
|
source: string;
|
|
4858
5006
|
directory?: string | undefined;
|
|
4859
5007
|
} | undefined);
|
|
5008
|
+
group: string;
|
|
5009
|
+
icon?: string | {
|
|
5010
|
+
name: string;
|
|
5011
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5012
|
+
} | undefined;
|
|
5013
|
+
hidden?: boolean | undefined;
|
|
5014
|
+
root?: string | undefined;
|
|
4860
5015
|
} | {
|
|
5016
|
+
group: string;
|
|
4861
5017
|
pages: any[];
|
|
4862
|
-
|
|
5018
|
+
icon?: string | {
|
|
5019
|
+
name: string;
|
|
5020
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5021
|
+
} | undefined;
|
|
5022
|
+
hidden?: boolean | undefined;
|
|
5023
|
+
root?: string | undefined;
|
|
5024
|
+
})[];
|
|
4863
5025
|
} | {
|
|
4864
5026
|
pages: any[];
|
|
4865
5027
|
}) & {
|
|
@@ -4923,14 +5085,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4923
5085
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
4924
5086
|
} | {
|
|
4925
5087
|
groups: ({
|
|
4926
|
-
group: string;
|
|
4927
|
-
icon?: string | {
|
|
4928
|
-
name: string;
|
|
4929
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4930
|
-
} | undefined;
|
|
4931
|
-
hidden?: boolean | undefined;
|
|
4932
|
-
root?: string | undefined;
|
|
4933
|
-
} & ({
|
|
4934
5088
|
openapi: (string | string[] | {
|
|
4935
5089
|
source: string;
|
|
4936
5090
|
directory?: string | undefined;
|
|
@@ -4938,9 +5092,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4938
5092
|
source: string;
|
|
4939
5093
|
directory?: string | undefined;
|
|
4940
5094
|
} | undefined);
|
|
5095
|
+
group: string;
|
|
5096
|
+
icon?: string | {
|
|
5097
|
+
name: string;
|
|
5098
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5099
|
+
} | undefined;
|
|
5100
|
+
hidden?: boolean | undefined;
|
|
5101
|
+
root?: string | undefined;
|
|
4941
5102
|
} | {
|
|
5103
|
+
group: string;
|
|
4942
5104
|
pages: any[];
|
|
4943
|
-
|
|
5105
|
+
icon?: string | {
|
|
5106
|
+
name: string;
|
|
5107
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5108
|
+
} | undefined;
|
|
5109
|
+
hidden?: boolean | undefined;
|
|
5110
|
+
root?: string | undefined;
|
|
5111
|
+
})[];
|
|
4944
5112
|
} | {
|
|
4945
5113
|
pages: any[];
|
|
4946
5114
|
}) & {
|
|
@@ -5174,14 +5342,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5174
5342
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
5175
5343
|
} | {
|
|
5176
5344
|
groups: ({
|
|
5177
|
-
group: string;
|
|
5178
|
-
icon?: string | {
|
|
5179
|
-
name: string;
|
|
5180
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5181
|
-
} | undefined;
|
|
5182
|
-
hidden?: boolean | undefined;
|
|
5183
|
-
root?: string | undefined;
|
|
5184
|
-
} & ({
|
|
5185
5345
|
openapi: (string | string[] | {
|
|
5186
5346
|
source: string;
|
|
5187
5347
|
directory?: string | undefined;
|
|
@@ -5189,9 +5349,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5189
5349
|
source: string;
|
|
5190
5350
|
directory?: string | undefined;
|
|
5191
5351
|
} | undefined);
|
|
5352
|
+
group: string;
|
|
5353
|
+
icon?: string | {
|
|
5354
|
+
name: string;
|
|
5355
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5356
|
+
} | undefined;
|
|
5357
|
+
hidden?: boolean | undefined;
|
|
5358
|
+
root?: string | undefined;
|
|
5192
5359
|
} | {
|
|
5360
|
+
group: string;
|
|
5193
5361
|
pages: any[];
|
|
5194
|
-
|
|
5362
|
+
icon?: string | {
|
|
5363
|
+
name: string;
|
|
5364
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5365
|
+
} | undefined;
|
|
5366
|
+
hidden?: boolean | undefined;
|
|
5367
|
+
root?: string | undefined;
|
|
5368
|
+
})[];
|
|
5195
5369
|
} | {
|
|
5196
5370
|
pages: any[];
|
|
5197
5371
|
}) & {
|
|
@@ -5255,14 +5429,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5255
5429
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
5256
5430
|
} | {
|
|
5257
5431
|
groups: ({
|
|
5258
|
-
group: string;
|
|
5259
|
-
icon?: string | {
|
|
5260
|
-
name: string;
|
|
5261
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5262
|
-
} | undefined;
|
|
5263
|
-
hidden?: boolean | undefined;
|
|
5264
|
-
root?: string | undefined;
|
|
5265
|
-
} & ({
|
|
5266
5432
|
openapi: (string | string[] | {
|
|
5267
5433
|
source: string;
|
|
5268
5434
|
directory?: string | undefined;
|
|
@@ -5270,9 +5436,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5270
5436
|
source: string;
|
|
5271
5437
|
directory?: string | undefined;
|
|
5272
5438
|
} | undefined);
|
|
5439
|
+
group: string;
|
|
5440
|
+
icon?: string | {
|
|
5441
|
+
name: string;
|
|
5442
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5443
|
+
} | undefined;
|
|
5444
|
+
hidden?: boolean | undefined;
|
|
5445
|
+
root?: string | undefined;
|
|
5273
5446
|
} | {
|
|
5447
|
+
group: string;
|
|
5274
5448
|
pages: any[];
|
|
5275
|
-
|
|
5449
|
+
icon?: string | {
|
|
5450
|
+
name: string;
|
|
5451
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5452
|
+
} | undefined;
|
|
5453
|
+
hidden?: boolean | undefined;
|
|
5454
|
+
root?: string | undefined;
|
|
5455
|
+
})[];
|
|
5276
5456
|
} | {
|
|
5277
5457
|
pages: any[];
|
|
5278
5458
|
}) & {
|
|
@@ -5742,8 +5922,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5742
5922
|
}, {
|
|
5743
5923
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
5744
5924
|
}>, z.ZodObject<{
|
|
5745
|
-
groups: z.ZodArray<z.
|
|
5746
|
-
group: z.ZodString;
|
|
5925
|
+
groups: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
5747
5926
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
5748
5927
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
5749
5928
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -5754,25 +5933,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5754
5933
|
name: string;
|
|
5755
5934
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5756
5935
|
}>]>>;
|
|
5936
|
+
group: z.ZodString;
|
|
5757
5937
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
5758
5938
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
5759
|
-
}, "strip", z.ZodTypeAny, {
|
|
5760
|
-
group: string;
|
|
5761
|
-
icon?: string | {
|
|
5762
|
-
name: string;
|
|
5763
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5764
|
-
} | undefined;
|
|
5765
|
-
hidden?: boolean | undefined;
|
|
5766
|
-
root?: string | undefined;
|
|
5767
|
-
}, {
|
|
5768
|
-
group: string;
|
|
5769
|
-
icon?: string | {
|
|
5770
|
-
name: string;
|
|
5771
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5772
|
-
} | undefined;
|
|
5773
|
-
hidden?: boolean | undefined;
|
|
5774
|
-
root?: string | undefined;
|
|
5775
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
5776
5939
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
5777
5940
|
source: z.ZodEffects<z.ZodString, string, string>;
|
|
5778
5941
|
directory: z.ZodOptional<z.ZodString>;
|
|
@@ -5791,6 +5954,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5791
5954
|
source: string;
|
|
5792
5955
|
directory?: string | undefined;
|
|
5793
5956
|
} | undefined);
|
|
5957
|
+
group: string;
|
|
5958
|
+
icon?: string | {
|
|
5959
|
+
name: string;
|
|
5960
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5961
|
+
} | undefined;
|
|
5962
|
+
hidden?: boolean | undefined;
|
|
5963
|
+
root?: string | undefined;
|
|
5794
5964
|
}, {
|
|
5795
5965
|
openapi: (string | string[] | {
|
|
5796
5966
|
source: string;
|
|
@@ -5799,23 +5969,49 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5799
5969
|
source: string;
|
|
5800
5970
|
directory?: string | undefined;
|
|
5801
5971
|
} | undefined);
|
|
5802
|
-
|
|
5803
|
-
|
|
5972
|
+
group: string;
|
|
5973
|
+
icon?: string | {
|
|
5974
|
+
name: string;
|
|
5975
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5976
|
+
} | undefined;
|
|
5977
|
+
hidden?: boolean | undefined;
|
|
5978
|
+
root?: string | undefined;
|
|
5979
|
+
}>, z.ZodObject<{
|
|
5980
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
5981
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
5982
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
5983
|
+
}, "strip", z.ZodTypeAny, {
|
|
5984
|
+
name: string;
|
|
5985
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5986
|
+
}, {
|
|
5987
|
+
name: string;
|
|
5988
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5989
|
+
}>]>>;
|
|
5990
|
+
group: z.ZodString;
|
|
5991
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
5992
|
+
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
5993
|
+
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
5804
5994
|
}, "strip", z.ZodTypeAny, {
|
|
5995
|
+
group: string;
|
|
5805
5996
|
pages: any[];
|
|
5997
|
+
icon?: string | {
|
|
5998
|
+
name: string;
|
|
5999
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6000
|
+
} | undefined;
|
|
6001
|
+
hidden?: boolean | undefined;
|
|
6002
|
+
root?: string | undefined;
|
|
5806
6003
|
}, {
|
|
5807
|
-
pages: any[];
|
|
5808
|
-
}>>]>>, "many">;
|
|
5809
|
-
}, "strip", z.ZodTypeAny, {
|
|
5810
|
-
groups: ({
|
|
5811
6004
|
group: string;
|
|
6005
|
+
pages: any[];
|
|
5812
6006
|
icon?: string | {
|
|
5813
6007
|
name: string;
|
|
5814
6008
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5815
6009
|
} | undefined;
|
|
5816
6010
|
hidden?: boolean | undefined;
|
|
5817
6011
|
root?: string | undefined;
|
|
5818
|
-
}
|
|
6012
|
+
}>]>, "many">;
|
|
6013
|
+
}, "strip", z.ZodTypeAny, {
|
|
6014
|
+
groups: ({
|
|
5819
6015
|
openapi: (string | string[] | {
|
|
5820
6016
|
source: string;
|
|
5821
6017
|
directory?: string | undefined;
|
|
@@ -5823,19 +6019,25 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5823
6019
|
source: string;
|
|
5824
6020
|
directory?: string | undefined;
|
|
5825
6021
|
} | undefined);
|
|
6022
|
+
group: string;
|
|
6023
|
+
icon?: string | {
|
|
6024
|
+
name: string;
|
|
6025
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6026
|
+
} | undefined;
|
|
6027
|
+
hidden?: boolean | undefined;
|
|
6028
|
+
root?: string | undefined;
|
|
5826
6029
|
} | {
|
|
5827
|
-
pages: any[];
|
|
5828
|
-
}))[];
|
|
5829
|
-
}, {
|
|
5830
|
-
groups: ({
|
|
5831
6030
|
group: string;
|
|
6031
|
+
pages: any[];
|
|
5832
6032
|
icon?: string | {
|
|
5833
6033
|
name: string;
|
|
5834
6034
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5835
6035
|
} | undefined;
|
|
5836
6036
|
hidden?: boolean | undefined;
|
|
5837
6037
|
root?: string | undefined;
|
|
5838
|
-
}
|
|
6038
|
+
})[];
|
|
6039
|
+
}, {
|
|
6040
|
+
groups: ({
|
|
5839
6041
|
openapi: (string | string[] | {
|
|
5840
6042
|
source: string;
|
|
5841
6043
|
directory?: string | undefined;
|
|
@@ -5843,9 +6045,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5843
6045
|
source: string;
|
|
5844
6046
|
directory?: string | undefined;
|
|
5845
6047
|
} | undefined);
|
|
6048
|
+
group: string;
|
|
6049
|
+
icon?: string | {
|
|
6050
|
+
name: string;
|
|
6051
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6052
|
+
} | undefined;
|
|
6053
|
+
hidden?: boolean | undefined;
|
|
6054
|
+
root?: string | undefined;
|
|
5846
6055
|
} | {
|
|
6056
|
+
group: string;
|
|
5847
6057
|
pages: any[];
|
|
5848
|
-
|
|
6058
|
+
icon?: string | {
|
|
6059
|
+
name: string;
|
|
6060
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6061
|
+
} | undefined;
|
|
6062
|
+
hidden?: boolean | undefined;
|
|
6063
|
+
root?: string | undefined;
|
|
6064
|
+
})[];
|
|
5849
6065
|
}>, z.ZodObject<{
|
|
5850
6066
|
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
5851
6067
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6671,14 +6887,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6671
6887
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
6672
6888
|
} | {
|
|
6673
6889
|
groups: ({
|
|
6674
|
-
group: string;
|
|
6675
|
-
icon?: string | {
|
|
6676
|
-
name: string;
|
|
6677
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6678
|
-
} | undefined;
|
|
6679
|
-
hidden?: boolean | undefined;
|
|
6680
|
-
root?: string | undefined;
|
|
6681
|
-
} & ({
|
|
6682
6890
|
openapi: (string | string[] | {
|
|
6683
6891
|
source: string;
|
|
6684
6892
|
directory?: string | undefined;
|
|
@@ -6686,9 +6894,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6686
6894
|
source: string;
|
|
6687
6895
|
directory?: string | undefined;
|
|
6688
6896
|
} | undefined);
|
|
6897
|
+
group: string;
|
|
6898
|
+
icon?: string | {
|
|
6899
|
+
name: string;
|
|
6900
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6901
|
+
} | undefined;
|
|
6902
|
+
hidden?: boolean | undefined;
|
|
6903
|
+
root?: string | undefined;
|
|
6689
6904
|
} | {
|
|
6905
|
+
group: string;
|
|
6690
6906
|
pages: any[];
|
|
6691
|
-
|
|
6907
|
+
icon?: string | {
|
|
6908
|
+
name: string;
|
|
6909
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6910
|
+
} | undefined;
|
|
6911
|
+
hidden?: boolean | undefined;
|
|
6912
|
+
root?: string | undefined;
|
|
6913
|
+
})[];
|
|
6692
6914
|
} | {
|
|
6693
6915
|
pages: any[];
|
|
6694
6916
|
}) & {
|
|
@@ -6752,14 +6974,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6752
6974
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
6753
6975
|
} | {
|
|
6754
6976
|
groups: ({
|
|
6755
|
-
group: string;
|
|
6756
|
-
icon?: string | {
|
|
6757
|
-
name: string;
|
|
6758
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6759
|
-
} | undefined;
|
|
6760
|
-
hidden?: boolean | undefined;
|
|
6761
|
-
root?: string | undefined;
|
|
6762
|
-
} & ({
|
|
6763
6977
|
openapi: (string | string[] | {
|
|
6764
6978
|
source: string;
|
|
6765
6979
|
directory?: string | undefined;
|
|
@@ -6767,9 +6981,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6767
6981
|
source: string;
|
|
6768
6982
|
directory?: string | undefined;
|
|
6769
6983
|
} | undefined);
|
|
6984
|
+
group: string;
|
|
6985
|
+
icon?: string | {
|
|
6986
|
+
name: string;
|
|
6987
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6988
|
+
} | undefined;
|
|
6989
|
+
hidden?: boolean | undefined;
|
|
6990
|
+
root?: string | undefined;
|
|
6770
6991
|
} | {
|
|
6992
|
+
group: string;
|
|
6771
6993
|
pages: any[];
|
|
6772
|
-
|
|
6994
|
+
icon?: string | {
|
|
6995
|
+
name: string;
|
|
6996
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6997
|
+
} | undefined;
|
|
6998
|
+
hidden?: boolean | undefined;
|
|
6999
|
+
root?: string | undefined;
|
|
7000
|
+
})[];
|
|
6773
7001
|
} | {
|
|
6774
7002
|
pages: any[];
|
|
6775
7003
|
}) & {
|
|
@@ -7003,14 +7231,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7003
7231
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
7004
7232
|
} | {
|
|
7005
7233
|
groups: ({
|
|
7006
|
-
group: string;
|
|
7007
|
-
icon?: string | {
|
|
7008
|
-
name: string;
|
|
7009
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7010
|
-
} | undefined;
|
|
7011
|
-
hidden?: boolean | undefined;
|
|
7012
|
-
root?: string | undefined;
|
|
7013
|
-
} & ({
|
|
7014
7234
|
openapi: (string | string[] | {
|
|
7015
7235
|
source: string;
|
|
7016
7236
|
directory?: string | undefined;
|
|
@@ -7018,9 +7238,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7018
7238
|
source: string;
|
|
7019
7239
|
directory?: string | undefined;
|
|
7020
7240
|
} | undefined);
|
|
7241
|
+
group: string;
|
|
7242
|
+
icon?: string | {
|
|
7243
|
+
name: string;
|
|
7244
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7245
|
+
} | undefined;
|
|
7246
|
+
hidden?: boolean | undefined;
|
|
7247
|
+
root?: string | undefined;
|
|
7021
7248
|
} | {
|
|
7249
|
+
group: string;
|
|
7022
7250
|
pages: any[];
|
|
7023
|
-
|
|
7251
|
+
icon?: string | {
|
|
7252
|
+
name: string;
|
|
7253
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7254
|
+
} | undefined;
|
|
7255
|
+
hidden?: boolean | undefined;
|
|
7256
|
+
root?: string | undefined;
|
|
7257
|
+
})[];
|
|
7024
7258
|
} | {
|
|
7025
7259
|
pages: any[];
|
|
7026
7260
|
}) & {
|
|
@@ -7084,14 +7318,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7084
7318
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
7085
7319
|
} | {
|
|
7086
7320
|
groups: ({
|
|
7087
|
-
group: string;
|
|
7088
|
-
icon?: string | {
|
|
7089
|
-
name: string;
|
|
7090
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7091
|
-
} | undefined;
|
|
7092
|
-
hidden?: boolean | undefined;
|
|
7093
|
-
root?: string | undefined;
|
|
7094
|
-
} & ({
|
|
7095
7321
|
openapi: (string | string[] | {
|
|
7096
7322
|
source: string;
|
|
7097
7323
|
directory?: string | undefined;
|
|
@@ -7099,9 +7325,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7099
7325
|
source: string;
|
|
7100
7326
|
directory?: string | undefined;
|
|
7101
7327
|
} | undefined);
|
|
7328
|
+
group: string;
|
|
7329
|
+
icon?: string | {
|
|
7330
|
+
name: string;
|
|
7331
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7332
|
+
} | undefined;
|
|
7333
|
+
hidden?: boolean | undefined;
|
|
7334
|
+
root?: string | undefined;
|
|
7102
7335
|
} | {
|
|
7336
|
+
group: string;
|
|
7103
7337
|
pages: any[];
|
|
7104
|
-
|
|
7338
|
+
icon?: string | {
|
|
7339
|
+
name: string;
|
|
7340
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7341
|
+
} | undefined;
|
|
7342
|
+
hidden?: boolean | undefined;
|
|
7343
|
+
root?: string | undefined;
|
|
7344
|
+
})[];
|
|
7105
7345
|
} | {
|
|
7106
7346
|
pages: any[];
|
|
7107
7347
|
}) & {
|
|
@@ -7571,8 +7811,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7571
7811
|
}, {
|
|
7572
7812
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
7573
7813
|
}>, z.ZodObject<{
|
|
7574
|
-
groups: z.ZodArray<z.
|
|
7575
|
-
group: z.ZodString;
|
|
7814
|
+
groups: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
7576
7815
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
7577
7816
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
7578
7817
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -7583,25 +7822,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7583
7822
|
name: string;
|
|
7584
7823
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7585
7824
|
}>]>>;
|
|
7825
|
+
group: z.ZodString;
|
|
7586
7826
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
7587
7827
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7588
|
-
}, "strip", z.ZodTypeAny, {
|
|
7589
|
-
group: string;
|
|
7590
|
-
icon?: string | {
|
|
7591
|
-
name: string;
|
|
7592
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7593
|
-
} | undefined;
|
|
7594
|
-
hidden?: boolean | undefined;
|
|
7595
|
-
root?: string | undefined;
|
|
7596
|
-
}, {
|
|
7597
|
-
group: string;
|
|
7598
|
-
icon?: string | {
|
|
7599
|
-
name: string;
|
|
7600
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7601
|
-
} | undefined;
|
|
7602
|
-
hidden?: boolean | undefined;
|
|
7603
|
-
root?: string | undefined;
|
|
7604
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
7605
7828
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
7606
7829
|
source: z.ZodEffects<z.ZodString, string, string>;
|
|
7607
7830
|
directory: z.ZodOptional<z.ZodString>;
|
|
@@ -7620,6 +7843,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7620
7843
|
source: string;
|
|
7621
7844
|
directory?: string | undefined;
|
|
7622
7845
|
} | undefined);
|
|
7846
|
+
group: string;
|
|
7847
|
+
icon?: string | {
|
|
7848
|
+
name: string;
|
|
7849
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7850
|
+
} | undefined;
|
|
7851
|
+
hidden?: boolean | undefined;
|
|
7852
|
+
root?: string | undefined;
|
|
7623
7853
|
}, {
|
|
7624
7854
|
openapi: (string | string[] | {
|
|
7625
7855
|
source: string;
|
|
@@ -7628,23 +7858,49 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7628
7858
|
source: string;
|
|
7629
7859
|
directory?: string | undefined;
|
|
7630
7860
|
} | undefined);
|
|
7631
|
-
|
|
7632
|
-
|
|
7861
|
+
group: string;
|
|
7862
|
+
icon?: string | {
|
|
7863
|
+
name: string;
|
|
7864
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7865
|
+
} | undefined;
|
|
7866
|
+
hidden?: boolean | undefined;
|
|
7867
|
+
root?: string | undefined;
|
|
7868
|
+
}>, z.ZodObject<{
|
|
7869
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
7870
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
7871
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
7872
|
+
}, "strip", z.ZodTypeAny, {
|
|
7873
|
+
name: string;
|
|
7874
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7875
|
+
}, {
|
|
7876
|
+
name: string;
|
|
7877
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7878
|
+
}>]>>;
|
|
7879
|
+
group: z.ZodString;
|
|
7880
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
7881
|
+
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7882
|
+
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
7633
7883
|
}, "strip", z.ZodTypeAny, {
|
|
7884
|
+
group: string;
|
|
7634
7885
|
pages: any[];
|
|
7886
|
+
icon?: string | {
|
|
7887
|
+
name: string;
|
|
7888
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7889
|
+
} | undefined;
|
|
7890
|
+
hidden?: boolean | undefined;
|
|
7891
|
+
root?: string | undefined;
|
|
7635
7892
|
}, {
|
|
7636
|
-
pages: any[];
|
|
7637
|
-
}>>]>>, "many">;
|
|
7638
|
-
}, "strip", z.ZodTypeAny, {
|
|
7639
|
-
groups: ({
|
|
7640
7893
|
group: string;
|
|
7894
|
+
pages: any[];
|
|
7641
7895
|
icon?: string | {
|
|
7642
7896
|
name: string;
|
|
7643
7897
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7644
7898
|
} | undefined;
|
|
7645
7899
|
hidden?: boolean | undefined;
|
|
7646
7900
|
root?: string | undefined;
|
|
7647
|
-
}
|
|
7901
|
+
}>]>, "many">;
|
|
7902
|
+
}, "strip", z.ZodTypeAny, {
|
|
7903
|
+
groups: ({
|
|
7648
7904
|
openapi: (string | string[] | {
|
|
7649
7905
|
source: string;
|
|
7650
7906
|
directory?: string | undefined;
|
|
@@ -7652,19 +7908,25 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7652
7908
|
source: string;
|
|
7653
7909
|
directory?: string | undefined;
|
|
7654
7910
|
} | undefined);
|
|
7911
|
+
group: string;
|
|
7912
|
+
icon?: string | {
|
|
7913
|
+
name: string;
|
|
7914
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7915
|
+
} | undefined;
|
|
7916
|
+
hidden?: boolean | undefined;
|
|
7917
|
+
root?: string | undefined;
|
|
7655
7918
|
} | {
|
|
7656
|
-
pages: any[];
|
|
7657
|
-
}))[];
|
|
7658
|
-
}, {
|
|
7659
|
-
groups: ({
|
|
7660
7919
|
group: string;
|
|
7920
|
+
pages: any[];
|
|
7661
7921
|
icon?: string | {
|
|
7662
7922
|
name: string;
|
|
7663
7923
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7664
7924
|
} | undefined;
|
|
7665
7925
|
hidden?: boolean | undefined;
|
|
7666
7926
|
root?: string | undefined;
|
|
7667
|
-
}
|
|
7927
|
+
})[];
|
|
7928
|
+
}, {
|
|
7929
|
+
groups: ({
|
|
7668
7930
|
openapi: (string | string[] | {
|
|
7669
7931
|
source: string;
|
|
7670
7932
|
directory?: string | undefined;
|
|
@@ -7672,9 +7934,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7672
7934
|
source: string;
|
|
7673
7935
|
directory?: string | undefined;
|
|
7674
7936
|
} | undefined);
|
|
7937
|
+
group: string;
|
|
7938
|
+
icon?: string | {
|
|
7939
|
+
name: string;
|
|
7940
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7941
|
+
} | undefined;
|
|
7942
|
+
hidden?: boolean | undefined;
|
|
7943
|
+
root?: string | undefined;
|
|
7675
7944
|
} | {
|
|
7945
|
+
group: string;
|
|
7676
7946
|
pages: any[];
|
|
7677
|
-
|
|
7947
|
+
icon?: string | {
|
|
7948
|
+
name: string;
|
|
7949
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7950
|
+
} | undefined;
|
|
7951
|
+
hidden?: boolean | undefined;
|
|
7952
|
+
root?: string | undefined;
|
|
7953
|
+
})[];
|
|
7678
7954
|
}>, z.ZodObject<{
|
|
7679
7955
|
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
7680
7956
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8500,14 +8776,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8500
8776
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
8501
8777
|
} | {
|
|
8502
8778
|
groups: ({
|
|
8503
|
-
group: string;
|
|
8504
|
-
icon?: string | {
|
|
8505
|
-
name: string;
|
|
8506
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8507
|
-
} | undefined;
|
|
8508
|
-
hidden?: boolean | undefined;
|
|
8509
|
-
root?: string | undefined;
|
|
8510
|
-
} & ({
|
|
8511
8779
|
openapi: (string | string[] | {
|
|
8512
8780
|
source: string;
|
|
8513
8781
|
directory?: string | undefined;
|
|
@@ -8515,9 +8783,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8515
8783
|
source: string;
|
|
8516
8784
|
directory?: string | undefined;
|
|
8517
8785
|
} | undefined);
|
|
8786
|
+
group: string;
|
|
8787
|
+
icon?: string | {
|
|
8788
|
+
name: string;
|
|
8789
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8790
|
+
} | undefined;
|
|
8791
|
+
hidden?: boolean | undefined;
|
|
8792
|
+
root?: string | undefined;
|
|
8518
8793
|
} | {
|
|
8794
|
+
group: string;
|
|
8519
8795
|
pages: any[];
|
|
8520
|
-
|
|
8796
|
+
icon?: string | {
|
|
8797
|
+
name: string;
|
|
8798
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8799
|
+
} | undefined;
|
|
8800
|
+
hidden?: boolean | undefined;
|
|
8801
|
+
root?: string | undefined;
|
|
8802
|
+
})[];
|
|
8521
8803
|
} | {
|
|
8522
8804
|
pages: any[];
|
|
8523
8805
|
}) & {
|
|
@@ -8581,14 +8863,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8581
8863
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
8582
8864
|
} | {
|
|
8583
8865
|
groups: ({
|
|
8584
|
-
group: string;
|
|
8585
|
-
icon?: string | {
|
|
8586
|
-
name: string;
|
|
8587
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8588
|
-
} | undefined;
|
|
8589
|
-
hidden?: boolean | undefined;
|
|
8590
|
-
root?: string | undefined;
|
|
8591
|
-
} & ({
|
|
8592
8866
|
openapi: (string | string[] | {
|
|
8593
8867
|
source: string;
|
|
8594
8868
|
directory?: string | undefined;
|
|
@@ -8596,9 +8870,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8596
8870
|
source: string;
|
|
8597
8871
|
directory?: string | undefined;
|
|
8598
8872
|
} | undefined);
|
|
8873
|
+
group: string;
|
|
8874
|
+
icon?: string | {
|
|
8875
|
+
name: string;
|
|
8876
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8877
|
+
} | undefined;
|
|
8878
|
+
hidden?: boolean | undefined;
|
|
8879
|
+
root?: string | undefined;
|
|
8599
8880
|
} | {
|
|
8881
|
+
group: string;
|
|
8600
8882
|
pages: any[];
|
|
8601
|
-
|
|
8883
|
+
icon?: string | {
|
|
8884
|
+
name: string;
|
|
8885
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8886
|
+
} | undefined;
|
|
8887
|
+
hidden?: boolean | undefined;
|
|
8888
|
+
root?: string | undefined;
|
|
8889
|
+
})[];
|
|
8602
8890
|
} | {
|
|
8603
8891
|
pages: any[];
|
|
8604
8892
|
}) & {
|
|
@@ -8832,14 +9120,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8832
9120
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
8833
9121
|
} | {
|
|
8834
9122
|
groups: ({
|
|
8835
|
-
group: string;
|
|
8836
|
-
icon?: string | {
|
|
8837
|
-
name: string;
|
|
8838
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8839
|
-
} | undefined;
|
|
8840
|
-
hidden?: boolean | undefined;
|
|
8841
|
-
root?: string | undefined;
|
|
8842
|
-
} & ({
|
|
8843
9123
|
openapi: (string | string[] | {
|
|
8844
9124
|
source: string;
|
|
8845
9125
|
directory?: string | undefined;
|
|
@@ -8847,9 +9127,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8847
9127
|
source: string;
|
|
8848
9128
|
directory?: string | undefined;
|
|
8849
9129
|
} | undefined);
|
|
9130
|
+
group: string;
|
|
9131
|
+
icon?: string | {
|
|
9132
|
+
name: string;
|
|
9133
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9134
|
+
} | undefined;
|
|
9135
|
+
hidden?: boolean | undefined;
|
|
9136
|
+
root?: string | undefined;
|
|
8850
9137
|
} | {
|
|
9138
|
+
group: string;
|
|
8851
9139
|
pages: any[];
|
|
8852
|
-
|
|
9140
|
+
icon?: string | {
|
|
9141
|
+
name: string;
|
|
9142
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9143
|
+
} | undefined;
|
|
9144
|
+
hidden?: boolean | undefined;
|
|
9145
|
+
root?: string | undefined;
|
|
9146
|
+
})[];
|
|
8853
9147
|
} | {
|
|
8854
9148
|
pages: any[];
|
|
8855
9149
|
}) & {
|
|
@@ -8913,14 +9207,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8913
9207
|
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
8914
9208
|
} | {
|
|
8915
9209
|
groups: ({
|
|
8916
|
-
group: string;
|
|
8917
|
-
icon?: string | {
|
|
8918
|
-
name: string;
|
|
8919
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8920
|
-
} | undefined;
|
|
8921
|
-
hidden?: boolean | undefined;
|
|
8922
|
-
root?: string | undefined;
|
|
8923
|
-
} & ({
|
|
8924
9210
|
openapi: (string | string[] | {
|
|
8925
9211
|
source: string;
|
|
8926
9212
|
directory?: string | undefined;
|
|
@@ -8928,9 +9214,23 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8928
9214
|
source: string;
|
|
8929
9215
|
directory?: string | undefined;
|
|
8930
9216
|
} | undefined);
|
|
9217
|
+
group: string;
|
|
9218
|
+
icon?: string | {
|
|
9219
|
+
name: string;
|
|
9220
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9221
|
+
} | undefined;
|
|
9222
|
+
hidden?: boolean | undefined;
|
|
9223
|
+
root?: string | undefined;
|
|
8931
9224
|
} | {
|
|
9225
|
+
group: string;
|
|
8932
9226
|
pages: any[];
|
|
8933
|
-
|
|
9227
|
+
icon?: string | {
|
|
9228
|
+
name: string;
|
|
9229
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9230
|
+
} | undefined;
|
|
9231
|
+
hidden?: boolean | undefined;
|
|
9232
|
+
root?: string | undefined;
|
|
9233
|
+
})[];
|
|
8934
9234
|
} | {
|
|
8935
9235
|
pages: any[];
|
|
8936
9236
|
}) & {
|