@mintlify/validation 0.1.240 → 0.1.242

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (25) hide show
  1. package/dist/index.d.ts +1 -0
  2. package/dist/index.js +1 -0
  3. package/dist/mint-config/schemas/v2/index.d.ts +180 -180
  4. package/dist/mint-config/schemas/v2/properties/background.d.ts +10 -10
  5. package/dist/mint-config/schemas/v2/properties/background.js +2 -2
  6. package/dist/mint-config/schemas/v2/properties/font.d.ts +2 -0
  7. package/dist/mint-config/schemas/v2/properties/index.d.ts +1 -0
  8. package/dist/mint-config/schemas/v2/properties/index.js +1 -0
  9. package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +10 -10
  10. package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +2 -2
  11. package/dist/mint-config/schemas/v2/properties/navigation/global.d.ts +14 -14
  12. package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +18 -18
  13. package/dist/mint-config/schemas/v2/properties/reusable/color.d.ts +7 -7
  14. package/dist/mint-config/schemas/v2/properties/reusable/color.js +3 -3
  15. package/dist/mint-config/schemas/v2/properties/styling.d.ts +3 -3
  16. package/dist/mint-config/schemas/v2/properties/styling.js +5 -1
  17. package/dist/mint-config/schemas/v2/themes/mint.d.ts +45 -45
  18. package/dist/mint-config/schemas/v2/themes/prism.d.ts +45 -45
  19. package/dist/mint-config/schemas/v2/themes/quill.d.ts +45 -45
  20. package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +31 -31
  21. package/dist/mint-config/schemas/v2/themes/venus.d.ts +45 -45
  22. package/dist/mint-config/upgrades/updateNavigationToDocsConfig.js +3 -2
  23. package/dist/mint-config/upgrades/upgradeToDocsConfig.js +23 -20
  24. package/dist/tsconfig.build.tsbuildinfo +1 -1
  25. package/package.json +2 -2
@@ -112,14 +112,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
112
112
  }>]>>;
113
113
  decoration: z.ZodDefault<z.ZodEnum<["gradient", "grid", "windows", "none"]>>;
114
114
  color: z.ZodOptional<z.ZodObject<{
115
- light: z.ZodString;
116
- dark: z.ZodString;
115
+ light: z.ZodOptional<z.ZodString>;
116
+ dark: z.ZodOptional<z.ZodString>;
117
117
  }, "strict", z.ZodTypeAny, {
118
- light: string;
119
- dark: string;
118
+ light?: string | undefined;
119
+ dark?: string | undefined;
120
120
  }, {
121
- light: string;
122
- dark: string;
121
+ light?: string | undefined;
122
+ dark?: string | undefined;
123
123
  }>>;
124
124
  }, "strip", z.ZodTypeAny, {
125
125
  decoration: "none" | "gradient" | "grid" | "windows";
@@ -128,8 +128,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
128
128
  dark: string;
129
129
  } | undefined;
130
130
  color?: {
131
- light: string;
132
- dark: string;
131
+ light?: string | undefined;
132
+ dark?: string | undefined;
133
133
  } | undefined;
134
134
  }, {
135
135
  image?: string | {
@@ -138,8 +138,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
138
138
  } | undefined;
139
139
  decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
140
140
  color?: {
141
- light: string;
142
- dark: string;
141
+ light?: string | undefined;
142
+ dark?: string | undefined;
143
143
  } | undefined;
144
144
  }>>;
145
145
  topbar: z.ZodOptional<z.ZodObject<{
@@ -610,14 +610,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
610
610
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
611
611
  }>]>>;
612
612
  color: z.ZodOptional<z.ZodObject<{
613
- light: z.ZodString;
614
- dark: z.ZodString;
613
+ light: z.ZodOptional<z.ZodString>;
614
+ dark: z.ZodOptional<z.ZodString>;
615
615
  }, "strict", z.ZodTypeAny, {
616
- light: string;
617
- dark: string;
616
+ light?: string | undefined;
617
+ dark?: string | undefined;
618
618
  }, {
619
- light: string;
620
- dark: string;
619
+ light?: string | undefined;
620
+ dark?: string | undefined;
621
621
  }>>;
622
622
  hidden: z.ZodOptional<z.ZodBoolean>;
623
623
  }, "strip", z.ZodTypeAny, {
@@ -627,8 +627,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
627
627
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
628
628
  } | undefined;
629
629
  color?: {
630
- light: string;
631
- dark: string;
630
+ light?: string | undefined;
631
+ dark?: string | undefined;
632
632
  } | undefined;
633
633
  hidden?: boolean | undefined;
634
634
  }, {
@@ -638,8 +638,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
638
638
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
639
639
  } | undefined;
