@mintlify/validation 0.1.245 → 0.1.247

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 (57) hide show
  1. package/dist/mint-config/schemas/v2/index.d.ts +5235 -2167
  2. package/dist/mint-config/schemas/v2/index.js +8 -6
  3. package/dist/mint-config/schemas/v2/properties/api.d.ts +14 -11
  4. package/dist/mint-config/schemas/v2/properties/api.js +5 -5
  5. package/dist/mint-config/schemas/v2/properties/appearance.d.ts +4 -4
  6. package/dist/mint-config/schemas/v2/properties/appearance.js +6 -3
  7. package/dist/mint-config/schemas/v2/properties/icons.d.ts +2 -2
  8. package/dist/mint-config/schemas/v2/properties/icons.js +3 -1
  9. package/dist/mint-config/schemas/v2/properties/index.d.ts +9 -0
  10. package/dist/mint-config/schemas/v2/properties/index.js +9 -0
  11. package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +225 -2
  12. package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +10 -16
  13. package/dist/mint-config/schemas/v2/properties/navigation/divisionSchemas.d.ts +7 -0
  14. package/dist/mint-config/schemas/v2/properties/navigation/divisionSchemas.js +26 -0
  15. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +155 -2
  16. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +10 -16
  17. package/dist/mint-config/schemas/v2/properties/navigation/global.d.ts +25 -0
  18. package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +638 -6
  19. package/dist/mint-config/schemas/v2/properties/navigation/groups.js +15 -7
  20. package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +1338 -295
  21. package/dist/mint-config/schemas/v2/properties/navigation/index.js +20 -18
  22. package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +47 -214
  23. package/dist/mint-config/schemas/v2/properties/navigation/languages.js +10 -18
  24. package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +4 -0
  25. package/dist/mint-config/schemas/v2/properties/navigation/pages.js +6 -2
  26. package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +153 -2
  27. package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +8 -16
  28. package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +81 -2
  29. package/dist/mint-config/schemas/v2/properties/navigation/version.js +10 -16
  30. package/dist/mint-config/schemas/v2/properties/reusable/divisions.d.ts +2 -0
  31. package/dist/mint-config/schemas/v2/properties/reusable/divisions.js +1 -0
  32. package/dist/mint-config/schemas/v2/properties/reusable/index.d.ts +4 -0
  33. package/dist/mint-config/schemas/v2/properties/reusable/index.js +4 -0
  34. package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +86 -0
  35. package/dist/mint-config/schemas/v2/properties/reusable/page.js +27 -0
  36. package/dist/mint-config/schemas/v2/properties/seo.d.ts +2 -2
  37. package/dist/mint-config/schemas/v2/properties/seo.js +1 -2
  38. package/dist/mint-config/schemas/v2/properties/styling.d.ts +6 -6
  39. package/dist/mint-config/schemas/v2/properties/styling.js +3 -6
  40. package/dist/mint-config/schemas/v2/themes/{quill.d.ts → linden.d.ts} +745 -543
  41. package/dist/mint-config/schemas/v2/themes/linden.js +3 -0
  42. package/dist/mint-config/schemas/v2/themes/{venus.d.ts → maple.d.ts} +745 -543
  43. package/dist/mint-config/schemas/v2/themes/maple.js +3 -0
  44. package/dist/mint-config/schemas/v2/themes/mint.d.ts +741 -539
  45. package/dist/mint-config/schemas/v2/themes/{prism.d.ts → palm.d.ts} +745 -543
  46. package/dist/mint-config/schemas/v2/themes/palm.js +3 -0
  47. package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +523 -321
  48. package/dist/mint-config/schemas/v2/themes/reusable/index.js +0 -2
  49. package/dist/mint-config/schemas/v2/themes/willow.d.ts +2262 -0
  50. package/dist/mint-config/schemas/v2/themes/willow.js +3 -0
  51. package/dist/mint-config/upgrades/upgradeToDocsConfig.d.ts +2 -5
  52. package/dist/mint-config/upgrades/upgradeToDocsConfig.js +72 -45
  53. package/dist/tsconfig.build.tsbuildinfo +1 -1
  54. package/package.json +2 -2
  55. package/dist/mint-config/schemas/v2/themes/prism.js +0 -3
  56. package/dist/mint-config/schemas/v2/themes/quill.js +0 -3
  57. package/dist/mint-config/schemas/v2/themes/venus.js +0 -3
@@ -38,14 +38,14 @@ export declare const standardConfigSchema: {
38
38
  light: string;
39
39
  dark: string;
40
40
  }>]>>;
