@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
@@ -189,7 +189,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
189
189
  href: string;
190
190
  } | undefined;
191
191
  }>>;
192
- navigation: z.ZodUnion<[z.ZodObject<{
192
+ navigation: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
193
193
  languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
194
194
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
195
195
  hidden: z.ZodOptional<z.ZodBoolean>;
@@ -482,7 +482,424 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
482
482
  pages: any[];
483
483
  }, {
484
484
  pages: any[];
485
- }>]>;
485
+ }>]>, z.ZodOptional<z.ZodObject<{
486
+ global: z.ZodObject<{
487
+ languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
488
+ language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
489
+ hidden: z.ZodOptional<z.ZodBoolean>;
490
+ }, "strip", z.ZodTypeAny, {
491
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
492
+ hidden?: boolean | undefined;
493
+ }, {
494
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
495
+ hidden?: boolean | undefined;
496
+ }>, z.ZodUnion<[z.ZodObject<{
497
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
498
+ }, "strip", z.ZodTypeAny, {
499
+ openapi: (string | string[]) & (string | string[] | undefined);
500
+ }, {
501
+ openapi: (string | string[]) & (string | string[] | undefined);
502
+ }>, z.ZodObject<{
503
+ href: z.ZodString;
504
+ }, "strip", z.ZodTypeAny, {
505
+ href: string;
506
+ }, {
507
+ href: string;
508
+ }>]>>, "many">>;
509
+ versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
510
+ version: z.ZodString;
511
+ hidden: z.ZodOptional<z.ZodBoolean>;
512
+ }, "strip", z.ZodTypeAny, {
513
+ version: string;
514
+ hidden?: boolean | undefined;
515
+ }, {
516
+ version: string;
517
+ hidden?: boolean | undefined;
518
+ }>, z.ZodUnion<[z.ZodObject<{
519
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
520
+ }, "strip", z.ZodTypeAny, {
521
+ openapi: (string | string[]) & (string | string[] | undefined);
522
+ }, {
523
+ openapi: (string | string[]) & (string | string[] | undefined);
524
+ }>, z.ZodObject<{
525
+ href: z.ZodString;
526
+ }, "strip", z.ZodTypeAny, {
527
+ href: string;
528
+ }, {
529
+ href: string;
530
+ }>]>>, "many">>;
531
+ tabs: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
532
+ tab: z.ZodString;
533
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
534
+ style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
535
+ name: z.ZodEffects<z.ZodString, string, string>;
536
+ }, "strip", z.ZodTypeAny, {
537
+ name: string;
538
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
539
+ }, {
540
+ name: string;
541
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
542
+ }>]>>;
543
+ hidden: z.ZodOptional<z.ZodBoolean>;
544
+ }, "strip", z.ZodTypeAny, {
545
+ tab: string;
546
+ icon?: string | {
547
+ name: string;
548
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
549
+ } | undefined;
550
+ hidden?: boolean | undefined;
551
+ }, {
552
+ tab: string;
553
+ icon?: string | {
554
+ name: string;
555
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
556
+ } | undefined;
557
+ hidden?: boolean | undefined;
558
+ }>, z.ZodUnion<[z.ZodObject<{
559
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
560
+ }, "strip", z.ZodTypeAny, {
561
+ openapi: (string | string[]) & (string | string[] | undefined);
562
+ }, {
563
+ openapi: (string | string[]) & (string | string[] | undefined);
564
+ }>, z.ZodObject<{
565
+ href: z.ZodString;
566
+ }, "strip", z.ZodTypeAny, {
567
+ href: string;
568
+ }, {
569
+ href: string;
570
+ }>]>>, "many">>;
571
+ dropdowns: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
572
+ dropdown: z.ZodString;
573
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
574
+ style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
575
+ name: z.ZodEffects<z.ZodString, string, string>;
576
+ }, "strip", z.ZodTypeAny, {
577
+ name: string;
578
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
579
+ }, {
580
+ name: string;
581
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
582
+ }>]>>;
583
+ hidden: z.ZodOptional<z.ZodBoolean>;
584
+ }, "strip", z.ZodTypeAny, {
585
+ dropdown: 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";
589
+ } | undefined;
590
+ hidden?: boolean | undefined;
591
+ }, {
592
+ dropdown: string;
593
+ icon?: string | {
594
+ name: string;
595
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
596
+ } | undefined;
597
+ hidden?: boolean | undefined;
598
+ }>, z.ZodUnion<[z.ZodObject<{
599
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
600
+ }, "strip", z.ZodTypeAny, {
601
+ openapi: (string | string[]) & (string | string[] | undefined);
602
+ }, {
603
+ openapi: (string | string[]) & (string | string[] | undefined);
604
+ }>, z.ZodObject<{
605
+ href: z.ZodString;
606
+ }, "strip", z.ZodTypeAny, {
607
+ href: string;
608
+ }, {
609
+ href: string;
610
+ }>]>>, "many">>;
611
+ anchors: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
612
+ anchor: z.ZodString;
613
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
614
+ style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
615
+ name: z.ZodEffects<z.ZodString, string, string>;
616
+ }, "strip", z.ZodTypeAny, {
617
+ name: string;
618
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
619
+ }, {
620
+ name: string;
621
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
622
+ }>]>>;
623
+ color: z.ZodOptional<z.ZodObject<{
624
+ light: z.ZodString;
625
+ dark: z.ZodString;
626
+ }, "strict", z.ZodTypeAny, {
627
+ light: string;
628
+ dark: string;
629
+ }, {
630
+ light: string;
631
+ dark: string;
632
+ }>>;
633
+ hidden: z.ZodOptional<z.ZodBoolean>;
634
+ }, "strip", z.ZodTypeAny, {
635
+ anchor: string;
636
+ icon?: string | {
637
+ name: string;
638
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
639
+ } | undefined;
640
+ color?: {
641
+ light: string;
642
+ dark: string;
643
+ } | undefined;
644
+ hidden?: boolean | undefined;
645
+ }, {
646
+ anchor: string;
647
+ icon?: string | {
648
+ name: string;
649
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
650
+ } | undefined;
651
+ color?: {
652
+ light: string;
653
+ dark: string;
654
+ } | undefined;
655
+ hidden?: boolean | undefined;
656
+ }>, z.ZodUnion<[z.ZodObject<{
657
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
658
+ }, "strip", z.ZodTypeAny, {
659
+ openapi: (string | string[]) & (string | string[] | undefined);
660
+ }, {
661
+ openapi: (string | string[]) & (string | string[] | undefined);
662
+ }>, z.ZodObject<{
663
+ href: z.ZodString;
664
+ }, "strip", z.ZodTypeAny, {
665
+ href: string;
666
+ }, {
667
+ href: string;
668
+ }>]>>, "many">>;
669
+ }, "strict", z.ZodTypeAny, {
670
+ languages?: ({
671
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
672
+ hidden?: boolean | undefined;
673
+ } & ({
674
+ openapi: (string | string[]) & (string | string[] | undefined);
675
+ } | {
676
+ href: string;
677
+ }))[] | undefined;
678
+ versions?: ({
679
+ version: string;
680
+ hidden?: boolean | undefined;
681
+ } & ({
682
+ openapi: (string | string[]) & (string | string[] | undefined);
683
+ } | {
684
+ href: string;
685
+ }))[] | undefined;
686
+ tabs?: ({
687
+ tab: string;
688
+ icon?: string | {
689
+ name: string;
690
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
691
+ } | undefined;
692
+ hidden?: boolean | undefined;
693
+ } & ({
694
+ openapi: (string | string[]) & (string | string[] | undefined);
695
+ } | {
696
+ href: string;
697
+ }))[] | undefined;
698
+ dropdowns?: ({
699
+ dropdown: string;
700
+ icon?: string | {
701
+ name: string;
702
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
703
+ } | undefined;
704
+ hidden?: boolean | undefined;
705
+ } & ({
706
+ openapi: (string | string[]) & (string | string[] | undefined);
707
+ } | {
708
+ href: string;
709
+ }))[] | undefined;
710
+ anchors?: ({
711
+ anchor: string;
712
+ icon?: string | {
713
+ name: string;
714
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
715
+ } | undefined;
716
+ color?: {
717
+ light: string;
718
+ dark: string;
719
+ } | undefined;
720
+ hidden?: boolean | undefined;
721
+ } & ({
722
+ openapi: (string | string[]) & (string | string[] | undefined);
723
+ } | {
724
+ href: string;
725
+ }))[] | undefined;
726
+ }, {
727
+ languages?: ({
728
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
729
+ hidden?: boolean | undefined;
730
+ } & ({
731
+ openapi: (string | string[]) & (string | string[] | undefined);
732
+ } | {
733
+ href: string;
734
+ }))[] | undefined;
735
+ versions?: ({
736
+ version: string;
737
+ hidden?: boolean | undefined;
738
+ } & ({
739
+ openapi: (string | string[]) & (string | string[] | undefined);
740
+ } | {
741
+ href: string;
742
+ }))[] | undefined;
743
+ tabs?: ({
744
+ tab: string;
745
+ icon?: string | {
746
+ name: string;
747
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
748
+ } | undefined;
749
+ hidden?: boolean | undefined;
750
+ } & ({
751
+ openapi: (string | string[]) & (string | string[] | undefined);
752
+ } | {
753
+ href: string;
754
+ }))[] | undefined;
755
+ dropdowns?: ({
756
+ dropdown: string;
757
+ icon?: string | {
758
+ name: string;
759
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
760
+ } | undefined;
761
+ hidden?: boolean | undefined;
762
+ } & ({
763
+ openapi: (string | string[]) & (string | string[] | undefined);
764
+ } | {
765
+ href: string;
766
+ }))[] | undefined;
767
+ anchors?: ({
768
+ anchor: string;
769
+ icon?: string | {
770
+ name: string;
771
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
772
+ } | undefined;
773
+ color?: {
774
+ light: string;
775
+ dark: string;
776
+ } | undefined;
777
+ hidden?: boolean | undefined;
778
+ } & ({
779
+ openapi: (string | string[]) & (string | string[] | undefined);
780
+ } | {
781
+ href: string;
782
+ }))[] | undefined;
783
+ }>;
784
+ }, "strip", z.ZodTypeAny, {
785
+ global: {
786
+ languages?: ({
787
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
788
+ hidden?: boolean | undefined;
789
+ } & ({
790
+ openapi: (string | string[]) & (string | string[] | undefined);
791
+ } | {
792
+ href: string;
793
+ }))[] | undefined;
794
+ versions?: ({
795
+ version: string;
796
+ hidden?: boolean | undefined;
797
+ } & ({
798
+ openapi: (string | string[]) & (string | string[] | undefined);
799
+ } | {
800
+ href: string;
801
+ }))[] | undefined;
802
+ tabs?: ({
803
+ tab: string;
804
+ icon?: string | {
805
+ name: string;
806
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
807
+ } | undefined;
808
+ hidden?: boolean | undefined;
809
+ } & ({
810
+ openapi: (string | string[]) & (string | string[] | undefined);
811
+ } | {
812
+ href: string;
813
+ }))[] | undefined;
814
+ dropdowns?: ({
815
+ dropdown: string;
816
+ icon?: string | {
817
+ name: string;
818
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
819
+ } | undefined;
820
+ hidden?: boolean | undefined;
821
+ } & ({
822
+ openapi: (string | string[]) & (string | string[] | undefined);
823
+ } | {
824
+ href: string;
825
+ }))[] | undefined;
826
+ anchors?: ({
827
+ anchor: string;
828
+ icon?: string | {
829
+ name: string;
830
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
831
+ } | undefined;
832
+ color?: {
833
+ light: string;
834
+ dark: string;
835
+ } | undefined;
836
+ hidden?: boolean | undefined;
837
+ } & ({
838
+ openapi: (string | string[]) & (string | string[] | undefined);
839
+ } | {
840
+ href: string;
841
+ }))[] | undefined;
842
+ };
843
+ }, {
844
+ global: {
845
+ languages?: ({
846
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
847
+ hidden?: boolean | undefined;
848
+ } & ({
849
+ openapi: (string | string[]) & (string | string[] | undefined);
850
+ } | {
851
+ href: string;
852
+ }))[] | undefined;
853
+ versions?: ({
854
+ version: string;
855
+ hidden?: boolean | undefined;
856
+ } & ({
857
+ openapi: (string | string[]) & (string | string[] | undefined);
858
+ } | {
859
+ href: string;
860
+ }))[] | undefined;
861
+ tabs?: ({
862
+ tab: string;
863
+ icon?: string | {
864
+ name: string;
865
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
866
+ } | undefined;
867
+ hidden?: boolean | undefined;
868
+ } & ({
869
+ openapi: (string | string[]) & (string | string[] | undefined);
870
+ } | {
871
+ href: string;
872
+ }))[] | undefined;
873
+ dropdowns?: ({
874
+ dropdown: string;
875
+ icon?: string | {
876
+ name: string;
877
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
878
+ } | undefined;
879
+ hidden?: boolean | undefined;
880
+ } & ({
881
+ openapi: (string | string[]) & (string | string[] | undefined);
882
+ } | {
883
+ href: string;
884
+ }))[] | undefined;
885
+ anchors?: ({
886
+ anchor: string;
887
+ icon?: string | {
888
+ name: string;
889
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
890
+ } | undefined;
891
+ color?: {
892
+ light: string;
893
+ dark: string;
894
+ } | undefined;
895
+ hidden?: boolean | undefined;
896
+ } & ({
897
+ openapi: (string | string[]) & (string | string[] | undefined);
898
+ } | {
899
+ href: string;
900
+ }))[] | undefined;
901
+ };
902
+ }>>>;
486
903
  footer: z.ZodOptional<z.ZodObject<{
487
904
  socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter"]>, z.ZodString>>;
488
905
  links: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -952,7 +1369,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
952
1369
  light?: string | undefined;
953
1370
  dark?: string | undefined;
954
1371
  };
