@mintlify/validation 0.1.433 → 0.1.435
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 +161 -35
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +16 -4
- package/dist/mint-config/schemas/v2/properties/navigation/groups.js +9 -3
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +13 -3
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +23 -5
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +23 -5
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +23 -5
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +23 -5
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +23 -5
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +23 -5
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +13 -3
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +23 -5
- package/dist/mint-config/validateConfig.d.ts +70 -14
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -391,6 +391,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
391
391
|
source: string;
|
|
392
392
|
directory?: string | undefined;
|
|
393
393
|
}>]>;
|
|
394
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
394
395
|
}, "strip", z.ZodTypeAny, {
|
|
395
396
|
openapi: (string | string[] | {
|
|
396
397
|
source: string;
|
|
@@ -400,6 +401,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
400
401
|
directory?: string | undefined;
|
|
401
402
|
} | undefined);
|
|
402
403
|
group: string;
|
|
404
|
+
pages: any[];
|
|
403
405
|
icon?: string | {
|
|
404
406
|
name: string;
|
|
405
407
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -427,6 +429,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
427
429
|
tag?: string | undefined;
|
|
428
430
|
hidden?: boolean | undefined;
|
|
429
431
|
root?: string | undefined;
|
|
432
|
+
pages?: any[] | undefined;
|
|
430
433
|
}>, z.ZodObject<{
|
|
431
434
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
432
435
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -456,8 +459,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
456
459
|
source: string;
|
|
457
460
|
directory?: string | undefined;
|
|
458
461
|
}>]>;
|
|
462
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
459
463
|
}, "strip", z.ZodTypeAny, {
|
|
460
464
|
group: string;
|
|
465
|
+
pages: any[];
|
|
461
466
|
asyncapi: (string | string[] | {
|
|
462
467
|
source: string;
|
|
463
468
|
directory?: string | undefined;
|
|
@@ -492,6 +497,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
492
497
|
tag?: string | undefined;
|
|
493
498
|
hidden?: boolean | undefined;
|
|
494
499
|
root?: string | undefined;
|
|
500
|
+
pages?: any[] | undefined;
|
|
495
501
|
}>, z.ZodObject<{
|
|
496
502
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
497
503
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -511,7 +517,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
511
517
|
tag: z.ZodOptional<z.ZodString>;
|
|
512
518
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
513
519
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
514
|
-
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many"
|
|
520
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
515
521
|
}, "strip", z.ZodTypeAny, {
|
|
516
522
|
group: string;
|
|
517
523
|
pages: any[];
|
|
@@ -526,7 +532,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
526
532
|
root?: string | undefined;
|
|
527
533
|
}, {
|
|
528
534
|
group: string;
|
|
529
|
-
pages: any[];
|
|
530
535
|
icon?: string | {
|
|
531
536
|
name: string;
|
|
532
537
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -536,6 +541,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
536
541
|
tag?: string | undefined;
|
|
537
542
|
hidden?: boolean | undefined;
|
|
538
543
|
root?: string | undefined;
|
|
544
|
+
pages?: any[] | undefined;
|
|
539
545
|
}>]>, "many">;
|
|
540
546
|
}, "strip", z.ZodTypeAny, {
|
|
541
547
|
groups: ({
|
|
@@ -547,6 +553,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
547
553
|
directory?: string | undefined;
|
|
548
554
|
} | undefined);
|
|
549
555
|
group: string;
|
|
556
|
+
pages: any[];
|
|
550
557
|
icon?: string | {
|
|
551
558
|
name: string;
|
|
552
559
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -558,6 +565,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
558
565
|
root?: string | undefined;
|
|
559
566
|
} | {
|
|
560
567
|
group: string;
|
|
568
|
+
pages: any[];
|
|
561
569
|
asyncapi: (string | string[] | {
|
|
562
570
|
source: string;
|
|
563
571
|
directory?: string | undefined;
|
|
@@ -607,6 +615,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
607
615
|
tag?: string | undefined;
|
|
608
616
|
hidden?: boolean | undefined;
|
|
609
617
|
root?: string | undefined;
|
|
618
|
+
pages?: any[] | undefined;
|
|
610
619
|
} | {
|
|
611
620
|
group: string;
|
|
612
621
|
asyncapi: (string | string[] | {
|
|
@@ -625,9 +634,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
625
634
|
tag?: string | undefined;
|
|
626
635
|
hidden?: boolean | undefined;
|
|
627
636
|
root?: string | undefined;
|
|
637
|
+
pages?: any[] | undefined;
|
|
628
638
|
} | {
|
|
629
639
|
group: string;
|
|
630
|
-
pages: any[];
|
|
631
640
|
icon?: string | {
|
|
632
641
|
name: string;
|
|
633
642
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -637,6 +646,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
637
646
|
tag?: string | undefined;
|
|
638
647
|
hidden?: boolean | undefined;
|
|
639
648
|
root?: string | undefined;
|
|
649
|
+
pages?: any[] | undefined;
|
|
640
650
|
})[];
|
|
641
651
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
642
652
|
}>, z.ZodObject<{
|
|
@@ -1372,6 +1382,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1372
1382
|
directory?: string | undefined;
|
|
1373
1383
|
} | undefined);
|
|
1374
1384
|
group: string;
|
|
1385
|
+
pages: any[];
|
|
1375
1386
|
icon?: string | {
|
|
1376
1387
|
name: string;
|
|
1377
1388
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1383,6 +1394,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1383
1394
|
root?: string | undefined;
|
|
1384
1395
|
} | {
|
|
1385
1396
|
group: string;
|
|
1397
|
+
pages: any[];
|
|
1386
1398
|
asyncapi: (string | string[] | {
|
|
1387
1399
|
source: string;
|
|
1388
1400
|
directory?: string | undefined;
|
|
@@ -1441,6 +1453,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1441
1453
|
directory?: string | undefined;
|
|
1442
1454
|
} | undefined);
|
|
1443
1455
|
group: string;
|
|
1456
|
+
pages: any[];
|
|
1444
1457
|
icon?: string | {
|
|
1445
1458
|
name: string;
|
|
1446
1459
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1452,6 +1465,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1452
1465
|
root?: string | undefined;
|
|
1453
1466
|
} | {
|
|
1454
1467
|
group: string;
|
|
1468
|
+
pages: any[];
|
|
1455
1469
|
asyncapi: (string | string[] | {
|
|
1456
1470
|
source: string;
|
|
1457
1471
|
directory?: string | undefined;
|
|
@@ -1748,6 +1762,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1748
1762
|
tag?: string | undefined;
|
|
1749
1763
|
hidden?: boolean | undefined;
|
|
1750
1764
|
root?: string | undefined;
|
|
1765
|
+
pages?: any[] | undefined;
|
|
1751
1766
|
} | {
|
|
1752
1767
|
group: string;
|
|
1753
1768
|
asyncapi: (string | string[] | {
|
|
@@ -1766,9 +1781,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1766
1781
|
tag?: string | undefined;
|
|
1767
1782
|
hidden?: boolean | undefined;
|
|
1768
1783
|
root?: string | undefined;
|
|
1784
|
+
pages?: any[] | undefined;
|
|
1769
1785
|
} | {
|
|
1770
1786
|
group: string;
|
|
1771
|
-
pages: any[];
|
|
1772
1787
|
icon?: string | {
|
|
1773
1788
|
name: string;
|
|
1774
1789
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1778,6 +1793,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1778
1793
|
tag?: string | undefined;
|
|
1779
1794
|
hidden?: boolean | undefined;
|
|
1780
1795
|
root?: string | undefined;
|
|
1796
|
+
pages?: any[] | undefined;
|
|
1781
1797
|
})[];
|
|
1782
1798
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1783
1799
|
} | {
|
|
@@ -1817,6 +1833,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1817
1833
|
tag?: string | undefined;
|
|
1818
1834
|
hidden?: boolean | undefined;
|
|
1819
1835
|
root?: string | undefined;
|
|
1836
|
+
pages?: any[] | undefined;
|
|
1820
1837
|
} | {
|
|
1821
1838
|
group: string;
|
|
1822
1839
|
asyncapi: (string | string[] | {
|
|
@@ -1835,9 +1852,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1835
1852
|
tag?: string | undefined;
|
|
1836
1853
|
hidden?: boolean | undefined;
|
|
1837
1854
|
root?: string | undefined;
|
|
1855
|
+
pages?: any[] | undefined;
|
|
1838
1856
|
} | {
|
|
1839
1857
|
group: string;
|
|
1840
|
-
pages: any[];
|
|
1841
1858
|
icon?: string | {
|
|
1842
1859
|
name: string;
|
|
1843
1860
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1847,6 +1864,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1847
1864
|
tag?: string | undefined;
|
|
1848
1865
|
hidden?: boolean | undefined;
|
|
1849
1866
|
root?: string | undefined;
|
|
1867
|
+
pages?: any[] | undefined;
|
|
1850
1868
|
})[];
|
|
1851
1869
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1852
1870
|
} | {
|
|
@@ -2464,6 +2482,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2464
2482
|
source: string;
|
|
2465
2483
|
directory?: string | undefined;
|
|
2466
2484
|
}>]>;
|
|
2485
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
2467
2486
|
}, "strip", z.ZodTypeAny, {
|
|
2468
2487
|
openapi: (string | string[] | {
|
|
2469
2488
|
source: string;
|
|
@@ -2473,6 +2492,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2473
2492
|
directory?: string | undefined;
|
|
2474
2493
|
} | undefined);
|
|
2475
2494
|
group: string;
|
|
2495
|
+
pages: any[];
|
|
2476
2496
|
icon?: string | {
|
|
2477
2497
|
name: string;
|
|
2478
2498
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -2500,6 +2520,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2500
2520
|
tag?: string | undefined;
|
|
2501
2521
|
hidden?: boolean | undefined;
|
|
2502
2522
|
root?: string | undefined;
|
|
2523
|
+
pages?: any[] | undefined;
|
|
2503
2524
|
}>, z.ZodObject<{
|
|
2504
2525
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
2505
2526
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -2529,8 +2550,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2529
2550
|
source: string;
|
|
2530
2551
|
directory?: string | undefined;
|
|
2531
2552
|
}>]>;
|
|
2553
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
2532
2554
|
}, "strip", z.ZodTypeAny, {
|
|
2533
2555
|
group: string;
|
|
2556
|
+
pages: any[];
|
|
2534
2557
|
asyncapi: (string | string[] | {
|
|
2535
2558
|
source: string;
|
|
2536
2559
|
directory?: string | undefined;
|
|
@@ -2565,6 +2588,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2565
2588
|
tag?: string | undefined;
|
|
2566
2589
|
hidden?: boolean | undefined;
|
|
2567
2590
|
root?: string | undefined;
|
|
2591
|
+
pages?: any[] | undefined;
|
|
2568
2592
|
}>, z.ZodObject<{
|
|
2569
2593
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
2570
2594
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -2584,7 +2608,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2584
2608
|
tag: z.ZodOptional<z.ZodString>;
|
|
2585
2609
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2586
2610
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2587
|
-
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many"
|
|
2611
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
2588
2612
|
}, "strip", z.ZodTypeAny, {
|
|
2589
2613
|
group: string;
|
|
2590
2614
|
pages: any[];
|
|
@@ -2599,7 +2623,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2599
2623
|
root?: string | undefined;
|
|
2600
2624
|
}, {
|
|
2601
2625
|
group: string;
|
|
2602
|
-
pages: any[];
|
|
2603
2626
|
icon?: string | {
|
|
2604
2627
|
name: string;
|
|
2605
2628
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -2609,6 +2632,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2609
2632
|
tag?: string | undefined;
|
|
2610
2633
|
hidden?: boolean | undefined;
|
|
2611
2634
|
root?: string | undefined;
|
|
2635
|
+
pages?: any[] | undefined;
|
|
2612
2636
|
}>]>, "many">;
|
|
2613
2637
|
}, "strip", z.ZodTypeAny, {
|
|
2614
2638
|
groups: ({
|
|
@@ -2620,6 +2644,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2620
2644
|
directory?: string | undefined;
|
|
2621
2645
|
} | undefined);
|
|
2622
2646
|
group: string;
|
|
2647
|
+
pages: any[];
|
|
2623
2648
|
icon?: string | {
|
|
2624
2649
|
name: string;
|
|
2625
2650
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -2631,6 +2656,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2631
2656
|
root?: string | undefined;
|
|
2632
2657
|
} | {
|
|
2633
2658
|
group: string;
|
|
2659
|
+
pages: any[];
|
|
2634
2660
|
asyncapi: (string | string[] | {
|
|
2635
2661
|
source: string;
|
|
2636
2662
|
directory?: string | undefined;
|
|
@@ -2680,6 +2706,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2680
2706
|
tag?: string | undefined;
|
|
2681
2707
|
hidden?: boolean | undefined;
|
|
2682
2708
|
root?: string | undefined;
|
|
2709
|
+
pages?: any[] | undefined;
|
|
2683
2710
|
} | {
|
|
2684
2711
|
group: string;
|
|
2685
2712
|
asyncapi: (string | string[] | {
|
|
@@ -2698,9 +2725,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2698
2725
|
tag?: string | undefined;
|
|
2699
2726
|
hidden?: boolean | undefined;
|
|
2700
2727
|
root?: string | undefined;
|
|
2728
|
+
pages?: any[] | undefined;
|
|
2701
2729
|
} | {
|
|
2702
2730
|
group: string;
|
|
2703
|
-
pages: any[];
|
|
2704
2731
|
icon?: string | {
|
|
2705
2732
|
name: string;
|
|
2706
2733
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -2710,6 +2737,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2710
2737
|
tag?: string | undefined;
|
|
2711
2738
|
hidden?: boolean | undefined;
|
|
2712
2739
|
root?: string | undefined;
|
|
2740
|
+
pages?: any[] | undefined;
|
|
2713
2741
|
})[];
|
|
2714
2742
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2715
2743
|
}>, z.ZodObject<{
|
|
@@ -3445,6 +3473,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3445
3473
|
directory?: string | undefined;
|
|
3446
3474
|
} | undefined);
|
|
3447
3475
|
group: string;
|
|
3476
|
+
pages: any[];
|
|
3448
3477
|
icon?: string | {
|
|
3449
3478
|
name: string;
|
|
3450
3479
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -3456,6 +3485,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3456
3485
|
root?: string | undefined;
|
|
3457
3486
|
} | {
|
|
3458
3487
|
group: string;
|
|
3488
|
+
pages: any[];
|
|
3459
3489
|
asyncapi: (string | string[] | {
|
|
3460
3490
|
source: string;
|
|
3461
3491
|
directory?: string | undefined;
|
|
@@ -3514,6 +3544,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3514
3544
|
directory?: string | undefined;
|
|
3515
3545
|
} | undefined);
|
|
3516
3546
|
group: string;
|
|
3547
|
+
pages: any[];
|
|
3517
3548
|
icon?: string | {
|
|
3518
3549
|
name: string;
|
|
3519
3550
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -3525,6 +3556,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3525
3556
|
root?: string | undefined;
|
|
3526
3557
|
} | {
|
|
3527
3558
|
group: string;
|
|
3559
|
+
pages: any[];
|
|
3528
3560
|
asyncapi: (string | string[] | {
|
|
3529
3561
|
source: string;
|
|
3530
3562
|
directory?: string | undefined;
|
|
@@ -3821,6 +3853,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3821
3853
|
tag?: string | undefined;
|
|
3822
3854
|
hidden?: boolean | undefined;
|
|
3823
3855
|
root?: string | undefined;
|
|
3856
|
+
pages?: any[] | undefined;
|
|
3824
3857
|
} | {
|
|
3825
3858
|
group: string;
|
|
3826
3859
|
asyncapi: (string | string[] | {
|
|
@@ -3839,9 +3872,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3839
3872
|
tag?: string | undefined;
|
|
3840
3873
|
hidden?: boolean | undefined;
|
|
3841
3874
|
root?: string | undefined;
|
|
3875
|
+
pages?: any[] | undefined;
|
|
3842
3876
|
} | {
|
|
3843
3877
|
group: string;
|
|
3844
|
-
pages: any[];
|
|
3845
3878
|
icon?: string | {
|
|
3846
3879
|
name: string;
|
|
3847
3880
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -3851,6 +3884,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3851
3884
|
tag?: string | undefined;
|
|
3852
3885
|
hidden?: boolean | undefined;
|
|
3853
3886
|
root?: string | undefined;
|
|
3887
|
+
pages?: any[] | undefined;
|
|
3854
3888
|
})[];
|
|
3855
3889
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3856
3890
|
} | {
|
|
@@ -3890,6 +3924,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3890
3924
|
tag?: string | undefined;
|
|
3891
3925
|
hidden?: boolean | undefined;
|
|
3892
3926
|
root?: string | undefined;
|
|
3927
|
+
pages?: any[] | undefined;
|
|
3893
3928
|
} | {
|
|
3894
3929
|
group: string;
|
|
3895
3930
|
asyncapi: (string | string[] | {
|
|
@@ -3908,9 +3943,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3908
3943
|
tag?: string | undefined;
|
|
3909
3944
|
hidden?: boolean | undefined;
|
|
3910
3945
|
root?: string | undefined;
|
|
3946
|
+
pages?: any[] | undefined;
|
|
3911
3947
|
} | {
|
|
3912
3948
|
group: string;
|
|
3913
|
-
pages: any[];
|
|
3914
3949
|
icon?: string | {
|
|
3915
3950
|
name: string;
|
|
3916
3951
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -3920,6 +3955,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3920
3955
|
tag?: string | undefined;
|
|
3921
3956
|
hidden?: boolean | undefined;
|
|
3922
3957
|
root?: string | undefined;
|
|
3958
|
+
pages?: any[] | undefined;
|
|
3923
3959
|
})[];
|
|
3924
3960
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3925
3961
|
} | {
|
|
@@ -4537,6 +4573,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4537
4573
|
source: string;
|
|
4538
4574
|
directory?: string | undefined;
|
|
4539
4575
|
}>]>;
|
|
4576
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
4540
4577
|
}, "strip", z.ZodTypeAny, {
|
|
4541
4578
|
openapi: (string | string[] | {
|
|
4542
4579
|
source: string;
|
|
@@ -4546,6 +4583,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4546
4583
|
directory?: string | undefined;
|
|
4547
4584
|
} | undefined);
|
|
4548
4585
|
group: string;
|
|
4586
|
+
pages: any[];
|
|
4549
4587
|
icon?: string | {
|
|
4550
4588
|
name: string;
|
|
4551
4589
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -4573,6 +4611,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4573
4611
|
tag?: string | undefined;
|
|
4574
4612
|
hidden?: boolean | undefined;
|
|
4575
4613
|
root?: string | undefined;
|
|
4614
|
+
pages?: any[] | undefined;
|
|
4576
4615
|
}>, z.ZodObject<{
|
|
4577
4616
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
4578
4617
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -4602,8 +4641,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4602
4641
|
source: string;
|
|
4603
4642
|
directory?: string | undefined;
|
|
4604
4643
|
}>]>;
|
|
4644
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
4605
4645
|
}, "strip", z.ZodTypeAny, {
|
|
4606
4646
|
group: string;
|
|
4647
|
+
pages: any[];
|
|
4607
4648
|
asyncapi: (string | string[] | {
|
|
4608
4649
|
source: string;
|
|
4609
4650
|
directory?: string | undefined;
|
|
@@ -4638,6 +4679,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4638
4679
|
tag?: string | undefined;
|
|
4639
4680
|
hidden?: boolean | undefined;
|
|
4640
4681
|
root?: string | undefined;
|
|
4682
|
+
pages?: any[] | undefined;
|
|
4641
4683
|
}>, z.ZodObject<{
|
|
4642
4684
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
4643
4685
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -4657,7 +4699,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4657
4699
|
tag: z.ZodOptional<z.ZodString>;
|
|
4658
4700
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
4659
4701
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4660
|
-
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many"
|
|
4702
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
4661
4703
|
}, "strip", z.ZodTypeAny, {
|
|
4662
4704
|
group: string;
|
|
4663
4705
|
pages: any[];
|
|
@@ -4672,7 +4714,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4672
4714
|
root?: string | undefined;
|
|
4673
4715
|
}, {
|
|
4674
4716
|
group: string;
|
|
4675
|
-
pages: any[];
|
|
4676
4717
|
icon?: string | {
|
|
4677
4718
|
name: string;
|
|
4678
4719
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -4682,6 +4723,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4682
4723
|
tag?: string | undefined;
|
|
4683
4724
|
hidden?: boolean | undefined;
|
|
4684
4725
|
root?: string | undefined;
|
|
4726
|
+
pages?: any[] | undefined;
|
|
4685
4727
|
}>]>, "many">;
|
|
4686
4728
|
}, "strip", z.ZodTypeAny, {
|
|
4687
4729
|
groups: ({
|
|
@@ -4693,6 +4735,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4693
4735
|
directory?: string | undefined;
|
|
4694
4736
|
} | undefined);
|
|
4695
4737
|
group: string;
|
|
4738
|
+
pages: any[];
|
|
4696
4739
|
icon?: string | {
|
|
4697
4740
|
name: string;
|
|
4698
4741
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -4704,6 +4747,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4704
4747
|
root?: string | undefined;
|
|
4705
4748
|
} | {
|
|
4706
4749
|
group: string;
|
|
4750
|
+
pages: any[];
|
|
4707
4751
|
asyncapi: (string | string[] | {
|
|
4708
4752
|
source: string;
|
|
4709
4753
|
directory?: string | undefined;
|
|
@@ -4753,6 +4797,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4753
4797
|
tag?: string | undefined;
|
|
4754
4798
|
hidden?: boolean | undefined;
|
|
4755
4799
|
root?: string | undefined;
|
|
4800
|
+
pages?: any[] | undefined;
|
|
4756
4801
|
} | {
|
|
4757
4802
|
group: string;
|
|
4758
4803
|
asyncapi: (string | string[] | {
|
|
@@ -4771,9 +4816,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4771
4816
|
tag?: string | undefined;
|
|
4772
4817
|
hidden?: boolean | undefined;
|
|
4773
4818
|
root?: string | undefined;
|
|
4819
|
+
pages?: any[] | undefined;
|
|
4774
4820
|
} | {
|
|
4775
4821
|
group: string;
|
|
4776
|
-
pages: any[];
|
|
4777
4822
|
icon?: string | {
|
|
4778
4823
|
name: string;
|
|
4779
4824
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -4783,6 +4828,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4783
4828
|
tag?: string | undefined;
|
|
4784
4829
|
hidden?: boolean | undefined;
|
|
4785
4830
|
root?: string | undefined;
|
|
4831
|
+
pages?: any[] | undefined;
|
|
4786
4832
|
})[];
|
|
4787
4833
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
4788
4834
|
}>, z.ZodObject<{
|
|
@@ -5518,6 +5564,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5518
5564
|
directory?: string | undefined;
|
|
5519
5565
|
} | undefined);
|
|
5520
5566
|
group: string;
|
|
5567
|
+
pages: any[];
|
|
5521
5568
|
icon?: string | {
|
|
5522
5569
|
name: string;
|
|
5523
5570
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -5529,6 +5576,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5529
5576
|
root?: string | undefined;
|
|
5530
5577
|
} | {
|
|
5531
5578
|
group: string;
|
|
5579
|
+
pages: any[];
|
|
5532
5580
|
asyncapi: (string | string[] | {
|
|
5533
5581
|
source: string;
|
|
5534
5582
|
directory?: string | undefined;
|
|
@@ -5587,6 +5635,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5587
5635
|
directory?: string | undefined;
|
|
5588
5636
|
} | undefined);
|
|
5589
5637
|
group: string;
|
|
5638
|
+
pages: any[];
|
|
5590
5639
|
icon?: string | {
|
|
5591
5640
|
name: string;
|
|
5592
5641
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -5598,6 +5647,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5598
5647
|
root?: string | undefined;
|
|
5599
5648
|
} | {
|
|
5600
5649
|
group: string;
|
|
5650
|
+
pages: any[];
|
|
5601
5651
|
asyncapi: (string | string[] | {
|
|
5602
5652
|
source: string;
|
|
5603
5653
|
directory?: string | undefined;
|
|
@@ -5894,6 +5944,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5894
5944
|
tag?: string | undefined;
|
|
5895
5945
|
hidden?: boolean | undefined;
|
|
5896
5946
|
root?: string | undefined;
|
|
5947
|
+
pages?: any[] | undefined;
|
|
5897
5948
|
} | {
|
|
5898
5949
|
group: string;
|
|
5899
5950
|
asyncapi: (string | string[] | {
|
|
@@ -5912,9 +5963,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5912
5963
|
tag?: string | undefined;
|
|
5913
5964
|
hidden?: boolean | undefined;
|
|
5914
5965
|
root?: string | undefined;
|
|
5966
|
+
pages?: any[] | undefined;
|
|
5915
5967
|
} | {
|
|
5916
5968
|
group: string;
|
|
5917
|
-
pages: any[];
|
|
5918
5969
|
icon?: string | {
|
|
5919
5970
|
name: string;
|
|
5920
5971
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -5924,6 +5975,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5924
5975
|
tag?: string | undefined;
|
|
5925
5976
|
hidden?: boolean | undefined;
|
|
5926
5977
|
root?: string | undefined;
|
|
5978
|
+
pages?: any[] | undefined;
|
|
5927
5979
|
})[];
|
|
5928
5980
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5929
5981
|
} | {
|
|
@@ -5963,6 +6015,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5963
6015
|
tag?: string | undefined;
|
|
5964
6016
|
hidden?: boolean | undefined;
|
|
5965
6017
|
root?: string | undefined;
|
|
6018
|
+
pages?: any[] | undefined;
|
|
5966
6019
|
} | {
|
|
5967
6020
|
group: string;
|
|
5968
6021
|
asyncapi: (string | string[] | {
|
|
@@ -5981,9 +6034,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5981
6034
|
tag?: string | undefined;
|
|
5982
6035
|
hidden?: boolean | undefined;
|
|
5983
6036
|
root?: string | undefined;
|
|
6037
|
+
pages?: any[] | undefined;
|
|
5984
6038
|
} | {
|
|
5985
6039
|
group: string;
|
|
5986
|
-
pages: any[];
|
|
5987
6040
|
icon?: string | {
|
|
5988
6041
|
name: string;
|
|
5989
6042
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -5993,6 +6046,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5993
6046
|
tag?: string | undefined;
|
|
5994
6047
|
hidden?: boolean | undefined;
|
|
5995
6048
|
root?: string | undefined;
|
|
6049
|
+
pages?: any[] | undefined;
|
|
5996
6050
|
})[];
|
|
5997
6051
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
5998
6052
|
} | {
|
|
@@ -6610,6 +6664,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6610
6664
|
source: string;
|
|
6611
6665
|
directory?: string | undefined;
|
|
6612
6666
|
}>]>;
|
|
6667
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
6613
6668
|
}, "strip", z.ZodTypeAny, {
|
|
6614
6669
|
openapi: (string | string[] | {
|
|
6615
6670
|
source: string;
|
|
@@ -6619,6 +6674,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6619
6674
|
directory?: string | undefined;
|
|
6620
6675
|
} | undefined);
|
|
6621
6676
|
group: string;
|
|
6677
|
+
pages: any[];
|
|
6622
6678
|
icon?: string | {
|
|
6623
6679
|
name: string;
|
|
6624
6680
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -6646,6 +6702,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6646
6702
|
tag?: string | undefined;
|
|
6647
6703
|
hidden?: boolean | undefined;
|
|
6648
6704
|
root?: string | undefined;
|
|
6705
|
+
pages?: any[] | undefined;
|
|
6649
6706
|
}>, z.ZodObject<{
|
|
6650
6707
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
6651
6708
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -6675,8 +6732,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6675
6732
|
source: string;
|
|
6676
6733
|
directory?: string | undefined;
|
|
6677
6734
|
}>]>;
|
|
6735
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
6678
6736
|
}, "strip", z.ZodTypeAny, {
|
|
6679
6737
|
group: string;
|
|
6738
|
+
pages: any[];
|
|
6680
6739
|
asyncapi: (string | string[] | {
|
|
6681
6740
|
source: string;
|
|
6682
6741
|
directory?: string | undefined;
|
|
@@ -6711,6 +6770,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6711
6770
|
tag?: string | undefined;
|
|
6712
6771
|
hidden?: boolean | undefined;
|
|
6713
6772
|
root?: string | undefined;
|
|
6773
|
+
pages?: any[] | undefined;
|
|
6714
6774
|
}>, z.ZodObject<{
|
|
6715
6775
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
6716
6776
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -6730,7 +6790,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6730
6790
|
tag: z.ZodOptional<z.ZodString>;
|
|
6731
6791
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
6732
6792
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
6733
|
-
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many"
|
|
6793
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
6734
6794
|
}, "strip", z.ZodTypeAny, {
|
|
6735
6795
|
group: string;
|
|
6736
6796
|
pages: any[];
|
|
@@ -6745,7 +6805,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6745
6805
|
root?: string | undefined;
|
|
6746
6806
|
}, {
|
|
6747
6807
|
group: string;
|
|
6748
|
-
pages: any[];
|
|
6749
6808
|
icon?: string | {
|
|
6750
6809
|
name: string;
|
|
6751
6810
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -6755,6 +6814,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6755
6814
|
tag?: string | undefined;
|
|
6756
6815
|
hidden?: boolean | undefined;
|
|
6757
6816
|
root?: string | undefined;
|
|
6817
|
+
pages?: any[] | undefined;
|
|
6758
6818
|
}>]>, "many">;
|
|
6759
6819
|
}, "strip", z.ZodTypeAny, {
|
|
6760
6820
|
groups: ({
|
|
@@ -6766,6 +6826,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6766
6826
|
directory?: string | undefined;
|
|
6767
6827
|
} | undefined);
|
|
6768
6828
|
group: string;
|
|
6829
|
+
pages: any[];
|
|
6769
6830
|
icon?: string | {
|
|
6770
6831
|
name: string;
|
|
6771
6832
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -6777,6 +6838,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6777
6838
|
root?: string | undefined;
|
|
6778
6839
|
} | {
|
|
6779
6840
|
group: string;
|
|
6841
|
+
pages: any[];
|
|
6780
6842
|
asyncapi: (string | string[] | {
|
|
6781
6843
|
source: string;
|
|
6782
6844
|
directory?: string | undefined;
|
|
@@ -6826,6 +6888,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6826
6888
|
tag?: string | undefined;
|
|
6827
6889
|
hidden?: boolean | undefined;
|
|
6828
6890
|
root?: string | undefined;
|
|
6891
|
+
pages?: any[] | undefined;
|
|
6829
6892
|
} | {
|
|
6830
6893
|
group: string;
|
|
6831
6894
|
asyncapi: (string | string[] | {
|
|
@@ -6844,9 +6907,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6844
6907
|
tag?: string | undefined;
|
|
6845
6908
|
hidden?: boolean | undefined;
|
|
6846
6909
|
root?: string | undefined;
|
|
6910
|
+
pages?: any[] | undefined;
|
|
6847
6911
|
} | {
|
|
6848
6912
|
group: string;
|
|
6849
|
-
pages: any[];
|
|
6850
6913
|
icon?: string | {
|
|
6851
6914
|
name: string;
|
|
6852
6915
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -6856,6 +6919,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6856
6919
|
tag?: string | undefined;
|
|
6857
6920
|
hidden?: boolean | undefined;
|
|
6858
6921
|
root?: string | undefined;
|
|
6922
|
+
pages?: any[] | undefined;
|
|
6859
6923
|
})[];
|
|
6860
6924
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
6861
6925
|
}>, z.ZodObject<{
|
|
@@ -7591,6 +7655,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7591
7655
|
directory?: string | undefined;
|
|
7592
7656
|
} | undefined);
|
|
7593
7657
|
group: string;
|
|
7658
|
+
pages: any[];
|
|
7594
7659
|
icon?: string | {
|
|
7595
7660
|
name: string;
|
|
7596
7661
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -7602,6 +7667,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7602
7667
|
root?: string | undefined;
|
|
7603
7668
|
} | {
|
|
7604
7669
|
group: string;
|
|
7670
|
+
pages: any[];
|
|
7605
7671
|
asyncapi: (string | string[] | {
|
|
7606
7672
|
source: string;
|
|
7607
7673
|
directory?: string | undefined;
|
|
@@ -7660,6 +7726,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7660
7726
|
directory?: string | undefined;
|
|
7661
7727
|
} | undefined);
|
|
7662
7728
|
group: string;
|
|
7729
|
+
pages: any[];
|
|
7663
7730
|
icon?: string | {
|
|
7664
7731
|
name: string;
|
|
7665
7732
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -7671,6 +7738,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7671
7738
|
root?: string | undefined;
|
|
7672
7739
|
} | {
|
|
7673
7740
|
group: string;
|
|
7741
|
+
pages: any[];
|
|
7674
7742
|
asyncapi: (string | string[] | {
|
|
7675
7743
|
source: string;
|
|
7676
7744
|
directory?: string | undefined;
|
|
@@ -7967,6 +8035,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7967
8035
|
tag?: string | undefined;
|
|
7968
8036
|
hidden?: boolean | undefined;
|
|
7969
8037
|
root?: string | undefined;
|
|
8038
|
+
pages?: any[] | undefined;
|
|
7970
8039
|
} | {
|
|
7971
8040
|
group: string;
|
|
7972
8041
|
asyncapi: (string | string[] | {
|
|
@@ -7985,9 +8054,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7985
8054
|
tag?: string | undefined;
|
|
7986
8055
|
hidden?: boolean | undefined;
|
|
7987
8056
|
root?: string | undefined;
|
|
8057
|
+
pages?: any[] | undefined;
|
|
7988
8058
|
} | {
|
|
7989
8059
|
group: string;
|
|
7990
|
-
pages: any[];
|
|
7991
8060
|
icon?: string | {
|
|
7992
8061
|
name: string;
|
|
7993
8062
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -7997,6 +8066,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7997
8066
|
tag?: string | undefined;
|
|
7998
8067
|
hidden?: boolean | undefined;
|
|
7999
8068
|
root?: string | undefined;
|
|
8069
|
+
pages?: any[] | undefined;
|
|
8000
8070
|
})[];
|
|
8001
8071
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8002
8072
|
} | {
|
|
@@ -8036,6 +8106,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8036
8106
|
tag?: string | undefined;
|
|
8037
8107
|
hidden?: boolean | undefined;
|
|
8038
8108
|
root?: string | undefined;
|
|
8109
|
+
pages?: any[] | undefined;
|
|
8039
8110
|
} | {
|
|
8040
8111
|
group: string;
|
|
8041
8112
|
asyncapi: (string | string[] | {
|
|
@@ -8054,9 +8125,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8054
8125
|
tag?: string | undefined;
|
|
8055
8126
|
hidden?: boolean | undefined;
|
|
8056
8127
|
root?: string | undefined;
|
|
8128
|
+
pages?: any[] | undefined;
|
|
8057
8129
|
} | {
|
|
8058
8130
|
group: string;
|
|
8059
|
-
pages: any[];
|
|
8060
8131
|
icon?: string | {
|
|
8061
8132
|
name: string;
|
|
8062
8133
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -8066,6 +8137,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8066
8137
|
tag?: string | undefined;
|
|
8067
8138
|
hidden?: boolean | undefined;
|
|
8068
8139
|
root?: string | undefined;
|
|
8140
|
+
pages?: any[] | undefined;
|
|
8069
8141
|
})[];
|
|
8070
8142
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8071
8143
|
} | {
|
|
@@ -8683,6 +8755,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8683
8755
|
source: string;
|
|
8684
8756
|
directory?: string | undefined;
|
|
8685
8757
|
}>]>;
|
|
8758
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
8686
8759
|
}, "strip", z.ZodTypeAny, {
|
|
8687
8760
|
openapi: (string | string[] | {
|
|
8688
8761
|
source: string;
|
|
@@ -8692,6 +8765,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8692
8765
|
directory?: string | undefined;
|
|
8693
8766
|
} | undefined);
|
|
8694
8767
|
group: string;
|
|
8768
|
+
pages: any[];
|
|
8695
8769
|
icon?: string | {
|
|
8696
8770
|
name: string;
|
|
8697
8771
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -8719,6 +8793,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8719
8793
|
tag?: string | undefined;
|
|
8720
8794
|
hidden?: boolean | undefined;
|
|
8721
8795
|
root?: string | undefined;
|
|
8796
|
+
pages?: any[] | undefined;
|
|
8722
8797
|
}>, z.ZodObject<{
|
|
8723
8798
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
8724
8799
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -8748,8 +8823,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8748
8823
|
source: string;
|
|
8749
8824
|
directory?: string | undefined;
|
|
8750
8825
|
}>]>;
|
|
8826
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
8751
8827
|
}, "strip", z.ZodTypeAny, {
|
|
8752
8828
|
group: string;
|
|
8829
|
+
pages: any[];
|
|
8753
8830
|
asyncapi: (string | string[] | {
|
|
8754
8831
|
source: string;
|
|
8755
8832
|
directory?: string | undefined;
|
|
@@ -8784,6 +8861,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8784
8861
|
tag?: string | undefined;
|
|
8785
8862
|
hidden?: boolean | undefined;
|
|
8786
8863
|
root?: string | undefined;
|
|
8864
|
+
pages?: any[] | undefined;
|
|
8787
8865
|
}>, z.ZodObject<{
|
|
8788
8866
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
8789
8867
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -8803,7 +8881,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8803
8881
|
tag: z.ZodOptional<z.ZodString>;
|
|
8804
8882
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
8805
8883
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
8806
|
-
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many"
|
|
8884
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
8807
8885
|
}, "strip", z.ZodTypeAny, {
|
|
8808
8886
|
group: string;
|
|
8809
8887
|
pages: any[];
|
|
@@ -8818,7 +8896,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8818
8896
|
root?: string | undefined;
|
|
8819
8897
|
}, {
|
|
8820
8898
|
group: string;
|
|
8821
|
-
pages: any[];
|
|
8822
8899
|
icon?: string | {
|
|
8823
8900
|
name: string;
|
|
8824
8901
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -8828,6 +8905,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8828
8905
|
tag?: string | undefined;
|
|
8829
8906
|
hidden?: boolean | undefined;
|
|
8830
8907
|
root?: string | undefined;
|
|
8908
|
+
pages?: any[] | undefined;
|
|
8831
8909
|
}>]>, "many">;
|
|
8832
8910
|
}, "strip", z.ZodTypeAny, {
|
|
8833
8911
|
groups: ({
|
|
@@ -8839,6 +8917,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8839
8917
|
directory?: string | undefined;
|
|
8840
8918
|
} | undefined);
|
|
8841
8919
|
group: string;
|
|
8920
|
+
pages: any[];
|
|
8842
8921
|
icon?: string | {
|
|
8843
8922
|
name: string;
|
|
8844
8923
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -8850,6 +8929,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8850
8929
|
root?: string | undefined;
|
|
8851
8930
|
} | {
|
|
8852
8931
|
group: string;
|
|
8932
|
+
pages: any[];
|
|
8853
8933
|
asyncapi: (string | string[] | {
|
|
8854
8934
|
source: string;
|
|
8855
8935
|
directory?: string | undefined;
|
|
@@ -8899,6 +8979,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8899
8979
|
tag?: string | undefined;
|
|
8900
8980
|
hidden?: boolean | undefined;
|
|
8901
8981
|
root?: string | undefined;
|
|
8982
|
+
pages?: any[] | undefined;
|
|
8902
8983
|
} | {
|
|
8903
8984
|
group: string;
|
|
8904
8985
|
asyncapi: (string | string[] | {
|
|
@@ -8917,9 +8998,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8917
8998
|
tag?: string | undefined;
|
|
8918
8999
|
hidden?: boolean | undefined;
|
|
8919
9000
|
root?: string | undefined;
|
|
9001
|
+
pages?: any[] | undefined;
|
|
8920
9002
|
} | {
|
|
8921
9003
|
group: string;
|
|
8922
|
-
pages: any[];
|
|
8923
9004
|
icon?: string | {
|
|
8924
9005
|
name: string;
|
|
8925
9006
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -8929,6 +9010,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8929
9010
|
tag?: string | undefined;
|
|
8930
9011
|
hidden?: boolean | undefined;
|
|
8931
9012
|
root?: string | undefined;
|
|
9013
|
+
pages?: any[] | undefined;
|
|
8932
9014
|
})[];
|
|
8933
9015
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8934
9016
|
}>, z.ZodObject<{
|
|
@@ -9664,6 +9746,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9664
9746
|
directory?: string | undefined;
|
|
9665
9747
|
} | undefined);
|
|
9666
9748
|
group: string;
|
|
9749
|
+
pages: any[];
|
|
9667
9750
|
icon?: string | {
|
|
9668
9751
|
name: string;
|
|
9669
9752
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -9675,6 +9758,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9675
9758
|
root?: string | undefined;
|
|
9676
9759
|
} | {
|
|
9677
9760
|
group: string;
|
|
9761
|
+
pages: any[];
|
|
9678
9762
|
asyncapi: (string | string[] | {
|
|
9679
9763
|
source: string;
|
|
9680
9764
|
directory?: string | undefined;
|
|
@@ -9733,6 +9817,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9733
9817
|
directory?: string | undefined;
|
|
9734
9818
|
} | undefined);
|
|
9735
9819
|
group: string;
|
|
9820
|
+
pages: any[];
|
|
9736
9821
|
icon?: string | {
|
|
9737
9822
|
name: string;
|
|
9738
9823
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -9744,6 +9829,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9744
9829
|
root?: string | undefined;
|
|
9745
9830
|
} | {
|
|
9746
9831
|
group: string;
|
|
9832
|
+
pages: any[];
|
|
9747
9833
|
asyncapi: (string | string[] | {
|
|
9748
9834
|
source: string;
|
|
9749
9835
|
directory?: string | undefined;
|
|
@@ -10040,6 +10126,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10040
10126
|
tag?: string | undefined;
|
|
10041
10127
|
hidden?: boolean | undefined;
|
|
10042
10128
|
root?: string | undefined;
|
|
10129
|
+
pages?: any[] | undefined;
|
|
10043
10130
|
} | {
|
|
10044
10131
|
group: string;
|
|
10045
10132
|
asyncapi: (string | string[] | {
|
|
@@ -10058,9 +10145,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10058
10145
|
tag?: string | undefined;
|
|
10059
10146
|
hidden?: boolean | undefined;
|
|
10060
10147
|
root?: string | undefined;
|
|
10148
|
+
pages?: any[] | undefined;
|
|
10061
10149
|
} | {
|
|
10062
10150
|
group: string;
|
|
10063
|
-
pages: any[];
|
|
10064
10151
|
icon?: string | {
|
|
10065
10152
|
name: string;
|
|
10066
10153
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -10070,6 +10157,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10070
10157
|
tag?: string | undefined;
|
|
10071
10158
|
hidden?: boolean | undefined;
|
|
10072
10159
|
root?: string | undefined;
|
|
10160
|
+
pages?: any[] | undefined;
|
|
10073
10161
|
})[];
|
|
10074
10162
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10075
10163
|
} | {
|
|
@@ -10109,6 +10197,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10109
10197
|
tag?: string | undefined;
|
|
10110
10198
|
hidden?: boolean | undefined;
|
|
10111
10199
|
root?: string | undefined;
|
|
10200
|
+
pages?: any[] | undefined;
|
|
10112
10201
|
} | {
|
|
10113
10202
|
group: string;
|
|
10114
10203
|
asyncapi: (string | string[] | {
|
|
@@ -10127,9 +10216,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10127
10216
|
tag?: string | undefined;
|
|
10128
10217
|
hidden?: boolean | undefined;
|
|
10129
10218
|
root?: string | undefined;
|
|
10219
|
+
pages?: any[] | undefined;
|
|
10130
10220
|
} | {
|
|
10131
10221
|
group: string;
|
|
10132
|
-
pages: any[];
|
|
10133
10222
|
icon?: string | {
|
|
10134
10223
|
name: string;
|
|
10135
10224
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -10139,6 +10228,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10139
10228
|
tag?: string | undefined;
|
|
10140
10229
|
hidden?: boolean | undefined;
|
|
10141
10230
|
root?: string | undefined;
|
|
10231
|
+
pages?: any[] | undefined;
|
|
10142
10232
|
})[];
|
|
10143
10233
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10144
10234
|
} | {
|
|
@@ -10756,6 +10846,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10756
10846
|
source: string;
|
|
10757
10847
|
directory?: string | undefined;
|
|
10758
10848
|
}>]>;
|
|
10849
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
10759
10850
|
}, "strip", z.ZodTypeAny, {
|
|
10760
10851
|
openapi: (string | string[] | {
|
|
10761
10852
|
source: string;
|
|
@@ -10765,6 +10856,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10765
10856
|
directory?: string | undefined;
|
|
10766
10857
|
} | undefined);
|
|
10767
10858
|
group: string;
|
|
10859
|
+
pages: any[];
|
|
10768
10860
|
icon?: string | {
|
|
10769
10861
|
name: string;
|
|
10770
10862
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -10792,6 +10884,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10792
10884
|
tag?: string | undefined;
|
|
10793
10885
|
hidden?: boolean | undefined;
|
|
10794
10886
|
root?: string | undefined;
|
|
10887
|
+
pages?: any[] | undefined;
|
|
10795
10888
|
}>, z.ZodObject<{
|
|
10796
10889
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
10797
10890
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -10821,8 +10914,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10821
10914
|
source: string;
|
|
10822
10915
|
directory?: string | undefined;
|
|
10823
10916
|
}>]>;
|
|
10917
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
10824
10918
|
}, "strip", z.ZodTypeAny, {
|
|
10825
10919
|
group: string;
|
|
10920
|
+
pages: any[];
|
|
10826
10921
|
asyncapi: (string | string[] | {
|
|
10827
10922
|
source: string;
|
|
10828
10923
|
directory?: string | undefined;
|
|
@@ -10857,6 +10952,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10857
10952
|
tag?: string | undefined;
|
|
10858
10953
|
hidden?: boolean | undefined;
|
|
10859
10954
|
root?: string | undefined;
|
|
10955
|
+
pages?: any[] | undefined;
|
|
10860
10956
|
}>, z.ZodObject<{
|
|
10861
10957
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
10862
10958
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -10876,7 +10972,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10876
10972
|
tag: z.ZodOptional<z.ZodString>;
|
|
10877
10973
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
10878
10974
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
10879
|
-
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many"
|
|
10975
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
10880
10976
|
}, "strip", z.ZodTypeAny, {
|
|
10881
10977
|
group: string;
|
|
10882
10978
|
pages: any[];
|
|
@@ -10891,7 +10987,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10891
10987
|
root?: string | undefined;
|
|
10892
10988
|
}, {
|
|
10893
10989
|
group: string;
|
|
10894
|
-
pages: any[];
|
|
10895
10990
|
icon?: string | {
|
|
10896
10991
|
name: string;
|
|
10897
10992
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -10901,6 +10996,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10901
10996
|
tag?: string | undefined;
|
|
10902
10997
|
hidden?: boolean | undefined;
|
|
10903
10998
|
root?: string | undefined;
|
|
10999
|
+
pages?: any[] | undefined;
|
|
10904
11000
|
}>]>, "many">;
|
|
10905
11001
|
}, "strip", z.ZodTypeAny, {
|
|
10906
11002
|
groups: ({
|
|
@@ -10912,6 +11008,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10912
11008
|
directory?: string | undefined;
|
|
10913
11009
|
} | undefined);
|
|
10914
11010
|
group: string;
|
|
11011
|
+
pages: any[];
|
|
10915
11012
|
icon?: string | {
|
|
10916
11013
|
name: string;
|
|
10917
11014
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -10923,6 +11020,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10923
11020
|
root?: string | undefined;
|
|
10924
11021
|
} | {
|
|
10925
11022
|
group: string;
|
|
11023
|
+
pages: any[];
|
|
10926
11024
|
asyncapi: (string | string[] | {
|
|
10927
11025
|
source: string;
|
|
10928
11026
|
directory?: string | undefined;
|
|
@@ -10972,6 +11070,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10972
11070
|
tag?: string | undefined;
|
|
10973
11071
|
hidden?: boolean | undefined;
|
|
10974
11072
|
root?: string | undefined;
|
|
11073
|
+
pages?: any[] | undefined;
|
|
10975
11074
|
} | {
|
|
10976
11075
|
group: string;
|
|
10977
11076
|
asyncapi: (string | string[] | {
|
|
@@ -10990,9 +11089,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10990
11089
|
tag?: string | undefined;
|
|
10991
11090
|
hidden?: boolean | undefined;
|
|
10992
11091
|
root?: string | undefined;
|
|
11092
|
+
pages?: any[] | undefined;
|
|
10993
11093
|
} | {
|
|
10994
11094
|
group: string;
|
|
10995
|
-
pages: any[];
|
|
10996
11095
|
icon?: string | {
|
|
10997
11096
|
name: string;
|
|
10998
11097
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -11002,6 +11101,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11002
11101
|
tag?: string | undefined;
|
|
11003
11102
|
hidden?: boolean | undefined;
|
|
11004
11103
|
root?: string | undefined;
|
|
11104
|
+
pages?: any[] | undefined;
|
|
11005
11105
|
})[];
|
|
11006
11106
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
11007
11107
|
}>, z.ZodObject<{
|
|
@@ -11737,6 +11837,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11737
11837
|
directory?: string | undefined;
|
|
11738
11838
|
} | undefined);
|
|
11739
11839
|
group: string;
|
|
11840
|
+
pages: any[];
|
|
11740
11841
|
icon?: string | {
|
|
11741
11842
|
name: string;
|
|
11742
11843
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -11748,6 +11849,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11748
11849
|
root?: string | undefined;
|
|
11749
11850
|
} | {
|
|
11750
11851
|
group: string;
|
|
11852
|
+
pages: any[];
|
|
11751
11853
|
asyncapi: (string | string[] | {
|
|
11752
11854
|
source: string;
|
|
11753
11855
|
directory?: string | undefined;
|
|
@@ -11806,6 +11908,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11806
11908
|
directory?: string | undefined;
|
|
11807
11909
|
} | undefined);
|
|
11808
11910
|
group: string;
|
|
11911
|
+
pages: any[];
|
|
11809
11912
|
icon?: string | {
|
|
11810
11913
|
name: string;
|
|
11811
11914
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -11817,6 +11920,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11817
11920
|
root?: string | undefined;
|
|
11818
11921
|
} | {
|
|
11819
11922
|
group: string;
|
|
11923
|
+
pages: any[];
|
|
11820
11924
|
asyncapi: (string | string[] | {
|
|
11821
11925
|
source: string;
|
|
11822
11926
|
directory?: string | undefined;
|
|
@@ -12113,6 +12217,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12113
12217
|
tag?: string | undefined;
|
|
12114
12218
|
hidden?: boolean | undefined;
|
|
12115
12219
|
root?: string | undefined;
|
|
12220
|
+
pages?: any[] | undefined;
|
|
12116
12221
|
} | {
|
|
12117
12222
|
group: string;
|
|
12118
12223
|
asyncapi: (string | string[] | {
|
|
@@ -12131,9 +12236,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12131
12236
|
tag?: string | undefined;
|
|
12132
12237
|
hidden?: boolean | undefined;
|
|
12133
12238
|
root?: string | undefined;
|
|
12239
|
+
pages?: any[] | undefined;
|
|
12134
12240
|
} | {
|
|
12135
12241
|
group: string;
|
|
12136
|
-
pages: any[];
|
|
12137
12242
|
icon?: string | {
|
|
12138
12243
|
name: string;
|
|
12139
12244
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -12143,6 +12248,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12143
12248
|
tag?: string | undefined;
|
|
12144
12249
|
hidden?: boolean | undefined;
|
|
12145
12250
|
root?: string | undefined;
|
|
12251
|
+
pages?: any[] | undefined;
|
|
12146
12252
|
})[];
|
|
12147
12253
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12148
12254
|
} | {
|
|
@@ -12182,6 +12288,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12182
12288
|
tag?: string | undefined;
|
|
12183
12289
|
hidden?: boolean | undefined;
|
|
12184
12290
|
root?: string | undefined;
|
|
12291
|
+
pages?: any[] | undefined;
|
|
12185
12292
|
} | {
|
|
12186
12293
|
group: string;
|
|
12187
12294
|
asyncapi: (string | string[] | {
|
|
@@ -12200,9 +12307,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12200
12307
|
tag?: string | undefined;
|
|
12201
12308
|
hidden?: boolean | undefined;
|
|
12202
12309
|
root?: string | undefined;
|
|
12310
|
+
pages?: any[] | undefined;
|
|
12203
12311
|
} | {
|
|
12204
12312
|
group: string;
|
|
12205
|
-
pages: any[];
|
|
12206
12313
|
icon?: string | {
|
|
12207
12314
|
name: string;
|
|
12208
12315
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -12212,6 +12319,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12212
12319
|
tag?: string | undefined;
|
|
12213
12320
|
hidden?: boolean | undefined;
|
|
12214
12321
|
root?: string | undefined;
|
|
12322
|
+
pages?: any[] | undefined;
|
|
12215
12323
|
})[];
|
|
12216
12324
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
12217
12325
|
} | {
|
|
@@ -12829,6 +12937,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12829
12937
|
source: string;
|
|
12830
12938
|
directory?: string | undefined;
|
|
12831
12939
|
}>]>;
|
|
12940
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
12832
12941
|
}, "strip", z.ZodTypeAny, {
|
|
12833
12942
|
openapi: (string | string[] | {
|
|
12834
12943
|
source: string;
|
|
@@ -12838,6 +12947,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12838
12947
|
directory?: string | undefined;
|
|
12839
12948
|
} | undefined);
|
|
12840
12949
|
group: string;
|
|
12950
|
+
pages: any[];
|
|
12841
12951
|
icon?: string | {
|
|
12842
12952
|
name: string;
|
|
12843
12953
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -12865,6 +12975,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12865
12975
|
tag?: string | undefined;
|
|
12866
12976
|
hidden?: boolean | undefined;
|
|
12867
12977
|
root?: string | undefined;
|
|
12978
|
+
pages?: any[] | undefined;
|
|
12868
12979
|
}>, z.ZodObject<{
|
|
12869
12980
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
12870
12981
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -12894,8 +13005,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12894
13005
|
source: string;
|
|
12895
13006
|
directory?: string | undefined;
|
|
12896
13007
|
}>]>;
|
|
13008
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
12897
13009
|
}, "strip", z.ZodTypeAny, {
|
|
12898
13010
|
group: string;
|
|
13011
|
+
pages: any[];
|
|
12899
13012
|
asyncapi: (string | string[] | {
|
|
12900
13013
|
source: string;
|
|
12901
13014
|
directory?: string | undefined;
|
|
@@ -12930,6 +13043,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12930
13043
|
tag?: string | undefined;
|
|
12931
13044
|
hidden?: boolean | undefined;
|
|
12932
13045
|
root?: string | undefined;
|
|
13046
|
+
pages?: any[] | undefined;
|
|
12933
13047
|
}>, z.ZodObject<{
|
|
12934
13048
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
12935
13049
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -12949,7 +13063,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12949
13063
|
tag: z.ZodOptional<z.ZodString>;
|
|
12950
13064
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
12951
13065
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
12952
|
-
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many"
|
|
13066
|
+
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
12953
13067
|
}, "strip", z.ZodTypeAny, {
|
|
12954
13068
|
group: string;
|
|
12955
13069
|
pages: any[];
|
|
@@ -12964,7 +13078,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12964
13078
|
root?: string | undefined;
|
|
12965
13079
|
}, {
|
|
12966
13080
|
group: string;
|
|
12967
|
-
pages: any[];
|
|
12968
13081
|
icon?: string | {
|
|
12969
13082
|
name: string;
|
|
12970
13083
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -12974,6 +13087,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12974
13087
|
tag?: string | undefined;
|
|
12975
13088
|
hidden?: boolean | undefined;
|
|
12976
13089
|
root?: string | undefined;
|
|
13090
|
+
pages?: any[] | undefined;
|
|
12977
13091
|
}>]>, "many">;
|
|
12978
13092
|
}, "strip", z.ZodTypeAny, {
|
|
12979
13093
|
groups: ({
|
|
@@ -12985,6 +13099,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12985
13099
|
directory?: string | undefined;
|
|
12986
13100
|
} | undefined);
|
|
12987
13101
|
group: string;
|
|
13102
|
+
pages: any[];
|
|
12988
13103
|
icon?: string | {
|
|
12989
13104
|
name: string;
|
|
12990
13105
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -12996,6 +13111,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12996
13111
|
root?: string | undefined;
|
|
12997
13112
|
} | {
|
|
12998
13113
|
group: string;
|
|
13114
|
+
pages: any[];
|
|
12999
13115
|
asyncapi: (string | string[] | {
|
|
13000
13116
|
source: string;
|
|
13001
13117
|
directory?: string | undefined;
|
|
@@ -13045,6 +13161,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13045
13161
|
tag?: string | undefined;
|
|
13046
13162
|
hidden?: boolean | undefined;
|
|
13047
13163
|
root?: string | undefined;
|
|
13164
|
+
pages?: any[] | undefined;
|
|
13048
13165
|
} | {
|
|
13049
13166
|
group: string;
|
|
13050
13167
|
asyncapi: (string | string[] | {
|
|
@@ -13063,9 +13180,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13063
13180
|
tag?: string | undefined;
|
|
13064
13181
|
hidden?: boolean | undefined;
|
|
13065
13182
|
root?: string | undefined;
|
|
13183
|
+
pages?: any[] | undefined;
|
|
13066
13184
|
} | {
|
|
13067
13185
|
group: string;
|
|
13068
|
-
pages: any[];
|
|
13069
13186
|
icon?: string | {
|
|
13070
13187
|
name: string;
|
|
13071
13188
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -13075,6 +13192,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13075
13192
|
tag?: string | undefined;
|
|
13076
13193
|
hidden?: boolean | undefined;
|
|
13077
13194
|
root?: string | undefined;
|
|
13195
|
+
pages?: any[] | undefined;
|
|
13078
13196
|
})[];
|
|
13079
13197
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
13080
13198
|
}>, z.ZodObject<{
|
|
@@ -13810,6 +13928,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13810
13928
|
directory?: string | undefined;
|
|
13811
13929
|
} | undefined);
|
|
13812
13930
|
group: string;
|
|
13931
|
+
pages: any[];
|
|
13813
13932
|
icon?: string | {
|
|
13814
13933
|
name: string;
|
|
13815
13934
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -13821,6 +13940,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13821
13940
|
root?: string | undefined;
|
|
13822
13941
|
} | {
|
|
13823
13942
|
group: string;
|
|
13943
|
+
pages: any[];
|
|
13824
13944
|
asyncapi: (string | string[] | {
|
|
13825
13945
|
source: string;
|
|
13826
13946
|
directory?: string | undefined;
|
|
@@ -13879,6 +13999,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13879
13999
|
directory?: string | undefined;
|
|
13880
14000
|
} | undefined);
|
|
13881
14001
|
group: string;
|
|
14002
|
+
pages: any[];
|
|
13882
14003
|
icon?: string | {
|
|
13883
14004
|
name: string;
|
|
13884
14005
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -13890,6 +14011,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13890
14011
|
root?: string | undefined;
|
|
13891
14012
|
} | {
|
|
13892
14013
|
group: string;
|
|
14014
|
+
pages: any[];
|
|
13893
14015
|
asyncapi: (string | string[] | {
|
|
13894
14016
|
source: string;
|
|
13895
14017
|
directory?: string | undefined;
|
|
@@ -14186,6 +14308,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14186
14308
|
tag?: string | undefined;
|
|
14187
14309
|
hidden?: boolean | undefined;
|
|
14188
14310
|
root?: string | undefined;
|
|
14311
|
+
pages?: any[] | undefined;
|
|
14189
14312
|
} | {
|
|
14190
14313
|
group: string;
|
|
14191
14314
|
asyncapi: (string | string[] | {
|
|
@@ -14204,9 +14327,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14204
14327
|
tag?: string | undefined;
|
|
14205
14328
|
hidden?: boolean | undefined;
|
|
14206
14329
|
root?: string | undefined;
|
|
14330
|
+
pages?: any[] | undefined;
|
|
14207
14331
|
} | {
|
|
14208
14332
|
group: string;
|
|
14209
|
-
pages: any[];
|
|
14210
14333
|
icon?: string | {
|
|
14211
14334
|
name: string;
|
|
14212
14335
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -14216,6 +14339,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14216
14339
|
tag?: string | undefined;
|
|
14217
14340
|
hidden?: boolean | undefined;
|
|
14218
14341
|
root?: string | undefined;
|
|
14342
|
+
pages?: any[] | undefined;
|
|
14219
14343
|
})[];
|
|
14220
14344
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14221
14345
|
} | {
|
|
@@ -14255,6 +14379,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14255
14379
|
tag?: string | undefined;
|
|
14256
14380
|
hidden?: boolean | undefined;
|
|
14257
14381
|
root?: string | undefined;
|
|
14382
|
+
pages?: any[] | undefined;
|
|
14258
14383
|
} | {
|
|
14259
14384
|
group: string;
|
|
14260
14385
|
asyncapi: (string | string[] | {
|
|
@@ -14273,9 +14398,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14273
14398
|
tag?: string | undefined;
|
|
14274
14399
|
hidden?: boolean | undefined;
|
|
14275
14400
|
root?: string | undefined;
|
|
14401
|
+
pages?: any[] | undefined;
|
|
14276
14402
|
} | {
|
|
14277
14403
|
group: string;
|
|
14278
|
-
pages: any[];
|
|
14279
14404
|
icon?: string | {
|
|
14280
14405
|
name: string;
|
|
14281
14406
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -14285,6 +14410,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14285
14410
|
tag?: string | undefined;
|
|
14286
14411
|
hidden?: boolean | undefined;
|
|
14287
14412
|
root?: string | undefined;
|
|
14413
|
+
pages?: any[] | undefined;
|
|
14288
14414
|
})[];
|
|
14289
14415
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
14290
14416
|
} | {
|