41
- openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">]>>;
42
41
  api: import("zod").ZodOptional<import("zod").ZodObject<{
42
+ openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">]>>;
43
43
  playground: import("zod").ZodOptional<import("zod").ZodObject<{
44
- display: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodEnum<["interactive", "simple", "none"]>>>;
45
- proxy: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
44
+ display: import("zod").ZodOptional<import("zod").ZodEnum<["interactive", "simple", "none"]>>;
45
+ proxy: import("zod").ZodOptional<import("zod").ZodBoolean>;
46
46
  }, "strip", import("zod").ZodTypeAny, {
47
- display: "simple" | "none" | "interactive";
48
- proxy: boolean;
47
+ display?: "simple" | "none" | "interactive" | undefined;
48
+ proxy?: boolean | undefined;
49
49
  }, {
50
50
  display?: "simple" | "none" | "interactive" | undefined;
51
51
  proxy?: boolean | undefined;
@@ -59,27 +59,29 @@ export declare const standardConfigSchema: {
59
59
  }>>;
60
60
  mdx: import("zod").ZodOptional<import("zod").ZodObject<{
61
61
  auth: import("zod").ZodOptional<import("zod").ZodEnum<["bearer", "basic", "key", "cobo"]>>;
62
- base: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
62
+ server: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>>;
63
63
  }, "strip", import("zod").ZodTypeAny, {
64
64
  auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
65
- base?: string | string[] | undefined;
65
+ server?: string | string[] | undefined;
66
66
  }, {
67
67
  auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
68
- base?: string | string[] | undefined;
68
+ server?: string | string[] | undefined;
69
69
  }>>;
70
70
  }, "strip", import("zod").ZodTypeAny, {
71
+ openapi?: string | string[] | undefined;
71
72
  playground?: {
72
- display: "simple" | "none" | "interactive";
73
- proxy: boolean;
73
+ display?: "simple" | "none" | "interactive" | undefined;
74
+ proxy?: boolean | undefined;
74
75
  } | undefined;
75
76
  examples?: {
76
77
  languages?: string[] | undefined;
77
78
  } | undefined;
78
79
  mdx?: {
79
80
  auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
80
- base?: string | string[] | undefined;
81
+ server?: string | string[] | undefined;
81
82
  } | undefined;
82
83
  }, {
84
+ openapi?: string | string[] | undefined;
83
85
  playground?: {
84
86
  display?: "simple" | "none" | "interactive" | undefined;
85
87
  proxy?: boolean | undefined;
@@ -89,15 +91,15 @@ export declare const standardConfigSchema: {
89
91
  } | undefined;
90
92
  mdx?: {
91
93
  auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
92
- base?: string | string[] | undefined;
94
+ server?: string | string[] | undefined;
93
95
  } | undefined;
94
96
  }>>;
95
97
  appearance: import("zod").ZodOptional<import("zod").ZodObject<{
96
- default: import("zod").ZodDefault<import("zod").ZodEnum<["system", "light", "dark"]>>;
97
- strict: import("zod").ZodDefault<import("zod").ZodBoolean>;
98
+ default: import("zod").ZodOptional<import("zod").ZodEnum<["system", "light", "dark"]>>;
99
+ strict: import("zod").ZodOptional<import("zod").ZodBoolean>;
98
100
  }, "strip", import("zod").ZodTypeAny, {
99
- strict: boolean;
100
- default: "light" | "dark" | "system";
101
+ default?: "light" | "dark" | "system" | undefined;
102
+ strict?: boolean | undefined;
101
103
  }, {
102
104
  default?: "light" | "dark" | "system" | undefined;
103
105
  strict?: boolean | undefined;
@@ -205,310 +207,20 @@ export declare const standardConfigSchema: {
205
207
  href: string;
206
208
  } | undefined;
207
209
  }>>;
208
- navigation: import("zod").ZodIntersection<import("zod").ZodUnion<[import("zod").ZodObject<{
209
- languages: import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodObject<{
210
- language: import("zod").ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
211
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
212
- }, "strip", import("zod").ZodTypeAny, {
213
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
214
- hidden?: boolean | undefined;
215
- }, {
216
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
217
- hidden?: boolean | undefined;
218
- }>, import("zod").ZodUnion<[import("zod").ZodObject<{
219
- openapi: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">]>;
220
- }, "strip", import("zod").ZodTypeAny, {
221
- openapi: (string | string[]) & (string | string[] | undefined);
222
- }, {
223
- openapi: (string | string[]) & (string | string[] | undefined);
224
- }>, import("zod").ZodObject<{
225
- href: import("zod").ZodString;
226
- }, "strip", import("zod").ZodTypeAny, {
227
- href: string;
228
- }, {
229
- href: string;
230
- }>, import("zod").ZodLazy<import("zod").ZodObject<{
231
- versions: import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">;
232
- }, "strip", import("zod").ZodTypeAny, {
233
- versions: any[];
234
- }, {
235
- versions: any[];
236
- }>>, import("zod").ZodLazy<import("zod").ZodObject<{
237
- tabs: import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">;
238
- }, "strip", import("zod").ZodTypeAny, {
239
- tabs: any[];
240
- }, {
241
- tabs: any[];
242
- }>>, import("zod").ZodLazy<import("zod").ZodObject<{
243
- dropdowns: import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">;
244
- }, "strip", import("zod").ZodTypeAny, {
245
- dropdowns: any[];
246
- }, {
247
- dropdowns: any[];
248
- }>>, import("zod").ZodLazy<import("zod").ZodObject<{
249
- anchors: import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">;
250
- }, "strip", import("zod").ZodTypeAny, {
251
- anchors: any[];
252
- }, {
253
- anchors: any[];
254
- }>>, import("zod").ZodLazy<import("zod").ZodObject<{
255
- groups: import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodObject<{
256
- group: import("zod").ZodString;
257
- icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
258
- style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
259
- name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
260
- }, "strip", import("zod").ZodTypeAny, {
261
- name: string;
262
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
263
- }, {
264
- name: string;
265
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
266
- }>]>>;
267
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
268
- root: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
269
- }, "strip", import("zod").ZodTypeAny, {
270
- group: string;
271
- icon?: string | {
272
- name: string;
273
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
274
- } | undefined;
275
- hidden?: boolean | undefined;
276
- root?: string | undefined;
277
- }, {
278
- group: string;
279
- icon?: string | {
280
- name: string;
281
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
282
- } | undefined;
283
- hidden?: boolean | undefined;
284
- root?: string | undefined;
285
- }>, import("zod").ZodUnion<[import("zod").ZodObject<{
286
- openapi: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">]>;
287
- }, "strip", import("zod").ZodTypeAny, {
288
- openapi: (string | string[]) & (string | string[] | undefined);
289
- }, {
290
- openapi: (string | string[]) & (string | string[] | undefined);
291
- }>, import("zod").ZodLazy<import("zod").ZodObject<{
292
- pages: import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">;
293
- }, "strip", import("zod").ZodTypeAny, {
294
- pages: any[];
295
- }, {
296
- pages: any[];
297
- }>>]>>, "many">;
298
- }, "strip", import("zod").ZodTypeAny, {
299
- groups: ({
300
- group: string;
301
- icon?: string | {
302
- name: string;
303
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
304
- } | undefined;
305
- hidden?: boolean | undefined;
306
- root?: string | undefined;
307
- } & ({
308
- openapi: (string | string[]) & (string | string[] | undefined);
309
- } | {
310
- pages: any[];
311
- }))[];
312
- }, {
313
- groups: ({
314
- group: string;
315
- icon?: string | {
316
- name: string;
317
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
318
- } | undefined;
319
- hidden?: boolean | undefined;
320
- root?: string | undefined;
321
- } & ({
322
- openapi: (string | string[]) & (string | string[] | undefined);
323
- } | {
324
- pages: any[];
325
- }))[];
326
- }>>, import("zod").ZodLazy<import("zod").ZodObject<{
327
- pages: import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">;
328
- }, "strip", import("zod").ZodTypeAny, {
329
- pages: any[];
330
- }, {
331
- pages: any[];
332
- }>>]>>, "many">;
333
- }, "strip", import("zod").ZodTypeAny, {
334
- languages: ({
335
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
336
- hidden?: boolean | undefined;
337
- } & ({
338
- openapi: (string | string[]) & (string | string[] | undefined);
339
- } | {
340
- href: string;
341
- } | {
342
- versions: any[];
343
- } | {
344
- tabs: any[];
345
- } | {
346
- dropdowns: any[];
347
- } | {
348
- anchors: any[];
349
- } | {
350
- groups: ({
351
- group: string;
352
- icon?: string | {
353
- name: string;
354
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
355
- } | undefined;
356
- hidden?: boolean | undefined;
357
- root?: string | undefined;
358
- } & ({
359
- openapi: (string | string[]) & (string | string[] | undefined);
360
- } | {
361
- pages: any[];
362
- }))[];
363
- } | {
364
- pages: any[];
365
- }))[];
366
- }, {
367
- languages: ({
368
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
369
- hidden?: boolean | undefined;
370
- } & ({
371
- openapi: (string | string[]) & (string | string[] | undefined);
372
- } | {
373
- href: string;
374
- } | {
375
- versions: any[];
376
- } | {
377
- tabs: any[];
378
- } | {
379
- dropdowns: any[];
380
- } | {
381
- anchors: any[];
382
- } | {
383
- groups: ({
384
- group: string;
385
- icon?: string | {
386
- name: string;
387
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
388
- } | undefined;
389
- hidden?: boolean | undefined;
390
- root?: string | undefined;
391
- } & ({
392
- openapi: (string | string[]) & (string | string[] | undefined);
393
- } | {
394
- pages: any[];
395
- }))[];
396
- } | {
397
- pages: any[];
398
- }))[];
399
- }>, import("zod").ZodObject<{
400
- versions: import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">;
401
- }, "strip", import("zod").ZodTypeAny, {
402
- versions: any[];
403
- }, {
404
- versions: any[];
405
- }>, import("zod").ZodObject<{
406
- tabs: import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">;
407
- }, "strip", import("zod").ZodTypeAny, {
408
- tabs: any[];
409
- }, {
410
- tabs: any[];
411
- }>, import("zod").ZodObject<{
412
- dropdowns: import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">;
413
- }, "strip", import("zod").ZodTypeAny, {
414
- dropdowns: any[];
415
- }, {
416
- dropdowns: any[];
417
- }>, import("zod").ZodObject<{
418
- anchors: import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">;
419
- }, "strip", import("zod").ZodTypeAny, {
420
- anchors: any[];
421
- }, {
422
- anchors: any[];
423
- }>, import("zod").ZodObject<{
424
- groups: import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodObject<{
425
- group: import("zod").ZodString;
426
- icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
427
- style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
428
- name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
429
- }, "strip", import("zod").ZodTypeAny, {
430
- name: string;
431
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
432
- }, {
433
- name: string;
434
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
435
- }>]>>;
436
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
437
- root: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
438
- }, "strip", import("zod").ZodTypeAny, {
439
- group: string;
440
- icon?: string | {
441
- name: string;
442
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
443
- } | undefined;
444
- hidden?: boolean | undefined;
445
- root?: string | undefined;
446
- }, {
447
- group: string;
448
- icon?: string | {
449
- name: string;
450
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
451
- } | undefined;
452
- hidden?: boolean | undefined;
453
- root?: string | undefined;
454
- }>, import("zod").ZodUnion<[import("zod").ZodObject<{
455
- openapi: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">]>;
456
- }, "strip", import("zod").ZodTypeAny, {
457
- openapi: (string | string[]) & (string | string[] | undefined);
458
- }, {
459
- openapi: (string | string[]) & (string | string[] | undefined);
460
- }>, import("zod").ZodLazy<import("zod").ZodObject<{
461
- pages: import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">;
462
- }, "strip", import("zod").ZodTypeAny, {
463
- pages: any[];
464
- }, {
465
- pages: any[];
466
- }>>]>>, "many">;
467
- }, "strip", import("zod").ZodTypeAny, {
468
- groups: ({
469
- group: string;
470
- icon?: string | {
471
- name: string;
472
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
473
- } | undefined;
474
- hidden?: boolean | undefined;
475
- root?: string | undefined;
476
- } & ({
477
- openapi: (string | string[]) & (string | string[] | undefined);
478
- } | {
479
- pages: any[];
480
- }))[];
481
- }, {
482
- groups: ({
483
- group: string;
484
- icon?: string | {
485
- name: string;
486
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
487
- } | undefined;
488
- hidden?: boolean | undefined;
489
- root?: string | undefined;
490
- } & ({
491
- openapi: (string | string[]) & (string | string[] | undefined);
492
- } | {
493
- pages: any[];
494
- }))[];
495
- }>, import("zod").ZodObject<{
496
- pages: import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">;
497
- }, "strip", import("zod").ZodTypeAny, {
498
- pages: any[];
499
- }, {
500
- pages: any[];
501
- }>]>, import("zod").ZodObject<{
210
+ navigation: import("zod").ZodIntersection<import("zod").ZodObject<{
502
211
  global: import("zod").ZodOptional<import("zod").ZodObject<{
503
212
  languages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodObject<{
504
213
  language: import("zod").ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
505
214
  hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
215
+ openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">]>>;
506
216
  }, "strip", import("zod").ZodTypeAny, {
507
217
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
508
218
  hidden?: boolean | undefined;
219
+ openapi?: string | string[] | undefined;
509
220
  }, {
510
221
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
511
222
  hidden?: boolean | undefined;
223
+ openapi?: string | string[] | undefined;
512
224
  }>, import("zod").ZodObject<{
513
225
  href: import("zod").ZodString;
514
226
  }, "strip", import("zod").ZodTypeAny, {
@@ -519,12 +231,15 @@ export declare const standardConfigSchema: {
519
231
  versions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodObject<{
520
232
  version: import("zod").ZodString;
521
233
  hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
234
+ openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">]>>;
522
235
  }, "strip", import("zod").ZodTypeAny, {
523
236
  version: string;
524
237
  hidden?: boolean | undefined;
238
+ openapi?: string | string[] | undefined;
525
239
  }, {
526
240
  version: string;
527
241
  hidden?: boolean | undefined;
242
+ openapi?: string | string[] | undefined;
528
243
  }>, import("zod").ZodObject<{
529
244
  href: import("zod").ZodString;
530
245
  }, "strip", import("zod").ZodTypeAny, {
@@ -545,6 +260,7 @@ export declare const standardConfigSchema: {
545
260
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
546
261
  }>]>>;
547
262
  hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
263
+ openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">]>>;
548
264
  }, "strip", import("zod").ZodTypeAny, {
549
265
  tab: string;
550
266
  icon?: string | {
@@ -552,6 +268,7 @@ export declare const standardConfigSchema: {
552
268
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
553
269
  } | undefined;
554
270
  hidden?: boolean | undefined;
271
+ openapi?: string | string[] | undefined;
555
272
  }, {
556
273
  tab: string;
557
274
  icon?: string | {
@@ -559,6 +276,7 @@ export declare const standardConfigSchema: {
559
276
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
560
277
  } | undefined;
561
278
  hidden?: boolean | undefined;
279
+ openapi?: string | string[] | undefined;
562
280
  }>, import("zod").ZodObject<{
563
281
  href: import("zod").ZodString;
564
282
  }, "strip", import("zod").ZodTypeAny, {
@@ -579,6 +297,7 @@ export declare const standardConfigSchema: {
579
297
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
580
298
  }>]>>;
581
299
  hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
300
+ openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">]>>;
582
301
  }, "strip", import("zod").ZodTypeAny, {
583
302
  dropdown: string;
584
303
  icon?: string | {
@@ -586,6 +305,7 @@ export declare const standardConfigSchema: {
586
305
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
587
306
  } | undefined;
588
307
  hidden?: boolean | undefined;
308
+ openapi?: string | string[] | undefined;
589
309
  }, {
590
310
  dropdown: string;
591
311
  icon?: string | {
@@ -593,6 +313,7 @@ export declare const standardConfigSchema: {
593
313
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
594
314
  } | undefined;
595
315
  hidden?: boolean | undefined;
316
+ openapi?: string | string[] | undefined;
596
317
  }>, import("zod").ZodObject<{
597
318
  href: import("zod").ZodString;
598
319
  }, "strip", import("zod").ZodTypeAny, {
@@ -623,6 +344,7 @@ export declare const standardConfigSchema: {
623
344
  dark?: string | undefined;
624
345
  }>>;
625
346
  hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
347
+ openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">]>>;
626
348
  }, "strip", import("zod").ZodTypeAny, {
627
349
  anchor: string;
628
350
  icon?: string | {
@@ -634,6 +356,7 @@ export declare const standardConfigSchema: {
634
356
  dark?: string | undefined;
635
357
  } | undefined;
636
358
  hidden?: boolean | undefined;
359
+ openapi?: string | string[] | undefined;
637
360
  }, {
638
361
  anchor: string;
639
362
  icon?: string | {
@@ -645,6 +368,7 @@ export declare const standardConfigSchema: {
645
368
  dark?: string | undefined;
646
369
  } | undefined;
647
370
  hidden?: boolean | undefined;
371
+ openapi?: string | string[] | undefined;
648
372
  }>, import("zod").ZodObject<{
649
373
  href: import("zod").ZodString;
650
374
  }, "strip", import("zod").ZodTypeAny, {
@@ -656,12 +380,14 @@ export declare const standardConfigSchema: {
656
380
  languages?: ({
657
381
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
658
382
  hidden?: boolean | undefined;
383
+ openapi?: string | string[] | undefined;
659
384
  } & {
660
385
  href: string;
661
386
  })[] | undefined;
662
387
  versions?: ({
663
388
  version: string;
664
389
  hidden?: boolean | undefined;
390
+ openapi?: string | string[] | undefined;
665
391
  } & {
666
392
  href: string;
667
393
  })[] | undefined;
@@ -672,6 +398,7 @@ export declare const standardConfigSchema: {
672
398
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
673
399
  } | undefined;
674
400
  hidden?: boolean | undefined;
401
+ openapi?: string | string[] | undefined;
675
402
  } & {
676
403
  href: string;
677
404
  })[] | undefined;
@@ -682,6 +409,7 @@ export declare const standardConfigSchema: {
682
409
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
683
410
  } | undefined;
684
411
  hidden?: boolean | undefined;
412
+ openapi?: string | string[] | undefined;
685
413
  } & {
686
414
  href: string;
687
415
  })[] | undefined;
@@ -696,6 +424,7 @@ export declare const standardConfigSchema: {
696
424
  dark?: string | undefined;
697
425
  } | undefined;
698
426
  hidden?: boolean | undefined;
427
+ openapi?: string | string[] | undefined;
699
428
  } & {
700
429
  href: string;
701
430
  })[] | undefined;
@@ -703,12 +432,14 @@ export declare const standardConfigSchema: {
703
432
  languages?: ({
704
433
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
705
434
  hidden?: boolean | undefined;
435
+ openapi?: string | string[] | undefined;
706
436
  } & {
707
437
  href: string;
708
438
  })[] | undefined;
709
439
  versions?: ({
710
440
  version: string;
711
441
  hidden?: boolean | undefined;
442
+ openapi?: string | string[] | undefined;
712
443
  } & {
713
444
  href: string;
714
445
  })[] | undefined;
@@ -719,6 +450,7 @@ export declare const standardConfigSchema: {
719
450
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
720
451
  } | undefined;
721
452
  hidden?: boolean | undefined;
453
+ openapi?: string | string[] | undefined;
722
454
  } & {
723
455
  href: string;
724
456
  })[] | undefined;
@@ -729,6 +461,7 @@ export declare const standardConfigSchema: {
729
461
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
730
462
  } | undefined;
731
463
  hidden?: boolean | undefined;
464
+ openapi?: string | string[] | undefined;
732
465
  } & {
733
466
  href: string;
734
467
  })[] | undefined;
@@ -743,6 +476,7 @@ export declare const standardConfigSchema: {
743
476
  dark?: string | undefined;
744
477
  } | undefined;
745
478
  hidden?: boolean | undefined;
479
+ openapi?: string | string[] | undefined;
746
480
  } & {
747
481
  href: string;
748
482
  })[] | undefined;
