@mintlify/validation 0.1.235 → 0.1.236

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.
Files changed (22) hide show
  1. package/dist/mint-config/schemas/v2/index.d.ts +3091 -479
  2. package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +59 -0
  3. package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +5 -5
  4. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +41 -0
  5. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +5 -5
  6. package/dist/mint-config/schemas/v2/properties/navigation/global.d.ts +299 -0
  7. package/dist/mint-config/schemas/v2/properties/navigation/global.js +16 -0
  8. package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +419 -2
  9. package/dist/mint-config/schemas/v2/properties/navigation/index.js +2 -0
  10. package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +146 -0
  11. package/dist/mint-config/schemas/v2/properties/navigation/languages.js +4 -3
  12. package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +41 -0
  13. package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +4 -4
  14. package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +23 -0
  15. package/dist/mint-config/schemas/v2/properties/navigation/version.js +4 -4
  16. package/dist/mint-config/schemas/v2/themes/mint.d.ts +659 -6
  17. package/dist/mint-config/schemas/v2/themes/prism.d.ts +659 -6
  18. package/dist/mint-config/schemas/v2/themes/quill.d.ts +659 -6
  19. package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +419 -2
  20. package/dist/mint-config/schemas/v2/themes/venus.d.ts +659 -6
  21. package/dist/tsconfig.build.tsbuildinfo +1 -1
  22. package/package.json +2 -2
@@ -188,7 +188,7 @@ export declare const mintConfigSchema: z.ZodObject<{
188
188
  href: string;
189
189
  } | undefined;
190
190
  }>>;
