@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.
Files changed (46) hide show
  1. package/dist/chat-config/index.d.ts +67 -67
  2. package/dist/mint-config/schemas/v1/apiReference.d.ts +4 -4
  3. package/dist/mint-config/schemas/v1/config.d.ts +81 -81
  4. package/dist/mint-config/schemas/v1/font.d.ts +20 -20
  5. package/dist/mint-config/schemas/v1/footer.d.ts +5 -5
  6. package/dist/mint-config/schemas/v1/navigation.d.ts +2 -2
  7. package/dist/mint-config/schemas/v1/tabs.d.ts +2 -2
  8. package/dist/mint-config/schemas/v2/index.d.ts +2978 -4567
  9. package/dist/mint-config/schemas/v2/properties/api.d.ts +28 -28
  10. package/dist/mint-config/schemas/v2/properties/appearance.d.ts +2 -2
  11. package/dist/mint-config/schemas/v2/properties/background.d.ts +5 -5
  12. package/dist/mint-config/schemas/v2/properties/contextual.d.ts +16 -64
  13. package/dist/mint-config/schemas/v2/properties/errors.d.ts +2 -2
  14. package/dist/mint-config/schemas/v2/properties/feedback.d.ts +2 -2
  15. package/dist/mint-config/schemas/v2/properties/fonts/index.d.ts +24 -24
  16. package/dist/mint-config/schemas/v2/properties/footer.d.ts +2 -2
  17. package/dist/mint-config/schemas/v2/properties/integrations.d.ts +22 -22
  18. package/dist/mint-config/schemas/v2/properties/navbar.d.ts +9 -9
  19. package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +4 -3
  20. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +4 -3
  21. package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +186 -204
  22. package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +157 -170
  23. package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +4 -3
  24. package/dist/mint-config/schemas/v2/properties/navigation/menu.d.ts +4 -3
  25. package/dist/mint-config/schemas/v2/properties/navigation/products.d.ts +4 -3
  26. package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +4 -3
  27. package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +3 -2
  28. package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +26 -26
  29. package/dist/mint-config/schemas/v2/properties/styling.d.ts +10 -10
  30. package/dist/mint-config/schemas/v2/properties/thumbnails.d.ts +2 -2
  31. package/dist/mint-config/schemas/v2/themes/almond.d.ts +421 -648
  32. package/dist/mint-config/schemas/v2/themes/aspen.d.ts +421 -648
  33. package/dist/mint-config/schemas/v2/themes/linden.d.ts +421 -648
  34. package/dist/mint-config/schemas/v2/themes/maple.d.ts +421 -648
  35. package/dist/mint-config/schemas/v2/themes/mint.d.ts +421 -648
  36. package/dist/mint-config/schemas/v2/themes/palm.d.ts +421 -648
  37. package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +181 -230
  38. package/dist/mint-config/schemas/v2/themes/willow.d.ts +421 -648
  39. package/dist/mint-config/validateConfig.d.ts +1753 -2997
  40. package/dist/tsconfig.build.tsbuildinfo +1 -1
  41. package/dist/types/deployment/deploymentEntitlements.d.ts +1 -1
  42. package/dist/types/deployment/deploymentEntitlements.js +1 -0
  43. package/dist/types/deployment/index.d.ts +2 -1
  44. package/dist/types/deployment/trieve.d.ts +4 -4
  45. package/dist/types/deployment/trieve.js +1 -0
  46. package/package.json +3 -3
@@ -81,12 +81,12 @@ export declare const standardConfigSchema: {
81
81
  languages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
82
82
  prefill: import("zod").ZodOptional<import("zod").ZodBoolean>;
83
83
  }, "strip", import("zod").ZodTypeAny, {
84
- defaults?: "all" | "required" | undefined;
85
84
  languages?: string[] | undefined;
85
+ defaults?: "all" | "required" | undefined;
86
86
  prefill?: boolean | undefined;
87
87
  }, {
88
- defaults?: "all" | "required" | undefined;
89
88
  languages?: string[] | undefined;
89
+ defaults?: "all" | "required" | undefined;
90
90
  prefill?: boolean | undefined;
91
91
  }>>;
92
92
  mdx: import("zod").ZodOptional<import("zod").ZodObject<{
@@ -94,92 +94,92 @@ export declare const standardConfigSchema: {
94
94
  method: import("zod").ZodOptional<import("zod").ZodEnum<["bearer", "basic", "key", "cobo"]>>;
95
95
  name: import("zod").ZodOptional<import("zod").ZodString>;
96
96
  }, "strip", import("zod").ZodTypeAny, {
97
- method?: "key" | "bearer" | "basic" | "cobo" | undefined;
98
97
  name?: string | undefined;
99
- }, {
100
98
  method?: "key" | "bearer" | "basic" | "cobo" | undefined;
99
+ }, {
101
100
  name?: string | undefined;
101
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
102
102
  }>>;
103
103
  server: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
104
104
  }, "strip", import("zod").ZodTypeAny, {
105
+ server?: string | string[] | undefined;
105
106
  auth?: {
106
- method?: "key" | "bearer" | "basic" | "cobo" | undefined;
107
107
  name?: string | undefined;
108
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
108
109
  } | undefined;
109
- server?: string | string[] | undefined;
110
110
  }, {
111
+ server?: string | string[] | undefined;
111
112
  auth?: {
112
- method?: "key" | "bearer" | "basic" | "cobo" | undefined;
113
113
  name?: string | undefined;
114
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
114
115
  } | undefined;
115
- server?: string | string[] | undefined;
116
116
  }>>;