640
640
  color?: {
641
- light: string;
642
- dark: string;
641
+ light?: string | undefined;
642
+ dark?: string | undefined;
643
643
  } | undefined;
644
644
  hidden?: boolean | undefined;
645
645
  }>, z.ZodObject<{
@@ -689,8 +689,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
689
689
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
690
690
  } | undefined;
691
691
  color?: {
692
- light: string;
693
- dark: string;
692
+ light?: string | undefined;
693
+ dark?: string | undefined;
694
694
  } | undefined;
695
695
  hidden?: boolean | undefined;
696
696
  } & {
@@ -736,8 +736,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
736
736
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
737
737
  } | undefined;
738
738
  color?: {
739
- light: string;
740
- dark: string;
739
+ light?: string | undefined;
740
+ dark?: string | undefined;
741
741
  } | undefined;
742
742
  hidden?: boolean | undefined;
743
743
  } & {
@@ -785,8 +785,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
785
785
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
786
786
  } | undefined;
787
787
  color?: {
788
- light: string;
789
- dark: string;
788
+ light?: string | undefined;
789
+ dark?: string | undefined;
790
790
  } | undefined;
791
791
  hidden?: boolean | undefined;
792
792
  } & {
@@ -834,8 +834,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
834
834
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
835
835
  } | undefined;
836
836
  color?: {
837
- light: string;
838
- dark: string;
837
+ light?: string | undefined;
838
+ dark?: string | undefined;
839
839
  } | undefined;
840
840
  hidden?: boolean | undefined;
841
841
  } & {
@@ -1021,15 +1021,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1021
1021
  styling: z.ZodOptional<z.ZodObject<{
1022
1022
  rounded: z.ZodDefault<z.ZodOptional<z.ZodEnum<["regular", "sharp"]>>>;
1023
1023
  eyebrows: z.ZodDefault<z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>>;
1024
- codeblocks: z.ZodDefault<z.ZodOptional<z.ZodEnum<["auto", "dark"]>>>;
1024
+ codeblocks: z.ZodDefault<z.ZodOptional<z.ZodEnum<["system", "dark"]>>>;
1025
1025
  }, "strip", z.ZodTypeAny, {
1026
1026
  rounded: "regular" | "sharp";
1027
1027
  eyebrows: "section" | "breadcrumbs";
1028
- codeblocks: "dark" | "auto";
1028
+ codeblocks: "dark" | "system";
1029
1029
  }, {
1030
1030
  rounded?: "regular" | "sharp" | undefined;
1031
1031
  eyebrows?: "section" | "breadcrumbs" | undefined;
1032
- codeblocks?: "dark" | "auto" | undefined;
1032
+ codeblocks?: "dark" | "system" | undefined;
1033
1033
  }>>;
1034
1034
  redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
1035
1035
  source: z.ZodString;
@@ -1400,8 +1400,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1400
1400
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1401
1401
  } | undefined;
1402
1402
  color?: {
1403
- light: string;
1404
- dark: string;
1403
+ light?: string | undefined;
1404
+ dark?: string | undefined;
1405
1405
  } | undefined;
1406
1406
  hidden?: boolean | undefined;
1407
1407
  } & {
@@ -1506,8 +1506,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1506
1506
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1507
1507
  } | undefined;
1508
1508
  color?: {
1509
- light: string;
1510
- dark: string;
1509
+ light?: string | undefined;
1510
+ dark?: string | undefined;
1511
1511
  } | undefined;
1512
1512
  hidden?: boolean | undefined;
1513
1513
  } & {
@@ -1551,8 +1551,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1551
1551
  dark: string;
1552
1552
  } | undefined;
1553
1553
  color?: {
1554
- light: string;
1555
- dark: string;
1554
+ light?: string | undefined;
1555
+ dark?: string | undefined;
1556
1556
  } | undefined;
1557
1557
  } | undefined;
1558
1558
  topbar?: {
@@ -1611,7 +1611,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1611
1611
  styling?: {
1612
1612
  rounded: "regular" | "sharp";
1613
1613
  eyebrows: "section" | "breadcrumbs";
1614
- codeblocks: "dark" | "auto";
1614
+ codeblocks: "dark" | "system";
1615
1615
  } | undefined;
1616
1616
  redirects?: {
1617
1617
  source: string;
@@ -1780,8 +1780,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1780
1780
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1781
1781
  } | undefined;
1782
1782
  color?: {
1783
- light: string;
1784
- dark: string;
1783
+ light?: string | undefined;
1784
+ dark?: string | undefined;
1785
1785
  } | undefined;
1786
1786
  hidden?: boolean | undefined;
1787
1787
  } & {
@@ -1886,8 +1886,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1886
1886
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1887
1887
  } | undefined;
