@mintlify/validation 0.1.428 → 0.1.430
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/v1/navigation.js +1 -1
- package/dist/mint-config/schemas/v2/index.d.ts +189 -0
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +27 -0
- package/dist/mint-config/schemas/v2/properties/navigation/groups.js +2 -0
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +20 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +15 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +27 -0
- package/dist/mint-config/validateConfig.d.ts +84 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/deployment/deploymentEntitlements.d.ts +1 -1
- package/dist/types/deployment/deploymentEntitlements.js +1 -0
- package/package.json +3 -3
|
@@ -378,6 +378,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
378
378
|
}>]>>;
|
|
379
379
|
group: z.ZodString;
|
|
380
380
|
tag: z.ZodOptional<z.ZodString>;
|
|
381
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
381
382
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
382
383
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
383
384
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -405,6 +406,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
405
406
|
library?: "fontawesome" | "lucide" | undefined;
|
|
406
407
|
} | undefined;
|
|
407
408
|
tag?: string | undefined;
|
|
409
|
+
public?: boolean | undefined;
|
|
408
410
|
hidden?: boolean | undefined;
|
|
409
411
|
root?: string | undefined;
|
|
410
412
|
}, {
|
|
@@ -422,6 +424,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
422
424
|
library?: "fontawesome" | "lucide" | undefined;
|
|
423
425
|
} | undefined;
|
|
424
426
|
tag?: string | undefined;
|
|
427
|
+
public?: boolean | undefined;
|
|
425
428
|
hidden?: boolean | undefined;
|
|
426
429
|
root?: string | undefined;
|
|
427
430
|
}>, z.ZodObject<{
|
|
@@ -440,6 +443,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
440
443
|
}>]>>;
|
|
441
444
|
group: z.ZodString;
|
|
442
445
|
tag: z.ZodOptional<z.ZodString>;
|
|
446
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
443
447
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
444
448
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
445
449
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -467,6 +471,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
467
471
|
library?: "fontawesome" | "lucide" | undefined;
|
|
468
472
|
} | undefined;
|
|
469
473
|
tag?: string | undefined;
|
|
474
|
+
public?: boolean | undefined;
|
|
470
475
|
hidden?: boolean | undefined;
|
|
471
476
|
root?: string | undefined;
|
|
472
477
|
}, {
|
|
@@ -484,6 +489,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
484
489
|
library?: "fontawesome" | "lucide" | undefined;
|
|
485
490
|
} | undefined;
|
|
486
491
|
tag?: string | undefined;
|
|
492
|
+
public?: boolean | undefined;
|
|
487
493
|
hidden?: boolean | undefined;
|
|
488
494
|
root?: string | undefined;
|
|
489
495
|
}>, z.ZodObject<{
|
|
@@ -502,6 +508,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
502
508
|
}>]>>;
|
|
503
509
|
group: z.ZodString;
|
|
504
510
|
tag: z.ZodOptional<z.ZodString>;
|
|
511
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
505
512
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
506
513
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
507
514
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -514,6 +521,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
514
521
|
library?: "fontawesome" | "lucide" | undefined;
|
|
515
522
|
} | undefined;
|
|
516
523
|
tag?: string | undefined;
|
|
524
|
+
public?: boolean | undefined;
|
|
517
525
|
hidden?: boolean | undefined;
|
|
518
526
|
root?: string | undefined;
|
|
519
527
|
}, {
|
|
@@ -525,6 +533,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
525
533
|
library?: "fontawesome" | "lucide" | undefined;
|
|
526
534
|
} | undefined;
|
|
527
535
|
tag?: string | undefined;
|
|
536
|
+
public?: boolean | undefined;
|
|
528
537
|
hidden?: boolean | undefined;
|
|
529
538
|
root?: string | undefined;
|
|
530
539
|
}>]>, "many">;
|
|
@@ -544,6 +553,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
544
553
|
library?: "fontawesome" | "lucide" | undefined;
|
|
545
554
|
} | undefined;
|
|
546
555
|
tag?: string | undefined;
|
|
556
|
+
public?: boolean | undefined;
|
|
547
557
|
hidden?: boolean | undefined;
|
|
548
558
|
root?: string | undefined;
|
|
549
559
|
} | {
|
|
@@ -561,6 +571,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
561
571
|
library?: "fontawesome" | "lucide" | undefined;
|
|
562
572
|
} | undefined;
|
|
563
573
|
tag?: string | undefined;
|
|
574
|
+
public?: boolean | undefined;
|
|
564
575
|
hidden?: boolean | undefined;
|
|
565
576
|
root?: string | undefined;
|
|
566
577
|
} | {
|
|
@@ -572,6 +583,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
572
583
|
library?: "fontawesome" | "lucide" | undefined;
|
|
573
584
|
} | undefined;
|
|
574
585
|
tag?: string | undefined;
|
|
586
|
+
public?: boolean | undefined;
|
|
575
587
|
hidden?: boolean | undefined;
|
|
576
588
|
root?: string | undefined;
|
|
577
589
|
})[];
|
|
@@ -592,6 +604,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
592
604
|
library?: "fontawesome" | "lucide" | undefined;
|
|
593
605
|
} | undefined;
|
|
594
606
|
tag?: string | undefined;
|
|
607
|
+
public?: boolean | undefined;
|
|
595
608
|
hidden?: boolean | undefined;
|
|
596
609
|
root?: string | undefined;
|
|
597
610
|
} | {
|
|
@@ -609,6 +622,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
609
622
|
library?: "fontawesome" | "lucide" | undefined;
|
|
610
623
|
} | undefined;
|
|
611
624
|
tag?: string | undefined;
|
|
625
|
+
public?: boolean | undefined;
|
|
612
626
|
hidden?: boolean | undefined;
|
|
613
627
|
root?: string | undefined;
|
|
614
628
|
} | {
|
|
@@ -620,6 +634,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
620
634
|
library?: "fontawesome" | "lucide" | undefined;
|
|
621
635
|
} | undefined;
|
|
622
636
|
tag?: string | undefined;
|
|
637
|
+
public?: boolean | undefined;
|
|
623
638
|
hidden?: boolean | undefined;
|
|
624
639
|
root?: string | undefined;
|
|
625
640
|
})[];
|
|
@@ -1363,6 +1378,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1363
1378
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1364
1379
|
} | undefined;
|
|
1365
1380
|
tag?: string | undefined;
|
|
1381
|
+
public?: boolean | undefined;
|
|
1366
1382
|
hidden?: boolean | undefined;
|
|
1367
1383
|
root?: string | undefined;
|
|
1368
1384
|
} | {
|
|
@@ -1380,6 +1396,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1380
1396
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1381
1397
|
} | undefined;
|
|
1382
1398
|
tag?: string | undefined;
|
|
1399
|
+
public?: boolean | undefined;
|
|
1383
1400
|
hidden?: boolean | undefined;
|
|
1384
1401
|
root?: string | undefined;
|
|
1385
1402
|
} | {
|
|
@@ -1391,6 +1408,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1391
1408
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1392
1409
|
} | undefined;
|
|
1393
1410
|
tag?: string | undefined;
|
|
1411
|
+
public?: boolean | undefined;
|
|
1394
1412
|
hidden?: boolean | undefined;
|
|
1395
1413
|
root?: string | undefined;
|
|
1396
1414
|
})[];
|
|
@@ -1429,6 +1447,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1429
1447
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1430
1448
|
} | undefined;
|
|
1431
1449
|
tag?: string | undefined;
|
|
1450
|
+
public?: boolean | undefined;
|
|
1432
1451
|
hidden?: boolean | undefined;
|
|
1433
1452
|
root?: string | undefined;
|
|
1434
1453
|
} | {
|
|
@@ -1446,6 +1465,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1446
1465
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1447
1466
|
} | undefined;
|
|
1448
1467
|
tag?: string | undefined;
|
|
1468
|
+
public?: boolean | undefined;
|
|
1449
1469
|
hidden?: boolean | undefined;
|
|
1450
1470
|
root?: string | undefined;
|
|
1451
1471
|
} | {
|
|
@@ -1457,6 +1477,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1457
1477
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1458
1478
|
} | undefined;
|
|
1459
1479
|
tag?: string | undefined;
|
|
1480
|
+
public?: boolean | undefined;
|
|
1460
1481
|
hidden?: boolean | undefined;
|
|
1461
1482
|
root?: string | undefined;
|
|
1462
1483
|
})[];
|
|
@@ -1724,6 +1745,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1724
1745
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1725
1746
|
} | undefined;
|
|
1726
1747
|
tag?: string | undefined;
|
|
1748
|
+
public?: boolean | undefined;
|
|
1727
1749
|
hidden?: boolean | undefined;
|
|
1728
1750
|
root?: string | undefined;
|
|
1729
1751
|
} | {
|
|
@@ -1741,6 +1763,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1741
1763
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1742
1764
|
} | undefined;
|
|
1743
1765
|
tag?: string | undefined;
|
|
1766
|
+
public?: boolean | undefined;
|
|
1744
1767
|
hidden?: boolean | undefined;
|
|
1745
1768
|
root?: string | undefined;
|
|
1746
1769
|
} | {
|
|
@@ -1752,6 +1775,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1752
1775
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1753
1776
|
} | undefined;
|
|
1754
1777
|
tag?: string | undefined;
|
|
1778
|
+
public?: boolean | undefined;
|
|
1755
1779
|
hidden?: boolean | undefined;
|
|
1756
1780
|
root?: string | undefined;
|
|
1757
1781
|
})[];
|
|
@@ -1790,6 +1814,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1790
1814
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1791
1815
|
} | undefined;
|
|
1792
1816
|
tag?: string | undefined;
|
|
1817
|
+
public?: boolean | undefined;
|
|
1793
1818
|
hidden?: boolean | undefined;
|
|
1794
1819
|
root?: string | undefined;
|
|
1795
1820
|
} | {
|
|
@@ -1807,6 +1832,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1807
1832
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1808
1833
|
} | undefined;
|
|
1809
1834
|
tag?: string | undefined;
|
|
1835
|
+
public?: boolean | undefined;
|
|
1810
1836
|
hidden?: boolean | undefined;
|
|
1811
1837
|
root?: string | undefined;
|
|
1812
1838
|
} | {
|
|
@@ -1818,6 +1844,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1818
1844
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1819
1845
|
} | undefined;
|
|
1820
1846
|
tag?: string | undefined;
|
|
1847
|
+
public?: boolean | undefined;
|
|
1821
1848
|
hidden?: boolean | undefined;
|
|
1822
1849
|
root?: string | undefined;
|
|
1823
1850
|
})[];
|
|
@@ -2424,6 +2451,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2424
2451
|
}>]>>;
|
|
2425
2452
|
group: z.ZodString;
|
|
2426
2453
|
tag: z.ZodOptional<z.ZodString>;
|
|
2454
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
2427
2455
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2428
2456
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2429
2457
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -2451,6 +2479,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2451
2479
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2452
2480
|
} | undefined;
|
|
2453
2481
|
tag?: string | undefined;
|
|
2482
|
+
public?: boolean | undefined;
|
|
2454
2483
|
hidden?: boolean | undefined;
|
|
2455
2484
|
root?: string | undefined;
|
|
2456
2485
|
}, {
|
|
@@ -2468,6 +2497,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2468
2497
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2469
2498
|
} | undefined;
|
|
2470
2499
|
tag?: string | undefined;
|
|
2500
|
+
public?: boolean | undefined;
|
|
2471
2501
|
hidden?: boolean | undefined;
|
|
2472
2502
|
root?: string | undefined;
|
|
2473
2503
|
}>, z.ZodObject<{
|
|
@@ -2486,6 +2516,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2486
2516
|
}>]>>;
|
|
2487
2517
|
group: z.ZodString;
|
|
2488
2518
|
tag: z.ZodOptional<z.ZodString>;
|
|
2519
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
2489
2520
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2490
2521
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2491
2522
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -2513,6 +2544,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2513
2544
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2514
2545
|
} | undefined;
|
|
2515
2546
|
tag?: string | undefined;
|
|
2547
|
+
public?: boolean | undefined;
|
|
2516
2548
|
hidden?: boolean | undefined;
|
|
2517
2549
|
root?: string | undefined;
|
|
2518
2550
|
}, {
|
|
@@ -2530,6 +2562,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2530
2562
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2531
2563
|
} | undefined;
|
|
2532
2564
|
tag?: string | undefined;
|
|
2565
|
+
public?: boolean | undefined;
|
|
2533
2566
|
hidden?: boolean | undefined;
|
|
2534
2567
|
root?: string | undefined;
|
|
2535
2568
|
}>, z.ZodObject<{
|
|
@@ -2548,6 +2581,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2548
2581
|
}>]>>;
|
|
2549
2582
|
group: z.ZodString;
|
|
2550
2583
|
tag: z.ZodOptional<z.ZodString>;
|
|
2584
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
2551
2585
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2552
2586
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2553
2587
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -2560,6 +2594,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2560
2594
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2561
2595
|
} | undefined;
|
|
2562
2596
|
tag?: string | undefined;
|
|
2597
|
+
public?: boolean | undefined;
|
|
2563
2598
|
hidden?: boolean | undefined;
|
|
2564
2599
|
root?: string | undefined;
|
|
2565
2600
|
}, {
|
|
@@ -2571,6 +2606,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2571
2606
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2572
2607
|
} | undefined;
|
|
2573
2608
|
tag?: string | undefined;
|
|
2609
|
+
public?: boolean | undefined;
|
|
2574
2610
|
hidden?: boolean | undefined;
|
|
2575
2611
|
root?: string | undefined;
|
|
2576
2612
|
}>]>, "many">;
|
|
@@ -2590,6 +2626,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2590
2626
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2591
2627
|
} | undefined;
|
|
2592
2628
|
tag?: string | undefined;
|
|
2629
|
+
public?: boolean | undefined;
|
|
2593
2630
|
hidden?: boolean | undefined;
|
|
2594
2631
|
root?: string | undefined;
|
|
2595
2632
|
} | {
|
|
@@ -2607,6 +2644,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2607
2644
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2608
2645
|
} | undefined;
|
|
2609
2646
|
tag?: string | undefined;
|
|
2647
|
+
public?: boolean | undefined;
|
|
2610
2648
|
hidden?: boolean | undefined;
|
|
2611
2649
|
root?: string | undefined;
|
|
2612
2650
|
} | {
|
|
@@ -2618,6 +2656,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2618
2656
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2619
2657
|
} | undefined;
|
|
2620
2658
|
tag?: string | undefined;
|
|
2659
|
+
public?: boolean | undefined;
|
|
2621
2660
|
hidden?: boolean | undefined;
|
|
2622
2661
|
root?: string | undefined;
|
|
2623
2662
|
})[];
|
|
@@ -2638,6 +2677,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2638
2677
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2639
2678
|
} | undefined;
|
|
2640
2679
|
tag?: string | undefined;
|
|
2680
|
+
public?: boolean | undefined;
|
|
2641
2681
|
hidden?: boolean | undefined;
|
|
2642
2682
|
root?: string | undefined;
|
|
2643
2683
|
} | {
|
|
@@ -2655,6 +2695,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2655
2695
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2656
2696
|
} | undefined;
|
|
2657
2697
|
tag?: string | undefined;
|
|
2698
|
+
public?: boolean | undefined;
|
|
2658
2699
|
hidden?: boolean | undefined;
|
|
2659
2700
|
root?: string | undefined;
|
|
2660
2701
|
} | {
|
|
@@ -2666,6 +2707,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2666
2707
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2667
2708
|
} | undefined;
|
|
2668
2709
|
tag?: string | undefined;
|
|
2710
|
+
public?: boolean | undefined;
|
|
2669
2711
|
hidden?: boolean | undefined;
|
|
2670
2712
|
root?: string | undefined;
|
|
2671
2713
|
})[];
|
|
@@ -3409,6 +3451,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3409
3451
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3410
3452
|
} | undefined;
|
|
3411
3453
|
tag?: string | undefined;
|
|
3454
|
+
public?: boolean | undefined;
|
|
3412
3455
|
hidden?: boolean | undefined;
|
|
3413
3456
|
root?: string | undefined;
|
|
3414
3457
|
} | {
|
|
@@ -3426,6 +3469,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3426
3469
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3427
3470
|
} | undefined;
|
|
3428
3471
|
tag?: string | undefined;
|
|
3472
|
+
public?: boolean | undefined;
|
|
3429
3473
|
hidden?: boolean | undefined;
|
|
3430
3474
|
root?: string | undefined;
|
|
3431
3475
|
} | {
|
|
@@ -3437,6 +3481,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3437
3481
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3438
3482
|
} | undefined;
|
|
3439
3483
|
tag?: string | undefined;
|
|
3484
|
+
public?: boolean | undefined;
|
|
3440
3485
|
hidden?: boolean | undefined;
|
|
3441
3486
|
root?: string | undefined;
|
|
3442
3487
|
})[];
|
|
@@ -3475,6 +3520,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3475
3520
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3476
3521
|
} | undefined;
|
|
3477
3522
|
tag?: string | undefined;
|
|
3523
|
+
public?: boolean | undefined;
|
|
3478
3524
|
hidden?: boolean | undefined;
|
|
3479
3525
|
root?: string | undefined;
|
|
3480
3526
|
} | {
|
|
@@ -3492,6 +3538,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3492
3538
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3493
3539
|
} | undefined;
|
|
3494
3540
|
tag?: string | undefined;
|
|
3541
|
+
public?: boolean | undefined;
|
|
3495
3542
|
hidden?: boolean | undefined;
|
|
3496
3543
|
root?: string | undefined;
|
|
3497
3544
|
} | {
|
|
@@ -3503,6 +3550,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3503
3550
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3504
3551
|
} | undefined;
|
|
3505
3552
|
tag?: string | undefined;
|
|
3553
|
+
public?: boolean | undefined;
|
|
3506
3554
|
hidden?: boolean | undefined;
|
|
3507
3555
|
root?: string | undefined;
|
|
3508
3556
|
})[];
|
|
@@ -3770,6 +3818,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3770
3818
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3771
3819
|
} | undefined;
|
|
3772
3820
|
tag?: string | undefined;
|
|
3821
|
+
public?: boolean | undefined;
|
|
3773
3822
|
hidden?: boolean | undefined;
|
|
3774
3823
|
root?: string | undefined;
|
|
3775
3824
|
} | {
|
|
@@ -3787,6 +3836,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3787
3836
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3788
3837
|
} | undefined;
|
|
3789
3838
|
tag?: string | undefined;
|
|
3839
|
+
public?: boolean | undefined;
|
|
3790
3840
|
hidden?: boolean | undefined;
|
|
3791
3841
|
root?: string | undefined;
|
|
3792
3842
|
} | {
|
|
@@ -3798,6 +3848,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3798
3848
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3799
3849
|
} | undefined;
|
|
3800
3850
|
tag?: string | undefined;
|
|
3851
|
+
public?: boolean | undefined;
|
|
3801
3852
|
hidden?: boolean | undefined;
|
|
3802
3853
|
root?: string | undefined;
|
|
3803
3854
|
})[];
|
|
@@ -3836,6 +3887,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3836
3887
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3837
3888
|
} | undefined;
|
|
3838
3889
|
tag?: string | undefined;
|
|
3890
|
+
public?: boolean | undefined;
|
|
3839
3891
|
hidden?: boolean | undefined;
|
|
3840
3892
|
root?: string | undefined;
|
|
3841
3893
|
} | {
|
|
@@ -3853,6 +3905,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3853
3905
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3854
3906
|
} | undefined;
|
|
3855
3907
|
tag?: string | undefined;
|
|
3908
|
+
public?: boolean | undefined;
|
|
3856
3909
|
hidden?: boolean | undefined;
|
|
3857
3910
|
root?: string | undefined;
|
|
3858
3911
|
} | {
|
|
@@ -3864,6 +3917,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3864
3917
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3865
3918
|
} | undefined;
|
|
3866
3919
|
tag?: string | undefined;
|
|
3920
|
+
public?: boolean | undefined;
|
|
3867
3921
|
hidden?: boolean | undefined;
|
|
3868
3922
|
root?: string | undefined;
|
|
3869
3923
|
})[];
|
|
@@ -4470,6 +4524,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4470
4524
|
}>]>>;
|
|
4471
4525
|
group: z.ZodString;
|
|
4472
4526
|
tag: z.ZodOptional<z.ZodString>;
|
|
4527
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
4473
4528
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
4474
4529
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4475
4530
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -4497,6 +4552,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4497
4552
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4498
4553
|
} | undefined;
|
|
4499
4554
|
tag?: string | undefined;
|
|
4555
|
+
public?: boolean | undefined;
|
|
4500
4556
|
hidden?: boolean | undefined;
|
|
4501
4557
|
root?: string | undefined;
|
|
4502
4558
|
}, {
|
|
@@ -4514,6 +4570,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4514
4570
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4515
4571
|
} | undefined;
|
|
4516
4572
|
tag?: string | undefined;
|
|
4573
|
+
public?: boolean | undefined;
|
|
4517
4574
|
hidden?: boolean | undefined;
|
|
4518
4575
|
root?: string | undefined;
|
|
4519
4576
|
}>, z.ZodObject<{
|
|
@@ -4532,6 +4589,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4532
4589
|
}>]>>;
|
|
4533
4590
|
group: z.ZodString;
|
|
4534
4591
|
tag: z.ZodOptional<z.ZodString>;
|
|
4592
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
4535
4593
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
4536
4594
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4537
4595
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -4559,6 +4617,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4559
4617
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4560
4618
|
} | undefined;
|
|
4561
4619
|
tag?: string | undefined;
|
|
4620
|
+
public?: boolean | undefined;
|
|
4562
4621
|
hidden?: boolean | undefined;
|
|
4563
4622
|
root?: string | undefined;
|
|
4564
4623
|
}, {
|
|
@@ -4576,6 +4635,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4576
4635
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4577
4636
|
} | undefined;
|
|
4578
4637
|
tag?: string | undefined;
|
|
4638
|
+
public?: boolean | undefined;
|
|
4579
4639
|
hidden?: boolean | undefined;
|
|
4580
4640
|
root?: string | undefined;
|
|
4581
4641
|
}>, z.ZodObject<{
|
|
@@ -4594,6 +4654,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4594
4654
|
}>]>>;
|
|
4595
4655
|
group: z.ZodString;
|
|
4596
4656
|
tag: z.ZodOptional<z.ZodString>;
|
|
4657
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
4597
4658
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
4598
4659
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4599
4660
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -4606,6 +4667,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4606
4667
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4607
4668
|
} | undefined;
|
|
4608
4669
|
tag?: string | undefined;
|
|
4670
|
+
public?: boolean | undefined;
|
|
4609
4671
|
hidden?: boolean | undefined;
|
|
4610
4672
|
root?: string | undefined;
|
|
4611
4673
|
}, {
|
|
@@ -4617,6 +4679,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4617
4679
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4618
4680
|
} | undefined;
|
|
4619
4681
|
tag?: string | undefined;
|
|
4682
|
+
public?: boolean | undefined;
|
|
4620
4683
|
hidden?: boolean | undefined;
|
|
4621
4684
|
root?: string | undefined;
|
|
4622
4685
|
}>]>, "many">;
|
|
@@ -4636,6 +4699,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4636
4699
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4637
4700
|
} | undefined;
|
|
4638
4701
|
tag?: string | undefined;
|
|
4702
|
+
public?: boolean | undefined;
|
|
4639
4703
|
hidden?: boolean | undefined;
|
|
4640
4704
|
root?: string | undefined;
|
|
4641
4705
|
} | {
|
|
@@ -4653,6 +4717,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4653
4717
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4654
4718
|
} | undefined;
|
|
4655
4719
|
tag?: string | undefined;
|
|
4720
|
+
public?: boolean | undefined;
|
|
4656
4721
|
hidden?: boolean | undefined;
|
|
4657
4722
|
root?: string | undefined;
|
|
4658
4723
|
} | {
|
|
@@ -4664,6 +4729,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4664
4729
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4665
4730
|
} | undefined;
|
|
4666
4731
|
tag?: string | undefined;
|
|
4732
|
+
public?: boolean | undefined;
|
|
4667
4733
|
hidden?: boolean | undefined;
|
|
4668
4734
|
root?: string | undefined;
|
|
4669
4735
|
})[];
|
|
@@ -4684,6 +4750,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4684
4750
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4685
4751
|
} | undefined;
|
|
4686
4752
|
tag?: string | undefined;
|
|
4753
|
+
public?: boolean | undefined;
|
|
4687
4754
|
hidden?: boolean | undefined;
|
|
4688
4755
|
root?: string | undefined;
|
|
4689
4756
|
} | {
|
|
@@ -4701,6 +4768,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4701
4768
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4702
4769
|
} | undefined;
|
|
4703
4770
|
tag?: string | undefined;
|
|
4771
|
+
public?: boolean | undefined;
|
|
4704
4772
|
hidden?: boolean | undefined;
|
|
4705
4773
|
root?: string | undefined;
|
|
4706
4774
|
} | {
|
|
@@ -4712,6 +4780,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4712
4780
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4713
4781
|
} | undefined;
|
|
4714
4782
|
tag?: string | undefined;
|
|
4783
|
+
public?: boolean | undefined;
|
|
4715
4784
|
hidden?: boolean | undefined;
|
|
4716
4785
|
root?: string | undefined;
|
|
4717
4786
|
})[];
|
|
@@ -5455,6 +5524,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5455
5524
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5456
5525
|
} | undefined;
|
|
5457
5526
|
tag?: string | undefined;
|
|
5527
|
+
public?: boolean | undefined;
|
|
5458
5528
|
hidden?: boolean | undefined;
|
|
5459
5529
|
root?: string | undefined;
|
|
5460
5530
|
} | {
|
|
@@ -5472,6 +5542,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5472
5542
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5473
5543
|
} | undefined;
|
|
5474
5544
|
tag?: string | undefined;
|
|
5545
|
+
public?: boolean | undefined;
|
|
5475
5546
|
hidden?: boolean | undefined;
|
|
5476
5547
|
root?: string | undefined;
|
|
5477
5548
|
} | {
|
|
@@ -5483,6 +5554,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5483
5554
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5484
5555
|
} | undefined;
|
|
5485
5556
|
tag?: string | undefined;
|
|
5557
|
+
public?: boolean | undefined;
|
|
5486
5558
|
hidden?: boolean | undefined;
|
|
5487
5559
|
root?: string | undefined;
|
|
5488
5560
|
})[];
|
|
@@ -5521,6 +5593,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5521
5593
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5522
5594
|
} | undefined;
|
|
5523
5595
|
tag?: string | undefined;
|
|
5596
|
+
public?: boolean | undefined;
|
|
5524
5597
|
hidden?: boolean | undefined;
|
|
5525
5598
|
root?: string | undefined;
|
|
5526
5599
|
} | {
|
|
@@ -5538,6 +5611,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5538
5611
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5539
5612
|
} | undefined;
|
|
5540
5613
|
tag?: string | undefined;
|
|
5614
|
+
public?: boolean | undefined;
|
|
5541
5615
|
hidden?: boolean | undefined;
|
|
5542
5616
|
root?: string | undefined;
|
|
5543
5617
|
} | {
|
|
@@ -5549,6 +5623,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5549
5623
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5550
5624
|
} | undefined;
|
|
5551
5625
|
tag?: string | undefined;
|
|
5626
|
+
public?: boolean | undefined;
|
|
5552
5627
|
hidden?: boolean | undefined;
|
|
5553
5628
|
root?: string | undefined;
|
|
5554
5629
|
})[];
|
|
@@ -5816,6 +5891,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5816
5891
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5817
5892
|
} | undefined;
|
|
5818
5893
|
tag?: string | undefined;
|
|
5894
|
+
public?: boolean | undefined;
|
|
5819
5895
|
hidden?: boolean | undefined;
|
|
5820
5896
|
root?: string | undefined;
|
|
5821
5897
|
} | {
|
|
@@ -5833,6 +5909,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5833
5909
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5834
5910
|
} | undefined;
|
|
5835
5911
|
tag?: string | undefined;
|
|
5912
|
+
public?: boolean | undefined;
|
|
5836
5913
|
hidden?: boolean | undefined;
|
|
5837
5914
|
root?: string | undefined;
|
|
5838
5915
|
} | {
|
|
@@ -5844,6 +5921,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5844
5921
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5845
5922
|
} | undefined;
|
|
5846
5923
|
tag?: string | undefined;
|
|
5924
|
+
public?: boolean | undefined;
|
|
5847
5925
|
hidden?: boolean | undefined;
|
|
5848
5926
|
root?: string | undefined;
|
|
5849
5927
|
})[];
|
|
@@ -5882,6 +5960,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5882
5960
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5883
5961
|
} | undefined;
|
|
5884
5962
|
tag?: string | undefined;
|
|
5963
|
+
public?: boolean | undefined;
|
|
5885
5964
|
hidden?: boolean | undefined;
|
|
5886
5965
|
root?: string | undefined;
|
|
5887
5966
|
} | {
|
|
@@ -5899,6 +5978,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5899
5978
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5900
5979
|
} | undefined;
|
|
5901
5980
|
tag?: string | undefined;
|
|
5981
|
+
public?: boolean | undefined;
|
|
5902
5982
|
hidden?: boolean | undefined;
|
|
5903
5983
|
root?: string | undefined;
|
|
5904
5984
|
} | {
|
|
@@ -5910,6 +5990,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5910
5990
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5911
5991
|
} | undefined;
|
|
5912
5992
|
tag?: string | undefined;
|
|
5993
|
+
public?: boolean | undefined;
|
|
5913
5994
|
hidden?: boolean | undefined;
|
|
5914
5995
|
root?: string | undefined;
|
|
5915
5996
|
})[];
|
|
@@ -6516,6 +6597,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6516
6597
|
}>]>>;
|
|
6517
6598
|
group: z.ZodString;
|
|
6518
6599
|
tag: z.ZodOptional<z.ZodString>;
|
|
6600
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
6519
6601
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
6520
6602
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
6521
6603
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -6543,6 +6625,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6543
6625
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6544
6626
|
} | undefined;
|
|
6545
6627
|
tag?: string | undefined;
|
|
6628
|
+
public?: boolean | undefined;
|
|
6546
6629
|
hidden?: boolean | undefined;
|
|
6547
6630
|
root?: string | undefined;
|
|
6548
6631
|
}, {
|
|
@@ -6560,6 +6643,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6560
6643
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6561
6644
|
} | undefined;
|
|
6562
6645
|
tag?: string | undefined;
|
|
6646
|
+
public?: boolean | undefined;
|
|
6563
6647
|
hidden?: boolean | undefined;
|
|
6564
6648
|
root?: string | undefined;
|
|
6565
6649
|
}>, z.ZodObject<{
|
|
@@ -6578,6 +6662,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6578
6662
|
}>]>>;
|
|
6579
6663
|
group: z.ZodString;
|
|
6580
6664
|
tag: z.ZodOptional<z.ZodString>;
|
|
6665
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
6581
6666
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
6582
6667
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
6583
6668
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -6605,6 +6690,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6605
6690
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6606
6691
|
} | undefined;
|
|
6607
6692
|
tag?: string | undefined;
|
|
6693
|
+
public?: boolean | undefined;
|
|
6608
6694
|
hidden?: boolean | undefined;
|
|
6609
6695
|
root?: string | undefined;
|
|
6610
6696
|
}, {
|
|
@@ -6622,6 +6708,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6622
6708
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6623
6709
|
} | undefined;
|
|
6624
6710
|
tag?: string | undefined;
|
|
6711
|
+
public?: boolean | undefined;
|
|
6625
6712
|
hidden?: boolean | undefined;
|
|
6626
6713
|
root?: string | undefined;
|
|
6627
6714
|
}>, z.ZodObject<{
|
|
@@ -6640,6 +6727,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6640
6727
|
}>]>>;
|
|
6641
6728
|
group: z.ZodString;
|
|
6642
6729
|
tag: z.ZodOptional<z.ZodString>;
|
|
6730
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
6643
6731
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
6644
6732
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
6645
6733
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -6652,6 +6740,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6652
6740
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6653
6741
|
} | undefined;
|
|
6654
6742
|
tag?: string | undefined;
|
|
6743
|
+
public?: boolean | undefined;
|
|
6655
6744
|
hidden?: boolean | undefined;
|
|
6656
6745
|
root?: string | undefined;
|
|
6657
6746
|
}, {
|
|
@@ -6663,6 +6752,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6663
6752
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6664
6753
|
} | undefined;
|
|
6665
6754
|
tag?: string | undefined;
|
|
6755
|
+
public?: boolean | undefined;
|
|
6666
6756
|
hidden?: boolean | undefined;
|
|
6667
6757
|
root?: string | undefined;
|
|
6668
6758
|
}>]>, "many">;
|
|
@@ -6682,6 +6772,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6682
6772
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6683
6773
|
} | undefined;
|
|
6684
6774
|
tag?: string | undefined;
|
|
6775
|
+
public?: boolean | undefined;
|
|
6685
6776
|
hidden?: boolean | undefined;
|
|
6686
6777
|
root?: string | undefined;
|
|
6687
6778
|
} | {
|
|
@@ -6699,6 +6790,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6699
6790
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6700
6791
|
} | undefined;
|
|
6701
6792
|
tag?: string | undefined;
|
|
6793
|
+
public?: boolean | undefined;
|
|
6702
6794
|
hidden?: boolean | undefined;
|
|
6703
6795
|
root?: string | undefined;
|
|
6704
6796
|
} | {
|
|
@@ -6710,6 +6802,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6710
6802
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6711
6803
|
} | undefined;
|
|
6712
6804
|
tag?: string | undefined;
|
|
6805
|
+
public?: boolean | undefined;
|
|
6713
6806
|
hidden?: boolean | undefined;
|
|
6714
6807
|
root?: string | undefined;
|
|
6715
6808
|
})[];
|
|
@@ -6730,6 +6823,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6730
6823
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6731
6824
|
} | undefined;
|
|
6732
6825
|
tag?: string | undefined;
|
|
6826
|
+
public?: boolean | undefined;
|
|
6733
6827
|
hidden?: boolean | undefined;
|
|
6734
6828
|
root?: string | undefined;
|
|
6735
6829
|
} | {
|
|
@@ -6747,6 +6841,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6747
6841
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6748
6842
|
} | undefined;
|
|
6749
6843
|
tag?: string | undefined;
|
|
6844
|
+
public?: boolean | undefined;
|
|
6750
6845
|
hidden?: boolean | undefined;
|
|
6751
6846
|
root?: string | undefined;
|
|
6752
6847
|
} | {
|
|
@@ -6758,6 +6853,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6758
6853
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6759
6854
|
} | undefined;
|
|
6760
6855
|
tag?: string | undefined;
|
|
6856
|
+
public?: boolean | undefined;
|
|
6761
6857
|
hidden?: boolean | undefined;
|
|
6762
6858
|
root?: string | undefined;
|
|
6763
6859
|
})[];
|
|
@@ -7501,6 +7597,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7501
7597
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7502
7598
|
} | undefined;
|
|
7503
7599
|
tag?: string | undefined;
|
|
7600
|
+
public?: boolean | undefined;
|
|
7504
7601
|
hidden?: boolean | undefined;
|
|
7505
7602
|
root?: string | undefined;
|
|
7506
7603
|
} | {
|
|
@@ -7518,6 +7615,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7518
7615
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7519
7616
|
} | undefined;
|
|
7520
7617
|
tag?: string | undefined;
|
|
7618
|
+
public?: boolean | undefined;
|
|
7521
7619
|
hidden?: boolean | undefined;
|
|
7522
7620
|
root?: string | undefined;
|
|
7523
7621
|
} | {
|
|
@@ -7529,6 +7627,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7529
7627
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7530
7628
|
} | undefined;
|
|
7531
7629
|
tag?: string | undefined;
|
|
7630
|
+
public?: boolean | undefined;
|
|
7532
7631
|
hidden?: boolean | undefined;
|
|
7533
7632
|
root?: string | undefined;
|
|
7534
7633
|
})[];
|
|
@@ -7567,6 +7666,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7567
7666
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7568
7667
|
} | undefined;
|
|
7569
7668
|
tag?: string | undefined;
|
|
7669
|
+
public?: boolean | undefined;
|
|
7570
7670
|
hidden?: boolean | undefined;
|
|
7571
7671
|
root?: string | undefined;
|
|
7572
7672
|
} | {
|
|
@@ -7584,6 +7684,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7584
7684
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7585
7685
|
} | undefined;
|
|
7586
7686
|
tag?: string | undefined;
|
|
7687
|
+
public?: boolean | undefined;
|
|
7587
7688
|
hidden?: boolean | undefined;
|
|
7588
7689
|
root?: string | undefined;
|
|
7589
7690
|
} | {
|
|
@@ -7595,6 +7696,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7595
7696
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7596
7697
|
} | undefined;
|
|
7597
7698
|
tag?: string | undefined;
|
|
7699
|
+
public?: boolean | undefined;
|
|
7598
7700
|
hidden?: boolean | undefined;
|
|
7599
7701
|
root?: string | undefined;
|
|
7600
7702
|
})[];
|
|
@@ -7862,6 +7964,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7862
7964
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7863
7965
|
} | undefined;
|
|
7864
7966
|
tag?: string | undefined;
|
|
7967
|
+
public?: boolean | undefined;
|
|
7865
7968
|
hidden?: boolean | undefined;
|
|
7866
7969
|
root?: string | undefined;
|
|
7867
7970
|
} | {
|
|
@@ -7879,6 +7982,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7879
7982
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7880
7983
|
} | undefined;
|
|
7881
7984
|
tag?: string | undefined;
|
|
7985
|
+
public?: boolean | undefined;
|
|
7882
7986
|
hidden?: boolean | undefined;
|
|
7883
7987
|
root?: string | undefined;
|
|
7884
7988
|
} | {
|
|
@@ -7890,6 +7994,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7890
7994
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7891
7995
|
} | undefined;
|
|
7892
7996
|
tag?: string | undefined;
|
|
7997
|
+
public?: boolean | undefined;
|
|
7893
7998
|
hidden?: boolean | undefined;
|
|
7894
7999
|
root?: string | undefined;
|
|
7895
8000
|
})[];
|
|
@@ -7928,6 +8033,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7928
8033
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7929
8034
|
} | undefined;
|
|
7930
8035
|
tag?: string | undefined;
|
|
8036
|
+
public?: boolean | undefined;
|
|
7931
8037
|
hidden?: boolean | undefined;
|
|
7932
8038
|
root?: string | undefined;
|
|
7933
8039
|
} | {
|
|
@@ -7945,6 +8051,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7945
8051
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7946
8052
|
} | undefined;
|
|
7947
8053
|
tag?: string | undefined;
|
|
8054
|
+
public?: boolean | undefined;
|
|
7948
8055
|
hidden?: boolean | undefined;
|
|
7949
8056
|
root?: string | undefined;
|
|
7950
8057
|
} | {
|
|
@@ -7956,6 +8063,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7956
8063
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7957
8064
|
} | undefined;
|
|
7958
8065
|
tag?: string | undefined;
|
|
8066
|
+
public?: boolean | undefined;
|
|
7959
8067
|
hidden?: boolean | undefined;
|
|
7960
8068
|
root?: string | undefined;
|
|
7961
8069
|
})[];
|
|
@@ -8562,6 +8670,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8562
8670
|
}>]>>;
|
|
8563
8671
|
group: z.ZodString;
|
|
8564
8672
|
tag: z.ZodOptional<z.ZodString>;
|
|
8673
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
8565
8674
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
8566
8675
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
8567
8676
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -8589,6 +8698,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8589
8698
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8590
8699
|
} | undefined;
|
|
8591
8700
|
tag?: string | undefined;
|
|
8701
|
+
public?: boolean | undefined;
|
|
8592
8702
|
hidden?: boolean | undefined;
|
|
8593
8703
|
root?: string | undefined;
|
|
8594
8704
|
}, {
|
|
@@ -8606,6 +8716,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8606
8716
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8607
8717
|
} | undefined;
|
|
8608
8718
|
tag?: string | undefined;
|
|
8719
|
+
public?: boolean | undefined;
|
|
8609
8720
|
hidden?: boolean | undefined;
|
|
8610
8721
|
root?: string | undefined;
|
|
8611
8722
|
}>, z.ZodObject<{
|
|
@@ -8624,6 +8735,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8624
8735
|
}>]>>;
|
|
8625
8736
|
group: z.ZodString;
|
|
8626
8737
|
tag: z.ZodOptional<z.ZodString>;
|
|
8738
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
8627
8739
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
8628
8740
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
8629
8741
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -8651,6 +8763,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8651
8763
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8652
8764
|
} | undefined;
|
|
8653
8765
|
tag?: string | undefined;
|
|
8766
|
+
public?: boolean | undefined;
|
|
8654
8767
|
hidden?: boolean | undefined;
|
|
8655
8768
|
root?: string | undefined;
|
|
8656
8769
|
}, {
|
|
@@ -8668,6 +8781,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8668
8781
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8669
8782
|
} | undefined;
|
|
8670
8783
|
tag?: string | undefined;
|
|
8784
|
+
public?: boolean | undefined;
|
|
8671
8785
|
hidden?: boolean | undefined;
|
|
8672
8786
|
root?: string | undefined;
|
|
8673
8787
|
}>, z.ZodObject<{
|
|
@@ -8686,6 +8800,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8686
8800
|
}>]>>;
|
|
8687
8801
|
group: z.ZodString;
|
|
8688
8802
|
tag: z.ZodOptional<z.ZodString>;
|
|
8803
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
8689
8804
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
8690
8805
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
8691
8806
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -8698,6 +8813,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8698
8813
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8699
8814
|
} | undefined;
|
|
8700
8815
|
tag?: string | undefined;
|
|
8816
|
+
public?: boolean | undefined;
|
|
8701
8817
|
hidden?: boolean | undefined;
|
|
8702
8818
|
root?: string | undefined;
|
|
8703
8819
|
}, {
|
|
@@ -8709,6 +8825,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8709
8825
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8710
8826
|
} | undefined;
|
|
8711
8827
|
tag?: string | undefined;
|
|
8828
|
+
public?: boolean | undefined;
|
|
8712
8829
|
hidden?: boolean | undefined;
|
|
8713
8830
|
root?: string | undefined;
|
|
8714
8831
|
}>]>, "many">;
|
|
@@ -8728,6 +8845,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8728
8845
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8729
8846
|
} | undefined;
|
|
8730
8847
|
tag?: string | undefined;
|
|
8848
|
+
public?: boolean | undefined;
|
|
8731
8849
|
hidden?: boolean | undefined;
|
|
8732
8850
|
root?: string | undefined;
|
|
8733
8851
|
} | {
|
|
@@ -8745,6 +8863,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8745
8863
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8746
8864
|
} | undefined;
|
|
8747
8865
|
tag?: string | undefined;
|
|
8866
|
+
public?: boolean | undefined;
|
|
8748
8867
|
hidden?: boolean | undefined;
|
|
8749
8868
|
root?: string | undefined;
|
|
8750
8869
|
} | {
|
|
@@ -8756,6 +8875,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8756
8875
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8757
8876
|
} | undefined;
|
|
8758
8877
|
tag?: string | undefined;
|
|
8878
|
+
public?: boolean | undefined;
|
|
8759
8879
|
hidden?: boolean | undefined;
|
|
8760
8880
|
root?: string | undefined;
|
|
8761
8881
|
})[];
|
|
@@ -8776,6 +8896,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8776
8896
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8777
8897
|
} | undefined;
|
|
8778
8898
|
tag?: string | undefined;
|
|
8899
|
+
public?: boolean | undefined;
|
|
8779
8900
|
hidden?: boolean | undefined;
|
|
8780
8901
|
root?: string | undefined;
|
|
8781
8902
|
} | {
|
|
@@ -8793,6 +8914,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8793
8914
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8794
8915
|
} | undefined;
|
|
8795
8916
|
tag?: string | undefined;
|
|
8917
|
+
public?: boolean | undefined;
|
|
8796
8918
|
hidden?: boolean | undefined;
|
|
8797
8919
|
root?: string | undefined;
|
|
8798
8920
|
} | {
|
|
@@ -8804,6 +8926,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8804
8926
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8805
8927
|
} | undefined;
|
|
8806
8928
|
tag?: string | undefined;
|
|
8929
|
+
public?: boolean | undefined;
|
|
8807
8930
|
hidden?: boolean | undefined;
|
|
8808
8931
|
root?: string | undefined;
|
|
8809
8932
|
})[];
|
|
@@ -9547,6 +9670,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9547
9670
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9548
9671
|
} | undefined;
|
|
9549
9672
|
tag?: string | undefined;
|
|
9673
|
+
public?: boolean | undefined;
|
|
9550
9674
|
hidden?: boolean | undefined;
|
|
9551
9675
|
root?: string | undefined;
|
|
9552
9676
|
} | {
|
|
@@ -9564,6 +9688,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9564
9688
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9565
9689
|
} | undefined;
|
|
9566
9690
|
tag?: string | undefined;
|
|
9691
|
+
public?: boolean | undefined;
|
|
9567
9692
|
hidden?: boolean | undefined;
|
|
9568
9693
|
root?: string | undefined;
|
|
9569
9694
|
} | {
|
|
@@ -9575,6 +9700,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9575
9700
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9576
9701
|
} | undefined;
|
|
9577
9702
|
tag?: string | undefined;
|
|
9703
|
+
public?: boolean | undefined;
|
|
9578
9704
|
hidden?: boolean | undefined;
|
|
9579
9705
|
root?: string | undefined;
|
|
9580
9706
|
})[];
|
|
@@ -9613,6 +9739,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9613
9739
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9614
9740
|
} | undefined;
|
|
9615
9741
|
tag?: string | undefined;
|
|
9742
|
+
public?: boolean | undefined;
|
|
9616
9743
|
hidden?: boolean | undefined;
|
|
9617
9744
|
root?: string | undefined;
|
|
9618
9745
|
} | {
|
|
@@ -9630,6 +9757,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9630
9757
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9631
9758
|
} | undefined;
|
|
9632
9759
|
tag?: string | undefined;
|
|
9760
|
+
public?: boolean | undefined;
|
|
9633
9761
|
hidden?: boolean | undefined;
|
|
9634
9762
|
root?: string | undefined;
|
|
9635
9763
|
} | {
|
|
@@ -9641,6 +9769,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9641
9769
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9642
9770
|
} | undefined;
|
|
9643
9771
|
tag?: string | undefined;
|
|
9772
|
+
public?: boolean | undefined;
|
|
9644
9773
|
hidden?: boolean | undefined;
|
|
9645
9774
|
root?: string | undefined;
|
|
9646
9775
|
})[];
|
|
@@ -9908,6 +10037,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9908
10037
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9909
10038
|
} | undefined;
|
|
9910
10039
|
tag?: string | undefined;
|
|
10040
|
+
public?: boolean | undefined;
|
|
9911
10041
|
hidden?: boolean | undefined;
|
|
9912
10042
|
root?: string | undefined;
|
|
9913
10043
|
} | {
|
|
@@ -9925,6 +10055,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9925
10055
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9926
10056
|
} | undefined;
|
|
9927
10057
|
tag?: string | undefined;
|
|
10058
|
+
public?: boolean | undefined;
|
|
9928
10059
|
hidden?: boolean | undefined;
|
|
9929
10060
|
root?: string | undefined;
|
|
9930
10061
|
} | {
|
|
@@ -9936,6 +10067,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9936
10067
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9937
10068
|
} | undefined;
|
|
9938
10069
|
tag?: string | undefined;
|
|
10070
|
+
public?: boolean | undefined;
|
|
9939
10071
|
hidden?: boolean | undefined;
|
|
9940
10072
|
root?: string | undefined;
|
|
9941
10073
|
})[];
|
|
@@ -9974,6 +10106,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9974
10106
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9975
10107
|
} | undefined;
|
|
9976
10108
|
tag?: string | undefined;
|
|
10109
|
+
public?: boolean | undefined;
|
|
9977
10110
|
hidden?: boolean | undefined;
|
|
9978
10111
|
root?: string | undefined;
|
|
9979
10112
|
} | {
|
|
@@ -9991,6 +10124,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9991
10124
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9992
10125
|
} | undefined;
|
|
9993
10126
|
tag?: string | undefined;
|
|
10127
|
+
public?: boolean | undefined;
|
|
9994
10128
|
hidden?: boolean | undefined;
|
|
9995
10129
|
root?: string | undefined;
|
|
9996
10130
|
} | {
|
|
@@ -10002,6 +10136,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10002
10136
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10003
10137
|
} | undefined;
|
|
10004
10138
|
tag?: string | undefined;
|
|
10139
|
+
public?: boolean | undefined;
|
|
10005
10140
|
hidden?: boolean | undefined;
|
|
10006
10141
|
root?: string | undefined;
|
|
10007
10142
|
})[];
|
|
@@ -10608,6 +10743,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10608
10743
|
}>]>>;
|
|
10609
10744
|
group: z.ZodString;
|
|
10610
10745
|
tag: z.ZodOptional<z.ZodString>;
|
|
10746
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
10611
10747
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
10612
10748
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
10613
10749
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -10635,6 +10771,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10635
10771
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10636
10772
|
} | undefined;
|
|
10637
10773
|
tag?: string | undefined;
|
|
10774
|
+
public?: boolean | undefined;
|
|
10638
10775
|
hidden?: boolean | undefined;
|
|
10639
10776
|
root?: string | undefined;
|
|
10640
10777
|
}, {
|
|
@@ -10652,6 +10789,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10652
10789
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10653
10790
|
} | undefined;
|
|
10654
10791
|
tag?: string | undefined;
|
|
10792
|
+
public?: boolean | undefined;
|
|
10655
10793
|
hidden?: boolean | undefined;
|
|
10656
10794
|
root?: string | undefined;
|
|
10657
10795
|
}>, z.ZodObject<{
|
|
@@ -10670,6 +10808,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10670
10808
|
}>]>>;
|
|
10671
10809
|
group: z.ZodString;
|
|
10672
10810
|
tag: z.ZodOptional<z.ZodString>;
|
|
10811
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
10673
10812
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
10674
10813
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
10675
10814
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -10697,6 +10836,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10697
10836
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10698
10837
|
} | undefined;
|
|
10699
10838
|
tag?: string | undefined;
|
|
10839
|
+
public?: boolean | undefined;
|
|
10700
10840
|
hidden?: boolean | undefined;
|
|
10701
10841
|
root?: string | undefined;
|
|
10702
10842
|
}, {
|
|
@@ -10714,6 +10854,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10714
10854
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10715
10855
|
} | undefined;
|
|
10716
10856
|
tag?: string | undefined;
|
|
10857
|
+
public?: boolean | undefined;
|
|
10717
10858
|
hidden?: boolean | undefined;
|
|
10718
10859
|
root?: string | undefined;
|
|
10719
10860
|
}>, z.ZodObject<{
|
|
@@ -10732,6 +10873,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10732
10873
|
}>]>>;
|
|
10733
10874
|
group: z.ZodString;
|
|
10734
10875
|
tag: z.ZodOptional<z.ZodString>;
|
|
10876
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
10735
10877
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
10736
10878
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
10737
10879
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -10744,6 +10886,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10744
10886
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10745
10887
|
} | undefined;
|
|
10746
10888
|
tag?: string | undefined;
|
|
10889
|
+
public?: boolean | undefined;
|
|
10747
10890
|
hidden?: boolean | undefined;
|
|
10748
10891
|
root?: string | undefined;
|
|
10749
10892
|
}, {
|
|
@@ -10755,6 +10898,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10755
10898
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10756
10899
|
} | undefined;
|
|
10757
10900
|
tag?: string | undefined;
|
|
10901
|
+
public?: boolean | undefined;
|
|
10758
10902
|
hidden?: boolean | undefined;
|
|
10759
10903
|
root?: string | undefined;
|
|
10760
10904
|
}>]>, "many">;
|
|
@@ -10774,6 +10918,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10774
10918
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10775
10919
|
} | undefined;
|
|
10776
10920
|
tag?: string | undefined;
|
|
10921
|
+
public?: boolean | undefined;
|
|
10777
10922
|
hidden?: boolean | undefined;
|
|
10778
10923
|
root?: string | undefined;
|
|
10779
10924
|
} | {
|
|
@@ -10791,6 +10936,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10791
10936
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10792
10937
|
} | undefined;
|
|
10793
10938
|
tag?: string | undefined;
|
|
10939
|
+
public?: boolean | undefined;
|
|
10794
10940
|
hidden?: boolean | undefined;
|
|
10795
10941
|
root?: string | undefined;
|
|
10796
10942
|
} | {
|
|
@@ -10802,6 +10948,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10802
10948
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10803
10949
|
} | undefined;
|
|
10804
10950
|
tag?: string | undefined;
|
|
10951
|
+
public?: boolean | undefined;
|
|
10805
10952
|
hidden?: boolean | undefined;
|
|
10806
10953
|
root?: string | undefined;
|
|
10807
10954
|
})[];
|
|
@@ -10822,6 +10969,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10822
10969
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10823
10970
|
} | undefined;
|
|
10824
10971
|
tag?: string | undefined;
|
|
10972
|
+
public?: boolean | undefined;
|
|
10825
10973
|
hidden?: boolean | undefined;
|
|
10826
10974
|
root?: string | undefined;
|
|
10827
10975
|
} | {
|
|
@@ -10839,6 +10987,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10839
10987
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10840
10988
|
} | undefined;
|
|
10841
10989
|
tag?: string | undefined;
|
|
10990
|
+
public?: boolean | undefined;
|
|
10842
10991
|
hidden?: boolean | undefined;
|
|
10843
10992
|
root?: string | undefined;
|
|
10844
10993
|
} | {
|
|
@@ -10850,6 +10999,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10850
10999
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10851
11000
|
} | undefined;
|
|
10852
11001
|
tag?: string | undefined;
|
|
11002
|
+
public?: boolean | undefined;
|
|
10853
11003
|
hidden?: boolean | undefined;
|
|
10854
11004
|
root?: string | undefined;
|
|
10855
11005
|
})[];
|
|
@@ -11593,6 +11743,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11593
11743
|
library?: "fontawesome" | "lucide" | undefined;
|
|
11594
11744
|
} | undefined;
|
|
11595
11745
|
tag?: string | undefined;
|
|
11746
|
+
public?: boolean | undefined;
|
|
11596
11747
|
hidden?: boolean | undefined;
|
|
11597
11748
|
root?: string | undefined;
|
|
11598
11749
|
} | {
|
|
@@ -11610,6 +11761,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11610
11761
|
library?: "fontawesome" | "lucide" | undefined;
|
|
11611
11762
|
} | undefined;
|
|
11612
11763
|
tag?: string | undefined;
|
|
11764
|
+
public?: boolean | undefined;
|
|
11613
11765
|
hidden?: boolean | undefined;
|
|
11614
11766
|
root?: string | undefined;
|
|
11615
11767
|
} | {
|
|
@@ -11621,6 +11773,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11621
11773
|
library?: "fontawesome" | "lucide" | undefined;
|
|
11622
11774
|
} | undefined;
|
|
11623
11775
|
tag?: string | undefined;
|
|
11776
|
+
public?: boolean | undefined;
|
|
11624
11777
|
hidden?: boolean | undefined;
|
|
11625
11778
|
root?: string | undefined;
|
|
11626
11779
|
})[];
|
|
@@ -11659,6 +11812,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11659
11812
|
library?: "fontawesome" | "lucide" | undefined;
|
|
11660
11813
|
} | undefined;
|
|
11661
11814
|
tag?: string | undefined;
|
|
11815
|
+
public?: boolean | undefined;
|
|
11662
11816
|
hidden?: boolean | undefined;
|
|
11663
11817
|
root?: string | undefined;
|
|
11664
11818
|
} | {
|
|
@@ -11676,6 +11830,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11676
11830
|
library?: "fontawesome" | "lucide" | undefined;
|
|
11677
11831
|
} | undefined;
|
|
11678
11832
|
tag?: string | undefined;
|
|
11833
|
+
public?: boolean | undefined;
|
|
11679
11834
|
hidden?: boolean | undefined;
|
|
11680
11835
|
root?: string | undefined;
|
|
11681
11836
|
} | {
|
|
@@ -11687,6 +11842,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11687
11842
|
library?: "fontawesome" | "lucide" | undefined;
|
|
11688
11843
|
} | undefined;
|
|
11689
11844
|
tag?: string | undefined;
|
|
11845
|
+
public?: boolean | undefined;
|
|
11690
11846
|
hidden?: boolean | undefined;
|
|
11691
11847
|
root?: string | undefined;
|
|
11692
11848
|
})[];
|
|
@@ -11954,6 +12110,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11954
12110
|
library?: "fontawesome" | "lucide" | undefined;
|
|
11955
12111
|
} | undefined;
|
|
11956
12112
|
tag?: string | undefined;
|
|
12113
|
+
public?: boolean | undefined;
|
|
11957
12114
|
hidden?: boolean | undefined;
|
|
11958
12115
|
root?: string | undefined;
|
|
11959
12116
|
} | {
|
|
@@ -11971,6 +12128,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11971
12128
|
library?: "fontawesome" | "lucide" | undefined;
|
|
11972
12129
|
} | undefined;
|
|
11973
12130
|
tag?: string | undefined;
|
|
12131
|
+
public?: boolean | undefined;
|
|
11974
12132
|
hidden?: boolean | undefined;
|
|
11975
12133
|
root?: string | undefined;
|
|
11976
12134
|
} | {
|
|
@@ -11982,6 +12140,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11982
12140
|
library?: "fontawesome" | "lucide" | undefined;
|
|
11983
12141
|
} | undefined;
|
|
11984
12142
|
tag?: string | undefined;
|
|
12143
|
+
public?: boolean | undefined;
|
|
11985
12144
|
hidden?: boolean | undefined;
|
|
11986
12145
|
root?: string | undefined;
|
|
11987
12146
|
})[];
|
|
@@ -12020,6 +12179,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12020
12179
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12021
12180
|
} | undefined;
|
|
12022
12181
|
tag?: string | undefined;
|
|
12182
|
+
public?: boolean | undefined;
|
|
12023
12183
|
hidden?: boolean | undefined;
|
|
12024
12184
|
root?: string | undefined;
|
|
12025
12185
|
} | {
|
|
@@ -12037,6 +12197,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12037
12197
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12038
12198
|
} | undefined;
|
|
12039
12199
|
tag?: string | undefined;
|
|
12200
|
+
public?: boolean | undefined;
|
|
12040
12201
|
hidden?: boolean | undefined;
|
|
12041
12202
|
root?: string | undefined;
|
|
12042
12203
|
} | {
|
|
@@ -12048,6 +12209,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12048
12209
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12049
12210
|
} | undefined;
|
|
12050
12211
|
tag?: string | undefined;
|
|
12212
|
+
public?: boolean | undefined;
|
|
12051
12213
|
hidden?: boolean | undefined;
|
|
12052
12214
|
root?: string | undefined;
|
|
12053
12215
|
})[];
|
|
@@ -12654,6 +12816,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12654
12816
|
}>]>>;
|
|
12655
12817
|
group: z.ZodString;
|
|
12656
12818
|
tag: z.ZodOptional<z.ZodString>;
|
|
12819
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
12657
12820
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
12658
12821
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
12659
12822
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -12681,6 +12844,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12681
12844
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12682
12845
|
} | undefined;
|
|
12683
12846
|
tag?: string | undefined;
|
|
12847
|
+
public?: boolean | undefined;
|
|
12684
12848
|
hidden?: boolean | undefined;
|
|
12685
12849
|
root?: string | undefined;
|
|
12686
12850
|
}, {
|
|
@@ -12698,6 +12862,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12698
12862
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12699
12863
|
} | undefined;
|
|
12700
12864
|
tag?: string | undefined;
|
|
12865
|
+
public?: boolean | undefined;
|
|
12701
12866
|
hidden?: boolean | undefined;
|
|
12702
12867
|
root?: string | undefined;
|
|
12703
12868
|
}>, z.ZodObject<{
|
|
@@ -12716,6 +12881,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12716
12881
|
}>]>>;
|
|
12717
12882
|
group: z.ZodString;
|
|
12718
12883
|
tag: z.ZodOptional<z.ZodString>;
|
|
12884
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
12719
12885
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
12720
12886
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
12721
12887
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -12743,6 +12909,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12743
12909
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12744
12910
|
} | undefined;
|
|
12745
12911
|
tag?: string | undefined;
|
|
12912
|
+
public?: boolean | undefined;
|
|
12746
12913
|
hidden?: boolean | undefined;
|
|
12747
12914
|
root?: string | undefined;
|
|
12748
12915
|
}, {
|
|
@@ -12760,6 +12927,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12760
12927
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12761
12928
|
} | undefined;
|
|
12762
12929
|
tag?: string | undefined;
|
|
12930
|
+
public?: boolean | undefined;
|
|
12763
12931
|
hidden?: boolean | undefined;
|
|
12764
12932
|
root?: string | undefined;
|
|
12765
12933
|
}>, z.ZodObject<{
|
|
@@ -12778,6 +12946,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12778
12946
|
}>]>>;
|
|
12779
12947
|
group: z.ZodString;
|
|
12780
12948
|
tag: z.ZodOptional<z.ZodString>;
|
|
12949
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
12781
12950
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
12782
12951
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
12783
12952
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -12790,6 +12959,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12790
12959
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12791
12960
|
} | undefined;
|
|
12792
12961
|
tag?: string | undefined;
|
|
12962
|
+
public?: boolean | undefined;
|
|
12793
12963
|
hidden?: boolean | undefined;
|
|
12794
12964
|
root?: string | undefined;
|
|
12795
12965
|
}, {
|
|
@@ -12801,6 +12971,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12801
12971
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12802
12972
|
} | undefined;
|
|
12803
12973
|
tag?: string | undefined;
|
|
12974
|
+
public?: boolean | undefined;
|
|
12804
12975
|
hidden?: boolean | undefined;
|
|
12805
12976
|
root?: string | undefined;
|
|
12806
12977
|
}>]>, "many">;
|
|
@@ -12820,6 +12991,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12820
12991
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12821
12992
|
} | undefined;
|
|
12822
12993
|
tag?: string | undefined;
|
|
12994
|
+
public?: boolean | undefined;
|
|
12823
12995
|
hidden?: boolean | undefined;
|
|
12824
12996
|
root?: string | undefined;
|
|
12825
12997
|
} | {
|
|
@@ -12837,6 +13009,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12837
13009
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12838
13010
|
} | undefined;
|
|
12839
13011
|
tag?: string | undefined;
|
|
13012
|
+
public?: boolean | undefined;
|
|
12840
13013
|
hidden?: boolean | undefined;
|
|
12841
13014
|
root?: string | undefined;
|
|
12842
13015
|
} | {
|
|
@@ -12848,6 +13021,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12848
13021
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12849
13022
|
} | undefined;
|
|
12850
13023
|
tag?: string | undefined;
|
|
13024
|
+
public?: boolean | undefined;
|
|
12851
13025
|
hidden?: boolean | undefined;
|
|
12852
13026
|
root?: string | undefined;
|
|
12853
13027
|
})[];
|
|
@@ -12868,6 +13042,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12868
13042
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12869
13043
|
} | undefined;
|
|
12870
13044
|
tag?: string | undefined;
|
|
13045
|
+
public?: boolean | undefined;
|
|
12871
13046
|
hidden?: boolean | undefined;
|
|
12872
13047
|
root?: string | undefined;
|
|
12873
13048
|
} | {
|
|
@@ -12885,6 +13060,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12885
13060
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12886
13061
|
} | undefined;
|
|
12887
13062
|
tag?: string | undefined;
|
|
13063
|
+
public?: boolean | undefined;
|
|
12888
13064
|
hidden?: boolean | undefined;
|
|
12889
13065
|
root?: string | undefined;
|
|
12890
13066
|
} | {
|
|
@@ -12896,6 +13072,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12896
13072
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12897
13073
|
} | undefined;
|
|
12898
13074
|
tag?: string | undefined;
|
|
13075
|
+
public?: boolean | undefined;
|
|
12899
13076
|
hidden?: boolean | undefined;
|
|
12900
13077
|
root?: string | undefined;
|
|
12901
13078
|
})[];
|
|
@@ -13639,6 +13816,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13639
13816
|
library?: "fontawesome" | "lucide" | undefined;
|
|
13640
13817
|
} | undefined;
|
|
13641
13818
|
tag?: string | undefined;
|
|
13819
|
+
public?: boolean | undefined;
|
|
13642
13820
|
hidden?: boolean | undefined;
|
|
13643
13821
|
root?: string | undefined;
|
|
13644
13822
|
} | {
|
|
@@ -13656,6 +13834,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13656
13834
|
library?: "fontawesome" | "lucide" | undefined;
|
|
13657
13835
|
} | undefined;
|
|
13658
13836
|
tag?: string | undefined;
|
|
13837
|
+
public?: boolean | undefined;
|
|
13659
13838
|
hidden?: boolean | undefined;
|
|
13660
13839
|
root?: string | undefined;
|
|
13661
13840
|
} | {
|
|
@@ -13667,6 +13846,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13667
13846
|
library?: "fontawesome" | "lucide" | undefined;
|
|
13668
13847
|
} | undefined;
|
|
13669
13848
|
tag?: string | undefined;
|
|
13849
|
+
public?: boolean | undefined;
|
|
13670
13850
|
hidden?: boolean | undefined;
|
|
13671
13851
|
root?: string | undefined;
|
|
13672
13852
|
})[];
|
|
@@ -13705,6 +13885,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13705
13885
|
library?: "fontawesome" | "lucide" | undefined;
|
|
13706
13886
|
} | undefined;
|
|
13707
13887
|
tag?: string | undefined;
|
|
13888
|
+
public?: boolean | undefined;
|
|
13708
13889
|
hidden?: boolean | undefined;
|
|
13709
13890
|
root?: string | undefined;
|
|
13710
13891
|
} | {
|
|
@@ -13722,6 +13903,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13722
13903
|
library?: "fontawesome" | "lucide" | undefined;
|
|
13723
13904
|
} | undefined;
|
|
13724
13905
|
tag?: string | undefined;
|
|
13906
|
+
public?: boolean | undefined;
|
|
13725
13907
|
hidden?: boolean | undefined;
|
|
13726
13908
|
root?: string | undefined;
|
|
13727
13909
|
} | {
|
|
@@ -13733,6 +13915,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13733
13915
|
library?: "fontawesome" | "lucide" | undefined;
|
|
13734
13916
|
} | undefined;
|
|
13735
13917
|
tag?: string | undefined;
|
|
13918
|
+
public?: boolean | undefined;
|
|
13736
13919
|
hidden?: boolean | undefined;
|
|
13737
13920
|
root?: string | undefined;
|
|
13738
13921
|
})[];
|
|
@@ -14000,6 +14183,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14000
14183
|
library?: "fontawesome" | "lucide" | undefined;
|
|
14001
14184
|
} | undefined;
|
|
14002
14185
|
tag?: string | undefined;
|
|
14186
|
+
public?: boolean | undefined;
|
|
14003
14187
|
hidden?: boolean | undefined;
|
|
14004
14188
|
root?: string | undefined;
|
|
14005
14189
|
} | {
|
|
@@ -14017,6 +14201,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14017
14201
|
library?: "fontawesome" | "lucide" | undefined;
|
|
14018
14202
|
} | undefined;
|
|
14019
14203
|
tag?: string | undefined;
|
|
14204
|
+
public?: boolean | undefined;
|
|
14020
14205
|
hidden?: boolean | undefined;
|
|
14021
14206
|
root?: string | undefined;
|
|
14022
14207
|
} | {
|
|
@@ -14028,6 +14213,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14028
14213
|
library?: "fontawesome" | "lucide" | undefined;
|
|
14029
14214
|
} | undefined;
|
|
14030
14215
|
tag?: string | undefined;
|
|
14216
|
+
public?: boolean | undefined;
|
|
14031
14217
|
hidden?: boolean | undefined;
|
|
14032
14218
|
root?: string | undefined;
|
|
14033
14219
|
})[];
|
|
@@ -14066,6 +14252,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14066
14252
|
library?: "fontawesome" | "lucide" | undefined;
|
|
14067
14253
|
} | undefined;
|
|
14068
14254
|
tag?: string | undefined;
|
|
14255
|
+
public?: boolean | undefined;
|
|
14069
14256
|
hidden?: boolean | undefined;
|
|
14070
14257
|
root?: string | undefined;
|
|
14071
14258
|
} | {
|
|
@@ -14083,6 +14270,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14083
14270
|
library?: "fontawesome" | "lucide" | undefined;
|
|
14084
14271
|
} | undefined;
|
|
14085
14272
|
tag?: string | undefined;
|
|
14273
|
+
public?: boolean | undefined;
|
|
14086
14274
|
hidden?: boolean | undefined;
|
|
14087
14275
|
root?: string | undefined;
|
|
14088
14276
|
} | {
|
|
@@ -14094,6 +14282,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14094
14282
|
library?: "fontawesome" | "lucide" | undefined;
|
|
14095
14283
|
} | undefined;
|
|
14096
14284
|
tag?: string | undefined;
|
|
14285
|
+
public?: boolean | undefined;
|
|
14097
14286
|
hidden?: boolean | undefined;
|
|
14098
14287
|
root?: string | undefined;
|
|
14099
14288
|
})[];
|