@mintlify/validation 0.1.248 → 0.1.250

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 (23) 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/upgradeToDocsConfig.d.ts +2 -2
  22. package/dist/tsconfig.build.tsbuildinfo +1 -1
  23. package/package.json +3 -3
@@ -213,15 +213,12 @@ export declare const mintConfigSchema: z.ZodObject<{
213
213
  languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
214
214
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
215
215
  hidden: z.ZodOptional<z.ZodBoolean>;
216
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
217
216
  }, "strip", z.ZodTypeAny, {
218
217
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
219
218
  hidden?: boolean | undefined;
220
- openapi?: string | string[] | undefined;
221
219
  }, {
222
220
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
223
221
  hidden?: boolean | undefined;
224
- openapi?: string | string[] | undefined;
225
222
  }>, z.ZodObject<{
226
223
  href: z.ZodString;
227
224
  }, "strip", z.ZodTypeAny, {
@@ -232,15 +229,12 @@ export declare const mintConfigSchema: z.ZodObject<{
232
229
  versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
233
230
  version: z.ZodString;
234
231
  hidden: z.ZodOptional<z.ZodBoolean>;
235
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
236
232
  }, "strip", z.ZodTypeAny, {
237
233
  version: string;
238
234
  hidden?: boolean | undefined;
239
- openapi?: string | string[] | undefined;
240
235
  }, {
241
236
  version: string;
242
237
  hidden?: boolean | undefined;
243
- openapi?: string | string[] | undefined;
244
238
  }>, z.ZodObject<{
245
239
  href: z.ZodString;
246
240
  }, "strip", z.ZodTypeAny, {
@@ -261,7 +255,6 @@ export declare const mintConfigSchema: z.ZodObject<{
261
255
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
262
256
  }>]>>;
263
257
  hidden: z.ZodOptional<z.ZodBoolean>;
264
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
265
258
  }, "strip", z.ZodTypeAny, {
266
259
  tab: string;
267
260
  icon?: string | {
@@ -269,7 +262,6 @@ export declare const mintConfigSchema: z.ZodObject<{
269
262
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
270
263
  } | undefined;
271
264
  hidden?: boolean | undefined;
272
- openapi?: string | string[] | undefined;
273
265
  }, {
274
266
  tab: string;
275
267
  icon?: string | {
@@ -277,7 +269,6 @@ export declare const mintConfigSchema: z.ZodObject<{
277
269
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
278
270
  } | undefined;
279
271
  hidden?: boolean | undefined;
280
- openapi?: string | string[] | undefined;
281
272
  }>, z.ZodObject<{
282
273
  href: z.ZodString;
283
274
  }, "strip", z.ZodTypeAny, {
@@ -298,7 +289,6 @@ export declare const mintConfigSchema: z.ZodObject<{
298
289
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
299
290
  }>]>>;
300
291
  hidden: z.ZodOptional<z.ZodBoolean>;
301
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
302
292
  }, "strip", z.ZodTypeAny, {
303
293
  dropdown: string;
304
294
  icon?: string | {
@@ -306,7 +296,6 @@ export declare const mintConfigSchema: z.ZodObject<{
306
296
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
307
297
  } | undefined;
308
298
  hidden?: boolean | undefined;
309
- openapi?: string | string[] | undefined;
310
299
  }, {
311
300
  dropdown: string;
312
301
  icon?: string | {
@@ -314,7 +303,6 @@ export declare const mintConfigSchema: z.ZodObject<{
314
303
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
315
304
  } | undefined;
316
305
  hidden?: boolean | undefined;
317
- openapi?: string | string[] | undefined;
318
306
  }>, z.ZodObject<{
319
307
  href: z.ZodString;
320
308
  }, "strip", z.ZodTypeAny, {
@@ -345,7 +333,6 @@ export declare const mintConfigSchema: z.ZodObject<{
345
333
  dark?: string | undefined;
346
334
  }>>;
347
335
  hidden: z.ZodOptional<z.ZodBoolean>;
348
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
349
336
  }, "strip", z.ZodTypeAny, {
350
337
  anchor: string;
351
338
  icon?: string | {
@@ -357,7 +344,6 @@ export declare const mintConfigSchema: z.ZodObject<{
357
344
  dark?: string | undefined;
358
345
  } | undefined;
359
346
  hidden?: boolean | undefined;
360
- openapi?: string | string[] | undefined;
361
347
  }, {
362
348
  anchor: string;
363
349
  icon?: string | {
@@ -369,7 +355,6 @@ export declare const mintConfigSchema: z.ZodObject<{
369
355
  dark?: string | undefined;
370
356
  } | undefined;
371
357
  hidden?: boolean | undefined;
372
- openapi?: string | string[] | undefined;
373
358
  }>, z.ZodObject<{
374
359
  href: z.ZodString;
375
360
  }, "strip", z.ZodTypeAny, {
@@ -381,14 +366,12 @@ export declare const mintConfigSchema: z.ZodObject<{
381
366
  languages?: ({
382
367
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
383
368
  hidden?: boolean | undefined;
384
- openapi?: string | string[] | undefined;
385
369
  } & {
386
370
  href: string;
387
371
  })[] | undefined;
388
372
  versions?: ({
389
373
  version: string;
390
374
  hidden?: boolean | undefined;
391
- openapi?: string | string[] | undefined;
392
375
  } & {
393
376
  href: string;
394
377
  })[] | undefined;
@@ -399,7 +382,6 @@ export declare const mintConfigSchema: z.ZodObject<{
399
382
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
400
383
  } | undefined;
401
384
  hidden?: boolean | undefined;
402
- openapi?: string | string[] | undefined;
403
385
  } & {
404
386
  href: string;
405
387
  })[] | undefined;
@@ -410,7 +392,6 @@ export declare const mintConfigSchema: z.ZodObject<{
410
392
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
411
393
  } | undefined;
412
394
  hidden?: boolean | undefined;
413
- openapi?: string | string[] | undefined;
414
395
  } & {
415
396
  href: string;
416
397
  })[] | undefined;
@@ -425,7 +406,6 @@ export declare const mintConfigSchema: z.ZodObject<{
425
406
  dark?: string | undefined;
426
407
  } | undefined;
427
408
  hidden?: boolean | undefined;
428
- openapi?: string | string[] | undefined;
429
409
  } & {
430
410
  href: string;
431
411
  })[] | undefined;
@@ -433,14 +413,12 @@ export declare const mintConfigSchema: z.ZodObject<{
433
413
  languages?: ({
434
414
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
435
415
  hidden?: boolean | undefined;
436
- openapi?: string | string[] | undefined;
437
416
  } & {
438
417
  href: string;
439
418
  })[] | undefined;
440
419
  versions?: ({
441
420
  version: string;
442
421
  hidden?: boolean | undefined;
443
- openapi?: string | string[] | undefined;
444
422
  } & {
445
423
  href: string;
446
424
  })[] | undefined;
@@ -451,7 +429,6 @@ export declare const mintConfigSchema: z.ZodObject<{
451
429
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
452
430
  } | undefined;
453
431
  hidden?: boolean | undefined;
454
- openapi?: string | string[] | undefined;
455
432
  } & {
456
433
  href: string;
457
434
  })[] | undefined;