955
- navigation: ({
1372
+ navigation: (({
956
1373
  languages: ({
957
1374
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
958
1375
  hidden?: boolean | undefined;
@@ -1010,6 +1427,65 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1010
1427
  } | {
1011
1428
  pages: any[];
1012
1429
  }) & ({
1430
+ global: {
1431
+ languages?: ({
1432
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1433
+ hidden?: boolean | undefined;
1434
+ } & ({
1435
+ openapi: (string | string[]) & (string | string[] | undefined);
1436
+ } | {
1437
+ href: string;
1438
+ }))[] | undefined;
1439
+ versions?: ({
1440
+ version: string;
1441
+ hidden?: boolean | undefined;
1442
+ } & ({
1443
+ openapi: (string | string[]) & (string | string[] | undefined);
1444
+ } | {
1445
+ href: string;
1446
+ }))[] | undefined;
1447
+ tabs?: ({
1448
+ tab: string;
1449
+ icon?: string | {
1450
+ name: string;
1451
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1452
+ } | undefined;
1453
+ hidden?: boolean | undefined;
1454
+ } & ({
1455
+ openapi: (string | string[]) & (string | string[] | undefined);
1456
+ } | {
1457
+ href: string;
1458
+ }))[] | undefined;
1459
+ dropdowns?: ({
1460
+ dropdown: string;
1461
+ icon?: string | {
1462
+ name: string;
1463
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1464
+ } | undefined;
1465
+ hidden?: boolean | undefined;
1466
+ } & ({
1467
+ openapi: (string | string[]) & (string | string[] | undefined);
1468
+ } | {
1469
+ href: string;
1470
+ }))[] | undefined;
1471
+ anchors?: ({
1472
+ anchor: string;
1473
+ icon?: string | {
1474
+ name: string;
1475
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1476
+ } | undefined;
1477
+ color?: {
1478
+ light: string;
1479
+ dark: string;
1480
+ } | undefined;
1481
+ hidden?: boolean | undefined;
1482
+ } & ({
1483
+ openapi: (string | string[]) & (string | string[] | undefined);
1484
+ } | {
1485
+ href: string;
1486
+ }))[] | undefined;
1487
+ };
1488
+ } | undefined)) & ((({
1013
1489
  languages: ({
1014
1490
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1015
1491
  hidden?: boolean | undefined;
@@ -1033,40 +1509,99 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1033
1509
  style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1034
1510
  } | undefined;
1035
1511
  hidden?: boolean | undefined;
1036
- root?: string | undefined;
1512
+ root?: string | undefined;
1513
+ } & ({
1514
+ openapi: (string | string[]) & (string | string[] | undefined);
1515
+ } | {
1516
+ pages: any[];
1517
+ }))[];
1518
+ } | {
1519
+ pages: any[];
1520
+ }))[];
1521
+ } | {
1522
+ versions: any[];
1523
+ } | {
1524
+ tabs: any[];
1525
+ } | {
1526
+ dropdowns: any[];
1527
+ } | {
1528
+ anchors: any[];
1529
+ } | {
1530
+ groups: ({
1531
+ group: string;
1532
+ icon?: string | {
1533
+ name: string;
1534
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1535
+ } | undefined;
1536
+ hidden?: boolean | undefined;
1537
+ root?: string | undefined;
1538
+ } & ({
1539
+ openapi: (string | string[]) & (string | string[] | undefined);
1540
+ } | {
1541
+ pages: any[];
1542
+ }))[];
1543
+ } | {
1544
+ pages: any[];
1545
+ }) & ({
1546
+ global: {
1547
+ languages?: ({
1548
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1549
+ hidden?: boolean | undefined;
1550
+ } & ({
1551
+ openapi: (string | string[]) & (string | string[] | undefined);
1552
+ } | {
1553
+ href: string;
1554
+ }))[] | undefined;
1555
+ versions?: ({
1556
+ version: string;
1557
+ hidden?: boolean | undefined;
1558
+ } & ({
1559
+ openapi: (string | string[]) & (string | string[] | undefined);
1560
+ } | {
1561
+ href: string;
1562
+ }))[] | undefined;
1563
+ tabs?: ({
1564
+ tab: string;
1565
+ icon?: string | {
1566
+ name: string;
1567
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1568
+ } | undefined;
1569
+ hidden?: boolean | undefined;
1570
+ } & ({
1571
+ openapi: (string | string[]) & (string | string[] | undefined);
1572
+ } | {
1573
+ href: string;
1574
+ }))[] | undefined;
1575
+ dropdowns?: ({
1576
+ dropdown: string;
1577
+ icon?: string | {
1578
+ name: string;
1579
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1580
+ } | undefined;
1581
+ hidden?: boolean | undefined;
1582
+ } & ({
1583
+ openapi: (string | string[]) & (string | string[] | undefined);
1584
+ } | {
1585
+ href: string;
1586
+ }))[] | undefined;
1587
+ anchors?: ({
1588
+ anchor: string;
1589
+ icon?: string | {
1590
+ name: string;
1591
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1592
+ } | undefined;
1593
+ color?: {
1594
+ light: string;
1595
+ dark: string;
1596
+ } | undefined;
1597
+ hidden?: boolean | undefined;
1037
1598
  } & ({
1038
1599
  openapi: (string | string[]) & (string | string[] | undefined);
1039
1600
  } | {
1040
- pages: any[];
1041
- }))[];
1042
- } | {
1043
- pages: any[];
1044
- }))[];
1045
- } | {
1046
- versions: any[];
1047
- } | {
1048
- tabs: any[];
1049
- } | {
1050
- dropdowns: any[];
1051
- } | {
1052
- anchors: any[];
1053
- } | {
1054
- groups: ({
1055
- group: string;
1056
- icon?: string | {
1057
- name: string;
1058
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1059
- } | undefined;
1060
- hidden?: boolean | undefined;
1061
- root?: string | undefined;
1062
- } & ({
1063
- openapi: (string | string[]) & (string | string[] | undefined);
1064
- } | {
1065
- pages: any[];
1066
- }))[];
1067
- } | {
1068
- pages: any[];
1069
- } | undefined);
1601
+ href: string;
1602
+ }))[] | undefined;
1603
+ };
1604
+ } | undefined)) | undefined);
1070
1605
  description?: string | undefined;
1071
1606
  logo?: string | {
1072
1607
  light: string;
@@ -1233,7 +1768,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1233
1768
  light?: string | undefined;
1234
1769
  dark?: string | undefined;
1235
1770
  };
1236
- navigation: ({
1771
+ navigation: (({
1237
1772
  languages: ({
1238
1773
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1239
1774
  hidden?: boolean | undefined;
@@ -1291,6 +1826,65 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1291
1826
  } | {
1292
1827
  pages: any[];
1293
1828
  }) & ({
1829
+ global: {
1830
+ languages?: ({
1831
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1832
+ hidden?: boolean | undefined;
1833
+ } & ({
1834
+ openapi: (string | string[]) & (string | string[] | undefined);
1835
+ } | {
1836
+ href: string;
1837
+ }))[] | undefined;
1838
+ versions?: ({
1839
+ version: string;
1840
+ hidden?: boolean | undefined;
1841
+ } & ({
1842
+ openapi: (string | string[]) & (string | string[] | undefined);
1843
+ } | {
1844
+ href: string;
1845
+ }))[] | undefined;
1846
+ tabs?: ({
1847
+ tab: string;
1848
+ icon?: string | {
1849
+ name: string;
1850
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1851
+ } | undefined;
1852
+ hidden?: boolean | undefined;
1853
+ } & ({
1854
+ openapi: (string | string[]) & (string | string[] | undefined);
1855
+ } | {
1856
+ href: string;
1857
+ }))[] | undefined;
1858
+ dropdowns?: ({
1859
+ dropdown: string;
1860
+ icon?: string | {
1861
+ name: string;
1862
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1863
+ } | undefined;
1864
+ hidden?: boolean | undefined;
1865
+ } & ({
1866
+ openapi: (string | string[]) & (string | string[] | undefined);
1867
+ } | {
1868
+ href: string;
1869
+ }))[] | undefined;
1870
+ anchors?: ({
1871
+ anchor: string;
1872
+ icon?: string | {
1873
+ name: string;
1874
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1875
+ } | undefined;
1876
+ color?: {
1877
+ light: string;
1878
+ dark: string;
1879
+ } | undefined;
1880
+ hidden?: boolean | undefined;
1881
+ } & ({
1882
+ openapi: (string | string[]) & (string | string[] | undefined);
1883
+ } | {
1884
+ href: string;
1885
+ }))[] | undefined;
1886
+ };
1887
+ } | undefined)) & ((({
1294
1888
  languages: ({
1295
1889
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1296
1890
  hidden?: boolean | undefined;
@@ -1347,7 +1941,66 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1347
1941
  }))[];
1348
1942
  } | {
1349
1943
  pages: any[];
1350
- } | undefined);
1944
+ }) & ({
1945
+ global: {
1946
+ languages?: ({
1947
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1948
+ hidden?: boolean | undefined;
1949
+ } & ({
1950
+ openapi: (string | string[]) & (string | string[] | undefined);
1951
+ } | {
1952
+ href: string;
1953
+ }))[] | undefined;
1954
+ versions?: ({
1955
+ version: string;
1956
+ hidden?: boolean | undefined;
1957
+ } & ({
1958
+ openapi: (string | string[]) & (string | string[] | undefined);
1959
+ } | {
1960
+ href: string;
1961
+ }))[] | undefined;
1962
+ tabs?: ({
1963
+ tab: string;
1964
+ icon?: string | {
1965
+ name: string;
1966
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1967
+ } | undefined;
1968
+ hidden?: boolean | undefined;
1969
+ } & ({
1970
+ openapi: (string | string[]) & (string | string[] | undefined);
1971
+ } | {
1972
+ href: string;
1973
+ }))[] | undefined;
1974
+ dropdowns?: ({
1975
+ dropdown: string;
1976
+ icon?: string | {
1977
+ name: string;
1978
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1979
+ } | undefined;
1980
+ hidden?: boolean | undefined;
1981
+ } & ({
1982
+ openapi: (string | string[]) & (string | string[] | undefined);
1983
+ } | {
1984
+ href: string;
1985
+ }))[] | undefined;
1986
+ anchors?: ({
1987
+ anchor: string;
1988
+ icon?: string | {
1989
+ name: string;
1990
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1991
+ } | undefined;
1992
+ color?: {
1993
+ light: string;
1994
+ dark: string;
1995
+ } | undefined;
1996
+ hidden?: boolean | undefined;
1997
+ } & ({
1998
+ openapi: (string | string[]) & (string | string[] | undefined);
1999
+ } | {
2000
+ href: string;
2001
+ }))[] | undefined;
2002
+ };
2003
+ } | undefined)) | undefined);
1351
2004
  $schema?: string | undefined;
1352
2005
  description?: string | undefined;
1353
2006
  logo?: string | {
@@ -1656,95 +2309,387 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1656
2309
  href: string;
1657
2310
  label: string;
1658
2311
  }, {
1659
- type: "button";
1660
- href: string;
1661
- label: string;
1662
- }>, z.ZodObject<{
1663
- type: z.ZodLiteral<"github">;
1664
- href: z.ZodString;
2312
+ type: "button";
2313
+ href: string;
2314
+ label: string;
2315
+ }>, z.ZodObject<{
2316
+ type: z.ZodLiteral<"github">;
2317
+ href: z.ZodString;
2318
+ }, "strip", z.ZodTypeAny, {
2319
+ type: "github";
2320
+ href: string;
2321
+ }, {
2322
+ type: "github";
2323
+ href: string;
2324
+ }>]>>;
2325
+ }, "strip", z.ZodTypeAny, {
2326
+ links?: {
2327
+ href: string;
2328
+ label: string;
2329
+ }[] | undefined;
2330
+ primary?: {
2331
+ type: "button";
2332
+ href: string;
2333
+ label: string;
2334
+ } | {
2335
+ type: "github";
2336
+ href: string;
2337
+ } | undefined;
2338
+ }, {
2339
+ links?: {
2340
+ href: string;
2341
+ label: string;
2342
+ }[] | undefined;
2343
+ primary?: {
2344
+ type: "button";
2345
+ href: string;
2346
+ label: string;
2347
+ } | {
2348
+ type: "github";
2349
+ href: string;
2350
+ } | undefined;
2351
+ }>>;
2352
+ navigation: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
2353
+ languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
2354
+ language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
2355
+ hidden: z.ZodOptional<z.ZodBoolean>;
2356
+ }, "strip", z.ZodTypeAny, {
2357
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2358
+ hidden?: boolean | undefined;
2359
+ }, {
2360
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2361
+ hidden?: boolean | undefined;
2362
+ }>, z.ZodUnion<[z.ZodObject<{
2363
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
2364
+ }, "strip", z.ZodTypeAny, {
2365
+ openapi: (string | string[]) & (string | string[] | undefined);
2366
+ }, {
2367
+ openapi: (string | string[]) & (string | string[] | undefined);
2368
+ }>, z.ZodObject<{
2369
+ href: z.ZodString;
2370
+ }, "strip", z.ZodTypeAny, {
2371
+ href: string;
2372
+ }, {
2373
+ href: string;
2374
+ }>, z.ZodLazy<z.ZodObject<{
2375
+ versions: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
2376
+ }, "strip", z.ZodTypeAny, {
2377
+ versions: any[];
2378
+ }, {
2379
+ versions: any[];
2380
+ }>>, z.ZodLazy<z.ZodObject<{
2381
+ tabs: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
2382
+ }, "strip", z.ZodTypeAny, {
2383
+ tabs: any[];
2384
+ }, {
2385
+ tabs: any[];
2386
+ }>>, z.ZodLazy<z.ZodObject<{
2387
+ dropdowns: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
2388
+ }, "strip", z.ZodTypeAny, {
2389
+ dropdowns: any[];
2390
+ }, {
2391
+ dropdowns: any[];
2392
+ }>>, z.ZodLazy<z.ZodObject<{
2393
+ anchors: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
2394
+ }, "strip", z.ZodTypeAny, {
2395
+ anchors: any[];
2396
+ }, {
2397
+ anchors: any[];
2398
+ }>>, z.ZodLazy<z.ZodObject<{
2399
+ groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
2400
+ group: z.ZodString;
2401
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
2402
+ style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
2403
+ name: z.ZodEffects<z.ZodString, string, string>;
2404
+ }, "strip", z.ZodTypeAny, {
2405
+ name: string;
2406
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2407
+ }, {
2408
+ name: string;
2409
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2410
+ }>]>>;
2411
+ hidden: z.ZodOptional<z.ZodBoolean>;
2412
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2413
+ }, "strip", z.ZodTypeAny, {
2414
+ group: string;
2415
+ icon?: string | {
2416
+ name: string;
2417
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2418
+ } | undefined;
2419
+ hidden?: boolean | undefined;
2420
+ root?: string | undefined;
2421
+ }, {
2422
+ group: string;
2423
+ icon?: string | {
2424
+ name: string;
2425
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2426
+ } | undefined;
2427
+ hidden?: boolean | undefined;
2428
+ root?: string | undefined;
2429
+ }>, z.ZodUnion<[z.ZodObject<{
2430
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
2431
+ }, "strip", z.ZodTypeAny, {
2432
+ openapi: (string | string[]) & (string | string[] | undefined);
2433
+ }, {
2434
+ openapi: (string | string[]) & (string | string[] | undefined);
2435
+ }>, z.ZodLazy<z.ZodObject<{
2436
+ pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
2437
+ }, "strip", z.ZodTypeAny, {
2438
+ pages: any[];
2439
+ }, {
2440
+ pages: any[];
2441
+ }>>]>>, "many">;
2442
+ }, "strip", z.ZodTypeAny, {
2443
+ groups: ({
2444
+ group: string;
2445
+ icon?: string | {
2446
+ name: string;
2447
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2448
+ } | undefined;
2449
+ hidden?: boolean | undefined;
2450
+ root?: string | undefined;
2451
+ } & ({
2452
+ openapi: (string | string[]) & (string | string[] | undefined);
2453
+ } | {
2454
+ pages: any[];
2455
+ }))[];
2456
+ }, {
2457
+ groups: ({
2458
+ group: string;
2459
+ icon?: string | {
2460
+ name: string;
2461
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2462
+ } | undefined;
2463
+ hidden?: boolean | undefined;
2464
+ root?: string | undefined;
2465
+ } & ({
2466
+ openapi: (string | string[]) & (string | string[] | undefined);
2467
+ } | {
2468
+ pages: any[];
2469
+ }))[];
2470
+ }>>, z.ZodLazy<z.ZodObject<{
2471
+ pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
1665
2472
  }, "strip", z.ZodTypeAny, {
1666
- type: "github";
1667
- href: string;
2473
+ pages: any[];
1668
2474
  }, {
1669
- type: "github";
1670
- href: string;
1671
- }>]>>;
2475
+ pages: any[];
2476
+ }>>]>>, "many">;
1672
2477
  }, "strip", z.ZodTypeAny, {
1673
- links?: {
1674
- href: string;
1675
- label: string;
1676
- }[] | undefined;
1677
- primary?: {
1678
- type: "button";
1679
- href: string;
1680
- label: string;
2478
+ languages: ({
2479
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2480
+ hidden?: boolean | undefined;
2481
+ } & ({
2482
+ openapi: (string | string[]) & (string | string[] | undefined);
1681
2483
  } | {
1682
- type: "github";
1683
2484
  href: string;
1684
- } | undefined;
2485
+ } | {
2486
+ versions: any[];
2487
+ } | {
2488
+ tabs: any[];
2489
+ } | {
2490
+ dropdowns: any[];
2491
+ } | {
2492
+ anchors: any[];
2493
+ } | {
2494
+ groups: ({
2495
+ group: string;
2496
+ icon?: string | {
2497
+ name: string;
2498
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2499
+ } | undefined;
2500
+ hidden?: boolean | undefined;
2501
+ root?: string | undefined;
2502
+ } & ({
2503
+ openapi: (string | string[]) & (string | string[] | undefined);
2504
+ } | {
2505
+ pages: any[];
2506
+ }))[];
2507
+ } | {
2508
+ pages: any[];
2509
+ }))[];
1685
2510
  }, {
1686
- links?: {
1687
- href: string;
1688
- label: string;
1689
- }[] | undefined;
1690
- primary?: {
1691
- type: "button";
1692
- href: string;
1693
- label: string;
2511
+ languages: ({
2512
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2513
+ hidden?: boolean | undefined;
2514
+ } & ({
2515
+ openapi: (string | string[]) & (string | string[] | undefined);
1694
2516
  } | {
1695
- type: "github";
1696
2517
  href: string;
1697
- } | undefined;
1698
- }>>;
1699
- navigation: z.ZodUnion<[z.ZodObject<{
1700
- languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
1701
- language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
2518
+ } | {
2519
+ versions: any[];
2520
+ } | {
2521
+ tabs: any[];
2522
+ } | {
2523
+ dropdowns: any[];
2524
+ } | {
2525
+ anchors: any[];
2526
+ } | {
2527
+ groups: ({
2528
+ group: string;
2529
+ icon?: string | {
2530
+ name: string;
2531
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2532
+ } | undefined;
2533
+ hidden?: boolean | undefined;
2534
+ root?: string | undefined;
2535
+ } & ({
2536
+ openapi: (string | string[]) & (string | string[] | undefined);
2537
+ } | {
2538
+ pages: any[];
2539
+ }))[];
2540
+ } | {
2541
+ pages: any[];
2542
+ }))[];
2543
+ }>, z.ZodObject<{
2544
+ versions: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
2545
+ }, "strip", z.ZodTypeAny, {
2546
+ versions: any[];
2547
+ }, {
2548
+ versions: any[];
2549
+ }>, z.ZodObject<{
2550
+ tabs: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
2551
+ }, "strip", z.ZodTypeAny, {
2552
+ tabs: any[];
2553
+ }, {
2554
+ tabs: any[];
2555
+ }>, z.ZodObject<{
2556
+ dropdowns: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
2557
+ }, "strip", z.ZodTypeAny, {
2558
+ dropdowns: any[];
2559
+ }, {
2560
+ dropdowns: any[];
2561
+ }>, z.ZodObject<{
2562
+ anchors: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
2563
+ }, "strip", z.ZodTypeAny, {
2564
+ anchors: any[];
2565
+ }, {
2566
+ anchors: any[];
2567
+ }>, z.ZodObject<{
2568
+ groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
2569
+ group: z.ZodString;
2570
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
2571
+ style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
2572
+ name: z.ZodEffects<z.ZodString, string, string>;
2573
+ }, "strip", z.ZodTypeAny, {
2574
+ name: string;
2575
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2576
+ }, {
2577
+ name: string;
2578
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2579
+ }>]>>;
1702
2580
  hidden: z.ZodOptional<z.ZodBoolean>;
