@mintlify/validation 0.1.249 → 0.1.251

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 (24) hide show
  1. package/dist/mint-config/schemas/v2/index.d.ts +945 -410
  2. package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +232 -19
  3. package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +6 -2
  4. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +160 -19
  5. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +6 -2
  6. package/dist/mint-config/schemas/v2/properties/navigation/global.d.ts +0 -25
  7. package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +364 -110
  8. package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +88 -19
  9. package/dist/mint-config/schemas/v2/properties/navigation/languages.js +6 -2
  10. package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +160 -19
  11. package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +6 -2
  12. package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +88 -19
  13. package/dist/mint-config/schemas/v2/properties/navigation/version.js +6 -2
  14. package/dist/mint-config/schemas/v2/themes/linden.d.ts +182 -75
  15. package/dist/mint-config/schemas/v2/themes/maple.d.ts +182 -75
  16. package/dist/mint-config/schemas/v2/themes/mint.d.ts +182 -75
  17. package/dist/mint-config/schemas/v2/themes/palm.d.ts +182 -75
  18. package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +182 -55
  19. package/dist/mint-config/schemas/v2/themes/willow.d.ts +182 -75
  20. package/dist/mint-config/upgrades/updateNavigationToDocsConfig.d.ts +2 -2
  21. package/dist/mint-config/upgrades/updateNavigationToDocsConfig.js +9 -7
  22. package/dist/mint-config/upgrades/upgradeToDocsConfig.d.ts +2 -2
  23. package/dist/tsconfig.build.tsbuildinfo +1 -1
  24. package/package.json +3 -3