@@ -462,7 +439,6 @@ export declare const mintConfigSchema: z.ZodObject<{
462
439
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
463
440
  } | undefined;
464
441
  hidden?: boolean | undefined;
465
- openapi?: string | string[] | undefined;
466
442
  } & {
467
443
  href: string;
468
444
  })[] | undefined;
@@ -477,7 +453,6 @@ export declare const mintConfigSchema: z.ZodObject<{
477
453
  dark?: string | undefined;
478
454
  } | undefined;
479
455
  hidden?: boolean | undefined;
480
- openapi?: string | string[] | undefined;
481
456
  } & {
482
457
  href: string;
483
458
  })[] | undefined;
@@ -487,14 +462,12 @@ export declare const mintConfigSchema: z.ZodObject<{
487
462
  languages?: ({
488
463
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
489
464
  hidden?: boolean | undefined;
490
- openapi?: string | string[] | undefined;
491
465
  } & {
492
466
  href: string;
493
467
  })[] | undefined;
494
468
  versions?: ({
495
469
  version: string;
496
470
  hidden?: boolean | undefined;
497
- openapi?: string | string[] | undefined;
498
471
  } & {
499
472
  href: string;
500
473
  })[] | undefined;
@@ -505,7 +478,6 @@ export declare const mintConfigSchema: z.ZodObject<{
505
478
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
506
479
  } | undefined;
507
480
  hidden?: boolean | undefined;
508
- openapi?: string | string[] | undefined;
509
481
  } & {
510
482
  href: string;
511
483
  })[] | undefined;