@@ -752,12 +486,14 @@ export declare const standardConfigSchema: {
752
486
  languages?: ({
753
487
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
754
488
  hidden?: boolean | undefined;
489
+ openapi?: string | string[] | undefined;
755
490
  } & {
756
491
  href: string;
757
492
  })[] | undefined;
758
493
  versions?: ({
759
494
  version: string;
760
495
  hidden?: boolean | undefined;
496
+ openapi?: string | string[] | undefined;
761
497
  } & {
762
498
  href: string;
763
499
  })[] | undefined;
@@ -768,6 +504,7 @@ export declare const standardConfigSchema: {
768
504
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
769
505
  } | undefined;
770
506
  hidden?: boolean | undefined;
507
+ openapi?: string | string[] | undefined;
771
508
  } & {
772
509
  href: string;
773
510
  })[] | undefined;
@@ -778,6 +515,7 @@ export declare const standardConfigSchema: {
778
515
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
779
516
  } | undefined;
780
517
  hidden?: boolean | undefined;
518
+ openapi?: string | string[] | undefined;
781
519
  } & {
782
520
  href: string;
783
521
  })[] | undefined;
@@ -792,6 +530,7 @@ export declare const standardConfigSchema: {
792
530
  dark?: string | undefined;
793
531
  } | undefined;