2581
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1703
2582
  }, "strip", z.ZodTypeAny, {
1704
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2583
+ group: string;
2584
+ icon?: string | {
2585
+ name: string;
2586
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2587
+ } | undefined;
1705
2588
  hidden?: boolean | undefined;
2589
+ root?: string | undefined;
1706
2590
  }, {
1707
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2591
+ group: string;
2592
+ icon?: string | {
2593
+ name: string;
2594
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2595
+ } | undefined;
1708
2596
  hidden?: boolean | undefined;
2597
+ root?: string | undefined;
1709
2598
  }>, z.ZodUnion<[z.ZodObject<{
1710
2599
  openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
1711
2600
  }, "strip", z.ZodTypeAny, {
1712
2601
  openapi: (string | string[]) & (string | string[] | undefined);
1713
2602
  }, {
1714
2603
  openapi: (string | string[]) & (string | string[] | undefined);
1715
- }>, z.ZodObject<{
1716
- href: z.ZodString;
1717
- }, "strip", z.ZodTypeAny, {
1718
- href: string;
1719
- }, {
1720
- href: string;
1721
2604
  }>, z.ZodLazy<z.ZodObject<{
1722
- versions: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
1723
- }, "strip", z.ZodTypeAny, {
1724
- versions: any[];
1725
- }, {
1726
- versions: any[];
1727
- }>>, z.ZodLazy<z.ZodObject<{
1728
- tabs: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
1729
- }, "strip", z.ZodTypeAny, {
1730
- tabs: any[];
1731
- }, {
1732
- tabs: any[];
1733
- }>>, z.ZodLazy<z.ZodObject<{
1734
- dropdowns: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
1735
- }, "strip", z.ZodTypeAny, {
1736
- dropdowns: any[];
1737
- }, {
1738
- dropdowns: any[];
1739
- }>>, z.ZodLazy<z.ZodObject<{
1740
- anchors: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
2605
+ pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
1741
2606
  }, "strip", z.ZodTypeAny, {
1742
- anchors: any[];
2607
+ pages: any[];
1743
2608
  }, {
1744
- anchors: any[];
1745
- }>>, z.ZodLazy<z.ZodObject<{
1746
- groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
1747
- group: z.ZodString;
2609
+ pages: any[];
2610
+ }>>]>>, "many">;
2611
+ }, "strip", z.ZodTypeAny, {
2612
+ groups: ({
2613
+ group: string;
2614
+ icon?: string | {
2615
+ name: string;
2616
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2617
+ } | undefined;
2618
+ hidden?: boolean | undefined;
2619
+ root?: string | undefined;
2620
+ } & ({
2621
+ openapi: (string | string[]) & (string | string[] | undefined);
2622
+ } | {
2623
+ pages: any[];
2624
+ }))[];
2625
+ }, {
2626
+ groups: ({
2627
+ group: string;
2628
+ icon?: string | {
2629
+ name: string;
2630
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2631
+ } | undefined;
2632
+ hidden?: boolean | undefined;
2633
+ root?: string | undefined;
2634
+ } & ({
2635
+ openapi: (string | string[]) & (string | string[] | undefined);
2636
+ } | {
2637
+ pages: any[];
2638
+ }))[];
2639
+ }>, z.ZodObject<{
2640
+ pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
2641
+ }, "strip", z.ZodTypeAny, {
2642
+ pages: any[];
2643
+ }, {
2644
+ pages: any[];
2645
+ }>]>, z.ZodOptional<z.ZodObject<{
2646
+ global: z.ZodObject<{
2647
+ languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
2648
+ language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
2649
+ hidden: z.ZodOptional<z.ZodBoolean>;
2650
+ }, "strip", z.ZodTypeAny, {
2651
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2652
+ hidden?: boolean | undefined;
2653
+ }, {
2654
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2655
+ hidden?: boolean | undefined;
2656
+ }>, z.ZodUnion<[z.ZodObject<{
2657
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
2658
+ }, "strip", z.ZodTypeAny, {
2659
+ openapi: (string | string[]) & (string | string[] | undefined);
2660
+ }, {
2661
+ openapi: (string | string[]) & (string | string[] | undefined);
2662
+ }>, z.ZodObject<{
2663
+ href: z.ZodString;
2664
+ }, "strip", z.ZodTypeAny, {
2665
+ href: string;
2666
+ }, {
2667
+ href: string;
2668
+ }>]>>, "many">>;
2669
+ versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
2670
+ version: z.ZodString;
2671
+ hidden: z.ZodOptional<z.ZodBoolean>;
2672
+ }, "strip", z.ZodTypeAny, {
2673
+ version: string;
2674
+ hidden?: boolean | undefined;
2675
+ }, {
2676
+ version: string;
2677
+ hidden?: boolean | undefined;
2678
+ }>, z.ZodUnion<[z.ZodObject<{
2679
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
2680
+ }, "strip", z.ZodTypeAny, {
2681
+ openapi: (string | string[]) & (string | string[] | undefined);
2682
+ }, {
2683
+ openapi: (string | string[]) & (string | string[] | undefined);
2684
+ }>, z.ZodObject<{
2685
+ href: z.ZodString;
2686
+ }, "strip", z.ZodTypeAny, {
2687
+ href: string;
2688
+ }, {
2689
+ href: string;
2690
+ }>]>>, "many">>;
2691
+ tabs: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
2692
+ tab: z.ZodString;
1748
2693
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1749
2694
  style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
1750
2695
  name: z.ZodEffects<z.ZodString, string, string>;
@@ -1756,240 +2701,365 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1756
2701
  style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1757
2702
  }>]>>;
1758
2703
  hidden: z.ZodOptional<z.ZodBoolean>;