1888
1888
  color?: {
1889
- light: string;
1890
- dark: string;
1889
+ light?: string | undefined;
1890
+ dark?: string | undefined;
1891
1891
  } | undefined;
1892
1892
  hidden?: boolean | undefined;
1893
1893
  } & {
@@ -1932,8 +1932,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1932
1932
  } | undefined;
1933
1933
  decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
1934
1934
  color?: {
1935
- light: string;
1936
- dark: string;
1935
+ light?: string | undefined;
1936
+ dark?: string | undefined;
1937
1937
  } | undefined;
1938
1938
  } | undefined;
1939
1939
  topbar?: {
@@ -1992,7 +1992,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1992
1992
  styling?: {
1993
1993
  rounded?: "regular" | "sharp" | undefined;
1994
1994
  eyebrows?: "section" | "breadcrumbs" | undefined;
1995
- codeblocks?: "dark" | "auto" | undefined;
1995
+ codeblocks?: "dark" | "system" | undefined;
1996
1996
  } | undefined;
1997
1997
  redirects?: {
1998
1998
  source: string;
@@ -2167,14 +2167,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2167
2167
  }>]>>;
2168
2168
  decoration: z.ZodDefault<z.ZodEnum<["gradient", "grid", "windows", "none"]>>;
2169
2169
  color: z.ZodOptional<z.ZodObject<{
2170
- light: z.ZodString;
2171
- dark: z.ZodString;
2170
+ light: z.ZodOptional<z.ZodString>;
2171
+ dark: z.ZodOptional<z.ZodString>;
2172
2172
  }, "strict", z.ZodTypeAny, {
2173
- light: string;
2174
- dark: string;
2173
+ light?: string | undefined;
2174
+ dark?: string | undefined;
2175
2175
  }, {
2176
- light: string;
2177
- dark: string;
2176
+ light?: string | undefined;
2177
+ dark?: string | undefined;
2178
2178
  }>>;
2179
2179
  }, "strip", z.ZodTypeAny, {
2180
2180
  decoration: "none" | "gradient" | "grid" | "windows";
@@ -2183,8 +2183,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2183
2183
  dark: string;
2184
2184
  } | undefined;
2185
2185
  color?: {
2186
- light: string;
2187
- dark: string;
2186
+ light?: string | undefined;
2187
+ dark?: string | undefined;
2188
2188
  } | undefined;
2189
2189
  }, {
2190
2190
  image?: string | {
@@ -2193,8 +2193,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2193
2193
  } | undefined;
2194
2194
  decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
2195
2195
  color?: {
2196
- light: string;
2197
- dark: string;
2196
+ light?: string | undefined;
2197
+ dark?: string | undefined;
2198
2198
  } | undefined;
2199
2199
  }>>;
2200
2200
  topbar: z.ZodOptional<z.ZodObject<{
@@ -2665,14 +2665,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2665
2665
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2666
2666
  }>]>>;
2667
2667
  color: z.ZodOptional<z.ZodObject<{
2668
- light: z.ZodString;
2669
- dark: z.ZodString;
2668
+ light: z.ZodOptional<z.ZodString>;
2669
+ dark: z.ZodOptional<z.ZodString>;
2670
2670
  }, "strict", z.ZodTypeAny, {
2671
- light: string;
2672
- dark: string;
2671
+ light?: string | undefined;
2672
+ dark?: string | undefined;
2673
2673
  }, {
2674
- light: string;
2675
- dark: string;
2674
+ light?: string | undefined;
2675
+ dark?: string | undefined;
2676
2676
  }>>;
2677
2677
  hidden: z.ZodOptional<z.ZodBoolean>;
2678
2678
  }, "strip", z.ZodTypeAny, {
@@ -2682,8 +2682,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2682
2682
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2683
2683
  } | undefined;
2684
2684
  color?: {
2685
- light: string;
2686
- dark: string;
2685
+ light?: string | undefined;
2686
+ dark?: string | undefined;
2687
2687
  } | undefined;
2688
2688
  hidden?: boolean | undefined;
2689
2689
  }, {
@@ -2693,8 +2693,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2693
2693
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2694
2694
  } | undefined;
2695
2695
  color?: {
2696
- light: string;
2697
- dark: string;
2696
+ light?: string | undefined;
2697
+ dark?: string | undefined;
2698
2698
  } | undefined;
2699
2699
  hidden?: boolean | undefined;
2700
2700
  }>, z.ZodObject<{
@@ -2744,8 +2744,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2744
2744
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2745
2745
  } | undefined;
2746
2746
  color?: {
2747
- light: string;
2748
- dark: string;
2747
+ light?: string | undefined;
2748
+ dark?: string | undefined;
2749
2749
  } | undefined;