794
532
  hidden?: boolean | undefined;
533
+ openapi?: string | string[] | undefined;
795
534
  } & {
796
535
  href: string;
797
536
  })[] | undefined;
@@ -801,12 +540,14 @@ export declare const standardConfigSchema: {
801
540
  languages?: ({
802
541
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
803
542
  hidden?: boolean | undefined;
543
+ openapi?: string | string[] | undefined;
804
544
  } & {
805
545
  href: string;
806
546
  })[] | undefined;
807
547
  versions?: ({
808
548
  version: string;
809
549
  hidden?: boolean | undefined;
550
+ openapi?: string | string[] | undefined;
810
551
  } & {
811
552
  href: string;
812
553
  })[] | undefined;
@@ -817,6 +558,7 @@ export declare const standardConfigSchema: {
817
558
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
818
559
  } | undefined;
819
560
  hidden?: boolean | undefined;
561
+ openapi?: string | string[] | undefined;
820
562
  } & {
821
563
  href: string;
822
564
  })[] | undefined;
@@ -827,6 +569,7 @@ export declare const standardConfigSchema: {
827
569
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
828
570
  } | undefined;
829
571
  hidden?: boolean | undefined;
572
+ openapi?: string | string[] | undefined;
830
573
  } & {
831
574
  href: string;
832
575
  })[] | undefined;