@@ -212,15 +212,12 @@ export declare const standardConfigSchema: {
212
212
  languages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodObject<{
213
213
  language: import("zod").ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
214
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">]>>;
216
215
  }, "strip", import("zod").ZodTypeAny, {
217
216
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
218
217
  hidden?: boolean | undefined;
219
- openapi?: string | string[] | undefined;
220
218
  }, {
221
219
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
222
220
  hidden?: boolean | undefined;
223
- openapi?: string | string[] | undefined;
224
221
  }>, import("zod").ZodObject<{
225
222
  href: import("zod").ZodString;
226
223
  }, "strip", import("zod").ZodTypeAny, {
@@ -231,15 +228,12 @@ export declare const standardConfigSchema: {
231
228
  versions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodObject<{
232
229
  version: import("zod").ZodString;
233
230
  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">]>>;
235
231
  }, "strip", import("zod").ZodTypeAny, {
236
232
  version: string;
237
233
  hidden?: boolean | undefined;
238
- openapi?: string | string[] | undefined;
239
234
  }, {
240
235
  version: string;
241
236
  hidden?: boolean | undefined;
242
- openapi?: string | string[] | undefined;
243
237
  }>, import("zod").ZodObject<{
244
238
  href: import("zod").ZodString;
245
239
  }, "strip", import("zod").ZodTypeAny, {
@@ -260,7 +254,6 @@ export declare const standardConfigSchema: {
260
254
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
261
255
  }>]>>;
262
256
  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">]>>;
264
257
  }, "strip", import("zod").ZodTypeAny, {
265
258
  tab: string;
266
259
  icon?: string | {
@@ -268,7 +261,6 @@ export declare const standardConfigSchema: {
268
261
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
269
262
  } | undefined;
270
263
  hidden?: boolean | undefined;
271
- openapi?: string | string[] | undefined;
272
264
  }, {
273
265
  tab: string;
274
266
  icon?: string | {
@@ -276,7 +268,6 @@ export declare const standardConfigSchema: {
276
268
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
277
269
  } | undefined;
278
270
  hidden?: boolean | undefined;
279
- openapi?: string | string[] | undefined;
280
271
  }>, import("zod").ZodObject<{
281
272
  href: import("zod").ZodString;
282
273
  }, "strip", import("zod").ZodTypeAny, {
@@ -297,7 +288,6 @@ export declare const standardConfigSchema: {
297
288
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
298
289
  }>]>>;
299
290
  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">]>>;
301
291
  }, "strip", import("zod").ZodTypeAny, {
302
292
  dropdown: string;
303
293
  icon?: string | {
@@ -305,7 +295,6 @@ export declare const standardConfigSchema: {
305
295
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
306
296
  } | undefined;
307
297
  hidden?: boolean | undefined;
308
- openapi?: string | string[] | undefined;
309
298
  }, {
310
299
  dropdown: string;
311
300
  icon?: string | {
@@ -313,7 +302,6 @@ export declare const standardConfigSchema: {
313
302
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
314
303
  } | undefined;
315
304
  hidden?: boolean | undefined;
316
- openapi?: string | string[] | undefined;
317
305
  }>, import("zod").ZodObject<{
318
306
  href: import("zod").ZodString;
319
307
  }, "strip", import("zod").ZodTypeAny, {
@@ -344,7 +332,6 @@ export declare const standardConfigSchema: {
344
332
  dark?: string | undefined;
345
333
  }>>;
346
334
  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">]>>;
348
335
  }, "strip", import("zod").ZodTypeAny, {
349
336
  anchor: string;
350
337
  icon?: string | {
@@ -356,7 +343,6 @@ export declare const standardConfigSchema: {
356
343
  dark?: string | undefined;
357
344
  } | undefined;
358
345
  hidden?: boolean | undefined;
359
- openapi?: string | string[] | undefined;
360
346
  }, {
361
347
  anchor: string;
362
348
  icon?: string | {
@@ -368,7 +354,6 @@ export declare const standardConfigSchema: {
368
354
  dark?: string | undefined;
369
355
  } | undefined;
370
356
  hidden?: boolean | undefined;
371
- openapi?: string | string[] | undefined;
372
357
  }>, import("zod").ZodObject<{
373
358
  href: import("zod").ZodString;
374
359
  }, "strip", import("zod").ZodTypeAny, {
@@ -380,14 +365,12 @@ export declare const standardConfigSchema: {
380
365
  languages?: ({
381
366
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
382
367
  hidden?: boolean | undefined;
383
- openapi?: string | string[] | undefined;
384
368
  } & {
385
369
  href: string;
386
370
  })[] | undefined;
387
371
  versions?: ({
388
372
  version: string;
389
373
  hidden?: boolean | undefined;
390
- openapi?: string | string[] | undefined;
391
374
  } & {
392
375
  href: string;
393
376
  })[] | undefined;
@@ -398,7 +381,6 @@ export declare const standardConfigSchema: {
398
381
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
399
382
  } | undefined;
400
383
  hidden?: boolean | undefined;
401
- openapi?: string | string[] | undefined;
402
384
  } & {
403
385
  href: string;
404
386
  })[] | undefined;
@@ -409,7 +391,6 @@ export declare const standardConfigSchema: {
409
391
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
410
392
  } | undefined;
411
393
  hidden?: boolean | undefined;
412
- openapi?: string | string[] | undefined;
413
394
  } & {
414
395
  href: string;
415
396
  })[] | undefined;
@@ -424,7 +405,6 @@ export declare const standardConfigSchema: {
424
405
  dark?: string | undefined;
425
406
  } | undefined;
426
407
  hidden?: boolean | undefined;
427
- openapi?: string | string[] | undefined;
428
408
  } & {
429
409
  href: string;
430
410
  })[] | undefined;
@@ -432,14 +412,12 @@ export declare const standardConfigSchema: {
432
412
  languages?: ({
433
413
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
434
414
  hidden?: boolean | undefined;
435
- openapi?: string | string[] | undefined;
436
415
  } & {
437
416
  href: string;
438
417
  })[] | undefined;
439
418
  versions?: ({
440
419
  version: string;
441
420
  hidden?: boolean | undefined;
442
- openapi?: string | string[] | undefined;
443
421
  } & {
444
422
  href: string;
445
423
  })[] | undefined;
@@ -450,7 +428,6 @@ export declare const standardConfigSchema: {
450
428
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
451
429
  } | undefined;
452
430
  hidden?: boolean | undefined;
453
- openapi?: string | string[] | undefined;
454
431
  } & {
455
432
  href: string;
456
433
  })[] | undefined;
@@ -461,7 +438,6 @@ export declare const standardConfigSchema: {
461
438
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
462
439
  } | undefined;
463
440
  hidden?: boolean | undefined;
464
- openapi?: string | string[] | undefined;
465
441
  } & {
466
442
  href: string;
467
443
  })[] | undefined;