2750
2750
  hidden?: boolean | undefined;
2751
2751
  } & {
@@ -2791,8 +2791,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2791
2791
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2792
2792
  } | undefined;
2793
2793
  color?: {
2794
- light: string;
2795
- dark: string;
2794
+ light?: string | undefined;
2795
+ dark?: string | undefined;
2796
2796
  } | undefined;
2797
2797
  hidden?: boolean | undefined;
2798
2798
  } & {
@@ -2840,8 +2840,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2840
2840
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2841
2841
  } | undefined;
2842
2842
  color?: {
2843
- light: string;
2844
- dark: string;
2843
+ light?: string | undefined;
2844
+ dark?: string | undefined;
2845
2845
  } | undefined;
2846
2846
  hidden?: boolean | undefined;
2847
2847
  } & {
@@ -2889,8 +2889,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2889
2889
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2890
2890
  } | undefined;
2891
2891
  color?: {
2892
- light: string;
2893
- dark: string;
2892
+ light?: string | undefined;
2893
+ dark?: string | undefined;
2894
2894
  } | undefined;
2895
2895
  hidden?: boolean | undefined;
2896
2896
  } & {
@@ -3076,15 +3076,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3076
3076
  styling: z.ZodOptional<z.ZodObject<{
3077
3077
  rounded: z.ZodDefault<z.ZodOptional<z.ZodEnum<["regular", "sharp"]>>>;
3078
3078
  eyebrows: z.ZodDefault<z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>>;
3079
- codeblocks: z.ZodDefault<z.ZodOptional<z.ZodEnum<["auto", "dark"]>>>;
3079
+ codeblocks: z.ZodDefault<z.ZodOptional<z.ZodEnum<["system", "dark"]>>>;
3080
3080
  }, "strip", z.ZodTypeAny, {
3081
3081
  rounded: "regular" | "sharp";
3082
3082
  eyebrows: "section" | "breadcrumbs";
3083
- codeblocks: "dark" | "auto";
3083
+ codeblocks: "dark" | "system";
3084
3084
  }, {
3085
3085
  rounded?: "regular" | "sharp" | undefined;
3086
3086
  eyebrows?: "section" | "breadcrumbs" | undefined;
3087
- codeblocks?: "dark" | "auto" | undefined;
3087
+ codeblocks?: "dark" | "system" | undefined;
3088
3088
  }>>;
3089
3089
  redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
3090
3090
  source: z.ZodString;
@@ -3455,8 +3455,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3455
3455
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3456
3456
  } | undefined;
3457
3457
  color?: {
3458
- light: string;
3459
- dark: string;
3458
+ light?: string | undefined;
3459
+ dark?: string | undefined;
3460
3460
  } | undefined;
3461
3461
  hidden?: boolean | undefined;
3462
3462
  } & {
@@ -3561,8 +3561,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3561
3561
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3562
3562
  } | undefined;
3563
3563
  color?: {
3564
- light: string;
3565
- dark: string;
3564
+ light?: string | undefined;
3565
+ dark?: string | undefined;
3566
3566
  } | undefined;
3567
3567
  hidden?: boolean | undefined;
3568
3568
  } & {
@@ -3606,8 +3606,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3606
3606
  dark: string;
3607
3607
  } | undefined;
3608
3608
  color?: {
3609
- light: string;
3610
- dark: string;
3609
+ light?: string | undefined;
3610
+ dark?: string | undefined;
3611
3611
  } | undefined;
3612
3612
  } | undefined;
3613
3613
  topbar?: {
@@ -3666,7 +3666,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3666
3666
  styling?: {
3667
3667
  rounded: "regular" | "sharp";
3668
3668
  eyebrows: "section" | "breadcrumbs";
3669
- codeblocks: "dark" | "auto";
3669
+ codeblocks: "dark" | "system";
3670
3670
  } | undefined;
3671
3671
  redirects?: {
3672
3672
  source: string;
@@ -3835,8 +3835,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3835
3835
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3836
3836
  } | undefined;
3837
3837
  color?: {
3838
- light: string;
3839
- dark: string;
3838
+ light?: string | undefined;
3839
+ dark?: string | undefined;
3840
3840
  } | undefined;
3841
3841
  hidden?: boolean | undefined;
3842
3842
  } & {
@@ -3941,8 +3941,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3941
3941
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3942
3942
  } | undefined;
3943
3943
  color?: {
3944
- light: string;
3945
- dark: string;
3944
+ light?: string | undefined;
3945
+ dark?: string | undefined;
3946
3946
  } | undefined;
3947
3947
  hidden?: boolean | undefined;
3948
3948
  } & {
@@ -3987,8 +3987,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3987
3987
  } | undefined;
3988
3988
  decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