@@ -841,11 +584,470 @@ export declare const standardConfigSchema: {
841
584
  dark?: string | undefined;
842
585
  } | undefined;
843
586
  hidden?: boolean | undefined;
587
+ openapi?: string | string[] | undefined;
844
588
  } & {
845
589
  href: string;
846
590
  })[] | undefined;
847
591
  } | undefined;
848
- }>>;
592
+ }>, import("zod").ZodUnion<[import("zod").ZodObject<{
593
+ languages: import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodObject<{
594
+ language: import("zod").ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
595
+ hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
596
+ openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">]>>;
597
+ }, "strip", import("zod").ZodTypeAny, {
598
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
599
+ hidden?: boolean | undefined;
600
+ openapi?: string | string[] | undefined;
601
+ }, {
602
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
603
+ hidden?: boolean | undefined;
604
+ openapi?: string | string[] | undefined;
605
+ }>, import("zod").ZodUnion<[import("zod").ZodObject<{
606
+ href: import("zod").ZodString;
607
+ }, "strip", import("zod").ZodTypeAny, {
608
+ href: string;
609
+ }, {
610
+ href: string;
611
+ }>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, ...import("zod").ZodType<any, import("zod").ZodTypeDef, any>[]]>>, "many">;
612
+ }, "strip", import("zod").ZodTypeAny, {
613
+ languages: any[];
614
+ }, {
615
+ languages: any[];
616
+ }>, import("zod").ZodObject<{
617
+ versions: import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodObject<{
618
+ version: import("zod").ZodString;
619
+ hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
620
+ openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">]>>;
621
+ }, "strip", import("zod").ZodTypeAny, {
622
+ version: string;
623
+ hidden?: boolean | undefined;
624
+ openapi?: string | string[] | undefined;
625
+ }, {
626
+ version: string;
627
+ hidden?: boolean | undefined;
628
+ openapi?: string | string[] | undefined;
629
+ }>, import("zod").ZodUnion<[import("zod").ZodObject<{
630
+ href: import("zod").ZodString;
631
+ }, "strip", import("zod").ZodTypeAny, {
632
+ href: string;
633
+ }, {
634
+ href: string;
635
+ }>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, ...import("zod").ZodType<any, import("zod").ZodTypeDef, any>[]]>>, "many">;
636
+ }, "strip", import("zod").ZodTypeAny, {
637
+ versions: any[];
638
+ }, {
639
+ versions: any[];
640
+ }>, import("zod").ZodObject<{
641
+ tabs: import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodObject<{
642
+ tab: import("zod").ZodString;
643
+ icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
644
+ style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
645
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
646
+ }, "strip", import("zod").ZodTypeAny, {
647
+ name: string;
648
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
649
+ }, {
650
+ name: string;
651
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
652
+ }>]>>;
653
+ hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
654
+ openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">]>>;
655
+ }, "strip", import("zod").ZodTypeAny, {
656
+ tab: string;
657
+ icon?: string | {
658
+ name: string;
659
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
660
+ } | undefined;
661
+ hidden?: boolean | undefined;
662
+ openapi?: string | string[] | undefined;
663
+ }, {
664
+ tab: string;
665
+ icon?: string | {
666
+ name: string;
667
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
668
+ } | undefined;
669
+ hidden?: boolean | undefined;
670
+ openapi?: string | string[] | undefined;
671
+ }>, import("zod").ZodUnion<[import("zod").ZodObject<{
672
+ href: import("zod").ZodString;
673
+ }, "strip", import("zod").ZodTypeAny, {
674
+ href: string;
675
+ }, {
676
+ href: string;
677
+ }>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, ...import("zod").ZodType<any, import("zod").ZodTypeDef, any>[]]>>, "many">;
678
+ }, "strip", import("zod").ZodTypeAny, {
679
+ tabs: any[];
680
+ }, {
681
+ tabs: any[];
682
+ }>, import("zod").ZodObject<{
683
+ dropdowns: import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodObject<{
684
+ dropdown: import("zod").ZodString;
685
+ icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
686
+ style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
687
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
688
+ }, "strip", import("zod").ZodTypeAny, {
689
+ name: string;
690
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
691
+ }, {
692
+ name: string;
693
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
694
+ }>]>>;
695
+ hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
696
+ openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">]>>;
697
+ }, "strip", import("zod").ZodTypeAny, {
698
+ dropdown: string;
699
+ icon?: string | {
700
+ name: string;
701
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
702
+ } | undefined;
703
+ hidden?: boolean | undefined;
704
+ openapi?: string | string[] | undefined;
705
+ }, {
706
+ dropdown: string;
707
+ icon?: string | {
708
+ name: string;
709
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
710
+ } | undefined;
711
+ hidden?: boolean | undefined;
712
+ openapi?: string | string[] | undefined;
713
+ }>, import("zod").ZodUnion<[import("zod").ZodObject<{
714
+ href: import("zod").ZodString;
715
+ }, "strip", import("zod").ZodTypeAny, {
716
+ href: string;
717
+ }, {
718
+ href: string;
719
+ }>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, ...import("zod").ZodType<any, import("zod").ZodTypeDef, any>[]]>>, "many">;
720
+ }, "strip", import("zod").ZodTypeAny, {
721
+ dropdowns: any[];
722
+ }, {
723
+ dropdowns: any[];
724
+ }>, import("zod").ZodObject<{
725
+ anchors: import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodObject<{
726
+ anchor: import("zod").ZodString;
727
+ icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
728
+ style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
729
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
730
+ }, "strip", import("zod").ZodTypeAny, {
731
+ name: string;
732
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
733
+ }, {
734
+ name: string;
735
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
736
+ }>]>>;
737
+ color: import("zod").ZodOptional<import("zod").ZodObject<{
738
+ light: import("zod").ZodOptional<import("zod").ZodString>;
739
+ dark: import("zod").ZodOptional<import("zod").ZodString>;
740
+ }, "strict", import("zod").ZodTypeAny, {
741
+ light?: string | undefined;
742
+ dark?: string | undefined;
743
+ }, {
744
+ light?: string | undefined;
745
+ dark?: string | undefined;
746
+ }>>;
747
+ hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
748
+ openapi: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">]>>;
749
+ }, "strip", import("zod").ZodTypeAny, {
750
+ anchor: string;
751
+ icon?: string | {
752
+ name: string;
753
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
754
+ } | undefined;
755
+ color?: {
756
+ light?: string | undefined;
757
+ dark?: string | undefined;
758
+ } | undefined;
759
+ hidden?: boolean | undefined;
760
+ openapi?: string | string[] | undefined;
761
+ }, {
762
+ anchor: string;
763
+ icon?: string | {
764
+ name: string;
765
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
766
+ } | undefined;
767
+ color?: {
768
+ light?: string | undefined;
769
+ dark?: string | undefined;
770
+ } | undefined;
771
+ hidden?: boolean | undefined;
772
+ openapi?: string | string[] | undefined;
773
+ }>, import("zod").ZodUnion<[import("zod").ZodObject<{
774
+ href: import("zod").ZodString;
775
+ }, "strip", import("zod").ZodTypeAny, {
776
+ href: string;
777
+ }, {
778
+ href: string;
779
+ }>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, ...import("zod").ZodType<any, import("zod").ZodTypeDef, any>[]]>>, "many">;
780
+ }, "strip", import("zod").ZodTypeAny, {
781
+ anchors: any[];
782
+ }, {
783
+ anchors: any[];
784
+ }>, import("zod").ZodObject<{
785
+ groups: import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodObject<{
786
+ group: import("zod").ZodString;
787
+ icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
788
+ style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
789
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
790
+ }, "strip", import("zod").ZodTypeAny, {
791
+ name: string;
792
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
793
+ }, {
794
+ name: string;
795
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
796
+ }>]>>;
797
+ hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
798
+ root: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>> | import("zod").ZodOptional<import("zod").ZodObject<{
799
+ href: import("zod").ZodString;
800
+ title: import("zod").ZodString;
801
+ sidebarTitle: import("zod").ZodOptional<import("zod").ZodString>;
802
+ description: import("zod").ZodOptional<import("zod").ZodString>;
803
+ api: import("zod").ZodOptional<import("zod").ZodString>;
804
+ openapi: import("zod").ZodOptional<import("zod").ZodString>;
805
+ contentType: import("zod").ZodOptional<import("zod").ZodString>;
806
+ authMethod: import("zod").ZodOptional<import("zod").ZodString>;
807
+ auth: import("zod").ZodOptional<import("zod").ZodString>;
808
+ version: import("zod").ZodOptional<import("zod").ZodString>;
809
+ mode: import("zod").ZodOptional<import("zod").ZodString>;
810
+ hideFooterPagination: import("zod").ZodOptional<import("zod").ZodBoolean>;
811
+ authors: import("zod").ZodOptional<import("zod").ZodUnknown>;
812
+ lastUpdatedDate: import("zod").ZodOptional<import("zod").ZodString>;
813
+ createdDate: import("zod").ZodOptional<import("zod").ZodString>;
814
+ 'openapi-schema': import("zod").ZodOptional<import("zod").ZodString>;
815
+ icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
816
+ style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
817
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
818
+ }, "strip", import("zod").ZodTypeAny, {
819
+ name: string;
820
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
821
+ }, {
822
+ name: string;
823
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
824
+ }>]>>;
825
+ tag: import("zod").ZodOptional<import("zod").ZodString>;
826
+ url: import("zod").ZodOptional<import("zod").ZodString>;
827
+ hideApiMarker: import("zod").ZodOptional<import("zod").ZodBoolean>;
828
+ noindex: import("zod").ZodOptional<import("zod").ZodBoolean>;
829
+ isPublic: import("zod").ZodOptional<import("zod").ZodBoolean>;
830
+ }, "strip", import("zod").ZodTypeAny, {
831
+ href: string;
832
+ title: string;
833
+ sidebarTitle?: string | undefined;
834
+ description?: string | undefined;
835
+ api?: string | undefined;
836
+ openapi?: string | undefined;
837
+ contentType?: string | undefined;
838
+ authMethod?: string | undefined;
839
+ auth?: string | undefined;
840
+ version?: string | undefined;
841
+ mode?: string | undefined;
842
+ hideFooterPagination?: boolean | undefined;
843
+ authors?: unknown;
844
+ lastUpdatedDate?: string | undefined;
845
+ createdDate?: string | undefined;
846
+ 'openapi-schema'?: string | undefined;
847
+ icon?: string | {
848
+ name: string;
849
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
850
+ } | undefined;
851
+ tag?: string | undefined;
852
+ url?: string | undefined;
853
+ hideApiMarker?: boolean | undefined;
854
+ noindex?: boolean | undefined;
855
+ isPublic?: boolean | undefined;
856
+ }, {
857
+ href: string;
858
+ title: string;
859
+ sidebarTitle?: string | undefined;
860
+ description?: string | undefined;
861
+ api?: string | undefined;
862
+ openapi?: string | undefined;
863
+ contentType?: string | undefined;
864
+ authMethod?: string | undefined;
865
+ auth?: string | undefined;
866
+ version?: string | undefined;
867
+ mode?: string | undefined;
868
+ hideFooterPagination?: boolean | undefined;
869
+ authors?: unknown;
870
+ lastUpdatedDate?: string | undefined;
871
+ createdDate?: string | undefined;
872
+ 'openapi-schema'?: string | undefined;
873
+ icon?: string | {
874
+ name: string;
875
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
876
+ } | undefined;
877
+ tag?: string | undefined;
878
+ url?: string | undefined;
879
+ hideApiMarker?: boolean | undefined;
880
+ noindex?: boolean | undefined;
881
+ isPublic?: boolean | undefined;
882
+ }>>;
883
+ }, "strip", import("zod").ZodTypeAny, {
884
+ group: string;
885
+ icon?: string | {
886
+ name: string;
887
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
888
+ } | undefined;
889
+ hidden?: boolean | undefined;
890
+ root?: string | {
891
+ href: string;
892
+ title: string;
893
+ sidebarTitle?: string | undefined;
894
+ description?: string | undefined;
895
+ api?: string | undefined;
896
+ openapi?: string | undefined;
897
+ contentType?: string | undefined;
898
+ authMethod?: string | undefined;
899
+ auth?: string | undefined;
900
+ version?: string | undefined;
901
+ mode?: string | undefined;
902
+ hideFooterPagination?: boolean | undefined;
903
+ authors?: unknown;
904
+ lastUpdatedDate?: string | undefined;
905
+ createdDate?: string | undefined;
906
+ 'openapi-schema'?: string | undefined;
907
+ icon?: string | {
908
+ name: string;
909
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
910
+ } | undefined;
911
+ tag?: string | undefined;
912
+ url?: string | undefined;
913
+ hideApiMarker?: boolean | undefined;
914
+ noindex?: boolean | undefined;
915
+ isPublic?: boolean | undefined;
916
+ } | undefined;
917
+ }, {
918
+ group: string;
919
+ icon?: string | {
920
+ name: string;
921
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
922
+ } | undefined;
923
+ hidden?: boolean | undefined;
924
+ root?: string | {
925
+ href: string;
926
+ title: string;
927
+ sidebarTitle?: string | undefined;
928
+ description?: string | undefined;
929
+ api?: string | undefined;
930
+ openapi?: string | undefined;
931
+ contentType?: string | undefined;
932
+ authMethod?: string | undefined;
933
+ auth?: string | undefined;
934
+ version?: string | undefined;
935
+ mode?: string | undefined;
936
+ hideFooterPagination?: boolean | undefined;
937
+ authors?: unknown;
938
+ lastUpdatedDate?: string | undefined;
939
+ createdDate?: string | undefined;
940
+ 'openapi-schema'?: string | undefined;
941
+ icon?: string | {
942
+ name: string;
943
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
944
+ } | undefined;
945
+ tag?: string | undefined;
946
+ url?: string | undefined;
947
+ hideApiMarker?: boolean | undefined;
948
+ noindex?: boolean | undefined;
949
+ isPublic?: boolean | undefined;
950
+ } | undefined;
951
+ }>, import("zod").ZodUnion<[import("zod").ZodObject<{
952
+ openapi: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">]>;
953
+ }, "strip", import("zod").ZodTypeAny, {
954
+ openapi: (string | string[]) & (string | string[] | undefined);
955
+ }, {
956
+ openapi: (string | string[]) & (string | string[] | undefined);
957
+ }>, import("zod").ZodLazy<import("zod").ZodObject<{
958
+ pages: import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">;
959
+ }, "strip", import("zod").ZodTypeAny, {
960
+ pages: any[];
961
+ }, {
962
+ pages: any[];
963
+ }>>]>>, "many">;
964
+ }, "strip", import("zod").ZodTypeAny, {
965
+ groups: ({
966
+ group: string;
967
+ icon?: string | {
968
+ name: string;
969
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
970
+ } | undefined;
971
+ hidden?: boolean | undefined;
972
+ root?: string | {
973
+ href: string;
974
+ title: string;
975
+ sidebarTitle?: string | undefined;
976
+ description?: string | undefined;
977
+ api?: string | undefined;
978
+ openapi?: string | undefined;
979
+ contentType?: string | undefined;
980
+ authMethod?: string | undefined;
981
+ auth?: string | undefined;
982
+ version?: string | undefined;
983
+ mode?: string | undefined;
984
+ hideFooterPagination?: boolean | undefined;
985
+ authors?: unknown;
986
+ lastUpdatedDate?: string | undefined;
987
+ createdDate?: string | undefined;
988
+ 'openapi-schema'?: string | undefined;
989
+ icon?: string | {
990
+ name: string;
991
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
992
+ } | undefined;
993
+ tag?: string | undefined;
994
+ url?: string | undefined;
995
+ hideApiMarker?: boolean | undefined;
996
+ noindex?: boolean | undefined;
997
+ isPublic?: boolean | undefined;
998
+ } | undefined;
999
+ } & ({
1000
+ openapi: (string | string[]) & (string | string[] | undefined);
1001
+ } | {
1002
+ pages: any[];
1003
+ }))[];
1004
+ }, {
1005
+ groups: ({
1006
+ group: string;
1007
+ icon?: string | {
1008
+ name: string;
1009
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1010
+ } | undefined;
1011
+ hidden?: boolean | undefined;
1012
+ root?: string | {
1013
+ href: string;
1014
+ title: string;
1015
+ sidebarTitle?: string | undefined;
1016
+ description?: string | undefined;
1017
+ api?: string | undefined;
1018
+ openapi?: string | undefined;
1019
+ contentType?: string | undefined;
1020
+ authMethod?: string | undefined;
1021
+ auth?: string | undefined;
1022
+ version?: string | undefined;
1023
+ mode?: string | undefined;
1024
+ hideFooterPagination?: boolean | undefined;
1025
+ authors?: unknown;
1026
+ lastUpdatedDate?: string | undefined;
1027
+ createdDate?: string | undefined;
1028
+ 'openapi-schema'?: string | undefined;
1029
+ icon?: string | {
1030
+ name: string;
1031
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1032
+ } | undefined;
1033
+ tag?: string | undefined;
1034
+ url?: string | undefined;
1035
+ hideApiMarker?: boolean | undefined;
1036
+ noindex?: boolean | undefined;
1037
+ isPublic?: boolean | undefined;
1038
+ } | undefined;
1039
+ } & ({
1040
+ openapi: (string | string[]) & (string | string[] | undefined);
1041
+ } | {
1042
+ pages: any[];
1043
+ }))[];
1044
+ }>, import("zod").ZodObject<{
1045
+ pages: import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">;
1046
+ }, "strip", import("zod").ZodTypeAny, {
1047
+ pages: any[];
1048
+ }, {
1049
+ pages: any[];
1050
+ }>]>>;
849
1051
  footer: import("zod").ZodOptional<import("zod").ZodObject<{
850
1052
  socials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter"]>, import("zod").ZodString>>;
851
1053
  links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -901,10 +1103,10 @@ export declare const standardConfigSchema: {
901
1103
  }>>;
902
1104
  seo: import("zod").ZodOptional<import("zod").ZodObject<{
903
1105
  metatags: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>>;
904
- indexing: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodEnum<["navigable", "all"]>>>;
1106
+ indexing: import("zod").ZodOptional<import("zod").ZodEnum<["navigable", "all"]>>;
905
1107
  }, "strip", import("zod").ZodTypeAny, {
906
- indexing: "all" | "navigable";
907
1108
  metatags?: Record<string, string> | undefined;
1109
+ indexing?: "all" | "navigable" | undefined;
908
1110
  }, {
909
1111
  metatags?: Record<string, string> | undefined;
910
1112
  indexing?: "all" | "navigable" | undefined;
@@ -1015,20 +1217,20 @@ export declare const standardConfigSchema: {
1015
1217
  } | undefined;
1016
1218
  }>]>>;
