@mintlify/validation 0.1.352 → 0.1.354
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 +1730 -0
- package/dist/mint-config/schemas/v2/index.js +2 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +1732 -0
- package/dist/mint-config/schemas/v2/themes/almond.js +4 -0
- package/dist/mint-config/schemas/v2/themes/themes.d.ts +2 -2
- package/dist/mint-config/schemas/v2/themes/themes.js +1 -1
- package/dist/mint-config/validateConfig.d.ts +655 -9
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/serverStaticProps.d.ts +1 -0
- package/package.json +2 -2
|
@@ -8651,4 +8651,1734 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8651
8651
|
contextual?: {
|
|
8652
8652
|
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
8653
8653
|
} | undefined;
|
|
8654
|
+
}>, z.ZodObject<{
|
|
8655
|
+
$schema: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
8656
|
+
name: z.ZodString;
|
|
8657
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8658
|
+
colors: z.ZodObject<{
|
|
8659
|
+
primary: z.ZodString;
|
|
8660
|
+
light: z.ZodOptional<z.ZodString>;
|
|
8661
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
8662
|
+
}, "strict", z.ZodTypeAny, {
|
|
8663
|
+
primary: string;
|
|
8664
|
+
light?: string | undefined;
|
|
8665
|
+
dark?: string | undefined;
|
|
8666
|
+
}, {
|
|
8667
|
+
primary: string;
|
|
8668
|
+
light?: string | undefined;
|
|
8669
|
+
dark?: string | undefined;
|
|
8670
|
+
}>;
|
|
8671
|
+
logo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
8672
|
+
light: z.ZodString;
|
|
8673
|
+
dark: z.ZodString;
|
|
8674
|
+
href: z.ZodOptional<z.ZodString>;
|
|
8675
|
+
}, "strip", z.ZodTypeAny, {
|
|
8676
|
+
light: string;
|
|
8677
|
+
dark: string;
|
|
8678
|
+
href?: string | undefined;
|
|
8679
|
+
}, {
|
|
8680
|
+
light: string;
|
|
8681
|
+
dark: string;
|
|
8682
|
+
href?: string | undefined;
|
|
8683
|
+
}>]>>;
|
|
8684
|
+
favicon: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
8685
|
+
light: z.ZodString;
|
|
8686
|
+
dark: z.ZodString;
|
|
8687
|
+
}, "strip", z.ZodTypeAny, {
|
|
8688
|
+
light: string;
|
|
8689
|
+
dark: string;
|
|
8690
|
+
}, {
|
|
8691
|
+
light: string;
|
|
8692
|
+
dark: string;
|
|
8693
|
+
}>]>>;
|
|
8694
|
+
api: z.ZodOptional<z.ZodObject<{
|
|
8695
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
8696
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
8697
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
8698
|
+
}, "strict", z.ZodTypeAny, {
|
|
8699
|
+
source: string;
|
|
8700
|
+
directory?: string | undefined;
|
|
8701
|
+
}, {
|
|
8702
|
+
source: string;
|
|
8703
|
+
directory?: string | undefined;
|
|
8704
|
+
}>]>>;
|
|
8705
|
+
asyncapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
8706
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
8707
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
8708
|
+
}, "strict", z.ZodTypeAny, {
|
|
8709
|
+
source: string;
|
|
8710
|
+
directory?: string | undefined;
|
|
8711
|
+
}, {
|
|
8712
|
+
source: string;
|
|
8713
|
+
directory?: string | undefined;
|
|
8714
|
+
}>]>>;
|
|
8715
|
+
playground: z.ZodOptional<z.ZodObject<{
|
|
8716
|
+
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
|
|
8717
|
+
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
8718
|
+
}, "strip", z.ZodTypeAny, {
|
|
8719
|
+
display?: "simple" | "none" | "interactive" | undefined;
|
|
8720
|
+
proxy?: boolean | undefined;
|
|
8721
|
+
}, {
|
|
8722
|
+
display?: "simple" | "none" | "interactive" | undefined;
|
|
8723
|
+
proxy?: boolean | undefined;
|
|
8724
|
+
}>>;
|
|
8725
|
+
examples: z.ZodOptional<z.ZodObject<{
|
|
8726
|
+
defaults: z.ZodOptional<z.ZodEnum<["required", "all"]>>;
|
|
8727
|
+
languages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8728
|
+
}, "strip", z.ZodTypeAny, {
|
|
8729
|
+
defaults?: "all" | "required" | undefined;
|
|
8730
|
+
languages?: string[] | undefined;
|
|
8731
|
+
}, {
|
|
8732
|
+
defaults?: "all" | "required" | undefined;
|
|
8733
|
+
languages?: string[] | undefined;
|
|
8734
|
+
}>>;
|
|
8735
|
+
mdx: z.ZodOptional<z.ZodObject<{
|
|
8736
|
+
auth: z.ZodOptional<z.ZodObject<{
|
|
8737
|
+
method: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
|
|
8738
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8739
|
+
}, "strip", z.ZodTypeAny, {
|
|
8740
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
8741
|
+
name?: string | undefined;
|
|
8742
|
+
}, {
|
|
8743
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
8744
|
+
name?: string | undefined;
|
|
8745
|
+
}>>;
|
|
8746
|
+
server: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
8747
|
+
}, "strip", z.ZodTypeAny, {
|
|
8748
|
+
auth?: {
|
|
8749
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
8750
|
+
name?: string | undefined;
|
|
8751
|
+
} | undefined;
|
|
8752
|
+
server?: string | string[] | undefined;
|
|
8753
|
+
}, {
|
|
8754
|
+
auth?: {
|
|
8755
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
8756
|
+
name?: string | undefined;
|
|
8757
|
+
} | undefined;
|
|
8758
|
+
server?: string | string[] | undefined;
|
|
8759
|
+
}>>;
|
|
8760
|
+
}, "strip", z.ZodTypeAny, {
|
|
8761
|
+
openapi?: string | string[] | {
|
|
8762
|
+
source: string;
|
|
8763
|
+
directory?: string | undefined;
|
|
8764
|
+
} | undefined;
|
|
8765
|
+
asyncapi?: string | string[] | {
|
|
8766
|
+
source: string;
|
|
8767
|
+
directory?: string | undefined;
|
|
8768
|
+
} | undefined;
|
|
8769
|
+
playground?: {
|
|
8770
|
+
display?: "simple" | "none" | "interactive" | undefined;
|
|
8771
|
+
proxy?: boolean | undefined;
|
|
8772
|
+
} | undefined;
|
|
8773
|
+
examples?: {
|
|
8774
|
+
defaults?: "all" | "required" | undefined;
|
|
8775
|
+
languages?: string[] | undefined;
|
|
8776
|
+
} | undefined;
|
|
8777
|
+
mdx?: {
|
|
8778
|
+
auth?: {
|
|
8779
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
8780
|
+
name?: string | undefined;
|
|
8781
|
+
} | undefined;
|
|
8782
|
+
server?: string | string[] | undefined;
|
|
8783
|
+
} | undefined;
|
|
8784
|
+
}, {
|
|
8785
|
+
openapi?: string | string[] | {
|
|
8786
|
+
source: string;
|
|
8787
|
+
directory?: string | undefined;
|
|
8788
|
+
} | undefined;
|
|
8789
|
+
asyncapi?: string | string[] | {
|
|
8790
|
+
source: string;
|
|
8791
|
+
directory?: string | undefined;
|
|
8792
|
+
} | undefined;
|
|
8793
|
+
playground?: {
|
|
8794
|
+
display?: "simple" | "none" | "interactive" | undefined;
|
|
8795
|
+
proxy?: boolean | undefined;
|
|
8796
|
+
} | undefined;
|
|
8797
|
+
examples?: {
|
|
8798
|
+
defaults?: "all" | "required" | undefined;
|
|
8799
|
+
languages?: string[] | undefined;
|
|
8800
|
+
} | undefined;
|
|
8801
|
+
mdx?: {
|
|
8802
|
+
auth?: {
|
|
8803
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
8804
|
+
name?: string | undefined;
|
|
8805
|
+
} | undefined;
|
|
8806
|
+
server?: string | string[] | undefined;
|
|
8807
|
+
} | undefined;
|
|
8808
|
+
}>>;
|
|
8809
|
+
appearance: z.ZodOptional<z.ZodObject<{
|
|
8810
|
+
default: z.ZodOptional<z.ZodEnum<["system", "light", "dark"]>>;
|
|
8811
|
+
strict: z.ZodOptional<z.ZodBoolean>;
|
|
8812
|
+
}, "strip", z.ZodTypeAny, {
|
|
8813
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
8814
|
+
strict?: boolean | undefined;
|
|
8815
|
+
}, {
|
|
8816
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
8817
|
+
strict?: boolean | undefined;
|
|
8818
|
+
}>>;
|
|
8819
|
+
background: z.ZodOptional<z.ZodObject<{
|
|
8820
|
+
image: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
8821
|
+
light: z.ZodString;
|
|
8822
|
+
dark: z.ZodString;
|
|
8823
|
+
}, "strip", z.ZodTypeAny, {
|
|
8824
|
+
light: string;
|
|
8825
|
+
dark: string;
|
|
8826
|
+
}, {
|
|
8827
|
+
light: string;
|
|
8828
|
+
dark: string;
|
|
8829
|
+
}>]>>;
|
|
8830
|
+
decoration: z.ZodOptional<z.ZodEnum<["gradient", "grid", "windows"]>>;
|
|
8831
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
8832
|
+
light: z.ZodOptional<z.ZodString>;
|
|
8833
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
8834
|
+
}, "strict", z.ZodTypeAny, {
|
|
8835
|
+
light?: string | undefined;
|
|
8836
|
+
dark?: string | undefined;
|
|
8837
|
+
}, {
|
|
8838
|
+
light?: string | undefined;
|
|
8839
|
+
dark?: string | undefined;
|
|
8840
|
+
}>>;
|
|
8841
|
+
}, "strip", z.ZodTypeAny, {
|
|
8842
|
+
image?: string | {
|
|
8843
|
+
light: string;
|
|
8844
|
+
dark: string;
|
|
8845
|
+
} | undefined;
|
|
8846
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
8847
|
+
color?: {
|
|
8848
|
+
light?: string | undefined;
|
|
8849
|
+
dark?: string | undefined;
|
|
8850
|
+
} | undefined;
|
|
8851
|
+
}, {
|
|
8852
|
+
image?: string | {
|
|
8853
|
+
light: string;
|
|
8854
|
+
dark: string;
|
|
8855
|
+
} | undefined;
|
|
8856
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
8857
|
+
color?: {
|
|
8858
|
+
light?: string | undefined;
|
|
8859
|
+
dark?: string | undefined;
|
|
8860
|
+
} | undefined;
|
|
8861
|
+
}>>;
|
|
8862
|
+
navbar: z.ZodOptional<z.ZodObject<{
|
|
8863
|
+
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8864
|
+
label: z.ZodString;
|
|
8865
|
+
href: z.ZodString;
|
|
8866
|
+
}, "strip", z.ZodTypeAny, {
|
|
8867
|
+
href: string;
|
|
8868
|
+
label: string;
|
|
8869
|
+
}, {
|
|
8870
|
+
href: string;
|
|
8871
|
+
label: string;
|
|
8872
|
+
}>, "many">>;
|
|
8873
|
+
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
8874
|
+
type: z.ZodLiteral<"button">;
|
|
8875
|
+
label: z.ZodString;
|
|
8876
|
+
href: z.ZodString;
|
|
8877
|
+
}, "strip", z.ZodTypeAny, {
|
|
8878
|
+
type: "button";
|
|
8879
|
+
href: string;
|
|
8880
|
+
label: string;
|
|
8881
|
+
}, {
|
|
8882
|
+
type: "button";
|
|
8883
|
+
href: string;
|
|
8884
|
+
label: string;
|
|
8885
|
+
}>, z.ZodObject<{
|
|
8886
|
+
type: z.ZodLiteral<"github">;
|
|
8887
|
+
href: z.ZodString;
|
|
8888
|
+
}, "strip", z.ZodTypeAny, {
|
|
8889
|
+
type: "github";
|
|
8890
|
+
href: string;
|
|
8891
|
+
}, {
|
|
8892
|
+
type: "github";
|
|
8893
|
+
href: string;
|
|
8894
|
+
}>]>>;
|
|
8895
|
+
}, "strip", z.ZodTypeAny, {
|
|
8896
|
+
links?: {
|
|
8897
|
+
href: string;
|
|
8898
|
+
label: string;
|
|
8899
|
+
}[] | undefined;
|
|
8900
|
+
primary?: {
|
|
8901
|
+
type: "button";
|
|
8902
|
+
href: string;
|
|
8903
|
+
label: string;
|
|
8904
|
+
} | {
|
|
8905
|
+
type: "github";
|
|
8906
|
+
href: string;
|
|
8907
|
+
} | undefined;
|
|
8908
|
+
}, {
|
|
8909
|
+
links?: {
|
|
8910
|
+
href: string;
|
|
8911
|
+
label: string;
|
|
8912
|
+
}[] | undefined;
|
|
8913
|
+
primary?: {
|
|
8914
|
+
type: "button";
|
|
8915
|
+
href: string;
|
|
8916
|
+
label: string;
|
|
8917
|
+
} | {
|
|
8918
|
+
type: "github";
|
|
8919
|
+
href: string;
|
|
8920
|
+
} | undefined;
|
|
8921
|
+
}>>;
|
|
8922
|
+
navigation: z.ZodUnion<[z.ZodObject<{
|
|
8923
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
8924
|
+
languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
8925
|
+
}, "strip", z.ZodTypeAny, {
|
|
8926
|
+
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
8927
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8928
|
+
}, {
|
|
8929
|
+
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
8930
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8931
|
+
}>, z.ZodObject<{
|
|
8932
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
8933
|
+
versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
8934
|
+
}, "strip", z.ZodTypeAny, {
|
|
8935
|
+
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
8936
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8937
|
+
}, {
|
|
8938
|
+
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
8939
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8940
|
+
}>, z.ZodObject<{
|
|
8941
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
8942
|
+
tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
8943
|
+
}, "strip", z.ZodTypeAny, {
|
|
8944
|
+
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
8945
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8946
|
+
}, {
|
|
8947
|
+
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
8948
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8949
|
+
}>, z.ZodObject<{
|
|
8950
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
8951
|
+
dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
8952
|
+
}, "strip", z.ZodTypeAny, {
|
|
8953
|
+
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
8954
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8955
|
+
}, {
|
|
8956
|
+
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
8957
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8958
|
+
}>, z.ZodObject<{
|
|
8959
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
8960
|
+
anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
8961
|
+
}, "strip", z.ZodTypeAny, {
|
|
8962
|
+
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
8963
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8964
|
+
}, {
|
|
8965
|
+
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
8966
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
8967
|
+
}>, z.ZodObject<{
|
|
8968
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
8969
|
+
groups: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
8970
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
8971
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
8972
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
8973
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
8974
|
+
}, "strip", z.ZodTypeAny, {
|
|
8975
|
+
name: string;
|
|
8976
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8977
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
8978
|
+
}, {
|
|
8979
|
+
name: string;
|
|
8980
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8981
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
8982
|
+
}>]>>;
|
|
8983
|
+
group: z.ZodString;
|
|
8984
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
8985
|
+
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
8986
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
8987
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
8988
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
8989
|
+
}, "strict", z.ZodTypeAny, {
|
|
8990
|
+
source: string;
|
|
8991
|
+
directory?: string | undefined;
|
|
8992
|
+
}, {
|
|
8993
|
+
source: string;
|
|
8994
|
+
directory?: string | undefined;
|
|
8995
|
+
}>]>;
|
|
8996
|
+
}, "strip", z.ZodTypeAny, {
|
|
8997
|
+
openapi: (string | string[] | {
|
|
8998
|
+
source: string;
|
|
8999
|
+
directory?: string | undefined;
|
|
9000
|
+
}) & (string | string[] | {
|
|
9001
|
+
source: string;
|
|
9002
|
+
directory?: string | undefined;
|
|
9003
|
+
} | undefined);
|
|
9004
|
+
group: string;
|
|
9005
|
+
icon?: string | {
|
|
9006
|
+
name: string;
|
|
9007
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9008
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9009
|
+
} | undefined;
|
|
9010
|
+
hidden?: boolean | undefined;
|
|
9011
|
+
root?: string | undefined;
|
|
9012
|
+
}, {
|
|
9013
|
+
openapi: (string | string[] | {
|
|
9014
|
+
source: string;
|
|
9015
|
+
directory?: string | undefined;
|
|
9016
|
+
}) & (string | string[] | {
|
|
9017
|
+
source: string;
|
|
9018
|
+
directory?: string | undefined;
|
|
9019
|
+
} | undefined);
|
|
9020
|
+
group: string;
|
|
9021
|
+
icon?: string | {
|
|
9022
|
+
name: string;
|
|
9023
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9024
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9025
|
+
} | undefined;
|
|
9026
|
+
hidden?: boolean | undefined;
|
|
9027
|
+
root?: string | undefined;
|
|
9028
|
+
}>, z.ZodObject<{
|
|
9029
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
9030
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
9031
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
9032
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
9033
|
+
}, "strip", z.ZodTypeAny, {
|
|
9034
|
+
name: string;
|
|
9035
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9036
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9037
|
+
}, {
|
|
9038
|
+
name: string;
|
|
9039
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9040
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9041
|
+
}>]>>;
|
|
9042
|
+
group: z.ZodString;
|
|
9043
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
9044
|
+
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
9045
|
+
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
9046
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
9047
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
9048
|
+
}, "strict", z.ZodTypeAny, {
|
|
9049
|
+
source: string;
|
|
9050
|
+
directory?: string | undefined;
|
|
9051
|
+
}, {
|
|
9052
|
+
source: string;
|
|
9053
|
+
directory?: string | undefined;
|
|
9054
|
+
}>]>;
|
|
9055
|
+
}, "strip", z.ZodTypeAny, {
|
|
9056
|
+
group: string;
|
|
9057
|
+
asyncapi: (string | string[] | {
|
|
9058
|
+
source: string;
|
|
9059
|
+
directory?: string | undefined;
|
|
9060
|
+
}) & (string | string[] | {
|
|
9061
|
+
source: string;
|
|
9062
|
+
directory?: string | undefined;
|
|
9063
|
+
} | undefined);
|
|
9064
|
+
icon?: string | {
|
|
9065
|
+
name: string;
|
|
9066
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9067
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9068
|
+
} | undefined;
|
|
9069
|
+
hidden?: boolean | undefined;
|
|
9070
|
+
root?: string | undefined;
|
|
9071
|
+
}, {
|
|
9072
|
+
group: string;
|
|
9073
|
+
asyncapi: (string | string[] | {
|
|
9074
|
+
source: string;
|
|
9075
|
+
directory?: string | undefined;
|
|
9076
|
+
}) & (string | string[] | {
|
|
9077
|
+
source: string;
|
|
9078
|
+
directory?: string | undefined;
|
|
9079
|
+
} | undefined);
|
|
9080
|
+
icon?: string | {
|
|
9081
|
+
name: string;
|
|
9082
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9083
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9084
|
+
} | undefined;
|
|
9085
|
+
hidden?: boolean | undefined;
|
|
9086
|
+
root?: string | undefined;
|
|
9087
|
+
}>, z.ZodObject<{
|
|
9088
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
9089
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
9090
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
9091
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
9092
|
+
}, "strip", z.ZodTypeAny, {
|
|
9093
|
+
name: string;
|
|
9094
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9095
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9096
|
+
}, {
|
|
9097
|
+
name: string;
|
|
9098
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9099
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9100
|
+
}>]>>;
|
|
9101
|
+
group: z.ZodString;
|
|
9102
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
9103
|
+
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
9104
|
+
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
9105
|
+
}, "strip", z.ZodTypeAny, {
|
|
9106
|
+
group: string;
|
|
9107
|
+
pages: any[];
|
|
9108
|
+
icon?: string | {
|
|
9109
|
+
name: string;
|
|
9110
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9111
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9112
|
+
} | undefined;
|
|
9113
|
+
hidden?: boolean | undefined;
|
|
9114
|
+
root?: string | undefined;
|
|
9115
|
+
}, {
|
|
9116
|
+
group: string;
|
|
9117
|
+
pages: any[];
|
|
9118
|
+
icon?: string | {
|
|
9119
|
+
name: string;
|
|
9120
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9121
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9122
|
+
} | undefined;
|
|
9123
|
+
hidden?: boolean | undefined;
|
|
9124
|
+
root?: string | undefined;
|
|
9125
|
+
}>]>, "many">;
|
|
9126
|
+
}, "strip", z.ZodTypeAny, {
|
|
9127
|
+
groups: ({
|
|
9128
|
+
openapi: (string | string[] | {
|
|
9129
|
+
source: string;
|
|
9130
|
+
directory?: string | undefined;
|
|
9131
|
+
}) & (string | string[] | {
|
|
9132
|
+
source: string;
|
|
9133
|
+
directory?: string | undefined;
|
|
9134
|
+
} | undefined);
|
|
9135
|
+
group: string;
|
|
9136
|
+
icon?: string | {
|
|
9137
|
+
name: string;
|
|
9138
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9139
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9140
|
+
} | undefined;
|
|
9141
|
+
hidden?: boolean | undefined;
|
|
9142
|
+
root?: string | undefined;
|
|
9143
|
+
} | {
|
|
9144
|
+
group: string;
|
|
9145
|
+
asyncapi: (string | string[] | {
|
|
9146
|
+
source: string;
|
|
9147
|
+
directory?: string | undefined;
|
|
9148
|
+
}) & (string | string[] | {
|
|
9149
|
+
source: string;
|
|
9150
|
+
directory?: string | undefined;
|
|
9151
|
+
} | undefined);
|
|
9152
|
+
icon?: string | {
|
|
9153
|
+
name: string;
|
|
9154
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9155
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9156
|
+
} | undefined;
|
|
9157
|
+
hidden?: boolean | undefined;
|
|
9158
|
+
root?: string | undefined;
|
|
9159
|
+
} | {
|
|
9160
|
+
group: string;
|
|
9161
|
+
pages: any[];
|
|
9162
|
+
icon?: string | {
|
|
9163
|
+
name: string;
|
|
9164
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9165
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9166
|
+
} | undefined;
|
|
9167
|
+
hidden?: boolean | undefined;
|
|
9168
|
+
root?: string | undefined;
|
|
9169
|
+
})[];
|
|
9170
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9171
|
+
}, {
|
|
9172
|
+
groups: ({
|
|
9173
|
+
openapi: (string | string[] | {
|
|
9174
|
+
source: string;
|
|
9175
|
+
directory?: string | undefined;
|
|
9176
|
+
}) & (string | string[] | {
|
|
9177
|
+
source: string;
|
|
9178
|
+
directory?: string | undefined;
|
|
9179
|
+
} | undefined);
|
|
9180
|
+
group: string;
|
|
9181
|
+
icon?: string | {
|
|
9182
|
+
name: string;
|
|
9183
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9184
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9185
|
+
} | undefined;
|
|
9186
|
+
hidden?: boolean | undefined;
|
|
9187
|
+
root?: string | undefined;
|
|
9188
|
+
} | {
|
|
9189
|
+
group: string;
|
|
9190
|
+
asyncapi: (string | string[] | {
|
|
9191
|
+
source: string;
|
|
9192
|
+
directory?: string | undefined;
|
|
9193
|
+
}) & (string | string[] | {
|
|
9194
|
+
source: string;
|
|
9195
|
+
directory?: string | undefined;
|
|
9196
|
+
} | undefined);
|
|
9197
|
+
icon?: string | {
|
|
9198
|
+
name: string;
|
|
9199
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9200
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9201
|
+
} | undefined;
|
|
9202
|
+
hidden?: boolean | undefined;
|
|
9203
|
+
root?: string | undefined;
|
|
9204
|
+
} | {
|
|
9205
|
+
group: string;
|
|
9206
|
+
pages: any[];
|
|
9207
|
+
icon?: string | {
|
|
9208
|
+
name: string;
|
|
9209
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9210
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9211
|
+
} | undefined;
|
|
9212
|
+
hidden?: boolean | undefined;
|
|
9213
|
+
root?: string | undefined;
|
|
9214
|
+
})[];
|
|
9215
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9216
|
+
}>, z.ZodObject<{
|
|
9217
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
9218
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
9219
|
+
}, "strip", z.ZodTypeAny, {
|
|
9220
|
+
pages: any[];
|
|
9221
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9222
|
+
}, {
|
|
9223
|
+
pages: any[];
|
|
9224
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9225
|
+
}>]>;
|
|
9226
|
+
footer: z.ZodOptional<z.ZodObject<{
|
|
9227
|
+
socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter", "x-twitter", "earth-americas", "bluesky", "threads", "reddit", "podcast"]>, z.ZodString>>;
|
|
9228
|
+
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9229
|
+
header: z.ZodOptional<z.ZodString>;
|
|
9230
|
+
items: z.ZodArray<z.ZodObject<{
|
|
9231
|
+
label: z.ZodString;
|
|
9232
|
+
href: z.ZodString;
|
|
9233
|
+
}, "strip", z.ZodTypeAny, {
|
|
9234
|
+
href: string;
|
|
9235
|
+
label: string;
|
|
9236
|
+
}, {
|
|
9237
|
+
href: string;
|
|
9238
|
+
label: string;
|
|
9239
|
+
}>, "many">;
|
|
9240
|
+
}, "strip", z.ZodTypeAny, {
|
|
9241
|
+
items: {
|
|
9242
|
+
href: string;
|
|
9243
|
+
label: string;
|
|
9244
|
+
}[];
|
|
9245
|
+
header?: string | undefined;
|
|
9246
|
+
}, {
|
|
9247
|
+
items: {
|
|
9248
|
+
href: string;
|
|
9249
|
+
label: string;
|
|
9250
|
+
}[];
|
|
9251
|
+
header?: string | undefined;
|
|
9252
|
+
}>, "many">>;
|
|
9253
|
+
}, "strip", z.ZodTypeAny, {
|
|
9254
|
+
socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
|
|
9255
|
+
links?: {
|
|
9256
|
+
items: {
|
|
9257
|
+
href: string;
|
|
9258
|
+
label: string;
|
|
9259
|
+
}[];
|
|
9260
|
+
header?: string | undefined;
|
|
9261
|
+
}[] | undefined;
|
|
9262
|
+
}, {
|
|
9263
|
+
socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
|
|
9264
|
+
links?: {
|
|
9265
|
+
items: {
|
|
9266
|
+
href: string;
|
|
9267
|
+
label: string;
|
|
9268
|
+
}[];
|
|
9269
|
+
header?: string | undefined;
|
|
9270
|
+
}[] | undefined;
|
|
9271
|
+
}>>;
|
|
9272
|
+
search: z.ZodOptional<z.ZodObject<{
|
|
9273
|
+
prompt: z.ZodOptional<z.ZodString>;
|
|
9274
|
+
}, "strip", z.ZodTypeAny, {
|
|
9275
|
+
prompt?: string | undefined;
|
|
9276
|
+
}, {
|
|
9277
|
+
prompt?: string | undefined;
|
|
9278
|
+
}>>;
|
|
9279
|
+
seo: z.ZodOptional<z.ZodObject<{
|
|
9280
|
+
metatags: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
9281
|
+
indexing: z.ZodOptional<z.ZodEnum<["navigable", "all"]>>;
|
|
9282
|
+
}, "strip", z.ZodTypeAny, {
|
|
9283
|
+
metatags?: Record<string, string> | undefined;
|
|
9284
|
+
indexing?: "all" | "navigable" | undefined;
|
|
9285
|
+
}, {
|
|
9286
|
+
metatags?: Record<string, string> | undefined;
|
|
9287
|
+
indexing?: "all" | "navigable" | undefined;
|
|
9288
|
+
}>>;
|
|
9289
|
+
fonts: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
9290
|
+
family: z.ZodString;
|
|
9291
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
9292
|
+
source: z.ZodOptional<z.ZodString>;
|
|
9293
|
+
format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
|
|
9294
|
+
}, "strip", z.ZodTypeAny, {
|
|
9295
|
+
family: string;
|
|
9296
|
+
weight?: number | undefined;
|
|
9297
|
+
source?: string | undefined;
|
|
9298
|
+
format?: "woff" | "woff2" | undefined;
|
|
9299
|
+
}, {
|
|
9300
|
+
family: string;
|
|
9301
|
+
weight?: number | undefined;
|
|
9302
|
+
source?: string | undefined;
|
|
9303
|
+
format?: "woff" | "woff2" | undefined;
|
|
9304
|
+
}>, {
|
|
9305
|
+
family: string;
|
|
9306
|
+
weight?: number | undefined;
|
|
9307
|
+
source?: string | undefined;
|
|
9308
|
+
format?: "woff" | "woff2" | undefined;
|
|
9309
|
+
}, {
|
|
9310
|
+
family: string;
|
|
9311
|
+
weight?: number | undefined;
|
|
9312
|
+
source?: string | undefined;
|
|
9313
|
+
format?: "woff" | "woff2" | undefined;
|
|
9314
|
+
}>, z.ZodObject<{
|
|
9315
|
+
heading: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
9316
|
+
family: z.ZodString;
|
|
9317
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
9318
|
+
source: z.ZodOptional<z.ZodString>;
|
|
9319
|
+
format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
|
|
9320
|
+
}, "strip", z.ZodTypeAny, {
|
|
9321
|
+
family: string;
|
|
9322
|
+
weight?: number | undefined;
|
|
9323
|
+
source?: string | undefined;
|
|
9324
|
+
format?: "woff" | "woff2" | undefined;
|
|
9325
|
+
}, {
|
|
9326
|
+
family: string;
|
|
9327
|
+
weight?: number | undefined;
|
|
9328
|
+
source?: string | undefined;
|
|
9329
|
+
format?: "woff" | "woff2" | undefined;
|
|
9330
|
+
}>, {
|
|
9331
|
+
family: string;
|
|
9332
|
+
weight?: number | undefined;
|
|
9333
|
+
source?: string | undefined;
|
|
9334
|
+
format?: "woff" | "woff2" | undefined;
|
|
9335
|
+
}, {
|
|
9336
|
+
family: string;
|
|
9337
|
+
weight?: number | undefined;
|
|
9338
|
+
source?: string | undefined;
|
|
9339
|
+
format?: "woff" | "woff2" | undefined;
|
|
9340
|
+
}>>;
|
|
9341
|
+
body: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
9342
|
+
family: z.ZodString;
|
|
9343
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
9344
|
+
source: z.ZodOptional<z.ZodString>;
|
|
9345
|
+
format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
|
|
9346
|
+
}, "strip", z.ZodTypeAny, {
|
|
9347
|
+
family: string;
|
|
9348
|
+
weight?: number | undefined;
|
|
9349
|
+
source?: string | undefined;
|
|
9350
|
+
format?: "woff" | "woff2" | undefined;
|
|
9351
|
+
}, {
|
|
9352
|
+
family: string;
|
|
9353
|
+
weight?: number | undefined;
|
|
9354
|
+
source?: string | undefined;
|
|
9355
|
+
format?: "woff" | "woff2" | undefined;
|
|
9356
|
+
}>, {
|
|
9357
|
+
family: string;
|
|
9358
|
+
weight?: number | undefined;
|
|
9359
|
+
source?: string | undefined;
|
|
9360
|
+
format?: "woff" | "woff2" | undefined;
|
|
9361
|
+
}, {
|
|
9362
|
+
family: string;
|
|
9363
|
+
weight?: number | undefined;
|
|
9364
|
+
source?: string | undefined;
|
|
9365
|
+
format?: "woff" | "woff2" | undefined;
|
|
9366
|
+
}>>;
|
|
9367
|
+
}, "strict", z.ZodTypeAny, {
|
|
9368
|
+
heading?: {
|
|
9369
|
+
family: string;
|
|
9370
|
+
weight?: number | undefined;
|
|
9371
|
+
source?: string | undefined;
|
|
9372
|
+
format?: "woff" | "woff2" | undefined;
|
|
9373
|
+
} | undefined;
|
|
9374
|
+
body?: {
|
|
9375
|
+
family: string;
|
|
9376
|
+
weight?: number | undefined;
|
|
9377
|
+
source?: string | undefined;
|
|
9378
|
+
format?: "woff" | "woff2" | undefined;
|
|
9379
|
+
} | undefined;
|
|
9380
|
+
}, {
|
|
9381
|
+
heading?: {
|
|
9382
|
+
family: string;
|
|
9383
|
+
weight?: number | undefined;
|
|
9384
|
+
source?: string | undefined;
|
|
9385
|
+
format?: "woff" | "woff2" | undefined;
|
|
9386
|
+
} | undefined;
|
|
9387
|
+
body?: {
|
|
9388
|
+
family: string;
|
|
9389
|
+
weight?: number | undefined;
|
|
9390
|
+
source?: string | undefined;
|
|
9391
|
+
format?: "woff" | "woff2" | undefined;
|
|
9392
|
+
} | undefined;
|
|
9393
|
+
}>]>>;
|
|
9394
|
+
icons: z.ZodOptional<z.ZodObject<{
|
|
9395
|
+
library: z.ZodEnum<["fontawesome", "lucide"]>;
|
|
9396
|
+
}, "strip", z.ZodTypeAny, {
|
|
9397
|
+
library: "fontawesome" | "lucide";
|
|
9398
|
+
}, {
|
|
9399
|
+
library: "fontawesome" | "lucide";
|
|
9400
|
+
}>>;
|
|
9401
|
+
styling: z.ZodOptional<z.ZodObject<{
|
|
9402
|
+
eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
|
|
9403
|
+
codeblocks: z.ZodOptional<z.ZodEnum<["system", "dark"]>>;
|
|
9404
|
+
}, "strip", z.ZodTypeAny, {
|
|
9405
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
9406
|
+
codeblocks?: "dark" | "system" | undefined;
|
|
9407
|
+
}, {
|
|
9408
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
9409
|
+
codeblocks?: "dark" | "system" | undefined;
|
|
9410
|
+
}>>;
|
|
9411
|
+
redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
9412
|
+
source: z.ZodString;
|
|
9413
|
+
destination: z.ZodString;
|
|
9414
|
+
permanent: z.ZodOptional<z.ZodBoolean>;
|
|
9415
|
+
}, "strip", z.ZodTypeAny, {
|
|
9416
|
+
source: string;
|
|
9417
|
+
destination: string;
|
|
9418
|
+
permanent?: boolean | undefined;
|
|
9419
|
+
}, {
|
|
9420
|
+
source: string;
|
|
9421
|
+
destination: string;
|
|
9422
|
+
permanent?: boolean | undefined;
|
|
9423
|
+
}>, "many">, {
|
|
9424
|
+
source: string;
|
|
9425
|
+
destination: string;
|
|
9426
|
+
permanent?: boolean | undefined;
|
|
9427
|
+
}[], {
|
|
9428
|
+
source: string;
|
|
9429
|
+
destination: string;
|
|
9430
|
+
permanent?: boolean | undefined;
|
|
9431
|
+
}[]>>;
|
|
9432
|
+
integrations: z.ZodOptional<z.ZodObject<{
|
|
9433
|
+
amplitude: z.ZodOptional<z.ZodObject<{
|
|
9434
|
+
apiKey: z.ZodString;
|
|
9435
|
+
}, "strip", z.ZodTypeAny, {
|
|
9436
|
+
apiKey: string;
|
|
9437
|
+
}, {
|
|
9438
|
+
apiKey: string;
|
|
9439
|
+
}>>;
|
|
9440
|
+
clearbit: z.ZodOptional<z.ZodObject<{
|
|
9441
|
+
publicApiKey: z.ZodString;
|
|
9442
|
+
}, "strip", z.ZodTypeAny, {
|
|
9443
|
+
publicApiKey: string;
|
|
9444
|
+
}, {
|
|
9445
|
+
publicApiKey: string;
|
|
9446
|
+
}>>;
|
|
9447
|
+
fathom: z.ZodOptional<z.ZodObject<{
|
|
9448
|
+
siteId: z.ZodString;
|
|
9449
|
+
}, "strip", z.ZodTypeAny, {
|
|
9450
|
+
siteId: string;
|
|
9451
|
+
}, {
|
|
9452
|
+
siteId: string;
|
|
9453
|
+
}>>;
|
|
9454
|
+
frontchat: z.ZodOptional<z.ZodObject<{
|
|
9455
|
+
snippetId: z.ZodString;
|
|
9456
|
+
}, "strip", z.ZodTypeAny, {
|
|
9457
|
+
snippetId: string;
|
|
9458
|
+
}, {
|
|
9459
|
+
snippetId: string;
|
|
9460
|
+
}>>;
|
|
9461
|
+
ga4: z.ZodOptional<z.ZodObject<{
|
|
9462
|
+
measurementId: z.ZodString;
|
|
9463
|
+
}, "strip", z.ZodTypeAny, {
|
|
9464
|
+
measurementId: string;
|
|
9465
|
+
}, {
|
|
9466
|
+
measurementId: string;
|
|
9467
|
+
}>>;
|
|
9468
|
+
gtm: z.ZodOptional<z.ZodObject<{
|
|
9469
|
+
tagId: z.ZodString;
|
|
9470
|
+
}, "strip", z.ZodTypeAny, {
|
|
9471
|
+
tagId: string;
|
|
9472
|
+
}, {
|
|
9473
|
+
tagId: string;
|
|
9474
|
+
}>>;
|
|
9475
|
+
heap: z.ZodOptional<z.ZodObject<{
|
|
9476
|
+
appId: z.ZodString;
|
|
9477
|
+
}, "strip", z.ZodTypeAny, {
|
|
9478
|
+
appId: string;
|
|
9479
|
+
}, {
|
|
9480
|
+
appId: string;
|
|
9481
|
+
}>>;
|
|
9482
|
+
hotjar: z.ZodOptional<z.ZodObject<{
|
|
9483
|
+
hjid: z.ZodString;
|
|
9484
|
+
hjsv: z.ZodString;
|
|
9485
|
+
}, "strip", z.ZodTypeAny, {
|
|
9486
|
+
hjid: string;
|
|
9487
|
+
hjsv: string;
|
|
9488
|
+
}, {
|
|
9489
|
+
hjid: string;
|
|
9490
|
+
hjsv: string;
|
|
9491
|
+
}>>;
|
|
9492
|
+
intercom: z.ZodOptional<z.ZodObject<{
|
|
9493
|
+
appId: z.ZodString;
|
|
9494
|
+
}, "strip", z.ZodTypeAny, {
|
|
9495
|
+
appId: string;
|
|
9496
|
+
}, {
|
|
9497
|
+
appId: string;
|
|
9498
|
+
}>>;
|
|
9499
|
+
koala: z.ZodOptional<z.ZodObject<{
|
|
9500
|
+
publicApiKey: z.ZodString;
|
|
9501
|
+
}, "strip", z.ZodTypeAny, {
|
|
9502
|
+
publicApiKey: string;
|
|
9503
|
+
}, {
|
|
9504
|
+
publicApiKey: string;
|
|
9505
|
+
}>>;
|
|
9506
|
+
logrocket: z.ZodOptional<z.ZodObject<{
|
|
9507
|
+
appId: z.ZodString;
|
|
9508
|
+
}, "strip", z.ZodTypeAny, {
|
|
9509
|
+
appId: string;
|
|
9510
|
+
}, {
|
|
9511
|
+
appId: string;
|
|
9512
|
+
}>>;
|
|
9513
|
+
mixpanel: z.ZodOptional<z.ZodObject<{
|
|
9514
|
+
projectToken: z.ZodString;
|
|
9515
|
+
}, "strip", z.ZodTypeAny, {
|
|
9516
|
+
projectToken: string;
|
|
9517
|
+
}, {
|
|
9518
|
+
projectToken: string;
|
|
9519
|
+
}>>;
|
|
9520
|
+
osano: z.ZodOptional<z.ZodObject<{
|
|
9521
|
+
scriptSource: z.ZodString;
|
|
9522
|
+
}, "strip", z.ZodTypeAny, {
|
|
9523
|
+
scriptSource: string;
|
|
9524
|
+
}, {
|
|
9525
|
+
scriptSource: string;
|
|
9526
|
+
}>>;
|
|
9527
|
+
pirsch: z.ZodOptional<z.ZodObject<{
|
|
9528
|
+
id: z.ZodString;
|
|
9529
|
+
}, "strip", z.ZodTypeAny, {
|
|
9530
|
+
id: string;
|
|
9531
|
+
}, {
|
|
9532
|
+
id: string;
|
|
9533
|
+
}>>;
|
|
9534
|
+
posthog: z.ZodOptional<z.ZodObject<{
|
|
9535
|
+
apiKey: z.ZodString;
|
|
9536
|
+
apiHost: z.ZodOptional<z.ZodString>;
|
|
9537
|
+
}, "strip", z.ZodTypeAny, {
|
|
9538
|
+
apiKey: string;
|
|
9539
|
+
apiHost?: string | undefined;
|
|
9540
|
+
}, {
|
|
9541
|
+
apiKey: string;
|
|
9542
|
+
apiHost?: string | undefined;
|
|
9543
|
+
}>>;
|
|
9544
|
+
plausible: z.ZodOptional<z.ZodObject<{
|
|
9545
|
+
domain: z.ZodEffects<z.ZodString, string, string>;
|
|
9546
|
+
server: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
9547
|
+
}, "strip", z.ZodTypeAny, {
|
|
9548
|
+
domain: string;
|
|
9549
|
+
server?: string | undefined;
|
|
9550
|
+
}, {
|
|
9551
|
+
domain: string;
|
|
9552
|
+
server?: string | undefined;
|
|
9553
|
+
}>>;
|
|
9554
|
+
segment: z.ZodOptional<z.ZodObject<{
|
|
9555
|
+
key: z.ZodString;
|
|
9556
|
+
}, "strip", z.ZodTypeAny, {
|
|
9557
|
+
key: string;
|
|
9558
|
+
}, {
|
|
9559
|
+
key: string;
|
|
9560
|
+
}>>;
|
|
9561
|
+
telemetry: z.ZodOptional<z.ZodObject<{
|
|
9562
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
9563
|
+
}, "strip", z.ZodTypeAny, {
|
|
9564
|
+
enabled?: boolean | undefined;
|
|
9565
|
+
}, {
|
|
9566
|
+
enabled?: boolean | undefined;
|
|
9567
|
+
}>>;
|
|
9568
|
+
cookies: z.ZodOptional<z.ZodObject<{
|
|
9569
|
+
key: z.ZodOptional<z.ZodString>;
|
|
9570
|
+
value: z.ZodOptional<z.ZodString>;
|
|
9571
|
+
}, "strip", z.ZodTypeAny, {
|
|
9572
|
+
key?: string | undefined;
|
|
9573
|
+
value?: string | undefined;
|
|
9574
|
+
}, {
|
|
9575
|
+
key?: string | undefined;
|
|
9576
|
+
value?: string | undefined;
|
|
9577
|
+
}>>;
|
|
9578
|
+
}, "strict", z.ZodTypeAny, {
|
|
9579
|
+
amplitude?: {
|
|
9580
|
+
apiKey: string;
|
|
9581
|
+
} | undefined;
|
|
9582
|
+
clearbit?: {
|
|
9583
|
+
publicApiKey: string;
|
|
9584
|
+
} | undefined;
|
|
9585
|
+
fathom?: {
|
|
9586
|
+
siteId: string;
|
|
9587
|
+
} | undefined;
|
|
9588
|
+
frontchat?: {
|
|
9589
|
+
snippetId: string;
|
|
9590
|
+
} | undefined;
|
|
9591
|
+
ga4?: {
|
|
9592
|
+
measurementId: string;
|
|
9593
|
+
} | undefined;
|
|
9594
|
+
gtm?: {
|
|
9595
|
+
tagId: string;
|
|
9596
|
+
} | undefined;
|
|
9597
|
+
heap?: {
|
|
9598
|
+
appId: string;
|
|
9599
|
+
} | undefined;
|
|
9600
|
+
hotjar?: {
|
|
9601
|
+
hjid: string;
|
|
9602
|
+
hjsv: string;
|
|
9603
|
+
} | undefined;
|
|
9604
|
+
intercom?: {
|
|
9605
|
+
appId: string;
|
|
9606
|
+
} | undefined;
|
|
9607
|
+
koala?: {
|
|
9608
|
+
publicApiKey: string;
|
|
9609
|
+
} | undefined;
|
|
9610
|
+
logrocket?: {
|
|
9611
|
+
appId: string;
|
|
9612
|
+
} | undefined;
|
|
9613
|
+
mixpanel?: {
|
|
9614
|
+
projectToken: string;
|
|
9615
|
+
} | undefined;
|
|
9616
|
+
osano?: {
|
|
9617
|
+
scriptSource: string;
|
|
9618
|
+
} | undefined;
|
|
9619
|
+
pirsch?: {
|
|
9620
|
+
id: string;
|
|
9621
|
+
} | undefined;
|
|
9622
|
+
posthog?: {
|
|
9623
|
+
apiKey: string;
|
|
9624
|
+
apiHost?: string | undefined;
|
|
9625
|
+
} | undefined;
|
|
9626
|
+
plausible?: {
|
|
9627
|
+
domain: string;
|
|
9628
|
+
server?: string | undefined;
|
|
9629
|
+
} | undefined;
|
|
9630
|
+
segment?: {
|
|
9631
|
+
key: string;
|
|
9632
|
+
} | undefined;
|
|
9633
|
+
telemetry?: {
|
|
9634
|
+
enabled?: boolean | undefined;
|
|
9635
|
+
} | undefined;
|
|
9636
|
+
cookies?: {
|
|
9637
|
+
key?: string | undefined;
|
|
9638
|
+
value?: string | undefined;
|
|
9639
|
+
} | undefined;
|
|
9640
|
+
}, {
|
|
9641
|
+
amplitude?: {
|
|
9642
|
+
apiKey: string;
|
|
9643
|
+
} | undefined;
|
|
9644
|
+
clearbit?: {
|
|
9645
|
+
publicApiKey: string;
|
|
9646
|
+
} | undefined;
|
|
9647
|
+
fathom?: {
|
|
9648
|
+
siteId: string;
|
|
9649
|
+
} | undefined;
|
|
9650
|
+
frontchat?: {
|
|
9651
|
+
snippetId: string;
|
|
9652
|
+
} | undefined;
|
|
9653
|
+
ga4?: {
|
|
9654
|
+
measurementId: string;
|
|
9655
|
+
} | undefined;
|
|
9656
|
+
gtm?: {
|
|
9657
|
+
tagId: string;
|
|
9658
|
+
} | undefined;
|
|
9659
|
+
heap?: {
|
|
9660
|
+
appId: string;
|
|
9661
|
+
} | undefined;
|
|
9662
|
+
hotjar?: {
|
|
9663
|
+
hjid: string;
|
|
9664
|
+
hjsv: string;
|
|
9665
|
+
} | undefined;
|
|
9666
|
+
intercom?: {
|
|
9667
|
+
appId: string;
|
|
9668
|
+
} | undefined;
|
|
9669
|
+
koala?: {
|
|
9670
|
+
publicApiKey: string;
|
|
9671
|
+
} | undefined;
|
|
9672
|
+
logrocket?: {
|
|
9673
|
+
appId: string;
|
|
9674
|
+
} | undefined;
|
|
9675
|
+
mixpanel?: {
|
|
9676
|
+
projectToken: string;
|
|
9677
|
+
} | undefined;
|
|
9678
|
+
osano?: {
|
|
9679
|
+
scriptSource: string;
|
|
9680
|
+
} | undefined;
|
|
9681
|
+
pirsch?: {
|
|
9682
|
+
id: string;
|
|
9683
|
+
} | undefined;
|
|
9684
|
+
posthog?: {
|
|
9685
|
+
apiKey: string;
|
|
9686
|
+
apiHost?: string | undefined;
|
|
9687
|
+
} | undefined;
|
|
9688
|
+
plausible?: {
|
|
9689
|
+
domain: string;
|
|
9690
|
+
server?: string | undefined;
|
|
9691
|
+
} | undefined;
|
|
9692
|
+
segment?: {
|
|
9693
|
+
key: string;
|
|
9694
|
+
} | undefined;
|
|
9695
|
+
telemetry?: {
|
|
9696
|
+
enabled?: boolean | undefined;
|
|
9697
|
+
} | undefined;
|
|
9698
|
+
cookies?: {
|
|
9699
|
+
key?: string | undefined;
|
|
9700
|
+
value?: string | undefined;
|
|
9701
|
+
} | undefined;
|
|
9702
|
+
}>>;
|
|
9703
|
+
banner: z.ZodOptional<z.ZodObject<{
|
|
9704
|
+
content: z.ZodString;
|
|
9705
|
+
dismissible: z.ZodOptional<z.ZodBoolean>;
|
|
9706
|
+
}, "strip", z.ZodTypeAny, {
|
|
9707
|
+
content: string;
|
|
9708
|
+
dismissible?: boolean | undefined;
|
|
9709
|
+
}, {
|
|
9710
|
+
content: string;
|
|
9711
|
+
dismissible?: boolean | undefined;
|
|
9712
|
+
}>>;
|
|
9713
|
+
errors: z.ZodOptional<z.ZodObject<{
|
|
9714
|
+
'404': z.ZodObject<{
|
|
9715
|
+
redirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9716
|
+
}, "strip", z.ZodTypeAny, {
|
|
9717
|
+
redirect: boolean;
|
|
9718
|
+
}, {
|
|
9719
|
+
redirect?: boolean | undefined;
|
|
9720
|
+
}>;
|
|
9721
|
+
}, "strip", z.ZodTypeAny, {
|
|
9722
|
+
'404': {
|
|
9723
|
+
redirect: boolean;
|
|
9724
|
+
};
|
|
9725
|
+
}, {
|
|
9726
|
+
'404': {
|
|
9727
|
+
redirect?: boolean | undefined;
|
|
9728
|
+
};
|
|
9729
|
+
}>>;
|
|
9730
|
+
contextual: z.ZodOptional<z.ZodObject<{
|
|
9731
|
+
options: z.ZodEffects<z.ZodArray<z.ZodEnum<["copy", "view", "chatgpt", "claude"]>, "many">, ("copy" | "view" | "chatgpt" | "claude")[], ("copy" | "view" | "chatgpt" | "claude")[]>;
|
|
9732
|
+
}, "strip", z.ZodTypeAny, {
|
|
9733
|
+
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
9734
|
+
}, {
|
|
9735
|
+
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
9736
|
+
}>>;
|
|
9737
|
+
theme: z.ZodLiteral<"almond">;
|
|
9738
|
+
}, "strip", z.ZodTypeAny, {
|
|
9739
|
+
name: string;
|
|
9740
|
+
$schema: string;
|
|
9741
|
+
theme: "almond";
|
|
9742
|
+
colors: {
|
|
9743
|
+
primary: string;
|
|
9744
|
+
light?: string | undefined;
|
|
9745
|
+
dark?: string | undefined;
|
|
9746
|
+
};
|
|
9747
|
+
navigation: ({
|
|
9748
|
+
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
9749
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9750
|
+
} | {
|
|
9751
|
+
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
9752
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9753
|
+
} | {
|
|
9754
|
+
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
9755
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9756
|
+
} | {
|
|
9757
|
+
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
9758
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9759
|
+
} | {
|
|
9760
|
+
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
9761
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9762
|
+
} | {
|
|
9763
|
+
groups: ({
|
|
9764
|
+
openapi: (string | string[] | {
|
|
9765
|
+
source: string;
|
|
9766
|
+
directory?: string | undefined;
|
|
9767
|
+
}) & (string | string[] | {
|
|
9768
|
+
source: string;
|
|
9769
|
+
directory?: string | undefined;
|
|
9770
|
+
} | undefined);
|
|
9771
|
+
group: string;
|
|
9772
|
+
icon?: string | {
|
|
9773
|
+
name: string;
|
|
9774
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9775
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9776
|
+
} | undefined;
|
|
9777
|
+
hidden?: boolean | undefined;
|
|
9778
|
+
root?: string | undefined;
|
|
9779
|
+
} | {
|
|
9780
|
+
group: string;
|
|
9781
|
+
asyncapi: (string | string[] | {
|
|
9782
|
+
source: string;
|
|
9783
|
+
directory?: string | undefined;
|
|
9784
|
+
}) & (string | string[] | {
|
|
9785
|
+
source: string;
|
|
9786
|
+
directory?: string | undefined;
|
|
9787
|
+
} | undefined);
|
|
9788
|
+
icon?: string | {
|
|
9789
|
+
name: string;
|
|
9790
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9791
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9792
|
+
} | undefined;
|
|
9793
|
+
hidden?: boolean | undefined;
|
|
9794
|
+
root?: string | undefined;
|
|
9795
|
+
} | {
|
|
9796
|
+
group: string;
|
|
9797
|
+
pages: any[];
|
|
9798
|
+
icon?: string | {
|
|
9799
|
+
name: string;
|
|
9800
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9801
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9802
|
+
} | undefined;
|
|
9803
|
+
hidden?: boolean | undefined;
|
|
9804
|
+
root?: string | undefined;
|
|
9805
|
+
})[];
|
|
9806
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9807
|
+
} | {
|
|
9808
|
+
pages: any[];
|
|
9809
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9810
|
+
}) & ({
|
|
9811
|
+
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
9812
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9813
|
+
} | {
|
|
9814
|
+
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
9815
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9816
|
+
} | {
|
|
9817
|
+
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
9818
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9819
|
+
} | {
|
|
9820
|
+
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
9821
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9822
|
+
} | {
|
|
9823
|
+
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
9824
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9825
|
+
} | {
|
|
9826
|
+
groups: ({
|
|
9827
|
+
openapi: (string | string[] | {
|
|
9828
|
+
source: string;
|
|
9829
|
+
directory?: string | undefined;
|
|
9830
|
+
}) & (string | string[] | {
|
|
9831
|
+
source: string;
|
|
9832
|
+
directory?: string | undefined;
|
|
9833
|
+
} | undefined);
|
|
9834
|
+
group: string;
|
|
9835
|
+
icon?: string | {
|
|
9836
|
+
name: string;
|
|
9837
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9838
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9839
|
+
} | undefined;
|
|
9840
|
+
hidden?: boolean | undefined;
|
|
9841
|
+
root?: string | undefined;
|
|
9842
|
+
} | {
|
|
9843
|
+
group: string;
|
|
9844
|
+
asyncapi: (string | string[] | {
|
|
9845
|
+
source: string;
|
|
9846
|
+
directory?: string | undefined;
|
|
9847
|
+
}) & (string | string[] | {
|
|
9848
|
+
source: string;
|
|
9849
|
+
directory?: string | undefined;
|
|
9850
|
+
} | undefined);
|
|
9851
|
+
icon?: string | {
|
|
9852
|
+
name: string;
|
|
9853
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9854
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9855
|
+
} | undefined;
|
|
9856
|
+
hidden?: boolean | undefined;
|
|
9857
|
+
root?: string | undefined;
|
|
9858
|
+
} | {
|
|
9859
|
+
group: string;
|
|
9860
|
+
pages: any[];
|
|
9861
|
+
icon?: string | {
|
|
9862
|
+
name: string;
|
|
9863
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9864
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9865
|
+
} | undefined;
|
|
9866
|
+
hidden?: boolean | undefined;
|
|
9867
|
+
root?: string | undefined;
|
|
9868
|
+
})[];
|
|
9869
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9870
|
+
} | {
|
|
9871
|
+
pages: any[];
|
|
9872
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
9873
|
+
} | undefined);
|
|
9874
|
+
description?: string | undefined;
|
|
9875
|
+
logo?: string | {
|
|
9876
|
+
light: string;
|
|
9877
|
+
dark: string;
|
|
9878
|
+
href?: string | undefined;
|
|
9879
|
+
} | undefined;
|
|
9880
|
+
favicon?: string | {
|
|
9881
|
+
light: string;
|
|
9882
|
+
dark: string;
|
|
9883
|
+
} | undefined;
|
|
9884
|
+
api?: {
|
|
9885
|
+
openapi?: string | string[] | {
|
|
9886
|
+
source: string;
|
|
9887
|
+
directory?: string | undefined;
|
|
9888
|
+
} | undefined;
|
|
9889
|
+
asyncapi?: string | string[] | {
|
|
9890
|
+
source: string;
|
|
9891
|
+
directory?: string | undefined;
|
|
9892
|
+
} | undefined;
|
|
9893
|
+
playground?: {
|
|
9894
|
+
display?: "simple" | "none" | "interactive" | undefined;
|
|
9895
|
+
proxy?: boolean | undefined;
|
|
9896
|
+
} | undefined;
|
|
9897
|
+
examples?: {
|
|
9898
|
+
defaults?: "all" | "required" | undefined;
|
|
9899
|
+
languages?: string[] | undefined;
|
|
9900
|
+
} | undefined;
|
|
9901
|
+
mdx?: {
|
|
9902
|
+
auth?: {
|
|
9903
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
9904
|
+
name?: string | undefined;
|
|
9905
|
+
} | undefined;
|
|
9906
|
+
server?: string | string[] | undefined;
|
|
9907
|
+
} | undefined;
|
|
9908
|
+
} | undefined;
|
|
9909
|
+
appearance?: {
|
|
9910
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
9911
|
+
strict?: boolean | undefined;
|
|
9912
|
+
} | undefined;
|
|
9913
|
+
background?: {
|
|
9914
|
+
image?: string | {
|
|
9915
|
+
light: string;
|
|
9916
|
+
dark: string;
|
|
9917
|
+
} | undefined;
|
|
9918
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
9919
|
+
color?: {
|
|
9920
|
+
light?: string | undefined;
|
|
9921
|
+
dark?: string | undefined;
|
|
9922
|
+
} | undefined;
|
|
9923
|
+
} | undefined;
|
|
9924
|
+
navbar?: {
|
|
9925
|
+
links?: {
|
|
9926
|
+
href: string;
|
|
9927
|
+
label: string;
|
|
9928
|
+
}[] | undefined;
|
|
9929
|
+
primary?: {
|
|
9930
|
+
type: "button";
|
|
9931
|
+
href: string;
|
|
9932
|
+
label: string;
|
|
9933
|
+
} | {
|
|
9934
|
+
type: "github";
|
|
9935
|
+
href: string;
|
|
9936
|
+
} | undefined;
|
|
9937
|
+
} | undefined;
|
|
9938
|
+
footer?: {
|
|
9939
|
+
socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
|
|
9940
|
+
links?: {
|
|
9941
|
+
items: {
|
|
9942
|
+
href: string;
|
|
9943
|
+
label: string;
|
|
9944
|
+
}[];
|
|
9945
|
+
header?: string | undefined;
|
|
9946
|
+
}[] | undefined;
|
|
9947
|
+
} | undefined;
|
|
9948
|
+
search?: {
|
|
9949
|
+
prompt?: string | undefined;
|
|
9950
|
+
} | undefined;
|
|
9951
|
+
seo?: {
|
|
9952
|
+
metatags?: Record<string, string> | undefined;
|
|
9953
|
+
indexing?: "all" | "navigable" | undefined;
|
|
9954
|
+
} | undefined;
|
|
9955
|
+
fonts?: {
|
|
9956
|
+
family: string;
|
|
9957
|
+
weight?: number | undefined;
|
|
9958
|
+
source?: string | undefined;
|
|
9959
|
+
format?: "woff" | "woff2" | undefined;
|
|
9960
|
+
} | {
|
|
9961
|
+
heading?: {
|
|
9962
|
+
family: string;
|
|
9963
|
+
weight?: number | undefined;
|
|
9964
|
+
source?: string | undefined;
|
|
9965
|
+
format?: "woff" | "woff2" | undefined;
|
|
9966
|
+
} | undefined;
|
|
9967
|
+
body?: {
|
|
9968
|
+
family: string;
|
|
9969
|
+
weight?: number | undefined;
|
|
9970
|
+
source?: string | undefined;
|
|
9971
|
+
format?: "woff" | "woff2" | undefined;
|
|
9972
|
+
} | undefined;
|
|
9973
|
+
} | undefined;
|
|
9974
|
+
icons?: {
|
|
9975
|
+
library: "fontawesome" | "lucide";
|
|
9976
|
+
} | undefined;
|
|
9977
|
+
styling?: {
|
|
9978
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
9979
|
+
codeblocks?: "dark" | "system" | undefined;
|
|
9980
|
+
} | undefined;
|
|
9981
|
+
redirects?: {
|
|
9982
|
+
source: string;
|
|
9983
|
+
destination: string;
|
|
9984
|
+
permanent?: boolean | undefined;
|
|
9985
|
+
}[] | undefined;
|
|
9986
|
+
integrations?: {
|
|
9987
|
+
amplitude?: {
|
|
9988
|
+
apiKey: string;
|
|
9989
|
+
} | undefined;
|
|
9990
|
+
clearbit?: {
|
|
9991
|
+
publicApiKey: string;
|
|
9992
|
+
} | undefined;
|
|
9993
|
+
fathom?: {
|
|
9994
|
+
siteId: string;
|
|
9995
|
+
} | undefined;
|
|
9996
|
+
frontchat?: {
|
|
9997
|
+
snippetId: string;
|
|
9998
|
+
} | undefined;
|
|
9999
|
+
ga4?: {
|
|
10000
|
+
measurementId: string;
|
|
10001
|
+
} | undefined;
|
|
10002
|
+
gtm?: {
|
|
10003
|
+
tagId: string;
|
|
10004
|
+
} | undefined;
|
|
10005
|
+
heap?: {
|
|
10006
|
+
appId: string;
|
|
10007
|
+
} | undefined;
|
|
10008
|
+
hotjar?: {
|
|
10009
|
+
hjid: string;
|
|
10010
|
+
hjsv: string;
|
|
10011
|
+
} | undefined;
|
|
10012
|
+
intercom?: {
|
|
10013
|
+
appId: string;
|
|
10014
|
+
} | undefined;
|
|
10015
|
+
koala?: {
|
|
10016
|
+
publicApiKey: string;
|
|
10017
|
+
} | undefined;
|
|
10018
|
+
logrocket?: {
|
|
10019
|
+
appId: string;
|
|
10020
|
+
} | undefined;
|
|
10021
|
+
mixpanel?: {
|
|
10022
|
+
projectToken: string;
|
|
10023
|
+
} | undefined;
|
|
10024
|
+
osano?: {
|
|
10025
|
+
scriptSource: string;
|
|
10026
|
+
} | undefined;
|
|
10027
|
+
pirsch?: {
|
|
10028
|
+
id: string;
|
|
10029
|
+
} | undefined;
|
|
10030
|
+
posthog?: {
|
|
10031
|
+
apiKey: string;
|
|
10032
|
+
apiHost?: string | undefined;
|
|
10033
|
+
} | undefined;
|
|
10034
|
+
plausible?: {
|
|
10035
|
+
domain: string;
|
|
10036
|
+
server?: string | undefined;
|
|
10037
|
+
} | undefined;
|
|
10038
|
+
segment?: {
|
|
10039
|
+
key: string;
|
|
10040
|
+
} | undefined;
|
|
10041
|
+
telemetry?: {
|
|
10042
|
+
enabled?: boolean | undefined;
|
|
10043
|
+
} | undefined;
|
|
10044
|
+
cookies?: {
|
|
10045
|
+
key?: string | undefined;
|
|
10046
|
+
value?: string | undefined;
|
|
10047
|
+
} | undefined;
|
|
10048
|
+
} | undefined;
|
|
10049
|
+
banner?: {
|
|
10050
|
+
content: string;
|
|
10051
|
+
dismissible?: boolean | undefined;
|
|
10052
|
+
} | undefined;
|
|
10053
|
+
errors?: {
|
|
10054
|
+
'404': {
|
|
10055
|
+
redirect: boolean;
|
|
10056
|
+
};
|
|
10057
|
+
} | undefined;
|
|
10058
|
+
contextual?: {
|
|
10059
|
+
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
10060
|
+
} | undefined;
|
|
10061
|
+
}, {
|
|
10062
|
+
name: string;
|
|
10063
|
+
theme: "almond";
|
|
10064
|
+
colors: {
|
|
10065
|
+
primary: string;
|
|
10066
|
+
light?: string | undefined;
|
|
10067
|
+
dark?: string | undefined;
|
|
10068
|
+
};
|
|
10069
|
+
navigation: ({
|
|
10070
|
+
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
10071
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10072
|
+
} | {
|
|
10073
|
+
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
10074
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10075
|
+
} | {
|
|
10076
|
+
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
10077
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10078
|
+
} | {
|
|
10079
|
+
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
10080
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10081
|
+
} | {
|
|
10082
|
+
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
10083
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10084
|
+
} | {
|
|
10085
|
+
groups: ({
|
|
10086
|
+
openapi: (string | string[] | {
|
|
10087
|
+
source: string;
|
|
10088
|
+
directory?: string | undefined;
|
|
10089
|
+
}) & (string | string[] | {
|
|
10090
|
+
source: string;
|
|
10091
|
+
directory?: string | undefined;
|
|
10092
|
+
} | undefined);
|
|
10093
|
+
group: string;
|
|
10094
|
+
icon?: string | {
|
|
10095
|
+
name: string;
|
|
10096
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10097
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
10098
|
+
} | undefined;
|
|
10099
|
+
hidden?: boolean | undefined;
|
|
10100
|
+
root?: string | undefined;
|
|
10101
|
+
} | {
|
|
10102
|
+
group: string;
|
|
10103
|
+
asyncapi: (string | string[] | {
|
|
10104
|
+
source: string;
|
|
10105
|
+
directory?: string | undefined;
|
|
10106
|
+
}) & (string | string[] | {
|
|
10107
|
+
source: string;
|
|
10108
|
+
directory?: string | undefined;
|
|
10109
|
+
} | undefined);
|
|
10110
|
+
icon?: string | {
|
|
10111
|
+
name: string;
|
|
10112
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10113
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
10114
|
+
} | undefined;
|
|
10115
|
+
hidden?: boolean | undefined;
|
|
10116
|
+
root?: string | undefined;
|
|
10117
|
+
} | {
|
|
10118
|
+
group: string;
|
|
10119
|
+
pages: any[];
|
|
10120
|
+
icon?: string | {
|
|
10121
|
+
name: string;
|
|
10122
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10123
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
10124
|
+
} | undefined;
|
|
10125
|
+
hidden?: boolean | undefined;
|
|
10126
|
+
root?: string | undefined;
|
|
10127
|
+
})[];
|
|
10128
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10129
|
+
} | {
|
|
10130
|
+
pages: any[];
|
|
10131
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10132
|
+
}) & ({
|
|
10133
|
+
languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
10134
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10135
|
+
} | {
|
|
10136
|
+
versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
10137
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10138
|
+
} | {
|
|
10139
|
+
tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
10140
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10141
|
+
} | {
|
|
10142
|
+
dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
10143
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10144
|
+
} | {
|
|
10145
|
+
anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
10146
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10147
|
+
} | {
|
|
10148
|
+
groups: ({
|
|
10149
|
+
openapi: (string | string[] | {
|
|
10150
|
+
source: string;
|
|
10151
|
+
directory?: string | undefined;
|
|
10152
|
+
}) & (string | string[] | {
|
|
10153
|
+
source: string;
|
|
10154
|
+
directory?: string | undefined;
|
|
10155
|
+
} | undefined);
|
|
10156
|
+
group: string;
|
|
10157
|
+
icon?: string | {
|
|
10158
|
+
name: string;
|
|
10159
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10160
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
10161
|
+
} | undefined;
|
|
10162
|
+
hidden?: boolean | undefined;
|
|
10163
|
+
root?: string | undefined;
|
|
10164
|
+
} | {
|
|
10165
|
+
group: string;
|
|
10166
|
+
asyncapi: (string | string[] | {
|
|
10167
|
+
source: string;
|
|
10168
|
+
directory?: string | undefined;
|
|
10169
|
+
}) & (string | string[] | {
|
|
10170
|
+
source: string;
|
|
10171
|
+
directory?: string | undefined;
|
|
10172
|
+
} | undefined);
|
|
10173
|
+
icon?: string | {
|
|
10174
|
+
name: string;
|
|
10175
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10176
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
10177
|
+
} | undefined;
|
|
10178
|
+
hidden?: boolean | undefined;
|
|
10179
|
+
root?: string | undefined;
|
|
10180
|
+
} | {
|
|
10181
|
+
group: string;
|
|
10182
|
+
pages: any[];
|
|
10183
|
+
icon?: string | {
|
|
10184
|
+
name: string;
|
|
10185
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10186
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
10187
|
+
} | undefined;
|
|
10188
|
+
hidden?: boolean | undefined;
|
|
10189
|
+
root?: string | undefined;
|
|
10190
|
+
})[];
|
|
10191
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10192
|
+
} | {
|
|
10193
|
+
pages: any[];
|
|
10194
|
+
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
10195
|
+
} | undefined);
|
|
10196
|
+
$schema?: string | undefined;
|
|
10197
|
+
description?: string | undefined;
|
|
10198
|
+
logo?: string | {
|
|
10199
|
+
light: string;
|
|
10200
|
+
dark: string;
|
|
10201
|
+
href?: string | undefined;
|
|
10202
|
+
} | undefined;
|
|
10203
|
+
favicon?: string | {
|
|
10204
|
+
light: string;
|
|
10205
|
+
dark: string;
|
|
10206
|
+
} | undefined;
|
|
10207
|
+
api?: {
|
|
10208
|
+
openapi?: string | string[] | {
|
|
10209
|
+
source: string;
|
|
10210
|
+
directory?: string | undefined;
|
|
10211
|
+
} | undefined;
|
|
10212
|
+
asyncapi?: string | string[] | {
|
|
10213
|
+
source: string;
|
|
10214
|
+
directory?: string | undefined;
|
|
10215
|
+
} | undefined;
|
|
10216
|
+
playground?: {
|
|
10217
|
+
display?: "simple" | "none" | "interactive" | undefined;
|
|
10218
|
+
proxy?: boolean | undefined;
|
|
10219
|
+
} | undefined;
|
|
10220
|
+
examples?: {
|
|
10221
|
+
defaults?: "all" | "required" | undefined;
|
|
10222
|
+
languages?: string[] | undefined;
|
|
10223
|
+
} | undefined;
|
|
10224
|
+
mdx?: {
|
|
10225
|
+
auth?: {
|
|
10226
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
10227
|
+
name?: string | undefined;
|
|
10228
|
+
} | undefined;
|
|
10229
|
+
server?: string | string[] | undefined;
|
|
10230
|
+
} | undefined;
|
|
10231
|
+
} | undefined;
|
|
10232
|
+
appearance?: {
|
|
10233
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
10234
|
+
strict?: boolean | undefined;
|
|
10235
|
+
} | undefined;
|
|
10236
|
+
background?: {
|
|
10237
|
+
image?: string | {
|
|
10238
|
+
light: string;
|
|
10239
|
+
dark: string;
|
|
10240
|
+
} | undefined;
|
|
10241
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
10242
|
+
color?: {
|
|
10243
|
+
light?: string | undefined;
|
|
10244
|
+
dark?: string | undefined;
|
|
10245
|
+
} | undefined;
|
|
10246
|
+
} | undefined;
|
|
10247
|
+
navbar?: {
|
|
10248
|
+
links?: {
|
|
10249
|
+
href: string;
|
|
10250
|
+
label: string;
|
|
10251
|
+
}[] | undefined;
|
|
10252
|
+
primary?: {
|
|
10253
|
+
type: "button";
|
|
10254
|
+
href: string;
|
|
10255
|
+
label: string;
|
|
10256
|
+
} | {
|
|
10257
|
+
type: "github";
|
|
10258
|
+
href: string;
|
|
10259
|
+
} | undefined;
|
|
10260
|
+
} | undefined;
|
|
10261
|
+
footer?: {
|
|
10262
|
+
socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
|
|
10263
|
+
links?: {
|
|
10264
|
+
items: {
|
|
10265
|
+
href: string;
|
|
10266
|
+
label: string;
|
|
10267
|
+
}[];
|
|
10268
|
+
header?: string | undefined;
|
|
10269
|
+
}[] | undefined;
|
|
10270
|
+
} | undefined;
|
|
10271
|
+
search?: {
|
|
10272
|
+
prompt?: string | undefined;
|
|
10273
|
+
} | undefined;
|
|
10274
|
+
seo?: {
|
|
10275
|
+
metatags?: Record<string, string> | undefined;
|
|
10276
|
+
indexing?: "all" | "navigable" | undefined;
|
|
10277
|
+
} | undefined;
|
|
10278
|
+
fonts?: {
|
|
10279
|
+
family: string;
|
|
10280
|
+
weight?: number | undefined;
|
|
10281
|
+
source?: string | undefined;
|
|
10282
|
+
format?: "woff" | "woff2" | undefined;
|
|
10283
|
+
} | {
|
|
10284
|
+
heading?: {
|
|
10285
|
+
family: string;
|
|
10286
|
+
weight?: number | undefined;
|
|
10287
|
+
source?: string | undefined;
|
|
10288
|
+
format?: "woff" | "woff2" | undefined;
|
|
10289
|
+
} | undefined;
|
|
10290
|
+
body?: {
|
|
10291
|
+
family: string;
|
|
10292
|
+
weight?: number | undefined;
|
|
10293
|
+
source?: string | undefined;
|
|
10294
|
+
format?: "woff" | "woff2" | undefined;
|
|
10295
|
+
} | undefined;
|
|
10296
|
+
} | undefined;
|
|
10297
|
+
icons?: {
|
|
10298
|
+
library: "fontawesome" | "lucide";
|
|
10299
|
+
} | undefined;
|
|
10300
|
+
styling?: {
|
|
10301
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
10302
|
+
codeblocks?: "dark" | "system" | undefined;
|
|
10303
|
+
} | undefined;
|
|
10304
|
+
redirects?: {
|
|
10305
|
+
source: string;
|
|
10306
|
+
destination: string;
|
|
10307
|
+
permanent?: boolean | undefined;
|
|
10308
|
+
}[] | undefined;
|
|
10309
|
+
integrations?: {
|
|
10310
|
+
amplitude?: {
|
|
10311
|
+
apiKey: string;
|
|
10312
|
+
} | undefined;
|
|
10313
|
+
clearbit?: {
|
|
10314
|
+
publicApiKey: string;
|
|
10315
|
+
} | undefined;
|
|
10316
|
+
fathom?: {
|
|
10317
|
+
siteId: string;
|
|
10318
|
+
} | undefined;
|
|
10319
|
+
frontchat?: {
|
|
10320
|
+
snippetId: string;
|
|
10321
|
+
} | undefined;
|
|
10322
|
+
ga4?: {
|
|
10323
|
+
measurementId: string;
|
|
10324
|
+
} | undefined;
|
|
10325
|
+
gtm?: {
|
|
10326
|
+
tagId: string;
|
|
10327
|
+
} | undefined;
|
|
10328
|
+
heap?: {
|
|
10329
|
+
appId: string;
|
|
10330
|
+
} | undefined;
|
|
10331
|
+
hotjar?: {
|
|
10332
|
+
hjid: string;
|
|
10333
|
+
hjsv: string;
|
|
10334
|
+
} | undefined;
|
|
10335
|
+
intercom?: {
|
|
10336
|
+
appId: string;
|
|
10337
|
+
} | undefined;
|
|
10338
|
+
koala?: {
|
|
10339
|
+
publicApiKey: string;
|
|
10340
|
+
} | undefined;
|
|
10341
|
+
logrocket?: {
|
|
10342
|
+
appId: string;
|
|
10343
|
+
} | undefined;
|
|
10344
|
+
mixpanel?: {
|
|
10345
|
+
projectToken: string;
|
|
10346
|
+
} | undefined;
|
|
10347
|
+
osano?: {
|
|
10348
|
+
scriptSource: string;
|
|
10349
|
+
} | undefined;
|
|
10350
|
+
pirsch?: {
|
|
10351
|
+
id: string;
|
|
10352
|
+
} | undefined;
|
|
10353
|
+
posthog?: {
|
|
10354
|
+
apiKey: string;
|
|
10355
|
+
apiHost?: string | undefined;
|
|
10356
|
+
} | undefined;
|
|
10357
|
+
plausible?: {
|
|
10358
|
+
domain: string;
|
|
10359
|
+
server?: string | undefined;
|
|
10360
|
+
} | undefined;
|
|
10361
|
+
segment?: {
|
|
10362
|
+
key: string;
|
|
10363
|
+
} | undefined;
|
|
10364
|
+
telemetry?: {
|
|
10365
|
+
enabled?: boolean | undefined;
|
|
10366
|
+
} | undefined;
|
|
10367
|
+
cookies?: {
|
|
10368
|
+
key?: string | undefined;
|
|
10369
|
+
value?: string | undefined;
|
|
10370
|
+
} | undefined;
|
|
10371
|
+
} | undefined;
|
|
10372
|
+
banner?: {
|
|
10373
|
+
content: string;
|
|
10374
|
+
dismissible?: boolean | undefined;
|
|
10375
|
+
} | undefined;
|
|
10376
|
+
errors?: {
|
|
10377
|
+
'404': {
|
|
10378
|
+
redirect?: boolean | undefined;
|
|
10379
|
+
};
|
|
10380
|
+
} | undefined;
|
|
10381
|
+
contextual?: {
|
|
10382
|
+
options: ("copy" | "view" | "chatgpt" | "claude")[];
|
|
10383
|
+
} | undefined;
|
|
8654
10384
|
}>]>;
|