@@ -476,7 +452,6 @@ export declare const standardConfigSchema: {
476
452
  dark?: string | undefined;
477
453
  } | undefined;
478
454
  hidden?: boolean | undefined;
479
- openapi?: string | string[] | undefined;
480
455
  } & {
481
456
  href: string;
482
457
  })[] | undefined;
@@ -486,14 +461,12 @@ export declare const standardConfigSchema: {
486
461
  languages?: ({
487
462
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
488
463
  hidden?: boolean | undefined;
489
- openapi?: string | string[] | undefined;
490
464
  } & {
491
465
  href: string;
492
466
  })[] | undefined;
493
467
  versions?: ({
494
468
  version: string;
495
469
  hidden?: boolean | undefined;
496
- openapi?: string | string[] | undefined;
497
470
  } & {
498
471
  href: string;
499
472
  })[] | undefined;
@@ -504,7 +477,6 @@ export declare const standardConfigSchema: {
504
477
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
505
478
  } | undefined;
506
479
  hidden?: boolean | undefined;
507
- openapi?: string | string[] | undefined;
508
480
  } & {
509
481
  href: string;
510
482
  })[] | undefined;
@@ -515,7 +487,6 @@ export declare const standardConfigSchema: {
515
487
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
516
488
  } | undefined;
517
489
  hidden?: boolean | undefined;
518
- openapi?: string | string[] | undefined;
519
490
  } & {
520
491
  href: string;
521
492
  })[] | undefined;
@@ -530,7 +501,6 @@ export declare const standardConfigSchema: {
530
501
  dark?: string | undefined;
531
502
  } | undefined;
532
503
  hidden?: boolean | undefined;
533
- openapi?: string | string[] | undefined;
534
504
  } & {
535
505
  href: string;
536
506
  })[] | undefined;
@@ -540,14 +510,12 @@ export declare const standardConfigSchema: {
540
510
  languages?: ({
541
511
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
542
512
  hidden?: boolean | undefined;
543
- openapi?: string | string[] | undefined;
544
513
  } & {
545
514
  href: string;
546
515
  })[] | undefined;
547
516
  versions?: ({
548
517
  version: string;
549
518
  hidden?: boolean | undefined;
550
- openapi?: string | string[] | undefined;
551
519
  } & {
552
520
  href: string;
553
521
  })[] | undefined;
@@ -558,7 +526,6 @@ export declare const standardConfigSchema: {
558
526
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
559
527
  } | undefined;
560
528
  hidden?: boolean | undefined;
561
- openapi?: string | string[] | undefined;
562
529
  } & {
563
530
  href: string;
564
531
  })[] | undefined;
@@ -569,7 +536,6 @@ export declare const standardConfigSchema: {
569
536
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
570
537
  } | undefined;
571
538
  hidden?: boolean | undefined;
572
- openapi?: string | string[] | undefined;
573
539
  } & {
574
540
  href: string;
575
541
  })[] | undefined;
@@ -584,7 +550,6 @@ export declare const standardConfigSchema: {
584
550
  dark?: string | undefined;
585
551
  } | undefined;
586
552
  hidden?: boolean | undefined;
587
- openapi?: string | string[] | undefined;
588
553
  } & {
589
554
  href: string;
590
555
  })[] | undefined;
