@mintlify/validation 0.1.784 → 0.1.785

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.
@@ -1,15 +1,75 @@
1
1
  import { z } from 'zod';
2
2
  export declare const metatagsSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3
+ export declare const seoOrganizationSchema: z.ZodObject<{
4
+ id: z.ZodOptional<z.ZodString>;
5
+ name: z.ZodOptional<z.ZodString>;
6
+ legalName: z.ZodOptional<z.ZodString>;
7
+ url: z.ZodOptional<z.ZodString>;
8
+ logo: z.ZodOptional<z.ZodString>;
9
+ sameAs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10
+ }, "strip", z.ZodTypeAny, {
11
+ id?: string | undefined;
12
+ name?: string | undefined;
13
+ url?: string | undefined;
14
+ logo?: string | undefined;
15
+ legalName?: string | undefined;
16
+ sameAs?: string[] | undefined;
17
+ }, {
18
+ id?: string | undefined;
19
+ name?: string | undefined;
20
+ url?: string | undefined;
21
+ logo?: string | undefined;
22
+ legalName?: string | undefined;
23
+ sameAs?: string[] | undefined;
24
+ }>;
3
25
  export declare const seoSchema: z.ZodObject<{
4
26
  metatags: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
27
+ organization: z.ZodOptional<z.ZodObject<{
28
+ id: z.ZodOptional<z.ZodString>;
29
+ name: z.ZodOptional<z.ZodString>;
30
+ legalName: z.ZodOptional<z.ZodString>;
31
+ url: z.ZodOptional<z.ZodString>;
32
+ logo: z.ZodOptional<z.ZodString>;
33
+ sameAs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
34
+ }, "strip", z.ZodTypeAny, {
35
+ id?: string | undefined;
36
+ name?: string | undefined;
37
+ url?: string | undefined;
38
+ logo?: string | undefined;
39
+ legalName?: string | undefined;
40
+ sameAs?: string[] | undefined;
41
+ }, {
42
+ id?: string | undefined;
43
+ name?: string | undefined;
44
+ url?: string | undefined;
45
+ logo?: string | undefined;
46
+ legalName?: string | undefined;
47
+ sameAs?: string[] | undefined;
48
+ }>>;
5
49
  indexing: z.ZodOptional<z.ZodEnum<["navigable", "all"]>>;
6
50
  trailingSlash: z.ZodOptional<z.ZodBoolean>;
7
51
  }, "strip", z.ZodTypeAny, {
8
52
  metatags?: Record<string, string> | undefined;
53
+ organization?: {
54
+ id?: string | undefined;
55
+ name?: string | undefined;
56
+ url?: string | undefined;
57
+ logo?: string | undefined;
58
+ legalName?: string | undefined;
59
+ sameAs?: string[] | undefined;
60
+ } | undefined;
9
61
  indexing?: "all" | "navigable" | undefined;
10
62
  trailingSlash?: boolean | undefined;
11
63
  }, {
12
64
  metatags?: Record<string, string> | undefined;
65
+ organization?: {
66
+ id?: string | undefined;
67
+ name?: string | undefined;
68
+ url?: string | undefined;
69
+ logo?: string | undefined;
70
+ legalName?: string | undefined;
71
+ sameAs?: string[] | undefined;
72
+ } | undefined;
13
73
  indexing?: "all" | "navigable" | undefined;
14
74
  trailingSlash?: boolean | undefined;
15
75
  }>;
@@ -3,9 +3,35 @@ export const metatagsSchema = z
3
3
  .record(z.string(), z.string().nonempty())
4
4
  .optional()
5
5
  .describe('Meta tags added to every page. Must be a valid key-value pair.');