3989
3989
  color?: {
3990
- light: string;
3991
- dark: string;
3990
+ light?: string | undefined;
3991
+ dark?: string | undefined;
3992
3992
  } | undefined;
3993
3993
  } | undefined;
3994
3994
  topbar?: {
@@ -4047,7 +4047,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4047
4047
  styling?: {
4048
4048
  rounded?: "regular" | "sharp" | undefined;
4049
4049
  eyebrows?: "section" | "breadcrumbs" | undefined;
4050
- codeblocks?: "dark" | "auto" | undefined;
4050
+ codeblocks?: "dark" | "system" | undefined;
4051
4051
  } | undefined;
4052
4052
  redirects?: {
4053
4053
  source: string;
@@ -4222,14 +4222,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4222
4222
  }>]>>;
4223
4223
  decoration: z.ZodDefault<z.ZodEnum<["gradient", "grid", "windows", "none"]>>;
4224
4224
  color: z.ZodOptional<z.ZodObject<{
4225
- light: z.ZodString;
4226
- dark: z.ZodString;
4225
+ light: z.ZodOptional<z.ZodString>;
4226
+ dark: z.ZodOptional<z.ZodString>;
4227
4227
  }, "strict", z.ZodTypeAny, {
4228
- light: string;
4229
- dark: string;
4228
+ light?: string | undefined;
4229
+ dark?: string | undefined;
4230
4230
  }, {
4231
- light: string;
4232
- dark: string;
4231
+ light?: string | undefined;
4232
+ dark?: string | undefined;
4233
4233
  }>>;
4234
4234
  }, "strip", z.ZodTypeAny, {
4235
4235
  decoration: "none" | "gradient" | "grid" | "windows";
@@ -4238,8 +4238,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4238
4238
  dark: string;
4239
4239
  } | undefined;
4240
4240
  color?: {
4241
- light: string;
4242
- dark: string;
4241
+ light?: string | undefined;
4242
+ dark?: string | undefined;
4243
4243
  } | undefined;
4244
4244
  }, {
4245
4245
  image?: string | {
@@ -4248,8 +4248,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4248
4248
  } | undefined;
4249
4249
  decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
4250
4250
  color?: {
4251
- light: string;
4252
- dark: string;
4251
+ light?: string | undefined;
4252
+ dark?: string | undefined;
4253
4253
  } | undefined;
4254
4254
  }>>;
4255
4255
  topbar: z.ZodOptional<z.ZodObject<{
@@ -4720,14 +4720,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4720
4720
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4721
4721
  }>]>>;
4722
4722
  color: z.ZodOptional<z.ZodObject<{
4723
- light: z.ZodString;
4724
- dark: z.ZodString;
4723
+ light: z.ZodOptional<z.ZodString>;
4724
+ dark: z.ZodOptional<z.ZodString>;
4725
4725
  }, "strict", z.ZodTypeAny, {
4726
- light: string;
4727
- dark: string;
4726
+ light?: string | undefined;
4727
+ dark?: string | undefined;
4728
4728
  }, {
4729
- light: string;
4730
- dark: string;
4729
+ light?: string | undefined;
4730
+ dark?: string | undefined;
4731
4731
  }>>;
4732
4732
  hidden: z.ZodOptional<z.ZodBoolean>;
4733
4733
  }, "strip", z.ZodTypeAny, {
@@ -4737,8 +4737,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4737
4737
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4738
4738
  } | undefined;
4739
4739
  color?: {
4740
- light: string;
4741
- dark: string;
4740
+ light?: string | undefined;
4741
+ dark?: string | undefined;
4742
4742
  } | undefined;
4743
4743
  hidden?: boolean | undefined;
4744
4744
  }, {
@@ -4748,8 +4748,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4748
4748
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4749
4749
  } | undefined;
4750
4750
  color?: {
4751
- light: string;
4752
- dark: string;
4751
+ light?: string | undefined;
4752
+ dark?: string | undefined;
4753
4753
  } | undefined;
4754
4754
  hidden?: boolean | undefined;
4755
4755
  }>, z.ZodObject<{
@@ -4799,8 +4799,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4799
4799
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4800
4800
  } | undefined;
4801
4801
  color?: {
4802
- light: string;
4803
- dark: string;
4802
+ light?: string | undefined;
4803
+ dark?: string | undefined;
4804
4804
  } | undefined;
4805
4805
  hidden?: boolean | undefined;
4806
4806
  } & {
@@ -4846,8 +4846,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4846
4846
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4847
4847
  } | undefined;
4848
4848
  color?: {
4849
- light: string;
4850
- dark: string;
4849
+ light?: string | undefined;
4850
+ dark?: string | undefined;
4851
4851
  } | undefined;