@@ -593,22 +558,40 @@ export declare const standardConfigSchema: {
593
558
  languages: import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodObject<{
594
559
  language: import("zod").ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
595
560
  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
561
  }, "strip", import("zod").ZodTypeAny, {
598
562
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
599
563
  hidden?: boolean | undefined;
600
- openapi?: string | string[] | undefined;
601
564
  }, {
602
565
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
603
566
  hidden?: boolean | undefined;
604
- openapi?: string | string[] | undefined;
605
567
  }>, import("zod").ZodUnion<[import("zod").ZodObject<{
606
568
  href: import("zod").ZodString;
607
569
  }, "strip", import("zod").ZodTypeAny, {
608
570
  href: string;
609
571
  }, {
610
572
  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">;
573
+ }>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, ...import("zod").ZodType<any, import("zod").ZodTypeDef, any>[]]>> | import("zod").ZodIntersection<import("zod").ZodIntersection<import("zod").ZodObject<{
574
+ language: import("zod").ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
575
+ hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
576
+ }, "strip", import("zod").ZodTypeAny, {
577
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
578
+ hidden?: boolean | undefined;
579
+ }, {
580
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
581
+ hidden?: boolean | undefined;
582
+ }>, import("zod").ZodUnion<[import("zod").ZodObject<{
583
+ href: import("zod").ZodString;
584
+ }, "strip", import("zod").ZodTypeAny, {
585
+ href: string;
586
+ }, {
587
+ href: string;
588
+ }>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, ...import("zod").ZodType<any, import("zod").ZodTypeDef, any>[]]>>, import("zod").ZodObject<{
589
+ 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">]>>;
590
+ }, "strip", import("zod").ZodTypeAny, {
591
+ openapi?: string | string[] | undefined;
592
+ }, {
593
+ openapi?: string | string[] | undefined;
594
+ }>>, "many">;
612
595
  }, "strip", import("zod").ZodTypeAny, {
613
596
  languages: any[];
614
597
  }, {
@@ -617,22 +600,40 @@ export declare const standardConfigSchema: {
617
600
  versions: import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodObject<{
618
601
  version: import("zod").ZodString;
619
602
  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
603
  }, "strip", import("zod").ZodTypeAny, {
622
604
  version: string;
623
605
  hidden?: boolean | undefined;
624
- openapi?: string | string[] | undefined;
625
606
  }, {
626
607
  version: string;
627
608
  hidden?: boolean | undefined;
628
- openapi?: string | string[] | undefined;
629
609
  }>, import("zod").ZodUnion<[import("zod").ZodObject<{
630
610
  href: import("zod").ZodString;
631
611
  }, "strip", import("zod").ZodTypeAny, {
632
612
  href: string;
633
613
  }, {
634
614
  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">;
615
+ }>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, ...import("zod").ZodType<any, import("zod").ZodTypeDef, any>[]]>> | import("zod").ZodIntersection<import("zod").ZodIntersection<import("zod").ZodObject<{
616
+ version: import("zod").ZodString;
617
+ hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
618
+ }, "strip", import("zod").ZodTypeAny, {
619
+ version: string;
620
+ hidden?: boolean | undefined;
621
+ }, {
622
+ version: string;
623
+ hidden?: boolean | undefined;
624
+ }>, import("zod").ZodUnion<[import("zod").ZodObject<{
625
+ href: import("zod").ZodString;
626
+ }, "strip", import("zod").ZodTypeAny, {
627
+ href: string;
628
+ }, {
629
+ href: string;
630
+ }>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, ...import("zod").ZodType<any, import("zod").ZodTypeDef, any>[]]>>, import("zod").ZodObject<{
631
+ 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">]>>;
632
+ }, "strip", import("zod").ZodTypeAny, {
633
+ openapi?: string | string[] | undefined;
634
+ }, {
635
+ openapi?: string | string[] | undefined;
636
+ }>>, "many">;
636
637
  }, "strip", import("zod").ZodTypeAny, {
637
638
  versions: any[];
638
639
  }, {
@@ -651,7 +652,6 @@ export declare const standardConfigSchema: {
651
652
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
652
653
  }>]>>;
653
654
  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
655
  }, "strip", import("zod").ZodTypeAny, {
656
656
  tab: string;
657
657
  icon?: string | {
@@ -659,7 +659,6 @@ export declare const standardConfigSchema: {
659
659
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
660
660
  } | undefined;
661
661
  hidden?: boolean | undefined;
662
- openapi?: string | string[] | undefined;
663
662
  }, {
664
663
  tab: string;
665
664
  icon?: string | {
@@ -667,14 +666,52 @@ export declare const standardConfigSchema: {
667
666
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
668
667
  } | undefined;
669
668
  hidden?: boolean | undefined;
670
- openapi?: string | string[] | undefined;
671
669
  }>, import("zod").ZodUnion<[import("zod").ZodObject<{
672
670
  href: import("zod").ZodString;
673
671
  }, "strip", import("zod").ZodTypeAny, {
674
672
  href: string;
675
673
  }, {
676
674
  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">;
675
+ }>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, ...import("zod").ZodType<any, import("zod").ZodTypeDef, any>[]]>> | import("zod").ZodIntersection<import("zod").ZodIntersection<import("zod").ZodObject<{
676
+ tab: import("zod").ZodString;
677
+ icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
678
+ style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
679
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
680
+ }, "strip", import("zod").ZodTypeAny, {
681
+ name: string;
682
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
683
+ }, {
684
+ name: string;
685
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
686
+ }>]>>;
687
+ hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
688
+ }, "strip", import("zod").ZodTypeAny, {
689
+ tab: string;
690
+ icon?: string | {
691
+ name: string;
692
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
693
+ } | undefined;
694
+ hidden?: boolean | undefined;
695
+ }, {
696
+ tab: string;
697
+ icon?: string | {
698
+ name: string;
699
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
700
+ } | undefined;
701
+ hidden?: boolean | undefined;
702
+ }>, import("zod").ZodUnion<[import("zod").ZodObject<{
703
+ href: import("zod").ZodString;
704
+ }, "strip", import("zod").ZodTypeAny, {
705
+ href: string;
706
+ }, {
707
+ href: string;
708
+ }>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, ...import("zod").ZodType<any, import("zod").ZodTypeDef, any>[]]>>, import("zod").ZodObject<{
709
+ 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">]>>;
710
+ }, "strip", import("zod").ZodTypeAny, {
711
+ openapi?: string | string[] | undefined;
712
+ }, {
713
+ openapi?: string | string[] | undefined;
714
+ }>>, "many">;
678
715
  }, "strip", import("zod").ZodTypeAny, {
679
716
  tabs: any[];
680
717
  }, {
@@ -693,7 +730,6 @@ export declare const standardConfigSchema: {
693
730
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
694
731
  }>]>>;