@@ -516,7 +488,6 @@ export declare const mintConfigSchema: z.ZodObject<{
516
488
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
517
489
  } | undefined;
518
490
  hidden?: boolean | undefined;
519
- openapi?: string | string[] | undefined;
520
491
  } & {
521
492
  href: string;
522
493
  })[] | undefined;
@@ -531,7 +502,6 @@ export declare const mintConfigSchema: z.ZodObject<{
531
502
  dark?: string | undefined;
532
503
  } | undefined;
533
504
  hidden?: boolean | undefined;
534
- openapi?: string | string[] | undefined;
535
505
  } & {
536
506
  href: string;
537
507
  })[] | undefined;
@@ -541,14 +511,12 @@ export declare const mintConfigSchema: z.ZodObject<{
541
511
  languages?: ({
542
512
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
543
513
  hidden?: boolean | undefined;
544
- openapi?: string | string[] | undefined;
545
514
  } & {
546
515
  href: string;
547
516
  })[] | undefined;
548
517
  versions?: ({
549
518
  version: string;
550
519
  hidden?: boolean | undefined;
551
- openapi?: string | string[] | undefined;
552
520
  } & {
553
521
  href: string;
554
522
  })[] | undefined;
@@ -559,7 +527,6 @@ export declare const mintConfigSchema: z.ZodObject<{
559
527
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
560
528
  } | undefined;
561
529
  hidden?: boolean | undefined;
562
- openapi?: string | string[] | undefined;
563
530
  } & {
564
531
  href: string;
565
532
  })[] | undefined;
@@ -570,7 +537,6 @@ export declare const mintConfigSchema: z.ZodObject<{
570
537
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
571
538
  } | undefined;
572
539
  hidden?: boolean | undefined;
573
- openapi?: string | string[] | undefined;
574
540
  } & {
575
541
  href: string;
576
542
  })[] | undefined;
@@ -585,7 +551,6 @@ export declare const mintConfigSchema: z.ZodObject<{
585
551
  dark?: string | undefined;
586
552
  } | undefined;
587
553
  hidden?: boolean | undefined;
588
- openapi?: string | string[] | undefined;
589
554
  } & {
590
555
  href: string;
591
556
  })[] | undefined;