1017
1219
  icons: import("zod").ZodOptional<import("zod").ZodObject<{
1018
- library: import("zod").ZodDefault<import("zod").ZodEnum<["fontawesome"]>>;
1220
+ library: import("zod").ZodEnum<["fontawesome"]>;
1019
1221
  }, "strip", import("zod").ZodTypeAny, {
1020
1222
  library: "fontawesome";
1021
1223
  }, {
1022
- library?: "fontawesome" | undefined;
1224
+ library: "fontawesome";
1023
1225
  }>>;
1024
1226
  styling: import("zod").ZodOptional<import("zod").ZodObject<{
1025
- rounded: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodEnum<["regular", "sharp"]>>>;
1026
- eyebrows: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodEnum<["section", "breadcrumbs"]>>>;
1027
- codeblocks: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodEnum<["system", "dark"]>>>;
1227
+ rounded: import("zod").ZodOptional<import("zod").ZodEnum<["regular", "sharp"]>>;
1228
+ eyebrows: import("zod").ZodOptional<import("zod").ZodEnum<["section", "breadcrumbs"]>>;
1229
+ codeblocks: import("zod").ZodOptional<import("zod").ZodEnum<["system", "dark"]>>;
1028
1230
  }, "strip", import("zod").ZodTypeAny, {
1029
- rounded: "regular" | "sharp";
1030
- eyebrows: "section" | "breadcrumbs";
1031
- codeblocks: "dark" | "system";
1231
+ rounded?: "regular" | "sharp" | undefined;
1232
+ eyebrows?: "section" | "breadcrumbs" | undefined;
1233
+ codeblocks?: "dark" | "system" | undefined;
1032
1234
  }, {
1033
1235
  rounded?: "regular" | "sharp" | undefined;
1034
1236
  eyebrows?: "section" | "breadcrumbs" | undefined;