191
- navigation: z.ZodUnion<[z.ZodObject<{
191
+ navigation: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
192
192
  languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
193
193
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
194
194
  hidden: z.ZodOptional<z.ZodBoolean>;
@@ -481,7 +481,424 @@ export declare const mintConfigSchema: z.ZodObject<{
481
481
  pages: any[];
482
482
  }, {
483
483
  pages: any[];
484
- }>]>;
484
+ }>]>, z.ZodOptional<z.ZodObject<{
485
+ global: z.ZodObject<{
486
+ languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
487
+ language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
488
+ hidden: z.ZodOptional<z.ZodBoolean>;
489
+ }, "strip", z.ZodTypeAny, {
490
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
491
+ hidden?: boolean | undefined;
492
+ }, {
493
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
494
+ hidden?: boolean | undefined;
495
+ }>, z.ZodUnion<[z.ZodObject<{
496
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
497
+ }, "strip", z.ZodTypeAny, {
498
+ openapi: (string | string[]) & (string | string[] | undefined);
499
+ }, {
500
+ openapi: (string | string[]) & (string | string[] | undefined);
501
+ }>, z.ZodObject<{
502
+ href: z.ZodString;
503
+ }, "strip", z.ZodTypeAny, {
504
+ href: string;
505
+ }, {
506
+ href: string;
507
+ }>]>>, "many">>;
508
+ versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
509
+ version: z.ZodString;
510
+ hidden: z.ZodOptional<z.ZodBoolean>;
511
+ }, "strip", z.ZodTypeAny, {
512
+ version: string;
513
+ hidden?: boolean | undefined;
514
+ }, {
515
+ version: string;
516
+ hidden?: boolean | undefined;
517
+ }>, z.ZodUnion<[z.ZodObject<{
518
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
519
+ }, "strip", z.ZodTypeAny, {
520
+ openapi: (string | string[]) & (string | string[] | undefined);
521
+ }, {
522
+ openapi: (string | string[]) & (string | string[] | undefined);
523
+ }>, z.ZodObject<{
524
+ href: z.ZodString;
525
+ }, "strip", z.ZodTypeAny, {
526
+ href: string;
527
+ }, {
528
+ href: string;
529
+ }>]>>, "many">>;
530
+ tabs: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
531
+ tab: z.ZodString;
532
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
533
+ style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
534
+ name: z.ZodEffects<z.ZodString, string, string>;
535
+ }, "strip", z.ZodTypeAny, {
536
+ name: string;
537
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
538
+ }, {
539
+ name: string;
540
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
541
+ }>]>>;
542
+ hidden: z.ZodOptional<z.ZodBoolean>;
543
+ }, "strip", z.ZodTypeAny, {
544
+ tab: string;
545
+ icon?: string | {
546
+ name: string;
547
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
548
+ } | undefined;
549
+ hidden?: boolean | undefined;
550
+ }, {
551
+ tab: string;
552
+ icon?: string | {
553
+ name: string;
554
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
555
+ } | undefined;
556
+ hidden?: boolean | undefined;
557
+ }>, z.ZodUnion<[z.ZodObject<{
558
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
559
+ }, "strip", z.ZodTypeAny, {
560
+ openapi: (string | string[]) & (string | string[] | undefined);
561
+ }, {
562
+ openapi: (string | string[]) & (string | string[] | undefined);
563
+ }>, z.ZodObject<{
564
+ href: z.ZodString;
565
+ }, "strip", z.ZodTypeAny, {
566
+ href: string;
567
+ }, {
568
+ href: string;
569
+ }>]>>, "many">>;
570
+ dropdowns: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
571
+ dropdown: z.ZodString;
572
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
573
+ style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
574
+ name: z.ZodEffects<z.ZodString, string, string>;
575
+ }, "strip", z.ZodTypeAny, {
576
+ name: string;
577
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
578
+ }, {
579
+ name: string;
580
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
581
+ }>]>>;
582
+ hidden: z.ZodOptional<z.ZodBoolean>;
583
+ }, "strip", z.ZodTypeAny, {
584
+ dropdown: string;
585
+ icon?: string | {
586
+ name: string;
587
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
588
+ } | undefined;
589
+ hidden?: boolean | undefined;
590
+ }, {
591
+ dropdown: string;
592
+ icon?: string | {
593
+ name: string;
594
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
595
+ } | undefined;
596
+ hidden?: boolean | undefined;
597
+ }>, z.ZodUnion<[z.ZodObject<{
598
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
599
+ }, "strip", z.ZodTypeAny, {
600
+ openapi: (string | string[]) & (string | string[] | undefined);
601
+ }, {
602
+ openapi: (string | string[]) & (string | string[] | undefined);
603
+ }>, z.ZodObject<{
604
+ href: z.ZodString;
605
+ }, "strip", z.ZodTypeAny, {
606
+ href: string;
607
+ }, {
608
+ href: string;
609
+ }>]>>, "many">>;
610
+ anchors: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
611
+ anchor: z.ZodString;
612
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
613
+ style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
614
+ name: z.ZodEffects<z.ZodString, string, string>;
615
+ }, "strip", z.ZodTypeAny, {
616
+ name: string;
617
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
618
+ }, {
619
+ name: string;
620
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
621
+ }>]>>;
622
+ color: z.ZodOptional<z.ZodObject<{
623
+ light: z.ZodString;
624
+ dark: z.ZodString;
625
+ }, "strict", z.ZodTypeAny, {
626
+ light: string;
627
+ dark: string;
628
+ }, {
629
+ light: string;
630
+ dark: string;
631
+ }>>;
632
+ hidden: z.ZodOptional<z.ZodBoolean>;
633
+ }, "strip", z.ZodTypeAny, {
634
+ anchor: string;
635
+ icon?: string | {
636
+ name: string;
637
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
638
+ } | undefined;
639
+ color?: {
640
+ light: string;
641
+ dark: string;
642
+ } | undefined;
643
+ hidden?: boolean | undefined;
644
+ }, {
645
+ anchor: string;
646
+ icon?: string | {
647
+ name: string;
648
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
649
+ } | undefined;
650
+ color?: {
651
+ light: string;
652
+ dark: string;
653
+ } | undefined;
654
+ hidden?: boolean | undefined;
655
+ }>, z.ZodUnion<[z.ZodObject<{
656
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
657
+ }, "strip", z.ZodTypeAny, {
658
+ openapi: (string | string[]) & (string | string[] | undefined);
659
+ }, {
660
+ openapi: (string | string[]) & (string | string[] | undefined);
661
+ }>, z.ZodObject<{
662
+ href: z.ZodString;
663
+ }, "strip", z.ZodTypeAny, {
664
+ href: string;
665
+ }, {
666
+ href: string;
667
+ }>]>>, "many">>;
668
+ }, "strict", z.ZodTypeAny, {
669
+ languages?: ({
670
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
671
+ hidden?: boolean | undefined;
672
+ } & ({
673
+ openapi: (string | string[]) & (string | string[] | undefined);
674
+ } | {
675
+ href: string;
676
+ }))[] | undefined;
677
+ versions?: ({
678
+ version: string;
679
+ hidden?: boolean | undefined;
680
+ } & ({
681
+ openapi: (string | string[]) & (string | string[] | undefined);
682
+ } | {
683
+ href: string;
684
+ }))[] | undefined;
685
+ tabs?: ({
686
+ tab: string;
687
+ icon?: string | {
688
+ name: string;
689
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
690
+ } | undefined;
691
+ hidden?: boolean | undefined;
692
+ } & ({
693
+ openapi: (string | string[]) & (string | string[] | undefined);
694
+ } | {
695
+ href: string;
696
+ }))[] | undefined;
697
+ dropdowns?: ({
698
+ dropdown: string;
699
+ icon?: string | {
700
+ name: string;
701
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
702
+ } | undefined;
703
+ hidden?: boolean | undefined;
704
+ } & ({
705
+ openapi: (string | string[]) & (string | string[] | undefined);
706
+ } | {
707
+ href: string;
708
+ }))[] | undefined;
709
+ anchors?: ({
710
+ anchor: string;
711
+ icon?: string | {
712
+ name: string;
713
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
714
+ } | undefined;
715
+ color?: {
716
+ light: string;
717
+ dark: string;
718
+ } | undefined;
719
+ hidden?: boolean | undefined;
720
+ } & ({
721
+ openapi: (string | string[]) & (string | string[] | undefined);
722
+ } | {
723
+ href: string;
724
+ }))[] | undefined;
725
+ }, {
726
+ languages?: ({
727
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
728
+ hidden?: boolean | undefined;
729
+ } & ({
730
+ openapi: (string | string[]) & (string | string[] | undefined);
731
+ } | {
732
+ href: string;
733
+ }))[] | undefined;
734
+ versions?: ({
735
+ version: string;
736
+ hidden?: boolean | undefined;
737
+ } & ({
738
+ openapi: (string | string[]) & (string | string[] | undefined);
739
+ } | {
740
+ href: string;
741
+ }))[] | undefined;
742
+ tabs?: ({
743
+ tab: string;
744
+ icon?: string | {
745
+ name: string;
746
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
747
+ } | undefined;
748
+ hidden?: boolean | undefined;
749
+ } & ({
750
+ openapi: (string | string[]) & (string | string[] | undefined);
751
+ } | {
752
+ href: string;
753
+ }))[] | undefined;
754
+ dropdowns?: ({
755
+ dropdown: string;
756
+ icon?: string | {
757
+ name: string;
758
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
759
+ } | undefined;
760
+ hidden?: boolean | undefined;
761
+ } & ({
762
+ openapi: (string | string[]) & (string | string[] | undefined);
763
+ } | {
764
+ href: string;
765
+ }))[] | undefined;
766
+ anchors?: ({
767
+ anchor: string;
768
+ icon?: string | {
769
+ name: string;
770
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
771
+ } | undefined;
772
+ color?: {
773
+ light: string;
774
+ dark: string;
775
+ } | undefined;
776
+ hidden?: boolean | undefined;
777
+ } & ({
778
+ openapi: (string | string[]) & (string | string[] | undefined);
779
+ } | {
780
+ href: string;
781
+ }))[] | undefined;
782
+ }>;
783
+ }, "strip", z.ZodTypeAny, {
784
+ global: {
785
+ languages?: ({
786
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
787
+ hidden?: boolean | undefined;
788
+ } & ({
789
+ openapi: (string | string[]) & (string | string[] | undefined);
790
+ } | {
791
+ href: string;
792
+ }))[] | undefined;
793
+ versions?: ({
794
+ version: string;
795
+ hidden?: boolean | undefined;
796
+ } & ({
797
+ openapi: (string | string[]) & (string | string[] | undefined);
798
+ } | {
799
+ href: string;
800
+ }))[] | undefined;
801
+ tabs?: ({
802
+ tab: string;
803
+ icon?: string | {
804
+ name: string;
805
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
806
+ } | undefined;
807
+ hidden?: boolean | undefined;
808
+ } & ({
809
+ openapi: (string | string[]) & (string | string[] | undefined);
810
+ } | {
811
+ href: string;
812
+ }))[] | undefined;
813
+ dropdowns?: ({
814
+ dropdown: string;
815
+ icon?: string | {
816
+ name: string;
817
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
818
+ } | undefined;
819
+ hidden?: boolean | undefined;
820
+ } & ({
821
+ openapi: (string | string[]) & (string | string[] | undefined);
822
+ } | {
823
+ href: string;
824
+ }))[] | undefined;
825
+ anchors?: ({
826
+ anchor: string;
827
+ icon?: string | {
828
+ name: string;
829
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
830
+ } | undefined;
831
+ color?: {
832
+ light: string;
833
+ dark: string;
834
+ } | undefined;
835
+ hidden?: boolean | undefined;
836
+ } & ({
837
+ openapi: (string | string[]) & (string | string[] | undefined);
838
+ } | {
839
+ href: string;
840
+ }))[] | undefined;
841
+ };
842
+ }, {
843
+ global: {
844
+ languages?: ({
845
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
846
+ hidden?: boolean | undefined;
847
+ } & ({
848
+ openapi: (string | string[]) & (string | string[] | undefined);
849
+ } | {
850
+ href: string;
851
+ }))[] | undefined;
852
+ versions?: ({
853
+ version: string;
854
+ hidden?: boolean | undefined;
855
+ } & ({
856
+ openapi: (string | string[]) & (string | string[] | undefined);
857
+ } | {
858
+ href: string;
859
+ }))[] | undefined;
860
+ tabs?: ({
861
+ tab: string;
862
+ icon?: string | {
863
+ name: string;
864
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
865
+ } | undefined;
866
+ hidden?: boolean | undefined;
867
+ } & ({
868
+ openapi: (string | string[]) & (string | string[] | undefined);
869
+ } | {
870
+ href: string;
871
+ }))[] | undefined;
872
+ dropdowns?: ({
873
+ dropdown: string;
874
+ icon?: string | {
875
+ name: string;
876
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
877
+ } | undefined;
878
+ hidden?: boolean | undefined;
879
+ } & ({
880
+ openapi: (string | string[]) & (string | string[] | undefined);
881
+ } | {
882
+ href: string;
883
+ }))[] | undefined;
884
+ anchors?: ({
885
+ anchor: string;
886
+ icon?: string | {
887
+ name: string;
888
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
889
+ } | undefined;
890
+ color?: {
891
+ light: string;
892
+ dark: string;
893
+ } | undefined;
894
+ hidden?: boolean | undefined;
895
+ } & ({
896
+ openapi: (string | string[]) & (string | string[] | undefined);
897
+ } | {
898
+ href: string;
899
+ }))[] | undefined;
900
+ };
901
+ }>>>;
485
902
  footer: z.ZodOptional<z.ZodObject<{
486
903
  socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter"]>, z.ZodString>>;
487
904
  links: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -951,7 +1368,7 @@ export declare const mintConfigSchema: z.ZodObject<{
951
1368
  light?: string | undefined;
952
1369
  dark?: string | undefined;
953
1370
  };
954
- navigation: ({
1371
+ navigation: (({
955
1372
  languages: ({
956
1373
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
957
1374
  hidden?: boolean | undefined;
@@ -1009,6 +1426,65 @@ export declare const mintConfigSchema: z.ZodObject<{
1009
1426
  } | {
1010
1427
  pages: any[];
1011
1428
  }) & ({
1429
+ global: {
1430
+ languages?: ({
1431
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1432
+ hidden?: boolean | undefined;
1433
+ } & ({
1434
+ openapi: (string | string[]) & (string | string[] | undefined);
1435
+ } | {
1436
+ href: string;
1437
+ }))[] | undefined;
1438
+ versions?: ({
1439
+ version: string;
1440
+ hidden?: boolean | undefined;
1441
+ } & ({
1442
+ openapi: (string | string[]) & (string | string[] | undefined);
1443
+ } | {
1444
+ href: string;
1445
+ }))[] | undefined;
1446
+ tabs?: ({
1447
+ tab: string;
1448
+ icon?: string | {
1449
+ name: string;
1450
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1451
+ } | undefined;
1452
+ hidden?: boolean | undefined;
1453
+ } & ({
1454
+ openapi: (string | string[]) & (string | string[] | undefined);
1455
+ } | {
1456
+ href: string;
1457
+ }))[] | undefined;
1458
+ dropdowns?: ({
1459
+ dropdown: string;
1460
+ icon?: string | {
1461
+ name: string;
1462
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1463
+ } | undefined;
1464
+ hidden?: boolean | undefined;
1465
+ } & ({
1466
+ openapi: (string | string[]) & (string | string[] | undefined);
1467
+ } | {
1468
+ href: string;
1469
+ }))[] | undefined;
1470
+ anchors?: ({
1471
+ anchor: string;
1472
+ icon?: string | {
1473
+ name: string;
1474
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1475
+ } | undefined;
1476
+ color?: {
1477
+ light: string;
1478
+ dark: string;
1479
+ } | undefined;
1480
+ hidden?: boolean | undefined;
1481
+ } & ({
1482
+ openapi: (string | string[]) & (string | string[] | undefined);
1483
+ } | {
1484
+ href: string;
1485
+ }))[] | undefined;
1486
+ };
1487
+ } | undefined)) & ((({
1012
1488
  languages: ({
1013
1489
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1014
1490
  hidden?: boolean | undefined;
@@ -1065,7 +1541,66 @@ export declare const mintConfigSchema: z.ZodObject<{
1065
1541
  }))[];
1066
1542
  } | {
1067
1543
  pages: any[];
1068
- } | undefined);
1544
+ }) & ({
1545
+ global: {
1546
+ languages?: ({
1547
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1548
+ hidden?: boolean | undefined;
1549
+ } & ({
1550
+ openapi: (string | string[]) & (string | string[] | undefined);
1551
+ } | {
1552
+ href: string;
1553
+ }))[] | undefined;
1554
+ versions?: ({
1555
+ version: string;
1556
+ hidden?: boolean | undefined;
1557
+ } & ({
1558
+ openapi: (string | string[]) & (string | string[] | undefined);
1559
+ } | {
1560
+ href: string;
1561
+ }))[] | undefined;
1562
+ tabs?: ({
1563
+ tab: string;
1564
+ icon?: string | {
1565
+ name: string;
1566
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1567
+ } | undefined;
1568
+ hidden?: boolean | undefined;
1569
+ } & ({
1570
+ openapi: (string | string[]) & (string | string[] | undefined);
1571
+ } | {
1572
+ href: string;
1573
+ }))[] | undefined;
1574
+ dropdowns?: ({
1575
+ dropdown: string;
1576
+ icon?: string | {
1577
+ name: string;
1578
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1579
+ } | undefined;
1580
+ hidden?: boolean | undefined;
1581
+ } & ({
1582
+ openapi: (string | string[]) & (string | string[] | undefined);
1583
+ } | {
1584
+ href: string;
1585
+ }))[] | undefined;
1586
+ anchors?: ({
1587
+ anchor: string;
1588
+ icon?: string | {
1589
+ name: string;
1590
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1591
+ } | undefined;
1592
+ color?: {
1593
+ light: string;
1594
+ dark: string;
1595
+ } | undefined;
1596
+ hidden?: boolean | undefined;
1597
+ } & ({
1598
+ openapi: (string | string[]) & (string | string[] | undefined);
1599
+ } | {
1600
+ href: string;
1601
+ }))[] | undefined;
1602
+ };
1603
+ } | undefined)) | undefined);
1069
1604
  description?: string | undefined;
1070
1605
  logo?: string | {
1071
1606
  light: string;
@@ -1232,7 +1767,7 @@ export declare const mintConfigSchema: z.ZodObject<{
1232
1767
  light?: string | undefined;
1233
1768
  dark?: string | undefined;
1234
1769
  };
1235
- navigation: ({
1770
+ navigation: (({
1236
1771
  languages: ({
1237
1772
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1238
1773
  hidden?: boolean | undefined;
@@ -1290,6 +1825,65 @@ export declare const mintConfigSchema: z.ZodObject<{
1290
1825
  } | {
1291
1826
  pages: any[];
1292
1827
  }) & ({
1828
+ global: {
1829
+ languages?: ({
1830
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1831
+ hidden?: boolean | undefined;
1832
+ } & ({
1833
+ openapi: (string | string[]) & (string | string[] | undefined);
1834
+ } | {
1835
+ href: string;
1836
+ }))[] | undefined;
1837
+ versions?: ({
1838
+ version: string;
1839
+ hidden?: boolean | undefined;
1840
+ } & ({
1841
+ openapi: (string | string[]) & (string | string[] | undefined);
1842
+ } | {
1843
+ href: string;
1844
+ }))[] | undefined;
1845
+ tabs?: ({
1846
+ tab: string;
1847
+ icon?: string | {
1848
+ name: string;
1849
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1850
+ } | undefined;
1851
+ hidden?: boolean | undefined;
1852
+ } & ({
1853
+ openapi: (string | string[]) & (string | string[] | undefined);
1854
+ } | {
1855
+ href: string;
1856
+ }))[] | undefined;
1857
+ dropdowns?: ({
1858
+ dropdown: string;
1859
+ icon?: string | {
1860
+ name: string;
1861
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1862
+ } | undefined;
1863
+ hidden?: boolean | undefined;
1864
+ } & ({
1865
+ openapi: (string | string[]) & (string | string[] | undefined);
1866
+ } | {
1867
+ href: string;
1868
+ }))[] | undefined;
1869
+ anchors?: ({
1870
+ anchor: string;
1871
+ icon?: string | {
1872
+ name: string;
1873
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1874
+ } | undefined;
1875
+ color?: {
1876
+ light: string;
1877
+ dark: string;
1878
+ } | undefined;
1879
+ hidden?: boolean | undefined;
1880
+ } & ({
1881
+ openapi: (string | string[]) & (string | string[] | undefined);
1882
+ } | {
1883
+ href: string;
1884
+ }))[] | undefined;
1885
+ };
1886
+ } | undefined)) & ((({
1293
1887
  languages: ({
1294
1888
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1295
1889
  hidden?: boolean | undefined;
@@ -1346,7 +1940,66 @@ export declare const mintConfigSchema: z.ZodObject<{
1346
1940
  }))[];
1347
1941
  } | {
1348
1942
  pages: any[];
1349
- } | undefined);
1943
+ }) & ({
1944
+ global: {
1945
+ languages?: ({
1946
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1947
+ hidden?: boolean | undefined;
1948
+ } & ({
1949
+ openapi: (string | string[]) & (string | string[] | undefined);
1950
+ } | {
1951
+ href: string;
1952
+ }))[] | undefined;
1953
+ versions?: ({
1954
+ version: string;
1955
+ hidden?: boolean | undefined;
1956
+ } & ({
1957
+ openapi: (string | string[]) & (string | string[] | undefined);
1958
+ } | {
1959
+ href: string;
1960
+ }))[] | undefined;
1961
+ tabs?: ({
1962
+ tab: string;
1963
+ icon?: string | {
1964
+ name: string;
1965
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1966
+ } | undefined;
1967
+ hidden?: boolean | undefined;
1968
+ } & ({
1969
+ openapi: (string | string[]) & (string | string[] | undefined);
1970
+ } | {
1971
+ href: string;
1972
+ }))[] | undefined;
1973
+ dropdowns?: ({
1974
+ dropdown: string;
1975
+ icon?: string | {
1976
+ name: string;
1977
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1978
+ } | undefined;
1979
+ hidden?: boolean | undefined;
1980
+ } & ({
1981
+ openapi: (string | string[]) & (string | string[] | undefined);
1982
+ } | {
1983
+ href: string;
1984
+ }))[] | undefined;
1985
+ anchors?: ({
1986
+ anchor: string;
1987
+ icon?: string | {
1988
+ name: string;
1989
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1990
+ } | undefined;
1991
+ color?: {
1992
+ light: string;
1993
+ dark: string;
1994
+ } | undefined;
1995
+ hidden?: boolean | undefined;
1996
+ } & ({
1997
+ openapi: (string | string[]) & (string | string[] | undefined);
1998
+ } | {
1999
+ href: string;
2000
+ }))[] | undefined;
2001
+ };
2002
+ } | undefined)) | undefined);
1350
2003
  $schema?: string | undefined;
1351
2004
  description?: string | undefined;
1352
2005
  logo?: string | {