4852
4852
  hidden?: boolean | undefined;
4853
4853
  } & {
@@ -4895,8 +4895,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4895
4895
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4896
4896
  } | undefined;
4897
4897
  color?: {
4898
- light: string;
4899
- dark: string;
4898
+ light?: string | undefined;
4899
+ dark?: string | undefined;
4900
4900
  } | undefined;
4901
4901
  hidden?: boolean | undefined;
4902
4902
  } & {
@@ -4944,8 +4944,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4944
4944
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4945
4945
  } | undefined;
4946
4946
  color?: {
4947
- light: string;
4948
- dark: string;
4947
+ light?: string | undefined;
4948
+ dark?: string | undefined;
4949
4949
  } | undefined;
4950
4950
  hidden?: boolean | undefined;
4951
4951
  } & {
@@ -5131,15 +5131,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5131
5131
  styling: z.ZodOptional<z.ZodObject<{
5132
5132
  rounded: z.ZodDefault<z.ZodOptional<z.ZodEnum<["regular", "sharp"]>>>;
5133
5133
  eyebrows: z.ZodDefault<z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>>;
5134
- codeblocks: z.ZodDefault<z.ZodOptional<z.ZodEnum<["auto", "dark"]>>>;
5134
+ codeblocks: z.ZodDefault<z.ZodOptional<z.ZodEnum<["system", "dark"]>>>;
5135
5135
  }, "strip", z.ZodTypeAny, {
5136
5136
  rounded: "regular" | "sharp";
5137
5137
  eyebrows: "section" | "breadcrumbs";
5138
- codeblocks: "dark" | "auto";
5138
+ codeblocks: "dark" | "system";
5139
5139
  }, {
5140
5140
  rounded?: "regular" | "sharp" | undefined;
5141
5141
  eyebrows?: "section" | "breadcrumbs" | undefined;
5142
- codeblocks?: "dark" | "auto" | undefined;
5142
+ codeblocks?: "dark" | "system" | undefined;
5143
5143
  }>>;
5144
5144
  redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
5145
5145
  source: z.ZodString;
@@ -5510,8 +5510,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5510
5510
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5511
5511
  } | undefined;
5512
5512
  color?: {
5513
- light: string;
5514
- dark: string;
5513
+ light?: string | undefined;
5514
+ dark?: string | undefined;
5515
5515
  } | undefined;
5516
5516
  hidden?: boolean | undefined;
5517
5517
  } & {
@@ -5616,8 +5616,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5616
5616
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5617
5617
  } | undefined;
5618
5618
  color?: {
5619
- light: string;
5620
- dark: string;
5619
+ light?: string | undefined;
5620
+ dark?: string | undefined;
5621
5621
  } | undefined;
5622
5622
  hidden?: boolean | undefined;
5623
5623
  } & {
@@ -5661,8 +5661,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5661
5661
  dark: string;
5662
5662
  } | undefined;
5663
5663
  color?: {
5664
- light: string;
5665
- dark: string;
5664
+ light?: string | undefined;
5665
+ dark?: string | undefined;
5666
5666
  } | undefined;
5667
5667
  } | undefined;
5668
5668
  topbar?: {
@@ -5721,7 +5721,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5721
5721
  styling?: {
5722
5722
  rounded: "regular" | "sharp";
5723
5723
  eyebrows: "section" | "breadcrumbs";
5724
- codeblocks: "dark" | "auto";
5724
+ codeblocks: "dark" | "system";
5725
5725
  } | undefined;
5726
5726
  redirects?: {
5727
5727
  source: string;
@@ -5890,8 +5890,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5890
5890
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5891
5891
  } | undefined;
5892
5892
  color?: {
5893
- light: string;
5894
- dark: string;
5893
+ light?: string | undefined;
5894
+ dark?: string | undefined;
5895
5895
  } | undefined;
5896
5896
  hidden?: boolean | undefined;
5897
5897
  } & {
@@ -5996,8 +5996,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5996
5996
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5997
5997
  } | undefined;
5998
5998
  color?: {
5999
- light: string;
6000
- dark: string;
5999
+ light?: string | undefined;
6000
+ dark?: string | undefined;
6001
6001
  } | undefined;
6002
6002
  hidden?: boolean | undefined;
6003
6003
  } & {
@@ -6042,8 +6042,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6042
6042
  } | undefined;
6043
6043
  decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
6044
6044
  color?: {
6045
- light: string;
6046
- dark: string;
6045
+ light?: string | undefined;
6046
+ dark?: string | undefined;
6047
6047
  } | undefined;
6048
6048
  } | undefined;