1759
- root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1760
2704
  }, "strip", z.ZodTypeAny, {
1761
- group: string;
2705
+ tab: string;
1762
2706
  icon?: string | {
1763
2707
  name: string;
1764
2708
  style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1765
2709
  } | undefined;
1766
2710
  hidden?: boolean | undefined;
1767
- root?: string | undefined;
1768
2711
  }, {
1769
- group: string;
2712
+ tab: string;
1770
2713
  icon?: string | {
1771
2714
  name: string;
1772
2715
  style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1773
2716
  } | undefined;
1774
2717
  hidden?: boolean | undefined;
1775
- root?: string | undefined;
1776
2718
  }>, z.ZodUnion<[z.ZodObject<{
1777
2719
  openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
1778
2720
  }, "strip", z.ZodTypeAny, {
1779
2721
  openapi: (string | string[]) & (string | string[] | undefined);
1780
2722
  }, {
1781
2723
  openapi: (string | string[]) & (string | string[] | undefined);
1782
- }>, z.ZodLazy<z.ZodObject<{
1783
- pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
2724
+ }>, z.ZodObject<{
2725
+ href: z.ZodString;
1784
2726
  }, "strip", z.ZodTypeAny, {
1785
- pages: any[];
2727
+ href: string;
1786
2728
  }, {
1787
- pages: any[];
1788
- }>>]>>, "many">;
1789
- }, "strip", z.ZodTypeAny, {
1790
- groups: ({
1791
- group: string;
2729
+ href: string;
2730
+ }>]>>, "many">>;
2731
+ dropdowns: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
2732
+ dropdown: z.ZodString;
2733
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
2734
+ style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
2735
+ name: z.ZodEffects<z.ZodString, string, string>;
2736
+ }, "strip", z.ZodTypeAny, {
2737
+ name: string;
2738
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2739
+ }, {
2740
+ name: string;
2741
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2742
+ }>]>>;
2743
+ hidden: z.ZodOptional<z.ZodBoolean>;
2744
+ }, "strip", z.ZodTypeAny, {
2745
+ dropdown: string;
1792
2746
  icon?: string | {
1793
2747
  name: string;
1794
2748
  style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1795
2749
  } | undefined;
1796
2750
  hidden?: boolean | undefined;
1797
- root?: string | undefined;
2751
+ }, {
2752
+ dropdown: string;
2753
+ icon?: string | {
2754
+ name: string;
2755
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2756
+ } | undefined;
2757
+ hidden?: boolean | undefined;
2758
+ }>, z.ZodUnion<[z.ZodObject<{
2759
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
2760
+ }, "strip", z.ZodTypeAny, {
2761
+ openapi: (string | string[]) & (string | string[] | undefined);
2762
+ }, {
2763
+ openapi: (string | string[]) & (string | string[] | undefined);
2764
+ }>, z.ZodObject<{
2765
+ href: z.ZodString;
2766
+ }, "strip", z.ZodTypeAny, {
2767
+ href: string;
2768
+ }, {
2769
+ href: string;
2770
+ }>]>>, "many">>;
2771
+ anchors: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
2772
+ anchor: z.ZodString;
2773
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
2774
+ style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
2775
+ name: z.ZodEffects<z.ZodString, string, string>;
2776
+ }, "strip", z.ZodTypeAny, {
2777
+ name: string;
2778
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2779
+ }, {
2780
+ name: string;
2781
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2782
+ }>]>>;
2783
+ color: z.ZodOptional<z.ZodObject<{
2784
+ light: z.ZodString;
2785
+ dark: z.ZodString;
2786
+ }, "strict", z.ZodTypeAny, {
2787
+ light: string;
2788
+ dark: string;
2789
+ }, {
2790
+ light: string;
2791
+ dark: string;
2792
+ }>>;
2793
+ hidden: z.ZodOptional<z.ZodBoolean>;
2794
+ }, "strip", z.ZodTypeAny, {
2795
+ anchor: string;
2796
+ icon?: string | {
2797
+ name: string;
2798
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2799
+ } | undefined;
2800
+ color?: {
2801
+ light: string;
2802
+ dark: string;
2803
+ } | undefined;
2804
+ hidden?: boolean | undefined;
2805
+ }, {
2806
+ anchor: string;
2807
+ icon?: string | {
2808
+ name: string;
2809
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2810
+ } | undefined;
2811
+ color?: {
2812
+ light: string;
2813
+ dark: string;
2814
+ } | undefined;
2815
+ hidden?: boolean | undefined;
2816
+ }>, z.ZodUnion<[z.ZodObject<{
2817
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
2818
+ }, "strip", z.ZodTypeAny, {
2819
+ openapi: (string | string[]) & (string | string[] | undefined);
2820
+ }, {
2821
+ openapi: (string | string[]) & (string | string[] | undefined);
2822
+ }>, z.ZodObject<{
2823
+ href: z.ZodString;
2824
+ }, "strip", z.ZodTypeAny, {
2825
+ href: string;
2826
+ }, {
2827
+ href: string;
2828
+ }>]>>, "many">>;
2829
+ }, "strict", z.ZodTypeAny, {
2830
+ languages?: ({
2831
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2832
+ hidden?: boolean | undefined;
1798
2833
  } & ({
1799
2834
  openapi: (string | string[]) & (string | string[] | undefined);
1800
2835
  } | {
1801
- pages: any[];
1802
- }))[];
1803
- }, {
1804
- groups: ({
1805
- group: string;
2836
+ href: string;
2837
+ }))[] | undefined;
2838
+ versions?: ({
2839
+ version: string;
2840
+ hidden?: boolean | undefined;
2841
+ } & ({
2842
+ openapi: (string | string[]) & (string | string[] | undefined);
2843
+ } | {
2844
+ href: string;
2845
+ }))[] | undefined;
2846
+ tabs?: ({
2847
+ tab: string;
1806
2848
  icon?: string | {
1807
2849
  name: string;
1808
2850
  style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1809
2851
  } | undefined;
1810
2852
  hidden?: boolean | undefined;
1811
- root?: string | undefined;
1812
2853
  } & ({
1813
2854
  openapi: (string | string[]) & (string | string[] | undefined);
1814
2855
  } | {
1815
- pages: any[];
1816
- }))[];
1817
- }>>, z.ZodLazy<z.ZodObject<{
1818
- pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
1819
- }, "strip", z.ZodTypeAny, {
1820
- pages: any[];
2856
+ href: string;
2857
+ }))[] | undefined;
2858
+ dropdowns?: ({
2859
+ dropdown: string;
2860
+ icon?: string | {
2861
+ name: string;
2862
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2863
+ } | undefined;
2864
+ hidden?: boolean | undefined;
2865
+ } & ({
2866
+ openapi: (string | string[]) & (string | string[] | undefined);
2867
+ } | {
2868
+ href: string;
2869
+ }))[] | undefined;
2870
+ anchors?: ({
2871
+ anchor: string;
2872
+ icon?: string | {
2873
+ name: string;
2874
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2875
+ } | undefined;
2876
+ color?: {
2877
+ light: string;
2878
+ dark: string;
2879
+ } | undefined;
2880
+ hidden?: boolean | undefined;
2881
+ } & ({
2882
+ openapi: (string | string[]) & (string | string[] | undefined);
2883
+ } | {
2884
+ href: string;
2885
+ }))[] | undefined;
1821
2886
  }, {
1822
- pages: any[];
1823
- }>>]>>, "many">;
2887
+ languages?: ({
2888
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2889
+ hidden?: boolean | undefined;
2890
+ } & ({
2891
+ openapi: (string | string[]) & (string | string[] | undefined);
2892
+ } | {
2893
+ href: string;
2894
+ }))[] | undefined;
2895
+ versions?: ({
2896
+ version: string;
2897
+ hidden?: boolean | undefined;
2898
+ } & ({
2899
+ openapi: (string | string[]) & (string | string[] | undefined);
2900
+ } | {
2901
+ href: string;
2902
+ }))[] | undefined;
2903
+ tabs?: ({
2904
+ tab: string;
2905
+ icon?: string | {
2906
+ name: string;
2907
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2908
+ } | undefined;
2909
+ hidden?: boolean | undefined;
2910
+ } & ({
2911
+ openapi: (string | string[]) & (string | string[] | undefined);
2912
+ } | {
2913
+ href: string;
2914
+ }))[] | undefined;
2915
+ dropdowns?: ({
2916
+ dropdown: string;
2917
+ icon?: string | {
2918
+ name: string;
2919
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2920
+ } | undefined;
2921
+ hidden?: boolean | undefined;
2922
+ } & ({
2923
+ openapi: (string | string[]) & (string | string[] | undefined);
2924
+ } | {
2925
+ href: string;
2926
+ }))[] | undefined;
2927
+ anchors?: ({
2928
+ anchor: string;
2929
+ icon?: string | {
2930
+ name: string;
2931
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2932
+ } | undefined;
2933
+ color?: {
2934
+ light: string;
2935
+ dark: string;
2936
+ } | undefined;
2937
+ hidden?: boolean | undefined;
2938
+ } & ({
2939
+ openapi: (string | string[]) & (string | string[] | undefined);
2940
+ } | {
2941
+ href: string;
2942
+ }))[] | undefined;
2943
+ }>;
1824
2944
  }, "strip", z.ZodTypeAny, {
1825
- languages: ({
1826
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1827
- hidden?: boolean | undefined;
1828
- } & ({
1829
- openapi: (string | string[]) & (string | string[] | undefined);
1830
- } | {
1831
- href: string;
1832
- } | {
1833
- versions: any[];
1834
- } | {
1835
- tabs: any[];
1836
- } | {
1837
- dropdowns: any[];
1838
- } | {
1839
- anchors: any[];
1840
- } | {
1841
- groups: ({
1842
- group: string;
2945
+ global: {
2946
+ languages?: ({
2947
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2948
+ hidden?: boolean | undefined;
2949
+ } & ({
2950
+ openapi: (string | string[]) & (string | string[] | undefined);
2951
+ } | {
2952
+ href: string;
2953
+ }))[] | undefined;
2954
+ versions?: ({
2955
+ version: string;
2956
+ hidden?: boolean | undefined;
2957
+ } & ({
2958
+ openapi: (string | string[]) & (string | string[] | undefined);
2959
+ } | {
2960
+ href: string;
2961
+ }))[] | undefined;
2962
+ tabs?: ({
2963
+ tab: string;
1843
2964
  icon?: string | {
1844
2965
  name: string;
1845
2966
  style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1846
2967
  } | undefined;
1847
2968
  hidden?: boolean | undefined;
1848
- root?: string | undefined;
1849
2969
  } & ({
1850
2970
  openapi: (string | string[]) & (string | string[] | undefined);
1851
2971
  } | {
1852
- pages: any[];
1853
- }))[];
1854
- } | {
1855
- pages: any[];
1856
- }))[];
2972
+ href: string;
2973
+ }))[] | undefined;
2974
+ dropdowns?: ({
2975
+ dropdown: string;
2976
+ icon?: string | {
2977
+ name: string;
2978
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2979
+ } | undefined;
2980
+ hidden?: boolean | undefined;
2981
+ } & ({
2982
+ openapi: (string | string[]) & (string | string[] | undefined);
2983
+ } | {
2984
+ href: string;
2985
+ }))[] | undefined;
2986
+ anchors?: ({
2987
+ anchor: string;
2988
+ icon?: string | {
2989
+ name: string;
2990
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2991
+ } | undefined;
2992
+ color?: {
2993
+ light: string;
2994
+ dark: string;
2995
+ } | undefined;
2996
+ hidden?: boolean | undefined;
2997
+ } & ({
2998
+ openapi: (string | string[]) & (string | string[] | undefined);
2999
+ } | {
3000
+ href: string;
3001
+ }))[] | undefined;
3002
+ };
1857
3003
  }, {
1858
- languages: ({
1859
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1860
- hidden?: boolean | undefined;
1861
- } & ({
1862
- openapi: (string | string[]) & (string | string[] | undefined);
1863
- } | {
1864
- href: string;
1865
- } | {
1866
- versions: any[];
1867
- } | {
1868
- tabs: any[];
1869
- } | {
1870
- dropdowns: any[];
1871
- } | {
1872
- anchors: any[];
1873
- } | {
1874
- groups: ({
1875
- group: string;
3004
+ global: {
3005
+ languages?: ({
3006
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
3007
+ hidden?: boolean | undefined;
3008
+ } & ({
3009
+ openapi: (string | string[]) & (string | string[] | undefined);
3010
+ } | {
3011
+ href: string;
3012
+ }))[] | undefined;
3013
+ versions?: ({
3014
+ version: string;
3015
+ hidden?: boolean | undefined;
3016
+ } & ({
3017
+ openapi: (string | string[]) & (string | string[] | undefined);
3018
+ } | {
3019
+ href: string;
3020
+ }))[] | undefined;
3021
+ tabs?: ({
3022
+ tab: string;
3023
+ icon?: string | {
3024
+ name: string;
3025
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3026
+ } | undefined;
3027
+ hidden?: boolean | undefined;
3028
+ } & ({
3029
+ openapi: (string | string[]) & (string | string[] | undefined);
3030
+ } | {
3031
+ href: string;
3032
+ }))[] | undefined;
3033
+ dropdowns?: ({
3034
+ dropdown: string;
1876
3035
  icon?: string | {
1877
3036
  name: string;
1878
3037
  style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1879
3038
  } | undefined;
1880
3039
  hidden?: boolean | undefined;
1881
- root?: string | undefined;
1882
3040
  } & ({
1883
3041
  openapi: (string | string[]) & (string | string[] | undefined);
1884
3042
  } | {
1885
- pages: any[];
1886
- }))[];
1887
- } | {
1888
- pages: any[];
1889
- }))[];
1890
- }>, z.ZodObject<{
1891
- versions: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
1892
- }, "strip", z.ZodTypeAny, {
1893
- versions: any[];
1894
- }, {
1895
- versions: any[];
1896
- }>, z.ZodObject<{
1897
- tabs: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
1898
- }, "strip", z.ZodTypeAny, {
1899
- tabs: any[];
1900
- }, {
1901
- tabs: any[];
1902
- }>, z.ZodObject<{
1903
- dropdowns: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
1904
- }, "strip", z.ZodTypeAny, {
1905
- dropdowns: any[];
1906
- }, {
1907
- dropdowns: any[];
1908
- }>, z.ZodObject<{
1909
- anchors: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
1910
- }, "strip", z.ZodTypeAny, {
1911
- anchors: any[];
1912
- }, {
1913
- anchors: any[];
1914
- }>, z.ZodObject<{
1915
- groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
1916
- group: z.ZodString;
1917
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1918
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
1919
- name: z.ZodEffects<z.ZodString, string, string>;
1920
- }, "strip", z.ZodTypeAny, {
1921
- name: string;
1922
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1923
- }, {
1924
- name: string;
1925
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1926
- }>]>>;
1927
- hidden: z.ZodOptional<z.ZodBoolean>;
1928
- root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1929
- }, "strip", z.ZodTypeAny, {
1930
- group: string;
1931
- icon?: string | {
1932
- name: string;
1933
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1934
- } | undefined;
1935
- hidden?: boolean | undefined;
1936
- root?: string | undefined;
1937
- }, {
1938
- group: string;
1939
- icon?: string | {
1940
- name: string;
1941
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1942
- } | undefined;
1943
- hidden?: boolean | undefined;
1944
- root?: string | undefined;
1945
- }>, z.ZodUnion<[z.ZodObject<{
1946
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
1947
- }, "strip", z.ZodTypeAny, {
1948
- openapi: (string | string[]) & (string | string[] | undefined);
1949
- }, {
1950
- openapi: (string | string[]) & (string | string[] | undefined);
1951
- }>, z.ZodLazy<z.ZodObject<{
1952
- pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
1953
- }, "strip", z.ZodTypeAny, {
1954
- pages: any[];
1955
- }, {
1956
- pages: any[];
1957
- }>>]>>, "many">;
1958
- }, "strip", z.ZodTypeAny, {
1959
- groups: ({
1960
- group: string;
1961
- icon?: string | {
1962
- name: string;
1963
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1964
- } | undefined;
1965
- hidden?: boolean | undefined;
1966
- root?: string | undefined;
1967
- } & ({
1968
- openapi: (string | string[]) & (string | string[] | undefined);
1969
- } | {
1970
- pages: any[];
1971
- }))[];
1972
- }, {
1973
- groups: ({
1974
- group: 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
- root?: string | undefined;
1981
- } & ({
1982
- openapi: (string | string[]) & (string | string[] | undefined);
1983
- } | {
1984
- pages: any[];
1985
- }))[];
1986
- }>, z.ZodObject<{
1987
- pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
1988
- }, "strip", z.ZodTypeAny, {
1989
- pages: any[];
1990
- }, {
1991
- pages: any[];
1992
- }>]>;
3043
+ href: string;
3044
+ }))[] | undefined;
3045
+ anchors?: ({
3046
+ anchor: string;
3047
+ icon?: string | {
3048
+ name: string;
3049
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3050
+ } | undefined;
3051
+ color?: {
3052
+ light: string;
3053
+ dark: string;
3054
+ } | undefined;
3055
+ hidden?: boolean | undefined;
3056
+ } & ({
3057
+ openapi: (string | string[]) & (string | string[] | undefined);
3058
+ } | {
3059
+ href: string;
3060
+ }))[] | undefined;
3061
+ };
3062
+ }>>>;
1993
3063
  footer: z.ZodOptional<z.ZodObject<{
1994
3064
  socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter"]>, z.ZodString>>;
1995
3065
  links: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -2459,7 +3529,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2459
3529
  light?: string | undefined;
2460
3530
  dark?: string | undefined;
2461
3531
  };