@@ -594,22 +559,40 @@ export declare const mintConfigSchema: z.ZodObject<{
594
559
  languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
595
560
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
596
561
  hidden: z.ZodOptional<z.ZodBoolean>;
597
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
598
562
  }, "strip", z.ZodTypeAny, {
599
563
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
600
564
  hidden?: boolean | undefined;
601
- openapi?: string | string[] | undefined;
602
565
  }, {
603
566
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
604
567
  hidden?: boolean | undefined;
605
- openapi?: string | string[] | undefined;
606
568
  }>, z.ZodUnion<[z.ZodObject<{
607
569
  href: z.ZodString;
608
570
  }, "strip", z.ZodTypeAny, {
609
571
  href: string;
610
572
  }, {
611
573
  href: string;
612
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
574
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
575
+ language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
576
+ hidden: z.ZodOptional<z.ZodBoolean>;
577
+ }, "strip", z.ZodTypeAny, {
578
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
579
+ hidden?: boolean | undefined;
580
+ }, {
581
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
582
+ hidden?: boolean | undefined;
583
+ }>, z.ZodUnion<[z.ZodObject<{
584
+ href: z.ZodString;
585
+ }, "strip", z.ZodTypeAny, {
586
+ href: string;
587
+ }, {
588
+ href: string;
589
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
590
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
591
+ }, "strip", z.ZodTypeAny, {
592
+ openapi?: string | string[] | undefined;
593
+ }, {
594
+ openapi?: string | string[] | undefined;
595
+ }>>, "many">;
613
596
  }, "strip", z.ZodTypeAny, {
614
597
  languages: any[];
615
598
  }, {
@@ -618,22 +601,40 @@ export declare const mintConfigSchema: z.ZodObject<{
618
601
  versions: z.ZodArray<z.ZodIntersection<z.ZodObject<{
619
602
  version: z.ZodString;
620
603
  hidden: z.ZodOptional<z.ZodBoolean>;
621
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
622
604
  }, "strip", z.ZodTypeAny, {
623
605
  version: string;
624
606
  hidden?: boolean | undefined;
625
- openapi?: string | string[] | undefined;
626
607
  }, {
627
608
  version: string;
628
609
  hidden?: boolean | undefined;
629
- openapi?: string | string[] | undefined;
630
610
  }>, z.ZodUnion<[z.ZodObject<{
631
611
  href: z.ZodString;
632
612
  }, "strip", z.ZodTypeAny, {
633
613
  href: string;
634
614
  }, {
635
615
  href: string;
636
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
616
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
617
+ version: z.ZodString;
618
+ hidden: z.ZodOptional<z.ZodBoolean>;
619
+ }, "strip", z.ZodTypeAny, {
620
+ version: string;
621
+ hidden?: boolean | undefined;
622
+ }, {
623
+ version: string;
624
+ hidden?: boolean | undefined;
625
+ }>, z.ZodUnion<[z.ZodObject<{
626
+ href: z.ZodString;
627
+ }, "strip", z.ZodTypeAny, {
628
+ href: string;
629
+ }, {
630
+ href: string;
631
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
632
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
633
+ }, "strip", z.ZodTypeAny, {
634
+ openapi?: string | string[] | undefined;
635
+ }, {
636
+ openapi?: string | string[] | undefined;
637
+ }>>, "many">;
637
638
  }, "strip", z.ZodTypeAny, {
638
639
  versions: any[];
639
640
  }, {
@@ -652,7 +653,6 @@ export declare const mintConfigSchema: z.ZodObject<{
652
653
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
653
654
  }>]>>;
654
655
  hidden: z.ZodOptional<z.ZodBoolean>;
655
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
656
656
  }, "strip", z.ZodTypeAny, {
657
657
  tab: string;
658
658
  icon?: string | {
@@ -660,7 +660,6 @@ export declare const mintConfigSchema: z.ZodObject<{
660
660
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
661
661
  } | undefined;
662
662
  hidden?: boolean | undefined;
663
- openapi?: string | string[] | undefined;
664
663
  }, {
665
664
  tab: string;
666
665
  icon?: string | {
@@ -668,14 +667,52 @@ export declare const mintConfigSchema: z.ZodObject<{
668
667
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
669
668
  } | undefined;
670
669
  hidden?: boolean | undefined;
671
- openapi?: string | string[] | undefined;
672
670
  }>, z.ZodUnion<[z.ZodObject<{
673
671
  href: z.ZodString;
674
672
  }, "strip", z.ZodTypeAny, {
675
673
  href: string;
676
674
  }, {
677
675
  href: string;
678
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
676
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
677
+ tab: z.ZodString;
678
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
679
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
680
+ name: z.ZodEffects<z.ZodString, string, string>;
681
+ }, "strip", z.ZodTypeAny, {
682
+ name: string;
683
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
684
+ }, {
685
+ name: string;
686
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
687
+ }>]>>;
688
+ hidden: z.ZodOptional<z.ZodBoolean>;
689
+ }, "strip", z.ZodTypeAny, {
690
+ tab: string;
691
+ icon?: string | {
692
+ name: string;
693
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
694
+ } | undefined;
695
+ hidden?: boolean | undefined;
696
+ }, {
697
+ tab: string;
698
+ icon?: string | {
699
+ name: string;
700
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
701
+ } | undefined;
702
+ hidden?: boolean | undefined;
703
+ }>, z.ZodUnion<[z.ZodObject<{
704
+ href: z.ZodString;
705
+ }, "strip", z.ZodTypeAny, {
706
+ href: string;
707
+ }, {
708
+ href: string;
709
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
710
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
711
+ }, "strip", z.ZodTypeAny, {
712
+ openapi?: string | string[] | undefined;
713
+ }, {
714
+ openapi?: string | string[] | undefined;
715
+ }>>, "many">;
679
716
  }, "strip", z.ZodTypeAny, {
680
717
  tabs: any[];
681
718
  }, {
@@ -694,7 +731,6 @@ export declare const mintConfigSchema: z.ZodObject<{
694
731
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
695
732
  }>]>>;
696
733
  hidden: z.ZodOptional<z.ZodBoolean>;
697
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
698
734
  }, "strip", z.ZodTypeAny, {
699
735
  dropdown: string;
700
736
  icon?: string | {
@@ -702,7 +738,6 @@ export declare const mintConfigSchema: z.ZodObject<{
702
738
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
703
739
  } | undefined;
704
740
  hidden?: boolean | undefined;
705
- openapi?: string | string[] | undefined;
706
741
  }, {
707
742
  dropdown: string;
708
743
  icon?: string | {
@@ -710,14 +745,52 @@ export declare const mintConfigSchema: z.ZodObject<{
710
745
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
711
746
  } | undefined;
712
747
  hidden?: boolean | undefined;
713
- openapi?: string | string[] | undefined;
714
748
  }>, z.ZodUnion<[z.ZodObject<{
715
749
  href: z.ZodString;
716
750
  }, "strip", z.ZodTypeAny, {
717
751
  href: string;
718
752
  }, {
719
753
  href: string;
720
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
754
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
755
+ dropdown: z.ZodString;
756
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
757
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
758
+ name: z.ZodEffects<z.ZodString, string, string>;
759
+ }, "strip", z.ZodTypeAny, {
760
+ name: string;
761
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
762
+ }, {
763
+ name: string;
764
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
765
+ }>]>>;
766
+ hidden: z.ZodOptional<z.ZodBoolean>;
767
+ }, "strip", z.ZodTypeAny, {
768
+ dropdown: string;
769
+ icon?: string | {
770
+ name: string;
771
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
772
+ } | undefined;
773
+ hidden?: boolean | undefined;
774
+ }, {
775
+ dropdown: string;
776
+ icon?: string | {
777
+ name: string;
778
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
779
+ } | undefined;
780
+ hidden?: boolean | undefined;
781
+ }>, z.ZodUnion<[z.ZodObject<{
782
+ href: z.ZodString;
783
+ }, "strip", z.ZodTypeAny, {
784
+ href: string;
785
+ }, {
786
+ href: string;
787
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
788
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
789
+ }, "strip", z.ZodTypeAny, {
790
+ openapi?: string | string[] | undefined;
791
+ }, {
792
+ openapi?: string | string[] | undefined;
793
+ }>>, "many">;
721
794
  }, "strip", z.ZodTypeAny, {
722
795
  dropdowns: any[];
723
796
  }, {
@@ -746,7 +819,6 @@ export declare const mintConfigSchema: z.ZodObject<{
746
819
  dark?: string | undefined;
747
820
  }>>;
748
821
  hidden: z.ZodOptional<z.ZodBoolean>;
749
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
750
822
  }, "strip", z.ZodTypeAny, {
751
823
  anchor: string;
752
824
  icon?: string | {
@@ -758,7 +830,6 @@ export declare const mintConfigSchema: z.ZodObject<{
758
830
  dark?: string | undefined;
759
831
  } | undefined;
760
832
  hidden?: boolean | undefined;
761
- openapi?: string | string[] | undefined;
762
833
  }, {
763
834
  anchor: string;
764
835
  icon?: string | {
@@ -770,14 +841,70 @@ export declare const mintConfigSchema: z.ZodObject<{
770
841
  dark?: string | undefined;
771
842
  } | undefined;
772
843
  hidden?: boolean | undefined;
773
- openapi?: string | string[] | undefined;
774
844
  }>, z.ZodUnion<[z.ZodObject<{
775
845
  href: z.ZodString;
776
846
  }, "strip", z.ZodTypeAny, {
777
847
  href: string;
778
848
  }, {
779
849
  href: string;
780
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
850
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
851
+ anchor: z.ZodString;
852
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
853
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
854
+ name: z.ZodEffects<z.ZodString, string, string>;
855
+ }, "strip", z.ZodTypeAny, {
856
+ name: string;
857
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
858
+ }, {
859
+ name: string;
860
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
861
+ }>]>>;
862
+ color: z.ZodOptional<z.ZodObject<{
863
+ light: z.ZodOptional<z.ZodString>;
864
+ dark: z.ZodOptional<z.ZodString>;
865
+ }, "strict", z.ZodTypeAny, {
866
+ light?: string | undefined;
867
+ dark?: string | undefined;
868
+ }, {
869
+ light?: string | undefined;
870
+ dark?: string | undefined;
871
+ }>>;
872
+ hidden: z.ZodOptional<z.ZodBoolean>;
873
+ }, "strip", z.ZodTypeAny, {
874
+ anchor: string;
875
+ icon?: string | {
876
+ name: string;
877
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
878
+ } | undefined;
879
+ color?: {
880
+ light?: string | undefined;
881
+ dark?: string | undefined;
882
+ } | undefined;
883
+ hidden?: boolean | undefined;
884
+ }, {
885
+ anchor: string;
886
+ icon?: string | {
887
+ name: string;
888
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
889
+ } | undefined;
890
+ color?: {
891
+ light?: string | undefined;
892
+ dark?: string | undefined;
893
+ } | undefined;
894
+ hidden?: boolean | undefined;
895
+ }>, z.ZodUnion<[z.ZodObject<{
896
+ href: z.ZodString;
897
+ }, "strip", z.ZodTypeAny, {
898
+ href: string;
899
+ }, {
900
+ href: string;
901
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
902
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
903
+ }, "strip", z.ZodTypeAny, {
904
+ openapi?: string | string[] | undefined;
905
+ }, {
906
+ openapi?: string | string[] | undefined;
907
+ }>>, "many">;
781
908
  }, "strip", z.ZodTypeAny, {
782
909
  anchors: any[];
783
910
  }, {
@@ -1513,14 +1640,12 @@ export declare const mintConfigSchema: z.ZodObject<{
1513
1640
  languages?: ({
1514
1641
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1515
1642
  hidden?: boolean | undefined;
1516
- openapi?: string | string[] | undefined;
1517
1643
  } & {
1518
1644
  href: string;
1519
1645
  })[] | undefined;
1520
1646
  versions?: ({
1521
1647
  version: string;
1522
1648
  hidden?: boolean | undefined;
1523
- openapi?: string | string[] | undefined;
1524
1649
  } & {
1525
1650
  href: string;
1526
1651
  })[] | undefined;
@@ -1531,7 +1656,6 @@ export declare const mintConfigSchema: z.ZodObject<{
1531
1656
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1532
1657
  } | undefined;
1533
1658
  hidden?: boolean | undefined;
1534
- openapi?: string | string[] | undefined;
1535
1659
  } & {
1536
1660
  href: string;
1537
1661
  })[] | undefined;
@@ -1542,7 +1666,6 @@ export declare const mintConfigSchema: z.ZodObject<{
1542
1666
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1543
1667
  } | undefined;
1544
1668
  hidden?: boolean | undefined;
1545
- openapi?: string | string[] | undefined;
1546
1669
  } & {
1547
1670
  href: string;
1548
1671
  })[] | undefined;
@@ -1557,7 +1680,6 @@ export declare const mintConfigSchema: z.ZodObject<{
1557
1680
  dark?: string | undefined;
1558
1681
  } | undefined;
1559
1682
  hidden?: boolean | undefined;
1560
- openapi?: string | string[] | undefined;
1561
1683
  } & {
1562
1684
  href: string;
1563
1685
  })[] | undefined;
@@ -1619,14 +1741,12 @@ export declare const mintConfigSchema: z.ZodObject<{
1619
1741
  languages?: ({
1620
1742
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1621
1743
  hidden?: boolean | undefined;
1622
- openapi?: string | string[] | undefined;
1623
1744
  } & {
1624
1745
  href: string;
1625
1746
  })[] | undefined;
1626
1747
  versions?: ({
1627
1748
  version: string;
1628
1749
  hidden?: boolean | undefined;
1629
- openapi?: string | string[] | undefined;
1630
1750
  } & {
1631
1751
  href: string;
1632
1752
  })[] | undefined;
@@ -1637,7 +1757,6 @@ export declare const mintConfigSchema: z.ZodObject<{
1637
1757
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1638
1758
  } | undefined;
1639
1759
  hidden?: boolean | undefined;
1640
- openapi?: string | string[] | undefined;
1641
1760
  } & {
1642
1761
  href: string;
1643
1762
  })[] | undefined;
