@mintlify/validation 0.1.371 → 0.1.372

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.
@@ -0,0 +1,1751 @@
1
+ import { z } from 'zod';
2
+ export declare const aspenConfigSchema: z.ZodObject<{
3
+ $schema: z.ZodDefault<z.ZodOptional<z.ZodString>>;
4
+ name: z.ZodString;
5
+ description: z.ZodOptional<z.ZodString>;
6
+ colors: z.ZodObject<{
7
+ primary: z.ZodString;
8
+ light: z.ZodOptional<z.ZodString>;
9
+ dark: z.ZodOptional<z.ZodString>;
10
+ }, "strict", z.ZodTypeAny, {
11
+ primary: string;
12
+ light?: string | undefined;
13
+ dark?: string | undefined;
14
+ }, {
15
+ primary: string;
16
+ light?: string | undefined;
17
+ dark?: string | undefined;
18
+ }>;
19
+ logo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
20
+ light: z.ZodString;
21
+ dark: z.ZodString;
22
+ href: z.ZodOptional<z.ZodString>;
23
+ }, "strip", z.ZodTypeAny, {
24
+ light: string;
25
+ dark: string;
26
+ href?: string | undefined;
27
+ }, {
28
+ light: string;
29
+ dark: string;
30
+ href?: string | undefined;
31
+ }>]>>;
32
+ favicon: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
33
+ light: z.ZodString;
34
+ dark: z.ZodString;
35
+ }, "strip", z.ZodTypeAny, {
36
+ light: string;
37
+ dark: string;
38
+ }, {
39
+ light: string;
40
+ dark: string;
41
+ }>]>>;
42
+ api: z.ZodOptional<z.ZodObject<{
43
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
44
+ source: z.ZodEffects<z.ZodString, string, string>;
45
+ directory: z.ZodOptional<z.ZodString>;
46
+ }, "strict", z.ZodTypeAny, {
47
+ source: string;
48
+ directory?: string | undefined;
49
+ }, {
50
+ source: string;
51
+ directory?: string | undefined;
52
+ }>]>>;
53
+ asyncapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
54
+ source: z.ZodEffects<z.ZodString, string, string>;
55
+ directory: z.ZodOptional<z.ZodString>;
56
+ }, "strict", z.ZodTypeAny, {
57
+ source: string;
58
+ directory?: string | undefined;
59
+ }, {
60
+ source: string;
61
+ directory?: string | undefined;
62
+ }>]>>;
63
+ params: z.ZodOptional<z.ZodObject<{
64
+ expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
65
+ }, "strip", z.ZodTypeAny, {
66
+ expanded?: "all" | "closed" | undefined;
67
+ }, {
68
+ expanded?: "all" | "closed" | undefined;
69
+ }>>;
70
+ playground: z.ZodOptional<z.ZodObject<{
71
+ display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
72
+ proxy: z.ZodOptional<z.ZodBoolean>;
73
+ }, "strip", z.ZodTypeAny, {
74
+ display?: "simple" | "none" | "interactive" | undefined;
75
+ proxy?: boolean | undefined;
76
+ }, {
77
+ display?: "simple" | "none" | "interactive" | undefined;
78
+ proxy?: boolean | undefined;
79
+ }>>;
80
+ examples: z.ZodOptional<z.ZodObject<{
81
+ defaults: z.ZodOptional<z.ZodEnum<["required", "all"]>>;
82
+ languages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
83
+ }, "strip", z.ZodTypeAny, {
84
+ defaults?: "all" | "required" | undefined;
85
+ languages?: string[] | undefined;
86
+ }, {
87
+ defaults?: "all" | "required" | undefined;
88
+ languages?: string[] | undefined;
89
+ }>>;
90
+ mdx: z.ZodOptional<z.ZodObject<{
91
+ auth: z.ZodOptional<z.ZodObject<{
92
+ method: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
93
+ name: z.ZodOptional<z.ZodString>;
94
+ }, "strip", z.ZodTypeAny, {
95
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
96
+ name?: string | undefined;
97
+ }, {
98
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
99
+ name?: string | undefined;
100
+ }>>;
101
+ server: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
102
+ }, "strip", z.ZodTypeAny, {
103
+ auth?: {
104
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
105
+ name?: string | undefined;
106
+ } | undefined;
107
+ server?: string | string[] | undefined;
108
+ }, {
109
+ auth?: {
110
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
111
+ name?: string | undefined;
112
+ } | undefined;
113
+ server?: string | string[] | undefined;
114
+ }>>;
115
+ }, "strip", z.ZodTypeAny, {
116
+ openapi?: string | string[] | {
117
+ source: string;
118
+ directory?: string | undefined;
119
+ } | undefined;
120
+ asyncapi?: string | string[] | {
121
+ source: string;
122
+ directory?: string | undefined;
123
+ } | undefined;
124
+ params?: {
125
+ expanded?: "all" | "closed" | undefined;
126
+ } | undefined;
127
+ playground?: {
128
+ display?: "simple" | "none" | "interactive" | undefined;
129
+ proxy?: boolean | undefined;
130
+ } | undefined;
131
+ examples?: {
132
+ defaults?: "all" | "required" | undefined;
133
+ languages?: string[] | undefined;
134
+ } | undefined;
135
+ mdx?: {
136
+ auth?: {
137
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
138
+ name?: string | undefined;
139
+ } | undefined;
140
+ server?: string | string[] | undefined;
141
+ } | undefined;
142
+ }, {
143
+ openapi?: string | string[] | {
144
+ source: string;
145
+ directory?: string | undefined;
146
+ } | undefined;
147
+ asyncapi?: string | string[] | {
148
+ source: string;
149
+ directory?: string | undefined;
150
+ } | undefined;
151
+ params?: {
152
+ expanded?: "all" | "closed" | undefined;
153
+ } | undefined;
154
+ playground?: {
155
+ display?: "simple" | "none" | "interactive" | undefined;
156
+ proxy?: boolean | undefined;
157
+ } | undefined;
158
+ examples?: {
159
+ defaults?: "all" | "required" | undefined;
160
+ languages?: string[] | undefined;
161
+ } | undefined;
162
+ mdx?: {
163
+ auth?: {
164
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
165
+ name?: string | undefined;
166
+ } | undefined;
167
+ server?: string | string[] | undefined;
168
+ } | undefined;
169
+ }>>;
170
+ appearance: z.ZodOptional<z.ZodObject<{
171
+ default: z.ZodOptional<z.ZodEnum<["system", "light", "dark"]>>;
172
+ strict: z.ZodOptional<z.ZodBoolean>;
173
+ }, "strip", z.ZodTypeAny, {
174
+ default?: "light" | "dark" | "system" | undefined;
175
+ strict?: boolean | undefined;
176
+ }, {
177
+ default?: "light" | "dark" | "system" | undefined;
178
+ strict?: boolean | undefined;
179
+ }>>;
180
+ background: z.ZodOptional<z.ZodObject<{
181
+ image: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
182
+ light: z.ZodString;
183
+ dark: z.ZodString;
184
+ }, "strip", z.ZodTypeAny, {
185
+ light: string;
186
+ dark: string;
187
+ }, {
188
+ light: string;
189
+ dark: string;
190
+ }>]>>;
191
+ decoration: z.ZodOptional<z.ZodEnum<["gradient", "grid", "windows"]>>;
192
+ color: z.ZodOptional<z.ZodObject<{
193
+ light: z.ZodOptional<z.ZodString>;
194
+ dark: z.ZodOptional<z.ZodString>;
195
+ }, "strict", z.ZodTypeAny, {
196
+ light?: string | undefined;
197
+ dark?: string | undefined;
198
+ }, {
199
+ light?: string | undefined;
200
+ dark?: string | undefined;
201
+ }>>;
202
+ }, "strip", z.ZodTypeAny, {
203
+ image?: string | {
204
+ light: string;
205
+ dark: string;
206
+ } | undefined;
207
+ decoration?: "gradient" | "grid" | "windows" | undefined;
208
+ color?: {
209
+ light?: string | undefined;
210
+ dark?: string | undefined;
211
+ } | undefined;
212
+ }, {
213
+ image?: string | {
214
+ light: string;
215
+ dark: string;
216
+ } | undefined;
217
+ decoration?: "gradient" | "grid" | "windows" | undefined;
218
+ color?: {
219
+ light?: string | undefined;
220
+ dark?: string | undefined;
221
+ } | undefined;
222
+ }>>;
223
+ navbar: z.ZodOptional<z.ZodObject<{
224
+ links: z.ZodOptional<z.ZodArray<z.ZodObject<{
225
+ label: z.ZodString;
226
+ href: z.ZodString;
227
+ }, "strip", z.ZodTypeAny, {
228
+ href: string;
229
+ label: string;
230
+ }, {
231
+ href: string;
232
+ label: string;
233
+ }>, "many">>;
234
+ primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
235
+ type: z.ZodLiteral<"button">;
236
+ label: z.ZodString;
237
+ href: z.ZodString;
238
+ }, "strip", z.ZodTypeAny, {
239
+ type: "button";
240
+ href: string;
241
+ label: string;
242
+ }, {
243
+ type: "button";
244
+ href: string;
245
+ label: string;
246
+ }>, z.ZodObject<{
247
+ type: z.ZodLiteral<"github">;
248
+ href: z.ZodString;
249
+ }, "strip", z.ZodTypeAny, {
250
+ type: "github";
251
+ href: string;
252
+ }, {
253
+ type: "github";
254
+ href: string;
255
+ }>]>>;
256
+ }, "strip", z.ZodTypeAny, {
257
+ links?: {
258
+ href: string;
259
+ label: string;
260
+ }[] | undefined;
261
+ primary?: {
262
+ type: "button";
263
+ href: string;
264
+ label: string;
265
+ } | {
266
+ type: "github";
267
+ href: string;
268
+ } | undefined;
269
+ }, {
270
+ links?: {
271
+ href: string;
272
+ label: string;
273
+ }[] | undefined;
274
+ primary?: {
275
+ type: "button";
276
+ href: string;
277
+ label: string;
278
+ } | {
279
+ type: "github";
280
+ href: string;
281
+ } | undefined;
282
+ }>>;
283
+ navigation: z.ZodUnion<[z.ZodObject<{
284
+ global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
285
+ languages: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
286
+ }, "strip", z.ZodTypeAny, {
287
+ languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
288
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
289
+ }, {
290
+ languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
291
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
292
+ }>, z.ZodObject<{
293
+ global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
294
+ versions: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
295
+ }, "strip", z.ZodTypeAny, {
296
+ versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
297
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
298
+ }, {
299
+ versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
300
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
301
+ }>, z.ZodObject<{
302
+ global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
303
+ tabs: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
304
+ }, "strip", z.ZodTypeAny, {
305
+ tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
306
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
307
+ }, {
308
+ tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
309
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
310
+ }>, z.ZodObject<{
311
+ global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
312
+ dropdowns: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
313
+ }, "strip", z.ZodTypeAny, {
314
+ dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
315
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
316
+ }, {
317
+ dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
318
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
319
+ }>, z.ZodObject<{
320
+ global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
321
+ anchors: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
322
+ }, "strip", z.ZodTypeAny, {
323
+ anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
324
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
325
+ }, {
326
+ anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
327
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
328
+ }>, z.ZodObject<{
329
+ global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
330
+ groups: z.ZodArray<z.ZodUnion<[z.ZodObject<{
331
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
332
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
333
+ name: z.ZodEffects<z.ZodString, string, string>;
334
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
335
+ }, "strip", z.ZodTypeAny, {
336
+ name: string;
337
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
338
+ library?: "fontawesome" | "lucide" | undefined;
339
+ }, {
340
+ name: string;
341
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
342
+ library?: "fontawesome" | "lucide" | undefined;
343
+ }>]>>;
344
+ group: z.ZodString;
345
+ hidden: z.ZodOptional<z.ZodBoolean>;
346
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
347
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
348
+ source: z.ZodEffects<z.ZodString, string, string>;
349
+ directory: z.ZodOptional<z.ZodString>;
350
+ }, "strict", z.ZodTypeAny, {
351
+ source: string;
352
+ directory?: string | undefined;
353
+ }, {
354
+ source: string;
355
+ directory?: string | undefined;
356
+ }>]>;
357
+ }, "strip", z.ZodTypeAny, {
358
+ openapi: (string | string[] | {
359
+ source: string;
360
+ directory?: string | undefined;
361
+ }) & (string | string[] | {
362
+ source: string;
363
+ directory?: string | undefined;
364
+ } | undefined);
365
+ group: string;
366
+ icon?: string | {
367
+ name: string;
368
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
369
+ library?: "fontawesome" | "lucide" | undefined;
370
+ } | undefined;
371
+ hidden?: boolean | undefined;
372
+ root?: string | undefined;
373
+ }, {
374
+ openapi: (string | string[] | {
375
+ source: string;
376
+ directory?: string | undefined;
377
+ }) & (string | string[] | {
378
+ source: string;
379
+ directory?: string | undefined;
380
+ } | undefined);
381
+ group: string;
382
+ icon?: string | {
383
+ name: string;
384
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
385
+ library?: "fontawesome" | "lucide" | undefined;
386
+ } | undefined;
387
+ hidden?: boolean | undefined;
388
+ root?: string | undefined;
389
+ }>, z.ZodObject<{
390
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
391
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
392
+ name: z.ZodEffects<z.ZodString, string, string>;
393
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
394
+ }, "strip", z.ZodTypeAny, {
395
+ name: string;
396
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
397
+ library?: "fontawesome" | "lucide" | undefined;
398
+ }, {
399
+ name: string;
400
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
401
+ library?: "fontawesome" | "lucide" | undefined;
402
+ }>]>>;
403
+ group: z.ZodString;
404
+ hidden: z.ZodOptional<z.ZodBoolean>;
405
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
406
+ asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
407
+ source: z.ZodEffects<z.ZodString, string, string>;
408
+ directory: z.ZodOptional<z.ZodString>;
409
+ }, "strict", z.ZodTypeAny, {
410
+ source: string;
411
+ directory?: string | undefined;
412
+ }, {
413
+ source: string;
414
+ directory?: string | undefined;
415
+ }>]>;
416
+ }, "strip", z.ZodTypeAny, {
417
+ group: string;
418
+ asyncapi: (string | string[] | {
419
+ source: string;
420
+ directory?: string | undefined;
421
+ }) & (string | string[] | {
422
+ source: string;
423
+ directory?: string | undefined;
424
+ } | undefined);
425
+ icon?: string | {
426
+ name: string;
427
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
428
+ library?: "fontawesome" | "lucide" | undefined;
429
+ } | undefined;
430
+ hidden?: boolean | undefined;
431
+ root?: string | undefined;
432
+ }, {
433
+ group: string;
434
+ asyncapi: (string | string[] | {
435
+ source: string;
436
+ directory?: string | undefined;
437
+ }) & (string | string[] | {
438
+ source: string;
439
+ directory?: string | undefined;
440
+ } | undefined);
441
+ icon?: string | {
442
+ name: string;
443
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
444
+ library?: "fontawesome" | "lucide" | undefined;
445
+ } | undefined;
446
+ hidden?: boolean | undefined;
447
+ root?: string | undefined;
448
+ }>, z.ZodObject<{
449
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
450
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
451
+ name: z.ZodEffects<z.ZodString, string, string>;
452
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
453
+ }, "strip", z.ZodTypeAny, {
454
+ name: string;
455
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
456
+ library?: "fontawesome" | "lucide" | undefined;
457
+ }, {
458
+ name: string;
459
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
460
+ library?: "fontawesome" | "lucide" | undefined;
461
+ }>]>>;
462
+ group: z.ZodString;
463
+ hidden: z.ZodOptional<z.ZodBoolean>;
464
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
465
+ pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
466
+ }, "strip", z.ZodTypeAny, {
467
+ group: string;
468
+ pages: any[];
469
+ icon?: string | {
470
+ name: string;
471
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
472
+ library?: "fontawesome" | "lucide" | undefined;
473
+ } | undefined;
474
+ hidden?: boolean | undefined;
475
+ root?: string | undefined;
476
+ }, {
477
+ group: string;
478
+ pages: any[];
479
+ icon?: string | {
480
+ name: string;
481
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
482
+ library?: "fontawesome" | "lucide" | undefined;
483
+ } | undefined;
484
+ hidden?: boolean | undefined;
485
+ root?: string | undefined;
486
+ }>]>, "many">;
487
+ }, "strip", z.ZodTypeAny, {
488
+ groups: ({
489
+ openapi: (string | string[] | {
490
+ source: string;
491
+ directory?: string | undefined;
492
+ }) & (string | string[] | {
493
+ source: string;
494
+ directory?: string | undefined;
495
+ } | undefined);
496
+ group: string;
497
+ icon?: string | {
498
+ name: string;
499
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
500
+ library?: "fontawesome" | "lucide" | undefined;
501
+ } | undefined;
502
+ hidden?: boolean | undefined;
503
+ root?: string | undefined;
504
+ } | {
505
+ group: string;
506
+ asyncapi: (string | string[] | {
507
+ source: string;
508
+ directory?: string | undefined;
509
+ }) & (string | string[] | {
510
+ source: string;
511
+ directory?: string | undefined;
512
+ } | undefined);
513
+ icon?: string | {
514
+ name: string;
515
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
516
+ library?: "fontawesome" | "lucide" | undefined;
517
+ } | undefined;
518
+ hidden?: boolean | undefined;
519
+ root?: string | undefined;
520
+ } | {
521
+ group: string;
522
+ pages: any[];
523
+ icon?: string | {
524
+ name: string;
525
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
526
+ library?: "fontawesome" | "lucide" | undefined;
527
+ } | undefined;
528
+ hidden?: boolean | undefined;
529
+ root?: string | undefined;
530
+ })[];
531
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
532
+ }, {
533
+ groups: ({
534
+ openapi: (string | string[] | {
535
+ source: string;
536
+ directory?: string | undefined;
537
+ }) & (string | string[] | {
538
+ source: string;
539
+ directory?: string | undefined;
540
+ } | undefined);
541
+ group: string;
542
+ icon?: string | {
543
+ name: string;
544
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
545
+ library?: "fontawesome" | "lucide" | undefined;
546
+ } | undefined;
547
+ hidden?: boolean | undefined;
548
+ root?: string | undefined;
549
+ } | {
550
+ group: string;
551
+ asyncapi: (string | string[] | {
552
+ source: string;
553
+ directory?: string | undefined;
554
+ }) & (string | string[] | {
555
+ source: string;
556
+ directory?: string | undefined;
557
+ } | undefined);
558
+ icon?: string | {
559
+ name: string;
560
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
561
+ library?: "fontawesome" | "lucide" | undefined;
562
+ } | undefined;
563
+ hidden?: boolean | undefined;
564
+ root?: string | undefined;
565
+ } | {
566
+ group: string;
567
+ pages: any[];
568
+ icon?: string | {
569
+ name: string;
570
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
571
+ library?: "fontawesome" | "lucide" | undefined;
572
+ } | undefined;
573
+ hidden?: boolean | undefined;
574
+ root?: string | undefined;
575
+ })[];
576
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
577
+ }>, z.ZodObject<{
578
+ global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
579
+ pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
580
+ }, "strip", z.ZodTypeAny, {
581
+ pages: any[];
582
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
583
+ }, {
584
+ pages: any[];
585
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
586
+ }>]>;
587
+ footer: z.ZodOptional<z.ZodObject<{
588
+ socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter", "x-twitter", "earth-americas", "bluesky", "threads", "reddit", "podcast"]>, z.ZodString>>;
589
+ links: z.ZodOptional<z.ZodArray<z.ZodObject<{
590
+ header: z.ZodOptional<z.ZodString>;
591
+ items: z.ZodArray<z.ZodObject<{
592
+ label: z.ZodString;
593
+ href: z.ZodString;
594
+ }, "strip", z.ZodTypeAny, {
595
+ href: string;
596
+ label: string;
597
+ }, {
598
+ href: string;
599
+ label: string;
600
+ }>, "many">;
601
+ }, "strip", z.ZodTypeAny, {
602
+ items: {
603
+ href: string;
604
+ label: string;
605
+ }[];
606
+ header?: string | undefined;
607
+ }, {
608
+ items: {
609
+ href: string;
610
+ label: string;
611
+ }[];
612
+ header?: string | undefined;
613
+ }>, "many">>;
614
+ }, "strip", z.ZodTypeAny, {
615
+ 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;
616
+ links?: {
617
+ items: {
618
+ href: string;
619
+ label: string;
620
+ }[];
621
+ header?: string | undefined;
622
+ }[] | undefined;
623
+ }, {
624
+ 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;
625
+ links?: {
626
+ items: {
627
+ href: string;
628
+ label: string;
629
+ }[];
630
+ header?: string | undefined;
631
+ }[] | undefined;
632
+ }>>;
633
+ search: z.ZodOptional<z.ZodObject<{
634
+ prompt: z.ZodOptional<z.ZodString>;
635
+ }, "strip", z.ZodTypeAny, {
636
+ prompt?: string | undefined;
637
+ }, {
638
+ prompt?: string | undefined;
639
+ }>>;
640
+ seo: z.ZodOptional<z.ZodObject<{
641
+ metatags: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
642
+ indexing: z.ZodOptional<z.ZodEnum<["navigable", "all"]>>;
643
+ }, "strip", z.ZodTypeAny, {
644
+ metatags?: Record<string, string> | undefined;
645
+ indexing?: "all" | "navigable" | undefined;
646
+ }, {
647
+ metatags?: Record<string, string> | undefined;
648
+ indexing?: "all" | "navigable" | undefined;
649
+ }>>;
650
+ fonts: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodObject<{
651
+ family: z.ZodString;
652
+ weight: z.ZodOptional<z.ZodNumber>;
653
+ source: z.ZodOptional<z.ZodString>;
654
+ format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
655
+ }, "strip", z.ZodTypeAny, {
656
+ family: string;
657
+ weight?: number | undefined;
658
+ source?: string | undefined;
659
+ format?: "woff" | "woff2" | undefined;
660
+ }, {
661
+ family: string;
662
+ weight?: number | undefined;
663
+ source?: string | undefined;
664
+ format?: "woff" | "woff2" | undefined;
665
+ }>, {
666
+ family: string;
667
+ weight?: number | undefined;
668
+ source?: string | undefined;
669
+ format?: "woff" | "woff2" | undefined;
670
+ }, {
671
+ family: string;
672
+ weight?: number | undefined;
673
+ source?: string | undefined;
674
+ format?: "woff" | "woff2" | undefined;
675
+ }>, z.ZodObject<{
676
+ heading: z.ZodOptional<z.ZodEffects<z.ZodObject<{
677
+ family: z.ZodString;
678
+ weight: z.ZodOptional<z.ZodNumber>;
679
+ source: z.ZodOptional<z.ZodString>;
680
+ format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
681
+ }, "strip", z.ZodTypeAny, {
682
+ family: string;
683
+ weight?: number | undefined;
684
+ source?: string | undefined;
685
+ format?: "woff" | "woff2" | undefined;
686
+ }, {
687
+ family: string;
688
+ weight?: number | undefined;
689
+ source?: string | undefined;
690
+ format?: "woff" | "woff2" | undefined;
691
+ }>, {
692
+ family: string;
693
+ weight?: number | undefined;
694
+ source?: string | undefined;
695
+ format?: "woff" | "woff2" | undefined;
696
+ }, {
697
+ family: string;
698
+ weight?: number | undefined;
699
+ source?: string | undefined;
700
+ format?: "woff" | "woff2" | undefined;
701
+ }>>;
702
+ body: z.ZodOptional<z.ZodEffects<z.ZodObject<{
703
+ family: z.ZodString;
704
+ weight: z.ZodOptional<z.ZodNumber>;
705
+ source: z.ZodOptional<z.ZodString>;
706
+ format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
707
+ }, "strip", z.ZodTypeAny, {
708
+ family: string;
709
+ weight?: number | undefined;
710
+ source?: string | undefined;
711
+ format?: "woff" | "woff2" | undefined;
712
+ }, {
713
+ family: string;
714
+ weight?: number | undefined;
715
+ source?: string | undefined;
716
+ format?: "woff" | "woff2" | undefined;
717
+ }>, {
718
+ family: string;
719
+ weight?: number | undefined;
720
+ source?: string | undefined;
721
+ format?: "woff" | "woff2" | undefined;
722
+ }, {
723
+ family: string;
724
+ weight?: number | undefined;
725
+ source?: string | undefined;
726
+ format?: "woff" | "woff2" | undefined;
727
+ }>>;
728
+ }, "strict", z.ZodTypeAny, {
729
+ heading?: {
730
+ family: string;
731
+ weight?: number | undefined;
732
+ source?: string | undefined;
733
+ format?: "woff" | "woff2" | undefined;
734
+ } | undefined;
735
+ body?: {
736
+ family: string;
737
+ weight?: number | undefined;
738
+ source?: string | undefined;
739
+ format?: "woff" | "woff2" | undefined;
740
+ } | undefined;
741
+ }, {
742
+ heading?: {
743
+ family: string;
744
+ weight?: number | undefined;
745
+ source?: string | undefined;
746
+ format?: "woff" | "woff2" | undefined;
747
+ } | undefined;
748
+ body?: {
749
+ family: string;
750
+ weight?: number | undefined;
751
+ source?: string | undefined;
752
+ format?: "woff" | "woff2" | undefined;
753
+ } | undefined;
754
+ }>]>>;
755
+ icons: z.ZodOptional<z.ZodObject<{
756
+ library: z.ZodEnum<["fontawesome", "lucide"]>;
757
+ }, "strip", z.ZodTypeAny, {
758
+ library: "fontawesome" | "lucide";
759
+ }, {
760
+ library: "fontawesome" | "lucide";
761
+ }>>;
762
+ styling: z.ZodOptional<z.ZodObject<{
763
+ eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
764
+ codeblocks: z.ZodOptional<z.ZodEnum<["system", "dark"]>>;
765
+ }, "strip", z.ZodTypeAny, {
766
+ eyebrows?: "section" | "breadcrumbs" | undefined;
767
+ codeblocks?: "dark" | "system" | undefined;
768
+ }, {
769
+ eyebrows?: "section" | "breadcrumbs" | undefined;
770
+ codeblocks?: "dark" | "system" | undefined;
771
+ }>>;
772
+ redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
773
+ source: z.ZodString;
774
+ destination: z.ZodString;
775
+ permanent: z.ZodOptional<z.ZodBoolean>;
776
+ }, "strip", z.ZodTypeAny, {
777
+ source: string;
778
+ destination: string;
779
+ permanent?: boolean | undefined;
780
+ }, {
781
+ source: string;
782
+ destination: string;
783
+ permanent?: boolean | undefined;
784
+ }>, "many">, {
785
+ source: string;
786
+ destination: string;
787
+ permanent?: boolean | undefined;
788
+ }[], {
789
+ source: string;
790
+ destination: string;
791
+ permanent?: boolean | undefined;
792
+ }[]>>;
793
+ integrations: z.ZodOptional<z.ZodObject<{
794
+ amplitude: z.ZodOptional<z.ZodObject<{
795
+ apiKey: z.ZodString;
796
+ }, "strip", z.ZodTypeAny, {
797
+ apiKey: string;
798
+ }, {
799
+ apiKey: string;
800
+ }>>;
801
+ clearbit: z.ZodOptional<z.ZodObject<{
802
+ publicApiKey: z.ZodString;
803
+ }, "strip", z.ZodTypeAny, {
804
+ publicApiKey: string;
805
+ }, {
806
+ publicApiKey: string;
807
+ }>>;
808
+ fathom: z.ZodOptional<z.ZodObject<{
809
+ siteId: z.ZodString;
810
+ }, "strip", z.ZodTypeAny, {
811
+ siteId: string;
812
+ }, {
813
+ siteId: string;
814
+ }>>;
815
+ frontchat: z.ZodOptional<z.ZodObject<{
816
+ snippetId: z.ZodString;
817
+ }, "strip", z.ZodTypeAny, {
818
+ snippetId: string;
819
+ }, {
820
+ snippetId: string;
821
+ }>>;
822
+ ga4: z.ZodOptional<z.ZodObject<{
823
+ measurementId: z.ZodString;
824
+ }, "strip", z.ZodTypeAny, {
825
+ measurementId: string;
826
+ }, {
827
+ measurementId: string;
828
+ }>>;
829
+ gtm: z.ZodOptional<z.ZodObject<{
830
+ tagId: z.ZodString;
831
+ }, "strip", z.ZodTypeAny, {
832
+ tagId: string;
833
+ }, {
834
+ tagId: string;
835
+ }>>;
836
+ heap: z.ZodOptional<z.ZodObject<{
837
+ appId: z.ZodString;
838
+ }, "strip", z.ZodTypeAny, {
839
+ appId: string;
840
+ }, {
841
+ appId: string;
842
+ }>>;
843
+ hotjar: z.ZodOptional<z.ZodObject<{
844
+ hjid: z.ZodString;
845
+ hjsv: z.ZodString;
846
+ }, "strip", z.ZodTypeAny, {
847
+ hjid: string;
848
+ hjsv: string;
849
+ }, {
850
+ hjid: string;
851
+ hjsv: string;
852
+ }>>;
853
+ intercom: z.ZodOptional<z.ZodObject<{
854
+ appId: z.ZodString;
855
+ }, "strip", z.ZodTypeAny, {
856
+ appId: string;
857
+ }, {
858
+ appId: string;
859
+ }>>;
860
+ koala: z.ZodOptional<z.ZodObject<{
861
+ publicApiKey: z.ZodString;
862
+ }, "strip", z.ZodTypeAny, {
863
+ publicApiKey: string;
864
+ }, {
865
+ publicApiKey: string;
866
+ }>>;
867
+ logrocket: z.ZodOptional<z.ZodObject<{
868
+ appId: z.ZodString;
869
+ }, "strip", z.ZodTypeAny, {
870
+ appId: string;
871
+ }, {
872
+ appId: string;
873
+ }>>;
874
+ mixpanel: z.ZodOptional<z.ZodObject<{
875
+ projectToken: z.ZodString;
876
+ }, "strip", z.ZodTypeAny, {
877
+ projectToken: string;
878
+ }, {
879
+ projectToken: string;
880
+ }>>;
881
+ osano: z.ZodOptional<z.ZodObject<{
882
+ scriptSource: z.ZodString;
883
+ }, "strip", z.ZodTypeAny, {
884
+ scriptSource: string;
885
+ }, {
886
+ scriptSource: string;
887
+ }>>;
888
+ pirsch: z.ZodOptional<z.ZodObject<{
889
+ id: z.ZodString;
890
+ }, "strip", z.ZodTypeAny, {
891
+ id: string;
892
+ }, {
893
+ id: string;
894
+ }>>;
895
+ posthog: z.ZodOptional<z.ZodObject<{
896
+ apiKey: z.ZodString;
897
+ apiHost: z.ZodOptional<z.ZodString>;
898
+ }, "strip", z.ZodTypeAny, {
899
+ apiKey: string;
900
+ apiHost?: string | undefined;
901
+ }, {
902
+ apiKey: string;
903
+ apiHost?: string | undefined;
904
+ }>>;
905
+ plausible: z.ZodOptional<z.ZodObject<{
906
+ domain: z.ZodEffects<z.ZodString, string, string>;
907
+ server: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
908
+ }, "strip", z.ZodTypeAny, {
909
+ domain: string;
910
+ server?: string | undefined;
911
+ }, {
912
+ domain: string;
913
+ server?: string | undefined;
914
+ }>>;
915
+ segment: z.ZodOptional<z.ZodObject<{
916
+ key: z.ZodString;
917
+ }, "strip", z.ZodTypeAny, {
918
+ key: string;
919
+ }, {
920
+ key: string;
921
+ }>>;
922
+ telemetry: z.ZodOptional<z.ZodObject<{
923
+ enabled: z.ZodOptional<z.ZodBoolean>;
924
+ }, "strip", z.ZodTypeAny, {
925
+ enabled?: boolean | undefined;
926
+ }, {
927
+ enabled?: boolean | undefined;
928
+ }>>;
929
+ cookies: z.ZodOptional<z.ZodObject<{
930
+ key: z.ZodOptional<z.ZodString>;
931
+ value: z.ZodOptional<z.ZodString>;
932
+ }, "strip", z.ZodTypeAny, {
933
+ key?: string | undefined;
934
+ value?: string | undefined;
935
+ }, {
936
+ key?: string | undefined;
937
+ value?: string | undefined;
938
+ }>>;
939
+ }, "strict", z.ZodTypeAny, {
940
+ amplitude?: {
941
+ apiKey: string;
942
+ } | undefined;
943
+ clearbit?: {
944
+ publicApiKey: string;
945
+ } | undefined;
946
+ fathom?: {
947
+ siteId: string;
948
+ } | undefined;
949
+ frontchat?: {
950
+ snippetId: string;
951
+ } | undefined;
952
+ ga4?: {
953
+ measurementId: string;
954
+ } | undefined;
955
+ gtm?: {
956
+ tagId: string;
957
+ } | undefined;
958
+ heap?: {
959
+ appId: string;
960
+ } | undefined;
961
+ hotjar?: {
962
+ hjid: string;
963
+ hjsv: string;
964
+ } | undefined;
965
+ intercom?: {
966
+ appId: string;
967
+ } | undefined;
968
+ koala?: {
969
+ publicApiKey: string;
970
+ } | undefined;
971
+ logrocket?: {
972
+ appId: string;
973
+ } | undefined;
974
+ mixpanel?: {
975
+ projectToken: string;
976
+ } | undefined;
977
+ osano?: {
978
+ scriptSource: string;
979
+ } | undefined;
980
+ pirsch?: {
981
+ id: string;
982
+ } | undefined;
983
+ posthog?: {
984
+ apiKey: string;
985
+ apiHost?: string | undefined;
986
+ } | undefined;
987
+ plausible?: {
988
+ domain: string;
989
+ server?: string | undefined;
990
+ } | undefined;
991
+ segment?: {
992
+ key: string;
993
+ } | undefined;
994
+ telemetry?: {
995
+ enabled?: boolean | undefined;
996
+ } | undefined;
997
+ cookies?: {
998
+ key?: string | undefined;
999
+ value?: string | undefined;
1000
+ } | undefined;
1001
+ }, {
1002
+ amplitude?: {
1003
+ apiKey: string;
1004
+ } | undefined;
1005
+ clearbit?: {
1006
+ publicApiKey: string;
1007
+ } | undefined;
1008
+ fathom?: {
1009
+ siteId: string;
1010
+ } | undefined;
1011
+ frontchat?: {
1012
+ snippetId: string;
1013
+ } | undefined;
1014
+ ga4?: {
1015
+ measurementId: string;
1016
+ } | undefined;
1017
+ gtm?: {
1018
+ tagId: string;
1019
+ } | undefined;
1020
+ heap?: {
1021
+ appId: string;
1022
+ } | undefined;
1023
+ hotjar?: {
1024
+ hjid: string;
1025
+ hjsv: string;
1026
+ } | undefined;
1027
+ intercom?: {
1028
+ appId: string;
1029
+ } | undefined;
1030
+ koala?: {
1031
+ publicApiKey: string;
1032
+ } | undefined;
1033
+ logrocket?: {
1034
+ appId: string;
1035
+ } | undefined;
1036
+ mixpanel?: {
1037
+ projectToken: string;
1038
+ } | undefined;
1039
+ osano?: {
1040
+ scriptSource: string;
1041
+ } | undefined;
1042
+ pirsch?: {
1043
+ id: string;
1044
+ } | undefined;
1045
+ posthog?: {
1046
+ apiKey: string;
1047
+ apiHost?: string | undefined;
1048
+ } | undefined;
1049
+ plausible?: {
1050
+ domain: string;
1051
+ server?: string | undefined;
1052
+ } | undefined;
1053
+ segment?: {
1054
+ key: string;
1055
+ } | undefined;
1056
+ telemetry?: {
1057
+ enabled?: boolean | undefined;
1058
+ } | undefined;
1059
+ cookies?: {
1060
+ key?: string | undefined;
1061
+ value?: string | undefined;
1062
+ } | undefined;
1063
+ }>>;
1064
+ banner: z.ZodOptional<z.ZodObject<{
1065
+ content: z.ZodString;
1066
+ dismissible: z.ZodOptional<z.ZodBoolean>;
1067
+ }, "strip", z.ZodTypeAny, {
1068
+ content: string;
1069
+ dismissible?: boolean | undefined;
1070
+ }, {
1071
+ content: string;
1072
+ dismissible?: boolean | undefined;
1073
+ }>>;
1074
+ errors: z.ZodOptional<z.ZodObject<{
1075
+ '404': z.ZodObject<{
1076
+ redirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1077
+ }, "strip", z.ZodTypeAny, {
1078
+ redirect: boolean;
1079
+ }, {
1080
+ redirect?: boolean | undefined;
1081
+ }>;
1082
+ }, "strip", z.ZodTypeAny, {
1083
+ '404': {
1084
+ redirect: boolean;
1085
+ };
1086
+ }, {
1087
+ '404': {
1088
+ redirect?: boolean | undefined;
1089
+ };
1090
+ }>>;
1091
+ contextual: z.ZodOptional<z.ZodObject<{
1092
+ options: z.ZodEffects<z.ZodArray<z.ZodEnum<["copy", "view", "chatgpt", "claude"]>, "many">, ("copy" | "view" | "chatgpt" | "claude")[], ("copy" | "view" | "chatgpt" | "claude")[]>;
1093
+ }, "strip", z.ZodTypeAny, {
1094
+ options: ("copy" | "view" | "chatgpt" | "claude")[];
1095
+ }, {
1096
+ options: ("copy" | "view" | "chatgpt" | "claude")[];
1097
+ }>>;
1098
+ theme: z.ZodLiteral<"aspen">;
1099
+ }, "strip", z.ZodTypeAny, {
1100
+ name: string;
1101
+ $schema: string;
1102
+ theme: "aspen";
1103
+ colors: {
1104
+ primary: string;
1105
+ light?: string | undefined;
1106
+ dark?: string | undefined;
1107
+ };
1108
+ navigation: ({
1109
+ languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
1110
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1111
+ } | {
1112
+ versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
1113
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1114
+ } | {
1115
+ tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
1116
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1117
+ } | {
1118
+ dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
1119
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1120
+ } | {
1121
+ anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1122
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1123
+ } | {
1124
+ groups: ({
1125
+ openapi: (string | string[] | {
1126
+ source: string;
1127
+ directory?: string | undefined;
1128
+ }) & (string | string[] | {
1129
+ source: string;
1130
+ directory?: string | undefined;
1131
+ } | undefined);
1132
+ group: string;
1133
+ icon?: string | {
1134
+ name: string;
1135
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1136
+ library?: "fontawesome" | "lucide" | undefined;
1137
+ } | undefined;
1138
+ hidden?: boolean | undefined;
1139
+ root?: string | undefined;
1140
+ } | {
1141
+ group: string;
1142
+ asyncapi: (string | string[] | {
1143
+ source: string;
1144
+ directory?: string | undefined;
1145
+ }) & (string | string[] | {
1146
+ source: string;
1147
+ directory?: string | undefined;
1148
+ } | undefined);
1149
+ icon?: string | {
1150
+ name: string;
1151
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1152
+ library?: "fontawesome" | "lucide" | undefined;
1153
+ } | undefined;
1154
+ hidden?: boolean | undefined;
1155
+ root?: string | undefined;
1156
+ } | {
1157
+ group: string;
1158
+ pages: any[];
1159
+ icon?: string | {
1160
+ name: string;
1161
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1162
+ library?: "fontawesome" | "lucide" | undefined;
1163
+ } | undefined;
1164
+ hidden?: boolean | undefined;
1165
+ root?: string | undefined;
1166
+ })[];
1167
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1168
+ } | {
1169
+ pages: any[];
1170
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1171
+ }) & ({
1172
+ languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
1173
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1174
+ } | {
1175
+ versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
1176
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1177
+ } | {
1178
+ tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
1179
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1180
+ } | {
1181
+ dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
1182
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1183
+ } | {
1184
+ anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1185
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1186
+ } | {
1187
+ groups: ({
1188
+ openapi: (string | string[] | {
1189
+ source: string;
1190
+ directory?: string | undefined;
1191
+ }) & (string | string[] | {
1192
+ source: string;
1193
+ directory?: string | undefined;
1194
+ } | undefined);
1195
+ group: string;
1196
+ icon?: string | {
1197
+ name: string;
1198
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1199
+ library?: "fontawesome" | "lucide" | undefined;
1200
+ } | undefined;
1201
+ hidden?: boolean | undefined;
1202
+ root?: string | undefined;
1203
+ } | {
1204
+ group: string;
1205
+ asyncapi: (string | string[] | {
1206
+ source: string;
1207
+ directory?: string | undefined;
1208
+ }) & (string | string[] | {
1209
+ source: string;
1210
+ directory?: string | undefined;
1211
+ } | undefined);
1212
+ icon?: string | {
1213
+ name: string;
1214
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1215
+ library?: "fontawesome" | "lucide" | undefined;
1216
+ } | undefined;
1217
+ hidden?: boolean | undefined;
1218
+ root?: string | undefined;
1219
+ } | {
1220
+ group: string;
1221
+ pages: any[];
1222
+ icon?: string | {
1223
+ name: string;
1224
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1225
+ library?: "fontawesome" | "lucide" | undefined;
1226
+ } | undefined;
1227
+ hidden?: boolean | undefined;
1228
+ root?: string | undefined;
1229
+ })[];
1230
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1231
+ } | {
1232
+ pages: any[];
1233
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1234
+ } | undefined);
1235
+ description?: string | undefined;
1236
+ logo?: string | {
1237
+ light: string;
1238
+ dark: string;
1239
+ href?: string | undefined;
1240
+ } | undefined;
1241
+ favicon?: string | {
1242
+ light: string;
1243
+ dark: string;
1244
+ } | undefined;
1245
+ api?: {
1246
+ openapi?: string | string[] | {
1247
+ source: string;
1248
+ directory?: string | undefined;
1249
+ } | undefined;
1250
+ asyncapi?: string | string[] | {
1251
+ source: string;
1252
+ directory?: string | undefined;
1253
+ } | undefined;
1254
+ params?: {
1255
+ expanded?: "all" | "closed" | undefined;
1256
+ } | undefined;
1257
+ playground?: {
1258
+ display?: "simple" | "none" | "interactive" | undefined;
1259
+ proxy?: boolean | undefined;
1260
+ } | undefined;
1261
+ examples?: {
1262
+ defaults?: "all" | "required" | undefined;
1263
+ languages?: string[] | undefined;
1264
+ } | undefined;
1265
+ mdx?: {
1266
+ auth?: {
1267
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
1268
+ name?: string | undefined;
1269
+ } | undefined;
1270
+ server?: string | string[] | undefined;
1271
+ } | undefined;
1272
+ } | undefined;
1273
+ appearance?: {
1274
+ default?: "light" | "dark" | "system" | undefined;
1275
+ strict?: boolean | undefined;
1276
+ } | undefined;
1277
+ background?: {
1278
+ image?: string | {
1279
+ light: string;
1280
+ dark: string;
1281
+ } | undefined;
1282
+ decoration?: "gradient" | "grid" | "windows" | undefined;
1283
+ color?: {
1284
+ light?: string | undefined;
1285
+ dark?: string | undefined;
1286
+ } | undefined;
1287
+ } | undefined;
1288
+ navbar?: {
1289
+ links?: {
1290
+ href: string;
1291
+ label: string;
1292
+ }[] | undefined;
1293
+ primary?: {
1294
+ type: "button";
1295
+ href: string;
1296
+ label: string;
1297
+ } | {
1298
+ type: "github";
1299
+ href: string;
1300
+ } | undefined;
1301
+ } | undefined;
1302
+ footer?: {
1303
+ 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;
1304
+ links?: {
1305
+ items: {
1306
+ href: string;
1307
+ label: string;
1308
+ }[];
1309
+ header?: string | undefined;
1310
+ }[] | undefined;
1311
+ } | undefined;
1312
+ search?: {
1313
+ prompt?: string | undefined;
1314
+ } | undefined;
1315
+ seo?: {
1316
+ metatags?: Record<string, string> | undefined;
1317
+ indexing?: "all" | "navigable" | undefined;
1318
+ } | undefined;
1319
+ fonts?: {
1320
+ family: string;
1321
+ weight?: number | undefined;
1322
+ source?: string | undefined;
1323
+ format?: "woff" | "woff2" | undefined;
1324
+ } | {
1325
+ heading?: {
1326
+ family: string;
1327
+ weight?: number | undefined;
1328
+ source?: string | undefined;
1329
+ format?: "woff" | "woff2" | undefined;
1330
+ } | undefined;
1331
+ body?: {
1332
+ family: string;
1333
+ weight?: number | undefined;
1334
+ source?: string | undefined;
1335
+ format?: "woff" | "woff2" | undefined;
1336
+ } | undefined;
1337
+ } | undefined;
1338
+ icons?: {
1339
+ library: "fontawesome" | "lucide";
1340
+ } | undefined;
1341
+ styling?: {
1342
+ eyebrows?: "section" | "breadcrumbs" | undefined;
1343
+ codeblocks?: "dark" | "system" | undefined;
1344
+ } | undefined;
1345
+ redirects?: {
1346
+ source: string;
1347
+ destination: string;
1348
+ permanent?: boolean | undefined;
1349
+ }[] | undefined;
1350
+ integrations?: {
1351
+ amplitude?: {
1352
+ apiKey: string;
1353
+ } | undefined;
1354
+ clearbit?: {
1355
+ publicApiKey: string;
1356
+ } | undefined;
1357
+ fathom?: {
1358
+ siteId: string;
1359
+ } | undefined;
1360
+ frontchat?: {
1361
+ snippetId: string;
1362
+ } | undefined;
1363
+ ga4?: {
1364
+ measurementId: string;
1365
+ } | undefined;
1366
+ gtm?: {
1367
+ tagId: string;
1368
+ } | undefined;
1369
+ heap?: {
1370
+ appId: string;
1371
+ } | undefined;
1372
+ hotjar?: {
1373
+ hjid: string;
1374
+ hjsv: string;
1375
+ } | undefined;
1376
+ intercom?: {
1377
+ appId: string;
1378
+ } | undefined;
1379
+ koala?: {
1380
+ publicApiKey: string;
1381
+ } | undefined;
1382
+ logrocket?: {
1383
+ appId: string;
1384
+ } | undefined;
1385
+ mixpanel?: {
1386
+ projectToken: string;
1387
+ } | undefined;
1388
+ osano?: {
1389
+ scriptSource: string;
1390
+ } | undefined;
1391
+ pirsch?: {
1392
+ id: string;
1393
+ } | undefined;
1394
+ posthog?: {
1395
+ apiKey: string;
1396
+ apiHost?: string | undefined;
1397
+ } | undefined;
1398
+ plausible?: {
1399
+ domain: string;
1400
+ server?: string | undefined;
1401
+ } | undefined;
1402
+ segment?: {
1403
+ key: string;
1404
+ } | undefined;
1405
+ telemetry?: {
1406
+ enabled?: boolean | undefined;
1407
+ } | undefined;
1408
+ cookies?: {
1409
+ key?: string | undefined;
1410
+ value?: string | undefined;
1411
+ } | undefined;
1412
+ } | undefined;
1413
+ banner?: {
1414
+ content: string;
1415
+ dismissible?: boolean | undefined;
1416
+ } | undefined;
1417
+ errors?: {
1418
+ '404': {
1419
+ redirect: boolean;
1420
+ };
1421
+ } | undefined;
1422
+ contextual?: {
1423
+ options: ("copy" | "view" | "chatgpt" | "claude")[];
1424
+ } | undefined;
1425
+ }, {
1426
+ name: string;
1427
+ theme: "aspen";
1428
+ colors: {
1429
+ primary: string;
1430
+ light?: string | undefined;
1431
+ dark?: string | undefined;
1432
+ };
1433
+ navigation: ({
1434
+ languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
1435
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1436
+ } | {
1437
+ versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
1438
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1439
+ } | {
1440
+ tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
1441
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1442
+ } | {
1443
+ dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
1444
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1445
+ } | {
1446
+ anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1447
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1448
+ } | {
1449
+ groups: ({
1450
+ openapi: (string | string[] | {
1451
+ source: string;
1452
+ directory?: string | undefined;
1453
+ }) & (string | string[] | {
1454
+ source: string;
1455
+ directory?: string | undefined;
1456
+ } | undefined);
1457
+ group: string;
1458
+ icon?: string | {
1459
+ name: string;
1460
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1461
+ library?: "fontawesome" | "lucide" | undefined;
1462
+ } | undefined;
1463
+ hidden?: boolean | undefined;
1464
+ root?: string | undefined;
1465
+ } | {
1466
+ group: string;
1467
+ asyncapi: (string | string[] | {
1468
+ source: string;
1469
+ directory?: string | undefined;
1470
+ }) & (string | string[] | {
1471
+ source: string;
1472
+ directory?: string | undefined;
1473
+ } | undefined);
1474
+ icon?: string | {
1475
+ name: string;
1476
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1477
+ library?: "fontawesome" | "lucide" | undefined;
1478
+ } | undefined;
1479
+ hidden?: boolean | undefined;
1480
+ root?: string | undefined;
1481
+ } | {
1482
+ group: string;
1483
+ pages: any[];
1484
+ icon?: string | {
1485
+ name: string;
1486
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1487
+ library?: "fontawesome" | "lucide" | undefined;
1488
+ } | undefined;
1489
+ hidden?: boolean | undefined;
1490
+ root?: string | undefined;
1491
+ })[];
1492
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1493
+ } | {
1494
+ pages: any[];
1495
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1496
+ }) & ({
1497
+ languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
1498
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1499
+ } | {
1500
+ versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
1501
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1502
+ } | {
1503
+ tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
1504
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1505
+ } | {
1506
+ dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
1507
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1508
+ } | {
1509
+ anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1510
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1511
+ } | {
1512
+ groups: ({
1513
+ openapi: (string | string[] | {
1514
+ source: string;
1515
+ directory?: string | undefined;
1516
+ }) & (string | string[] | {
1517
+ source: string;
1518
+ directory?: string | undefined;
1519
+ } | undefined);
1520
+ group: string;
1521
+ icon?: string | {
1522
+ name: string;
1523
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1524
+ library?: "fontawesome" | "lucide" | undefined;
1525
+ } | undefined;
1526
+ hidden?: boolean | undefined;
1527
+ root?: string | undefined;
1528
+ } | {
1529
+ group: string;
1530
+ asyncapi: (string | string[] | {
1531
+ source: string;
1532
+ directory?: string | undefined;
1533
+ }) & (string | string[] | {
1534
+ source: string;
1535
+ directory?: string | undefined;
1536
+ } | undefined);
1537
+ icon?: string | {
1538
+ name: string;
1539
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1540
+ library?: "fontawesome" | "lucide" | undefined;
1541
+ } | undefined;
1542
+ hidden?: boolean | undefined;
1543
+ root?: string | undefined;
1544
+ } | {
1545
+ group: string;
1546
+ pages: any[];
1547
+ icon?: string | {
1548
+ name: string;
1549
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1550
+ library?: "fontawesome" | "lucide" | undefined;
1551
+ } | undefined;
1552
+ hidden?: boolean | undefined;
1553
+ root?: string | undefined;
1554
+ })[];
1555
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1556
+ } | {
1557
+ pages: any[];
1558
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1559
+ } | undefined);
1560
+ $schema?: string | undefined;
1561
+ description?: string | undefined;
1562
+ logo?: string | {
1563
+ light: string;
1564
+ dark: string;
1565
+ href?: string | undefined;
1566
+ } | undefined;
1567
+ favicon?: string | {
1568
+ light: string;
1569
+ dark: string;
1570
+ } | undefined;
1571
+ api?: {
1572
+ openapi?: string | string[] | {
1573
+ source: string;
1574
+ directory?: string | undefined;
1575
+ } | undefined;
1576
+ asyncapi?: string | string[] | {
1577
+ source: string;
1578
+ directory?: string | undefined;
1579
+ } | undefined;
1580
+ params?: {
1581
+ expanded?: "all" | "closed" | undefined;
1582
+ } | undefined;
1583
+ playground?: {
1584
+ display?: "simple" | "none" | "interactive" | undefined;
1585
+ proxy?: boolean | undefined;
1586
+ } | undefined;
1587
+ examples?: {
1588
+ defaults?: "all" | "required" | undefined;
1589
+ languages?: string[] | undefined;
1590
+ } | undefined;
1591
+ mdx?: {
1592
+ auth?: {
1593
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
1594
+ name?: string | undefined;
1595
+ } | undefined;
1596
+ server?: string | string[] | undefined;
1597
+ } | undefined;
1598
+ } | undefined;
1599
+ appearance?: {
1600
+ default?: "light" | "dark" | "system" | undefined;
1601
+ strict?: boolean | undefined;
1602
+ } | undefined;
1603
+ background?: {
1604
+ image?: string | {
1605
+ light: string;
1606
+ dark: string;
1607
+ } | undefined;
1608
+ decoration?: "gradient" | "grid" | "windows" | undefined;
1609
+ color?: {
1610
+ light?: string | undefined;
1611
+ dark?: string | undefined;
1612
+ } | undefined;
1613
+ } | undefined;
1614
+ navbar?: {
1615
+ links?: {
1616
+ href: string;
1617
+ label: string;
1618
+ }[] | undefined;
1619
+ primary?: {
1620
+ type: "button";
1621
+ href: string;
1622
+ label: string;
1623
+ } | {
1624
+ type: "github";
1625
+ href: string;
1626
+ } | undefined;
1627
+ } | undefined;
1628
+ footer?: {
1629
+ 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;
1630
+ links?: {
1631
+ items: {
1632
+ href: string;
1633
+ label: string;
1634
+ }[];
1635
+ header?: string | undefined;
1636
+ }[] | undefined;
1637
+ } | undefined;
1638
+ search?: {
1639
+ prompt?: string | undefined;
1640
+ } | undefined;
1641
+ seo?: {
1642
+ metatags?: Record<string, string> | undefined;
1643
+ indexing?: "all" | "navigable" | undefined;
1644
+ } | undefined;
1645
+ fonts?: {
1646
+ family: string;
1647
+ weight?: number | undefined;
1648
+ source?: string | undefined;
1649
+ format?: "woff" | "woff2" | undefined;
1650
+ } | {
1651
+ heading?: {
1652
+ family: string;
1653
+ weight?: number | undefined;
1654
+ source?: string | undefined;
1655
+ format?: "woff" | "woff2" | undefined;
1656
+ } | undefined;
1657
+ body?: {
1658
+ family: string;
1659
+ weight?: number | undefined;
1660
+ source?: string | undefined;
1661
+ format?: "woff" | "woff2" | undefined;
1662
+ } | undefined;
1663
+ } | undefined;
1664
+ icons?: {
1665
+ library: "fontawesome" | "lucide";
1666
+ } | undefined;
1667
+ styling?: {
1668
+ eyebrows?: "section" | "breadcrumbs" | undefined;
1669
+ codeblocks?: "dark" | "system" | undefined;
1670
+ } | undefined;
1671
+ redirects?: {
1672
+ source: string;
1673
+ destination: string;
1674
+ permanent?: boolean | undefined;
1675
+ }[] | undefined;
1676
+ integrations?: {
1677
+ amplitude?: {
1678
+ apiKey: string;
1679
+ } | undefined;
1680
+ clearbit?: {
1681
+ publicApiKey: string;
1682
+ } | undefined;
1683
+ fathom?: {
1684
+ siteId: string;
1685
+ } | undefined;
1686
+ frontchat?: {
1687
+ snippetId: string;
1688
+ } | undefined;
1689
+ ga4?: {
1690
+ measurementId: string;
1691
+ } | undefined;
1692
+ gtm?: {
1693
+ tagId: string;
1694
+ } | undefined;
1695
+ heap?: {
1696
+ appId: string;
1697
+ } | undefined;
1698
+ hotjar?: {
1699
+ hjid: string;
1700
+ hjsv: string;
1701
+ } | undefined;
1702
+ intercom?: {
1703
+ appId: string;
1704
+ } | undefined;
1705
+ koala?: {
1706
+ publicApiKey: string;
1707
+ } | undefined;
1708
+ logrocket?: {
1709
+ appId: string;
1710
+ } | undefined;
1711
+ mixpanel?: {
1712
+ projectToken: string;
1713
+ } | undefined;
1714
+ osano?: {
1715
+ scriptSource: string;
1716
+ } | undefined;
1717
+ pirsch?: {
1718
+ id: string;
1719
+ } | undefined;
1720
+ posthog?: {
1721
+ apiKey: string;
1722
+ apiHost?: string | undefined;
1723
+ } | undefined;
1724
+ plausible?: {
1725
+ domain: string;
1726
+ server?: string | undefined;
1727
+ } | undefined;
1728
+ segment?: {
1729
+ key: string;
1730
+ } | undefined;
1731
+ telemetry?: {
1732
+ enabled?: boolean | undefined;
1733
+ } | undefined;
1734
+ cookies?: {
1735
+ key?: string | undefined;
1736
+ value?: string | undefined;
1737
+ } | undefined;
1738
+ } | undefined;
1739
+ banner?: {
1740
+ content: string;
1741
+ dismissible?: boolean | undefined;
1742
+ } | undefined;
1743
+ errors?: {
1744
+ '404': {
1745
+ redirect?: boolean | undefined;
1746
+ };
1747
+ } | undefined;
1748
+ contextual?: {
1749
+ options: ("copy" | "view" | "chatgpt" | "claude")[];
1750
+ } | undefined;
1751
+ }>;