2462
- navigation: ({
3532
+ navigation: (({
2463
3533
  languages: ({
2464
3534
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2465
3535
  hidden?: boolean | undefined;
@@ -2517,6 +3587,65 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2517
3587
  } | {
2518
3588
  pages: any[];
2519
3589
  }) & ({
3590
+ global: {
3591
+ languages?: ({
3592
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
3593
+ hidden?: boolean | undefined;
3594
+ } & ({
3595
+ openapi: (string | string[]) & (string | string[] | undefined);
3596
+ } | {
3597
+ href: string;
3598
+ }))[] | undefined;
3599
+ versions?: ({
3600
+ version: string;
3601
+ hidden?: boolean | undefined;
3602
+ } & ({
3603
+ openapi: (string | string[]) & (string | string[] | undefined);
3604
+ } | {
3605
+ href: string;
3606
+ }))[] | undefined;
3607
+ tabs?: ({
3608
+ tab: string;
3609
+ icon?: string | {
3610
+ name: string;
3611
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3612
+ } | undefined;
3613
+ hidden?: boolean | undefined;
3614
+ } & ({
3615
+ openapi: (string | string[]) & (string | string[] | undefined);
3616
+ } | {
3617
+ href: string;
3618
+ }))[] | undefined;
3619
+ dropdowns?: ({
3620
+ dropdown: string;
3621
+ icon?: string | {
3622
+ name: string;
3623
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3624
+ } | undefined;
3625
+ hidden?: boolean | undefined;
3626
+ } & ({
3627
+ openapi: (string | string[]) & (string | string[] | undefined);
3628
+ } | {
3629
+ href: string;
3630
+ }))[] | undefined;
3631
+ anchors?: ({
3632
+ anchor: string;
3633
+ icon?: string | {
3634
+ name: string;
3635
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3636
+ } | undefined;
3637
+ color?: {
3638
+ light: string;
3639
+ dark: string;
3640
+ } | undefined;
3641
+ hidden?: boolean | undefined;
3642
+ } & ({
3643
+ openapi: (string | string[]) & (string | string[] | undefined);
3644
+ } | {
3645
+ href: string;
3646
+ }))[] | undefined;
3647
+ };
3648
+ } | undefined)) & ((({
2520
3649
  languages: ({
2521
3650
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2522
3651
  hidden?: boolean | undefined;
@@ -2573,7 +3702,66 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2573
3702
  }))[];
2574
3703
  } | {
2575
3704
  pages: any[];
2576
- } | undefined);
3705
+ }) & ({
3706
+ global: {
3707
+ languages?: ({
3708
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
3709
+ hidden?: boolean | undefined;
3710
+ } & ({
3711
+ openapi: (string | string[]) & (string | string[] | undefined);
3712
+ } | {
3713
+ href: string;
3714
+ }))[] | undefined;
3715
+ versions?: ({
3716
+ version: string;
3717
+ hidden?: boolean | undefined;
3718
+ } & ({
3719
+ openapi: (string | string[]) & (string | string[] | undefined);
3720
+ } | {
3721
+ href: string;
3722
+ }))[] | undefined;
3723
+ tabs?: ({
3724
+ tab: string;
3725
+ icon?: string | {
3726
+ name: string;
3727
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3728
+ } | undefined;
3729
+ hidden?: boolean | undefined;
3730
+ } & ({
3731
+ openapi: (string | string[]) & (string | string[] | undefined);
3732
+ } | {
3733
+ href: string;
3734
+ }))[] | undefined;
3735
+ dropdowns?: ({
3736
+ dropdown: string;
3737
+ icon?: string | {
3738
+ name: string;
3739
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3740
+ } | undefined;
3741
+ hidden?: boolean | undefined;
3742
+ } & ({
3743
+ openapi: (string | string[]) & (string | string[] | undefined);
3744
+ } | {
3745
+ href: string;
3746
+ }))[] | undefined;
3747
+ anchors?: ({
3748
+ anchor: string;
3749
+ icon?: string | {
3750
+ name: string;
3751
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3752
+ } | undefined;
3753
+ color?: {
3754
+ light: string;
3755
+ dark: string;
3756
+ } | undefined;
3757
+ hidden?: boolean | undefined;
3758
+ } & ({
3759
+ openapi: (string | string[]) & (string | string[] | undefined);
3760
+ } | {
3761
+ href: string;
3762
+ }))[] | undefined;
3763
+ };
3764
+ } | undefined)) | undefined);
2577
3765
  description?: string | undefined;
2578
3766
  logo?: string | {
2579
3767
  light: string;
@@ -2740,7 +3928,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2740
3928
  light?: string | undefined;
2741
3929
  dark?: string | undefined;
2742
3930
  };
2743
- navigation: ({
3931
+ navigation: (({
2744
3932
  languages: ({
2745
3933
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2746
3934
  hidden?: boolean | undefined;
@@ -2798,6 +3986,65 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2798
3986
  } | {
2799
3987
  pages: any[];
2800
3988
  }) & ({
3989
+ global: {
3990
+ languages?: ({
3991
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
3992
+ hidden?: boolean | undefined;
3993
+ } & ({
3994
+ openapi: (string | string[]) & (string | string[] | undefined);
3995
+ } | {
3996
+ href: string;
3997
+ }))[] | undefined;
3998
+ versions?: ({
3999
+ version: string;
4000
+ hidden?: boolean | undefined;
4001
+ } & ({
4002
+ openapi: (string | string[]) & (string | string[] | undefined);
4003
+ } | {
4004
+ href: string;
4005
+ }))[] | undefined;
4006
+ tabs?: ({
4007
+ tab: string;
4008
+ icon?: string | {
4009
+ name: string;
4010
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4011
+ } | undefined;
4012
+ hidden?: boolean | undefined;
4013
+ } & ({
4014
+ openapi: (string | string[]) & (string | string[] | undefined);
4015
+ } | {
4016
+ href: string;
4017
+ }))[] | undefined;
4018
+ dropdowns?: ({
4019
+ dropdown: string;
4020
+ icon?: string | {
4021
+ name: string;
4022
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4023
+ } | undefined;
4024
+ hidden?: boolean | undefined;
4025
+ } & ({
4026
+ openapi: (string | string[]) & (string | string[] | undefined);
4027
+ } | {
4028
+ href: string;
4029
+ }))[] | undefined;
4030
+ anchors?: ({
4031
+ anchor: string;
4032
+ icon?: string | {
4033
+ name: string;
4034
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4035
+ } | undefined;
4036
+ color?: {
4037
+ light: string;
4038
+ dark: string;
4039
+ } | undefined;
4040
+ hidden?: boolean | undefined;
4041
+ } & ({
4042
+ openapi: (string | string[]) & (string | string[] | undefined);
4043
+ } | {
4044
+ href: string;
4045
+ }))[] | undefined;
4046
+ };
4047
+ } | undefined)) & ((({
2801
4048
  languages: ({
2802
4049
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2803
4050
  hidden?: boolean | undefined;
@@ -2854,7 +4101,66 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2854
4101
  }))[];
2855
4102
  } | {
2856
4103
  pages: any[];
2857
- } | undefined);
4104
+ }) & ({
4105
+ global: {
4106
+ languages?: ({
4107
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
4108
+ hidden?: boolean | undefined;
4109
+ } & ({
4110
+ openapi: (string | string[]) & (string | string[] | undefined);
4111
+ } | {
4112
+ href: string;
4113
+ }))[] | undefined;
4114
+ versions?: ({
4115
+ version: string;
4116
+ hidden?: boolean | undefined;
4117
+ } & ({
4118
+ openapi: (string | string[]) & (string | string[] | undefined);
4119
+ } | {
4120
+ href: string;
4121
+ }))[] | undefined;
4122
+ tabs?: ({
4123
+ tab: string;
4124
+ icon?: string | {
4125
+ name: string;
4126
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4127
+ } | undefined;
4128
+ hidden?: boolean | undefined;
4129
+ } & ({
4130
+ openapi: (string | string[]) & (string | string[] | undefined);
4131
+ } | {
4132
+ href: string;
4133
+ }))[] | undefined;
4134
+ dropdowns?: ({
4135
+ dropdown: string;
4136
+ icon?: string | {
4137
+ name: string;
4138
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4139
+ } | undefined;
4140
+ hidden?: boolean | undefined;
4141
+ } & ({
4142
+ openapi: (string | string[]) & (string | string[] | undefined);
4143
+ } | {
4144
+ href: string;
4145
+ }))[] | undefined;
4146
+ anchors?: ({
4147
+ anchor: string;
4148
+ icon?: string | {
4149
+ name: string;
4150
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4151
+ } | undefined;
4152
+ color?: {
4153
+ light: string;
4154
+ dark: string;
4155
+ } | undefined;
4156
+ hidden?: boolean | undefined;
4157
+ } & ({
4158
+ openapi: (string | string[]) & (string | string[] | undefined);
4159
+ } | {
4160
+ href: string;
4161
+ }))[] | undefined;
4162
+ };
4163
+ } | undefined)) | undefined);
2858
4164
  $schema?: string | undefined;
2859
4165
  description?: string | undefined;
2860
4166
  logo?: string | {
@@ -3203,7 +4509,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3203
4509
  href: string;
3204
4510
  } | undefined;
3205
4511
  }>>;
3206
- navigation: z.ZodUnion<[z.ZodObject<{
4512
+ navigation: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
3207
4513
  languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
3208
4514
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
3209
4515
  hidden: z.ZodOptional<z.ZodBoolean>;
@@ -3263,240 +4569,657 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3263
4569
  style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3264
4570
  }>]>>;
3265
4571
  hidden: z.ZodOptional<z.ZodBoolean>;
3266
- root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
4572
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
4573
+ }, "strip", z.ZodTypeAny, {
4574
+ group: string;
4575
+ icon?: string | {
4576
+ name: string;
4577
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4578
+ } | undefined;
4579
+ hidden?: boolean | undefined;
4580
+ root?: string | undefined;
4581
+ }, {
4582
+ group: string;
4583
+ icon?: string | {
4584
+ name: string;
4585
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4586
+ } | undefined;
4587
+ hidden?: boolean | undefined;
4588
+ root?: string | undefined;
4589
+ }>, z.ZodUnion<[z.ZodObject<{
4590
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
4591
+ }, "strip", z.ZodTypeAny, {
4592
+ openapi: (string | string[]) & (string | string[] | undefined);
4593
+ }, {
4594
+ openapi: (string | string[]) & (string | string[] | undefined);
4595
+ }>, z.ZodLazy<z.ZodObject<{
4596
+ pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
4597
+ }, "strip", z.ZodTypeAny, {
4598
+ pages: any[];
4599
+ }, {
4600
+ pages: any[];
4601
+ }>>]>>, "many">;
4602
+ }, "strip", z.ZodTypeAny, {
4603
+ groups: ({
4604
+ group: string;
4605
+ icon?: string | {
4606
+ name: string;
4607
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4608
+ } | undefined;
4609
+ hidden?: boolean | undefined;
4610
+ root?: string | undefined;
4611
+ } & ({
4612
+ openapi: (string | string[]) & (string | string[] | undefined);
4613
+ } | {
4614
+ pages: any[];
4615
+ }))[];
4616
+ }, {
4617
+ groups: ({
4618
+ group: string;
4619
+ icon?: string | {
4620
+ name: string;
4621
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4622
+ } | undefined;
4623
+ hidden?: boolean | undefined;
4624
+ root?: string | undefined;
4625
+ } & ({
4626
+ openapi: (string | string[]) & (string | string[] | undefined);
4627
+ } | {
4628
+ pages: any[];
4629
+ }))[];
4630
+ }>>, z.ZodLazy<z.ZodObject<{
4631
+ pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
4632
+ }, "strip", z.ZodTypeAny, {
4633
+ pages: any[];
4634
+ }, {
4635
+ pages: any[];
4636
+ }>>]>>, "many">;
4637
+ }, "strip", z.ZodTypeAny, {
4638
+ languages: ({
4639
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
4640
+ hidden?: boolean | undefined;
4641
+ } & ({
4642
+ openapi: (string | string[]) & (string | string[] | undefined);
4643
+ } | {
4644
+ href: string;
4645
+ } | {
4646
+ versions: any[];
4647
+ } | {
4648
+ tabs: any[];
4649
+ } | {
4650
+ dropdowns: any[];
4651
+ } | {
4652
+ anchors: any[];
4653
+ } | {
4654
+ groups: ({
4655
+ group: string;
4656
+ icon?: string | {
4657
+ name: string;
4658
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4659
+ } | undefined;
4660
+ hidden?: boolean | undefined;
4661
+ root?: string | undefined;
4662
+ } & ({
4663
+ openapi: (string | string[]) & (string | string[] | undefined);
4664
+ } | {
4665
+ pages: any[];
4666
+ }))[];
4667
+ } | {
4668
+ pages: any[];
4669
+ }))[];
4670
+ }, {
4671
+ languages: ({
4672
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
4673
+ hidden?: boolean | undefined;
4674
+ } & ({
4675
+ openapi: (string | string[]) & (string | string[] | undefined);
4676
+ } | {
4677
+ href: string;
4678
+ } | {
4679
+ versions: any[];
4680
+ } | {
4681
+ tabs: any[];
4682
+ } | {
4683
+ dropdowns: any[];
4684
+ } | {
4685
+ anchors: any[];
4686
+ } | {
4687
+ groups: ({
4688
+ group: string;
4689
+ icon?: string | {
4690
+ name: string;
4691
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4692
+ } | undefined;
4693
+ hidden?: boolean | undefined;
4694
+ root?: string | undefined;
4695
+ } & ({
4696
+ openapi: (string | string[]) & (string | string[] | undefined);
4697
+ } | {
4698
+ pages: any[];
4699
+ }))[];
4700
+ } | {
4701
+ pages: any[];
4702
+ }))[];
4703
+ }>, z.ZodObject<{
4704
+ versions: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
4705
+ }, "strip", z.ZodTypeAny, {
4706
+ versions: any[];
4707
+ }, {
4708
+ versions: any[];
4709
+ }>, z.ZodObject<{
4710
+ tabs: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
4711
+ }, "strip", z.ZodTypeAny, {
4712
+ tabs: any[];
4713
+ }, {
4714
+ tabs: any[];
4715
+ }>, z.ZodObject<{
4716
+ dropdowns: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
4717
+ }, "strip", z.ZodTypeAny, {
4718
+ dropdowns: any[];
4719
+ }, {
4720
+ dropdowns: any[];
4721
+ }>, z.ZodObject<{
4722
+ anchors: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
4723
+ }, "strip", z.ZodTypeAny, {
4724
+ anchors: any[];
4725
+ }, {
4726
+ anchors: any[];
4727
+ }>, z.ZodObject<{
4728
+ groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
4729
+ group: z.ZodString;
4730
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
4731
+ style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
4732
+ name: z.ZodEffects<z.ZodString, string, string>;
4733
+ }, "strip", z.ZodTypeAny, {
4734
+ name: string;
4735
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4736
+ }, {
4737
+ name: string;
4738
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4739
+ }>]>>;
4740
+ hidden: z.ZodOptional<z.ZodBoolean>;
4741
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
4742
+ }, "strip", z.ZodTypeAny, {
4743
+ group: string;
4744
+ icon?: string | {
4745
+ name: string;
4746
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4747
+ } | undefined;
4748
+ hidden?: boolean | undefined;
4749
+ root?: string | undefined;
4750
+ }, {
4751
+ group: string;
4752
+ icon?: string | {
4753
+ name: string;
4754
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4755
+ } | undefined;
4756
+ hidden?: boolean | undefined;
4757
+ root?: string | undefined;
4758
+ }>, z.ZodUnion<[z.ZodObject<{
4759
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
4760
+ }, "strip", z.ZodTypeAny, {
4761
+ openapi: (string | string[]) & (string | string[] | undefined);
4762
+ }, {
4763
+ openapi: (string | string[]) & (string | string[] | undefined);
4764
+ }>, z.ZodLazy<z.ZodObject<{
4765
+ pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
4766
+ }, "strip", z.ZodTypeAny, {
4767
+ pages: any[];
4768
+ }, {
4769
+ pages: any[];
4770
+ }>>]>>, "many">;
4771
+ }, "strip", z.ZodTypeAny, {
4772
+ groups: ({
4773
+ group: string;
4774
+ icon?: string | {
4775
+ name: string;
4776
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4777
+ } | undefined;
4778
+ hidden?: boolean | undefined;
4779
+ root?: string | undefined;
4780
+ } & ({
4781
+ openapi: (string | string[]) & (string | string[] | undefined);
4782
+ } | {
4783
+ pages: any[];
4784
+ }))[];
4785
+ }, {
4786
+ groups: ({
4787
+ group: string;
4788
+ icon?: string | {
4789
+ name: string;
4790
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4791
+ } | undefined;
4792
+ hidden?: boolean | undefined;
4793
+ root?: string | undefined;
4794
+ } & ({
4795
+ openapi: (string | string[]) & (string | string[] | undefined);
4796
+ } | {
4797
+ pages: any[];
4798
+ }))[];
4799
+ }>, z.ZodObject<{
4800
+ pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
4801
+ }, "strip", z.ZodTypeAny, {
4802
+ pages: any[];
4803
+ }, {
4804
+ pages: any[];
4805
+ }>]>, z.ZodOptional<z.ZodObject<{
4806
+ global: z.ZodObject<{
4807
+ languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
4808
+ language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
4809
+ hidden: z.ZodOptional<z.ZodBoolean>;
4810
+ }, "strip", z.ZodTypeAny, {
4811
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
4812
+ hidden?: boolean | undefined;
4813
+ }, {
4814
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
4815
+ hidden?: boolean | undefined;
4816
+ }>, z.ZodUnion<[z.ZodObject<{
4817
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
4818
+ }, "strip", z.ZodTypeAny, {
4819
+ openapi: (string | string[]) & (string | string[] | undefined);
4820
+ }, {
4821
+ openapi: (string | string[]) & (string | string[] | undefined);
4822
+ }>, z.ZodObject<{
4823
+ href: z.ZodString;
4824
+ }, "strip", z.ZodTypeAny, {
4825
+ href: string;
4826
+ }, {
4827
+ href: string;
4828
+ }>]>>, "many">>;
4829
+ versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
4830
+ version: z.ZodString;
4831
+ hidden: z.ZodOptional<z.ZodBoolean>;
4832
+ }, "strip", z.ZodTypeAny, {
4833
+ version: string;
4834
+ hidden?: boolean | undefined;
4835
+ }, {
4836
+ version: string;
4837
+ hidden?: boolean | undefined;
4838
+ }>, z.ZodUnion<[z.ZodObject<{
4839
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
4840
+ }, "strip", z.ZodTypeAny, {
4841
+ openapi: (string | string[]) & (string | string[] | undefined);
4842
+ }, {
4843
+ openapi: (string | string[]) & (string | string[] | undefined);
4844
+ }>, z.ZodObject<{
4845
+ href: z.ZodString;
4846
+ }, "strip", z.ZodTypeAny, {
4847
+ href: string;
4848
+ }, {
4849
+ href: string;
4850
+ }>]>>, "many">>;
4851
+ tabs: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
4852
+ tab: z.ZodString;
4853
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
4854
+ style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
4855
+ name: z.ZodEffects<z.ZodString, string, string>;
4856
+ }, "strip", z.ZodTypeAny, {
4857
+ name: string;
4858
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4859
+ }, {
4860
+ name: string;
4861
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4862
+ }>]>>;
4863
+ hidden: z.ZodOptional<z.ZodBoolean>;
3267
4864
  }, "strip", z.ZodTypeAny, {
3268
- group: string;
4865
+ tab: string;
3269
4866
  icon?: string | {
3270
4867
  name: string;
3271
4868
  style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3272
4869
  } | undefined;
3273
4870
  hidden?: boolean | undefined;
3274
- root?: string | undefined;
3275
4871
  }, {
3276
- group: string;
4872
+ tab: string;
3277
4873
  icon?: string | {
3278
4874
  name: string;
3279
4875
  style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3280
4876
  } | undefined;
3281
4877
  hidden?: boolean | undefined;
3282
- root?: string | undefined;
3283
4878
  }>, z.ZodUnion<[z.ZodObject<{
3284
4879
  openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
3285
4880
  }, "strip", z.ZodTypeAny, {
3286
4881
  openapi: (string | string[]) & (string | string[] | undefined);
3287
4882
  }, {
3288
4883
  openapi: (string | string[]) & (string | string[] | undefined);
3289
- }>, z.ZodLazy<z.ZodObject<{
3290
- pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
4884
+ }>, z.ZodObject<{
4885
+ href: z.ZodString;
3291
4886
  }, "strip", z.ZodTypeAny, {
3292
- pages: any[];
4887
+ href: string;
3293
4888
  }, {
3294
- pages: any[];
3295
- }>>]>>, "many">;
3296
- }, "strip", z.ZodTypeAny, {
3297
- groups: ({
3298
- group: string;
4889
+ href: string;
4890
+ }>]>>, "many">>;
4891
+ dropdowns: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
4892
+ dropdown: z.ZodString;
4893
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
4894
+ style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
4895
+ name: z.ZodEffects<z.ZodString, string, string>;
4896
+ }, "strip", z.ZodTypeAny, {
4897
+ name: string;
4898
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4899
+ }, {
4900
+ name: string;
4901
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4902
+ }>]>>;
4903
+ hidden: z.ZodOptional<z.ZodBoolean>;
4904
+ }, "strip", z.ZodTypeAny, {
4905
+ dropdown: string;
3299
4906
  icon?: string | {
3300
4907
  name: string;
3301
4908
  style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3302
4909
  } | undefined;
3303
4910
  hidden?: boolean | undefined;
3304
- root?: string | undefined;
4911
+ }, {
4912
+ dropdown: string;
4913
+ icon?: string | {
4914
+ name: string;
4915
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4916
+ } | undefined;
4917
+ hidden?: boolean | undefined;
4918
+ }>, z.ZodUnion<[z.ZodObject<{
4919
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
4920
+ }, "strip", z.ZodTypeAny, {
4921
+ openapi: (string | string[]) & (string | string[] | undefined);
4922
+ }, {
4923
+ openapi: (string | string[]) & (string | string[] | undefined);
4924
+ }>, z.ZodObject<{
4925
+ href: z.ZodString;
4926
+ }, "strip", z.ZodTypeAny, {
4927
+ href: string;
4928
+ }, {
4929
+ href: string;
4930
+ }>]>>, "many">>;
4931
+ anchors: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
4932
+ anchor: z.ZodString;
4933
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
4934
+ style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
4935
+ name: z.ZodEffects<z.ZodString, string, string>;
4936
+ }, "strip", z.ZodTypeAny, {
4937
+ name: string;
4938
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4939
+ }, {
4940
+ name: string;
4941
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4942
+ }>]>>;
4943
+ color: z.ZodOptional<z.ZodObject<{
4944
+ light: z.ZodString;
4945
+ dark: z.ZodString;
4946
+ }, "strict", z.ZodTypeAny, {
4947
+ light: string;
4948
+ dark: string;
4949
+ }, {
4950
+ light: string;
4951
+ dark: string;
4952
+ }>>;
4953
+ hidden: z.ZodOptional<z.ZodBoolean>;
4954
+ }, "strip", z.ZodTypeAny, {
4955
+ anchor: string;
4956
+ icon?: string | {
4957
+ name: string;
4958
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4959
+ } | undefined;
4960
+ color?: {
4961
+ light: string;
4962
+ dark: string;
4963
+ } | undefined;
4964
+ hidden?: boolean | undefined;
4965
+ }, {
4966
+ anchor: string;
4967
+ icon?: string | {
4968
+ name: string;
4969
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4970
+ } | undefined;
4971
+ color?: {
4972
+ light: string;
4973
+ dark: string;
4974
+ } | undefined;
4975
+ hidden?: boolean | undefined;
4976
+ }>, z.ZodUnion<[z.ZodObject<{
4977
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
4978
+ }, "strip", z.ZodTypeAny, {
4979
+ openapi: (string | string[]) & (string | string[] | undefined);
4980
+ }, {
4981
+ openapi: (string | string[]) & (string | string[] | undefined);
4982
+ }>, z.ZodObject<{
4983
+ href: z.ZodString;
4984
+ }, "strip", z.ZodTypeAny, {
4985
+ href: string;
4986
+ }, {
4987
+ href: string;
4988
+ }>]>>, "many">>;
4989
+ }, "strict", z.ZodTypeAny, {
4990
+ languages?: ({
4991
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
4992
+ hidden?: boolean | undefined;
3305
4993
  } & ({
3306
4994
  openapi: (string | string[]) & (string | string[] | undefined);
3307
4995
  } | {
3308
- pages: any[];
3309
- }))[];
3310
- }, {
3311
- groups: ({
3312
- group: string;
4996
+ href: string;
4997
+ }))[] | undefined;
4998
+ versions?: ({
4999
+ version: string;
5000
+ hidden?: boolean | undefined;
5001
+ } & ({
5002
+ openapi: (string | string[]) & (string | string[] | undefined);
5003
+ } | {
5004
+ href: string;
5005
+ }))[] | undefined;
5006
+ tabs?: ({
5007
+ tab: string;
3313
5008
  icon?: string | {
3314
5009
  name: string;
3315
5010
  style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3316
5011
  } | undefined;
3317
5012
  hidden?: boolean | undefined;
3318
- root?: string | undefined;
3319
5013
  } & ({
3320
5014
  openapi: (string | string[]) & (string | string[] | undefined);
3321
5015
  } | {
3322
- pages: any[];
3323
- }))[];
3324
- }>>, z.ZodLazy<z.ZodObject<{
3325
- pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
3326
- }, "strip", z.ZodTypeAny, {
3327
- pages: any[];
5016
+ href: string;
5017
+ }))[] | undefined;
5018
+ dropdowns?: ({
5019
+ dropdown: string;
5020
+ icon?: string | {
5021
+ name: string;
5022
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5023
+ } | undefined;
5024
+ hidden?: boolean | undefined;
5025
+ } & ({
5026
+ openapi: (string | string[]) & (string | string[] | undefined);
5027
+ } | {
5028
+ href: string;
5029
+ }))[] | undefined;
5030
+ anchors?: ({
5031
+ anchor: string;
5032
+ icon?: string | {
5033
+ name: string;
5034
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5035
+ } | undefined;
5036
+ color?: {
5037
+ light: string;
5038
+ dark: string;
5039
+ } | undefined;
5040
+ hidden?: boolean | undefined;
5041
+ } & ({
5042
+ openapi: (string | string[]) & (string | string[] | undefined);
5043
+ } | {
5044
+ href: string;
5045
+ }))[] | undefined;
3328
5046
  }, {
3329
- pages: any[];
3330
- }>>]>>, "many">;
5047
+ languages?: ({
5048
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
5049
+ hidden?: boolean | undefined;
5050
+ } & ({
5051
+ openapi: (string | string[]) & (string | string[] | undefined);
5052
+ } | {
5053
+ href: string;
5054
+ }))[] | undefined;
5055
+ versions?: ({
5056
+ version: string;
5057
+ hidden?: boolean | undefined;
5058
+ } & ({
5059
+ openapi: (string | string[]) & (string | string[] | undefined);
5060
+ } | {
5061
+ href: string;
5062
+ }))[] | undefined;
5063
+ tabs?: ({
5064
+ tab: string;
5065
+ icon?: string | {
5066
+ name: string;
5067
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5068
+ } | undefined;
5069
+ hidden?: boolean | undefined;
5070
+ } & ({
5071
+ openapi: (string | string[]) & (string | string[] | undefined);
5072
+ } | {
5073
+ href: string;
5074
+ }))[] | undefined;
5075
+ dropdowns?: ({
5076
+ dropdown: string;
5077
+ icon?: string | {
5078
+ name: string;
5079
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5080
+ } | undefined;
5081
+ hidden?: boolean | undefined;
5082
+ } & ({
5083
+ openapi: (string | string[]) & (string | string[] | undefined);
5084
+ } | {
5085
+ href: string;
5086
+ }))[] | undefined;
5087
+ anchors?: ({
5088
+ anchor: string;
5089
+ icon?: string | {
5090
+ name: string;
5091
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5092
+ } | undefined;
5093
+ color?: {
5094
+ light: string;
5095
+ dark: string;
5096
+ } | undefined;
5097
+ hidden?: boolean | undefined;
5098
+ } & ({
5099
+ openapi: (string | string[]) & (string | string[] | undefined);
5100
+ } | {
5101
+ href: string;
5102
+ }))[] | undefined;
5103
+ }>;
3331
5104
  }, "strip", z.ZodTypeAny, {
3332
- languages: ({
3333
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
3334
- hidden?: boolean | undefined;
3335
- } & ({
3336
- openapi: (string | string[]) & (string | string[] | undefined);
3337
- } | {
3338
- href: string;
3339
- } | {
3340
- versions: any[];
3341
- } | {
3342
- tabs: any[];
3343
- } | {
3344
- dropdowns: any[];
3345
- } | {
3346
- anchors: any[];
3347
- } | {
3348
- groups: ({
3349
- group: string;
5105
+ global: {
5106
+ languages?: ({
5107
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
5108
+ hidden?: boolean | undefined;
5109
+ } & ({
5110
+ openapi: (string | string[]) & (string | string[] | undefined);
5111
+ } | {
5112
+ href: string;
5113
+ }))[] | undefined;
5114
+ versions?: ({
5115
+ version: string;
5116
+ hidden?: boolean | undefined;
5117
+ } & ({
5118
+ openapi: (string | string[]) & (string | string[] | undefined);
5119
+ } | {
5120
+ href: string;
5121
+ }))[] | undefined;
5122
+ tabs?: ({
5123
+ tab: string;
5124
+ icon?: string | {
5125
+ name: string;
5126
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5127
+ } | undefined;
5128
+ hidden?: boolean | undefined;
5129
+ } & ({
5130
+ openapi: (string | string[]) & (string | string[] | undefined);
5131
+ } | {
5132
+ href: string;
5133
+ }))[] | undefined;
5134
+ dropdowns?: ({
5135
+ dropdown: string;
5136
+ icon?: string | {
5137
+ name: string;
5138
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5139
+ } | undefined;
5140
+ hidden?: boolean | undefined;
5141
+ } & ({
5142
+ openapi: (string | string[]) & (string | string[] | undefined);
5143
+ } | {
5144
+ href: string;
5145
+ }))[] | undefined;
5146
+ anchors?: ({
5147
+ anchor: string;
5148
+ icon?: string | {
5149
+ name: string;
5150
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5151
+ } | undefined;
5152
+ color?: {
5153
+ light: string;
5154
+ dark: string;
5155
+ } | undefined;
5156
+ hidden?: boolean | undefined;
5157
+ } & ({
5158
+ openapi: (string | string[]) & (string | string[] | undefined);
5159
+ } | {
5160
+ href: string;
5161
+ }))[] | undefined;
5162
+ };
5163
+ }, {
5164
+ global: {
5165
+ languages?: ({
5166
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
5167
+ hidden?: boolean | undefined;
5168
+ } & ({
5169
+ openapi: (string | string[]) & (string | string[] | undefined);
5170
+ } | {
5171
+ href: string;
5172
+ }))[] | undefined;
5173
+ versions?: ({
5174
+ version: string;
5175
+ hidden?: boolean | undefined;
5176
+ } & ({
5177
+ openapi: (string | string[]) & (string | string[] | undefined);
5178
+ } | {
5179
+ href: string;
5180
+ }))[] | undefined;
5181
+ tabs?: ({
5182
+ tab: string;
3350
5183
  icon?: string | {
3351
5184
  name: string;
3352
5185
  style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3353
5186
  } | undefined;
3354
5187
  hidden?: boolean | undefined;
3355
- root?: string | undefined;
3356
5188
  } & ({
3357
5189
  openapi: (string | string[]) & (string | string[] | undefined);
3358
5190
  } | {
3359
- pages: any[];
3360
- }))[];
3361
- } | {
3362
- pages: any[];
3363
- }))[];
3364
- }, {
3365
- languages: ({
3366
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
3367
- hidden?: boolean | undefined;
3368
- } & ({
3369
- openapi: (string | string[]) & (string | string[] | undefined);
3370
- } | {
3371
- href: string;
3372
- } | {
3373
- versions: any[];
3374
- } | {
3375
- tabs: any[];
3376
- } | {
3377
- dropdowns: any[];
3378
- } | {
3379
- anchors: any[];
3380
- } | {
3381
- groups: ({
3382
- group: string;
5191
+ href: string;
5192
+ }))[] | undefined;
5193
+ dropdowns?: ({
5194
+ dropdown: string;
3383
5195
  icon?: string | {
3384
5196
  name: string;
3385
5197
  style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3386
5198
  } | undefined;
3387
5199
  hidden?: boolean | undefined;
3388
- root?: string | undefined;
3389
5200
  } & ({
3390
5201
  openapi: (string | string[]) & (string | string[] | undefined);
3391
5202
  } | {
3392
- pages: any[];
3393
- }))[];
3394
- } | {
3395
- pages: any[];
3396
- }))[];
3397
- }>, z.ZodObject<{
3398
- versions: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
3399
- }, "strip", z.ZodTypeAny, {
3400
- versions: any[];
3401
- }, {
3402
- versions: any[];
3403
- }>, z.ZodObject<{
3404
- tabs: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
3405
- }, "strip", z.ZodTypeAny, {
3406
- tabs: any[];
3407
- }, {
3408
- tabs: any[];
3409
- }>, z.ZodObject<{
3410
- dropdowns: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
3411
- }, "strip", z.ZodTypeAny, {
3412
- dropdowns: any[];
3413
- }, {
3414
- dropdowns: any[];
3415
- }>, z.ZodObject<{
3416
- anchors: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
3417
- }, "strip", z.ZodTypeAny, {
3418
- anchors: any[];
3419
- }, {
3420
- anchors: any[];
3421
- }>, z.ZodObject<{
3422
- groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
3423
- group: z.ZodString;
3424
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
3425
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
3426
- name: z.ZodEffects<z.ZodString, string, string>;
3427
- }, "strip", z.ZodTypeAny, {
3428
- name: string;
3429
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3430
- }, {
3431
- name: string;
3432
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3433
- }>]>>;
3434
- hidden: z.ZodOptional<z.ZodBoolean>;
3435
- root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
3436
- }, "strip", z.ZodTypeAny, {
3437
- group: string;
3438
- icon?: string | {
3439
- name: string;
3440
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3441
- } | undefined;
3442
- hidden?: boolean | undefined;
3443
- root?: string | undefined;
3444
- }, {
3445
- group: string;
3446
- icon?: string | {
3447
- name: string;
3448
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3449
- } | undefined;
3450
- hidden?: boolean | undefined;
3451
- root?: string | undefined;
3452
- }>, z.ZodUnion<[z.ZodObject<{
3453
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
3454
- }, "strip", z.ZodTypeAny, {
3455
- openapi: (string | string[]) & (string | string[] | undefined);
3456
- }, {
3457
- openapi: (string | string[]) & (string | string[] | undefined);
3458
- }>, z.ZodLazy<z.ZodObject<{
3459
- pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
3460
- }, "strip", z.ZodTypeAny, {
3461
- pages: any[];
3462
- }, {
3463
- pages: any[];
3464
- }>>]>>, "many">;
3465
- }, "strip", z.ZodTypeAny, {
3466
- groups: ({
3467
- group: string;
3468
- icon?: string | {
3469
- name: string;
3470
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3471
- } | undefined;
3472
- hidden?: boolean | undefined;
3473
- root?: string | undefined;
3474
- } & ({
3475
- openapi: (string | string[]) & (string | string[] | undefined);
3476
- } | {
3477
- pages: any[];
3478
- }))[];
3479
- }, {
3480
- groups: ({
3481
- group: string;
3482
- icon?: string | {
3483
- name: string;
3484
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3485
- } | undefined;
3486
- hidden?: boolean | undefined;
3487
- root?: string | undefined;
3488
- } & ({
3489
- openapi: (string | string[]) & (string | string[] | undefined);
3490
- } | {
3491
- pages: any[];
3492
- }))[];
3493
- }>, z.ZodObject<{
3494
- pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
3495
- }, "strip", z.ZodTypeAny, {
3496
- pages: any[];
3497
- }, {
3498
- pages: any[];
3499
- }>]>;
5203
+ href: string;
5204
+ }))[] | undefined;
5205
+ anchors?: ({
5206
+ anchor: string;
5207
+ icon?: string | {
5208
+ name: string;
5209
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5210
+ } | undefined;
5211
+ color?: {
5212
+ light: string;
5213
+ dark: string;
5214
+ } | undefined;
5215
+ hidden?: boolean | undefined;
5216
+ } & ({
5217
+ openapi: (string | string[]) & (string | string[] | undefined);
5218
+ } | {
5219
+ href: string;
5220
+ }))[] | undefined;
5221
+ };
5222
+ }>>>;
3500
5223
  footer: z.ZodOptional<z.ZodObject<{
3501
5224
  socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter"]>, z.ZodString>>;
3502
5225
  links: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -3966,7 +5689,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3966
5689
  light?: string | undefined;
3967
5690
  dark?: string | undefined;
3968
5691
  };