6
+ export const seoOrganizationSchema = z
7
+ .object({
8
+ id: z
9
+ .string()
10
+ .url()
11
+ .optional()
12
+ .describe('Stable `@id` URL identifying your organization across pages, e.g. `https://example.com/#organization`. Defaults to `<site origin>/#organization`.'),
13
+ name: z
14
+ .string()
15
+ .nonempty()
16
+ .optional()
17
+ .describe('Organization name. Defaults to the site name.'),
18
+ legalName: z.string().nonempty().optional().describe('Registered legal name.'),
19
+ url: z.string().url().optional().describe('Canonical organization homepage URL.'),
20
+ logo: z
21
+ .string()
22
+ .url()
23
+ .optional()
24
+ .describe('Canonical logo URL used in structured data. Defaults to the docs logo.'),
25
+ sameAs: z
26
+ .array(z.string().url())
27
+ .optional()
28
+ .describe('URLs of official profiles, e.g. X, LinkedIn, GitHub.'),
29
+ })
30
+ .describe('Organization entity emitted in structured data (JSON-LD) on every page.');
6
31
  export const seoSchema = z
7
32
  .object({
8
33
  metatags: metatagsSchema.optional(),
34
+ organization: seoOrganizationSchema.optional(),
9
35
  indexing: z
10
36
  .enum(['navigable', 'all'])
11
37
  .optional()
@@ -844,14 +844,52 @@ export declare const almondConfigSchema: z.ZodObject<{
844
844
  }>>;
845
845
  seo: z.ZodOptional<z.ZodObject<{
846
846
  metatags: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
847
+ organization: z.ZodOptional<z.ZodObject<{
848
+ id: z.ZodOptional<z.ZodString>;
849
+ name: z.ZodOptional<z.ZodString>;
850
+ legalName: z.ZodOptional<z.ZodString>;
851
+ url: z.ZodOptional<z.ZodString>;
852
+ logo: z.ZodOptional<z.ZodString>;
853
+ sameAs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
854
+ }, "strip", z.ZodTypeAny, {
855
+ id?: string | undefined;
856
+ name?: string | undefined;
857
+ url?: string | undefined;
858
+ logo?: string | undefined;
859
+ legalName?: string | undefined;
860
+ sameAs?: string[] | undefined;
861
+ }, {
862
+ id?: string | undefined;
863
+ name?: string | undefined;
864
+ url?: string | undefined;
865
+ logo?: string | undefined;
866
+ legalName?: string | undefined;
867
+ sameAs?: string[] | undefined;
868
+ }>>;
847
869
  indexing: z.ZodOptional<z.ZodEnum<["navigable", "all"]>>;
848
870
  trailingSlash: z.ZodOptional<z.ZodBoolean>;
849
871
  }, "strip", z.ZodTypeAny, {
850
872
  metatags?: Record<string, string> | undefined;
873
+ organization?: {
874
+ id?: string | undefined;
875
+ name?: string | undefined;
876
+ url?: string | undefined;
877
+ logo?: string | undefined;
878
+ legalName?: string | undefined;
879
+ sameAs?: string[] | undefined;
880
+ } | undefined;
851
881
  indexing?: "all" | "navigable" | undefined;
852
882
  trailingSlash?: boolean | undefined;
853
883
  }, {
854
884
  metatags?: Record<string, string> | undefined;
885
+ organization?: {
886
+ id?: string | undefined;
887
+ name?: string | undefined;
888
+ url?: string | undefined;
889
+ logo?: string | undefined;
890
+ legalName?: string | undefined;
891
+ sameAs?: string[] | undefined;
892
+ } | undefined;
855
893
  indexing?: "all" | "navigable" | undefined;
856
894
  trailingSlash?: boolean | undefined;
857
895
  }>>;
@@ -1882,6 +1920,14 @@ export declare const almondConfigSchema: z.ZodObject<{
1882
1920
  }[] | undefined;
1883
1921
  seo?: {
1884
1922
  metatags?: Record<string, string> | undefined;
1923
+ organization?: {
1924
+ id?: string | undefined;
1925
+ name?: string | undefined;
1926
+ url?: string | undefined;
1927
+ logo?: string | undefined;
1928
+ legalName?: string | undefined;
1929
+ sameAs?: string[] | undefined;
1930
+ } | undefined;
1885
1931
  indexing?: "all" | "navigable" | undefined;
1886
1932
  trailingSlash?: boolean | undefined;
1887
1933
  } | undefined;
@@ -2266,6 +2312,14 @@ export declare const almondConfigSchema: z.ZodObject<{
2266
2312
  }[] | undefined;
2267
2313
  seo?: {
2268
2314
  metatags?: Record<string, string> | undefined;
2315
+ organization?: {
2316
+ id?: string | undefined;
2317
+ name?: string | undefined;
2318
+ url?: string | undefined;
2319
+ logo?: string | undefined;
2320
+ legalName?: string | undefined;
2321
+ sameAs?: string[] | undefined;
2322
+ } | undefined;
2269
2323
  indexing?: "all" | "navigable" | undefined;
2270
2324
  trailingSlash?: boolean | undefined;
2271
2325
  } | undefined;
@@ -844,14 +844,52 @@ export declare const aspenConfigSchema: z.ZodObject<{
844
844
  }>>;
845
845
  seo: z.ZodOptional<z.ZodObject<{
846
846
  metatags: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
847
+ organization: z.ZodOptional<z.ZodObject<{
848
+ id: z.ZodOptional<z.ZodString>;
849
+ name: z.ZodOptional<z.ZodString>;
850
+ legalName: z.ZodOptional<z.ZodString>;
851
+ url: z.ZodOptional<z.ZodString>;
852
+ logo: z.ZodOptional<z.ZodString>;
853
+ sameAs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
854
+ }, "strip", z.ZodTypeAny, {
855
+ id?: string | undefined;
856
+ name?: string | undefined;
857
+ url?: string | undefined;
858
+ logo?: string | undefined;
859
+ legalName?: string | undefined;
860
+ sameAs?: string[] | undefined;
861
+ }, {
862
+ id?: string | undefined;
863
+ name?: string | undefined;
864
+ url?: string | undefined;
865
+ logo?: string | undefined;
866
+ legalName?: string | undefined;
867
+ sameAs?: string[] | undefined;
868
+ }>>;
847
869
  indexing: z.ZodOptional<z.ZodEnum<["navigable", "all"]>>;
848
870
  trailingSlash: z.ZodOptional<z.ZodBoolean>;
849
871
  }, "strip", z.ZodTypeAny, {
850
872
  metatags?: Record<string, string> | undefined;
873
+ organization?: {
874
+ id?: string | undefined;
875
+ name?: string | undefined;
876
+ url?: string | undefined;
877
+ logo?: string | undefined;
878
+ legalName?: string | undefined;
879
+ sameAs?: string[] | undefined;
880
+ } | undefined;
851
881
  indexing?: "all" | "navigable" | undefined;
852
882
  trailingSlash?: boolean | undefined;
853
883
  }, {
854
884
  metatags?: Record<string, string> | undefined;
885
+ organization?: {
886
+ id?: string | undefined;
887
+ name?: string | undefined;
888
+ url?: string | undefined;
889
+ logo?: string | undefined;
890
+ legalName?: string | undefined;
891
+ sameAs?: string[] | undefined;
892
+ } | undefined;
855
893
  indexing?: "all" | "navigable" | undefined;
856
894
  trailingSlash?: boolean | undefined;
857
895
  }>>;
@@ -1882,6 +1920,14 @@ export declare const aspenConfigSchema: z.ZodObject<{
1882
1920
  }[] | undefined;
1883
1921
  seo?: {
1884
1922
  metatags?: Record<string, string> | undefined;
1923
+ organization?: {
1924
+ id?: string | undefined;
1925
+ name?: string | undefined;
1926
+ url?: string | undefined;
1927
+ logo?: string | undefined;
1928
+ legalName?: string | undefined;
1929
+ sameAs?: string[] | undefined;
1930
+ } | undefined;
1885
1931
  indexing?: "all" | "navigable" | undefined;
1886
1932
  trailingSlash?: boolean | undefined;
1887
1933
  } | undefined;
@@ -2266,6 +2312,14 @@ export declare const aspenConfigSchema: z.ZodObject<{
2266
2312
  }[] | undefined;
2267
2313
  seo?: {
2268
2314
  metatags?: Record<string, string> | undefined;
2315
+ organization?: {
2316
+ id?: string | undefined;
2317
+ name?: string | undefined;
2318
+ url?: string | undefined;
2319
+ logo?: string | undefined;
2320
+ legalName?: string | undefined;
2321
+ sameAs?: string[] | undefined;
2322
+ } | undefined;
2269
2323
  indexing?: "all" | "navigable" | undefined;
2270
2324
  trailingSlash?: boolean | undefined;
2271
2325
  } | undefined;
@@ -844,14 +844,52 @@ export declare const lindenConfigSchema: z.ZodObject<{
844
844
  }>>;
845
845
  seo: z.ZodOptional<z.ZodObject<{
846
846
  metatags: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
847
+ organization: z.ZodOptional<z.ZodObject<{
848
+ id: z.ZodOptional<z.ZodString>;
849
+ name: z.ZodOptional<z.ZodString>;
850
+ legalName: z.ZodOptional<z.ZodString>;
851
+ url: z.ZodOptional<z.ZodString>;
852
+ logo: z.ZodOptional<z.ZodString>;
853
+ sameAs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
854
+ }, "strip", z.ZodTypeAny, {
855
+ id?: string | undefined;
856
+ name?: string | undefined;
857
+ url?: string | undefined;
858
+ logo?: string | undefined;
859
+ legalName?: string | undefined;
860
+ sameAs?: string[] | undefined;
861
+ }, {
862
+ id?: string | undefined;
863
+ name?: string | undefined;
864
+ url?: string | undefined;
865
+ logo?: string | undefined;
866
+ legalName?: string | undefined;
867
+ sameAs?: string[] | undefined;
868
+ }>>;
847
869
  indexing: z.ZodOptional<z.ZodEnum<["navigable", "all"]>>;
848
870
  trailingSlash: z.ZodOptional<z.ZodBoolean>;
849
871
  }, "strip", z.ZodTypeAny, {
850
872
  metatags?: Record<string, string> | undefined;
873
+ organization?: {
874
+ id?: string | undefined;
875
+ name?: string | undefined;
876
+ url?: string | undefined;
877
+ logo?: string | undefined;
878
+ legalName?: string | undefined;
879
+ sameAs?: string[] | undefined;
880
+ } | undefined;
851
881
  indexing?: "all" | "navigable" | undefined;
852
882
  trailingSlash?: boolean | undefined;
853
883
  }, {
854
884
  metatags?: Record<string, string> | undefined;
885
+ organization?: {
886
+ id?: string | undefined;
887
+ name?: string | undefined;
888
+ url?: string | undefined;
889
+ logo?: string | undefined;
890
+ legalName?: string | undefined;
891
+ sameAs?: string[] | undefined;
892
+ } | undefined;
855
893
  indexing?: "all" | "navigable" | undefined;
856
894
  trailingSlash?: boolean | undefined;
857
895
  }>>;
@@ -1882,6 +1920,14 @@ export declare const lindenConfigSchema: z.ZodObject<{
1882
1920
  }[] | undefined;
1883
1921
  seo?: {
1884
1922
  metatags?: Record<string, string> | undefined;
1923
+ organization?: {
1924
+ id?: string | undefined;
1925
+ name?: string | undefined;
1926
+ url?: string | undefined;
1927
+ logo?: string | undefined;
1928
+ legalName?: string | undefined;
1929
+ sameAs?: string[] | undefined;
1930
+ } | undefined;
1885
1931
  indexing?: "all" | "navigable" | undefined;
1886
1932
  trailingSlash?: boolean | undefined;
1887
1933
  } | undefined;
@@ -2266,6 +2312,14 @@ export declare const lindenConfigSchema: z.ZodObject<{
2266
2312
  }[] | undefined;
2267
2313
  seo?: {
2268
2314
  metatags?: Record<string, string> | undefined;
2315
+ organization?: {
2316
+ id?: string | undefined;
2317
+ name?: string | undefined;
2318
+ url?: string | undefined;
2319
+ logo?: string | undefined;
2320
+ legalName?: string | undefined;
2321
+ sameAs?: string[] | undefined;
2322
+ } | undefined;
2269
2323
  indexing?: "all" | "navigable" | undefined;
2270
2324
  trailingSlash?: boolean | undefined;
2271
2325
  } | undefined;
@@ -844,14 +844,52 @@ export declare const lumaConfigSchema: z.ZodObject<{
844
844
  }>>;
845
845
  seo: z.ZodOptional<z.ZodObject<{
846
846
  metatags: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
847
+ organization: z.ZodOptional<z.ZodObject<{
848
+ id: z.ZodOptional<z.ZodString>;
849
+ name: z.ZodOptional<z.ZodString>;
850
+ legalName: z.ZodOptional<z.ZodString>;
851
+ url: z.ZodOptional<z.ZodString>;
852
+ logo: z.ZodOptional<z.ZodString>;
853
+ sameAs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
854
+ }, "strip", z.ZodTypeAny, {
855
+ id?: string | undefined;
856
+ name?: string | undefined;
857
+ url?: string | undefined;
858
+ logo?: string | undefined;
859
+ legalName?: string | undefined;
860
+ sameAs?: string[] | undefined;
861
+ }, {
862
+ id?: string | undefined;
863
+ name?: string | undefined;
864
+ url?: string | undefined;
865
+ logo?: string | undefined;
866
+ legalName?: string | undefined;
867
+ sameAs?: string[] | undefined;
868
+ }>>;
847
869
  indexing: z.ZodOptional<z.ZodEnum<["navigable", "all"]>>;
848
870
  trailingSlash: z.ZodOptional<z.ZodBoolean>;
849
871
  }, "strip", z.ZodTypeAny, {
850
872
  metatags?: Record<string, string> | undefined;
873
+ organization?: {
874
+ id?: string | undefined;
875
+ name?: string | undefined;
876
+ url?: string | undefined;
877
+ logo?: string | undefined;
878
+ legalName?: string | undefined;
879
+ sameAs?: string[] | undefined;
880
+ } | undefined;
851
881
  indexing?: "all" | "navigable" | undefined;
852
882
  trailingSlash?: boolean | undefined;
853
883
  }, {
854
884
  metatags?: Record<string, string> | undefined;
885
+ organization?: {
886
+ id?: string | undefined;
887
+ name?: string | undefined;
888
+ url?: string | undefined;
889
+ logo?: string | undefined;
890
+ legalName?: string | undefined;
891
+ sameAs?: string[] | undefined;
892
+ } | undefined;
855
893
  indexing?: "all" | "navigable" | undefined;
856
894
  trailingSlash?: boolean | undefined;
857
895
  }>>;
@@ -1882,6 +1920,14 @@ export declare const lumaConfigSchema: z.ZodObject<{
1882
1920
  }[] | undefined;
1883
1921
  seo?: {
1884
1922
  metatags?: Record<string, string> | undefined;
1923
+ organization?: {
1924
+ id?: string | undefined;
1925
+ name?: string | undefined;
1926
+ url?: string | undefined;
1927
+ logo?: string | undefined;
1928
+ legalName?: string | undefined;
1929
+ sameAs?: string[] | undefined;
1930
+ } | undefined;
1885
1931
  indexing?: "all" | "navigable" | undefined;
1886
1932
  trailingSlash?: boolean | undefined;
1887
1933
  } | undefined;
@@ -2266,6 +2312,14 @@ export declare const lumaConfigSchema: z.ZodObject<{
2266
2312
  }[] | undefined;
2267
2313
  seo?: {
2268
2314
  metatags?: Record<string, string> | undefined;
2315
+ organization?: {
2316
+ id?: string | undefined;
2317
+ name?: string | undefined;
2318
+ url?: string | undefined;
2319
+ logo?: string | undefined;
2320
+ legalName?: string | undefined;
2321
+ sameAs?: string[] | undefined;
2322
+ } | undefined;
2269
2323
  indexing?: "all" | "navigable" | undefined;
2270
2324
  trailingSlash?: boolean | undefined;
2271
2325
  } | undefined;
@@ -844,14 +844,52 @@ export declare const mapleConfigSchema: z.ZodObject<{
844
844
  }>>;
845
845
  seo: z.ZodOptional<z.ZodObject<{
846
846
  metatags: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
847
+ organization: z.ZodOptional<z.ZodObject<{
848
+ id: z.ZodOptional<z.ZodString>;
849
+ name: z.ZodOptional<z.ZodString>;
850
+ legalName: z.ZodOptional<z.ZodString>;
851
+ url: z.ZodOptional<z.ZodString>;
852
+ logo: z.ZodOptional<z.ZodString>;
853
+ sameAs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
854
+ }, "strip", z.ZodTypeAny, {
855
+ id?: string | undefined;
856
+ name?: string | undefined;
857
+ url?: string | undefined;
858
+ logo?: string | undefined;
859
+ legalName?: string | undefined;
860
+ sameAs?: string[] | undefined;
861
+ }, {
862
+ id?: string | undefined;
863
+ name?: string | undefined;
864
+ url?: string | undefined;
865
+ logo?: string | undefined;
866
+ legalName?: string | undefined;
867
+ sameAs?: string[] | undefined;
868
+ }>>;
847
869
  indexing: z.ZodOptional<z.ZodEnum<["navigable", "all"]>>;
848
870
  trailingSlash: z.ZodOptional<z.ZodBoolean>;
849
871
  }, "strip", z.ZodTypeAny, {
850
872
  metatags?: Record<string, string> | undefined;
873
+ organization?: {
874
+ id?: string | undefined;
875
+ name?: string | undefined;
876
+ url?: string | undefined;
877
+ logo?: string | undefined;
878
+ legalName?: string | undefined;
879
+ sameAs?: string[] | undefined;
880
+ } | undefined;
851
881
  indexing?: "all" | "navigable" | undefined;
852
882
  trailingSlash?: boolean | undefined;
853
883
  }, {
854
884
  metatags?: Record<string, string> | undefined;
885
+ organization?: {
886
+ id?: string | undefined;
887
+ name?: string | undefined;
888
+ url?: string | undefined;
889
+ logo?: string | undefined;
890
+ legalName?: string | undefined;
891
+ sameAs?: string[] | undefined;
892
+ } | undefined;
855
893
  indexing?: "all" | "navigable" | undefined;
856
894
  trailingSlash?: boolean | undefined;
857
895
  }>>;
@@ -1882,6 +1920,14 @@ export declare const mapleConfigSchema: z.ZodObject<{
1882
1920
  }[] | undefined;
1883
1921
  seo?: {
1884
1922
  metatags?: Record<string, string> | undefined;
1923
+ organization?: {
1924
+ id?: string | undefined;
1925
+ name?: string | undefined;
1926
+ url?: string | undefined;
1927
+ logo?: string | undefined;
1928
+ legalName?: string | undefined;
1929
+ sameAs?: string[] | undefined;
1930
+ } | undefined;
1885
1931
  indexing?: "all" | "navigable" | undefined;
1886
1932
  trailingSlash?: boolean | undefined;
1887
1933
  } | undefined;
@@ -2266,6 +2312,14 @@ export declare const mapleConfigSchema: z.ZodObject<{
2266
2312
  }[] | undefined;
2267
2313
  seo?: {
2268
2314
  metatags?: Record<string, string> | undefined;
2315
+ organization?: {
2316
+ id?: string | undefined;
2317
+ name?: string | undefined;
2318
+ url?: string | undefined;
2319
+ logo?: string | undefined;
2320
+ legalName?: string | undefined;
2321
+ sameAs?: string[] | undefined;
2322
+ } | undefined;
2269
2323
  indexing?: "all" | "navigable" | undefined;
2270
2324
  trailingSlash?: boolean | undefined;
2271
2325
  } | undefined;
@@ -844,14 +844,52 @@ export declare const mintConfigSchema: z.ZodObject<{
844
844
  }>>;
845
845
  seo: z.ZodOptional<z.ZodObject<{
846
846
  metatags: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
847
+ organization: z.ZodOptional<z.ZodObject<{
848
+ id: z.ZodOptional<z.ZodString>;
849
+ name: z.ZodOptional<z.ZodString>;
850
+ legalName: z.ZodOptional<z.ZodString>;
851
+ url: z.ZodOptional<z.ZodString>;
852
+ logo: z.ZodOptional<z.ZodString>;
853
+ sameAs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
854
+ }, "strip", z.ZodTypeAny, {
855
+ id?: string | undefined;
856
+ name?: string | undefined;
857
+ url?: string | undefined;
858
+ logo?: string | undefined;
859
+ legalName?: string | undefined;
860
+ sameAs?: string[] | undefined;
861
+ }, {
862
+ id?: string | undefined;
863
+ name?: string | undefined;
864
+ url?: string | undefined;
865
+ logo?: string | undefined;
866
+ legalName?: string | undefined;
867
+ sameAs?: string[] | undefined;
868
+ }>>;
847
869
  indexing: z.ZodOptional<z.ZodEnum<["navigable", "all"]>>;
848
870
  trailingSlash: z.ZodOptional<z.ZodBoolean>;
849
871
  }, "strip", z.ZodTypeAny, {
850
872
  metatags?: Record<string, string> | undefined;
873
+ organization?: {
874
+ id?: string | undefined;
875
+ name?: string | undefined;
876
+ url?: string | undefined;
877
+ logo?: string | undefined;
878
+ legalName?: string | undefined;
879
+ sameAs?: string[] | undefined;
880
+ } | undefined;
851
881
  indexing?: "all" | "navigable" | undefined;
852
882
  trailingSlash?: boolean | undefined;
853
883
  }, {
854
884
  metatags?: Record<string, string> | undefined;
885
+ organization?: {
886
+ id?: string | undefined;
887
+ name?: string | undefined;
888
+ url?: string | undefined;
889
+ logo?: string | undefined;
890
+ legalName?: string | undefined;
891
+ sameAs?: string[] | undefined;
892
+ } | undefined;
855
893
  indexing?: "all" | "navigable" | undefined;
856
894
  trailingSlash?: boolean | undefined;
857
895
  }>>;
@@ -1882,6 +1920,14 @@ export declare const mintConfigSchema: z.ZodObject<{
1882
1920
  }[] | undefined;
1883
1921
  seo?: {
1884
1922
  metatags?: Record<string, string> | undefined;
1923
+ organization?: {
1924
+ id?: string | undefined;
1925
+ name?: string | undefined;
1926
+ url?: string | undefined;
1927
+ logo?: string | undefined;
1928
+ legalName?: string | undefined;
1929
+ sameAs?: string[] | undefined;
1930
+ } | undefined;
1885
1931
  indexing?: "all" | "navigable" | undefined;
1886
1932
  trailingSlash?: boolean | undefined;
1887
1933
  } | undefined;
@@ -2266,6 +2312,14 @@ export declare const mintConfigSchema: z.ZodObject<{
2266
2312
  }[] | undefined;
2267
2313
  seo?: {
2268
2314
  metatags?: Record<string, string> | undefined;
2315
+ organization?: {
2316
+ id?: string | undefined;
2317
+ name?: string | undefined;
2318
+ url?: string | undefined;
2319
+ logo?: string | undefined;
2320
+ legalName?: string | undefined;
2321
+ sameAs?: string[] | undefined;
2322
+ } | undefined;
2269
2323
  indexing?: "all" | "navigable" | undefined;
2270
2324
  trailingSlash?: boolean | undefined;
2271
2325
  } | undefined;