@mintlify/validation 0.1.235 → 0.1.237
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mint-config/schemas/v2/index.d.ts +3085 -545
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +59 -0
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +5 -5
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +41 -0
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +5 -5
- package/dist/mint-config/schemas/v2/properties/navigation/global.d.ts +299 -0
- package/dist/mint-config/schemas/v2/properties/navigation/global.js +16 -0
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +419 -2
- package/dist/mint-config/schemas/v2/properties/navigation/index.js +2 -0
- package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +146 -0
- package/dist/mint-config/schemas/v2/properties/navigation/languages.js +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +41 -0
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +4 -4
- package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +23 -0
- package/dist/mint-config/schemas/v2/properties/navigation/version.js +4 -4
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +659 -24
- package/dist/mint-config/schemas/v2/themes/prism.d.ts +659 -24
- package/dist/mint-config/schemas/v2/themes/quill.d.ts +659 -24
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +419 -12
- package/dist/mint-config/schemas/v2/themes/reusable/index.js +0 -2
- package/dist/mint-config/schemas/v2/themes/venus.d.ts +659 -24
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/dist/mint-config/schemas/v2/properties/legacy.d.ts +0 -11
- package/dist/mint-config/schemas/v2/properties/legacy.js +0 -10
|
@@ -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<{
|
|
@@ -932,16 +1349,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
932
1349
|
key: string;
|
|
933
1350
|
} | undefined;
|
|
934
1351
|
}>>;
|
|
935
|
-
legacy: z.ZodOptional<z.ZodObject<{
|
|
936
|
-
baseurl: z.ZodOptional<z.ZodString>;
|
|
937
|
-
auth: z.ZodOptional<z.ZodEnum<["basic", "bearer", "cobo", "key"]>>;
|
|
938
|
-
}, "strip", z.ZodTypeAny, {
|
|
939
|
-
baseurl?: string | undefined;
|
|
940
|
-
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
941
|
-
}, {
|
|
942
|
-
baseurl?: string | undefined;
|
|
943
|
-
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
944
|
-
}>>;
|
|
945
1352
|
theme: z.ZodLiteral<"mint">;
|
|
946
1353
|
}, "strip", z.ZodTypeAny, {
|
|
947
1354
|
name: string;
|
|
@@ -952,7 +1359,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
952
1359
|
light?: string | undefined;
|
|
953
1360
|
dark?: string | undefined;
|
|
954
1361
|
};
|
|
955
|
-
navigation: ({
|
|
1362
|
+
navigation: (({
|
|
956
1363
|
languages: ({
|
|
957
1364
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
958
1365
|
hidden?: boolean | undefined;
|
|
@@ -1010,6 +1417,65 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1010
1417
|
} | {
|
|
1011
1418
|
pages: any[];
|
|
1012
1419
|
}) & ({
|
|
1420
|
+
global: {
|
|
1421
|
+
languages?: ({
|
|
1422
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1423
|
+
hidden?: boolean | undefined;
|
|
1424
|
+
} & ({
|
|
1425
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1426
|
+
} | {
|
|
1427
|
+
href: string;
|
|
1428
|
+
}))[] | undefined;
|
|
1429
|
+
versions?: ({
|
|
1430
|
+
version: string;
|
|
1431
|
+
hidden?: boolean | undefined;
|
|
1432
|
+
} & ({
|
|
1433
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1434
|
+
} | {
|
|
1435
|
+
href: string;
|
|
1436
|
+
}))[] | undefined;
|
|
1437
|
+
tabs?: ({
|
|
1438
|
+
tab: string;
|
|
1439
|
+
icon?: string | {
|
|
1440
|
+
name: string;
|
|
1441
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
1442
|
+
} | undefined;
|
|
1443
|
+
hidden?: boolean | undefined;
|
|
1444
|
+
} & ({
|
|
1445
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1446
|
+
} | {
|
|
1447
|
+
href: string;
|
|
1448
|
+
}))[] | undefined;
|
|
1449
|
+
dropdowns?: ({
|
|
1450
|
+
dropdown: string;
|
|
1451
|
+
icon?: string | {
|
|
1452
|
+
name: string;
|
|
1453
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
1454
|
+
} | undefined;
|
|
1455
|
+
hidden?: boolean | undefined;
|
|
1456
|
+
} & ({
|
|
1457
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1458
|
+
} | {
|
|
1459
|
+
href: string;
|
|
1460
|
+
}))[] | undefined;
|
|
1461
|
+
anchors?: ({
|
|
1462
|
+
anchor: string;
|
|
1463
|
+
icon?: string | {
|
|
1464
|
+
name: string;
|
|
1465
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
1466
|
+
} | undefined;
|
|
1467
|
+
color?: {
|
|
1468
|
+
light: string;
|
|
1469
|
+
dark: string;
|
|
1470
|
+
} | undefined;
|
|
1471
|
+
hidden?: boolean | undefined;
|
|
1472
|
+
} & ({
|
|
1473
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1474
|
+
} | {
|
|
1475
|
+
href: string;
|
|
1476
|
+
}))[] | undefined;
|
|
1477
|
+
};
|
|
1478
|
+
} | undefined)) & ((({
|
|
1013
1479
|
languages: ({
|
|
1014
1480
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1015
1481
|
hidden?: boolean | undefined;
|
|
@@ -1033,40 +1499,99 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1033
1499
|
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
1034
1500
|
} | undefined;
|
|
1035
1501
|
hidden?: boolean | undefined;
|
|
1036
|
-
root?: string | undefined;
|
|
1502
|
+
root?: string | undefined;
|
|
1503
|
+
} & ({
|
|
1504
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1505
|
+
} | {
|
|
1506
|
+
pages: any[];
|
|
1507
|
+
}))[];
|
|
1508
|
+
} | {
|
|
1509
|
+
pages: any[];
|
|
1510
|
+
}))[];
|
|
1511
|
+
} | {
|
|
1512
|
+
versions: any[];
|
|
1513
|
+
} | {
|
|
1514
|
+
tabs: any[];
|
|
1515
|
+
} | {
|
|
1516
|
+
dropdowns: any[];
|
|
1517
|
+
} | {
|
|
1518
|
+
anchors: any[];
|
|
1519
|
+
} | {
|
|
1520
|
+
groups: ({
|
|
1521
|
+
group: string;
|
|
1522
|
+
icon?: string | {
|
|
1523
|
+
name: string;
|
|
1524
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
1525
|
+
} | undefined;
|
|
1526
|
+
hidden?: boolean | undefined;
|
|
1527
|
+
root?: string | undefined;
|
|
1528
|
+
} & ({
|
|
1529
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1530
|
+
} | {
|
|
1531
|
+
pages: any[];
|
|
1532
|
+
}))[];
|
|
1533
|
+
} | {
|
|
1534
|
+
pages: any[];
|
|
1535
|
+
}) & ({
|
|
1536
|
+
global: {
|
|
1537
|
+
languages?: ({
|
|
1538
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1539
|
+
hidden?: boolean | undefined;
|
|
1540
|
+
} & ({
|
|
1541
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1542
|
+
} | {
|
|
1543
|
+
href: string;
|
|
1544
|
+
}))[] | undefined;
|
|
1545
|
+
versions?: ({
|
|
1546
|
+
version: string;
|
|
1547
|
+
hidden?: boolean | undefined;
|
|
1548
|
+
} & ({
|
|
1549
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1550
|
+
} | {
|
|
1551
|
+
href: string;
|
|
1552
|
+
}))[] | undefined;
|
|
1553
|
+
tabs?: ({
|
|
1554
|
+
tab: string;
|
|
1555
|
+
icon?: string | {
|
|
1556
|
+
name: string;
|
|
1557
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
1558
|
+
} | undefined;
|
|
1559
|
+
hidden?: boolean | undefined;
|
|
1560
|
+
} & ({
|
|
1561
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1562
|
+
} | {
|
|
1563
|
+
href: string;
|
|
1564
|
+
}))[] | undefined;
|
|
1565
|
+
dropdowns?: ({
|
|
1566
|
+
dropdown: string;
|
|
1567
|
+
icon?: string | {
|
|
1568
|
+
name: string;
|
|
1569
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
1570
|
+
} | undefined;
|
|
1571
|
+
hidden?: boolean | undefined;
|
|
1572
|
+
} & ({
|
|
1573
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1574
|
+
} | {
|
|
1575
|
+
href: string;
|
|
1576
|
+
}))[] | undefined;
|
|
1577
|
+
anchors?: ({
|
|
1578
|
+
anchor: string;
|
|
1579
|
+
icon?: string | {
|
|
1580
|
+
name: string;
|
|
1581
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
1582
|
+
} | undefined;
|
|
1583
|
+
color?: {
|
|
1584
|
+
light: string;
|
|
1585
|
+
dark: string;
|
|
1586
|
+
} | undefined;
|
|
1587
|
+
hidden?: boolean | undefined;
|
|
1037
1588
|
} & ({
|
|
1038
1589
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1039
1590
|
} | {
|
|
1040
|
-
|
|
1041
|
-
}))[];
|
|
1042
|
-
}
|
|
1043
|
-
|
|
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);
|
|
1591
|
+
href: string;
|
|
1592
|
+
}))[] | undefined;
|
|
1593
|
+
};
|
|
1594
|
+
} | undefined)) | undefined);
|
|
1070
1595
|
description?: string | undefined;
|
|
1071
1596
|
logo?: string | {
|
|
1072
1597
|
light: string;
|
|
@@ -1221,10 +1746,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1221
1746
|
key: string;
|
|
1222
1747
|
} | undefined;
|
|
1223
1748
|
} | undefined;
|
|
1224
|
-
legacy?: {
|
|
1225
|
-
baseurl?: string | undefined;
|
|
1226
|
-
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
1227
|
-
} | undefined;
|
|
1228
1749
|
}, {
|
|
1229
1750
|
name: string;
|
|
1230
1751
|
theme: "mint";
|
|
@@ -1233,7 +1754,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1233
1754
|
light?: string | undefined;
|
|
1234
1755
|
dark?: string | undefined;
|
|
1235
1756
|
};
|
|
1236
|
-
navigation: ({
|
|
1757
|
+
navigation: (({
|
|
1237
1758
|
languages: ({
|
|
1238
1759
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1239
1760
|
hidden?: boolean | undefined;
|
|
@@ -1291,6 +1812,65 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1291
1812
|
} | {
|
|
1292
1813
|
pages: any[];
|
|
1293
1814
|
}) & ({
|
|
1815
|
+
global: {
|
|
1816
|
+
languages?: ({
|
|
1817
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1818
|
+
hidden?: boolean | undefined;
|
|
1819
|
+
} & ({
|
|
1820
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1821
|
+
} | {
|
|
1822
|
+
href: string;
|
|
1823
|
+
}))[] | undefined;
|
|
1824
|
+
versions?: ({
|
|
1825
|
+
version: string;
|
|
1826
|
+
hidden?: boolean | undefined;
|
|
1827
|
+
} & ({
|
|
1828
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1829
|
+
} | {
|
|
1830
|
+
href: string;
|
|
1831
|
+
}))[] | undefined;
|
|
1832
|
+
tabs?: ({
|
|
1833
|
+
tab: string;
|
|
1834
|
+
icon?: string | {
|
|
1835
|
+
name: string;
|
|
1836
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
1837
|
+
} | undefined;
|
|
1838
|
+
hidden?: boolean | undefined;
|
|
1839
|
+
} & ({
|
|
1840
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1841
|
+
} | {
|
|
1842
|
+
href: string;
|
|
1843
|
+
}))[] | undefined;
|
|
1844
|
+
dropdowns?: ({
|
|
1845
|
+
dropdown: string;
|
|
1846
|
+
icon?: string | {
|
|
1847
|
+
name: string;
|
|
1848
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
1849
|
+
} | undefined;
|
|
1850
|
+
hidden?: boolean | undefined;
|
|
1851
|
+
} & ({
|
|
1852
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1853
|
+
} | {
|
|
1854
|
+
href: string;
|
|
1855
|
+
}))[] | undefined;
|
|
1856
|
+
anchors?: ({
|
|
1857
|
+
anchor: string;
|
|
1858
|
+
icon?: string | {
|
|
1859
|
+
name: string;
|
|
1860
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
1861
|
+
} | undefined;
|
|
1862
|
+
color?: {
|
|
1863
|
+
light: string;
|
|
1864
|
+
dark: string;
|
|
1865
|
+
} | undefined;
|
|
1866
|
+
hidden?: boolean | undefined;
|
|
1867
|
+
} & ({
|
|
1868
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1869
|
+
} | {
|
|
1870
|
+
href: string;
|
|
1871
|
+
}))[] | undefined;
|
|
1872
|
+
};
|
|
1873
|
+
} | undefined)) & ((({
|
|
1294
1874
|
languages: ({
|
|
1295
1875
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1296
1876
|
hidden?: boolean | undefined;
|
|
@@ -1347,7 +1927,66 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1347
1927
|
}))[];
|
|
1348
1928
|
} | {
|
|
1349
1929
|
pages: any[];
|
|
1350
|
-
}
|
|
1930
|
+
}) & ({
|
|
1931
|
+
global: {
|
|
1932
|
+
languages?: ({
|
|
1933
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1934
|
+
hidden?: boolean | undefined;
|
|
1935
|
+
} & ({
|
|
1936
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1937
|
+
} | {
|
|
1938
|
+
href: string;
|
|
1939
|
+
}))[] | undefined;
|
|
1940
|
+
versions?: ({
|
|
1941
|
+
version: string;
|
|
1942
|
+
hidden?: boolean | undefined;
|
|
1943
|
+
} & ({
|
|
1944
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1945
|
+
} | {
|
|
1946
|
+
href: string;
|
|
1947
|
+
}))[] | undefined;
|
|
1948
|
+
tabs?: ({
|
|
1949
|
+
tab: string;
|
|
1950
|
+
icon?: string | {
|
|
1951
|
+
name: string;
|
|
1952
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
1953
|
+
} | undefined;
|
|
1954
|
+
hidden?: boolean | undefined;
|
|
1955
|
+
} & ({
|
|
1956
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1957
|
+
} | {
|
|
1958
|
+
href: string;
|
|
1959
|
+
}))[] | undefined;
|
|
1960
|
+
dropdowns?: ({
|
|
1961
|
+
dropdown: string;
|
|
1962
|
+
icon?: string | {
|
|
1963
|
+
name: string;
|
|
1964
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
1965
|
+
} | undefined;
|
|
1966
|
+
hidden?: boolean | undefined;
|
|
1967
|
+
} & ({
|
|
1968
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1969
|
+
} | {
|
|
1970
|
+
href: string;
|
|
1971
|
+
}))[] | undefined;
|
|
1972
|
+
anchors?: ({
|
|
1973
|
+
anchor: string;
|
|
1974
|
+
icon?: string | {
|
|
1975
|
+
name: string;
|
|
1976
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
1977
|
+
} | undefined;
|
|
1978
|
+
color?: {
|
|
1979
|
+
light: string;
|
|
1980
|
+
dark: string;
|
|
1981
|
+
} | undefined;
|
|
1982
|
+
hidden?: boolean | undefined;
|
|
1983
|
+
} & ({
|
|
1984
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1985
|
+
} | {
|
|
1986
|
+
href: string;
|
|
1987
|
+
}))[] | undefined;
|
|
1988
|
+
};
|
|
1989
|
+
} | undefined)) | undefined);
|
|
1351
1990
|
$schema?: string | undefined;
|
|
1352
1991
|
description?: string | undefined;
|
|
1353
1992
|
logo?: string | {
|
|
@@ -1503,10 +2142,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1503
2142
|
key: string;
|
|
1504
2143
|
} | undefined;
|
|
1505
2144
|
} | undefined;
|
|
1506
|
-
legacy?: {
|
|
1507
|
-
baseurl?: string | undefined;
|
|
1508
|
-
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
1509
|
-
} | undefined;
|
|
1510
2145
|
}>, z.ZodObject<{
|
|
1511
2146
|
$schema: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1512
2147
|
name: z.ZodString;
|
|
@@ -1663,88 +2298,420 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1663
2298
|
type: z.ZodLiteral<"github">;
|
|
1664
2299
|
href: z.ZodString;
|
|
1665
2300
|
}, "strip", z.ZodTypeAny, {
|
|
1666
|
-
type: "github";
|
|
1667
|
-
href: string;
|
|
2301
|
+
type: "github";
|
|
2302
|
+
href: string;
|
|
2303
|
+
}, {
|
|
2304
|
+
type: "github";
|
|
2305
|
+
href: string;
|
|
2306
|
+
}>]>>;
|
|
2307
|
+
}, "strip", z.ZodTypeAny, {
|
|
2308
|
+
links?: {
|
|
2309
|
+
href: string;
|
|
2310
|
+
label: string;
|
|
2311
|
+
}[] | undefined;
|
|
2312
|
+
primary?: {
|
|
2313
|
+
type: "button";
|
|
2314
|
+
href: string;
|
|
2315
|
+
label: string;
|
|
2316
|
+
} | {
|
|
2317
|
+
type: "github";
|
|
2318
|
+
href: string;
|
|
2319
|
+
} | undefined;
|
|
2320
|
+
}, {
|
|
2321
|
+
links?: {
|
|
2322
|
+
href: string;
|
|
2323
|
+
label: string;
|
|
2324
|
+
}[] | undefined;
|
|
2325
|
+
primary?: {
|
|
2326
|
+
type: "button";
|
|
2327
|
+
href: string;
|
|
2328
|
+
label: string;
|
|
2329
|
+
} | {
|
|
2330
|
+
type: "github";
|
|
2331
|
+
href: string;
|
|
2332
|
+
} | undefined;
|
|
2333
|
+
}>>;
|
|
2334
|
+
navigation: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
2335
|
+
languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
2336
|
+
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
2337
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2338
|
+
}, "strip", z.ZodTypeAny, {
|
|
2339
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
2340
|
+
hidden?: boolean | undefined;
|
|
2341
|
+
}, {
|
|
2342
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
2343
|
+
hidden?: boolean | undefined;
|
|
2344
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
2345
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
2346
|
+
}, "strip", z.ZodTypeAny, {
|
|
2347
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2348
|
+
}, {
|
|
2349
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2350
|
+
}>, z.ZodObject<{
|
|
2351
|
+
href: z.ZodString;
|
|
2352
|
+
}, "strip", z.ZodTypeAny, {
|
|
2353
|
+
href: string;
|
|
2354
|
+
}, {
|
|
2355
|
+
href: string;
|
|
2356
|
+
}>, z.ZodLazy<z.ZodObject<{
|
|
2357
|
+
versions: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
2358
|
+
}, "strip", z.ZodTypeAny, {
|
|
2359
|
+
versions: any[];
|
|
2360
|
+
}, {
|
|
2361
|
+
versions: any[];
|
|
2362
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
2363
|
+
tabs: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
2364
|
+
}, "strip", z.ZodTypeAny, {
|
|
2365
|
+
tabs: any[];
|
|
2366
|
+
}, {
|
|
2367
|
+
tabs: any[];
|
|
2368
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
2369
|
+
dropdowns: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
2370
|
+
}, "strip", z.ZodTypeAny, {
|
|
2371
|
+
dropdowns: any[];
|
|
2372
|
+
}, {
|
|
2373
|
+
dropdowns: any[];
|
|
2374
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
2375
|
+
anchors: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
2376
|
+
}, "strip", z.ZodTypeAny, {
|
|
2377
|
+
anchors: any[];
|
|
2378
|
+
}, {
|
|
2379
|
+
anchors: any[];
|
|
2380
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
2381
|
+
groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
2382
|
+
group: z.ZodString;
|
|
2383
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
2384
|
+
style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
|
|
2385
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
2386
|
+
}, "strip", z.ZodTypeAny, {
|
|
2387
|
+
name: string;
|
|
2388
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2389
|
+
}, {
|
|
2390
|
+
name: string;
|
|
2391
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2392
|
+
}>]>>;
|
|
2393
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2394
|
+
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2395
|
+
}, "strip", z.ZodTypeAny, {
|
|
2396
|
+
group: string;
|
|
2397
|
+
icon?: string | {
|
|
2398
|
+
name: string;
|
|
2399
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2400
|
+
} | undefined;
|
|
2401
|
+
hidden?: boolean | undefined;
|
|
2402
|
+
root?: string | undefined;
|
|
2403
|
+
}, {
|
|
2404
|
+
group: string;
|
|
2405
|
+
icon?: string | {
|
|
2406
|
+
name: string;
|
|
2407
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2408
|
+
} | undefined;
|
|
2409
|
+
hidden?: boolean | undefined;
|
|
2410
|
+
root?: string | undefined;
|
|
2411
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
2412
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
2413
|
+
}, "strip", z.ZodTypeAny, {
|
|
2414
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2415
|
+
}, {
|
|
2416
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2417
|
+
}>, z.ZodLazy<z.ZodObject<{
|
|
2418
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
2419
|
+
}, "strip", z.ZodTypeAny, {
|
|
2420
|
+
pages: any[];
|
|
2421
|
+
}, {
|
|
2422
|
+
pages: any[];
|
|
2423
|
+
}>>]>>, "many">;
|
|
2424
|
+
}, "strip", z.ZodTypeAny, {
|
|
2425
|
+
groups: ({
|
|
2426
|
+
group: string;
|
|
2427
|
+
icon?: string | {
|
|
2428
|
+
name: string;
|
|
2429
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2430
|
+
} | undefined;
|
|
2431
|
+
hidden?: boolean | undefined;
|
|
2432
|
+
root?: string | undefined;
|
|
2433
|
+
} & ({
|
|
2434
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2435
|
+
} | {
|
|
2436
|
+
pages: any[];
|
|
2437
|
+
}))[];
|
|
2438
|
+
}, {
|
|
2439
|
+
groups: ({
|
|
2440
|
+
group: string;
|
|
2441
|
+
icon?: string | {
|
|
2442
|
+
name: string;
|
|
2443
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2444
|
+
} | undefined;
|
|
2445
|
+
hidden?: boolean | undefined;
|
|
2446
|
+
root?: string | undefined;
|
|
2447
|
+
} & ({
|
|
2448
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2449
|
+
} | {
|
|
2450
|
+
pages: any[];
|
|
2451
|
+
}))[];
|
|
2452
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
2453
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
2454
|
+
}, "strip", z.ZodTypeAny, {
|
|
2455
|
+
pages: any[];
|
|
1668
2456
|
}, {
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
}>]>>;
|
|
2457
|
+
pages: any[];
|
|
2458
|
+
}>>]>>, "many">;
|
|
1672
2459
|
}, "strip", z.ZodTypeAny, {
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
}
|
|
1677
|
-
|
|
1678
|
-
type: "button";
|
|
1679
|
-
href: string;
|
|
1680
|
-
label: string;
|
|
2460
|
+
languages: ({
|
|
2461
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
2462
|
+
hidden?: boolean | undefined;
|
|
2463
|
+
} & ({
|
|
2464
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1681
2465
|
} | {
|
|
1682
|
-
type: "github";
|
|
1683
2466
|
href: string;
|
|
1684
|
-
} |
|
|
2467
|
+
} | {
|
|
2468
|
+
versions: any[];
|
|
2469
|
+
} | {
|
|
2470
|
+
tabs: any[];
|
|
2471
|
+
} | {
|
|
2472
|
+
dropdowns: any[];
|
|
2473
|
+
} | {
|
|
2474
|
+
anchors: any[];
|
|
2475
|
+
} | {
|
|
2476
|
+
groups: ({
|
|
2477
|
+
group: string;
|
|
2478
|
+
icon?: string | {
|
|
2479
|
+
name: string;
|
|
2480
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2481
|
+
} | undefined;
|
|
2482
|
+
hidden?: boolean | undefined;
|
|
2483
|
+
root?: string | undefined;
|
|
2484
|
+
} & ({
|
|
2485
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2486
|
+
} | {
|
|
2487
|
+
pages: any[];
|
|
2488
|
+
}))[];
|
|
2489
|
+
} | {
|
|
2490
|
+
pages: any[];
|
|
2491
|
+
}))[];
|
|
1685
2492
|
}, {
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
}
|
|
1690
|
-
|
|
1691
|
-
type: "button";
|
|
1692
|
-
href: string;
|
|
1693
|
-
label: string;
|
|
2493
|
+
languages: ({
|
|
2494
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
2495
|
+
hidden?: boolean | undefined;
|
|
2496
|
+
} & ({
|
|
2497
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1694
2498
|
} | {
|
|
1695
|
-
type: "github";
|
|
1696
2499
|
href: string;
|
|
1697
|
-
} |
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
2500
|
+
} | {
|
|
2501
|
+
versions: any[];
|
|
2502
|
+
} | {
|
|
2503
|
+
tabs: any[];
|
|
2504
|
+
} | {
|
|
2505
|
+
dropdowns: any[];
|
|
2506
|
+
} | {
|
|
2507
|
+
anchors: any[];
|
|
2508
|
+
} | {
|
|
2509
|
+
groups: ({
|
|
2510
|
+
group: string;
|
|
2511
|
+
icon?: string | {
|
|
2512
|
+
name: string;
|
|
2513
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2514
|
+
} | undefined;
|
|
2515
|
+
hidden?: boolean | undefined;
|
|
2516
|
+
root?: string | undefined;
|
|
2517
|
+
} & ({
|
|
2518
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2519
|
+
} | {
|
|
2520
|
+
pages: any[];
|
|
2521
|
+
}))[];
|
|
2522
|
+
} | {
|
|
2523
|
+
pages: any[];
|
|
2524
|
+
}))[];
|
|
2525
|
+
}>, z.ZodObject<{
|
|
2526
|
+
versions: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
2527
|
+
}, "strip", z.ZodTypeAny, {
|
|
2528
|
+
versions: any[];
|
|
2529
|
+
}, {
|
|
2530
|
+
versions: any[];
|
|
2531
|
+
}>, z.ZodObject<{
|
|
2532
|
+
tabs: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
2533
|
+
}, "strip", z.ZodTypeAny, {
|
|
2534
|
+
tabs: any[];
|
|
2535
|
+
}, {
|
|
2536
|
+
tabs: any[];
|
|
2537
|
+
}>, z.ZodObject<{
|
|
2538
|
+
dropdowns: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
2539
|
+
}, "strip", z.ZodTypeAny, {
|
|
2540
|
+
dropdowns: any[];
|
|
2541
|
+
}, {
|
|
2542
|
+
dropdowns: any[];
|
|
2543
|
+
}>, z.ZodObject<{
|
|
2544
|
+
anchors: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
2545
|
+
}, "strip", z.ZodTypeAny, {
|
|
2546
|
+
anchors: any[];
|
|
2547
|
+
}, {
|
|
2548
|
+
anchors: any[];
|
|
2549
|
+
}>, z.ZodObject<{
|
|
2550
|
+
groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
2551
|
+
group: z.ZodString;
|
|
2552
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
2553
|
+
style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
|
|
2554
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
2555
|
+
}, "strip", z.ZodTypeAny, {
|
|
2556
|
+
name: string;
|
|
2557
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2558
|
+
}, {
|
|
2559
|
+
name: string;
|
|
2560
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2561
|
+
}>]>>;
|
|
1702
2562
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2563
|
+
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1703
2564
|
}, "strip", z.ZodTypeAny, {
|
|
1704
|
-
|
|
2565
|
+
group: string;
|
|
2566
|
+
icon?: string | {
|
|
2567
|
+
name: string;
|
|
2568
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2569
|
+
} | undefined;
|
|
1705
2570
|
hidden?: boolean | undefined;
|
|
2571
|
+
root?: string | undefined;
|
|
1706
2572
|
}, {
|
|
1707
|
-
|
|
2573
|
+
group: string;
|
|
2574
|
+
icon?: string | {
|
|
2575
|
+
name: string;
|
|
2576
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2577
|
+
} | undefined;
|
|
1708
2578
|
hidden?: boolean | undefined;
|
|
2579
|
+
root?: string | undefined;
|
|
1709
2580
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
1710
2581
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
1711
2582
|
}, "strip", z.ZodTypeAny, {
|
|
1712
2583
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1713
2584
|
}, {
|
|
1714
2585
|
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
2586
|
}>, z.ZodLazy<z.ZodObject<{
|
|
1722
|
-
|
|
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">;
|
|
2587
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
1741
2588
|
}, "strip", z.ZodTypeAny, {
|
|
1742
|
-
|
|
2589
|
+
pages: any[];
|
|
1743
2590
|
}, {
|
|
1744
|
-
|
|
1745
|
-
}>>,
|
|
1746
|
-
|
|
1747
|
-
|
|
2591
|
+
pages: any[];
|
|
2592
|
+
}>>]>>, "many">;
|
|
2593
|
+
}, "strip", z.ZodTypeAny, {
|
|
2594
|
+
groups: ({
|
|
2595
|
+
group: string;
|
|
2596
|
+
icon?: string | {
|
|
2597
|
+
name: string;
|
|
2598
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2599
|
+
} | undefined;
|
|
2600
|
+
hidden?: boolean | undefined;
|
|
2601
|
+
root?: string | undefined;
|
|
2602
|
+
} & ({
|
|
2603
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2604
|
+
} | {
|
|
2605
|
+
pages: any[];
|
|
2606
|
+
}))[];
|
|
2607
|
+
}, {
|
|
2608
|
+
groups: ({
|
|
2609
|
+
group: string;
|
|
2610
|
+
icon?: string | {
|
|
2611
|
+
name: string;
|
|
2612
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2613
|
+
} | undefined;
|
|
2614
|
+
hidden?: boolean | undefined;
|
|
2615
|
+
root?: string | undefined;
|
|
2616
|
+
} & ({
|
|
2617
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2618
|
+
} | {
|
|
2619
|
+
pages: any[];
|
|
2620
|
+
}))[];
|
|
2621
|
+
}>, z.ZodObject<{
|
|
2622
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
2623
|
+
}, "strip", z.ZodTypeAny, {
|
|
2624
|
+
pages: any[];
|
|
2625
|
+
}, {
|
|
2626
|
+
pages: any[];
|
|
2627
|
+
}>]>, z.ZodOptional<z.ZodObject<{
|
|
2628
|
+
global: z.ZodObject<{
|
|
2629
|
+
languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
2630
|
+
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
2631
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2632
|
+
}, "strip", z.ZodTypeAny, {
|
|
2633
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
2634
|
+
hidden?: boolean | undefined;
|
|
2635
|
+
}, {
|
|
2636
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
2637
|
+
hidden?: boolean | undefined;
|
|
2638
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
2639
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
2640
|
+
}, "strip", z.ZodTypeAny, {
|
|
2641
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2642
|
+
}, {
|
|
2643
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2644
|
+
}>, z.ZodObject<{
|
|
2645
|
+
href: z.ZodString;
|
|
2646
|
+
}, "strip", z.ZodTypeAny, {
|
|
2647
|
+
href: string;
|
|
2648
|
+
}, {
|
|
2649
|
+
href: string;
|
|
2650
|
+
}>]>>, "many">>;
|
|
2651
|
+
versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
2652
|
+
version: z.ZodString;
|
|
2653
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2654
|
+
}, "strip", z.ZodTypeAny, {
|
|
2655
|
+
version: string;
|
|
2656
|
+
hidden?: boolean | undefined;
|
|
2657
|
+
}, {
|
|
2658
|
+
version: string;
|
|
2659
|
+
hidden?: boolean | undefined;
|
|
2660
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
2661
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
2662
|
+
}, "strip", z.ZodTypeAny, {
|
|
2663
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2664
|
+
}, {
|
|
2665
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2666
|
+
}>, z.ZodObject<{
|
|
2667
|
+
href: z.ZodString;
|
|
2668
|
+
}, "strip", z.ZodTypeAny, {
|
|
2669
|
+
href: string;
|
|
2670
|
+
}, {
|
|
2671
|
+
href: string;
|
|
2672
|
+
}>]>>, "many">>;
|
|
2673
|
+
tabs: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
2674
|
+
tab: z.ZodString;
|
|
2675
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
2676
|
+
style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
|
|
2677
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
2678
|
+
}, "strip", z.ZodTypeAny, {
|
|
2679
|
+
name: string;
|
|
2680
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2681
|
+
}, {
|
|
2682
|
+
name: string;
|
|
2683
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2684
|
+
}>]>>;
|
|
2685
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2686
|
+
}, "strip", z.ZodTypeAny, {
|
|
2687
|
+
tab: string;
|
|
2688
|
+
icon?: string | {
|
|
2689
|
+
name: string;
|
|
2690
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2691
|
+
} | undefined;
|
|
2692
|
+
hidden?: boolean | undefined;
|
|
2693
|
+
}, {
|
|
2694
|
+
tab: string;
|
|
2695
|
+
icon?: string | {
|
|
2696
|
+
name: string;
|
|
2697
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2698
|
+
} | undefined;
|
|
2699
|
+
hidden?: boolean | undefined;
|
|
2700
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
2701
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
2702
|
+
}, "strip", z.ZodTypeAny, {
|
|
2703
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2704
|
+
}, {
|
|
2705
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2706
|
+
}>, z.ZodObject<{
|
|
2707
|
+
href: z.ZodString;
|
|
2708
|
+
}, "strip", z.ZodTypeAny, {
|
|
2709
|
+
href: string;
|
|
2710
|
+
}, {
|
|
2711
|
+
href: string;
|
|
2712
|
+
}>]>>, "many">>;
|
|
2713
|
+
dropdowns: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
2714
|
+
dropdown: z.ZodString;
|
|
1748
2715
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1749
2716
|
style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
|
|
1750
2717
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -1756,240 +2723,325 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1756
2723
|
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
1757
2724
|
}>]>>;
|
|
1758
2725
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1759
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1760
2726
|
}, "strip", z.ZodTypeAny, {
|
|
1761
|
-
|
|
2727
|
+
dropdown: string;
|
|
1762
2728
|
icon?: string | {
|
|
1763
2729
|
name: string;
|
|
1764
2730
|
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
1765
2731
|
} | undefined;
|
|
1766
2732
|
hidden?: boolean | undefined;
|
|
1767
|
-
root?: string | undefined;
|
|
1768
2733
|
}, {
|
|
1769
|
-
|
|
2734
|
+
dropdown: string;
|
|
1770
2735
|
icon?: string | {
|
|
1771
2736
|
name: string;
|
|
1772
2737
|
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
1773
2738
|
} | undefined;
|
|
1774
2739
|
hidden?: boolean | undefined;
|
|
1775
|
-
root?: string | undefined;
|
|
1776
2740
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
1777
2741
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
1778
2742
|
}, "strip", z.ZodTypeAny, {
|
|
1779
2743
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1780
2744
|
}, {
|
|
1781
2745
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1782
|
-
}>, z.
|
|
1783
|
-
|
|
2746
|
+
}>, z.ZodObject<{
|
|
2747
|
+
href: z.ZodString;
|
|
1784
2748
|
}, "strip", z.ZodTypeAny, {
|
|
1785
|
-
|
|
2749
|
+
href: string;
|
|
1786
2750
|
}, {
|
|
1787
|
-
|
|
1788
|
-
}
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
2751
|
+
href: string;
|
|
2752
|
+
}>]>>, "many">>;
|
|
2753
|
+
anchors: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
2754
|
+
anchor: z.ZodString;
|
|
2755
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
2756
|
+
style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
|
|
2757
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
2758
|
+
}, "strip", z.ZodTypeAny, {
|
|
2759
|
+
name: string;
|
|
2760
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2761
|
+
}, {
|
|
2762
|
+
name: string;
|
|
2763
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2764
|
+
}>]>>;
|
|
2765
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
2766
|
+
light: z.ZodString;
|
|
2767
|
+
dark: z.ZodString;
|
|
2768
|
+
}, "strict", z.ZodTypeAny, {
|
|
2769
|
+
light: string;
|
|
2770
|
+
dark: string;
|
|
2771
|
+
}, {
|
|
2772
|
+
light: string;
|
|
2773
|
+
dark: string;
|
|
2774
|
+
}>>;
|
|
2775
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2776
|
+
}, "strip", z.ZodTypeAny, {
|
|
2777
|
+
anchor: string;
|
|
1792
2778
|
icon?: string | {
|
|
1793
2779
|
name: string;
|
|
1794
2780
|
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
1795
2781
|
} | undefined;
|
|
2782
|
+
color?: {
|
|
2783
|
+
light: string;
|
|
2784
|
+
dark: string;
|
|
2785
|
+
} | undefined;
|
|
2786
|
+
hidden?: boolean | undefined;
|
|
2787
|
+
}, {
|
|
2788
|
+
anchor: string;
|
|
2789
|
+
icon?: string | {
|
|
2790
|
+
name: string;
|
|
2791
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2792
|
+
} | undefined;
|
|
2793
|
+
color?: {
|
|
2794
|
+
light: string;
|
|
2795
|
+
dark: string;
|
|
2796
|
+
} | undefined;
|
|
2797
|
+
hidden?: boolean | undefined;
|
|
2798
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
2799
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
2800
|
+
}, "strip", z.ZodTypeAny, {
|
|
2801
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2802
|
+
}, {
|
|
2803
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2804
|
+
}>, z.ZodObject<{
|
|
2805
|
+
href: z.ZodString;
|
|
2806
|
+
}, "strip", z.ZodTypeAny, {
|
|
2807
|
+
href: string;
|
|
2808
|
+
}, {
|
|
2809
|
+
href: string;
|
|
2810
|
+
}>]>>, "many">>;
|
|
2811
|
+
}, "strict", z.ZodTypeAny, {
|
|
2812
|
+
languages?: ({
|
|
2813
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1796
2814
|
hidden?: boolean | undefined;
|
|
1797
|
-
root?: string | undefined;
|
|
1798
2815
|
} & ({
|
|
1799
2816
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1800
2817
|
} | {
|
|
1801
|
-
|
|
1802
|
-
}))[];
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
2818
|
+
href: string;
|
|
2819
|
+
}))[] | undefined;
|
|
2820
|
+
versions?: ({
|
|
2821
|
+
version: string;
|
|
2822
|
+
hidden?: boolean | undefined;
|
|
2823
|
+
} & ({
|
|
2824
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2825
|
+
} | {
|
|
2826
|
+
href: string;
|
|
2827
|
+
}))[] | undefined;
|
|
2828
|
+
tabs?: ({
|
|
2829
|
+
tab: string;
|
|
1806
2830
|
icon?: string | {
|
|
1807
2831
|
name: string;
|
|
1808
2832
|
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
1809
2833
|
} | undefined;
|
|
1810
2834
|
hidden?: boolean | undefined;
|
|
1811
|
-
root?: string | undefined;
|
|
1812
2835
|
} & ({
|
|
1813
2836
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1814
2837
|
} | {
|
|
1815
|
-
|
|
1816
|
-
}))[];
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
2838
|
+
href: string;
|
|
2839
|
+
}))[] | undefined;
|
|
2840
|
+
dropdowns?: ({
|
|
2841
|
+
dropdown: string;
|
|
2842
|
+
icon?: string | {
|
|
2843
|
+
name: string;
|
|
2844
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2845
|
+
} | undefined;
|
|
2846
|
+
hidden?: boolean | undefined;
|
|
2847
|
+
} & ({
|
|
2848
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2849
|
+
} | {
|
|
2850
|
+
href: string;
|
|
2851
|
+
}))[] | undefined;
|
|
2852
|
+
anchors?: ({
|
|
2853
|
+
anchor: string;
|
|
2854
|
+
icon?: string | {
|
|
2855
|
+
name: string;
|
|
2856
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2857
|
+
} | undefined;
|
|
2858
|
+
color?: {
|
|
2859
|
+
light: string;
|
|
2860
|
+
dark: string;
|
|
2861
|
+
} | undefined;
|
|
2862
|
+
hidden?: boolean | undefined;
|
|
2863
|
+
} & ({
|
|
2864
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2865
|
+
} | {
|
|
2866
|
+
href: string;
|
|
2867
|
+
}))[] | undefined;
|
|
1821
2868
|
}, {
|
|
1822
|
-
|
|
1823
|
-
|
|
2869
|
+
languages?: ({
|
|
2870
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
2871
|
+
hidden?: boolean | undefined;
|
|
2872
|
+
} & ({
|
|
2873
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2874
|
+
} | {
|
|
2875
|
+
href: string;
|
|
2876
|
+
}))[] | undefined;
|
|
2877
|
+
versions?: ({
|
|
2878
|
+
version: string;
|
|
2879
|
+
hidden?: boolean | undefined;
|
|
2880
|
+
} & ({
|
|
2881
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2882
|
+
} | {
|
|
2883
|
+
href: string;
|
|
2884
|
+
}))[] | undefined;
|
|
2885
|
+
tabs?: ({
|
|
2886
|
+
tab: string;
|
|
2887
|
+
icon?: string | {
|
|
2888
|
+
name: string;
|
|
2889
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2890
|
+
} | undefined;
|
|
2891
|
+
hidden?: boolean | undefined;
|
|
2892
|
+
} & ({
|
|
2893
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2894
|
+
} | {
|
|
2895
|
+
href: string;
|
|
2896
|
+
}))[] | undefined;
|
|
2897
|
+
dropdowns?: ({
|
|
2898
|
+
dropdown: string;
|
|
2899
|
+
icon?: string | {
|
|
2900
|
+
name: string;
|
|
2901
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2902
|
+
} | undefined;
|
|
2903
|
+
hidden?: boolean | undefined;
|
|
2904
|
+
} & ({
|
|
2905
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2906
|
+
} | {
|
|
2907
|
+
href: string;
|
|
2908
|
+
}))[] | undefined;
|
|
2909
|
+
anchors?: ({
|
|
2910
|
+
anchor: string;
|
|
2911
|
+
icon?: string | {
|
|
2912
|
+
name: string;
|
|
2913
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2914
|
+
} | undefined;
|
|
2915
|
+
color?: {
|
|
2916
|
+
light: string;
|
|
2917
|
+
dark: string;
|
|
2918
|
+
} | undefined;
|
|
2919
|
+
hidden?: boolean | undefined;
|
|
2920
|
+
} & ({
|
|
2921
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2922
|
+
} | {
|
|
2923
|
+
href: string;
|
|
2924
|
+
}))[] | undefined;
|
|
2925
|
+
}>;
|
|
1824
2926
|
}, "strip", z.ZodTypeAny, {
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
2927
|
+
global: {
|
|
2928
|
+
languages?: ({
|
|
2929
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
2930
|
+
hidden?: boolean | undefined;
|
|
2931
|
+
} & ({
|
|
2932
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2933
|
+
} | {
|
|
2934
|
+
href: string;
|
|
2935
|
+
}))[] | undefined;
|
|
2936
|
+
versions?: ({
|
|
2937
|
+
version: string;
|
|
2938
|
+
hidden?: boolean | undefined;
|
|
2939
|
+
} & ({
|
|
2940
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2941
|
+
} | {
|
|
2942
|
+
href: string;
|
|
2943
|
+
}))[] | undefined;
|
|
2944
|
+
tabs?: ({
|
|
2945
|
+
tab: string;
|
|
1843
2946
|
icon?: string | {
|
|
1844
2947
|
name: string;
|
|
1845
2948
|
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
1846
2949
|
} | undefined;
|
|
1847
2950
|
hidden?: boolean | undefined;
|
|
1848
|
-
root?: string | undefined;
|
|
1849
2951
|
} & ({
|
|
1850
2952
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1851
2953
|
} | {
|
|
1852
|
-
|
|
1853
|
-
}))[];
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
2954
|
+
href: string;
|
|
2955
|
+
}))[] | undefined;
|
|
2956
|
+
dropdowns?: ({
|
|
2957
|
+
dropdown: string;
|
|
2958
|
+
icon?: string | {
|
|
2959
|
+
name: string;
|
|
2960
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2961
|
+
} | undefined;
|
|
2962
|
+
hidden?: boolean | undefined;
|
|
2963
|
+
} & ({
|
|
2964
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2965
|
+
} | {
|
|
2966
|
+
href: string;
|
|
2967
|
+
}))[] | undefined;
|
|
2968
|
+
anchors?: ({
|
|
2969
|
+
anchor: string;
|
|
2970
|
+
icon?: string | {
|
|
2971
|
+
name: string;
|
|
2972
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
2973
|
+
} | undefined;
|
|
2974
|
+
color?: {
|
|
2975
|
+
light: string;
|
|
2976
|
+
dark: string;
|
|
2977
|
+
} | undefined;
|
|
2978
|
+
hidden?: boolean | undefined;
|
|
2979
|
+
} & ({
|
|
2980
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2981
|
+
} | {
|
|
2982
|
+
href: string;
|
|
2983
|
+
}))[] | undefined;
|
|
2984
|
+
};
|
|
1857
2985
|
}, {
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
2986
|
+
global: {
|
|
2987
|
+
languages?: ({
|
|
2988
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
2989
|
+
hidden?: boolean | undefined;
|
|
2990
|
+
} & ({
|
|
2991
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2992
|
+
} | {
|
|
2993
|
+
href: string;
|
|
2994
|
+
}))[] | undefined;
|
|
2995
|
+
versions?: ({
|
|
2996
|
+
version: string;
|
|
2997
|
+
hidden?: boolean | undefined;
|
|
2998
|
+
} & ({
|
|
2999
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3000
|
+
} | {
|
|
3001
|
+
href: string;
|
|
3002
|
+
}))[] | undefined;
|
|
3003
|
+
tabs?: ({
|
|
3004
|
+
tab: string;
|
|
3005
|
+
icon?: string | {
|
|
3006
|
+
name: string;
|
|
3007
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
3008
|
+
} | undefined;
|
|
3009
|
+
hidden?: boolean | undefined;
|
|
3010
|
+
} & ({
|
|
3011
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3012
|
+
} | {
|
|
3013
|
+
href: string;
|
|
3014
|
+
}))[] | undefined;
|
|
3015
|
+
dropdowns?: ({
|
|
3016
|
+
dropdown: string;
|
|
3017
|
+
icon?: string | {
|
|
3018
|
+
name: string;
|
|
3019
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
3020
|
+
} | undefined;
|
|
3021
|
+
hidden?: boolean | undefined;
|
|
3022
|
+
} & ({
|
|
3023
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3024
|
+
} | {
|
|
3025
|
+
href: string;
|
|
3026
|
+
}))[] | undefined;
|
|
3027
|
+
anchors?: ({
|
|
3028
|
+
anchor: string;
|
|
1876
3029
|
icon?: string | {
|
|
1877
3030
|
name: string;
|
|
1878
3031
|
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
1879
3032
|
} | undefined;
|
|
3033
|
+
color?: {
|
|
3034
|
+
light: string;
|
|
3035
|
+
dark: string;
|
|
3036
|
+
} | undefined;
|
|
1880
3037
|
hidden?: boolean | undefined;
|
|
1881
|
-
root?: string | undefined;
|
|
1882
3038
|
} & ({
|
|
1883
3039
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1884
3040
|
} | {
|
|
1885
|
-
|
|
1886
|
-
}))[];
|
|
1887
|
-
}
|
|
1888
|
-
|
|
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
|
-
}>]>;
|
|
3041
|
+
href: string;
|
|
3042
|
+
}))[] | undefined;
|
|
3043
|
+
};
|
|
3044
|
+
}>>>;
|
|
1993
3045
|
footer: z.ZodOptional<z.ZodObject<{
|
|
1994
3046
|
socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter"]>, z.ZodString>>;
|
|
1995
3047
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -2439,16 +3491,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2439
3491
|
key: string;
|
|
2440
3492
|
} | undefined;
|
|
2441
3493
|
}>>;
|
|
2442
|
-
legacy: z.ZodOptional<z.ZodObject<{
|
|
2443
|
-
baseurl: z.ZodOptional<z.ZodString>;
|
|
2444
|
-
auth: z.ZodOptional<z.ZodEnum<["basic", "bearer", "cobo", "key"]>>;
|
|
2445
|
-
}, "strip", z.ZodTypeAny, {
|
|
2446
|
-
baseurl?: string | undefined;
|
|
2447
|
-
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
2448
|
-
}, {
|
|
2449
|
-
baseurl?: string | undefined;
|
|
2450
|
-
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
2451
|
-
}>>;
|
|
2452
3494
|
theme: z.ZodLiteral<"prism">;
|
|
2453
3495
|
}, "strip", z.ZodTypeAny, {
|
|
2454
3496
|
name: string;
|
|
@@ -2459,7 +3501,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2459
3501
|
light?: string | undefined;
|
|
2460
3502
|
dark?: string | undefined;
|
|
2461
3503
|
};
|
|
2462
|
-
navigation: ({
|
|
3504
|
+
navigation: (({
|
|
2463
3505
|
languages: ({
|
|
2464
3506
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
2465
3507
|
hidden?: boolean | undefined;
|
|
@@ -2517,6 +3559,65 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2517
3559
|
} | {
|
|
2518
3560
|
pages: any[];
|
|
2519
3561
|
}) & ({
|
|
3562
|
+
global: {
|
|
3563
|
+
languages?: ({
|
|
3564
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
3565
|
+
hidden?: boolean | undefined;
|
|
3566
|
+
} & ({
|
|
3567
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3568
|
+
} | {
|
|
3569
|
+
href: string;
|
|
3570
|
+
}))[] | undefined;
|
|
3571
|
+
versions?: ({
|
|
3572
|
+
version: string;
|
|
3573
|
+
hidden?: boolean | undefined;
|
|
3574
|
+
} & ({
|
|
3575
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3576
|
+
} | {
|
|
3577
|
+
href: string;
|
|
3578
|
+
}))[] | undefined;
|
|
3579
|
+
tabs?: ({
|
|
3580
|
+
tab: string;
|
|
3581
|
+
icon?: string | {
|
|
3582
|
+
name: string;
|
|
3583
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
3584
|
+
} | undefined;
|
|
3585
|
+
hidden?: boolean | undefined;
|
|
3586
|
+
} & ({
|
|
3587
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3588
|
+
} | {
|
|
3589
|
+
href: string;
|
|
3590
|
+
}))[] | undefined;
|
|
3591
|
+
dropdowns?: ({
|
|
3592
|
+
dropdown: string;
|
|
3593
|
+
icon?: string | {
|
|
3594
|
+
name: string;
|
|
3595
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
3596
|
+
} | undefined;
|
|
3597
|
+
hidden?: boolean | undefined;
|
|
3598
|
+
} & ({
|
|
3599
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3600
|
+
} | {
|
|
3601
|
+
href: string;
|
|
3602
|
+
}))[] | undefined;
|
|
3603
|
+
anchors?: ({
|
|
3604
|
+
anchor: string;
|
|
3605
|
+
icon?: string | {
|
|
3606
|
+
name: string;
|
|
3607
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
3608
|
+
} | undefined;
|
|
3609
|
+
color?: {
|
|
3610
|
+
light: string;
|
|
3611
|
+
dark: string;
|
|
3612
|
+
} | undefined;
|
|
3613
|
+
hidden?: boolean | undefined;
|
|
3614
|
+
} & ({
|
|
3615
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3616
|
+
} | {
|
|
3617
|
+
href: string;
|
|
3618
|
+
}))[] | undefined;
|
|
3619
|
+
};
|
|
3620
|
+
} | undefined)) & ((({
|
|
2520
3621
|
languages: ({
|
|
2521
3622
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
2522
3623
|
hidden?: boolean | undefined;
|
|
@@ -2573,7 +3674,66 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2573
3674
|
}))[];
|
|
2574
3675
|
} | {
|
|
2575
3676
|
pages: any[];
|
|
2576
|
-
}
|
|
3677
|
+
}) & ({
|
|
3678
|
+
global: {
|
|
3679
|
+
languages?: ({
|
|
3680
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
3681
|
+
hidden?: boolean | undefined;
|
|
3682
|
+
} & ({
|
|
3683
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3684
|
+
} | {
|
|
3685
|
+
href: string;
|
|
3686
|
+
}))[] | undefined;
|
|
3687
|
+
versions?: ({
|
|
3688
|
+
version: string;
|
|
3689
|
+
hidden?: boolean | undefined;
|
|
3690
|
+
} & ({
|
|
3691
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3692
|
+
} | {
|
|
3693
|
+
href: string;
|
|
3694
|
+
}))[] | undefined;
|
|
3695
|
+
tabs?: ({
|
|
3696
|
+
tab: string;
|
|
3697
|
+
icon?: string | {
|
|
3698
|
+
name: string;
|
|
3699
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
3700
|
+
} | undefined;
|
|
3701
|
+
hidden?: boolean | undefined;
|
|
3702
|
+
} & ({
|
|
3703
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3704
|
+
} | {
|
|
3705
|
+
href: string;
|
|
3706
|
+
}))[] | undefined;
|
|
3707
|
+
dropdowns?: ({
|
|
3708
|
+
dropdown: string;
|
|
3709
|
+
icon?: string | {
|
|
3710
|
+
name: string;
|
|
3711
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
3712
|
+
} | undefined;
|
|
3713
|
+
hidden?: boolean | undefined;
|
|
3714
|
+
} & ({
|
|
3715
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3716
|
+
} | {
|
|
3717
|
+
href: string;
|
|
3718
|
+
}))[] | undefined;
|
|
3719
|
+
anchors?: ({
|
|
3720
|
+
anchor: string;
|
|
3721
|
+
icon?: string | {
|
|
3722
|
+
name: string;
|
|
3723
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
3724
|
+
} | undefined;
|
|
3725
|
+
color?: {
|
|
3726
|
+
light: string;
|
|
3727
|
+
dark: string;
|
|
3728
|
+
} | undefined;
|
|
3729
|
+
hidden?: boolean | undefined;
|
|
3730
|
+
} & ({
|
|
3731
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3732
|
+
} | {
|
|
3733
|
+
href: string;
|
|
3734
|
+
}))[] | undefined;
|
|
3735
|
+
};
|
|
3736
|
+
} | undefined)) | undefined);
|
|
2577
3737
|
description?: string | undefined;
|
|
2578
3738
|
logo?: string | {
|
|
2579
3739
|
light: string;
|
|
@@ -2728,10 +3888,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2728
3888
|
key: string;
|
|
2729
3889
|
} | undefined;
|
|
2730
3890
|
} | undefined;
|
|
2731
|
-
legacy?: {
|
|
2732
|
-
baseurl?: string | undefined;
|
|
2733
|
-
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
2734
|
-
} | undefined;
|
|
2735
3891
|
}, {
|
|
2736
3892
|
name: string;
|
|
2737
3893
|
theme: "prism";
|
|
@@ -2740,7 +3896,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2740
3896
|
light?: string | undefined;
|
|
2741
3897
|
dark?: string | undefined;
|
|
2742
3898
|
};
|
|
2743
|
-
navigation: ({
|
|
3899
|
+
navigation: (({
|
|
2744
3900
|
languages: ({
|
|
2745
3901
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
2746
3902
|
hidden?: boolean | undefined;
|
|
@@ -2798,6 +3954,65 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2798
3954
|
} | {
|
|
2799
3955
|
pages: any[];
|
|
2800
3956
|
}) & ({
|
|
3957
|
+
global: {
|
|
3958
|
+
languages?: ({
|
|
3959
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
3960
|
+
hidden?: boolean | undefined;
|
|
3961
|
+
} & ({
|
|
3962
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3963
|
+
} | {
|
|
3964
|
+
href: string;
|
|
3965
|
+
}))[] | undefined;
|
|
3966
|
+
versions?: ({
|
|
3967
|
+
version: string;
|
|
3968
|
+
hidden?: boolean | undefined;
|
|
3969
|
+
} & ({
|
|
3970
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3971
|
+
} | {
|
|
3972
|
+
href: string;
|
|
3973
|
+
}))[] | undefined;
|
|
3974
|
+
tabs?: ({
|
|
3975
|
+
tab: string;
|
|
3976
|
+
icon?: string | {
|
|
3977
|
+
name: string;
|
|
3978
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
3979
|
+
} | undefined;
|
|
3980
|
+
hidden?: boolean | undefined;
|
|
3981
|
+
} & ({
|
|
3982
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3983
|
+
} | {
|
|
3984
|
+
href: string;
|
|
3985
|
+
}))[] | undefined;
|
|
3986
|
+
dropdowns?: ({
|
|
3987
|
+
dropdown: string;
|
|
3988
|
+
icon?: string | {
|
|
3989
|
+
name: string;
|
|
3990
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
3991
|
+
} | undefined;
|
|
3992
|
+
hidden?: boolean | undefined;
|
|
3993
|
+
} & ({
|
|
3994
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3995
|
+
} | {
|
|
3996
|
+
href: string;
|
|
3997
|
+
}))[] | undefined;
|
|
3998
|
+
anchors?: ({
|
|
3999
|
+
anchor: string;
|
|
4000
|
+
icon?: string | {
|
|
4001
|
+
name: string;
|
|
4002
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4003
|
+
} | undefined;
|
|
4004
|
+
color?: {
|
|
4005
|
+
light: string;
|
|
4006
|
+
dark: string;
|
|
4007
|
+
} | undefined;
|
|
4008
|
+
hidden?: boolean | undefined;
|
|
4009
|
+
} & ({
|
|
4010
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4011
|
+
} | {
|
|
4012
|
+
href: string;
|
|
4013
|
+
}))[] | undefined;
|
|
4014
|
+
};
|
|
4015
|
+
} | undefined)) & ((({
|
|
2801
4016
|
languages: ({
|
|
2802
4017
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
2803
4018
|
hidden?: boolean | undefined;
|
|
@@ -2854,7 +4069,66 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2854
4069
|
}))[];
|
|
2855
4070
|
} | {
|
|
2856
4071
|
pages: any[];
|
|
2857
|
-
}
|
|
4072
|
+
}) & ({
|
|
4073
|
+
global: {
|
|
4074
|
+
languages?: ({
|
|
4075
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
4076
|
+
hidden?: boolean | undefined;
|
|
4077
|
+
} & ({
|
|
4078
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4079
|
+
} | {
|
|
4080
|
+
href: string;
|
|
4081
|
+
}))[] | undefined;
|
|
4082
|
+
versions?: ({
|
|
4083
|
+
version: string;
|
|
4084
|
+
hidden?: boolean | undefined;
|
|
4085
|
+
} & ({
|
|
4086
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4087
|
+
} | {
|
|
4088
|
+
href: string;
|
|
4089
|
+
}))[] | undefined;
|
|
4090
|
+
tabs?: ({
|
|
4091
|
+
tab: string;
|
|
4092
|
+
icon?: string | {
|
|
4093
|
+
name: string;
|
|
4094
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4095
|
+
} | undefined;
|
|
4096
|
+
hidden?: boolean | undefined;
|
|
4097
|
+
} & ({
|
|
4098
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4099
|
+
} | {
|
|
4100
|
+
href: string;
|
|
4101
|
+
}))[] | undefined;
|
|
4102
|
+
dropdowns?: ({
|
|
4103
|
+
dropdown: string;
|
|
4104
|
+
icon?: string | {
|
|
4105
|
+
name: string;
|
|
4106
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4107
|
+
} | undefined;
|
|
4108
|
+
hidden?: boolean | undefined;
|
|
4109
|
+
} & ({
|
|
4110
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4111
|
+
} | {
|
|
4112
|
+
href: string;
|
|
4113
|
+
}))[] | undefined;
|
|
4114
|
+
anchors?: ({
|
|
4115
|
+
anchor: string;
|
|
4116
|
+
icon?: string | {
|
|
4117
|
+
name: string;
|
|
4118
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4119
|
+
} | undefined;
|
|
4120
|
+
color?: {
|
|
4121
|
+
light: string;
|
|
4122
|
+
dark: string;
|
|
4123
|
+
} | undefined;
|
|
4124
|
+
hidden?: boolean | undefined;
|
|
4125
|
+
} & ({
|
|
4126
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4127
|
+
} | {
|
|
4128
|
+
href: string;
|
|
4129
|
+
}))[] | undefined;
|
|
4130
|
+
};
|
|
4131
|
+
} | undefined)) | undefined);
|
|
2858
4132
|
$schema?: string | undefined;
|
|
2859
4133
|
description?: string | undefined;
|
|
2860
4134
|
logo?: string | {
|
|
@@ -3010,10 +4284,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3010
4284
|
key: string;
|
|
3011
4285
|
} | undefined;
|
|
3012
4286
|
} | undefined;
|
|
3013
|
-
legacy?: {
|
|
3014
|
-
baseurl?: string | undefined;
|
|
3015
|
-
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
3016
|
-
} | undefined;
|
|
3017
4287
|
}>, z.ZodObject<{
|
|
3018
4288
|
$schema: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3019
4289
|
name: z.ZodString;
|
|
@@ -3203,7 +4473,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3203
4473
|
href: string;
|
|
3204
4474
|
} | undefined;
|
|
3205
4475
|
}>>;
|
|
3206
|
-
navigation: z.ZodUnion<[z.ZodObject<{
|
|
4476
|
+
navigation: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
3207
4477
|
languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
3208
4478
|
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
3209
4479
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3263,240 +4533,657 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3263
4533
|
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
3264
4534
|
}>]>>;
|
|
3265
4535
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3266
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4536
|
+
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4537
|
+
}, "strip", z.ZodTypeAny, {
|
|
4538
|
+
group: string;
|
|
4539
|
+
icon?: string | {
|
|
4540
|
+
name: string;
|
|
4541
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4542
|
+
} | undefined;
|
|
4543
|
+
hidden?: boolean | undefined;
|
|
4544
|
+
root?: string | undefined;
|
|
4545
|
+
}, {
|
|
4546
|
+
group: string;
|
|
4547
|
+
icon?: string | {
|
|
4548
|
+
name: string;
|
|
4549
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4550
|
+
} | undefined;
|
|
4551
|
+
hidden?: boolean | undefined;
|
|
4552
|
+
root?: string | undefined;
|
|
4553
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
4554
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
4555
|
+
}, "strip", z.ZodTypeAny, {
|
|
4556
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4557
|
+
}, {
|
|
4558
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4559
|
+
}>, z.ZodLazy<z.ZodObject<{
|
|
4560
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
4561
|
+
}, "strip", z.ZodTypeAny, {
|
|
4562
|
+
pages: any[];
|
|
4563
|
+
}, {
|
|
4564
|
+
pages: any[];
|
|
4565
|
+
}>>]>>, "many">;
|
|
4566
|
+
}, "strip", z.ZodTypeAny, {
|
|
4567
|
+
groups: ({
|
|
4568
|
+
group: string;
|
|
4569
|
+
icon?: string | {
|
|
4570
|
+
name: string;
|
|
4571
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4572
|
+
} | undefined;
|
|
4573
|
+
hidden?: boolean | undefined;
|
|
4574
|
+
root?: string | undefined;
|
|
4575
|
+
} & ({
|
|
4576
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4577
|
+
} | {
|
|
4578
|
+
pages: any[];
|
|
4579
|
+
}))[];
|
|
4580
|
+
}, {
|
|
4581
|
+
groups: ({
|
|
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
|
+
} & ({
|
|
4590
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4591
|
+
} | {
|
|
4592
|
+
pages: any[];
|
|
4593
|
+
}))[];
|
|
4594
|
+
}>>, z.ZodLazy<z.ZodObject<{
|
|
4595
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
4596
|
+
}, "strip", z.ZodTypeAny, {
|
|
4597
|
+
pages: any[];
|
|
4598
|
+
}, {
|
|
4599
|
+
pages: any[];
|
|
4600
|
+
}>>]>>, "many">;
|
|
4601
|
+
}, "strip", z.ZodTypeAny, {
|
|
4602
|
+
languages: ({
|
|
4603
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
4604
|
+
hidden?: boolean | undefined;
|
|
4605
|
+
} & ({
|
|
4606
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4607
|
+
} | {
|
|
4608
|
+
href: string;
|
|
4609
|
+
} | {
|
|
4610
|
+
versions: any[];
|
|
4611
|
+
} | {
|
|
4612
|
+
tabs: any[];
|
|
4613
|
+
} | {
|
|
4614
|
+
dropdowns: any[];
|
|
4615
|
+
} | {
|
|
4616
|
+
anchors: any[];
|
|
4617
|
+
} | {
|
|
4618
|
+
groups: ({
|
|
4619
|
+
group: string;
|
|
4620
|
+
icon?: string | {
|
|
4621
|
+
name: string;
|
|
4622
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4623
|
+
} | undefined;
|
|
4624
|
+
hidden?: boolean | undefined;
|
|
4625
|
+
root?: string | undefined;
|
|
4626
|
+
} & ({
|
|
4627
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4628
|
+
} | {
|
|
4629
|
+
pages: any[];
|
|
4630
|
+
}))[];
|
|
4631
|
+
} | {
|
|
4632
|
+
pages: any[];
|
|
4633
|
+
}))[];
|
|
4634
|
+
}, {
|
|
4635
|
+
languages: ({
|
|
4636
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
4637
|
+
hidden?: boolean | undefined;
|
|
4638
|
+
} & ({
|
|
4639
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4640
|
+
} | {
|
|
4641
|
+
href: string;
|
|
4642
|
+
} | {
|
|
4643
|
+
versions: any[];
|
|
4644
|
+
} | {
|
|
4645
|
+
tabs: any[];
|
|
4646
|
+
} | {
|
|
4647
|
+
dropdowns: any[];
|
|
4648
|
+
} | {
|
|
4649
|
+
anchors: any[];
|
|
4650
|
+
} | {
|
|
4651
|
+
groups: ({
|
|
4652
|
+
group: string;
|
|
4653
|
+
icon?: string | {
|
|
4654
|
+
name: string;
|
|
4655
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4656
|
+
} | undefined;
|
|
4657
|
+
hidden?: boolean | undefined;
|
|
4658
|
+
root?: string | undefined;
|
|
4659
|
+
} & ({
|
|
4660
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4661
|
+
} | {
|
|
4662
|
+
pages: any[];
|
|
4663
|
+
}))[];
|
|
4664
|
+
} | {
|
|
4665
|
+
pages: any[];
|
|
4666
|
+
}))[];
|
|
4667
|
+
}>, z.ZodObject<{
|
|
4668
|
+
versions: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
4669
|
+
}, "strip", z.ZodTypeAny, {
|
|
4670
|
+
versions: any[];
|
|
4671
|
+
}, {
|
|
4672
|
+
versions: any[];
|
|
4673
|
+
}>, z.ZodObject<{
|
|
4674
|
+
tabs: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
4675
|
+
}, "strip", z.ZodTypeAny, {
|
|
4676
|
+
tabs: any[];
|
|
4677
|
+
}, {
|
|
4678
|
+
tabs: any[];
|
|
4679
|
+
}>, z.ZodObject<{
|
|
4680
|
+
dropdowns: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
4681
|
+
}, "strip", z.ZodTypeAny, {
|
|
4682
|
+
dropdowns: any[];
|
|
4683
|
+
}, {
|
|
4684
|
+
dropdowns: any[];
|
|
4685
|
+
}>, z.ZodObject<{
|
|
4686
|
+
anchors: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
4687
|
+
}, "strip", z.ZodTypeAny, {
|
|
4688
|
+
anchors: any[];
|
|
4689
|
+
}, {
|
|
4690
|
+
anchors: any[];
|
|
4691
|
+
}>, z.ZodObject<{
|
|
4692
|
+
groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
4693
|
+
group: z.ZodString;
|
|
4694
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
4695
|
+
style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
|
|
4696
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
4697
|
+
}, "strip", z.ZodTypeAny, {
|
|
4698
|
+
name: string;
|
|
4699
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4700
|
+
}, {
|
|
4701
|
+
name: string;
|
|
4702
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4703
|
+
}>]>>;
|
|
4704
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
4705
|
+
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4706
|
+
}, "strip", z.ZodTypeAny, {
|
|
4707
|
+
group: string;
|
|
4708
|
+
icon?: string | {
|
|
4709
|
+
name: string;
|
|
4710
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4711
|
+
} | undefined;
|
|
4712
|
+
hidden?: boolean | undefined;
|
|
4713
|
+
root?: string | undefined;
|
|
4714
|
+
}, {
|
|
4715
|
+
group: string;
|
|
4716
|
+
icon?: string | {
|
|
4717
|
+
name: string;
|
|
4718
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4719
|
+
} | undefined;
|
|
4720
|
+
hidden?: boolean | undefined;
|
|
4721
|
+
root?: string | undefined;
|
|
4722
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
4723
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
4724
|
+
}, "strip", z.ZodTypeAny, {
|
|
4725
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4726
|
+
}, {
|
|
4727
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4728
|
+
}>, z.ZodLazy<z.ZodObject<{
|
|
4729
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
4730
|
+
}, "strip", z.ZodTypeAny, {
|
|
4731
|
+
pages: any[];
|
|
4732
|
+
}, {
|
|
4733
|
+
pages: any[];
|
|
4734
|
+
}>>]>>, "many">;
|
|
4735
|
+
}, "strip", z.ZodTypeAny, {
|
|
4736
|
+
groups: ({
|
|
4737
|
+
group: string;
|
|
4738
|
+
icon?: string | {
|
|
4739
|
+
name: string;
|
|
4740
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4741
|
+
} | undefined;
|
|
4742
|
+
hidden?: boolean | undefined;
|
|
4743
|
+
root?: string | undefined;
|
|
4744
|
+
} & ({
|
|
4745
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4746
|
+
} | {
|
|
4747
|
+
pages: any[];
|
|
4748
|
+
}))[];
|
|
4749
|
+
}, {
|
|
4750
|
+
groups: ({
|
|
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
|
+
} & ({
|
|
4759
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4760
|
+
} | {
|
|
4761
|
+
pages: any[];
|
|
4762
|
+
}))[];
|
|
4763
|
+
}>, z.ZodObject<{
|
|
4764
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
4765
|
+
}, "strip", z.ZodTypeAny, {
|
|
4766
|
+
pages: any[];
|
|
4767
|
+
}, {
|
|
4768
|
+
pages: any[];
|
|
4769
|
+
}>]>, z.ZodOptional<z.ZodObject<{
|
|
4770
|
+
global: z.ZodObject<{
|
|
4771
|
+
languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
4772
|
+
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
4773
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
4774
|
+
}, "strip", z.ZodTypeAny, {
|
|
4775
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
4776
|
+
hidden?: boolean | undefined;
|
|
4777
|
+
}, {
|
|
4778
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
4779
|
+
hidden?: boolean | undefined;
|
|
4780
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
4781
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
4782
|
+
}, "strip", z.ZodTypeAny, {
|
|
4783
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4784
|
+
}, {
|
|
4785
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4786
|
+
}>, z.ZodObject<{
|
|
4787
|
+
href: z.ZodString;
|
|
4788
|
+
}, "strip", z.ZodTypeAny, {
|
|
4789
|
+
href: string;
|
|
4790
|
+
}, {
|
|
4791
|
+
href: string;
|
|
4792
|
+
}>]>>, "many">>;
|
|
4793
|
+
versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
4794
|
+
version: z.ZodString;
|
|
4795
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
4796
|
+
}, "strip", z.ZodTypeAny, {
|
|
4797
|
+
version: string;
|
|
4798
|
+
hidden?: boolean | undefined;
|
|
4799
|
+
}, {
|
|
4800
|
+
version: string;
|
|
4801
|
+
hidden?: boolean | undefined;
|
|
4802
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
4803
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
4804
|
+
}, "strip", z.ZodTypeAny, {
|
|
4805
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4806
|
+
}, {
|
|
4807
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4808
|
+
}>, z.ZodObject<{
|
|
4809
|
+
href: z.ZodString;
|
|
4810
|
+
}, "strip", z.ZodTypeAny, {
|
|
4811
|
+
href: string;
|
|
4812
|
+
}, {
|
|
4813
|
+
href: string;
|
|
4814
|
+
}>]>>, "many">>;
|
|
4815
|
+
tabs: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
4816
|
+
tab: z.ZodString;
|
|
4817
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
4818
|
+
style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
|
|
4819
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
4820
|
+
}, "strip", z.ZodTypeAny, {
|
|
4821
|
+
name: string;
|
|
4822
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4823
|
+
}, {
|
|
4824
|
+
name: string;
|
|
4825
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4826
|
+
}>]>>;
|
|
4827
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3267
4828
|
}, "strip", z.ZodTypeAny, {
|
|
3268
|
-
|
|
4829
|
+
tab: string;
|
|
3269
4830
|
icon?: string | {
|
|
3270
4831
|
name: string;
|
|
3271
4832
|
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
3272
4833
|
} | undefined;
|
|
3273
4834
|
hidden?: boolean | undefined;
|
|
3274
|
-
root?: string | undefined;
|
|
3275
4835
|
}, {
|
|
3276
|
-
|
|
4836
|
+
tab: string;
|
|
3277
4837
|
icon?: string | {
|
|
3278
4838
|
name: string;
|
|
3279
4839
|
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
3280
4840
|
} | undefined;
|
|
3281
4841
|
hidden?: boolean | undefined;
|
|
3282
|
-
root?: string | undefined;
|
|
3283
4842
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
3284
4843
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
3285
4844
|
}, "strip", z.ZodTypeAny, {
|
|
3286
4845
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3287
4846
|
}, {
|
|
3288
4847
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3289
|
-
}>, z.
|
|
3290
|
-
|
|
4848
|
+
}>, z.ZodObject<{
|
|
4849
|
+
href: z.ZodString;
|
|
3291
4850
|
}, "strip", z.ZodTypeAny, {
|
|
3292
|
-
|
|
4851
|
+
href: string;
|
|
3293
4852
|
}, {
|
|
3294
|
-
|
|
3295
|
-
}
|
|
3296
|
-
|
|
3297
|
-
|
|
3298
|
-
|
|
4853
|
+
href: string;
|
|
4854
|
+
}>]>>, "many">>;
|
|
4855
|
+
dropdowns: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
4856
|
+
dropdown: z.ZodString;
|
|
4857
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
4858
|
+
style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
|
|
4859
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
4860
|
+
}, "strip", z.ZodTypeAny, {
|
|
4861
|
+
name: string;
|
|
4862
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4863
|
+
}, {
|
|
4864
|
+
name: string;
|
|
4865
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4866
|
+
}>]>>;
|
|
4867
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
4868
|
+
}, "strip", z.ZodTypeAny, {
|
|
4869
|
+
dropdown: string;
|
|
3299
4870
|
icon?: string | {
|
|
3300
4871
|
name: string;
|
|
3301
4872
|
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
3302
4873
|
} | undefined;
|
|
3303
4874
|
hidden?: boolean | undefined;
|
|
3304
|
-
|
|
4875
|
+
}, {
|
|
4876
|
+
dropdown: string;
|
|
4877
|
+
icon?: string | {
|
|
4878
|
+
name: string;
|
|
4879
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4880
|
+
} | undefined;
|
|
4881
|
+
hidden?: boolean | undefined;
|
|
4882
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
4883
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
4884
|
+
}, "strip", z.ZodTypeAny, {
|
|
4885
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4886
|
+
}, {
|
|
4887
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4888
|
+
}>, z.ZodObject<{
|
|
4889
|
+
href: z.ZodString;
|
|
4890
|
+
}, "strip", z.ZodTypeAny, {
|
|
4891
|
+
href: string;
|
|
4892
|
+
}, {
|
|
4893
|
+
href: string;
|
|
4894
|
+
}>]>>, "many">>;
|
|
4895
|
+
anchors: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
4896
|
+
anchor: z.ZodString;
|
|
4897
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
4898
|
+
style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
|
|
4899
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
4900
|
+
}, "strip", z.ZodTypeAny, {
|
|
4901
|
+
name: string;
|
|
4902
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4903
|
+
}, {
|
|
4904
|
+
name: string;
|
|
4905
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4906
|
+
}>]>>;
|
|
4907
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
4908
|
+
light: z.ZodString;
|
|
4909
|
+
dark: z.ZodString;
|
|
4910
|
+
}, "strict", z.ZodTypeAny, {
|
|
4911
|
+
light: string;
|
|
4912
|
+
dark: string;
|
|
4913
|
+
}, {
|
|
4914
|
+
light: string;
|
|
4915
|
+
dark: string;
|
|
4916
|
+
}>>;
|
|
4917
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
4918
|
+
}, "strip", z.ZodTypeAny, {
|
|
4919
|
+
anchor: string;
|
|
4920
|
+
icon?: string | {
|
|
4921
|
+
name: string;
|
|
4922
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4923
|
+
} | undefined;
|
|
4924
|
+
color?: {
|
|
4925
|
+
light: string;
|
|
4926
|
+
dark: string;
|
|
4927
|
+
} | undefined;
|
|
4928
|
+
hidden?: boolean | undefined;
|
|
4929
|
+
}, {
|
|
4930
|
+
anchor: string;
|
|
4931
|
+
icon?: string | {
|
|
4932
|
+
name: string;
|
|
4933
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4934
|
+
} | undefined;
|
|
4935
|
+
color?: {
|
|
4936
|
+
light: string;
|
|
4937
|
+
dark: string;
|
|
4938
|
+
} | undefined;
|
|
4939
|
+
hidden?: boolean | undefined;
|
|
4940
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
4941
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
4942
|
+
}, "strip", z.ZodTypeAny, {
|
|
4943
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4944
|
+
}, {
|
|
4945
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4946
|
+
}>, z.ZodObject<{
|
|
4947
|
+
href: z.ZodString;
|
|
4948
|
+
}, "strip", z.ZodTypeAny, {
|
|
4949
|
+
href: string;
|
|
4950
|
+
}, {
|
|
4951
|
+
href: string;
|
|
4952
|
+
}>]>>, "many">>;
|
|
4953
|
+
}, "strict", z.ZodTypeAny, {
|
|
4954
|
+
languages?: ({
|
|
4955
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
4956
|
+
hidden?: boolean | undefined;
|
|
3305
4957
|
} & ({
|
|
3306
4958
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3307
4959
|
} | {
|
|
3308
|
-
|
|
3309
|
-
}))[];
|
|
3310
|
-
|
|
3311
|
-
|
|
3312
|
-
|
|
4960
|
+
href: string;
|
|
4961
|
+
}))[] | undefined;
|
|
4962
|
+
versions?: ({
|
|
4963
|
+
version: string;
|
|
4964
|
+
hidden?: boolean | undefined;
|
|
4965
|
+
} & ({
|
|
4966
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4967
|
+
} | {
|
|
4968
|
+
href: string;
|
|
4969
|
+
}))[] | undefined;
|
|
4970
|
+
tabs?: ({
|
|
4971
|
+
tab: string;
|
|
3313
4972
|
icon?: string | {
|
|
3314
4973
|
name: string;
|
|
3315
4974
|
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
3316
4975
|
} | undefined;
|
|
3317
4976
|
hidden?: boolean | undefined;
|
|
3318
|
-
root?: string | undefined;
|
|
3319
4977
|
} & ({
|
|
3320
4978
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3321
4979
|
} | {
|
|
3322
|
-
|
|
3323
|
-
}))[];
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
4980
|
+
href: string;
|
|
4981
|
+
}))[] | undefined;
|
|
4982
|
+
dropdowns?: ({
|
|
4983
|
+
dropdown: string;
|
|
4984
|
+
icon?: string | {
|
|
4985
|
+
name: string;
|
|
4986
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4987
|
+
} | undefined;
|
|
4988
|
+
hidden?: boolean | undefined;
|
|
4989
|
+
} & ({
|
|
4990
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
4991
|
+
} | {
|
|
4992
|
+
href: string;
|
|
4993
|
+
}))[] | undefined;
|
|
4994
|
+
anchors?: ({
|
|
4995
|
+
anchor: string;
|
|
4996
|
+
icon?: string | {
|
|
4997
|
+
name: string;
|
|
4998
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
4999
|
+
} | undefined;
|
|
5000
|
+
color?: {
|
|
5001
|
+
light: string;
|
|
5002
|
+
dark: string;
|
|
5003
|
+
} | undefined;
|
|
5004
|
+
hidden?: boolean | undefined;
|
|
5005
|
+
} & ({
|
|
5006
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5007
|
+
} | {
|
|
5008
|
+
href: string;
|
|
5009
|
+
}))[] | undefined;
|
|
3328
5010
|
}, {
|
|
3329
|
-
|
|
3330
|
-
|
|
5011
|
+
languages?: ({
|
|
5012
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
5013
|
+
hidden?: boolean | undefined;
|
|
5014
|
+
} & ({
|
|
5015
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5016
|
+
} | {
|
|
5017
|
+
href: string;
|
|
5018
|
+
}))[] | undefined;
|
|
5019
|
+
versions?: ({
|
|
5020
|
+
version: string;
|
|
5021
|
+
hidden?: boolean | undefined;
|
|
5022
|
+
} & ({
|
|
5023
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5024
|
+
} | {
|
|
5025
|
+
href: string;
|
|
5026
|
+
}))[] | undefined;
|
|
5027
|
+
tabs?: ({
|
|
5028
|
+
tab: string;
|
|
5029
|
+
icon?: string | {
|
|
5030
|
+
name: string;
|
|
5031
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
5032
|
+
} | undefined;
|
|
5033
|
+
hidden?: boolean | undefined;
|
|
5034
|
+
} & ({
|
|
5035
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5036
|
+
} | {
|
|
5037
|
+
href: string;
|
|
5038
|
+
}))[] | undefined;
|
|
5039
|
+
dropdowns?: ({
|
|
5040
|
+
dropdown: string;
|
|
5041
|
+
icon?: string | {
|
|
5042
|
+
name: string;
|
|
5043
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
5044
|
+
} | undefined;
|
|
5045
|
+
hidden?: boolean | undefined;
|
|
5046
|
+
} & ({
|
|
5047
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5048
|
+
} | {
|
|
5049
|
+
href: string;
|
|
5050
|
+
}))[] | undefined;
|
|
5051
|
+
anchors?: ({
|
|
5052
|
+
anchor: string;
|
|
5053
|
+
icon?: string | {
|
|
5054
|
+
name: string;
|
|
5055
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
5056
|
+
} | undefined;
|
|
5057
|
+
color?: {
|
|
5058
|
+
light: string;
|
|
5059
|
+
dark: string;
|
|
5060
|
+
} | undefined;
|
|
5061
|
+
hidden?: boolean | undefined;
|
|
5062
|
+
} & ({
|
|
5063
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5064
|
+
} | {
|
|
5065
|
+
href: string;
|
|
5066
|
+
}))[] | undefined;
|
|
5067
|
+
}>;
|
|
3331
5068
|
}, "strip", z.ZodTypeAny, {
|
|
3332
|
-
|
|
3333
|
-
|
|
3334
|
-
|
|
3335
|
-
|
|
3336
|
-
|
|
3337
|
-
|
|
3338
|
-
|
|
3339
|
-
|
|
3340
|
-
|
|
3341
|
-
|
|
3342
|
-
|
|
3343
|
-
|
|
3344
|
-
|
|
3345
|
-
|
|
3346
|
-
|
|
3347
|
-
|
|
3348
|
-
|
|
3349
|
-
|
|
5069
|
+
global: {
|
|
5070
|
+
languages?: ({
|
|
5071
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
5072
|
+
hidden?: boolean | undefined;
|
|
5073
|
+
} & ({
|
|
5074
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5075
|
+
} | {
|
|
5076
|
+
href: string;
|
|
5077
|
+
}))[] | undefined;
|
|
5078
|
+
versions?: ({
|
|
5079
|
+
version: string;
|
|
5080
|
+
hidden?: boolean | undefined;
|
|
5081
|
+
} & ({
|
|
5082
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5083
|
+
} | {
|
|
5084
|
+
href: string;
|
|
5085
|
+
}))[] | undefined;
|
|
5086
|
+
tabs?: ({
|
|
5087
|
+
tab: string;
|
|
5088
|
+
icon?: string | {
|
|
5089
|
+
name: string;
|
|
5090
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
5091
|
+
} | undefined;
|
|
5092
|
+
hidden?: boolean | undefined;
|
|
5093
|
+
} & ({
|
|
5094
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5095
|
+
} | {
|
|
5096
|
+
href: string;
|
|
5097
|
+
}))[] | undefined;
|
|
5098
|
+
dropdowns?: ({
|
|
5099
|
+
dropdown: string;
|
|
5100
|
+
icon?: string | {
|
|
5101
|
+
name: string;
|
|
5102
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
5103
|
+
} | undefined;
|
|
5104
|
+
hidden?: boolean | undefined;
|
|
5105
|
+
} & ({
|
|
5106
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5107
|
+
} | {
|
|
5108
|
+
href: string;
|
|
5109
|
+
}))[] | undefined;
|
|
5110
|
+
anchors?: ({
|
|
5111
|
+
anchor: string;
|
|
5112
|
+
icon?: string | {
|
|
5113
|
+
name: string;
|
|
5114
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
5115
|
+
} | undefined;
|
|
5116
|
+
color?: {
|
|
5117
|
+
light: string;
|
|
5118
|
+
dark: string;
|
|
5119
|
+
} | undefined;
|
|
5120
|
+
hidden?: boolean | undefined;
|
|
5121
|
+
} & ({
|
|
5122
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5123
|
+
} | {
|
|
5124
|
+
href: string;
|
|
5125
|
+
}))[] | undefined;
|
|
5126
|
+
};
|
|
5127
|
+
}, {
|
|
5128
|
+
global: {
|
|
5129
|
+
languages?: ({
|
|
5130
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
5131
|
+
hidden?: boolean | undefined;
|
|
5132
|
+
} & ({
|
|
5133
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5134
|
+
} | {
|
|
5135
|
+
href: string;
|
|
5136
|
+
}))[] | undefined;
|
|
5137
|
+
versions?: ({
|
|
5138
|
+
version: string;
|
|
5139
|
+
hidden?: boolean | undefined;
|
|
5140
|
+
} & ({
|
|
5141
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5142
|
+
} | {
|
|
5143
|
+
href: string;
|
|
5144
|
+
}))[] | undefined;
|
|
5145
|
+
tabs?: ({
|
|
5146
|
+
tab: string;
|
|
3350
5147
|
icon?: string | {
|
|
3351
5148
|
name: string;
|
|
3352
5149
|
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
3353
5150
|
} | undefined;
|
|
3354
5151
|
hidden?: boolean | undefined;
|
|
3355
|
-
root?: string | undefined;
|
|
3356
5152
|
} & ({
|
|
3357
5153
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3358
5154
|
} | {
|
|
3359
|
-
|
|
3360
|
-
}))[];
|
|
3361
|
-
|
|
3362
|
-
|
|
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;
|
|
5155
|
+
href: string;
|
|
5156
|
+
}))[] | undefined;
|
|
5157
|
+
dropdowns?: ({
|
|
5158
|
+
dropdown: string;
|
|
3383
5159
|
icon?: string | {
|
|
3384
5160
|
name: string;
|
|
3385
5161
|
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
3386
5162
|
} | undefined;
|
|
3387
5163
|
hidden?: boolean | undefined;
|
|
3388
|
-
root?: string | undefined;
|
|
3389
5164
|
} & ({
|
|
3390
5165
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
3391
5166
|
} | {
|
|
3392
|
-
|
|
3393
|
-
}))[];
|
|
3394
|
-
|
|
3395
|
-
|
|
3396
|
-
|
|
3397
|
-
|
|
3398
|
-
|
|
3399
|
-
|
|
3400
|
-
|
|
3401
|
-
|
|
3402
|
-
|
|
3403
|
-
|
|
3404
|
-
|
|
3405
|
-
|
|
3406
|
-
|
|
3407
|
-
|
|
3408
|
-
|
|
3409
|
-
|
|
3410
|
-
|
|
3411
|
-
}
|
|
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
|
-
}>]>;
|
|
5167
|
+
href: string;
|
|
5168
|
+
}))[] | undefined;
|
|
5169
|
+
anchors?: ({
|
|
5170
|
+
anchor: string;
|
|
5171
|
+
icon?: string | {
|
|
5172
|
+
name: string;
|
|
5173
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
5174
|
+
} | undefined;
|
|
5175
|
+
color?: {
|
|
5176
|
+
light: string;
|
|
5177
|
+
dark: string;
|
|
5178
|
+
} | undefined;
|
|
5179
|
+
hidden?: boolean | undefined;
|
|
5180
|
+
} & ({
|
|
5181
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5182
|
+
} | {
|
|
5183
|
+
href: string;
|
|
5184
|
+
}))[] | undefined;
|
|
5185
|
+
};
|
|
5186
|
+
}>>>;
|
|
3500
5187
|
footer: z.ZodOptional<z.ZodObject<{
|
|
3501
5188
|
socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter"]>, z.ZodString>>;
|
|
3502
5189
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -3946,16 +5633,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3946
5633
|
key: string;
|
|
3947
5634
|
} | undefined;
|
|
3948
5635
|
}>>;
|
|
3949
|
-
legacy: z.ZodOptional<z.ZodObject<{
|
|
3950
|
-
baseurl: z.ZodOptional<z.ZodString>;
|
|
3951
|
-
auth: z.ZodOptional<z.ZodEnum<["basic", "bearer", "cobo", "key"]>>;
|
|
3952
|
-
}, "strip", z.ZodTypeAny, {
|
|
3953
|
-
baseurl?: string | undefined;
|
|
3954
|
-
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
3955
|
-
}, {
|
|
3956
|
-
baseurl?: string | undefined;
|
|
3957
|
-
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
3958
|
-
}>>;
|
|
3959
5636
|
theme: z.ZodLiteral<"quill">;
|
|
3960
5637
|
}, "strip", z.ZodTypeAny, {
|
|
3961
5638
|
name: string;
|
|
@@ -3966,7 +5643,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3966
5643
|
light?: string | undefined;
|
|
3967
5644
|
dark?: string | undefined;
|
|
3968
5645
|
};
|
|
3969
|
-
navigation: ({
|
|
5646
|
+
navigation: (({
|
|
3970
5647
|
languages: ({
|
|
3971
5648
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
3972
5649
|
hidden?: boolean | undefined;
|
|
@@ -4024,6 +5701,65 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4024
5701
|
} | {
|
|
4025
5702
|
pages: any[];
|
|
4026
5703
|
}) & ({
|
|
5704
|
+
global: {
|
|
5705
|
+
languages?: ({
|
|
5706
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
5707
|
+
hidden?: boolean | undefined;
|
|
5708
|
+
} & ({
|
|
5709
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5710
|
+
} | {
|
|
5711
|
+
href: string;
|
|
5712
|
+
}))[] | undefined;
|
|
5713
|
+
versions?: ({
|
|
5714
|
+
version: string;
|
|
5715
|
+
hidden?: boolean | undefined;
|
|
5716
|
+
} & ({
|
|
5717
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5718
|
+
} | {
|
|
5719
|
+
href: string;
|
|
5720
|
+
}))[] | undefined;
|
|
5721
|
+
tabs?: ({
|
|
5722
|
+
tab: string;
|
|
5723
|
+
icon?: string | {
|
|
5724
|
+
name: string;
|
|
5725
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
5726
|
+
} | undefined;
|
|
5727
|
+
hidden?: boolean | undefined;
|
|
5728
|
+
} & ({
|
|
5729
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5730
|
+
} | {
|
|
5731
|
+
href: string;
|
|
5732
|
+
}))[] | undefined;
|
|
5733
|
+
dropdowns?: ({
|
|
5734
|
+
dropdown: string;
|
|
5735
|
+
icon?: string | {
|
|
5736
|
+
name: string;
|
|
5737
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
5738
|
+
} | undefined;
|
|
5739
|
+
hidden?: boolean | undefined;
|
|
5740
|
+
} & ({
|
|
5741
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5742
|
+
} | {
|
|
5743
|
+
href: string;
|
|
5744
|
+
}))[] | undefined;
|
|
5745
|
+
anchors?: ({
|
|
5746
|
+
anchor: string;
|
|
5747
|
+
icon?: string | {
|
|
5748
|
+
name: string;
|
|
5749
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
5750
|
+
} | undefined;
|
|
5751
|
+
color?: {
|
|
5752
|
+
light: string;
|
|
5753
|
+
dark: string;
|
|
5754
|
+
} | undefined;
|
|
5755
|
+
hidden?: boolean | undefined;
|
|
5756
|
+
} & ({
|
|
5757
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5758
|
+
} | {
|
|
5759
|
+
href: string;
|
|
5760
|
+
}))[] | undefined;
|
|
5761
|
+
};
|
|
5762
|
+
} | undefined)) & ((({
|
|
4027
5763
|
languages: ({
|
|
4028
5764
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
4029
5765
|
hidden?: boolean | undefined;
|
|
@@ -4080,7 +5816,66 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4080
5816
|
}))[];
|
|
4081
5817
|
} | {
|
|
4082
5818
|
pages: any[];
|
|
4083
|
-
}
|
|
5819
|
+
}) & ({
|
|
5820
|
+
global: {
|
|
5821
|
+
languages?: ({
|
|
5822
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
5823
|
+
hidden?: boolean | undefined;
|
|
5824
|
+
} & ({
|
|
5825
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5826
|
+
} | {
|
|
5827
|
+
href: string;
|
|
5828
|
+
}))[] | undefined;
|
|
5829
|
+
versions?: ({
|
|
5830
|
+
version: string;
|
|
5831
|
+
hidden?: boolean | undefined;
|
|
5832
|
+
} & ({
|
|
5833
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5834
|
+
} | {
|
|
5835
|
+
href: string;
|
|
5836
|
+
}))[] | undefined;
|
|
5837
|
+
tabs?: ({
|
|
5838
|
+
tab: string;
|
|
5839
|
+
icon?: string | {
|
|
5840
|
+
name: string;
|
|
5841
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
5842
|
+
} | undefined;
|
|
5843
|
+
hidden?: boolean | undefined;
|
|
5844
|
+
} & ({
|
|
5845
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5846
|
+
} | {
|
|
5847
|
+
href: string;
|
|
5848
|
+
}))[] | undefined;
|
|
5849
|
+
dropdowns?: ({
|
|
5850
|
+
dropdown: string;
|
|
5851
|
+
icon?: string | {
|
|
5852
|
+
name: string;
|
|
5853
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
5854
|
+
} | undefined;
|
|
5855
|
+
hidden?: boolean | undefined;
|
|
5856
|
+
} & ({
|
|
5857
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5858
|
+
} | {
|
|
5859
|
+
href: string;
|
|
5860
|
+
}))[] | undefined;
|
|
5861
|
+
anchors?: ({
|
|
5862
|
+
anchor: string;
|
|
5863
|
+
icon?: string | {
|
|
5864
|
+
name: string;
|
|
5865
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
5866
|
+
} | undefined;
|
|
5867
|
+
color?: {
|
|
5868
|
+
light: string;
|
|
5869
|
+
dark: string;
|
|
5870
|
+
} | undefined;
|
|
5871
|
+
hidden?: boolean | undefined;
|
|
5872
|
+
} & ({
|
|
5873
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
5874
|
+
} | {
|
|
5875
|
+
href: string;
|
|
5876
|
+
}))[] | undefined;
|
|
5877
|
+
};
|
|
5878
|
+
} | undefined)) | undefined);
|
|
4084
5879
|
description?: string | undefined;
|
|
4085
5880
|
logo?: string | {
|
|
4086
5881
|
light: string;
|
|
@@ -4235,10 +6030,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4235
6030
|
key: string;
|
|
4236
6031
|
} | undefined;
|
|
4237
6032
|
} | undefined;
|
|
4238
|
-
legacy?: {
|
|
4239
|
-
baseurl?: string | undefined;
|
|
4240
|
-
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
4241
|
-
} | undefined;
|
|
4242
6033
|
}, {
|
|
4243
6034
|
name: string;
|
|
4244
6035
|
theme: "quill";
|
|
@@ -4247,7 +6038,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4247
6038
|
light?: string | undefined;
|
|
4248
6039
|
dark?: string | undefined;
|
|
4249
6040
|
};
|
|
4250
|
-
navigation: ({
|
|
6041
|
+
navigation: (({
|
|
4251
6042
|
languages: ({
|
|
4252
6043
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
4253
6044
|
hidden?: boolean | undefined;
|
|
@@ -4305,6 +6096,65 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4305
6096
|
} | {
|
|
4306
6097
|
pages: any[];
|
|
4307
6098
|
}) & ({
|
|
6099
|
+
global: {
|
|
6100
|
+
languages?: ({
|
|
6101
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
6102
|
+
hidden?: boolean | undefined;
|
|
6103
|
+
} & ({
|
|
6104
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
6105
|
+
} | {
|
|
6106
|
+
href: string;
|
|
6107
|
+
}))[] | undefined;
|
|
6108
|
+
versions?: ({
|
|
6109
|
+
version: string;
|
|
6110
|
+
hidden?: boolean | undefined;
|
|
6111
|
+
} & ({
|
|
6112
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
6113
|
+
} | {
|
|
6114
|
+
href: string;
|
|
6115
|
+
}))[] | undefined;
|
|
6116
|
+
tabs?: ({
|
|
6117
|
+
tab: string;
|
|
6118
|
+
icon?: string | {
|
|
6119
|
+
name: string;
|
|
6120
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
6121
|
+
} | undefined;
|
|
6122
|
+
hidden?: boolean | undefined;
|
|
6123
|
+
} & ({
|
|
6124
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
6125
|
+
} | {
|
|
6126
|
+
href: string;
|
|
6127
|
+
}))[] | undefined;
|
|
6128
|
+
dropdowns?: ({
|
|
6129
|
+
dropdown: string;
|
|
6130
|
+
icon?: string | {
|
|
6131
|
+
name: string;
|
|
6132
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
6133
|
+
} | undefined;
|
|
6134
|
+
hidden?: boolean | undefined;
|
|
6135
|
+
} & ({
|
|
6136
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
6137
|
+
} | {
|
|
6138
|
+
href: string;
|
|
6139
|
+
}))[] | undefined;
|
|
6140
|
+
anchors?: ({
|
|
6141
|
+
anchor: string;
|
|
6142
|
+
icon?: string | {
|
|
6143
|
+
name: string;
|
|
6144
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
6145
|
+
} | undefined;
|
|
6146
|
+
color?: {
|
|
6147
|
+
light: string;
|
|
6148
|
+
dark: string;
|
|
6149
|
+
} | undefined;
|
|
6150
|
+
hidden?: boolean | undefined;
|
|
6151
|
+
} & ({
|
|
6152
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
6153
|
+
} | {
|
|
6154
|
+
href: string;
|
|
6155
|
+
}))[] | undefined;
|
|
6156
|
+
};
|
|
6157
|
+
} | undefined)) & ((({
|
|
4308
6158
|
languages: ({
|
|
4309
6159
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
4310
6160
|
hidden?: boolean | undefined;
|
|
@@ -4361,7 +6211,66 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4361
6211
|
}))[];
|
|
4362
6212
|
} | {
|
|
4363
6213
|
pages: any[];
|
|
4364
|
-
}
|
|
6214
|
+
}) & ({
|
|
6215
|
+
global: {
|
|
6216
|
+
languages?: ({
|
|
6217
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
6218
|
+
hidden?: boolean | undefined;
|
|
6219
|
+
} & ({
|
|
6220
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
6221
|
+
} | {
|
|
6222
|
+
href: string;
|
|
6223
|
+
}))[] | undefined;
|
|
6224
|
+
versions?: ({
|
|
6225
|
+
version: string;
|
|
6226
|
+
hidden?: boolean | undefined;
|
|
6227
|
+
} & ({
|
|
6228
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
6229
|
+
} | {
|
|
6230
|
+
href: string;
|
|
6231
|
+
}))[] | undefined;
|
|
6232
|
+
tabs?: ({
|
|
6233
|
+
tab: string;
|
|
6234
|
+
icon?: string | {
|
|
6235
|
+
name: string;
|
|
6236
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
6237
|
+
} | undefined;
|
|
6238
|
+
hidden?: boolean | undefined;
|
|
6239
|
+
} & ({
|
|
6240
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
6241
|
+
} | {
|
|
6242
|
+
href: string;
|
|
6243
|
+
}))[] | undefined;
|
|
6244
|
+
dropdowns?: ({
|
|
6245
|
+
dropdown: string;
|
|
6246
|
+
icon?: string | {
|
|
6247
|
+
name: string;
|
|
6248
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
6249
|
+
} | undefined;
|
|
6250
|
+
hidden?: boolean | undefined;
|
|
6251
|
+
} & ({
|
|
6252
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
6253
|
+
} | {
|
|
6254
|
+
href: string;
|
|
6255
|
+
}))[] | undefined;
|
|
6256
|
+
anchors?: ({
|
|
6257
|
+
anchor: string;
|
|
6258
|
+
icon?: string | {
|
|
6259
|
+
name: string;
|
|
6260
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
6261
|
+
} | undefined;
|
|
6262
|
+
color?: {
|
|
6263
|
+
light: string;
|
|
6264
|
+
dark: string;
|
|
6265
|
+
} | undefined;
|
|
6266
|
+
hidden?: boolean | undefined;
|
|
6267
|
+
} & ({
|
|
6268
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
6269
|
+
} | {
|
|
6270
|
+
href: string;
|
|
6271
|
+
}))[] | undefined;
|
|
6272
|
+
};
|
|
6273
|
+
} | undefined)) | undefined);
|
|
4365
6274
|
$schema?: string | undefined;
|
|
4366
6275
|
description?: string | undefined;
|
|
4367
6276
|
logo?: string | {
|
|
@@ -4517,10 +6426,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4517
6426
|
key: string;
|
|
4518
6427
|
} | undefined;
|
|
4519
6428
|
} | undefined;
|
|
4520
|
-
legacy?: {
|
|
4521
|
-
baseurl?: string | undefined;
|
|
4522
|
-
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
4523
|
-
} | undefined;
|
|
4524
6429
|
}>, z.ZodObject<{
|
|
4525
6430
|
$schema: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
4526
6431
|
name: z.ZodString;
|
|
@@ -4710,7 +6615,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4710
6615
|
href: string;
|
|
4711
6616
|
} | undefined;
|
|
4712
6617
|
}>>;
|
|
4713
|
-
navigation: z.ZodUnion<[z.ZodObject<{
|
|
6618
|
+
navigation: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
4714
6619
|
languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
4715
6620
|
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
4716
6621
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5000,10 +6905,427 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5000
6905
|
}>, z.ZodObject<{
|
|
5001
6906
|
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
5002
6907
|
}, "strip", z.ZodTypeAny, {
|
|
5003
|
-
pages: any[];
|
|
6908
|
+
pages: any[];
|
|
6909
|
+
}, {
|
|
6910
|
+
pages: any[];
|
|
6911
|
+
}>]>, z.ZodOptional<z.ZodObject<{
|
|
6912
|
+
global: z.ZodObject<{
|
|
6913
|
+
languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
6914
|
+
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
6915
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
6916
|
+
}, "strip", z.ZodTypeAny, {
|
|
6917
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
6918
|
+
hidden?: boolean | undefined;
|
|
6919
|
+
}, {
|
|
6920
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
6921
|
+
hidden?: boolean | undefined;
|
|
6922
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
6923
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
6924
|
+
}, "strip", z.ZodTypeAny, {
|
|
6925
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
6926
|
+
}, {
|
|
6927
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
6928
|
+
}>, z.ZodObject<{
|
|
6929
|
+
href: z.ZodString;
|
|
6930
|
+
}, "strip", z.ZodTypeAny, {
|
|
6931
|
+
href: string;
|
|
6932
|
+
}, {
|
|
6933
|
+
href: string;
|
|
6934
|
+
}>]>>, "many">>;
|
|
6935
|
+
versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
6936
|
+
version: z.ZodString;
|
|
6937
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
6938
|
+
}, "strip", z.ZodTypeAny, {
|
|
6939
|
+
version: string;
|
|
6940
|
+
hidden?: boolean | undefined;
|
|
6941
|
+
}, {
|
|
6942
|
+
version: string;
|
|
6943
|
+
hidden?: boolean | undefined;
|
|
6944
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
6945
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
6946
|
+
}, "strip", z.ZodTypeAny, {
|
|
6947
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
6948
|
+
}, {
|
|
6949
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
6950
|
+
}>, z.ZodObject<{
|
|
6951
|
+
href: z.ZodString;
|
|
6952
|
+
}, "strip", z.ZodTypeAny, {
|
|
6953
|
+
href: string;
|
|
6954
|
+
}, {
|
|
6955
|
+
href: string;
|
|
6956
|
+
}>]>>, "many">>;
|
|
6957
|
+
tabs: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
6958
|
+
tab: z.ZodString;
|
|
6959
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
6960
|
+
style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
|
|
6961
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
6962
|
+
}, "strip", z.ZodTypeAny, {
|
|
6963
|
+
name: string;
|
|
6964
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
6965
|
+
}, {
|
|
6966
|
+
name: string;
|
|
6967
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
6968
|
+
}>]>>;
|
|
6969
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
6970
|
+
}, "strip", z.ZodTypeAny, {
|
|
6971
|
+
tab: string;
|
|
6972
|
+
icon?: string | {
|
|
6973
|
+
name: string;
|
|
6974
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
6975
|
+
} | undefined;
|
|
6976
|
+
hidden?: boolean | undefined;
|
|
6977
|
+
}, {
|
|
6978
|
+
tab: string;
|
|
6979
|
+
icon?: string | {
|
|
6980
|
+
name: string;
|
|
6981
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
6982
|
+
} | undefined;
|
|
6983
|
+
hidden?: boolean | undefined;
|
|
6984
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
6985
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
6986
|
+
}, "strip", z.ZodTypeAny, {
|
|
6987
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
6988
|
+
}, {
|
|
6989
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
6990
|
+
}>, z.ZodObject<{
|
|
6991
|
+
href: z.ZodString;
|
|
6992
|
+
}, "strip", z.ZodTypeAny, {
|
|
6993
|
+
href: string;
|
|
6994
|
+
}, {
|
|
6995
|
+
href: string;
|
|
6996
|
+
}>]>>, "many">>;
|
|
6997
|
+
dropdowns: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
6998
|
+
dropdown: z.ZodString;
|
|
6999
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
7000
|
+
style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
|
|
7001
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
7002
|
+
}, "strip", z.ZodTypeAny, {
|
|
7003
|
+
name: string;
|
|
7004
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7005
|
+
}, {
|
|
7006
|
+
name: string;
|
|
7007
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7008
|
+
}>]>>;
|
|
7009
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
7010
|
+
}, "strip", z.ZodTypeAny, {
|
|
7011
|
+
dropdown: string;
|
|
7012
|
+
icon?: string | {
|
|
7013
|
+
name: string;
|
|
7014
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7015
|
+
} | undefined;
|
|
7016
|
+
hidden?: boolean | undefined;
|
|
7017
|
+
}, {
|
|
7018
|
+
dropdown: string;
|
|
7019
|
+
icon?: string | {
|
|
7020
|
+
name: string;
|
|
7021
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7022
|
+
} | undefined;
|
|
7023
|
+
hidden?: boolean | undefined;
|
|
7024
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
7025
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
7026
|
+
}, "strip", z.ZodTypeAny, {
|
|
7027
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7028
|
+
}, {
|
|
7029
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7030
|
+
}>, z.ZodObject<{
|
|
7031
|
+
href: z.ZodString;
|
|
7032
|
+
}, "strip", z.ZodTypeAny, {
|
|
7033
|
+
href: string;
|
|
7034
|
+
}, {
|
|
7035
|
+
href: string;
|
|
7036
|
+
}>]>>, "many">>;
|
|
7037
|
+
anchors: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
7038
|
+
anchor: z.ZodString;
|
|
7039
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
7040
|
+
style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
|
|
7041
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
7042
|
+
}, "strip", z.ZodTypeAny, {
|
|
7043
|
+
name: string;
|
|
7044
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7045
|
+
}, {
|
|
7046
|
+
name: string;
|
|
7047
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7048
|
+
}>]>>;
|
|
7049
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
7050
|
+
light: z.ZodString;
|
|
7051
|
+
dark: z.ZodString;
|
|
7052
|
+
}, "strict", z.ZodTypeAny, {
|
|
7053
|
+
light: string;
|
|
7054
|
+
dark: string;
|
|
7055
|
+
}, {
|
|
7056
|
+
light: string;
|
|
7057
|
+
dark: string;
|
|
7058
|
+
}>>;
|
|
7059
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
7060
|
+
}, "strip", z.ZodTypeAny, {
|
|
7061
|
+
anchor: string;
|
|
7062
|
+
icon?: string | {
|
|
7063
|
+
name: string;
|
|
7064
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7065
|
+
} | undefined;
|
|
7066
|
+
color?: {
|
|
7067
|
+
light: string;
|
|
7068
|
+
dark: string;
|
|
7069
|
+
} | undefined;
|
|
7070
|
+
hidden?: boolean | undefined;
|
|
7071
|
+
}, {
|
|
7072
|
+
anchor: 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
|
+
color?: {
|
|
7078
|
+
light: string;
|
|
7079
|
+
dark: string;
|
|
7080
|
+
} | undefined;
|
|
7081
|
+
hidden?: boolean | undefined;
|
|
7082
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
7083
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
7084
|
+
}, "strip", z.ZodTypeAny, {
|
|
7085
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7086
|
+
}, {
|
|
7087
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7088
|
+
}>, z.ZodObject<{
|
|
7089
|
+
href: z.ZodString;
|
|
7090
|
+
}, "strip", z.ZodTypeAny, {
|
|
7091
|
+
href: string;
|
|
7092
|
+
}, {
|
|
7093
|
+
href: string;
|
|
7094
|
+
}>]>>, "many">>;
|
|
7095
|
+
}, "strict", z.ZodTypeAny, {
|
|
7096
|
+
languages?: ({
|
|
7097
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
7098
|
+
hidden?: boolean | undefined;
|
|
7099
|
+
} & ({
|
|
7100
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7101
|
+
} | {
|
|
7102
|
+
href: string;
|
|
7103
|
+
}))[] | undefined;
|
|
7104
|
+
versions?: ({
|
|
7105
|
+
version: string;
|
|
7106
|
+
hidden?: boolean | undefined;
|
|
7107
|
+
} & ({
|
|
7108
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7109
|
+
} | {
|
|
7110
|
+
href: string;
|
|
7111
|
+
}))[] | undefined;
|
|
7112
|
+
tabs?: ({
|
|
7113
|
+
tab: string;
|
|
7114
|
+
icon?: string | {
|
|
7115
|
+
name: string;
|
|
7116
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7117
|
+
} | undefined;
|
|
7118
|
+
hidden?: boolean | undefined;
|
|
7119
|
+
} & ({
|
|
7120
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7121
|
+
} | {
|
|
7122
|
+
href: string;
|
|
7123
|
+
}))[] | undefined;
|
|
7124
|
+
dropdowns?: ({
|
|
7125
|
+
dropdown: string;
|
|
7126
|
+
icon?: string | {
|
|
7127
|
+
name: string;
|
|
7128
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7129
|
+
} | undefined;
|
|
7130
|
+
hidden?: boolean | undefined;
|
|
7131
|
+
} & ({
|
|
7132
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7133
|
+
} | {
|
|
7134
|
+
href: string;
|
|
7135
|
+
}))[] | undefined;
|
|
7136
|
+
anchors?: ({
|
|
7137
|
+
anchor: string;
|
|
7138
|
+
icon?: string | {
|
|
7139
|
+
name: string;
|
|
7140
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7141
|
+
} | undefined;
|
|
7142
|
+
color?: {
|
|
7143
|
+
light: string;
|
|
7144
|
+
dark: string;
|
|
7145
|
+
} | undefined;
|
|
7146
|
+
hidden?: boolean | undefined;
|
|
7147
|
+
} & ({
|
|
7148
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7149
|
+
} | {
|
|
7150
|
+
href: string;
|
|
7151
|
+
}))[] | undefined;
|
|
7152
|
+
}, {
|
|
7153
|
+
languages?: ({
|
|
7154
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
7155
|
+
hidden?: boolean | undefined;
|
|
7156
|
+
} & ({
|
|
7157
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7158
|
+
} | {
|
|
7159
|
+
href: string;
|
|
7160
|
+
}))[] | undefined;
|
|
7161
|
+
versions?: ({
|
|
7162
|
+
version: string;
|
|
7163
|
+
hidden?: boolean | undefined;
|
|
7164
|
+
} & ({
|
|
7165
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7166
|
+
} | {
|
|
7167
|
+
href: string;
|
|
7168
|
+
}))[] | undefined;
|
|
7169
|
+
tabs?: ({
|
|
7170
|
+
tab: string;
|
|
7171
|
+
icon?: string | {
|
|
7172
|
+
name: string;
|
|
7173
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7174
|
+
} | undefined;
|
|
7175
|
+
hidden?: boolean | undefined;
|
|
7176
|
+
} & ({
|
|
7177
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7178
|
+
} | {
|
|
7179
|
+
href: string;
|
|
7180
|
+
}))[] | undefined;
|
|
7181
|
+
dropdowns?: ({
|
|
7182
|
+
dropdown: string;
|
|
7183
|
+
icon?: string | {
|
|
7184
|
+
name: string;
|
|
7185
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7186
|
+
} | undefined;
|
|
7187
|
+
hidden?: boolean | undefined;
|
|
7188
|
+
} & ({
|
|
7189
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7190
|
+
} | {
|
|
7191
|
+
href: string;
|
|
7192
|
+
}))[] | undefined;
|
|
7193
|
+
anchors?: ({
|
|
7194
|
+
anchor: string;
|
|
7195
|
+
icon?: string | {
|
|
7196
|
+
name: string;
|
|
7197
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7198
|
+
} | undefined;
|
|
7199
|
+
color?: {
|
|
7200
|
+
light: string;
|
|
7201
|
+
dark: string;
|
|
7202
|
+
} | undefined;
|
|
7203
|
+
hidden?: boolean | undefined;
|
|
7204
|
+
} & ({
|
|
7205
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7206
|
+
} | {
|
|
7207
|
+
href: string;
|
|
7208
|
+
}))[] | undefined;
|
|
7209
|
+
}>;
|
|
7210
|
+
}, "strip", z.ZodTypeAny, {
|
|
7211
|
+
global: {
|
|
7212
|
+
languages?: ({
|
|
7213
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
7214
|
+
hidden?: boolean | undefined;
|
|
7215
|
+
} & ({
|
|
7216
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7217
|
+
} | {
|
|
7218
|
+
href: string;
|
|
7219
|
+
}))[] | undefined;
|
|
7220
|
+
versions?: ({
|
|
7221
|
+
version: string;
|
|
7222
|
+
hidden?: boolean | undefined;
|
|
7223
|
+
} & ({
|
|
7224
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7225
|
+
} | {
|
|
7226
|
+
href: string;
|
|
7227
|
+
}))[] | undefined;
|
|
7228
|
+
tabs?: ({
|
|
7229
|
+
tab: string;
|
|
7230
|
+
icon?: string | {
|
|
7231
|
+
name: string;
|
|
7232
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7233
|
+
} | undefined;
|
|
7234
|
+
hidden?: boolean | undefined;
|
|
7235
|
+
} & ({
|
|
7236
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7237
|
+
} | {
|
|
7238
|
+
href: string;
|
|
7239
|
+
}))[] | undefined;
|
|
7240
|
+
dropdowns?: ({
|
|
7241
|
+
dropdown: string;
|
|
7242
|
+
icon?: string | {
|
|
7243
|
+
name: string;
|
|
7244
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7245
|
+
} | undefined;
|
|
7246
|
+
hidden?: boolean | undefined;
|
|
7247
|
+
} & ({
|
|
7248
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7249
|
+
} | {
|
|
7250
|
+
href: string;
|
|
7251
|
+
}))[] | undefined;
|
|
7252
|
+
anchors?: ({
|
|
7253
|
+
anchor: string;
|
|
7254
|
+
icon?: string | {
|
|
7255
|
+
name: string;
|
|
7256
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7257
|
+
} | undefined;
|
|
7258
|
+
color?: {
|
|
7259
|
+
light: string;
|
|
7260
|
+
dark: string;
|
|
7261
|
+
} | undefined;
|
|
7262
|
+
hidden?: boolean | undefined;
|
|
7263
|
+
} & ({
|
|
7264
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7265
|
+
} | {
|
|
7266
|
+
href: string;
|
|
7267
|
+
}))[] | undefined;
|
|
7268
|
+
};
|
|
5004
7269
|
}, {
|
|
5005
|
-
|
|
5006
|
-
|
|
7270
|
+
global: {
|
|
7271
|
+
languages?: ({
|
|
7272
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
7273
|
+
hidden?: boolean | undefined;
|
|
7274
|
+
} & ({
|
|
7275
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7276
|
+
} | {
|
|
7277
|
+
href: string;
|
|
7278
|
+
}))[] | undefined;
|
|
7279
|
+
versions?: ({
|
|
7280
|
+
version: string;
|
|
7281
|
+
hidden?: boolean | undefined;
|
|
7282
|
+
} & ({
|
|
7283
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7284
|
+
} | {
|
|
7285
|
+
href: string;
|
|
7286
|
+
}))[] | undefined;
|
|
7287
|
+
tabs?: ({
|
|
7288
|
+
tab: string;
|
|
7289
|
+
icon?: string | {
|
|
7290
|
+
name: string;
|
|
7291
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7292
|
+
} | undefined;
|
|
7293
|
+
hidden?: boolean | undefined;
|
|
7294
|
+
} & ({
|
|
7295
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7296
|
+
} | {
|
|
7297
|
+
href: string;
|
|
7298
|
+
}))[] | undefined;
|
|
7299
|
+
dropdowns?: ({
|
|
7300
|
+
dropdown: string;
|
|
7301
|
+
icon?: string | {
|
|
7302
|
+
name: string;
|
|
7303
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7304
|
+
} | undefined;
|
|
7305
|
+
hidden?: boolean | undefined;
|
|
7306
|
+
} & ({
|
|
7307
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7308
|
+
} | {
|
|
7309
|
+
href: string;
|
|
7310
|
+
}))[] | undefined;
|
|
7311
|
+
anchors?: ({
|
|
7312
|
+
anchor: string;
|
|
7313
|
+
icon?: string | {
|
|
7314
|
+
name: string;
|
|
7315
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7316
|
+
} | undefined;
|
|
7317
|
+
color?: {
|
|
7318
|
+
light: string;
|
|
7319
|
+
dark: string;
|
|
7320
|
+
} | undefined;
|
|
7321
|
+
hidden?: boolean | undefined;
|
|
7322
|
+
} & ({
|
|
7323
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7324
|
+
} | {
|
|
7325
|
+
href: string;
|
|
7326
|
+
}))[] | undefined;
|
|
7327
|
+
};
|
|
7328
|
+
}>>>;
|
|
5007
7329
|
footer: z.ZodOptional<z.ZodObject<{
|
|
5008
7330
|
socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter"]>, z.ZodString>>;
|
|
5009
7331
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -5453,16 +7775,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5453
7775
|
key: string;
|
|
5454
7776
|
} | undefined;
|
|
5455
7777
|
}>>;
|
|
5456
|
-
legacy: z.ZodOptional<z.ZodObject<{
|
|
5457
|
-
baseurl: z.ZodOptional<z.ZodString>;
|
|
5458
|
-
auth: z.ZodOptional<z.ZodEnum<["basic", "bearer", "cobo", "key"]>>;
|
|
5459
|
-
}, "strip", z.ZodTypeAny, {
|
|
5460
|
-
baseurl?: string | undefined;
|
|
5461
|
-
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
5462
|
-
}, {
|
|
5463
|
-
baseurl?: string | undefined;
|
|
5464
|
-
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
5465
|
-
}>>;
|
|
5466
7778
|
theme: z.ZodLiteral<"venus">;
|
|
5467
7779
|
}, "strip", z.ZodTypeAny, {
|
|
5468
7780
|
name: string;
|
|
@@ -5473,7 +7785,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5473
7785
|
light?: string | undefined;
|
|
5474
7786
|
dark?: string | undefined;
|
|
5475
7787
|
};
|
|
5476
|
-
navigation: ({
|
|
7788
|
+
navigation: (({
|
|
5477
7789
|
languages: ({
|
|
5478
7790
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
5479
7791
|
hidden?: boolean | undefined;
|
|
@@ -5531,6 +7843,65 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5531
7843
|
} | {
|
|
5532
7844
|
pages: any[];
|
|
5533
7845
|
}) & ({
|
|
7846
|
+
global: {
|
|
7847
|
+
languages?: ({
|
|
7848
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
7849
|
+
hidden?: boolean | undefined;
|
|
7850
|
+
} & ({
|
|
7851
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7852
|
+
} | {
|
|
7853
|
+
href: string;
|
|
7854
|
+
}))[] | undefined;
|
|
7855
|
+
versions?: ({
|
|
7856
|
+
version: string;
|
|
7857
|
+
hidden?: boolean | undefined;
|
|
7858
|
+
} & ({
|
|
7859
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7860
|
+
} | {
|
|
7861
|
+
href: string;
|
|
7862
|
+
}))[] | undefined;
|
|
7863
|
+
tabs?: ({
|
|
7864
|
+
tab: string;
|
|
7865
|
+
icon?: string | {
|
|
7866
|
+
name: string;
|
|
7867
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7868
|
+
} | undefined;
|
|
7869
|
+
hidden?: boolean | undefined;
|
|
7870
|
+
} & ({
|
|
7871
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7872
|
+
} | {
|
|
7873
|
+
href: string;
|
|
7874
|
+
}))[] | undefined;
|
|
7875
|
+
dropdowns?: ({
|
|
7876
|
+
dropdown: string;
|
|
7877
|
+
icon?: string | {
|
|
7878
|
+
name: string;
|
|
7879
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7880
|
+
} | undefined;
|
|
7881
|
+
hidden?: boolean | undefined;
|
|
7882
|
+
} & ({
|
|
7883
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7884
|
+
} | {
|
|
7885
|
+
href: string;
|
|
7886
|
+
}))[] | undefined;
|
|
7887
|
+
anchors?: ({
|
|
7888
|
+
anchor: string;
|
|
7889
|
+
icon?: string | {
|
|
7890
|
+
name: string;
|
|
7891
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7892
|
+
} | undefined;
|
|
7893
|
+
color?: {
|
|
7894
|
+
light: string;
|
|
7895
|
+
dark: string;
|
|
7896
|
+
} | undefined;
|
|
7897
|
+
hidden?: boolean | undefined;
|
|
7898
|
+
} & ({
|
|
7899
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7900
|
+
} | {
|
|
7901
|
+
href: string;
|
|
7902
|
+
}))[] | undefined;
|
|
7903
|
+
};
|
|
7904
|
+
} | undefined)) & ((({
|
|
5534
7905
|
languages: ({
|
|
5535
7906
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
5536
7907
|
hidden?: boolean | undefined;
|
|
@@ -5587,7 +7958,66 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5587
7958
|
}))[];
|
|
5588
7959
|
} | {
|
|
5589
7960
|
pages: any[];
|
|
5590
|
-
}
|
|
7961
|
+
}) & ({
|
|
7962
|
+
global: {
|
|
7963
|
+
languages?: ({
|
|
7964
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
7965
|
+
hidden?: boolean | undefined;
|
|
7966
|
+
} & ({
|
|
7967
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7968
|
+
} | {
|
|
7969
|
+
href: string;
|
|
7970
|
+
}))[] | undefined;
|
|
7971
|
+
versions?: ({
|
|
7972
|
+
version: string;
|
|
7973
|
+
hidden?: boolean | undefined;
|
|
7974
|
+
} & ({
|
|
7975
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7976
|
+
} | {
|
|
7977
|
+
href: string;
|
|
7978
|
+
}))[] | undefined;
|
|
7979
|
+
tabs?: ({
|
|
7980
|
+
tab: string;
|
|
7981
|
+
icon?: string | {
|
|
7982
|
+
name: string;
|
|
7983
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7984
|
+
} | undefined;
|
|
7985
|
+
hidden?: boolean | undefined;
|
|
7986
|
+
} & ({
|
|
7987
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
7988
|
+
} | {
|
|
7989
|
+
href: string;
|
|
7990
|
+
}))[] | undefined;
|
|
7991
|
+
dropdowns?: ({
|
|
7992
|
+
dropdown: string;
|
|
7993
|
+
icon?: string | {
|
|
7994
|
+
name: string;
|
|
7995
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
7996
|
+
} | undefined;
|
|
7997
|
+
hidden?: boolean | undefined;
|
|
7998
|
+
} & ({
|
|
7999
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
8000
|
+
} | {
|
|
8001
|
+
href: string;
|
|
8002
|
+
}))[] | undefined;
|
|
8003
|
+
anchors?: ({
|
|
8004
|
+
anchor: string;
|
|
8005
|
+
icon?: string | {
|
|
8006
|
+
name: string;
|
|
8007
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
8008
|
+
} | undefined;
|
|
8009
|
+
color?: {
|
|
8010
|
+
light: string;
|
|
8011
|
+
dark: string;
|
|
8012
|
+
} | undefined;
|
|
8013
|
+
hidden?: boolean | undefined;
|
|
8014
|
+
} & ({
|
|
8015
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
8016
|
+
} | {
|
|
8017
|
+
href: string;
|
|
8018
|
+
}))[] | undefined;
|
|
8019
|
+
};
|
|
8020
|
+
} | undefined)) | undefined);
|
|
5591
8021
|
description?: string | undefined;
|
|
5592
8022
|
logo?: string | {
|
|
5593
8023
|
light: string;
|
|
@@ -5742,10 +8172,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5742
8172
|
key: string;
|
|
5743
8173
|
} | undefined;
|
|
5744
8174
|
} | undefined;
|
|
5745
|
-
legacy?: {
|
|
5746
|
-
baseurl?: string | undefined;
|
|
5747
|
-
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
5748
|
-
} | undefined;
|
|
5749
8175
|
}, {
|
|
5750
8176
|
name: string;
|
|
5751
8177
|
theme: "venus";
|
|
@@ -5754,7 +8180,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5754
8180
|
light?: string | undefined;
|
|
5755
8181
|
dark?: string | undefined;
|
|
5756
8182
|
};
|
|
5757
|
-
navigation: ({
|
|
8183
|
+
navigation: (({
|
|
5758
8184
|
languages: ({
|
|
5759
8185
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
5760
8186
|
hidden?: boolean | undefined;
|
|
@@ -5812,6 +8238,65 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5812
8238
|
} | {
|
|
5813
8239
|
pages: any[];
|
|
5814
8240
|
}) & ({
|
|
8241
|
+
global: {
|
|
8242
|
+
languages?: ({
|
|
8243
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
8244
|
+
hidden?: boolean | undefined;
|
|
8245
|
+
} & ({
|
|
8246
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
8247
|
+
} | {
|
|
8248
|
+
href: string;
|
|
8249
|
+
}))[] | undefined;
|
|
8250
|
+
versions?: ({
|
|
8251
|
+
version: string;
|
|
8252
|
+
hidden?: boolean | undefined;
|
|
8253
|
+
} & ({
|
|
8254
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
8255
|
+
} | {
|
|
8256
|
+
href: string;
|
|
8257
|
+
}))[] | undefined;
|
|
8258
|
+
tabs?: ({
|
|
8259
|
+
tab: string;
|
|
8260
|
+
icon?: string | {
|
|
8261
|
+
name: string;
|
|
8262
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
8263
|
+
} | undefined;
|
|
8264
|
+
hidden?: boolean | undefined;
|
|
8265
|
+
} & ({
|
|
8266
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
8267
|
+
} | {
|
|
8268
|
+
href: string;
|
|
8269
|
+
}))[] | undefined;
|
|
8270
|
+
dropdowns?: ({
|
|
8271
|
+
dropdown: string;
|
|
8272
|
+
icon?: string | {
|
|
8273
|
+
name: string;
|
|
8274
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
8275
|
+
} | undefined;
|
|
8276
|
+
hidden?: boolean | undefined;
|
|
8277
|
+
} & ({
|
|
8278
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
8279
|
+
} | {
|
|
8280
|
+
href: string;
|
|
8281
|
+
}))[] | undefined;
|
|
8282
|
+
anchors?: ({
|
|
8283
|
+
anchor: string;
|
|
8284
|
+
icon?: string | {
|
|
8285
|
+
name: string;
|
|
8286
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
8287
|
+
} | undefined;
|
|
8288
|
+
color?: {
|
|
8289
|
+
light: string;
|
|
8290
|
+
dark: string;
|
|
8291
|
+
} | undefined;
|
|
8292
|
+
hidden?: boolean | undefined;
|
|
8293
|
+
} & ({
|
|
8294
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
8295
|
+
} | {
|
|
8296
|
+
href: string;
|
|
8297
|
+
}))[] | undefined;
|
|
8298
|
+
};
|
|
8299
|
+
} | undefined)) & ((({
|
|
5815
8300
|
languages: ({
|
|
5816
8301
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
5817
8302
|
hidden?: boolean | undefined;
|
|
@@ -5868,7 +8353,66 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5868
8353
|
}))[];
|
|
5869
8354
|
} | {
|
|
5870
8355
|
pages: any[];
|
|
5871
|
-
}
|
|
8356
|
+
}) & ({
|
|
8357
|
+
global: {
|
|
8358
|
+
languages?: ({
|
|
8359
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
8360
|
+
hidden?: boolean | undefined;
|
|
8361
|
+
} & ({
|
|
8362
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
8363
|
+
} | {
|
|
8364
|
+
href: string;
|
|
8365
|
+
}))[] | undefined;
|
|
8366
|
+
versions?: ({
|
|
8367
|
+
version: string;
|
|
8368
|
+
hidden?: boolean | undefined;
|
|
8369
|
+
} & ({
|
|
8370
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
8371
|
+
} | {
|
|
8372
|
+
href: string;
|
|
8373
|
+
}))[] | undefined;
|
|
8374
|
+
tabs?: ({
|
|
8375
|
+
tab: string;
|
|
8376
|
+
icon?: string | {
|
|
8377
|
+
name: string;
|
|
8378
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
8379
|
+
} | undefined;
|
|
8380
|
+
hidden?: boolean | undefined;
|
|
8381
|
+
} & ({
|
|
8382
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
8383
|
+
} | {
|
|
8384
|
+
href: string;
|
|
8385
|
+
}))[] | undefined;
|
|
8386
|
+
dropdowns?: ({
|
|
8387
|
+
dropdown: string;
|
|
8388
|
+
icon?: string | {
|
|
8389
|
+
name: string;
|
|
8390
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
8391
|
+
} | undefined;
|
|
8392
|
+
hidden?: boolean | undefined;
|
|
8393
|
+
} & ({
|
|
8394
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
8395
|
+
} | {
|
|
8396
|
+
href: string;
|
|
8397
|
+
}))[] | undefined;
|
|
8398
|
+
anchors?: ({
|
|
8399
|
+
anchor: string;
|
|
8400
|
+
icon?: string | {
|
|
8401
|
+
name: string;
|
|
8402
|
+
style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
|
|
8403
|
+
} | undefined;
|
|
8404
|
+
color?: {
|
|
8405
|
+
light: string;
|
|
8406
|
+
dark: string;
|
|
8407
|
+
} | undefined;
|
|
8408
|
+
hidden?: boolean | undefined;
|
|
8409
|
+
} & ({
|
|
8410
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
8411
|
+
} | {
|
|
8412
|
+
href: string;
|
|
8413
|
+
}))[] | undefined;
|
|
8414
|
+
};
|
|
8415
|
+
} | undefined)) | undefined);
|
|
5872
8416
|
$schema?: string | undefined;
|
|
5873
8417
|
description?: string | undefined;
|
|
5874
8418
|
logo?: string | {
|
|
@@ -6024,8 +8568,4 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6024
8568
|
key: string;
|
|
6025
8569
|
} | undefined;
|
|
6026
8570
|
} | undefined;
|
|
6027
|
-
legacy?: {
|
|
6028
|
-
baseurl?: string | undefined;
|
|
6029
|
-
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
6030
|
-
} | undefined;
|
|
6031
8571
|
}>]>;
|