117
117
  }, "strip", import("zod").ZodTypeAny, {
118
- openapi?: string | string[] | {
119
- source: string;
120
- directory?: string | undefined;
118
+ params?: {
119
+ expanded?: "all" | "closed" | undefined;
121
120
  } | undefined;
122
- asyncapi?: string | string[] | {
121
+ openapi?: string | string[] | {
123
122
  source: string;
124
123
  directory?: string | undefined;
125
124
  } | undefined;
126
- params?: {
127
- expanded?: "all" | "closed" | undefined;
128
- } | undefined;
129
125
  playground?: {
130
126
  display?: "simple" | "none" | "interactive" | undefined;
131
127
  proxy?: boolean | undefined;
132
128
  } | undefined;
129
+ asyncapi?: string | string[] | {
130
+ source: string;
131
+ directory?: string | undefined;
132
+ } | undefined;
133
133
  examples?: {
134
- defaults?: "all" | "required" | undefined;
135
134
  languages?: string[] | undefined;
135
+ defaults?: "all" | "required" | undefined;
136
136
  prefill?: boolean | undefined;
137
137
  } | undefined;
138
138
  mdx?: {
139
+ server?: string | string[] | undefined;
139
140
  auth?: {
140
- method?: "key" | "bearer" | "basic" | "cobo" | undefined;
141
141
  name?: string | undefined;
142
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
142
143
  } | undefined;
143
- server?: string | string[] | undefined;
144
144
  } | undefined;
145
145
  }, {
146
- openapi?: string | string[] | {
147
- source: string;
148
- directory?: string | undefined;
146
+ params?: {
147
+ expanded?: "all" | "closed" | undefined;
149
148
  } | undefined;
150
- asyncapi?: string | string[] | {
149
+ openapi?: string | string[] | {
151
150
  source: string;
152
151
  directory?: string | undefined;
153
152
  } | undefined;
154
- params?: {
155
- expanded?: "all" | "closed" | undefined;
156
- } | undefined;
157
153
  playground?: {
158
154
  display?: "simple" | "none" | "interactive" | undefined;
159
155
  proxy?: boolean | undefined;
160
156
  } | undefined;
157
+ asyncapi?: string | string[] | {
158
+ source: string;
159
+ directory?: string | undefined;
160
+ } | undefined;
161
161
  examples?: {
162
- defaults?: "all" | "required" | undefined;
163
162
  languages?: string[] | undefined;
163
+ defaults?: "all" | "required" | undefined;
164
164
  prefill?: boolean | undefined;
165
165
  } | undefined;
166
166
  mdx?: {
167
+ server?: string | string[] | undefined;
167
168
  auth?: {
168
- method?: "key" | "bearer" | "basic" | "cobo" | undefined;
169
169
  name?: string | undefined;
170
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
170
171
  } | undefined;
171
- server?: string | string[] | undefined;
172
172
  } | undefined;
173
173
  }>>;
174
174
  appearance: import("zod").ZodOptional<import("zod").ZodObject<{
175
175
  default: import("zod").ZodOptional<import("zod").ZodEnum<["system", "light", "dark"]>>;
176
176
  strict: import("zod").ZodOptional<import("zod").ZodBoolean>;
177
177
  }, "strip", import("zod").ZodTypeAny, {
178
- default?: "light" | "dark" | "system" | undefined;
179
178
  strict?: boolean | undefined;
180
- }, {
181
179
  default?: "light" | "dark" | "system" | undefined;
180
+ }, {
182
181
  strict?: boolean | undefined;
182
+ default?: "light" | "dark" | "system" | undefined;
183
183
  }>>;
184
184
  background: import("zod").ZodOptional<import("zod").ZodObject<{
185
185
  image: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
@@ -204,25 +204,25 @@ export declare const standardConfigSchema: {
204
204
  dark?: string | undefined;
205
205
  }>>;
206
206
  }, "strip", import("zod").ZodTypeAny, {
207
+ color?: {
208
+ light?: string | undefined;
209
+ dark?: string | undefined;
210
+ } | undefined;
207
211
  image?: string | {
208
212
  light: string;
209
213
  dark: string;
210
214
  } | undefined;
211
215
  decoration?: "gradient" | "grid" | "windows" | undefined;
216
+ }, {
212
217
  color?: {
213
218
  light?: string | undefined;
214
219
  dark?: string | undefined;
215
220
  } | undefined;
216
- }, {
217
221
  image?: string | {
218
222
  light: string;
219
223
  dark: string;
220
224
  } | undefined;
221
225
  decoration?: "gradient" | "grid" | "windows" | undefined;
222
- color?: {
223
- light?: string | undefined;
224
- dark?: string | undefined;
225
- } | undefined;
226
226
  }>>;
227
227
  navbar: import("zod").ZodOptional<import("zod").ZodObject<{
228
228
  links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -281,6 +281,14 @@ export declare const standardConfigSchema: {
281
281
  href: string;
282
282
  }>]>>;
283
283
  }, "strip", import("zod").ZodTypeAny, {
284
+ primary?: {
285
+ type: "button";
286
+ href: string;
287
+ label: string;
288
+ } | {
289
+ type: "github";
290
+ href: string;
291
+ } | undefined;
284
292
  links?: {
285
293
  href: string;
286
294
  label: string;
@@ -290,6 +298,7 @@ export declare const standardConfigSchema: {
290
298
  library?: "fontawesome" | "lucide" | undefined;
291
299
  } | undefined;
292
300
  }[] | undefined;
301
+ }, {
293
302
  primary?: {
294
303
  type: "button";
295
304
  href: string;
@@ -298,7 +307,6 @@ export declare const standardConfigSchema: {
298
307
  type: "github";
299
308
  href: string;
300
309
  } | undefined;
301
- }, {
302
310
  links?: {
303
311
  href: string;
304
312
  label: string;
@@ -308,72 +316,73 @@ export declare const standardConfigSchema: {
308
316
  library?: "fontawesome" | "lucide" | undefined;
309
317
  } | undefined;
310
318
  }[] | undefined;
311
- primary?: {
312
- type: "button";
313
- href: string;
314
- label: string;
315
- } | {
316
- type: "github";
317
- href: string;
318
- } | undefined;
319
319
  }>>;
320
- navigation: import("zod").ZodUnion<[import("zod").ZodObject<{
320
+ navigation: import("zod").ZodUnion<[import("zod").ZodObject<import("zod").objectUtil.extendShape<{
321
321
  global: import("zod").ZodOptional<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").GlobalNavigation, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").GlobalNavigation>>;
322
+ }, {
322
323
  products: import("zod").ZodArray<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").ProductNavigation<"default">, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
323
- }, "strip", import("zod").ZodTypeAny, {
324
+ }>, "strip", import("zod").ZodTypeAny, {
324
325
  products: import("../../properties/navigation/divisionNav.js").ProductNavigation<"default">[];
325
326
  global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
326
327
  }, {
327
328
  products: import("../../properties/navigation/divisionNav.js").ProductNavigation<"default">[];
328
329
  global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
329
- }>, import("zod").ZodObject<{
330
+ }>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
330
331
  global: import("zod").ZodOptional<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").GlobalNavigation, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").GlobalNavigation>>;
332
+ }, {
331
333
  languages: import("zod").ZodArray<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").LanguageNavigation<"default">, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
332
- }, "strip", import("zod").ZodTypeAny, {
334
+ }>, "strip", import("zod").ZodTypeAny, {
333
335
  languages: import("../../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
334
336
  global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
335
337
  }, {
336
338
  languages: import("../../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
337
339
  global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
338
- }>, import("zod").ZodObject<{
340
+ }>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
339
341
  global: import("zod").ZodOptional<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").GlobalNavigation, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").GlobalNavigation>>;
342
+ }, {
340
343
  versions: import("zod").ZodArray<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").VersionNavigation<"default">, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
341
- }, "strip", import("zod").ZodTypeAny, {
344
+ }>, "strip", import("zod").ZodTypeAny, {
342
345
  versions: import("../../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
343
346
  global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
344
347
  }, {
345
348
  versions: import("../../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
346
349
  global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
347
- }>, import("zod").ZodObject<{
350
+ }>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
348
351
  global: import("zod").ZodOptional<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").GlobalNavigation, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").GlobalNavigation>>;
352
+ }, {
349
353
  tabs: import("zod").ZodArray<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").TabNavigation<"default">, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
350
- }, "strip", import("zod").ZodTypeAny, {
354
+ }>, "strip", import("zod").ZodTypeAny, {
351
355
  tabs: import("../../properties/navigation/divisionNav.js").TabNavigation<"default">[];
352
356
  global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
353
357
  }, {
354
358
  tabs: import("../../properties/navigation/divisionNav.js").TabNavigation<"default">[];
355
359
  global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
356
- }>, import("zod").ZodObject<{
360
+ }>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
357
361
  global: import("zod").ZodOptional<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").GlobalNavigation, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").GlobalNavigation>>;
362
+ }, {
358
363
  dropdowns: import("zod").ZodArray<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").DropdownNavigation<"default">, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
359
- }, "strip", import("zod").ZodTypeAny, {
364
+ }>, "strip", import("zod").ZodTypeAny, {
360
365
  dropdowns: import("../../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
361
366
  global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
362
367
  }, {
363
368
  dropdowns: import("../../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
364
369
  global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
365
- }>, import("zod").ZodObject<{
370
+ }>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
366
371
  global: import("zod").ZodOptional<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").GlobalNavigation, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").GlobalNavigation>>;
372
+ }, {
367
373
  anchors: import("zod").ZodArray<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").AnchorNavigation<"default">, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
368
- }, "strip", import("zod").ZodTypeAny, {
374
+ }>, "strip", import("zod").ZodTypeAny, {
369
375
  anchors: import("../../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
370
376
  global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
371
377
  }, {
372
378
  anchors: import("../../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
373
379
  global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
374
- }>, import("zod").ZodObject<{
380
+ }>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
375
381
  global: import("zod").ZodOptional<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").GlobalNavigation, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").GlobalNavigation>>;
376
- groups: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodObject<{
382
+ }, {
383
+ groups: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodObject<import("zod").objectUtil.extendShape<{
384
+ group: import("zod").ZodString;
385
+ public: import("zod").ZodOptional<import("zod").ZodBoolean>;
377
386
  icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
378
387
  style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
379
388
  name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
@@ -387,12 +396,11 @@ export declare const standardConfigSchema: {
387
396
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
388
397
  library?: "fontawesome" | "lucide" | undefined;
389
398
  }>]>>;
390
- expanded: import("zod").ZodOptional<import("zod").ZodBoolean>;
391
- group: import("zod").ZodString;
392
- public: import("zod").ZodOptional<import("zod").ZodBoolean>;
393
- tag: import("zod").ZodOptional<import("zod").ZodString>;
394
399
  hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
395
400
  root: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
401
+ tag: import("zod").ZodOptional<import("zod").ZodString>;
402
+ expanded: import("zod").ZodOptional<import("zod").ZodBoolean>;
403
+ }, {
396
404
  openapi: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">, import("zod").ZodObject<{
397
405
  source: import("zod").ZodEffects<import("zod").ZodString, string, string>;
398
406
  directory: import("zod").ZodOptional<import("zod").ZodString>;
@@ -404,14 +412,11 @@ export declare const standardConfigSchema: {
404
412
  directory?: string | undefined;
405
413
  }>]>;
406
414
  pages: import("zod").ZodDefault<import("zod").ZodLazy<import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">>>;
407
- }, "strip", import("zod").ZodTypeAny, {
408
- openapi: (string | string[] | {
415
+ }>, "strip", import("zod").ZodTypeAny, {
416
+ openapi: string | string[] | {
409
417
  source: string;
410
418
  directory?: string | undefined;
411
- }) & (string | string[] | {
412
- source: string;
413
- directory?: string | undefined;
414
- } | undefined);
419
+ };
415
420
  group: string;
416
421
  pages: any[];
417
422
  icon?: string | {
@@ -425,13 +430,10 @@ export declare const standardConfigSchema: {
425
430
  hidden?: boolean | undefined;
426
431
  root?: string | undefined;
427
432
  }, {
428
- openapi: (string | string[] | {
433
+ openapi: string | string[] | {
429
434
  source: string;
430
435
  directory?: string | undefined;
431
- }) & (string | string[] | {
432
- source: string;
433
- directory?: string | undefined;
434
- } | undefined);
436
+ };
435
437
  group: string;
436
438
  icon?: string | {
437
439
  name: string;
@@ -440,11 +442,13 @@ export declare const standardConfigSchema: {
440
442
  } | undefined;
441
443
  expanded?: boolean | undefined;
442
444
  public?: boolean | undefined;
445
+ pages?: any[] | undefined;
443
446
  tag?: string | undefined;
444
447
  hidden?: boolean | undefined;
445
448
  root?: string | undefined;
446
- pages?: any[] | undefined;
447
- }>, import("zod").ZodObject<{
449
+ }>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
450
+ group: import("zod").ZodString;
451
+ public: import("zod").ZodOptional<import("zod").ZodBoolean>;
448
452
  icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
449
453
  style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
450
454
  name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
@@ -458,12 +462,11 @@ export declare const standardConfigSchema: {
458
462
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
459
463
  library?: "fontawesome" | "lucide" | undefined;
460
464
  }>]>>;
461
- expanded: import("zod").ZodOptional<import("zod").ZodBoolean>;
462
- group: import("zod").ZodString;
463
- public: import("zod").ZodOptional<import("zod").ZodBoolean>;
464
- tag: import("zod").ZodOptional<import("zod").ZodString>;
465
465
  hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
466
466
  root: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
467
+ tag: import("zod").ZodOptional<import("zod").ZodString>;
468
+ expanded: import("zod").ZodOptional<import("zod").ZodBoolean>;
469
+ }, {
467
470
  asyncapi: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">, import("zod").ZodObject<{
468
471
  source: import("zod").ZodEffects<import("zod").ZodString, string, string>;
469
472
  directory: import("zod").ZodOptional<import("zod").ZodString>;
@@ -475,16 +478,13 @@ export declare const standardConfigSchema: {
475
478
  directory?: string | undefined;
476
479
  }>]>;
477
480
  pages: import("zod").ZodDefault<import("zod").ZodLazy<import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">>>;
478
- }, "strip", import("zod").ZodTypeAny, {
481
+ }>, "strip", import("zod").ZodTypeAny, {
479
482
  group: string;
480
483
  pages: any[];
481
- asyncapi: (string | string[] | {
482
- source: string;
483
- directory?: string | undefined;
484
- }) & (string | string[] | {
484
+ asyncapi: string | string[] | {
485
485
  source: string;
486
486
  directory?: string | undefined;
487
- } | undefined);
487
+ };
488
488
  icon?: string | {
489
489
  name: string;
490
490
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
@@ -497,13 +497,10 @@ export declare const standardConfigSchema: {
497
497
  root?: string | undefined;
498
498
  }, {
499
499
  group: string;
500
- asyncapi: (string | string[] | {
501
- source: string;
502
- directory?: string | undefined;
503
- }) & (string | string[] | {
500
+ asyncapi: string | string[] | {
504
501
  source: string;
505
502
  directory?: string | undefined;
506
- } | undefined);
503
+ };
507
504
  icon?: string | {
508
505
  name: string;
509
506
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
@@ -511,11 +508,13 @@ export declare const standardConfigSchema: {
511
508
  } | undefined;
512
509
  expanded?: boolean | undefined;
513
510
  public?: boolean | undefined;
511
+ pages?: any[] | undefined;
514
512
  tag?: string | undefined;
515
513
  hidden?: boolean | undefined;
516
514
  root?: string | undefined;
517
- pages?: any[] | undefined;
518
- }>, import("zod").ZodObject<{
515
+ }>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
516
+ group: import("zod").ZodString;
517
+ public: import("zod").ZodOptional<import("zod").ZodBoolean>;
519
518
  icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
520
519
  style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
521
520
  name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
@@ -529,14 +528,13 @@ export declare const standardConfigSchema: {
529
528
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
530
529
  library?: "fontawesome" | "lucide" | undefined;
531
530
  }>]>>;
532
- expanded: import("zod").ZodOptional<import("zod").ZodBoolean>;
533
- group: import("zod").ZodString;
534
- public: import("zod").ZodOptional<import("zod").ZodBoolean>;
535
- tag: import("zod").ZodOptional<import("zod").ZodString>;
536
531
  hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
537
532
  root: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
533
+ tag: import("zod").ZodOptional<import("zod").ZodString>;
534
+ expanded: import("zod").ZodOptional<import("zod").ZodBoolean>;
535
+ }, {
538
536
  pages: import("zod").ZodDefault<import("zod").ZodLazy<import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">>>;
539
- }, "strip", import("zod").ZodTypeAny, {
537
+ }>, "strip", import("zod").ZodTypeAny, {
540
538
  group: string;
541
539
  pages: any[];
542
540
  icon?: string | {
@@ -558,20 +556,17 @@ export declare const standardConfigSchema: {
558
556
  } | undefined;
559
557
  expanded?: boolean | undefined;
560
558
  public?: boolean | undefined;
559
+ pages?: any[] | undefined;
561
560
  tag?: string | undefined;
562
561
  hidden?: boolean | undefined;
563
562
  root?: string | undefined;
564
- pages?: any[] | undefined;
565
563
  }>]>, "many">;
566
- }, "strip", import("zod").ZodTypeAny, {
564
+ }>, "strip", import("zod").ZodTypeAny, {
567
565
  groups: ({
568
- openapi: (string | string[] | {
566
+ openapi: string | string[] | {
569
567
  source: string;
570
568
  directory?: string | undefined;
571
- }) & (string | string[] | {
572
- source: string;
573
- directory?: string | undefined;
574
- } | undefined);
569
+ };
575
570
  group: string;
576
571
  pages: any[];
577
572
  icon?: string | {
@@ -587,13 +582,10 @@ export declare const standardConfigSchema: {
587
582
  } | {
588
583
  group: string;
589
584
  pages: any[];
590
- asyncapi: (string | string[] | {
591
- source: string;
592
- directory?: string | undefined;
593
- }) & (string | string[] | {
585
+ asyncapi: string | string[] | {
594
586
  source: string;
595
587
  directory?: string | undefined;
596
- } | undefined);
588
+ };
597
589
  icon?: string | {
598
590
  name: string;
599
591
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
@@ -621,13 +613,10 @@ export declare const standardConfigSchema: {
621
613
  global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
622
614
  }, {
623
615
  groups: ({
624
- openapi: (string | string[] | {
616
+ openapi: string | string[] | {
625
617
  source: string;
626
618
  directory?: string | undefined;
627
- }) & (string | string[] | {
628
- source: string;
629
- directory?: string | undefined;
630
- } | undefined);
619
+ };
631
620
  group: string;
632
621
  icon?: string | {
633
622
  name: string;
@@ -636,19 +625,16 @@ export declare const standardConfigSchema: {
636
625
  } | undefined;
637
626
  expanded?: boolean | undefined;
638
627
  public?: boolean | undefined;
628
+ pages?: any[] | undefined;
639
629
  tag?: string | undefined;
640
630
  hidden?: boolean | undefined;
641
631
  root?: string | undefined;
642
- pages?: any[] | undefined;
643
632
  } | {
644
633
  group: string;
645
- asyncapi: (string | string[] | {
646
- source: string;
647
- directory?: string | undefined;
648
- }) & (string | string[] | {
634
+ asyncapi: string | string[] | {
649
635
  source: string;
650
636
  directory?: string | undefined;
651
- } | undefined);
637
+ };
652
638
  icon?: string | {
653
639
  name: string;
654
640
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
@@ -656,10 +642,10 @@ export declare const standardConfigSchema: {
656
642
  } | undefined;
657
643
  expanded?: boolean | undefined;
658
644
  public?: boolean | undefined;
645
+ pages?: any[] | undefined;
659
646
  tag?: string | undefined;
660
647
  hidden?: boolean | undefined;
661
648
  root?: string | undefined;
662
- pages?: any[] | undefined;
663
649
  } | {
664
650
  group: string;
665
651
  icon?: string | {
@@ -669,16 +655,17 @@ export declare const standardConfigSchema: {
669
655
  } | undefined;
670
656
  expanded?: boolean | undefined;
671
657
  public?: boolean | undefined;
658
+ pages?: any[] | undefined;
672
659
  tag?: string | undefined;
673
660
  hidden?: boolean | undefined;
674
661
  root?: string | undefined;
675
- pages?: any[] | undefined;
676
662
  })[];
677
663
  global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
678
- }>, import("zod").ZodObject<{
664
+ }>, import("zod").ZodObject<import("zod").objectUtil.extendShape<{
679
665
  global: import("zod").ZodOptional<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").GlobalNavigation, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").GlobalNavigation>>;
666
+ }, {
680
667
  pages: import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">;
681
- }, "strip", import("zod").ZodTypeAny, {
668
+ }>, "strip", import("zod").ZodTypeAny, {
682
669
  pages: any[];
683
670
  global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
684
671
  }, {
@@ -713,7 +700,6 @@ export declare const standardConfigSchema: {
713
700
  header?: string | undefined;
714
701
  }>, "many">>;
715
702
  }, "strip", import("zod").ZodTypeAny, {
716
- 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;
717
703
  links?: {
718
704
  items: {
719
705
  href: string;
@@ -721,8 +707,8 @@ export declare const standardConfigSchema: {
721
707
  }[];
722
708
  header?: string | undefined;
723
709
  }[] | undefined;
724
- }, {
725
710
  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;
711
+ }, {
726
712
  links?: {
727
713
  items: {
728
714
  href: string;
@@ -730,6 +716,7 @@ export declare const standardConfigSchema: {
730
716
  }[];
731
717
  header?: string | undefined;
732
718
  }[] | undefined;
719
+ 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;
733
720
  }>>;
734
721
  search: import("zod").ZodOptional<import("zod").ZodObject<{
735
722
  prompt: import("zod").ZodOptional<import("zod").ZodString>;
@@ -755,23 +742,23 @@ export declare const standardConfigSchema: {
755
742
  format: import("zod").ZodOptional<import("zod").ZodEnum<["woff", "woff2"]>>;
756
743
  }, "strip", import("zod").ZodTypeAny, {
757
744
  family: string;
758
- weight?: number | undefined;
759
745
  source?: string | undefined;
746
+ weight?: number | undefined;
760
747
  format?: "woff" | "woff2" | undefined;
761
748
  }, {
762
749
  family: string;
763
- weight?: number | undefined;
764
750
  source?: string | undefined;
751
+ weight?: number | undefined;
765
752
  format?: "woff" | "woff2" | undefined;
766
753
  }>, {
767
754
  family: string;
768
- weight?: number | undefined;
769
755
  source?: string | undefined;
756
+ weight?: number | undefined;
770
757
  format?: "woff" | "woff2" | undefined;
771
758
  }, {
772
759
  family: string;
773
- weight?: number | undefined;
774
760
  source?: string | undefined;
761
+ weight?: number | undefined;
775
762
  format?: "woff" | "woff2" | undefined;
776
763
  }>, import("zod").ZodObject<{
777
764
  heading: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodObject<{
@@ -781,23 +768,23 @@ export declare const standardConfigSchema: {
781
768
  format: import("zod").ZodOptional<import("zod").ZodEnum<["woff", "woff2"]>>;
782
769
  }, "strip", import("zod").ZodTypeAny, {
783
770
  family: string;
784
- weight?: number | undefined;
785
771
  source?: string | undefined;
772
+ weight?: number | undefined;
786
773
  format?: "woff" | "woff2" | undefined;
787
774
  }, {
788
775
  family: string;
789
- weight?: number | undefined;
790
776
  source?: string | undefined;
777
+ weight?: number | undefined;
791
778
  format?: "woff" | "woff2" | undefined;
792
779
  }>, {
793
780
  family: string;
794
- weight?: number | undefined;
795
781
  source?: string | undefined;
782
+ weight?: number | undefined;
796
783
  format?: "woff" | "woff2" | undefined;
797
784
  }, {
798
785
  family: string;
799
- weight?: number | undefined;
800
786
  source?: string | undefined;
787
+ weight?: number | undefined;
801
788
  format?: "woff" | "woff2" | undefined;
802
789
  }>>;
803
790
  body: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodObject<{
@@ -807,49 +794,49 @@ export declare const standardConfigSchema: {
807
794
  format: import("zod").ZodOptional<import("zod").ZodEnum<["woff", "woff2"]>>;
808
795
  }, "strip", import("zod").ZodTypeAny, {
809
796
  family: string;
810
- weight?: number | undefined;
811
797
  source?: string | undefined;
798
+ weight?: number | undefined;
812
799
  format?: "woff" | "woff2" | undefined;
813
800
  }, {
814
801
  family: string;
815
- weight?: number | undefined;
816
802
  source?: string | undefined;
803
+ weight?: number | undefined;
817
804
  format?: "woff" | "woff2" | undefined;
818
805
  }>, {
819
806
  family: string;
820
- weight?: number | undefined;
821
807
  source?: string | undefined;
808
+ weight?: number | undefined;
822
809
  format?: "woff" | "woff2" | undefined;
823
810
  }, {
824
811
  family: string;
825
- weight?: number | undefined;
826
812
  source?: string | undefined;
813
+ weight?: number | undefined;
827
814
  format?: "woff" | "woff2" | undefined;
828
815
  }>>;
829
816
  }, "strict", import("zod").ZodTypeAny, {
830
- heading?: {
817
+ body?: {
831
818
  family: string;
832
- weight?: number | undefined;
833
819
  source?: string | undefined;
820
+ weight?: number | undefined;
834
821
  format?: "woff" | "woff2" | undefined;
835
822
  } | undefined;
836
- body?: {
823
+ heading?: {
837
824
  family: string;
838
- weight?: number | undefined;
839
825
  source?: string | undefined;
826
+ weight?: number | undefined;
840
827
  format?: "woff" | "woff2" | undefined;
841
828
  } | undefined;
842
829
  }, {
843
- heading?: {
830
+ body?: {
844
831
  family: string;
845
- weight?: number | undefined;
846
832
  source?: string | undefined;
833
+ weight?: number | undefined;
847
834
  format?: "woff" | "woff2" | undefined;
848
835
  } | undefined;
849
- body?: {
836
+ heading?: {
850
837
  family: string;
851
- weight?: number | undefined;
852
838
  source?: string | undefined;
839
+ weight?: number | undefined;
853
840
  format?: "woff" | "woff2" | undefined;
854
841
  } | undefined;
855
842
  }>]>>;
@@ -881,45 +868,45 @@ export declare const standardConfigSchema: {
881
868
  custom?: string[] | undefined;
882
869
  }>>;
883
870
  }, "strip", import("zod").ZodTypeAny, {
871
+ languages?: {
872
+ custom?: string[] | undefined;
873
+ } | undefined;
884
874
  theme?: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables" | {
885
875
  light: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
886
876
  dark: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
887
877
  } | undefined;
878
+ }, {
888
879
  languages?: {
889
880
  custom?: string[] | undefined;
890
881
  } | undefined;
891
- }, {
892
882
  theme?: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables" | {
893
883
  light: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
894
884
  dark: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
895
885
  } | undefined;
896
- languages?: {
897
- custom?: string[] | undefined;
898
- } | undefined;
899
886
  }>]>;
900
887
  latex: import("zod").ZodOptional<import("zod").ZodBoolean>;
901
888
  }, "strip", import("zod").ZodTypeAny, {
902
889
  eyebrows?: "section" | "breadcrumbs" | undefined;
903
890
  codeblocks?: "dark" | "system" | {
891
+ languages?: {
892
+ custom?: string[] | undefined;
893
+ } | undefined;
904
894
  theme?: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables" | {
905
895
  light: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
906
896
  dark: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
907
897
  } | undefined;
908
- languages?: {
909
- custom?: string[] | undefined;
910
- } | undefined;
911
898
  } | undefined;
912
899
  latex?: boolean | undefined;
913
900
  }, {
914
901
  eyebrows?: "section" | "breadcrumbs" | undefined;
915
902
  codeblocks?: "dark" | "system" | {
903
+ languages?: {
904
+ custom?: string[] | undefined;
905
+ } | undefined;
916
906
  theme?: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables" | {
917
907
  light: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
918
908
  dark: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
919
909
  } | undefined;
920
- languages?: {
921
- custom?: string[] | undefined;
922
- } | undefined;
923
910
  } | undefined;
924
911
  latex?: boolean | undefined;
925
912
  }>>;
@@ -1101,11 +1088,11 @@ export declare const standardConfigSchema: {
1101
1088
  key: import("zod").ZodOptional<import("zod").ZodString>;
1102
1089
  value: import("zod").ZodOptional<import("zod").ZodString>;
1103
1090
  }, "strip", import("zod").ZodTypeAny, {
1104
- key?: string | undefined;
1105
1091
  value?: string | undefined;
1106
- }, {
1107
1092
  key?: string | undefined;
1093
+ }, {
1108
1094
  value?: string | undefined;
1095
+ key?: string | undefined;
1109
1096
  }>>;
1110
1097
  }, "strict", import("zod").ZodTypeAny, {
1111
1098
  amplitude?: {
@@ -1120,9 +1107,6 @@ export declare const standardConfigSchema: {
1120
1107
  fathom?: {
1121
1108
  siteId: string;
1122
1109
  } | undefined;
1123
- frontchat?: {
1124
- snippetId: string;
1125
- } | undefined;
1126
1110
  ga4?: {
1127
1111
  measurementId: string;
1128
1112
  } | undefined;
@@ -1140,9 +1124,6 @@ export declare const standardConfigSchema: {
1140
1124
  hjid: string;
1141
1125
  hjsv: string;
1142
1126
  } | undefined;
1143
- intercom?: {
1144
- appId: string;
1145
- } | undefined;
1146
1127
  koala?: {
1147
1128
  publicApiKey: string;
1148
1129
  } | undefined;
@@ -1152,9 +1133,6 @@ export declare const standardConfigSchema: {
1152
1133
  mixpanel?: {
1153
1134
  projectToken: string;
1154
1135
  } | undefined;
1155
- osano?: {
1156
- scriptSource: string;
1157
- } | undefined;
1158
1136
  pirsch?: {
1159
1137
  id: string;
1160
1138
  } | undefined;
@@ -1169,12 +1147,21 @@ export declare const standardConfigSchema: {
1169
1147
  segment?: {
1170
1148
  key: string;
1171
1149
  } | undefined;
1150
+ intercom?: {
1151
+ appId: string;
1152
+ } | undefined;
1153
+ frontchat?: {
1154
+ snippetId: string;
1155
+ } | undefined;
1156
+ osano?: {
1157
+ scriptSource: string;
1158
+ } | undefined;
1172
1159
  telemetry?: {
1173
1160
  enabled?: boolean | undefined;
1174
1161
  } | undefined;
1175
1162
  cookies?: {
1176
- key?: string | undefined;
1177
1163
  value?: string | undefined;
1164
+ key?: string | undefined;
1178
1165
  } | undefined;
1179
1166
  }, {
1180
1167
  amplitude?: {
@@ -1189,9 +1176,6 @@ export declare const standardConfigSchema: {
1189
1176
  fathom?: {
1190
1177
  siteId: string;
1191
1178
  } | undefined;
1192
- frontchat?: {
1193
- snippetId: string;
1194
- } | undefined;
1195
1179
  ga4?: {
1196
1180
  measurementId: string;
1197
1181
  } | undefined;
@@ -1209,9 +1193,6 @@ export declare const standardConfigSchema: {
1209
1193
  hjid: string;
1210
1194
  hjsv: string;
1211
1195
  } | undefined;
1212
- intercom?: {
1213
- appId: string;
1214
- } | undefined;
1215
1196
  koala?: {
1216
1197
  publicApiKey: string;
1217
1198
  } | undefined;
@@ -1221,9 +1202,6 @@ export declare const standardConfigSchema: {
1221
1202
  mixpanel?: {
1222
1203
  projectToken: string;
1223
1204
  } | undefined;
1224
- osano?: {
1225
- scriptSource: string;
1226
- } | undefined;
1227
1205
  pirsch?: {
1228
1206
  id: string;
1229
1207
  } | undefined;
@@ -1238,12 +1216,21 @@ export declare const standardConfigSchema: {
1238
1216
  segment?: {
1239
1217
  key: string;
1240
1218
  } | undefined;
1219
+ intercom?: {
1220
+ appId: string;
1221
+ } | undefined;
1222
+ frontchat?: {
1223
+ snippetId: string;
1224
+ } | undefined;
1225
+ osano?: {
1226
+ scriptSource: string;
1227
+ } | undefined;
1241
1228
  telemetry?: {
1242
1229
  enabled?: boolean | undefined;
1243
1230
  } | undefined;
1244
1231
  cookies?: {
1245
- key?: string | undefined;
1246
1232
  value?: string | undefined;
1233
+ key?: string | undefined;
1247
1234
  } | undefined;
1248
1235
  }>>;
1249
1236
  banner: import("zod").ZodOptional<import("zod").ZodObject<{
@@ -1266,9 +1253,9 @@ export declare const standardConfigSchema: {
1266
1253
  title?: string | undefined;
1267
1254
  description?: string | undefined;
1268
1255
  }, {
1269
- redirect?: boolean | undefined;
1270
1256
  title?: string | undefined;
1271
1257
  description?: string | undefined;
1258
+ redirect?: boolean | undefined;
1272
1259
  }>;
1273
1260
  }, "strip", import("zod").ZodTypeAny, {
1274
1261
  '404': {
@@ -1278,9 +1265,9 @@ export declare const standardConfigSchema: {
1278
1265
  };
1279
1266
  }, {
1280
1267
  '404': {
1281
- redirect?: boolean | undefined;
1282
1268
  title?: string | undefined;
1283
1269
  description?: string | undefined;
1270
+ redirect?: boolean | undefined;
1284
1271
  };
1285
1272
  }>>;
1286
1273
  contextual: import("zod").ZodOptional<import("zod").ZodObject<{
@@ -1326,19 +1313,13 @@ export declare const standardConfigSchema: {
1326
1313
  }[] | undefined;
1327
1314
  }>]>;
1328
1315
  }, "strip", import("zod").ZodTypeAny, {
1329
- href: (string | {
1330
- base: string;
1331
- query?: {
1332
- value: string;
1333
- key: string;
1334
- }[] | undefined;
1335
- }) & (string | {
1316
+ href: string | {
1336
1317
  base: string;
1337
1318
  query?: {
1338
1319
  value: string;
1339
1320
  key: string;
1340
1321
  }[] | undefined;
1341
- } | undefined);
1322
+ };
1342
1323
  title: string;
1343
1324
  description: string;
1344
1325
  icon?: string | {
@@ -1347,19 +1328,13 @@ export declare const standardConfigSchema: {
1347
1328
  library?: "fontawesome" | "lucide" | undefined;
1348
1329
  } | undefined;
1349
1330
  }, {
1350
- href: (string | {
1331
+ href: string | {
1351
1332
  base: string;
1352
1333
  query?: {
1353
1334
  value: string;
1354
1335
  key: string;
1355
1336
  }[] | undefined;
1356
- }) & (string | {
1357
- base: string;
1358
- query?: {
1359
- value: string;
1360
- key: string;
1361
- }[] | undefined;
1362
- } | undefined);
1337
+ };
1363
1338
  title: string;
1364
1339
  description: string;
1365
1340
  icon?: string | {
@@ -1368,19 +1343,13 @@ export declare const standardConfigSchema: {
1368
1343
  library?: "fontawesome" | "lucide" | undefined;
1369
1344
  } | undefined;
1370
1345
  }>]>, "many">, ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1371
- href: (string | {
1372
- base: string;
1373
- query?: {
1374
- value: string;
1375
- key: string;
1376
- }[] | undefined;
1377
- }) & (string | {
1346
+ href: string | {
1378
1347
  base: string;
1379
1348
  query?: {
1380
1349
  value: string;
1381
1350
  key: string;
1382
1351
  }[] | undefined;
1383
- } | undefined);
1352
+ };
1384
1353
  title: string;
1385
1354
  description: string;
1386
1355
  icon?: string | {
@@ -1389,19 +1358,13 @@ export declare const standardConfigSchema: {
1389
1358
  library?: "fontawesome" | "lucide" | undefined;
1390
1359
  } | undefined;
1391
1360
  })[], ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1392
- href: (string | {
1361
+ href: string | {
1393
1362
  base: string;
1394
1363
  query?: {
1395
1364
  value: string;
1396
1365
  key: string;
1397
1366
  }[] | undefined;
1398
- }) & (string | {
1399
- base: string;
1400
- query?: {
1401
- value: string;
1402
- key: string;
1403
- }[] | undefined;
1404
- } | undefined);
1367
+ };
1405
1368
  title: string;
1406
1369
  description: string;
1407
1370
  icon?: string | {
@@ -1412,19 +1375,13 @@ export declare const standardConfigSchema: {
1412
1375
  })[]>;
1413
1376
  }, "strip", import("zod").ZodTypeAny, {
1414
1377
  options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1415
- href: (string | {
1416
- base: string;
1417
- query?: {
1418
- value: string;
1419
- key: string;
1420
- }[] | undefined;
1421
- }) & (string | {
1378
+ href: string | {
1422
1379
  base: string;
1423
1380
  query?: {
1424
1381
  value: string;
1425
1382
  key: string;
1426
1383
  }[] | undefined;
1427
- } | undefined);
1384
+ };
1428
1385
  title: string;
1429
1386
  description: string;
1430
1387
  icon?: string | {
@@ -1435,19 +1392,13 @@ export declare const standardConfigSchema: {
1435
1392
  })[];
1436
1393
  }, {
1437
1394
  options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1438
- href: (string | {
1395
+ href: string | {
1439
1396
  base: string;
1440
1397
  query?: {
1441
1398
  value: string;
1442
1399
  key: string;
1443
1400
  }[] | undefined;
1444
- }) & (string | {
1445
- base: string;
1446
- query?: {
1447
- value: string;
1448
- key: string;
1449
- }[] | undefined;
1450
- } | undefined);
1401
+ };
1451
1402
  title: string;
1452
1403
  description: string;
1453
1404
  icon?: string | {
@@ -1468,14 +1419,14 @@ export declare const standardConfigSchema: {
1468
1419
  family: string;
1469
1420
  }>>;
1470
1421
  }, "strip", import("zod").ZodTypeAny, {
1471
- appearance?: import("../../properties/thumbnails.js").ThumbnailAppearance | undefined;
1472
1422
  background?: string | undefined;
1423
+ appearance?: import("../../properties/thumbnails.js").ThumbnailAppearance | undefined;
1473
1424
  fonts?: {
1474
1425
  family: string;
1475
1426
  } | undefined;
1476
1427
  }, {
1477
- appearance?: import("../../properties/thumbnails.js").ThumbnailAppearance | undefined;
1478
1428
  background?: string | undefined;
1429
+ appearance?: import("../../properties/thumbnails.js").ThumbnailAppearance | undefined;
1479
1430
  fonts?: {
1480
1431
  family: string;
1481
1432
  } | undefined;