6049
6049
  topbar?: {
@@ -6102,7 +6102,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6102
6102
  styling?: {
6103
6103
  rounded?: "regular" | "sharp" | undefined;
6104
6104
  eyebrows?: "section" | "breadcrumbs" | undefined;
6105
- codeblocks?: "dark" | "auto" | undefined;
6105
+ codeblocks?: "dark" | "system" | undefined;
6106
6106
  } | undefined;
6107
6107
  redirects?: {
6108
6108
  source: string;
@@ -6277,14 +6277,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6277
6277
  }>]>>;
6278
6278
  decoration: z.ZodDefault<z.ZodEnum<["gradient", "grid", "windows", "none"]>>;
6279
6279
  color: z.ZodOptional<z.ZodObject<{
6280
- light: z.ZodString;
6281
- dark: z.ZodString;
6280
+ light: z.ZodOptional<z.ZodString>;
6281
+ dark: z.ZodOptional<z.ZodString>;
6282
6282
  }, "strict", z.ZodTypeAny, {
6283
- light: string;
6284
- dark: string;
6283
+ light?: string | undefined;
6284
+ dark?: string | undefined;
6285
6285
  }, {
6286
- light: string;
6287
- dark: string;
6286
+ light?: string | undefined;
6287
+ dark?: string | undefined;
6288
6288
  }>>;
6289
6289
  }, "strip", z.ZodTypeAny, {
6290
6290
  decoration: "none" | "gradient" | "grid" | "windows";
@@ -6293,8 +6293,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6293
6293
  dark: string;
6294
6294
  } | undefined;
6295
6295
  color?: {
6296
- light: string;
6297
- dark: string;
6296
+ light?: string | undefined;
6297
+ dark?: string | undefined;
6298
6298
  } | undefined;
6299
6299
  }, {
6300
6300
  image?: string | {
@@ -6303,8 +6303,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6303
6303
  } | undefined;
6304
6304
  decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
6305
6305
  color?: {
6306
- light: string;
6307
- dark: string;
6306
+ light?: string | undefined;
6307
+ dark?: string | undefined;
6308
6308
  } | undefined;
6309
6309
  }>>;
6310
6310
  topbar: z.ZodOptional<z.ZodObject<{
@@ -6775,14 +6775,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6775
6775
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6776
6776
  }>]>>;
6777
6777
  color: z.ZodOptional<z.ZodObject<{
6778
- light: z.ZodString;
6779
- dark: z.ZodString;
6778
+ light: z.ZodOptional<z.ZodString>;
6779
+ dark: z.ZodOptional<z.ZodString>;
6780
6780
  }, "strict", z.ZodTypeAny, {
6781
- light: string;
6782
- dark: string;
6781
+ light?: string | undefined;
6782
+ dark?: string | undefined;
6783
6783
  }, {
6784
- light: string;
6785
- dark: string;
6784
+ light?: string | undefined;
6785
+ dark?: string | undefined;
6786
6786
  }>>;
6787
6787
  hidden: z.ZodOptional<z.ZodBoolean>;
6788
6788
  }, "strip", z.ZodTypeAny, {
@@ -6792,8 +6792,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6792
6792
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6793
6793
  } | undefined;
6794
6794
  color?: {
6795
- light: string;
6796
- dark: string;
6795
+ light?: string | undefined;
6796
+ dark?: string | undefined;
6797
6797
  } | undefined;
6798
6798
  hidden?: boolean | undefined;
6799
6799
  }, {
@@ -6803,8 +6803,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6803
6803
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6804
6804
  } | undefined;
6805
6805
  color?: {
6806
- light: string;
6807
- dark: string;
6806
+ light?: string | undefined;
6807
+ dark?: string | undefined;
6808
6808
  } | undefined;
6809
6809
  hidden?: boolean | undefined;
6810
6810
  }>, z.ZodObject<{
@@ -6854,8 +6854,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6854
6854
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6855
6855
  } | undefined;
6856
6856
  color?: {
6857
- light: string;
6858
- dark: string;
6857
+ light?: string | undefined;
6858
+ dark?: string | undefined;
6859
6859
  } | undefined;
6860
6860
  hidden?: boolean | undefined;
6861
6861
  } & {
@@ -6901,8 +6901,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6901
6901
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6902
6902
  } | undefined;
6903
6903
  color?: {
6904
- light: string;
6905
- dark: string;
6904
+ light?: string | undefined;
6905
+ dark?: string | undefined;
6906
6906
  } | undefined;
6907
6907
  hidden?: boolean | undefined;
6908
6908
  } & {
@@ -6950,8 +6950,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6950
6950
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6951
6951
  } | undefined;
6952
6952
  color?: {
6953
- light: string;
6954
- dark: string;
6953
+ light?: string | undefined;
6954
+ dark?: string | undefined;
6955
6955
  } | undefined;