@@ -1648,7 +1767,6 @@ export declare const mintConfigSchema: z.ZodObject<{
1648
1767
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1649
1768
  } | undefined;
1650
1769
  hidden?: boolean | undefined;
1651
- openapi?: string | string[] | undefined;
1652
1770
  } & {
1653
1771
  href: string;
1654
1772
  })[] | undefined;
@@ -1663,7 +1781,6 @@ export declare const mintConfigSchema: z.ZodObject<{
1663
1781
  dark?: string | undefined;
1664
1782
  } | undefined;
1665
1783
  hidden?: boolean | undefined;
1666
- openapi?: string | string[] | undefined;
1667
1784
  } & {
1668
1785
  href: string;
1669
1786
  })[] | undefined;
@@ -1892,14 +2009,12 @@ export declare const mintConfigSchema: z.ZodObject<{
1892
2009
  languages?: ({
1893
2010
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1894
2011
  hidden?: boolean | undefined;
1895
- openapi?: string | string[] | undefined;
1896
2012
  } & {
1897
2013
  href: string;
1898
2014
  })[] | undefined;
1899
2015
  versions?: ({
1900
2016
  version: string;
1901
2017
  hidden?: boolean | undefined;
1902
- openapi?: string | string[] | undefined;
1903
2018
  } & {
1904
2019
  href: string;
1905
2020
  })[] | undefined;
@@ -1910,7 +2025,6 @@ export declare const mintConfigSchema: z.ZodObject<{
1910
2025
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1911
2026
  } | undefined;
1912
2027
  hidden?: boolean | undefined;
1913
- openapi?: string | string[] | undefined;
1914
2028
  } & {
1915
2029
  href: string;
1916
2030
  })[] | undefined;