695
732
  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
733
  }, "strip", import("zod").ZodTypeAny, {
698
734
  dropdown: string;
699
735
  icon?: string | {
@@ -701,7 +737,6 @@ export declare const standardConfigSchema: {
701
737
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
702
738
  } | undefined;
703
739
  hidden?: boolean | undefined;
704
- openapi?: string | string[] | undefined;
705
740
  }, {
706
741
  dropdown: string;
707
742
  icon?: string | {
@@ -709,14 +744,52 @@ export declare const standardConfigSchema: {
709
744
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
710
745
  } | undefined;
711
746
  hidden?: boolean | undefined;
712
- openapi?: string | string[] | undefined;
713
747
  }>, import("zod").ZodUnion<[import("zod").ZodObject<{
714
748
  href: import("zod").ZodString;
715
749
  }, "strip", import("zod").ZodTypeAny, {
716
750
  href: string;
717
751
  }, {
718
752
  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">;
753
+ }>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, ...import("zod").ZodType<any, import("zod").ZodTypeDef, any>[]]>> | import("zod").ZodIntersection<import("zod").ZodIntersection<import("zod").ZodObject<{
754
+ dropdown: import("zod").ZodString;
755
+ icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
756
+ style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
757
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
758
+ }, "strip", import("zod").ZodTypeAny, {
759
+ name: string;
760
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
761
+ }, {
762
+ name: string;
763
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
764
+ }>]>>;
765
+ hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
766
+ }, "strip", import("zod").ZodTypeAny, {
767
+ dropdown: string;
768
+ icon?: string | {
769
+ name: string;
770
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
771
+ } | undefined;
772
+ hidden?: boolean | undefined;
773
+ }, {
774
+ dropdown: string;
775
+ icon?: string | {
776
+ name: string;
777
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
778
+ } | undefined;
779
+ hidden?: boolean | undefined;
780
+ }>, import("zod").ZodUnion<[import("zod").ZodObject<{
781
+ href: import("zod").ZodString;
782
+ }, "strip", import("zod").ZodTypeAny, {
783
+ href: string;
784
+ }, {
785
+ href: string;
786
+ }>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, ...import("zod").ZodType<any, import("zod").ZodTypeDef, any>[]]>>, import("zod").ZodObject<{
787
+ 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">]>>;
788
+ }, "strip", import("zod").ZodTypeAny, {
789
+ openapi?: string | string[] | undefined;
790
+ }, {
791
+ openapi?: string | string[] | undefined;
792
+ }>>, "many">;
720
793
  }, "strip", import("zod").ZodTypeAny, {
721
794
  dropdowns: any[];
722
795
  }, {
@@ -745,7 +818,6 @@ export declare const standardConfigSchema: {
745
818
  dark?: string | undefined;
746
819
  }>>;
747
820
  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
821
  }, "strip", import("zod").ZodTypeAny, {
750
822
  anchor: string;
751
823
  icon?: string | {
@@ -757,7 +829,6 @@ export declare const standardConfigSchema: {
757
829
  dark?: string | undefined;
758
830
  } | undefined;
759
831
  hidden?: boolean | undefined;
760
- openapi?: string | string[] | undefined;
761
832
  }, {
762
833
  anchor: string;
763
834
  icon?: string | {
@@ -769,14 +840,70 @@ export declare const standardConfigSchema: {
769
840
  dark?: string | undefined;
770
841
  } | undefined;
771
842
  hidden?: boolean | undefined;
772
- openapi?: string | string[] | undefined;
773
843
  }>, import("zod").ZodUnion<[import("zod").ZodObject<{
774
844
  href: import("zod").ZodString;
775
845
  }, "strip", import("zod").ZodTypeAny, {
776
846
  href: string;
777
847
  }, {
778
848
  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">;
849
+ }>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, ...import("zod").ZodType<any, import("zod").ZodTypeDef, any>[]]>> | import("zod").ZodIntersection<import("zod").ZodIntersection<import("zod").ZodObject<{
850
+ anchor: import("zod").ZodString;
851
+ icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
852
+ style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
853
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
854
+ }, "strip", import("zod").ZodTypeAny, {
855
+ name: string;
856
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
857
+ }, {
858
+ name: string;
859
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
860
+ }>]>>;
861
+ color: import("zod").ZodOptional<import("zod").ZodObject<{
862
+ light: import("zod").ZodOptional<import("zod").ZodString>;
863
+ dark: import("zod").ZodOptional<import("zod").ZodString>;
864
+ }, "strict", import("zod").ZodTypeAny, {
865
+ light?: string | undefined;
866
+ dark?: string | undefined;
867
+ }, {
868
+ light?: string | undefined;
869
+ dark?: string | undefined;
870
+ }>>;
871
+ hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
872
+ }, "strip", import("zod").ZodTypeAny, {
873
+ anchor: string;
874
+ icon?: string | {
875
+ name: string;
876
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
877
+ } | undefined;
878
+ color?: {
879
+ light?: string | undefined;
880
+ dark?: string | undefined;
881
+ } | undefined;
882
+ hidden?: boolean | undefined;
883
+ }, {
884
+ anchor: 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
+ color?: {
890
+ light?: string | undefined;
891
+ dark?: string | undefined;
892
+ } | undefined;
893
+ hidden?: boolean | undefined;
894
+ }>, import("zod").ZodUnion<[import("zod").ZodObject<{
895
+ href: import("zod").ZodString;
896
+ }, "strip", import("zod").ZodTypeAny, {
897
+ href: string;
898
+ }, {
899
+ href: string;
900
+ }>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, import("zod").ZodType<any, import("zod").ZodTypeDef, any>, ...import("zod").ZodType<any, import("zod").ZodTypeDef, any>[]]>>, import("zod").ZodObject<{
901
+ 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">]>>;
902
+ }, "strip", import("zod").ZodTypeAny, {
903
+ openapi?: string | string[] | undefined;
904
+ }, {
905
+ openapi?: string | string[] | undefined;
906
+ }>>, "many">;
780
907
  }, "strip", import("zod").ZodTypeAny, {
781
908
  anchors: any[];
782
909
  }, {