3969
- navigation: ({
5692
+ navigation: (({
3970
5693
  languages: ({
3971
5694
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
3972
5695
  hidden?: boolean | undefined;
@@ -4024,6 +5747,65 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4024
5747
  } | {
4025
5748
  pages: any[];
4026
5749
  }) & ({
5750
+ global: {
5751
+ languages?: ({
5752
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
5753
+ hidden?: boolean | undefined;
5754
+ } & ({
5755
+ openapi: (string | string[]) & (string | string[] | undefined);
5756
+ } | {
5757
+ href: string;
5758
+ }))[] | undefined;
5759
+ versions?: ({
5760
+ version: string;
5761
+ hidden?: boolean | undefined;
5762
+ } & ({
5763
+ openapi: (string | string[]) & (string | string[] | undefined);
5764
+ } | {
5765
+ href: string;
5766
+ }))[] | undefined;
5767
+ tabs?: ({
5768
+ tab: string;
5769
+ icon?: string | {
5770
+ name: string;
5771
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5772
+ } | undefined;
5773
+ hidden?: boolean | undefined;
5774
+ } & ({
5775
+ openapi: (string | string[]) & (string | string[] | undefined);
5776
+ } | {
5777
+ href: string;
5778
+ }))[] | undefined;
5779
+ dropdowns?: ({
5780
+ dropdown: string;
5781
+ icon?: string | {
5782
+ name: string;
5783
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5784
+ } | undefined;
5785
+ hidden?: boolean | undefined;
5786
+ } & ({
5787
+ openapi: (string | string[]) & (string | string[] | undefined);
5788
+ } | {
5789
+ href: string;
5790
+ }))[] | undefined;
5791
+ anchors?: ({
5792
+ anchor: string;
5793
+ icon?: string | {
5794
+ name: string;
5795
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5796
+ } | undefined;
5797
+ color?: {
5798
+ light: string;
5799
+ dark: string;
5800
+ } | undefined;
5801
+ hidden?: boolean | undefined;
5802
+ } & ({
5803
+ openapi: (string | string[]) & (string | string[] | undefined);
5804
+ } | {
5805
+ href: string;
5806
+ }))[] | undefined;
5807
+ };
5808
+ } | undefined)) & ((({
4027
5809
  languages: ({
4028
5810
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
4029
5811
  hidden?: boolean | undefined;
@@ -4080,7 +5862,66 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4080
5862
  }))[];
4081
5863
  } | {
4082
5864
  pages: any[];
4083
- } | undefined);
5865
+ }) & ({
5866
+ global: {
5867
+ languages?: ({
5868
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
5869
+ hidden?: boolean | undefined;
5870
+ } & ({
5871
+ openapi: (string | string[]) & (string | string[] | undefined);
5872
+ } | {
5873
+ href: string;
5874
+ }))[] | undefined;
5875
+ versions?: ({
5876
+ version: string;
5877
+ hidden?: boolean | undefined;
5878
+ } & ({
5879
+ openapi: (string | string[]) & (string | string[] | undefined);
5880
+ } | {
5881
+ href: string;
5882
+ }))[] | undefined;
5883
+ tabs?: ({
5884
+ tab: string;
5885
+ icon?: string | {
5886
+ name: string;
5887
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5888
+ } | undefined;
5889
+ hidden?: boolean | undefined;
5890
+ } & ({
5891
+ openapi: (string | string[]) & (string | string[] | undefined);
5892
+ } | {
5893
+ href: string;
5894
+ }))[] | undefined;
5895
+ dropdowns?: ({
5896
+ dropdown: string;
5897
+ icon?: string | {
5898
+ name: string;
5899
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5900
+ } | undefined;
5901
+ hidden?: boolean | undefined;
5902
+ } & ({
5903
+ openapi: (string | string[]) & (string | string[] | undefined);
5904
+ } | {
5905
+ href: string;
5906
+ }))[] | undefined;
5907
+ anchors?: ({
5908
+ anchor: string;
5909
+ icon?: string | {
5910
+ name: string;
5911
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5912
+ } | undefined;
5913
+ color?: {
5914
+ light: string;
5915
+ dark: string;
5916
+ } | undefined;
5917
+ hidden?: boolean | undefined;
5918
+ } & ({
5919
+ openapi: (string | string[]) & (string | string[] | undefined);
5920
+ } | {
5921
+ href: string;
5922
+ }))[] | undefined;
5923
+ };
5924
+ } | undefined)) | undefined);
4084
5925
  description?: string | undefined;
4085
5926
  logo?: string | {
4086
5927
  light: string;
@@ -4247,7 +6088,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4247
6088
  light?: string | undefined;
4248
6089
  dark?: string | undefined;
4249
6090
  };
4250
- navigation: ({
6091
+ navigation: (({
4251
6092
  languages: ({
4252
6093
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
4253
6094
  hidden?: boolean | undefined;
@@ -4305,6 +6146,65 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4305
6146
  } | {
4306
6147
  pages: any[];
4307
6148
  }) & ({
6149
+ global: {
6150
+ languages?: ({
6151
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
6152
+ hidden?: boolean | undefined;
6153
+ } & ({
6154
+ openapi: (string | string[]) & (string | string[] | undefined);
6155
+ } | {
6156
+ href: string;
6157
+ }))[] | undefined;
6158
+ versions?: ({
6159
+ version: string;
6160
+ hidden?: boolean | undefined;
6161
+ } & ({
6162
+ openapi: (string | string[]) & (string | string[] | undefined);
6163
+ } | {
6164
+ href: string;
6165
+ }))[] | undefined;
6166
+ tabs?: ({
6167
+ tab: string;
6168
+ icon?: string | {
6169
+ name: string;
6170
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6171
+ } | undefined;
6172
+ hidden?: boolean | undefined;
6173
+ } & ({
6174
+ openapi: (string | string[]) & (string | string[] | undefined);
6175
+ } | {
6176
+ href: string;
6177
+ }))[] | undefined;
6178
+ dropdowns?: ({
6179
+ dropdown: string;
6180
+ icon?: string | {
6181
+ name: string;
6182
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6183
+ } | undefined;
6184
+ hidden?: boolean | undefined;
6185
+ } & ({
6186
+ openapi: (string | string[]) & (string | string[] | undefined);
6187
+ } | {
6188
+ href: string;
6189
+ }))[] | undefined;
6190
+ anchors?: ({
6191
+ anchor: string;
6192
+ icon?: string | {
6193
+ name: string;
6194
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6195
+ } | undefined;
6196
+ color?: {
6197
+ light: string;
6198
+ dark: string;
6199
+ } | undefined;
6200
+ hidden?: boolean | undefined;
6201
+ } & ({
6202
+ openapi: (string | string[]) & (string | string[] | undefined);
6203
+ } | {
6204
+ href: string;
6205
+ }))[] | undefined;
6206
+ };
6207
+ } | undefined)) & ((({
4308
6208
  languages: ({
4309
6209
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
4310
6210
  hidden?: boolean | undefined;
@@ -4361,7 +6261,66 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4361
6261
  }))[];
4362
6262
  } | {
4363
6263
  pages: any[];
4364
- } | undefined);
6264
+ }) & ({
6265
+ global: {
6266
+ languages?: ({
6267
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
6268
+ hidden?: boolean | undefined;
6269
+ } & ({
6270
+ openapi: (string | string[]) & (string | string[] | undefined);
6271
+ } | {
6272
+ href: string;
6273
+ }))[] | undefined;
6274
+ versions?: ({
6275
+ version: string;
6276
+ hidden?: boolean | undefined;
6277
+ } & ({
6278
+ openapi: (string | string[]) & (string | string[] | undefined);
6279
+ } | {
6280
+ href: string;
6281
+ }))[] | undefined;
6282
+ tabs?: ({
6283
+ tab: string;
6284
+ icon?: string | {
6285
+ name: string;
6286
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6287
+ } | undefined;
6288
+ hidden?: boolean | undefined;
6289
+ } & ({
6290
+ openapi: (string | string[]) & (string | string[] | undefined);
6291
+ } | {
6292
+ href: string;
6293
+ }))[] | undefined;
6294
+ dropdowns?: ({
6295
+ dropdown: string;
6296
+ icon?: string | {
6297
+ name: string;
6298
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6299
+ } | undefined;
6300
+ hidden?: boolean | undefined;
6301
+ } & ({
6302
+ openapi: (string | string[]) & (string | string[] | undefined);
6303
+ } | {
6304
+ href: string;
6305
+ }))[] | undefined;
6306
+ anchors?: ({
6307
+ anchor: string;
6308
+ icon?: string | {
6309
+ name: string;
6310
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6311
+ } | undefined;
6312
+ color?: {
6313
+ light: string;
6314
+ dark: string;
6315
+ } | undefined;
6316
+ hidden?: boolean | undefined;
6317
+ } & ({
6318
+ openapi: (string | string[]) & (string | string[] | undefined);
6319
+ } | {
6320
+ href: string;
6321
+ }))[] | undefined;
6322
+ };
6323
+ } | undefined)) | undefined);
4365
6324
  $schema?: string | undefined;
4366
6325
  description?: string | undefined;
4367
6326
  logo?: string | {
@@ -4710,7 +6669,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4710
6669
  href: string;
4711
6670
  } | undefined;
4712
6671
  }>>;
4713
- navigation: z.ZodUnion<[z.ZodObject<{
6672
+ navigation: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
4714
6673
  languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
4715
6674
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
4716
6675
  hidden: z.ZodOptional<z.ZodBoolean>;
@@ -5000,10 +6959,427 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5000
6959
  }>, z.ZodObject<{
5001
6960
  pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
5002
6961
  }, "strip", z.ZodTypeAny, {
5003
- pages: any[];
6962
+ pages: any[];
6963
+ }, {
6964
+ pages: any[];
6965
+ }>]>, z.ZodOptional<z.ZodObject<{
6966
+ global: z.ZodObject<{
6967
+ languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
6968
+ language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
6969
+ hidden: z.ZodOptional<z.ZodBoolean>;
6970
+ }, "strip", z.ZodTypeAny, {
6971
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
6972
+ hidden?: boolean | undefined;
6973
+ }, {
6974
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
6975
+ hidden?: boolean | undefined;
6976
+ }>, z.ZodUnion<[z.ZodObject<{
6977
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
6978
+ }, "strip", z.ZodTypeAny, {
6979
+ openapi: (string | string[]) & (string | string[] | undefined);
6980
+ }, {
6981
+ openapi: (string | string[]) & (string | string[] | undefined);
6982
+ }>, z.ZodObject<{
6983
+ href: z.ZodString;
6984
+ }, "strip", z.ZodTypeAny, {
6985
+ href: string;
6986
+ }, {
6987
+ href: string;
6988
+ }>]>>, "many">>;
6989
+ versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
6990
+ version: z.ZodString;
6991
+ hidden: z.ZodOptional<z.ZodBoolean>;
6992
+ }, "strip", z.ZodTypeAny, {
6993
+ version: string;
6994
+ hidden?: boolean | undefined;
6995
+ }, {
6996
+ version: string;
6997
+ hidden?: boolean | undefined;
6998
+ }>, z.ZodUnion<[z.ZodObject<{
6999
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
7000
+ }, "strip", z.ZodTypeAny, {
7001
+ openapi: (string | string[]) & (string | string[] | undefined);
7002
+ }, {
7003
+ openapi: (string | string[]) & (string | string[] | undefined);
7004
+ }>, z.ZodObject<{
7005
+ href: z.ZodString;
7006
+ }, "strip", z.ZodTypeAny, {
7007
+ href: string;
7008
+ }, {
7009
+ href: string;
7010
+ }>]>>, "many">>;
7011
+ tabs: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
7012
+ tab: z.ZodString;
7013
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
7014
+ style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
7015
+ name: z.ZodEffects<z.ZodString, string, string>;
7016
+ }, "strip", z.ZodTypeAny, {
7017
+ name: string;
7018
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7019
+ }, {
7020
+ name: string;
7021
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7022
+ }>]>>;
7023
+ hidden: z.ZodOptional<z.ZodBoolean>;
7024
+ }, "strip", z.ZodTypeAny, {
7025
+ tab: string;
7026
+ icon?: string | {
7027
+ name: string;
7028
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7029
+ } | undefined;
7030
+ hidden?: boolean | undefined;
7031
+ }, {
7032
+ tab: string;
7033
+ icon?: string | {
7034
+ name: string;
7035
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7036
+ } | undefined;
7037
+ hidden?: boolean | undefined;
7038
+ }>, z.ZodUnion<[z.ZodObject<{
7039
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
7040
+ }, "strip", z.ZodTypeAny, {
7041
+ openapi: (string | string[]) & (string | string[] | undefined);
7042
+ }, {
7043
+ openapi: (string | string[]) & (string | string[] | undefined);
7044
+ }>, z.ZodObject<{
7045
+ href: z.ZodString;
7046
+ }, "strip", z.ZodTypeAny, {
7047
+ href: string;
7048
+ }, {
7049
+ href: string;
7050
+ }>]>>, "many">>;
7051
+ dropdowns: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
7052
+ dropdown: z.ZodString;
7053
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
7054
+ style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
7055
+ name: z.ZodEffects<z.ZodString, string, string>;
7056
+ }, "strip", z.ZodTypeAny, {
7057
+ name: string;
7058
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7059
+ }, {
7060
+ name: string;
7061
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7062
+ }>]>>;
7063
+ hidden: z.ZodOptional<z.ZodBoolean>;
7064
+ }, "strip", z.ZodTypeAny, {
7065
+ dropdown: string;
7066
+ icon?: string | {
7067
+ name: string;
7068
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7069
+ } | undefined;
7070
+ hidden?: boolean | undefined;
7071
+ }, {
7072
+ dropdown: string;
7073
+ icon?: string | {
7074
+ name: string;
7075
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7076
+ } | undefined;
7077
+ hidden?: boolean | undefined;
7078
+ }>, z.ZodUnion<[z.ZodObject<{
7079
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
7080
+ }, "strip", z.ZodTypeAny, {
7081
+ openapi: (string | string[]) & (string | string[] | undefined);
7082
+ }, {
7083
+ openapi: (string | string[]) & (string | string[] | undefined);
7084
+ }>, z.ZodObject<{
7085
+ href: z.ZodString;
7086
+ }, "strip", z.ZodTypeAny, {
7087
+ href: string;
7088
+ }, {
7089
+ href: string;
7090
+ }>]>>, "many">>;
7091
+ anchors: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
7092
+ anchor: z.ZodString;
7093
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
7094
+ style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
7095
+ name: z.ZodEffects<z.ZodString, string, string>;
7096
+ }, "strip", z.ZodTypeAny, {
7097
+ name: string;
7098
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7099
+ }, {
7100
+ name: string;
7101
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7102
+ }>]>>;
7103
+ color: z.ZodOptional<z.ZodObject<{
7104
+ light: z.ZodString;
7105
+ dark: z.ZodString;
7106
+ }, "strict", z.ZodTypeAny, {
7107
+ light: string;
7108
+ dark: string;
7109
+ }, {
7110
+ light: string;
7111
+ dark: string;
7112
+ }>>;
7113
+ hidden: z.ZodOptional<z.ZodBoolean>;
7114
+ }, "strip", z.ZodTypeAny, {
7115
+ anchor: string;
7116
+ icon?: string | {
7117
+ name: string;
7118
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7119
+ } | undefined;
7120
+ color?: {
7121
+ light: string;
7122
+ dark: string;
7123
+ } | undefined;
7124
+ hidden?: boolean | undefined;
7125
+ }, {
7126
+ anchor: string;
7127
+ icon?: string | {
7128
+ name: string;
7129
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7130
+ } | undefined;
7131
+ color?: {
7132
+ light: string;
7133
+ dark: string;
7134
+ } | undefined;
7135
+ hidden?: boolean | undefined;
7136
+ }>, z.ZodUnion<[z.ZodObject<{
7137
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
7138
+ }, "strip", z.ZodTypeAny, {
7139
+ openapi: (string | string[]) & (string | string[] | undefined);
7140
+ }, {
7141
+ openapi: (string | string[]) & (string | string[] | undefined);
7142
+ }>, z.ZodObject<{
7143
+ href: z.ZodString;
7144
+ }, "strip", z.ZodTypeAny, {
7145
+ href: string;
7146
+ }, {
7147
+ href: string;
7148
+ }>]>>, "many">>;
7149
+ }, "strict", z.ZodTypeAny, {
7150
+ languages?: ({
7151
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
7152
+ hidden?: boolean | undefined;
7153
+ } & ({
7154
+ openapi: (string | string[]) & (string | string[] | undefined);
7155
+ } | {
7156
+ href: string;
7157
+ }))[] | undefined;
7158
+ versions?: ({
7159
+ version: string;
7160
+ hidden?: boolean | undefined;
7161
+ } & ({
7162
+ openapi: (string | string[]) & (string | string[] | undefined);
7163
+ } | {
7164
+ href: string;
7165
+ }))[] | undefined;
7166
+ tabs?: ({
7167
+ tab: string;
7168
+ icon?: string | {
7169
+ name: string;
7170
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7171
+ } | undefined;
7172
+ hidden?: boolean | undefined;
7173
+ } & ({
7174
+ openapi: (string | string[]) & (string | string[] | undefined);
7175
+ } | {
7176
+ href: string;
7177
+ }))[] | undefined;
7178
+ dropdowns?: ({
7179
+ dropdown: string;
7180
+ icon?: string | {
7181
+ name: string;
7182
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7183
+ } | undefined;
7184
+ hidden?: boolean | undefined;
7185
+ } & ({
7186
+ openapi: (string | string[]) & (string | string[] | undefined);
7187
+ } | {
7188
+ href: string;
7189
+ }))[] | undefined;
7190
+ anchors?: ({
7191
+ anchor: string;
7192
+ icon?: string | {
7193
+ name: string;
7194
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7195
+ } | undefined;
7196
+ color?: {
7197
+ light: string;
7198
+ dark: string;
7199
+ } | undefined;
7200
+ hidden?: boolean | undefined;
7201
+ } & ({
7202
+ openapi: (string | string[]) & (string | string[] | undefined);
7203
+ } | {
7204
+ href: string;
7205
+ }))[] | undefined;
7206
+ }, {
7207
+ languages?: ({
7208
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
7209
+ hidden?: boolean | undefined;
7210
+ } & ({
7211
+ openapi: (string | string[]) & (string | string[] | undefined);
7212
+ } | {
7213
+ href: string;
7214
+ }))[] | undefined;
7215
+ versions?: ({
7216
+ version: string;
7217
+ hidden?: boolean | undefined;
7218
+ } & ({
7219
+ openapi: (string | string[]) & (string | string[] | undefined);
7220
+ } | {
7221
+ href: string;
7222
+ }))[] | undefined;
7223
+ tabs?: ({
7224
+ tab: string;
7225
+ icon?: string | {
7226
+ name: string;
7227
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7228
+ } | undefined;
7229
+ hidden?: boolean | undefined;
7230
+ } & ({
7231
+ openapi: (string | string[]) & (string | string[] | undefined);
7232
+ } | {
7233
+ href: string;
7234
+ }))[] | undefined;
7235
+ dropdowns?: ({
7236
+ dropdown: string;
7237
+ icon?: string | {
7238
+ name: string;
7239
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7240
+ } | undefined;
7241
+ hidden?: boolean | undefined;
7242
+ } & ({
7243
+ openapi: (string | string[]) & (string | string[] | undefined);
7244
+ } | {
7245
+ href: string;
7246
+ }))[] | undefined;
7247
+ anchors?: ({
7248
+ anchor: string;
7249
+ icon?: string | {
7250
+ name: string;
7251
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7252
+ } | undefined;
7253
+ color?: {
7254
+ light: string;
7255
+ dark: string;
7256
+ } | undefined;
7257
+ hidden?: boolean | undefined;
7258
+ } & ({
7259
+ openapi: (string | string[]) & (string | string[] | undefined);
7260
+ } | {
7261
+ href: string;
7262
+ }))[] | undefined;
7263
+ }>;
7264
+ }, "strip", z.ZodTypeAny, {
7265
+ global: {
7266
+ languages?: ({
7267
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
7268
+ hidden?: boolean | undefined;
7269
+ } & ({
7270
+ openapi: (string | string[]) & (string | string[] | undefined);
7271
+ } | {
7272
+ href: string;
7273
+ }))[] | undefined;
7274
+ versions?: ({
7275
+ version: string;
7276
+ hidden?: boolean | undefined;
7277
+ } & ({
7278
+ openapi: (string | string[]) & (string | string[] | undefined);
7279
+ } | {
7280
+ href: string;
7281
+ }))[] | undefined;
7282
+ tabs?: ({
7283
+ tab: string;
7284
+ icon?: string | {
7285
+ name: string;
7286
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7287
+ } | undefined;
7288
+ hidden?: boolean | undefined;
7289
+ } & ({
7290
+ openapi: (string | string[]) & (string | string[] | undefined);
7291
+ } | {
7292
+ href: string;
7293
+ }))[] | undefined;
7294
+ dropdowns?: ({
7295
+ dropdown: string;
7296
+ icon?: string | {
7297
+ name: string;
7298
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7299
+ } | undefined;
7300
+ hidden?: boolean | undefined;
7301
+ } & ({
7302
+ openapi: (string | string[]) & (string | string[] | undefined);
7303
+ } | {
7304
+ href: string;
7305
+ }))[] | undefined;
7306
+ anchors?: ({
7307
+ anchor: string;
7308
+ icon?: string | {
7309
+ name: string;
7310
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7311
+ } | undefined;
7312
+ color?: {
7313
+ light: string;
7314
+ dark: string;
7315
+ } | undefined;
7316
+ hidden?: boolean | undefined;
7317
+ } & ({
7318
+ openapi: (string | string[]) & (string | string[] | undefined);
7319
+ } | {
7320
+ href: string;
7321
+ }))[] | undefined;
7322
+ };
5004
7323
  }, {
5005
- pages: any[];
5006
- }>]>;
7324
+ global: {
7325
+ languages?: ({
7326
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
7327
+ hidden?: boolean | undefined;
7328
+ } & ({
7329
+ openapi: (string | string[]) & (string | string[] | undefined);
7330
+ } | {
7331
+ href: string;
7332
+ }))[] | undefined;
7333
+ versions?: ({
7334
+ version: string;
7335
+ hidden?: boolean | undefined;
7336
+ } & ({
7337
+ openapi: (string | string[]) & (string | string[] | undefined);
7338
+ } | {
7339
+ href: string;
7340
+ }))[] | undefined;
7341
+ tabs?: ({
7342
+ tab: string;
7343
+ icon?: string | {
7344
+ name: string;
7345
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7346
+ } | undefined;
7347
+ hidden?: boolean | undefined;
7348
+ } & ({
7349
+ openapi: (string | string[]) & (string | string[] | undefined);
7350
+ } | {
7351
+ href: string;
7352
+ }))[] | undefined;
7353
+ dropdowns?: ({
7354
+ dropdown: string;
7355
+ icon?: string | {
7356
+ name: string;
7357
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7358
+ } | undefined;
7359
+ hidden?: boolean | undefined;
7360
+ } & ({
7361
+ openapi: (string | string[]) & (string | string[] | undefined);
7362
+ } | {
7363
+ href: string;
7364
+ }))[] | undefined;
7365
+ anchors?: ({
7366
+ anchor: string;
7367
+ icon?: string | {
7368
+ name: string;
7369
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7370
+ } | undefined;
7371
+ color?: {
7372
+ light: string;
7373
+ dark: string;
7374
+ } | undefined;
7375
+ hidden?: boolean | undefined;
7376
+ } & ({
7377
+ openapi: (string | string[]) & (string | string[] | undefined);
7378
+ } | {
7379
+ href: string;
7380
+ }))[] | undefined;
7381
+ };
7382
+ }>>>;
5007
7383
  footer: z.ZodOptional<z.ZodObject<{
5008
7384
  socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter"]>, z.ZodString>>;
5009
7385
  links: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -5473,7 +7849,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5473
7849
  light?: string | undefined;
5474
7850
  dark?: string | undefined;
5475
7851
  };
