@mintlify/validation 0.1.530 → 0.1.532
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/chat-config/index.d.ts +67 -67
- package/dist/mint-config/schemas/v1/apiReference.d.ts +4 -4
- package/dist/mint-config/schemas/v1/config.d.ts +81 -81
- package/dist/mint-config/schemas/v1/font.d.ts +20 -20
- package/dist/mint-config/schemas/v1/footer.d.ts +5 -5
- package/dist/mint-config/schemas/v1/navigation.d.ts +2 -2
- package/dist/mint-config/schemas/v1/tabs.d.ts +2 -2
- package/dist/mint-config/schemas/v2/index.d.ts +2978 -4567
- package/dist/mint-config/schemas/v2/properties/api.d.ts +28 -28
- package/dist/mint-config/schemas/v2/properties/appearance.d.ts +2 -2
- package/dist/mint-config/schemas/v2/properties/background.d.ts +5 -5
- package/dist/mint-config/schemas/v2/properties/contextual.d.ts +16 -64
- package/dist/mint-config/schemas/v2/properties/errors.d.ts +2 -2
- package/dist/mint-config/schemas/v2/properties/feedback.d.ts +2 -2
- package/dist/mint-config/schemas/v2/properties/fonts/index.d.ts +24 -24
- package/dist/mint-config/schemas/v2/properties/footer.d.ts +2 -2
- package/dist/mint-config/schemas/v2/properties/integrations.d.ts +22 -22
- package/dist/mint-config/schemas/v2/properties/navbar.d.ts +9 -9
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +186 -204
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +157 -170
- package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/menu.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/products.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +3 -2
- package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +26 -26
- package/dist/mint-config/schemas/v2/properties/styling.d.ts +10 -10
- package/dist/mint-config/schemas/v2/properties/thumbnails.d.ts +2 -2
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +181 -230
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +421 -648
- package/dist/mint-config/validateConfig.d.ts +1753 -2997
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/deployment/deploymentEntitlements.d.ts +1 -1
- package/dist/types/deployment/deploymentEntitlements.js +1 -0
- package/dist/types/deployment/index.d.ts +2 -1
- package/dist/types/deployment/trieve.d.ts +4 -4
- package/dist/types/deployment/trieve.js +1 -0
- package/package.json +3 -3
|
@@ -42,12 +42,12 @@ export declare const apiSchema: z.ZodObject<{
|
|
|
42
42
|
languages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
43
43
|
prefill: z.ZodOptional<z.ZodBoolean>;
|
|
44
44
|
}, "strip", z.ZodTypeAny, {
|
|
45
|
-
defaults?: "all" | "required" | undefined;
|
|
46
45
|
languages?: string[] | undefined;
|
|
46
|
+
defaults?: "all" | "required" | undefined;
|
|
47
47
|
prefill?: boolean | undefined;
|
|
48
48
|
}, {
|
|
49
|
-
defaults?: "all" | "required" | undefined;
|
|
50
49
|
languages?: string[] | undefined;
|
|
50
|
+
defaults?: "all" | "required" | undefined;
|
|
51
51
|
prefill?: boolean | undefined;
|
|
52
52
|
}>>;
|
|
53
53
|
mdx: z.ZodOptional<z.ZodObject<{
|
|
@@ -55,80 +55,80 @@ export declare const apiSchema: z.ZodObject<{
|
|
|
55
55
|
method: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
|
|
56
56
|
name: z.ZodOptional<z.ZodString>;
|
|
57
57
|
}, "strip", z.ZodTypeAny, {
|
|
58
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
59
58
|
name?: string | undefined;
|
|
60
|
-
}, {
|
|
61
59
|
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
60
|
+
}, {
|
|
62
61
|
name?: string | undefined;
|
|
62
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
63
63
|
}>>;
|
|
64
64
|
server: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
65
65
|
}, "strip", z.ZodTypeAny, {
|
|
66
|
+
server?: string | string[] | undefined;
|
|
66
67
|
auth?: {
|
|
67
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
68
68
|
name?: string | undefined;
|
|
69
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
69
70
|
} | undefined;
|
|
70
|
-
server?: string | string[] | undefined;
|
|
71
71
|
}, {
|
|
72
|
+
server?: string | string[] | undefined;
|
|
72
73
|
auth?: {
|
|
73
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
74
74
|
name?: string | undefined;
|
|
75
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
75
76
|
} | undefined;
|
|
76
|
-
server?: string | string[] | undefined;
|
|
77
77
|
}>>;
|
|
78
78
|
}, "strip", z.ZodTypeAny, {
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
directory?: string | undefined;
|
|
79
|
+
params?: {
|
|
80
|
+
expanded?: "all" | "closed" | undefined;
|
|
82
81
|
} | undefined;
|
|
83
|
-
|
|
82
|
+
openapi?: string | string[] | {
|
|
84
83
|
source: string;
|
|
85
84
|
directory?: string | undefined;
|
|
86
85
|
} | undefined;
|
|
87
|
-
params?: {
|
|
88
|
-
expanded?: "all" | "closed" | undefined;
|
|
89
|
-
} | undefined;
|
|
90
86
|
playground?: {
|
|
91
87
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
92
88
|
proxy?: boolean | undefined;
|
|
93
89
|
} | undefined;
|
|
90
|
+
asyncapi?: string | string[] | {
|
|
91
|
+
source: string;
|
|
92
|
+
directory?: string | undefined;
|
|
93
|
+
} | undefined;
|
|
94
94
|
examples?: {
|
|
95
|
-
defaults?: "all" | "required" | undefined;
|
|
96
95
|
languages?: string[] | undefined;
|
|
96
|
+
defaults?: "all" | "required" | undefined;
|
|
97
97
|
prefill?: boolean | undefined;
|
|
98
98
|
} | undefined;
|
|
99
99
|
mdx?: {
|
|
100
|
+
server?: string | string[] | undefined;
|
|
100
101
|
auth?: {
|
|
101
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
102
102
|
name?: string | undefined;
|
|
103
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
103
104
|
} | undefined;
|
|
104
|
-
server?: string | string[] | undefined;
|
|
105
105
|
} | undefined;
|
|
106
106
|
}, {
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
directory?: string | undefined;
|
|
107
|
+
params?: {
|
|
108
|
+
expanded?: "all" | "closed" | undefined;
|
|
110
109
|
} | undefined;
|
|
111
|
-
|
|
110
|
+
openapi?: string | string[] | {
|
|
112
111
|
source: string;
|
|
113
112
|
directory?: string | undefined;
|
|
114
113
|
} | undefined;
|
|
115
|
-
params?: {
|
|
116
|
-
expanded?: "all" | "closed" | undefined;
|
|
117
|
-
} | undefined;
|
|
118
114
|
playground?: {
|
|
119
115
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
120
116
|
proxy?: boolean | undefined;
|
|
121
117
|
} | undefined;
|
|
118
|
+
asyncapi?: string | string[] | {
|
|
119
|
+
source: string;
|
|
120
|
+
directory?: string | undefined;
|
|
121
|
+
} | undefined;
|
|
122
122
|
examples?: {
|
|
123
|
-
defaults?: "all" | "required" | undefined;
|
|
124
123
|
languages?: string[] | undefined;
|
|
124
|
+
defaults?: "all" | "required" | undefined;
|
|
125
125
|
prefill?: boolean | undefined;
|
|
126
126
|
} | undefined;
|
|
127
127
|
mdx?: {
|
|
128
|
+
server?: string | string[] | undefined;
|
|
128
129
|
auth?: {
|
|
129
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
130
130
|
name?: string | undefined;
|
|
131
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
131
132
|
} | undefined;
|
|
132
|
-
server?: string | string[] | undefined;
|
|
133
133
|
} | undefined;
|
|
134
134
|
}>;
|
|
@@ -3,9 +3,9 @@ export declare const appearanceSchema: z.ZodObject<{
|
|
|
3
3
|
default: z.ZodOptional<z.ZodEnum<["system", "light", "dark"]>>;
|
|
4
4
|
strict: z.ZodOptional<z.ZodBoolean>;
|
|
5
5
|
}, "strip", z.ZodTypeAny, {
|
|
6
|
-
default?: "light" | "dark" | "system" | undefined;
|
|
7
6
|
strict?: boolean | undefined;
|
|
8
|
-
}, {
|
|
9
7
|
default?: "light" | "dark" | "system" | undefined;
|
|
8
|
+
}, {
|
|
10
9
|
strict?: boolean | undefined;
|
|
10
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
11
11
|
}>;
|
|
@@ -22,23 +22,23 @@ export declare const backgroundSchema: z.ZodObject<{
|
|
|
22
22
|
dark?: string | undefined;
|
|
23
23
|
}>>;
|
|
24
24
|
}, "strip", z.ZodTypeAny, {
|
|
25
|
+
color?: {
|
|
26
|
+
light?: string | undefined;
|
|
27
|
+
dark?: string | undefined;
|
|
28
|
+
} | undefined;
|
|
25
29
|
image?: string | {
|
|
26
30
|
light: string;
|
|
27
31
|
dark: string;
|
|
28
32
|
} | undefined;
|
|
29
33
|
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
34
|
+
}, {
|
|
30
35
|
color?: {
|
|
31
36
|
light?: string | undefined;
|
|
32
37
|
dark?: string | undefined;
|
|
33
38
|
} | undefined;
|
|
34
|
-
}, {
|
|
35
39
|
image?: string | {
|
|
36
40
|
light: string;
|
|
37
41
|
dark: string;
|
|
38
42
|
} | undefined;
|
|
39
43
|
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
40
|
-
color?: {
|
|
41
|
-
light?: string | undefined;
|
|
42
|
-
dark?: string | undefined;
|
|
43
|
-
} | undefined;
|
|
44
44
|
}>;
|
|
@@ -70,19 +70,13 @@ export declare const customContextualOption: z.ZodObject<{
|
|
|
70
70
|
}[] | undefined;
|
|
71
71
|
}>]>;
|
|
72
72
|
}, "strip", z.ZodTypeAny, {
|
|
73
|
-
href:
|
|
73
|
+
href: string | {
|
|
74
74
|
base: string;
|
|
75
75
|
query?: {
|
|
76
76
|
value: string;
|
|
77
77
|
key: string;
|
|
78
78
|
}[] | undefined;
|
|
79
|
-
}
|
|
80
|
-
base: string;
|
|
81
|
-
query?: {
|
|
82
|
-
value: string;
|
|
83
|
-
key: string;
|
|
84
|
-
}[] | undefined;
|
|
85
|
-
} | undefined);
|
|
79
|
+
};
|
|
86
80
|
title: string;
|
|
87
81
|
description: string;
|
|
88
82
|
icon?: string | {
|
|
@@ -91,19 +85,13 @@ export declare const customContextualOption: z.ZodObject<{
|
|
|
91
85
|
library?: "fontawesome" | "lucide" | undefined;
|
|
92
86
|
} | undefined;
|
|
93
87
|
}, {
|
|
94
|
-
href:
|
|
95
|
-
base: string;
|
|
96
|
-
query?: {
|
|
97
|
-
value: string;
|
|
98
|
-
key: string;
|
|
99
|
-
}[] | undefined;
|
|
100
|
-
}) & (string | {
|
|
88
|
+
href: string | {
|
|
101
89
|
base: string;
|
|
102
90
|
query?: {
|
|
103
91
|
value: string;
|
|
104
92
|
key: string;
|
|
105
93
|
}[] | undefined;
|
|
106
|
-
}
|
|
94
|
+
};
|
|
107
95
|
title: string;
|
|
108
96
|
description: string;
|
|
109
97
|
icon?: string | {
|
|
@@ -155,19 +143,13 @@ export declare const contextualSchema: z.ZodObject<{
|
|
|
155
143
|
}[] | undefined;
|
|
156
144
|
}>]>;
|
|
157
145
|
}, "strip", z.ZodTypeAny, {
|
|
158
|
-
href:
|
|
146
|
+
href: string | {
|
|
159
147
|
base: string;
|
|
160
148
|
query?: {
|
|
161
149
|
value: string;
|
|
162
150
|
key: string;
|
|
163
151
|
}[] | undefined;
|
|
164
|
-
}
|
|
165
|
-
base: string;
|
|
166
|
-
query?: {
|
|
167
|
-
value: string;
|
|
168
|
-
key: string;
|
|
169
|
-
}[] | undefined;
|
|
170
|
-
} | undefined);
|
|
152
|
+
};
|
|
171
153
|
title: string;
|
|
172
154
|
description: string;
|
|
173
155
|
icon?: string | {
|
|
@@ -176,19 +158,13 @@ export declare const contextualSchema: z.ZodObject<{
|
|
|
176
158
|
library?: "fontawesome" | "lucide" | undefined;
|
|
177
159
|
} | undefined;
|
|
178
160
|
}, {
|
|
179
|
-
href:
|
|
180
|
-
base: string;
|
|
181
|
-
query?: {
|
|
182
|
-
value: string;
|
|
183
|
-
key: string;
|
|
184
|
-
}[] | undefined;
|
|
185
|
-
}) & (string | {
|
|
161
|
+
href: string | {
|
|
186
162
|
base: string;
|
|
187
163
|
query?: {
|
|
188
164
|
value: string;
|
|
189
165
|
key: string;
|
|
190
166
|
}[] | undefined;
|
|
191
|
-
}
|
|
167
|
+
};
|
|
192
168
|
title: string;
|
|
193
169
|
description: string;
|
|
194
170
|
icon?: string | {
|
|
@@ -197,19 +173,13 @@ export declare const contextualSchema: z.ZodObject<{
|
|
|
197
173
|
library?: "fontawesome" | "lucide" | undefined;
|
|
198
174
|
} | undefined;
|
|
199
175
|
}>]>, "many">, ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
|
|
200
|
-
href:
|
|
176
|
+
href: string | {
|
|
201
177
|
base: string;
|
|
202
178
|
query?: {
|
|
203
179
|
value: string;
|
|
204
180
|
key: string;
|
|
205
181
|
}[] | undefined;
|
|
206
|
-
}
|
|
207
|
-
base: string;
|
|
208
|
-
query?: {
|
|
209
|
-
value: string;
|
|
210
|
-
key: string;
|
|
211
|
-
}[] | undefined;
|
|
212
|
-
} | undefined);
|
|
182
|
+
};
|
|
213
183
|
title: string;
|
|
214
184
|
description: string;
|
|
215
185
|
icon?: string | {
|
|
@@ -218,19 +188,13 @@ export declare const contextualSchema: z.ZodObject<{
|
|
|
218
188
|
library?: "fontawesome" | "lucide" | undefined;
|
|
219
189
|
} | undefined;
|
|
220
190
|
})[], ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
|
|
221
|
-
href:
|
|
222
|
-
base: string;
|
|
223
|
-
query?: {
|
|
224
|
-
value: string;
|
|
225
|
-
key: string;
|
|
226
|
-
}[] | undefined;
|
|
227
|
-
}) & (string | {
|
|
191
|
+
href: string | {
|
|
228
192
|
base: string;
|
|
229
193
|
query?: {
|
|
230
194
|
value: string;
|
|
231
195
|
key: string;
|
|
232
196
|
}[] | undefined;
|
|
233
|
-
}
|
|
197
|
+
};
|
|
234
198
|
title: string;
|
|
235
199
|
description: string;
|
|
236
200
|
icon?: string | {
|
|
@@ -241,19 +205,13 @@ export declare const contextualSchema: z.ZodObject<{
|
|
|
241
205
|
})[]>;
|
|
242
206
|
}, "strip", z.ZodTypeAny, {
|
|
243
207
|
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
|
|
244
|
-
href:
|
|
208
|
+
href: string | {
|
|
245
209
|
base: string;
|
|
246
210
|
query?: {
|
|
247
211
|
value: string;
|
|
248
212
|
key: string;
|
|
249
213
|
}[] | undefined;
|
|
250
|
-
}
|
|
251
|
-
base: string;
|
|
252
|
-
query?: {
|
|
253
|
-
value: string;
|
|
254
|
-
key: string;
|
|
255
|
-
}[] | undefined;
|
|
256
|
-
} | undefined);
|
|
214
|
+
};
|
|
257
215
|
title: string;
|
|
258
216
|
description: string;
|
|
259
217
|
icon?: string | {
|
|
@@ -264,19 +222,13 @@ export declare const contextualSchema: z.ZodObject<{
|
|
|
264
222
|
})[];
|
|
265
223
|
}, {
|
|
266
224
|
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
|
|
267
|
-
href:
|
|
268
|
-
base: string;
|
|
269
|
-
query?: {
|
|
270
|
-
value: string;
|
|
271
|
-
key: string;
|
|
272
|
-
}[] | undefined;
|
|
273
|
-
}) & (string | {
|
|
225
|
+
href: string | {
|
|
274
226
|
base: string;
|
|
275
227
|
query?: {
|
|
276
228
|
value: string;
|
|
277
229
|
key: string;
|
|
278
230
|
}[] | undefined;
|
|
279
|
-
}
|
|
231
|
+
};
|
|
280
232
|
title: string;
|
|
281
233
|
description: string;
|
|
282
234
|
icon?: string | {
|
|
@@ -9,9 +9,9 @@ export declare const errorsSchema: z.ZodObject<{
|
|
|
9
9
|
title?: string | undefined;
|
|
10
10
|
description?: string | undefined;
|
|
11
11
|
}, {
|
|
12
|
-
redirect?: boolean | undefined;
|
|
13
12
|
title?: string | undefined;
|
|
14
13
|
description?: string | undefined;
|
|
14
|
+
redirect?: boolean | undefined;
|
|
15
15
|
}>;
|
|
16
16
|
}, "strip", z.ZodTypeAny, {
|
|
17
17
|
'404': {
|
|
@@ -21,8 +21,8 @@ export declare const errorsSchema: z.ZodObject<{
|
|
|
21
21
|
};
|
|
22
22
|
}, {
|
|
23
23
|
'404': {
|
|
24
|
-
redirect?: boolean | undefined;
|
|
25
24
|
title?: string | undefined;
|
|
26
25
|
description?: string | undefined;
|
|
26
|
+
redirect?: boolean | undefined;
|
|
27
27
|
};
|
|
28
28
|
}>;
|
|
@@ -4,11 +4,11 @@ export declare const feedbackSchema: z.ZodObject<{
|
|
|
4
4
|
edits: z.ZodOptional<z.ZodBoolean>;
|
|
5
5
|
issues: z.ZodOptional<z.ZodBoolean>;
|
|
6
6
|
}, "strip", z.ZodTypeAny, {
|
|
7
|
+
issues?: boolean | undefined;
|
|
7
8
|
thumbs?: boolean | undefined;
|
|
8
9
|
edits?: boolean | undefined;
|
|
9
|
-
issues?: boolean | undefined;
|
|
10
10
|
}, {
|
|
11
|
+
issues?: boolean | undefined;
|
|
11
12
|
thumbs?: boolean | undefined;
|
|
12
13
|
edits?: boolean | undefined;
|
|
13
|
-
issues?: boolean | undefined;
|
|
14
14
|
}>;
|
|
@@ -6,23 +6,23 @@ export declare const fontDetailsSchema: z.ZodEffects<z.ZodObject<{
|
|
|
6
6
|
format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
|
|
7
7
|
}, "strip", z.ZodTypeAny, {
|
|
8
8
|
family: string;
|
|
9
|
-
weight?: number | undefined;
|
|
10
9
|
source?: string | undefined;
|
|
10
|
+
weight?: number | undefined;
|
|
11
11
|
format?: "woff" | "woff2" | undefined;
|
|
12
12
|
}, {
|
|
13
13
|
family: string;
|
|
14
|
-
weight?: number | undefined;
|
|
15
14
|
source?: string | undefined;
|
|
15
|
+
weight?: number | undefined;
|
|
16
16
|
format?: "woff" | "woff2" | undefined;
|
|
17
17
|
}>, {
|
|
18
18
|
family: string;
|
|
19
|
-
weight?: number | undefined;
|
|
20
19
|
source?: string | undefined;
|
|
20
|
+
weight?: number | undefined;
|
|
21
21
|
format?: "woff" | "woff2" | undefined;
|
|
22
22
|
}, {
|
|
23
23
|
family: string;
|
|
24
|
-
weight?: number | undefined;
|
|
25
24
|
source?: string | undefined;
|
|
25
|
+
weight?: number | undefined;
|
|
26
26
|
format?: "woff" | "woff2" | undefined;
|
|
27
27
|
}>;
|
|
28
28
|
export declare const fontsSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
@@ -32,23 +32,23 @@ export declare const fontsSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
32
32
|
format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
|
|
33
33
|
}, "strip", z.ZodTypeAny, {
|
|
34
34
|
family: string;
|
|
35
|
-
weight?: number | undefined;
|
|
36
35
|
source?: string | undefined;
|
|
36
|
+
weight?: number | undefined;
|
|
37
37
|
format?: "woff" | "woff2" | undefined;
|
|
38
38
|
}, {
|
|
39
39
|
family: string;
|
|
40
|
-
weight?: number | undefined;
|
|
41
40
|
source?: string | undefined;
|
|
41
|
+
weight?: number | undefined;
|
|
42
42
|
format?: "woff" | "woff2" | undefined;
|
|
43
43
|
}>, {
|
|
44
44
|
family: string;
|
|
45
|
-
weight?: number | undefined;
|
|
46
45
|
source?: string | undefined;
|
|
46
|
+
weight?: number | undefined;
|
|
47
47
|
format?: "woff" | "woff2" | undefined;
|
|
48
48
|
}, {
|
|
49
49
|
family: string;
|
|
50
|
-
weight?: number | undefined;
|
|
51
50
|
source?: string | undefined;
|
|
51
|
+
weight?: number | undefined;
|
|
52
52
|
format?: "woff" | "woff2" | undefined;
|
|
53
53
|
}>, z.ZodObject<{
|
|
54
54
|
heading: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
@@ -58,23 +58,23 @@ export declare const fontsSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
58
58
|
format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
|
|
59
59
|
}, "strip", z.ZodTypeAny, {
|
|
60
60
|
family: string;
|
|
61
|
-
weight?: number | undefined;
|
|
62
61
|
source?: string | undefined;
|
|
62
|
+
weight?: number | undefined;
|
|
63
63
|
format?: "woff" | "woff2" | undefined;
|
|
64
64
|
}, {
|
|
65
65
|
family: string;
|
|
66
|
-
weight?: number | undefined;
|
|
67
66
|
source?: string | undefined;
|
|
67
|
+
weight?: number | undefined;
|
|
68
68
|
format?: "woff" | "woff2" | undefined;
|
|
69
69
|
}>, {
|
|
70
70
|
family: string;
|
|
71
|
-
weight?: number | undefined;
|
|
72
71
|
source?: string | undefined;
|
|
72
|
+
weight?: number | undefined;
|
|
73
73
|
format?: "woff" | "woff2" | undefined;
|
|
74
74
|
}, {
|
|
75
75
|
family: string;
|
|
76
|
-
weight?: number | undefined;
|
|
77
76
|
source?: string | undefined;
|
|
77
|
+
weight?: number | undefined;
|
|
78
78
|
format?: "woff" | "woff2" | undefined;
|
|
79
79
|
}>>;
|
|
80
80
|
body: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
@@ -84,49 +84,49 @@ export declare const fontsSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
84
84
|
format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
|
|
85
85
|
}, "strip", z.ZodTypeAny, {
|
|
86
86
|
family: string;
|
|
87
|
-
weight?: number | undefined;
|
|
88
87
|
source?: string | undefined;
|
|
88
|
+
weight?: number | undefined;
|
|
89
89
|
format?: "woff" | "woff2" | undefined;
|
|
90
90
|
}, {
|
|
91
91
|
family: string;
|
|
92
|
-
weight?: number | undefined;
|
|
93
92
|
source?: string | undefined;
|
|
93
|
+
weight?: number | undefined;
|
|
94
94
|
format?: "woff" | "woff2" | undefined;
|
|
95
95
|
}>, {
|
|
96
96
|
family: string;
|
|
97
|
-
weight?: number | undefined;
|
|
98
97
|
source?: string | undefined;
|
|
98
|
+
weight?: number | undefined;
|
|
99
99
|
format?: "woff" | "woff2" | undefined;
|
|
100
100
|
}, {
|
|
101
101
|
family: string;
|
|
102
|
-
weight?: number | undefined;
|
|
103
102
|
source?: string | undefined;
|
|
103
|
+
weight?: number | undefined;
|
|
104
104
|
format?: "woff" | "woff2" | undefined;
|
|
105
105
|
}>>;
|
|
106
106
|
}, "strict", z.ZodTypeAny, {
|
|
107
|
-
|
|
107
|
+
body?: {
|
|
108
108
|
family: string;
|
|
109
|
-
weight?: number | undefined;
|
|
110
109
|
source?: string | undefined;
|
|
110
|
+
weight?: number | undefined;
|
|
111
111
|
format?: "woff" | "woff2" | undefined;
|
|
112
112
|
} | undefined;
|
|
113
|
-
|
|
113
|
+
heading?: {
|
|
114
114
|
family: string;
|
|
115
|
-
weight?: number | undefined;
|
|
116
115
|
source?: string | undefined;
|
|
116
|
+
weight?: number | undefined;
|
|
117
117
|
format?: "woff" | "woff2" | undefined;
|
|
118
118
|
} | undefined;
|
|
119
119
|
}, {
|
|
120
|
-
|
|
120
|
+
body?: {
|
|
121
121
|
family: string;
|
|
122
|
-
weight?: number | undefined;
|
|
123
122
|
source?: string | undefined;
|
|
123
|
+
weight?: number | undefined;
|
|
124
124
|
format?: "woff" | "woff2" | undefined;
|
|
125
125
|
} | undefined;
|
|
126
|
-
|
|
126
|
+
heading?: {
|
|
127
127
|
family: string;
|
|
128
|
-
weight?: number | undefined;
|
|
129
128
|
source?: string | undefined;
|
|
129
|
+
weight?: number | undefined;
|
|
130
130
|
format?: "woff" | "woff2" | undefined;
|
|
131
131
|
} | undefined;
|
|
132
132
|
}>]>;
|
|
@@ -63,7 +63,6 @@ export declare const footerSchema: z.ZodObject<{
|
|
|
63
63
|
header?: string | undefined;
|
|
64
64
|
}>, "many">>;
|
|
65
65
|
}, "strip", z.ZodTypeAny, {
|
|
66
|
-
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;
|
|
67
66
|
links?: {
|
|
68
67
|
items: {
|
|
69
68
|
href: string;
|
|
@@ -71,8 +70,8 @@ export declare const footerSchema: z.ZodObject<{
|
|
|
71
70
|
}[];
|
|
72
71
|
header?: string | undefined;
|
|
73
72
|
}[] | undefined;
|
|
74
|
-
}, {
|
|
75
73
|
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;
|
|
74
|
+
}, {
|
|
76
75
|
links?: {
|
|
77
76
|
items: {
|
|
78
77
|
href: string;
|
|
@@ -80,4 +79,5 @@ export declare const footerSchema: z.ZodObject<{
|
|
|
80
79
|
}[];
|
|
81
80
|
header?: string | undefined;
|
|
82
81
|
}[] | undefined;
|
|
82
|
+
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;
|
|
83
83
|
}>;
|
|
@@ -156,11 +156,11 @@ export declare const integrationsSchema: z.ZodObject<{
|
|
|
156
156
|
key: z.ZodOptional<z.ZodString>;
|
|
157
157
|
value: z.ZodOptional<z.ZodString>;
|
|
158
158
|
}, "strip", z.ZodTypeAny, {
|
|
159
|
-
key?: string | undefined;
|
|
160
159
|
value?: string | undefined;
|
|
161
|
-
}, {
|
|
162
160
|
key?: string | undefined;
|
|
161
|
+
}, {
|
|
163
162
|
value?: string | undefined;
|
|
163
|
+
key?: string | undefined;
|
|
164
164
|
}>>;
|
|
165
165
|
}, "strict", z.ZodTypeAny, {
|
|
166
166
|
amplitude?: {
|
|
@@ -175,9 +175,6 @@ export declare const integrationsSchema: z.ZodObject<{
|
|
|
175
175
|
fathom?: {
|
|
176
176
|
siteId: string;
|
|
177
177
|
} | undefined;
|
|
178
|
-
frontchat?: {
|
|
179
|
-
snippetId: string;
|
|
180
|
-
} | undefined;
|
|
181
178
|
ga4?: {
|
|
182
179
|
measurementId: string;
|
|
183
180
|
} | undefined;
|
|
@@ -195,9 +192,6 @@ export declare const integrationsSchema: z.ZodObject<{
|
|
|
195
192
|
hjid: string;
|
|
196
193
|
hjsv: string;
|
|
197
194
|
} | undefined;
|
|
198
|
-
intercom?: {
|
|
199
|
-
appId: string;
|
|
200
|
-
} | undefined;
|
|
201
195
|
koala?: {
|
|
202
196
|
publicApiKey: string;
|
|
203
197
|
} | undefined;
|
|
@@ -207,9 +201,6 @@ export declare const integrationsSchema: z.ZodObject<{
|
|
|
207
201
|
mixpanel?: {
|
|
208
202
|
projectToken: string;
|
|
209
203
|
} | undefined;
|
|
210
|
-
osano?: {
|
|
211
|
-
scriptSource: string;
|
|
212
|
-
} | undefined;
|
|
213
204
|
pirsch?: {
|
|
214
205
|
id: string;
|
|
215
206
|
} | undefined;
|
|
@@ -224,12 +215,21 @@ export declare const integrationsSchema: z.ZodObject<{
|
|
|
224
215
|
segment?: {
|
|
225
216
|
key: string;
|
|
226
217
|
} | undefined;
|
|
218
|
+
intercom?: {
|
|
219
|
+
appId: string;
|
|
220
|
+
} | undefined;
|
|
221
|
+
frontchat?: {
|
|
222
|
+
snippetId: string;
|
|
223
|
+
} | undefined;
|
|
224
|
+
osano?: {
|
|
225
|
+
scriptSource: string;
|
|
226
|
+
} | undefined;
|
|
227
227
|
telemetry?: {
|
|
228
228
|
enabled?: boolean | undefined;
|
|
229
229
|
} | undefined;
|
|
230
230
|
cookies?: {
|
|
231
|
-
key?: string | undefined;
|
|
232
231
|
value?: string | undefined;
|
|
232
|
+
key?: string | undefined;
|
|
233
233
|
} | undefined;
|
|
234
234
|
}, {
|
|
235
235
|
amplitude?: {
|
|
@@ -244,9 +244,6 @@ export declare const integrationsSchema: z.ZodObject<{
|
|
|
244
244
|
fathom?: {
|
|
245
245
|
siteId: string;
|
|
246
246
|
} | undefined;
|
|
247
|
-
frontchat?: {
|
|
248
|
-
snippetId: string;
|
|
249
|
-
} | undefined;
|
|
250
247
|
ga4?: {
|
|
251
248
|
measurementId: string;
|
|
252
249
|
} | undefined;
|
|
@@ -264,9 +261,6 @@ export declare const integrationsSchema: z.ZodObject<{
|
|
|
264
261
|
hjid: string;
|
|
265
262
|
hjsv: string;
|
|
266
263
|
} | undefined;
|
|
267
|
-
intercom?: {
|
|
268
|
-
appId: string;
|
|
269
|
-
} | undefined;
|
|
270
264
|
koala?: {
|
|
271
265
|
publicApiKey: string;
|
|
272
266
|
} | undefined;
|
|
@@ -276,9 +270,6 @@ export declare const integrationsSchema: z.ZodObject<{
|
|
|
276
270
|
mixpanel?: {
|
|
277
271
|
projectToken: string;
|
|
278
272
|
} | undefined;
|
|
279
|
-
osano?: {
|
|
280
|
-
scriptSource: string;
|
|
281
|
-
} | undefined;
|
|
282
273
|
pirsch?: {
|
|
283
274
|
id: string;
|
|
284
275
|
} | undefined;
|
|
@@ -293,11 +284,20 @@ export declare const integrationsSchema: z.ZodObject<{
|
|
|
293
284
|
segment?: {
|
|
294
285
|
key: string;
|
|
295
286
|
} | undefined;
|
|
287
|
+
intercom?: {
|
|
288
|
+
appId: string;
|
|
289
|
+
} | undefined;
|
|
290
|
+
frontchat?: {
|
|
291
|
+
snippetId: string;
|
|
292
|
+
} | undefined;
|
|
293
|
+
osano?: {
|
|
294
|
+
scriptSource: string;
|
|
295
|
+
} | undefined;
|
|
296
296
|
telemetry?: {
|
|
297
297
|
enabled?: boolean | undefined;
|
|
298
298
|
} | undefined;
|
|
299
299
|
cookies?: {
|
|
300
|
-
key?: string | undefined;
|
|
301
300
|
value?: string | undefined;
|
|
301
|
+
key?: string | undefined;
|
|
302
302
|
} | undefined;
|
|
303
303
|
}>;
|