6956
6956
  hidden?: boolean | undefined;
6957
6957
  } & {
@@ -6999,8 +6999,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6999
6999
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7000
7000
  } | undefined;
7001
7001
  color?: {
7002
- light: string;
7003
- dark: string;
7002
+ light?: string | undefined;
7003
+ dark?: string | undefined;
7004
7004
  } | undefined;
7005
7005
  hidden?: boolean | undefined;
7006
7006
  } & {
@@ -7186,15 +7186,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7186
7186
  styling: z.ZodOptional<z.ZodObject<{
7187
7187
  rounded: z.ZodDefault<z.ZodOptional<z.ZodEnum<["regular", "sharp"]>>>;
7188
7188
  eyebrows: z.ZodDefault<z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>>;
7189
- codeblocks: z.ZodDefault<z.ZodOptional<z.ZodEnum<["auto", "dark"]>>>;
7189
+ codeblocks: z.ZodDefault<z.ZodOptional<z.ZodEnum<["system", "dark"]>>>;
7190
7190
  }, "strip", z.ZodTypeAny, {
7191
7191
  rounded: "regular" | "sharp";
7192
7192
  eyebrows: "section" | "breadcrumbs";
7193
- codeblocks: "dark" | "auto";
7193
+ codeblocks: "dark" | "system";
7194
7194
  }, {
7195
7195
  rounded?: "regular" | "sharp" | undefined;
7196
7196
  eyebrows?: "section" | "breadcrumbs" | undefined;
7197
- codeblocks?: "dark" | "auto" | undefined;
7197
+ codeblocks?: "dark" | "system" | undefined;
7198
7198
  }>>;
7199
7199
  redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
7200
7200
  source: z.ZodString;
@@ -7565,8 +7565,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7565
7565
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7566
7566
  } | undefined;
7567
7567
  color?: {
7568
- light: string;
7569
- dark: string;
7568
+ light?: string | undefined;
7569
+ dark?: string | undefined;
7570
7570
  } | undefined;
7571
7571
  hidden?: boolean | undefined;
7572
7572
  } & {
@@ -7671,8 +7671,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7671
7671
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7672
7672
  } | undefined;
7673
7673
  color?: {
7674
- light: string;
7675
- dark: string;
7674
+ light?: string | undefined;
7675
+ dark?: string | undefined;
7676
7676
  } | undefined;
7677
7677
  hidden?: boolean | undefined;
7678
7678
  } & {
@@ -7716,8 +7716,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7716
7716
  dark: string;
7717
7717
  } | undefined;
7718
7718
  color?: {
7719
- light: string;
7720
- dark: string;
7719
+ light?: string | undefined;
7720
+ dark?: string | undefined;
7721
7721
  } | undefined;
7722
7722
  } | undefined;
7723
7723
  topbar?: {
@@ -7776,7 +7776,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7776
7776
  styling?: {
7777
7777
  rounded: "regular" | "sharp";
7778
7778
  eyebrows: "section" | "breadcrumbs";
7779
- codeblocks: "dark" | "auto";
7779
+ codeblocks: "dark" | "system";
7780
7780
  } | undefined;
7781
7781
  redirects?: {
7782
7782
  source: string;
@@ -7945,8 +7945,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7945
7945
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7946
7946
  } | undefined;
7947
7947
  color?: {
7948
- light: string;
7949
- dark: string;
7948
+ light?: string | undefined;
7949
+ dark?: string | undefined;
7950
7950
  } | undefined;
7951
7951
  hidden?: boolean | undefined;
7952
7952
  } & {
@@ -8051,8 +8051,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8051
8051
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
8052
8052
  } | undefined;
8053
8053
  color?: {
8054
- light: string;
8055
- dark: string;
8054
+ light?: string | undefined;
8055
+ dark?: string | undefined;
8056
8056
  } | undefined;
8057
8057
  hidden?: boolean | undefined;
8058
8058
  } & {
@@ -8097,8 +8097,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8097
8097
  } | undefined;
8098
8098
  decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
8099
8099
  color?: {
8100
- light: string;
8101
- dark: string;
8100
+ light?: string | undefined;
8101
+ dark?: string | undefined;
8102
8102
  } | undefined;
8103
8103
  } | undefined;
8104
8104
  topbar?: {
@@ -8157,7 +8157,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8157
8157
  styling?: {
8158
8158
  rounded?: "regular" | "sharp" | undefined;
8159
8159
  eyebrows?: "section" | "breadcrumbs" | undefined;
8160
- codeblocks?: "dark" | "auto" | undefined;
8160
+ codeblocks?: "dark" | "system" | undefined;
8161
8161
  } | undefined;
8162
8162
  redirects?: {
8163
8163
  source: string;