5476
- navigation: ({
7852
+ navigation: (({
5477
7853
  languages: ({
5478
7854
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
5479
7855
  hidden?: boolean | undefined;
@@ -5531,6 +7907,65 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5531
7907
  } | {
5532
7908
  pages: any[];
5533
7909
  }) & ({
7910
+ global: {
7911
+ languages?: ({
7912
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
7913
+ hidden?: boolean | undefined;
7914
+ } & ({
7915
+ openapi: (string | string[]) & (string | string[] | undefined);
7916
+ } | {
7917
+ href: string;
7918
+ }))[] | undefined;
7919
+ versions?: ({
7920
+ version: string;
7921
+ hidden?: boolean | undefined;
7922
+ } & ({
7923
+ openapi: (string | string[]) & (string | string[] | undefined);
7924
+ } | {
7925
+ href: string;
7926
+ }))[] | undefined;
7927
+ tabs?: ({
7928
+ tab: string;
7929
+ icon?: string | {
7930
+ name: string;
7931
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7932
+ } | undefined;
7933
+ hidden?: boolean | undefined;
7934
+ } & ({
7935
+ openapi: (string | string[]) & (string | string[] | undefined);
7936
+ } | {
7937
+ href: string;
7938
+ }))[] | undefined;
7939
+ dropdowns?: ({
7940
+ dropdown: string;
7941
+ icon?: string | {
7942
+ name: string;
7943
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7944
+ } | undefined;
7945
+ hidden?: boolean | undefined;
7946
+ } & ({
7947
+ openapi: (string | string[]) & (string | string[] | undefined);
7948
+ } | {
7949
+ href: string;
7950
+ }))[] | undefined;
7951
+ anchors?: ({
7952
+ anchor: string;
7953
+ icon?: string | {
7954
+ name: string;
7955
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7956
+ } | undefined;
7957
+ color?: {
7958
+ light: string;
7959
+ dark: string;
7960
+ } | undefined;
7961
+ hidden?: boolean | undefined;
7962
+ } & ({
7963
+ openapi: (string | string[]) & (string | string[] | undefined);
7964
+ } | {
7965
+ href: string;
7966
+ }))[] | undefined;
7967
+ };
7968
+ } | undefined)) & ((({
5534
7969
  languages: ({
5535
7970
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
5536
7971
  hidden?: boolean | undefined;
@@ -5587,7 +8022,66 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5587
8022
  }))[];
5588
8023
  } | {
5589
8024
  pages: any[];
5590
- } | undefined);
8025
+ }) & ({
8026
+ global: {
8027
+ languages?: ({
8028
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
8029
+ hidden?: boolean | undefined;
8030
+ } & ({
8031
+ openapi: (string | string[]) & (string | string[] | undefined);
8032
+ } | {
8033
+ href: string;
8034
+ }))[] | undefined;
8035
+ versions?: ({
8036
+ version: string;
8037
+ hidden?: boolean | undefined;
8038
+ } & ({
8039
+ openapi: (string | string[]) & (string | string[] | undefined);
8040
+ } | {
8041
+ href: string;
8042
+ }))[] | undefined;
8043
+ tabs?: ({
8044
+ tab: string;
8045
+ icon?: string | {
8046
+ name: string;
8047
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
8048
+ } | undefined;
8049
+ hidden?: boolean | undefined;
8050
+ } & ({
8051
+ openapi: (string | string[]) & (string | string[] | undefined);
8052
+ } | {
8053
+ href: string;
8054
+ }))[] | undefined;
8055
+ dropdowns?: ({
8056
+ dropdown: string;
8057
+ icon?: string | {
8058
+ name: string;
8059
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
8060
+ } | undefined;
8061
+ hidden?: boolean | undefined;
8062
+ } & ({
8063
+ openapi: (string | string[]) & (string | string[] | undefined);
8064
+ } | {
8065
+ href: string;
8066
+ }))[] | undefined;
8067
+ anchors?: ({
8068
+ anchor: string;
8069
+ icon?: string | {
8070
+ name: string;
8071
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
8072
+ } | undefined;
8073
+ color?: {
8074
+ light: string;
8075
+ dark: string;
8076
+ } | undefined;
8077
+ hidden?: boolean | undefined;
8078
+ } & ({
8079
+ openapi: (string | string[]) & (string | string[] | undefined);
8080
+ } | {
8081
+ href: string;
8082
+ }))[] | undefined;
8083
+ };
8084
+ } | undefined)) | undefined);
5591
8085
  description?: string | undefined;
5592
8086
  logo?: string | {
5593
8087
  light: string;
@@ -5754,7 +8248,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5754
8248
  light?: string | undefined;
5755
8249
  dark?: string | undefined;
5756
8250
  };
5757
- navigation: ({
8251
+ navigation: (({
5758
8252
  languages: ({
5759
8253
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
5760
8254
  hidden?: boolean | undefined;
@@ -5812,6 +8306,65 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5812
8306
  } | {
5813
8307
  pages: any[];
5814
8308
  }) & ({
8309
+ global: {
8310
+ languages?: ({
8311
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
8312
+ hidden?: boolean | undefined;
8313
+ } & ({
8314
+ openapi: (string | string[]) & (string | string[] | undefined);
8315
+ } | {
8316
+ href: string;
8317
+ }))[] | undefined;
8318
+ versions?: ({
8319
+ version: string;
8320
+ hidden?: boolean | undefined;
8321
+ } & ({
8322
+ openapi: (string | string[]) & (string | string[] | undefined);
8323
+ } | {
8324
+ href: string;
8325
+ }))[] | undefined;
8326
+ tabs?: ({
8327
+ tab: string;
8328
+ icon?: string | {
8329
+ name: string;
8330
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
8331
+ } | undefined;
8332
+ hidden?: boolean | undefined;
8333
+ } & ({
8334
+ openapi: (string | string[]) & (string | string[] | undefined);
8335
+ } | {
8336
+ href: string;
8337
+ }))[] | undefined;
8338
+ dropdowns?: ({
8339
+ dropdown: string;
8340
+ icon?: string | {
8341
+ name: string;
8342
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
8343
+ } | undefined;
8344
+ hidden?: boolean | undefined;
8345
+ } & ({
8346
+ openapi: (string | string[]) & (string | string[] | undefined);
8347
+ } | {
8348
+ href: string;
8349
+ }))[] | undefined;
8350
+ anchors?: ({
8351
+ anchor: string;
8352
+ icon?: string | {
8353
+ name: string;
8354
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
8355
+ } | undefined;
8356
+ color?: {
8357
+ light: string;
8358
+ dark: string;
8359
+ } | undefined;
8360
+ hidden?: boolean | undefined;
8361
+ } & ({
8362
+ openapi: (string | string[]) & (string | string[] | undefined);
8363
+ } | {
8364
+ href: string;
8365
+ }))[] | undefined;
8366
+ };
8367
+ } | undefined)) & ((({
5815
8368
  languages: ({
5816
8369
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
5817
8370
  hidden?: boolean | undefined;
@@ -5868,7 +8421,66 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5868
8421
  }))[];
5869
8422
  } | {
5870
8423
  pages: any[];
5871
- } | undefined);
8424
+ }) & ({
8425
+ global: {
8426
+ languages?: ({
8427
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
8428
+ hidden?: boolean | undefined;
8429
+ } & ({
8430
+ openapi: (string | string[]) & (string | string[] | undefined);
8431
+ } | {
8432
+ href: string;
8433
+ }))[] | undefined;
8434
+ versions?: ({
8435
+ version: string;
8436
+ hidden?: boolean | undefined;
8437
+ } & ({
8438
+ openapi: (string | string[]) & (string | string[] | undefined);
8439
+ } | {
8440
+ href: string;
8441
+ }))[] | undefined;
8442
+ tabs?: ({
8443
+ tab: string;
8444
+ icon?: string | {
8445
+ name: string;
8446
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
8447
+ } | undefined;
8448
+ hidden?: boolean | undefined;
8449
+ } & ({
8450
+ openapi: (string | string[]) & (string | string[] | undefined);
8451
+ } | {
8452
+ href: string;
8453
+ }))[] | undefined;
8454
+ dropdowns?: ({
8455
+ dropdown: string;
8456
+ icon?: string | {
8457
+ name: string;
8458
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
8459
+ } | undefined;
8460
+ hidden?: boolean | undefined;
8461
+ } & ({
8462
+ openapi: (string | string[]) & (string | string[] | undefined);
8463
+ } | {
8464
+ href: string;
8465
+ }))[] | undefined;
8466
+ anchors?: ({
8467
+ anchor: string;
8468
+ icon?: string | {
8469
+ name: string;
8470
+ style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
8471
+ } | undefined;
8472
+ color?: {
8473
+ light: string;
8474
+ dark: string;
8475
+ } | undefined;
8476
+ hidden?: boolean | undefined;
8477
+ } & ({
8478
+ openapi: (string | string[]) & (string | string[] | undefined);
8479
+ } | {
8480
+ href: string;
8481
+ }))[] | undefined;
8482
+ };
8483
+ } | undefined)) | undefined);
5872
8484
  $schema?: string | undefined;
5873
8485
  description?: string | undefined;
5874
8486
  logo?: string | {