@@ -1921,7 +2035,6 @@ export declare const mintConfigSchema: z.ZodObject<{
1921
2035
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1922
2036
  } | undefined;
1923
2037
  hidden?: boolean | undefined;
1924
- openapi?: string | string[] | undefined;
1925
2038
  } & {
1926
2039
  href: string;
1927
2040
  })[] | undefined;
@@ -1936,7 +2049,6 @@ export declare const mintConfigSchema: z.ZodObject<{
1936
2049
  dark?: string | undefined;
1937
2050
  } | undefined;
1938
2051
  hidden?: boolean | undefined;
1939
- openapi?: string | string[] | undefined;
1940
2052
  } & {
1941
2053
  href: string;
1942
2054
  })[] | undefined;
@@ -1998,14 +2110,12 @@ export declare const mintConfigSchema: z.ZodObject<{
1998
2110
  languages?: ({
1999
2111
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2000
2112
  hidden?: boolean | undefined;
2001
- openapi?: string | string[] | undefined;
2002
2113
  } & {
2003
2114
  href: string;
2004
2115
  })[] | undefined;
2005
2116
  versions?: ({
2006
2117
  version: string;
2007
2118
  hidden?: boolean | undefined;
2008
- openapi?: string | string[] | undefined;
2009
2119
  } & {
2010
2120
  href: string;
2011
2121
  })[] | undefined;
@@ -2016,7 +2126,6 @@ export declare const mintConfigSchema: z.ZodObject<{
2016
2126
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2017
2127
  } | undefined;
2018
2128
  hidden?: boolean | undefined;
2019
- openapi?: string | string[] | undefined;
2020
2129
  } & {
2021
2130
  href: string;
2022
2131
  })[] | undefined;
@@ -2027,7 +2136,6 @@ export declare const mintConfigSchema: z.ZodObject<{
2027
2136
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2028
2137
  } | undefined;
2029
2138
  hidden?: boolean | undefined;
2030
- openapi?: string | string[] | undefined;
2031
2139
  } & {
2032
2140
  href: string;
2033
2141
  })[] | undefined;
@@ -2042,7 +2150,6 @@ export declare const mintConfigSchema: z.ZodObject<{
2042
2150
  dark?: string | undefined;
2043
2151
  } | undefined;
2044
2152
  hidden?: boolean | undefined;
2045
- openapi?: string | string[] | undefined;
2046
2153
  } & {
2047
2154
  href: string;
2048
2155
  })[] | undefined;