@mintlify/validation 0.1.786 → 0.1.788
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 +453 -453
- package/dist/mint-config/schemas/v2/properties/contextual.d.ts +10 -11
- package/dist/mint-config/schemas/v2/properties/contextual.js +2 -20
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +568 -4
- package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +284 -2
- package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +424 -1
- package/dist/mint-config/schemas/v2/properties/reusable/page.js +2 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +45 -45
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +45 -45
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +45 -45
- package/dist/mint-config/schemas/v2/themes/luma.d.ts +45 -45
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +45 -45
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +45 -45
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +45 -45
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +7 -7
- package/dist/mint-config/schemas/v2/themes/sequoia.d.ts +45 -45
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +45 -45
- package/dist/mint-config/validateConfig.d.ts +351 -351
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/deployment/trieve.d.ts +4 -4
- package/dist/types/deployment/trieve.js +8 -1
- package/package.json +3 -3
|
@@ -435,7 +435,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
435
435
|
root?: import("../index.js").DecoratedPageConfig;
|
|
436
436
|
})[];
|
|
437
437
|
}>, z.ZodObject<{
|
|
438
|
-
pages: z.ZodArray<z.ZodType<z.
|
|
438
|
+
pages: z.ZodArray<z.ZodType<z.objectInputType<{
|
|
439
439
|
href: z.ZodString;
|
|
440
440
|
title: z.ZodString;
|
|
441
441
|
sidebarTitle: z.ZodOptional<z.ZodString>;
|
|
@@ -486,6 +486,147 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
486
486
|
keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
487
487
|
timestamp: z.ZodOptional<z.ZodBoolean>;
|
|
488
488
|
related: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<false>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodString>, Record<string, string>, Record<string, string>>]>, "many">]>>;
|
|
489
|
+
contextual: z.ZodOptional<z.ZodObject<{
|
|
490
|
+
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["copy", "assistant", "view", "download-pdf", "download-spec", "chatgpt", "claude", "perplexity", "grok", "aistudio", "devin", "windsurf", "mcp", "add-mcp", "cursor", "vscode", "devin-mcp"]>, z.ZodObject<{
|
|
491
|
+
title: z.ZodString;
|
|
492
|
+
description: z.ZodString;
|
|
493
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
494
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
495
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
496
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
497
|
+
}, "strip", z.ZodTypeAny, {
|
|
498
|
+
name: string;
|
|
499
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
500
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
501
|
+
}, {
|
|
502
|
+
name: string;
|
|
503
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
504
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
505
|
+
}>]>>;
|
|
506
|
+
href: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
507
|
+
base: z.ZodString;
|
|
508
|
+
query: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
509
|
+
key: z.ZodString;
|
|
510
|
+
value: z.ZodString;
|
|
511
|
+
}, "strip", z.ZodTypeAny, {
|
|
512
|
+
value: string;
|
|
513
|
+
key: string;
|
|
514
|
+
}, {
|
|
515
|
+
value: string;
|
|
516
|
+
key: string;
|
|
517
|
+
}>, "many">>;
|
|
518
|
+
}, "strip", z.ZodTypeAny, {
|
|
519
|
+
base: string;
|
|
520
|
+
query?: {
|
|
521
|
+
value: string;
|
|
522
|
+
key: string;
|
|
523
|
+
}[] | undefined;
|
|
524
|
+
}, {
|
|
525
|
+
base: string;
|
|
526
|
+
query?: {
|
|
527
|
+
value: string;
|
|
528
|
+
key: string;
|
|
529
|
+
}[] | undefined;
|
|
530
|
+
}>]>;
|
|
531
|
+
}, "strip", z.ZodTypeAny, {
|
|
532
|
+
href: string | {
|
|
533
|
+
base: string;
|
|
534
|
+
query?: {
|
|
535
|
+
value: string;
|
|
536
|
+
key: string;
|
|
537
|
+
}[] | undefined;
|
|
538
|
+
};
|
|
539
|
+
title: string;
|
|
540
|
+
description: string;
|
|
541
|
+
icon?: string | {
|
|
542
|
+
name: string;
|
|
543
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
544
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
545
|
+
} | undefined;
|
|
546
|
+
}, {
|
|
547
|
+
href: string | {
|
|
548
|
+
base: string;
|
|
549
|
+
query?: {
|
|
550
|
+
value: string;
|
|
551
|
+
key: string;
|
|
552
|
+
}[] | undefined;
|
|
553
|
+
};
|
|
554
|
+
title: string;
|
|
555
|
+
description: string;
|
|
556
|
+
icon?: string | {
|
|
557
|
+
name: string;
|
|
558
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
559
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
560
|
+
} | undefined;
|
|
561
|
+
}>]>, "many">, ({
|
|
562
|
+
href: string | {
|
|
563
|
+
base: string;
|
|
564
|
+
query?: {
|
|
565
|
+
value: string;
|
|
566
|
+
key: string;
|
|
567
|
+
}[] | undefined;
|
|
568
|
+
};
|
|
569
|
+
title: string;
|
|
570
|
+
description: string;
|
|
571
|
+
icon?: string | {
|
|
572
|
+
name: string;
|
|
573
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
574
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
575
|
+
} | undefined;
|
|
576
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[], ({
|
|
577
|
+
href: string | {
|
|
578
|
+
base: string;
|
|
579
|
+
query?: {
|
|
580
|
+
value: string;
|
|
581
|
+
key: string;
|
|
582
|
+
}[] | undefined;
|
|
583
|
+
};
|
|
584
|
+
title: string;
|
|
585
|
+
description: string;
|
|
586
|
+
icon?: string | {
|
|
587
|
+
name: string;
|
|
588
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
589
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
590
|
+
} | undefined;
|
|
591
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[]>;
|
|
592
|
+
display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
|
|
593
|
+
}, "strip", z.ZodTypeAny, {
|
|
594
|
+
options: ({
|
|
595
|
+
href: string | {
|
|
596
|
+
base: string;
|
|
597
|
+
query?: {
|
|
598
|
+
value: string;
|
|
599
|
+
key: string;
|
|
600
|
+
}[] | undefined;
|
|
601
|
+
};
|
|
602
|
+
title: string;
|
|
603
|
+
description: string;
|
|
604
|
+
icon?: string | {
|
|
605
|
+
name: string;
|
|
606
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
607
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
608
|
+
} | undefined;
|
|
609
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
610
|
+
display: "header" | "toc";
|
|
611
|
+
}, {
|
|
612
|
+
options: ({
|
|
613
|
+
href: string | {
|
|
614
|
+
base: string;
|
|
615
|
+
query?: {
|
|
616
|
+
value: string;
|
|
617
|
+
key: string;
|
|
618
|
+
}[] | undefined;
|
|
619
|
+
};
|
|
620
|
+
title: string;
|
|
621
|
+
description: string;
|
|
622
|
+
icon?: string | {
|
|
623
|
+
name: string;
|
|
624
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
625
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
626
|
+
} | undefined;
|
|
627
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
628
|
+
display?: "header" | "toc" | undefined;
|
|
629
|
+
}>>;
|
|
489
630
|
}, z.ZodTypeAny, "passthrough"> | (Omit<{
|
|
490
631
|
group: string;
|
|
491
632
|
icon?: string | {
|
|
@@ -504,7 +645,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
504
645
|
}, "root"> & {
|
|
505
646
|
pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
|
|
506
647
|
root?: import("../index.js").DecoratedPageConfig;
|
|
507
|
-
}), z.ZodTypeDef, z.
|
|
648
|
+
}), z.ZodTypeDef, z.objectInputType<{
|
|
508
649
|
href: z.ZodString;
|
|
509
650
|
title: z.ZodString;
|
|
510
651
|
sidebarTitle: z.ZodOptional<z.ZodString>;
|
|
@@ -555,6 +696,147 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
555
696
|
keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
556
697
|
timestamp: z.ZodOptional<z.ZodBoolean>;
|
|
557
698
|
related: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<false>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodString>, Record<string, string>, Record<string, string>>]>, "many">]>>;
|
|
699
|
+
contextual: z.ZodOptional<z.ZodObject<{
|
|
700
|
+
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["copy", "assistant", "view", "download-pdf", "download-spec", "chatgpt", "claude", "perplexity", "grok", "aistudio", "devin", "windsurf", "mcp", "add-mcp", "cursor", "vscode", "devin-mcp"]>, z.ZodObject<{
|
|
701
|
+
title: z.ZodString;
|
|
702
|
+
description: z.ZodString;
|
|
703
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
704
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
705
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
706
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
707
|
+
}, "strip", z.ZodTypeAny, {
|
|
708
|
+
name: string;
|
|
709
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
710
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
711
|
+
}, {
|
|
712
|
+
name: string;
|
|
713
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
714
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
715
|
+
}>]>>;
|
|
716
|
+
href: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
717
|
+
base: z.ZodString;
|
|
718
|
+
query: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
719
|
+
key: z.ZodString;
|
|
720
|
+
value: z.ZodString;
|
|
721
|
+
}, "strip", z.ZodTypeAny, {
|
|
722
|
+
value: string;
|
|
723
|
+
key: string;
|
|
724
|
+
}, {
|
|
725
|
+
value: string;
|
|
726
|
+
key: string;
|
|
727
|
+
}>, "many">>;
|
|
728
|
+
}, "strip", z.ZodTypeAny, {
|
|
729
|
+
base: string;
|
|
730
|
+
query?: {
|
|
731
|
+
value: string;
|
|
732
|
+
key: string;
|
|
733
|
+
}[] | undefined;
|
|
734
|
+
}, {
|
|
735
|
+
base: string;
|
|
736
|
+
query?: {
|
|
737
|
+
value: string;
|
|
738
|
+
key: string;
|
|
739
|
+
}[] | undefined;
|
|
740
|
+
}>]>;
|
|
741
|
+
}, "strip", z.ZodTypeAny, {
|
|
742
|
+
href: string | {
|
|
743
|
+
base: string;
|
|
744
|
+
query?: {
|
|
745
|
+
value: string;
|
|
746
|
+
key: string;
|
|
747
|
+
}[] | undefined;
|
|
748
|
+
};
|
|
749
|
+
title: string;
|
|
750
|
+
description: string;
|
|
751
|
+
icon?: string | {
|
|
752
|
+
name: string;
|
|
753
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
754
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
755
|
+
} | undefined;
|
|
756
|
+
}, {
|
|
757
|
+
href: string | {
|
|
758
|
+
base: string;
|
|
759
|
+
query?: {
|
|
760
|
+
value: string;
|
|
761
|
+
key: string;
|
|
762
|
+
}[] | undefined;
|
|
763
|
+
};
|
|
764
|
+
title: string;
|
|
765
|
+
description: string;
|
|
766
|
+
icon?: string | {
|
|
767
|
+
name: string;
|
|
768
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
769
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
770
|
+
} | undefined;
|
|
771
|
+
}>]>, "many">, ({
|
|
772
|
+
href: string | {
|
|
773
|
+
base: string;
|
|
774
|
+
query?: {
|
|
775
|
+
value: string;
|
|
776
|
+
key: string;
|
|
777
|
+
}[] | undefined;
|
|
778
|
+
};
|
|
779
|
+
title: string;
|
|
780
|
+
description: string;
|
|
781
|
+
icon?: string | {
|
|
782
|
+
name: string;
|
|
783
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
784
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
785
|
+
} | undefined;
|
|
786
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[], ({
|
|
787
|
+
href: string | {
|
|
788
|
+
base: string;
|
|
789
|
+
query?: {
|
|
790
|
+
value: string;
|
|
791
|
+
key: string;
|
|
792
|
+
}[] | undefined;
|
|
793
|
+
};
|
|
794
|
+
title: string;
|
|
795
|
+
description: string;
|
|
796
|
+
icon?: string | {
|
|
797
|
+
name: string;
|
|
798
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
799
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
800
|
+
} | undefined;
|
|
801
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[]>;
|
|
802
|
+
display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
|
|
803
|
+
}, "strip", z.ZodTypeAny, {
|
|
804
|
+
options: ({
|
|
805
|
+
href: string | {
|
|
806
|
+
base: string;
|
|
807
|
+
query?: {
|
|
808
|
+
value: string;
|
|
809
|
+
key: string;
|
|
810
|
+
}[] | undefined;
|
|
811
|
+
};
|
|
812
|
+
title: string;
|
|
813
|
+
description: string;
|
|
814
|
+
icon?: string | {
|
|
815
|
+
name: string;
|
|
816
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
817
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
818
|
+
} | undefined;
|
|
819
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
820
|
+
display: "header" | "toc";
|
|
821
|
+
}, {
|
|
822
|
+
options: ({
|
|
823
|
+
href: string | {
|
|
824
|
+
base: string;
|
|
825
|
+
query?: {
|
|
826
|
+
value: string;
|
|
827
|
+
key: string;
|
|
828
|
+
}[] | undefined;
|
|
829
|
+
};
|
|
830
|
+
title: string;
|
|
831
|
+
description: string;
|
|
832
|
+
icon?: string | {
|
|
833
|
+
name: string;
|
|
834
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
835
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
836
|
+
} | undefined;
|
|
837
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
838
|
+
display?: "header" | "toc" | undefined;
|
|
839
|
+
}>>;
|
|
558
840
|
}, z.ZodTypeAny, "passthrough"> | (Omit<{
|
|
559
841
|
group: string;
|
|
560
842
|
icon?: string | {
|
|
@@ -575,7 +857,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
575
857
|
root?: import("../index.js").DecoratedPageConfig;
|
|
576
858
|
})>, "many">;
|
|
577
859
|
}, "strip", z.ZodTypeAny, {
|
|
578
|
-
pages: (z.
|
|
860
|
+
pages: (z.objectInputType<{
|
|
579
861
|
href: z.ZodString;
|
|
580
862
|
title: z.ZodString;
|
|
581
863
|
sidebarTitle: z.ZodOptional<z.ZodString>;
|
|
@@ -626,6 +908,147 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
626
908
|
keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
627
909
|
timestamp: z.ZodOptional<z.ZodBoolean>;
|
|
628
910
|
related: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<false>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodString>, Record<string, string>, Record<string, string>>]>, "many">]>>;
|
|
911
|
+
contextual: z.ZodOptional<z.ZodObject<{
|
|
912
|
+
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["copy", "assistant", "view", "download-pdf", "download-spec", "chatgpt", "claude", "perplexity", "grok", "aistudio", "devin", "windsurf", "mcp", "add-mcp", "cursor", "vscode", "devin-mcp"]>, z.ZodObject<{
|
|
913
|
+
title: z.ZodString;
|
|
914
|
+
description: z.ZodString;
|
|
915
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
916
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
917
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
918
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
919
|
+
}, "strip", z.ZodTypeAny, {
|
|
920
|
+
name: string;
|
|
921
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
922
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
923
|
+
}, {
|
|
924
|
+
name: string;
|
|
925
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
926
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
927
|
+
}>]>>;
|
|
928
|
+
href: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
929
|
+
base: z.ZodString;
|
|
930
|
+
query: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
931
|
+
key: z.ZodString;
|
|
932
|
+
value: z.ZodString;
|
|
933
|
+
}, "strip", z.ZodTypeAny, {
|
|
934
|
+
value: string;
|
|
935
|
+
key: string;
|
|
936
|
+
}, {
|
|
937
|
+
value: string;
|
|
938
|
+
key: string;
|
|
939
|
+
}>, "many">>;
|
|
940
|
+
}, "strip", z.ZodTypeAny, {
|
|
941
|
+
base: string;
|
|
942
|
+
query?: {
|
|
943
|
+
value: string;
|
|
944
|
+
key: string;
|
|
945
|
+
}[] | undefined;
|
|
946
|
+
}, {
|
|
947
|
+
base: string;
|
|
948
|
+
query?: {
|
|
949
|
+
value: string;
|
|
950
|
+
key: string;
|
|
951
|
+
}[] | undefined;
|
|
952
|
+
}>]>;
|
|
953
|
+
}, "strip", z.ZodTypeAny, {
|
|
954
|
+
href: string | {
|
|
955
|
+
base: string;
|
|
956
|
+
query?: {
|
|
957
|
+
value: string;
|
|
958
|
+
key: string;
|
|
959
|
+
}[] | undefined;
|
|
960
|
+
};
|
|
961
|
+
title: string;
|
|
962
|
+
description: string;
|
|
963
|
+
icon?: string | {
|
|
964
|
+
name: string;
|
|
965
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
966
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
967
|
+
} | undefined;
|
|
968
|
+
}, {
|
|
969
|
+
href: string | {
|
|
970
|
+
base: string;
|
|
971
|
+
query?: {
|
|
972
|
+
value: string;
|
|
973
|
+
key: string;
|
|
974
|
+
}[] | undefined;
|
|
975
|
+
};
|
|
976
|
+
title: string;
|
|
977
|
+
description: string;
|
|
978
|
+
icon?: string | {
|
|
979
|
+
name: string;
|
|
980
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
981
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
982
|
+
} | undefined;
|
|
983
|
+
}>]>, "many">, ({
|
|
984
|
+
href: string | {
|
|
985
|
+
base: string;
|
|
986
|
+
query?: {
|
|
987
|
+
value: string;
|
|
988
|
+
key: string;
|
|
989
|
+
}[] | undefined;
|
|
990
|
+
};
|
|
991
|
+
title: string;
|
|
992
|
+
description: string;
|
|
993
|
+
icon?: string | {
|
|
994
|
+
name: string;
|
|
995
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
996
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
997
|
+
} | undefined;
|
|
998
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[], ({
|
|
999
|
+
href: string | {
|
|
1000
|
+
base: string;
|
|
1001
|
+
query?: {
|
|
1002
|
+
value: string;
|
|
1003
|
+
key: string;
|
|
1004
|
+
}[] | undefined;
|
|
1005
|
+
};
|
|
1006
|
+
title: string;
|
|
1007
|
+
description: string;
|
|
1008
|
+
icon?: string | {
|
|
1009
|
+
name: string;
|
|
1010
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1011
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1012
|
+
} | undefined;
|
|
1013
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[]>;
|
|
1014
|
+
display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
|
|
1015
|
+
}, "strip", z.ZodTypeAny, {
|
|
1016
|
+
options: ({
|
|
1017
|
+
href: string | {
|
|
1018
|
+
base: string;
|
|
1019
|
+
query?: {
|
|
1020
|
+
value: string;
|
|
1021
|
+
key: string;
|
|
1022
|
+
}[] | undefined;
|
|
1023
|
+
};
|
|
1024
|
+
title: string;
|
|
1025
|
+
description: string;
|
|
1026
|
+
icon?: string | {
|
|
1027
|
+
name: string;
|
|
1028
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1029
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1030
|
+
} | undefined;
|
|
1031
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
1032
|
+
display: "header" | "toc";
|
|
1033
|
+
}, {
|
|
1034
|
+
options: ({
|
|
1035
|
+
href: string | {
|
|
1036
|
+
base: string;
|
|
1037
|
+
query?: {
|
|
1038
|
+
value: string;
|
|
1039
|
+
key: string;
|
|
1040
|
+
}[] | undefined;
|
|
1041
|
+
};
|
|
1042
|
+
title: string;
|
|
1043
|
+
description: string;
|
|
1044
|
+
icon?: string | {
|
|
1045
|
+
name: string;
|
|
1046
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1047
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1048
|
+
} | undefined;
|
|
1049
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
1050
|
+
display?: "header" | "toc" | undefined;
|
|
1051
|
+
}>>;
|
|
629
1052
|
}, z.ZodTypeAny, "passthrough"> | (Omit<{
|
|
630
1053
|
group: string;
|
|
631
1054
|
icon?: string | {
|
|
@@ -646,7 +1069,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
646
1069
|
root?: import("../index.js").DecoratedPageConfig;
|
|
647
1070
|
}))[];
|
|
648
1071
|
}, {
|
|
649
|
-
pages: (z.
|
|
1072
|
+
pages: (z.objectInputType<{
|
|
650
1073
|
href: z.ZodString;
|
|
651
1074
|
title: z.ZodString;
|
|
652
1075
|
sidebarTitle: z.ZodOptional<z.ZodString>;
|
|
@@ -697,6 +1120,147 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
697
1120
|
keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
698
1121
|
timestamp: z.ZodOptional<z.ZodBoolean>;
|
|
699
1122
|
related: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<false>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodString>, Record<string, string>, Record<string, string>>]>, "many">]>>;
|
|
1123
|
+
contextual: z.ZodOptional<z.ZodObject<{
|
|
1124
|
+
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["copy", "assistant", "view", "download-pdf", "download-spec", "chatgpt", "claude", "perplexity", "grok", "aistudio", "devin", "windsurf", "mcp", "add-mcp", "cursor", "vscode", "devin-mcp"]>, z.ZodObject<{
|
|
1125
|
+
title: z.ZodString;
|
|
1126
|
+
description: z.ZodString;
|
|
1127
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1128
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1129
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1130
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
1131
|
+
}, "strip", z.ZodTypeAny, {
|
|
1132
|
+
name: string;
|
|
1133
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1134
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1135
|
+
}, {
|
|
1136
|
+
name: string;
|
|
1137
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1138
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1139
|
+
}>]>>;
|
|
1140
|
+
href: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1141
|
+
base: z.ZodString;
|
|
1142
|
+
query: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1143
|
+
key: z.ZodString;
|
|
1144
|
+
value: z.ZodString;
|
|
1145
|
+
}, "strip", z.ZodTypeAny, {
|
|
1146
|
+
value: string;
|
|
1147
|
+
key: string;
|
|
1148
|
+
}, {
|
|
1149
|
+
value: string;
|
|
1150
|
+
key: string;
|
|
1151
|
+
}>, "many">>;
|
|
1152
|
+
}, "strip", z.ZodTypeAny, {
|
|
1153
|
+
base: string;
|
|
1154
|
+
query?: {
|
|
1155
|
+
value: string;
|
|
1156
|
+
key: string;
|
|
1157
|
+
}[] | undefined;
|
|
1158
|
+
}, {
|
|
1159
|
+
base: string;
|
|
1160
|
+
query?: {
|
|
1161
|
+
value: string;
|
|
1162
|
+
key: string;
|
|
1163
|
+
}[] | undefined;
|
|
1164
|
+
}>]>;
|
|
1165
|
+
}, "strip", z.ZodTypeAny, {
|
|
1166
|
+
href: string | {
|
|
1167
|
+
base: string;
|
|
1168
|
+
query?: {
|
|
1169
|
+
value: string;
|
|
1170
|
+
key: string;
|
|
1171
|
+
}[] | undefined;
|
|
1172
|
+
};
|
|
1173
|
+
title: string;
|
|
1174
|
+
description: string;
|
|
1175
|
+
icon?: string | {
|
|
1176
|
+
name: string;
|
|
1177
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1178
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1179
|
+
} | undefined;
|
|
1180
|
+
}, {
|
|
1181
|
+
href: string | {
|
|
1182
|
+
base: string;
|
|
1183
|
+
query?: {
|
|
1184
|
+
value: string;
|
|
1185
|
+
key: string;
|
|
1186
|
+
}[] | undefined;
|
|
1187
|
+
};
|
|
1188
|
+
title: string;
|
|
1189
|
+
description: string;
|
|
1190
|
+
icon?: string | {
|
|
1191
|
+
name: string;
|
|
1192
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1193
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1194
|
+
} | undefined;
|
|
1195
|
+
}>]>, "many">, ({
|
|
1196
|
+
href: string | {
|
|
1197
|
+
base: string;
|
|
1198
|
+
query?: {
|
|
1199
|
+
value: string;
|
|
1200
|
+
key: string;
|
|
1201
|
+
}[] | undefined;
|
|
1202
|
+
};
|
|
1203
|
+
title: string;
|
|
1204
|
+
description: string;
|
|
1205
|
+
icon?: string | {
|
|
1206
|
+
name: string;
|
|
1207
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1208
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1209
|
+
} | undefined;
|
|
1210
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[], ({
|
|
1211
|
+
href: string | {
|
|
1212
|
+
base: string;
|
|
1213
|
+
query?: {
|
|
1214
|
+
value: string;
|
|
1215
|
+
key: string;
|
|
1216
|
+
}[] | undefined;
|
|
1217
|
+
};
|
|
1218
|
+
title: string;
|
|
1219
|
+
description: string;
|
|
1220
|
+
icon?: string | {
|
|
1221
|
+
name: string;
|
|
1222
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1223
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1224
|
+
} | undefined;
|
|
1225
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[]>;
|
|
1226
|
+
display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
|
|
1227
|
+
}, "strip", z.ZodTypeAny, {
|
|
1228
|
+
options: ({
|
|
1229
|
+
href: string | {
|
|
1230
|
+
base: string;
|
|
1231
|
+
query?: {
|
|
1232
|
+
value: string;
|
|
1233
|
+
key: string;
|
|
1234
|
+
}[] | undefined;
|
|
1235
|
+
};
|
|
1236
|
+
title: string;
|
|
1237
|
+
description: string;
|
|
1238
|
+
icon?: string | {
|
|
1239
|
+
name: string;
|
|
1240
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1241
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1242
|
+
} | undefined;
|
|
1243
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
1244
|
+
display: "header" | "toc";
|
|
1245
|
+
}, {
|
|
1246
|
+
options: ({
|
|
1247
|
+
href: string | {
|
|
1248
|
+
base: string;
|
|
1249
|
+
query?: {
|
|
1250
|
+
value: string;
|
|
1251
|
+
key: string;
|
|
1252
|
+
}[] | undefined;
|
|
1253
|
+
};
|
|
1254
|
+
title: string;
|
|
1255
|
+
description: string;
|
|
1256
|
+
icon?: string | {
|
|
1257
|
+
name: string;
|
|
1258
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1259
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1260
|
+
} | undefined;
|
|
1261
|
+
} | "copy" | "assistant" | "view" | "download-pdf" | "download-spec" | "chatgpt" | "claude" | "perplexity" | "grok" | "aistudio" | "devin" | "windsurf" | "mcp" | "add-mcp" | "cursor" | "vscode" | "devin-mcp")[];
|
|
1262
|
+
display?: "header" | "toc" | undefined;
|
|
1263
|
+
}>>;
|
|
700
1264
|
}, z.ZodTypeAny, "passthrough"> | (Omit<{
|
|
701
1265
|
group: string;
|
|
702
1266
|
icon?: string | {
|