@mintlify/validation 0.1.237 → 0.1.239

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 (39) hide show
  1. package/dist/index.d.ts +1 -0
  2. package/dist/index.js +1 -0
  3. package/dist/mint-config/schemas/v2/index.d.ts +784 -1132
  4. package/dist/mint-config/schemas/v2/properties/$schema.js +1 -1
  5. package/dist/mint-config/schemas/v2/properties/feedback.d.ts +14 -0
  6. package/dist/mint-config/schemas/v2/properties/feedback.js +8 -0
  7. package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +8 -12
  8. package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +1 -1
  9. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +6 -12
  10. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +1 -1
  11. package/dist/mint-config/schemas/v2/properties/navigation/global.d.ts +47 -96
  12. package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +12 -10
  13. package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +97 -166
  14. package/dist/mint-config/schemas/v2/properties/navigation/index.js +1 -1
  15. package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +17 -21
  16. package/dist/mint-config/schemas/v2/properties/navigation/languages.js +1 -1
  17. package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +1 -0
  18. package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +8 -12
  19. package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +1 -1
  20. package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +3 -7
  21. package/dist/mint-config/schemas/v2/properties/navigation/version.js +1 -1
  22. package/dist/mint-config/schemas/v2/properties/reusable/icon.d.ts +4 -3
  23. package/dist/mint-config/schemas/v2/properties/reusable/icon.js +1 -1
  24. package/dist/mint-config/schemas/v2/properties/seo.d.ts +1 -1
  25. package/dist/mint-config/schemas/v2/properties/seo.js +1 -0
  26. package/dist/mint-config/schemas/v2/properties/topbar.d.ts +22 -0
  27. package/dist/mint-config/schemas/v2/properties/topbar.js +1 -1
  28. package/dist/mint-config/schemas/v2/themes/mint.d.ts +196 -283
  29. package/dist/mint-config/schemas/v2/themes/prism.d.ts +196 -283
  30. package/dist/mint-config/schemas/v2/themes/quill.d.ts +196 -283
  31. package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +110 -167
  32. package/dist/mint-config/schemas/v2/themes/reusable/index.js +2 -0
  33. package/dist/mint-config/schemas/v2/themes/venus.d.ts +196 -283
  34. package/dist/mint-config/upgrades/updateNavigationToDocsConfig.d.ts +10 -0
  35. package/dist/mint-config/upgrades/updateNavigationToDocsConfig.js +240 -0
  36. package/dist/mint-config/upgrades/upgradeToDocsConfig.d.ts +6 -0
  37. package/dist/mint-config/upgrades/upgradeToDocsConfig.js +223 -0
  38. package/dist/tsconfig.build.tsbuildinfo +1 -1
  39. package/package.json +2 -2
@@ -75,6 +75,19 @@ export declare const mintConfigSchema: z.ZodObject<{
75
75
  languages?: string[] | undefined;
76
76
  } | undefined;
77
77
  }>>;
78
+ feedback: z.ZodOptional<z.ZodObject<{
79
+ thumbs: z.ZodOptional<z.ZodBoolean>;
80
+ edits: z.ZodOptional<z.ZodBoolean>;
81
+ issues: z.ZodOptional<z.ZodBoolean>;
82
+ }, "strip", z.ZodTypeAny, {
83
+ thumbs?: boolean | undefined;
84
+ edits?: boolean | undefined;
85
+ issues?: boolean | undefined;
86
+ }, {
87
+ thumbs?: boolean | undefined;
88
+ edits?: boolean | undefined;
89
+ issues?: boolean | undefined;
90
+ }>>;
78
91
  appearance: z.ZodOptional<z.ZodObject<{
79
92
  default: z.ZodDefault<z.ZodEnum<["system", "light", "dark"]>>;
80
93
  strict: z.ZodDefault<z.ZodBoolean>;
@@ -238,14 +251,14 @@ export declare const mintConfigSchema: z.ZodObject<{
238
251
  groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
239
252
  group: z.ZodString;
240
253
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
241
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
254
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
242
255
  name: z.ZodEffects<z.ZodString, string, string>;
243
256
  }, "strip", z.ZodTypeAny, {
244
257
  name: string;
245
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
258
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
246
259
  }, {
247
260
  name: string;
248
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
261
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
249
262
  }>]>>;
250
263
  hidden: z.ZodOptional<z.ZodBoolean>;
251
264
  root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -253,7 +266,7 @@ export declare const mintConfigSchema: z.ZodObject<{
253
266
  group: string;
254
267
  icon?: string | {
255
268
  name: string;
256
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
269
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
257
270
  } | undefined;
258
271
  hidden?: boolean | undefined;
259
272
  root?: string | undefined;
@@ -261,7 +274,7 @@ export declare const mintConfigSchema: z.ZodObject<{
261
274
  group: string;
262
275
  icon?: string | {
263
276
  name: string;
264
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
277
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
265
278
  } | undefined;
266
279
  hidden?: boolean | undefined;
267
280
  root?: string | undefined;
@@ -283,7 +296,7 @@ export declare const mintConfigSchema: z.ZodObject<{
283
296
  group: string;
284
297
  icon?: string | {
285
298
  name: string;
286
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
299
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
287
300
  } | undefined;
288
301
  hidden?: boolean | undefined;
289
302
  root?: string | undefined;
@@ -297,7 +310,7 @@ export declare const mintConfigSchema: z.ZodObject<{
297
310
  group: string;
298
311
  icon?: string | {
299
312
  name: string;
300
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
313
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
301
314
  } | undefined;
302
315
  hidden?: boolean | undefined;
303
316
  root?: string | undefined;
@@ -334,7 +347,7 @@ export declare const mintConfigSchema: z.ZodObject<{
334
347
  group: string;
335
348
  icon?: string | {
336
349
  name: string;
337
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
350
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
338
351
  } | undefined;
339
352
  hidden?: boolean | undefined;
340
353
  root?: string | undefined;
@@ -367,7 +380,7 @@ export declare const mintConfigSchema: z.ZodObject<{
367
380
  group: string;
368
381
  icon?: string | {
369
382
  name: string;
370
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
383
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
371
384
  } | undefined;
372
385
  hidden?: boolean | undefined;
373
386
  root?: string | undefined;
@@ -407,14 +420,14 @@ export declare const mintConfigSchema: z.ZodObject<{
407
420
  groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
408
421
  group: z.ZodString;
409
422
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
410
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
423
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
411
424
  name: z.ZodEffects<z.ZodString, string, string>;
412
425
  }, "strip", z.ZodTypeAny, {
413
426
  name: string;
414
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
427
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
415
428
  }, {
416
429
  name: string;
417
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
430
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
418
431
  }>]>>;
419
432
  hidden: z.ZodOptional<z.ZodBoolean>;
420
433
  root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -422,7 +435,7 @@ export declare const mintConfigSchema: z.ZodObject<{
422
435
  group: string;
423
436
  icon?: string | {
424
437
  name: string;
425
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
438
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
426
439
  } | undefined;
427
440
  hidden?: boolean | undefined;
428
441
  root?: string | undefined;
@@ -430,7 +443,7 @@ export declare const mintConfigSchema: z.ZodObject<{
430
443
  group: string;
431
444
  icon?: string | {
432
445
  name: string;
433
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
446
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
434
447
  } | undefined;
435
448
  hidden?: boolean | undefined;
436
449
  root?: string | undefined;
@@ -452,7 +465,7 @@ export declare const mintConfigSchema: z.ZodObject<{
452
465
  group: string;
453
466
  icon?: string | {
454
467
  name: string;
455
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
468
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
456
469
  } | undefined;
457
470
  hidden?: boolean | undefined;
458
471
  root?: string | undefined;
@@ -466,7 +479,7 @@ export declare const mintConfigSchema: z.ZodObject<{
466
479
  group: string;
467
480
  icon?: string | {
468
481
  name: string;
469
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
482
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
470
483
  } | undefined;
471
484
  hidden?: boolean | undefined;
472
485
  root?: string | undefined;
@@ -481,8 +494,8 @@ export declare const mintConfigSchema: z.ZodObject<{
481
494
  pages: any[];
482
495
  }, {
483
496
  pages: any[];
484
- }>]>, z.ZodOptional<z.ZodObject<{
485
- global: z.ZodObject<{
497
+ }>]>, z.ZodObject<{
498
+ global: z.ZodOptional<z.ZodObject<{
486
499
  languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
487
500
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
488
501
  hidden: z.ZodOptional<z.ZodBoolean>;
@@ -492,19 +505,13 @@ export declare const mintConfigSchema: z.ZodObject<{
492
505
  }, {
493
506
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
494
507
  hidden?: boolean | undefined;
495
- }>, z.ZodUnion<[z.ZodObject<{
496
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
497
- }, "strip", z.ZodTypeAny, {
498
- openapi: (string | string[]) & (string | string[] | undefined);
499
- }, {
500
- openapi: (string | string[]) & (string | string[] | undefined);
501
508
  }>, z.ZodObject<{
502
509
  href: z.ZodString;
503
510
  }, "strip", z.ZodTypeAny, {
504
511
  href: string;
505
512
  }, {
506
513
  href: string;
507
- }>]>>, "many">>;
514
+ }>>, "many">>;
508
515
  versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
509
516
  version: z.ZodString;
510
517
  hidden: z.ZodOptional<z.ZodBoolean>;
@@ -514,110 +521,92 @@ export declare const mintConfigSchema: z.ZodObject<{
514
521
  }, {
515
522
  version: string;
516
523
  hidden?: boolean | undefined;
517
- }>, z.ZodUnion<[z.ZodObject<{
518
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
519
- }, "strip", z.ZodTypeAny, {
520
- openapi: (string | string[]) & (string | string[] | undefined);
521
- }, {
522
- openapi: (string | string[]) & (string | string[] | undefined);
523
524
  }>, z.ZodObject<{
524
525
  href: z.ZodString;
525
526
  }, "strip", z.ZodTypeAny, {
526
527
  href: string;
527
528
  }, {
528
529
  href: string;
529
- }>]>>, "many">>;
530
+ }>>, "many">>;
530
531
  tabs: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
531
532
  tab: z.ZodString;
532
533
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
533
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
534
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
534
535
  name: z.ZodEffects<z.ZodString, string, string>;
535
536
  }, "strip", z.ZodTypeAny, {
536
537
  name: string;
537
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
538
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
538
539
  }, {
539
540
  name: string;
540
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
541
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
541
542
  }>]>>;
542
543
  hidden: z.ZodOptional<z.ZodBoolean>;
543
544
  }, "strip", z.ZodTypeAny, {
544
545
  tab: string;
545
546
  icon?: string | {
546
547
  name: string;
547
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
548
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
548
549
  } | undefined;
549
550
  hidden?: boolean | undefined;
550
551
  }, {
551
552
  tab: string;
552
553
  icon?: string | {
553
554
  name: string;
554
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
555
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
555
556
  } | undefined;
556
557
  hidden?: boolean | undefined;
557
- }>, z.ZodUnion<[z.ZodObject<{
558
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
559
- }, "strip", z.ZodTypeAny, {
560
- openapi: (string | string[]) & (string | string[] | undefined);
561
- }, {
562
- openapi: (string | string[]) & (string | string[] | undefined);
563
558
  }>, z.ZodObject<{
564
559
  href: z.ZodString;
565
560
  }, "strip", z.ZodTypeAny, {
566
561
  href: string;
567
562
  }, {
568
563
  href: string;
569
- }>]>>, "many">>;
564
+ }>>, "many">>;
570
565
  dropdowns: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
571
566
  dropdown: z.ZodString;
572
567
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
573
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
568
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
574
569
  name: z.ZodEffects<z.ZodString, string, string>;
575
570
  }, "strip", z.ZodTypeAny, {
576
571
  name: string;
577
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
572
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
578
573
  }, {
579
574
  name: string;
580
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
575
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
581
576
  }>]>>;
582
577
  hidden: z.ZodOptional<z.ZodBoolean>;
583
578
  }, "strip", z.ZodTypeAny, {
584
579
  dropdown: string;
585
580
  icon?: string | {
586
581
  name: string;
587
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
582
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
588
583
  } | undefined;
589
584
  hidden?: boolean | undefined;
590
585
  }, {
591
586
  dropdown: string;
592
587
  icon?: string | {
593
588
  name: string;
594
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
589
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
595
590
  } | undefined;
596
591
  hidden?: boolean | undefined;
597
- }>, z.ZodUnion<[z.ZodObject<{
598
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
599
- }, "strip", z.ZodTypeAny, {
600
- openapi: (string | string[]) & (string | string[] | undefined);
601
- }, {
602
- openapi: (string | string[]) & (string | string[] | undefined);
603
592
  }>, z.ZodObject<{
604
593
  href: z.ZodString;
605
594
  }, "strip", z.ZodTypeAny, {
606
595
  href: string;
607
596
  }, {
608
597
  href: string;
609
- }>]>>, "many">>;
598
+ }>>, "many">>;
610
599
  anchors: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
611
600
  anchor: z.ZodString;
612
601
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
613
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
602
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
614
603
  name: z.ZodEffects<z.ZodString, string, string>;
615
604
  }, "strip", z.ZodTypeAny, {
616
605
  name: string;
617
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
606
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
618
607
  }, {
619
608
  name: string;
620
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
609
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
621
610
  }>]>>;
622
611
  color: z.ZodOptional<z.ZodObject<{
623
612
  light: z.ZodString;
@@ -634,7 +623,7 @@ export declare const mintConfigSchema: z.ZodObject<{
634
623
  anchor: string;
635
624
  icon?: string | {
636
625
  name: string;
637
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
626
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
638
627
  } | undefined;
639
628
  color?: {
640
629
  light: string;
@@ -645,260 +634,214 @@ export declare const mintConfigSchema: z.ZodObject<{
645
634
  anchor: string;
646
635
  icon?: string | {
647
636
  name: string;
648
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
637
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
649
638
  } | undefined;
650
639
  color?: {
651
640
  light: string;
652
641
  dark: string;
653
642
  } | undefined;
654
643
  hidden?: boolean | undefined;
655
- }>, z.ZodUnion<[z.ZodObject<{
656
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
657
- }, "strip", z.ZodTypeAny, {
658
- openapi: (string | string[]) & (string | string[] | undefined);
659
- }, {
660
- openapi: (string | string[]) & (string | string[] | undefined);
661
644
  }>, z.ZodObject<{
662
645
  href: z.ZodString;
663
646
  }, "strip", z.ZodTypeAny, {
664
647
  href: string;
665
648
  }, {
666
649
  href: string;
667
- }>]>>, "many">>;
650
+ }>>, "many">>;
668
651
  }, "strict", z.ZodTypeAny, {
669
652
  languages?: ({
670
653
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
671
654
  hidden?: boolean | undefined;
672
- } & ({
673
- openapi: (string | string[]) & (string | string[] | undefined);
674
- } | {
655
+ } & {
675
656
  href: string;
676
- }))[] | undefined;
657
+ })[] | undefined;
677
658
  versions?: ({
678
659
  version: string;
679
660
  hidden?: boolean | undefined;
680
- } & ({
681
- openapi: (string | string[]) & (string | string[] | undefined);
682
- } | {
661
+ } & {
683
662
  href: string;
684
- }))[] | undefined;
663
+ })[] | undefined;
685
664
  tabs?: ({
686
665
  tab: string;
687
666
  icon?: string | {
688
667
  name: string;
689
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
668
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
690
669
  } | undefined;
691
670
  hidden?: boolean | undefined;
692
- } & ({
693
- openapi: (string | string[]) & (string | string[] | undefined);
694
- } | {
671
+ } & {
695
672
  href: string;
696
- }))[] | undefined;
673
+ })[] | undefined;
697
674
  dropdowns?: ({
698
675
  dropdown: string;
699
676
  icon?: string | {
700
677
  name: string;
701
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
678
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
702
679
  } | undefined;
703
680
  hidden?: boolean | undefined;
704
- } & ({
705
- openapi: (string | string[]) & (string | string[] | undefined);
706
- } | {
681
+ } & {
707
682
  href: string;
708
- }))[] | undefined;
683
+ })[] | undefined;
709
684
  anchors?: ({
710
685
  anchor: string;
711
686
  icon?: string | {
712
687
  name: string;
713
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
688
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
714
689
  } | undefined;
715
690
  color?: {
716
691
  light: string;
717
692
  dark: string;
718
693
  } | undefined;
719
694
  hidden?: boolean | undefined;
720
- } & ({
721
- openapi: (string | string[]) & (string | string[] | undefined);
722
- } | {
695
+ } & {
723
696
  href: string;
724
- }))[] | undefined;
697
+ })[] | undefined;
725
698
  }, {
726
699
  languages?: ({
727
700
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
728
701
  hidden?: boolean | undefined;
729
- } & ({
730
- openapi: (string | string[]) & (string | string[] | undefined);
731
- } | {
702
+ } & {
732
703
  href: string;
733
- }))[] | undefined;
704
+ })[] | undefined;
734
705
  versions?: ({
735
706
  version: string;
736
707
  hidden?: boolean | undefined;
737
- } & ({
738
- openapi: (string | string[]) & (string | string[] | undefined);
739
- } | {
708
+ } & {
740
709
  href: string;
741
- }))[] | undefined;
710
+ })[] | undefined;
742
711
  tabs?: ({
743
712
  tab: string;
744
713
  icon?: string | {
745
714
  name: string;
746
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
715
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
747
716
  } | undefined;
748
717
  hidden?: boolean | undefined;
749
- } & ({
750
- openapi: (string | string[]) & (string | string[] | undefined);
751
- } | {
718
+ } & {
752
719
  href: string;
753
- }))[] | undefined;
720
+ })[] | undefined;
754
721
  dropdowns?: ({
755
722
  dropdown: string;
756
723
  icon?: string | {
757
724
  name: string;
758
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
725
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
759
726
  } | undefined;
760
727
  hidden?: boolean | undefined;
761
- } & ({
762
- openapi: (string | string[]) & (string | string[] | undefined);
763
- } | {
728
+ } & {
764
729
  href: string;
765
- }))[] | undefined;
730
+ })[] | undefined;
766
731
  anchors?: ({
767
732
  anchor: string;
768
733
  icon?: string | {
769
734
  name: string;
770
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
735
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
771
736
  } | undefined;
772
737
  color?: {
773
738
  light: string;
774
739
  dark: string;
775
740
  } | undefined;
776
741
  hidden?: boolean | undefined;
777
- } & ({
778
- openapi: (string | string[]) & (string | string[] | undefined);
779
- } | {
742
+ } & {
780
743
  href: string;
781
- }))[] | undefined;
782
- }>;
744
+ })[] | undefined;
745
+ }>>;
783
746
  }, "strip", z.ZodTypeAny, {
784
- global: {
747
+ global?: {
785
748
  languages?: ({
786
749
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
787
750
  hidden?: boolean | undefined;
788
- } & ({
789
- openapi: (string | string[]) & (string | string[] | undefined);
790
- } | {
751
+ } & {
791
752
  href: string;
792
- }))[] | undefined;
753
+ })[] | undefined;
793
754
  versions?: ({
794
755
  version: string;
795
756
  hidden?: boolean | undefined;
796
- } & ({
797
- openapi: (string | string[]) & (string | string[] | undefined);
798
- } | {
757
+ } & {
799
758
  href: string;
800
- }))[] | undefined;
759
+ })[] | undefined;
801
760
  tabs?: ({
802
761
  tab: string;
803
762
  icon?: string | {
804
763
  name: string;
805
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
764
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
806
765
  } | undefined;
807
766
  hidden?: boolean | undefined;
808
- } & ({
809
- openapi: (string | string[]) & (string | string[] | undefined);
810
- } | {
767
+ } & {
811
768
  href: string;
812
- }))[] | undefined;
769
+ })[] | undefined;
813
770
  dropdowns?: ({
814
771
  dropdown: string;
815
772
  icon?: string | {
816
773
  name: string;
817
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
774
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
818
775
  } | undefined;
819
776
  hidden?: boolean | undefined;
820
- } & ({
821
- openapi: (string | string[]) & (string | string[] | undefined);
822
- } | {
777
+ } & {
823
778
  href: string;
824
- }))[] | undefined;
779
+ })[] | undefined;
825
780
  anchors?: ({
826
781
  anchor: string;
827
782
  icon?: string | {
828
783
  name: string;
829
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
784
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
830
785
  } | undefined;
831
786
  color?: {
832
787
  light: string;
833
788
  dark: string;
834
789
  } | undefined;
835
790
  hidden?: boolean | undefined;
836
- } & ({
837
- openapi: (string | string[]) & (string | string[] | undefined);
838
- } | {
791
+ } & {
839
792
  href: string;
840
- }))[] | undefined;
841
- };
793
+ })[] | undefined;
794
+ } | undefined;
842
795
  }, {
843
- global: {
796
+ global?: {
844
797
  languages?: ({
845
798
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
846
799
  hidden?: boolean | undefined;
847
- } & ({
848
- openapi: (string | string[]) & (string | string[] | undefined);
849
- } | {
800
+ } & {
850
801
  href: string;
851
- }))[] | undefined;
802
+ })[] | undefined;
852
803
  versions?: ({
853
804
  version: string;
854
805
  hidden?: boolean | undefined;
855
- } & ({
856
- openapi: (string | string[]) & (string | string[] | undefined);
857
- } | {
806
+ } & {
858
807
  href: string;
859
- }))[] | undefined;
808
+ })[] | undefined;
860
809
  tabs?: ({
861
810
  tab: string;
862
811
  icon?: string | {
863
812
  name: string;
864
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
813
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
865
814
  } | undefined;
866
815
  hidden?: boolean | undefined;
867
- } & ({
868
- openapi: (string | string[]) & (string | string[] | undefined);
869
- } | {
816
+ } & {
870
817
  href: string;
871
- }))[] | undefined;
818
+ })[] | undefined;
872
819
  dropdowns?: ({
873
820
  dropdown: string;
874
821
  icon?: string | {
875
822
  name: string;
876
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
823
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
877
824
  } | undefined;
878
825
  hidden?: boolean | undefined;
879
- } & ({
880
- openapi: (string | string[]) & (string | string[] | undefined);
881
- } | {
826
+ } & {
882
827
  href: string;
883
- }))[] | undefined;
828
+ })[] | undefined;
884
829
  anchors?: ({
885
830
  anchor: string;
886
831
  icon?: string | {
887
832
  name: string;
888
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
833
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
889
834
  } | undefined;
890
835
  color?: {
891
836
  light: string;
892
837
  dark: string;
893
838
  } | undefined;
894
839
  hidden?: boolean | undefined;
895
- } & ({
896
- openapi: (string | string[]) & (string | string[] | undefined);
897
- } | {
840
+ } & {
898
841
  href: string;
899
- }))[] | undefined;
900
- };
901
- }>>>;
842
+ })[] | undefined;
843
+ } | undefined;
844
+ }>>;
902
845
  footer: z.ZodOptional<z.ZodObject<{
903
846
  socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter"]>, z.ZodString>>;
904
847
  links: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -954,7 +897,7 @@ export declare const mintConfigSchema: z.ZodObject<{
954
897
  }>>;
955
898
  seo: z.ZodOptional<z.ZodObject<{
956
899
  metatags: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
957
- indexing: z.ZodDefault<z.ZodEnum<["navigable", "all"]>>;
900
+ indexing: z.ZodDefault<z.ZodOptional<z.ZodEnum<["navigable", "all"]>>>;
958
901
  }, "strip", z.ZodTypeAny, {
959
902
  indexing: "all" | "navigable";
960
903
  metatags?: Record<string, string> | undefined;
@@ -1379,7 +1322,7 @@ export declare const mintConfigSchema: z.ZodObject<{
1379
1322
  group: string;
1380
1323
  icon?: string | {
1381
1324
  name: string;
1382
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1325
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1383
1326
  } | undefined;
1384
1327
  hidden?: boolean | undefined;
1385
1328
  root?: string | undefined;
@@ -1404,7 +1347,7 @@ export declare const mintConfigSchema: z.ZodObject<{
1404
1347
  group: string;
1405
1348
  icon?: string | {
1406
1349
  name: string;
1407
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1350
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1408
1351
  } | undefined;
1409
1352
  hidden?: boolean | undefined;
1410
1353
  root?: string | undefined;
@@ -1415,66 +1358,56 @@ export declare const mintConfigSchema: z.ZodObject<{
1415
1358
  }))[];
1416
1359
  } | {
1417
1360
  pages: any[];
1418
- }) & ({
1419
- global: {
1361
+ }) & {
1362
+ global?: {
1420
1363
  languages?: ({
1421
1364
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1422
1365
  hidden?: boolean | undefined;
1423
- } & ({
1424
- openapi: (string | string[]) & (string | string[] | undefined);
1425
- } | {
1366
+ } & {
1426
1367
  href: string;
1427
- }))[] | undefined;
1368
+ })[] | undefined;
1428
1369
  versions?: ({
1429
1370
  version: string;
1430
1371
  hidden?: boolean | undefined;
1431
- } & ({
1432
- openapi: (string | string[]) & (string | string[] | undefined);
1433
- } | {
1372
+ } & {
1434
1373
  href: string;
1435
- }))[] | undefined;
1374
+ })[] | undefined;
1436
1375
  tabs?: ({
1437
1376
  tab: string;
1438
1377
  icon?: string | {
1439
1378
  name: string;
1440
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1379
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1441
1380
  } | undefined;
1442
1381
  hidden?: boolean | undefined;
1443
- } & ({
1444
- openapi: (string | string[]) & (string | string[] | undefined);
1445
- } | {
1382
+ } & {
1446
1383
  href: string;
1447
- }))[] | undefined;
1384
+ })[] | undefined;
1448
1385
  dropdowns?: ({
1449
1386
  dropdown: string;
1450
1387
  icon?: string | {
1451
1388
  name: string;
1452
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1389
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1453
1390
  } | undefined;
1454
1391
  hidden?: boolean | undefined;
1455
- } & ({
1456
- openapi: (string | string[]) & (string | string[] | undefined);
1457
- } | {
1392
+ } & {
1458
1393
  href: string;
1459
- }))[] | undefined;
1394
+ })[] | undefined;
1460
1395
  anchors?: ({
1461
1396
  anchor: string;
1462
1397
  icon?: string | {
1463
1398
  name: string;
1464
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1399
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1465
1400
  } | undefined;
1466
1401
  color?: {
1467
1402
  light: string;
1468
1403
  dark: string;
1469
1404
  } | undefined;
1470
1405
  hidden?: boolean | undefined;
1471
- } & ({
1472
- openapi: (string | string[]) & (string | string[] | undefined);
1473
- } | {
1406
+ } & {
1474
1407
  href: string;
1475
- }))[] | undefined;
1476
- };
1477
- } | undefined)) & ((({
1408
+ })[] | undefined;
1409
+ } | undefined;
1410
+ }) & ((({
1478
1411
  languages: ({
1479
1412
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1480
1413
  hidden?: boolean | undefined;
@@ -1495,7 +1428,7 @@ export declare const mintConfigSchema: z.ZodObject<{
1495
1428
  group: string;
1496
1429
  icon?: string | {
1497
1430
  name: string;
1498
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1431
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1499
1432
  } | undefined;
1500
1433
  hidden?: boolean | undefined;
1501
1434
  root?: string | undefined;
@@ -1520,7 +1453,7 @@ export declare const mintConfigSchema: z.ZodObject<{
1520
1453
  group: string;
1521
1454
  icon?: string | {
1522
1455
  name: string;
1523
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1456
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1524
1457
  } | undefined;
1525
1458
  hidden?: boolean | undefined;
1526
1459
  root?: string | undefined;
@@ -1531,66 +1464,56 @@ export declare const mintConfigSchema: z.ZodObject<{
1531
1464
  }))[];
1532
1465
  } | {
1533
1466
  pages: any[];
1534
- }) & ({
1535
- global: {
1467
+ }) & {
1468
+ global?: {
1536
1469
  languages?: ({
1537
1470
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1538
1471
  hidden?: boolean | undefined;
1539
- } & ({
1540
- openapi: (string | string[]) & (string | string[] | undefined);
1541
- } | {
1472
+ } & {
1542
1473
  href: string;
1543
- }))[] | undefined;
1474
+ })[] | undefined;
1544
1475
  versions?: ({
1545
1476
  version: string;
1546
1477
  hidden?: boolean | undefined;
1547
- } & ({
1548
- openapi: (string | string[]) & (string | string[] | undefined);
1549
- } | {
1478
+ } & {
1550
1479
  href: string;
1551
- }))[] | undefined;
1480
+ })[] | undefined;
1552
1481
  tabs?: ({
1553
1482
  tab: string;
1554
1483
  icon?: string | {
1555
1484
  name: string;
1556
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1485
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1557
1486
  } | undefined;
1558
1487
  hidden?: boolean | undefined;
1559
- } & ({
1560
- openapi: (string | string[]) & (string | string[] | undefined);
1561
- } | {
1488
+ } & {
1562
1489
  href: string;
1563
- }))[] | undefined;
1490
+ })[] | undefined;
1564
1491
  dropdowns?: ({
1565
1492
  dropdown: string;
1566
1493
  icon?: string | {
1567
1494
  name: string;
1568
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1495
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1569
1496
  } | undefined;
1570
1497
  hidden?: boolean | undefined;
1571
- } & ({
1572
- openapi: (string | string[]) & (string | string[] | undefined);
1573
- } | {
1498
+ } & {
1574
1499
  href: string;
1575
- }))[] | undefined;
1500
+ })[] | undefined;
1576
1501
  anchors?: ({
1577
1502
  anchor: string;
1578
1503
  icon?: string | {
1579
1504
  name: string;
1580
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1505
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1581
1506
  } | undefined;
1582
1507
  color?: {
1583
1508
  light: string;
1584
1509
  dark: string;
1585
1510
  } | undefined;
1586
1511
  hidden?: boolean | undefined;
1587
- } & ({
1588
- openapi: (string | string[]) & (string | string[] | undefined);
1589
- } | {
1512
+ } & {
1590
1513
  href: string;
1591
- }))[] | undefined;
1592
- };
1593
- } | undefined)) | undefined);
1514
+ })[] | undefined;
1515
+ } | undefined;
1516
+ }) | undefined);
1594
1517
  description?: string | undefined;
1595
1518
  logo?: string | {
1596
1519
  light: string;
@@ -1611,6 +1534,11 @@ export declare const mintConfigSchema: z.ZodObject<{
1611
1534
  languages?: string[] | undefined;
1612
1535
  } | undefined;
1613
1536
  } | undefined;
1537
+ feedback?: {
1538
+ thumbs?: boolean | undefined;
1539
+ edits?: boolean | undefined;
1540
+ issues?: boolean | undefined;
1541
+ } | undefined;
1614
1542
  appearance?: {
1615
1543
  strict: boolean;
1616
1544
  default: "light" | "dark" | "system";
@@ -1774,7 +1702,7 @@ export declare const mintConfigSchema: z.ZodObject<{
1774
1702
  group: string;
1775
1703
  icon?: string | {
1776
1704
  name: string;
1777
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1705
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1778
1706
  } | undefined;
1779
1707
  hidden?: boolean | undefined;
1780
1708
  root?: string | undefined;
@@ -1799,7 +1727,7 @@ export declare const mintConfigSchema: z.ZodObject<{
1799
1727
  group: string;
1800
1728
  icon?: string | {
1801
1729
  name: string;
1802
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1730
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1803
1731
  } | undefined;
1804
1732
  hidden?: boolean | undefined;
1805
1733
  root?: string | undefined;
@@ -1810,66 +1738,56 @@ export declare const mintConfigSchema: z.ZodObject<{
1810
1738
  }))[];
1811
1739
  } | {
1812
1740
  pages: any[];
1813
- }) & ({
1814
- global: {
1741
+ }) & {
1742
+ global?: {
1815
1743
  languages?: ({
1816
1744
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1817
1745
  hidden?: boolean | undefined;
1818
- } & ({
1819
- openapi: (string | string[]) & (string | string[] | undefined);
1820
- } | {
1746
+ } & {
1821
1747
  href: string;
1822
- }))[] | undefined;
1748
+ })[] | undefined;
1823
1749
  versions?: ({
1824
1750
  version: string;
1825
1751
  hidden?: boolean | undefined;
1826
- } & ({
1827
- openapi: (string | string[]) & (string | string[] | undefined);
1828
- } | {
1752
+ } & {
1829
1753
  href: string;
1830
- }))[] | undefined;
1754
+ })[] | undefined;
1831
1755
  tabs?: ({
1832
1756
  tab: string;
1833
1757
  icon?: string | {
1834
1758
  name: string;
1835
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1759
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1836
1760
  } | undefined;
1837
1761
  hidden?: boolean | undefined;
1838
- } & ({
1839
- openapi: (string | string[]) & (string | string[] | undefined);
1840
- } | {
1762
+ } & {
1841
1763
  href: string;
1842
- }))[] | undefined;
1764
+ })[] | undefined;
1843
1765
  dropdowns?: ({
1844
1766
  dropdown: string;
1845
1767
  icon?: string | {
1846
1768
  name: string;
1847
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1769
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1848
1770
  } | undefined;
1849
1771
  hidden?: boolean | undefined;
1850
- } & ({
1851
- openapi: (string | string[]) & (string | string[] | undefined);
1852
- } | {
1772
+ } & {
1853
1773
  href: string;
1854
- }))[] | undefined;
1774
+ })[] | undefined;
1855
1775
  anchors?: ({
1856
1776
  anchor: string;
1857
1777
  icon?: string | {
1858
1778
  name: string;
1859
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1779
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1860
1780
  } | undefined;
1861
1781
  color?: {
1862
1782
  light: string;
1863
1783
  dark: string;
1864
1784
  } | undefined;
1865
1785
  hidden?: boolean | undefined;
1866
- } & ({
1867
- openapi: (string | string[]) & (string | string[] | undefined);
1868
- } | {
1786
+ } & {
1869
1787
  href: string;
1870
- }))[] | undefined;
1871
- };
1872
- } | undefined)) & ((({
1788
+ })[] | undefined;
1789
+ } | undefined;
1790
+ }) & ((({
1873
1791
  languages: ({
1874
1792
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1875
1793
  hidden?: boolean | undefined;
@@ -1890,7 +1808,7 @@ export declare const mintConfigSchema: z.ZodObject<{
1890
1808
  group: string;
1891
1809
  icon?: string | {
1892
1810
  name: string;
1893
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1811
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1894
1812
  } | undefined;
1895
1813
  hidden?: boolean | undefined;
1896
1814
  root?: string | undefined;
@@ -1915,7 +1833,7 @@ export declare const mintConfigSchema: z.ZodObject<{
1915
1833
  group: string;
1916
1834
  icon?: string | {
1917
1835
  name: string;
1918
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1836
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1919
1837
  } | undefined;
1920
1838
  hidden?: boolean | undefined;
1921
1839
  root?: string | undefined;
@@ -1926,66 +1844,56 @@ export declare const mintConfigSchema: z.ZodObject<{
1926
1844
  }))[];
1927
1845
  } | {
1928
1846
  pages: any[];
1929
- }) & ({
1930
- global: {
1847
+ }) & {
1848
+ global?: {
1931
1849
  languages?: ({
1932
1850
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1933
1851
  hidden?: boolean | undefined;
1934
- } & ({
1935
- openapi: (string | string[]) & (string | string[] | undefined);
1936
- } | {
1852
+ } & {
1937
1853
  href: string;
1938
- }))[] | undefined;
1854
+ })[] | undefined;
1939
1855
  versions?: ({
1940
1856
  version: string;
1941
1857
  hidden?: boolean | undefined;
1942
- } & ({
1943
- openapi: (string | string[]) & (string | string[] | undefined);
1944
- } | {
1858
+ } & {
1945
1859
  href: string;
1946
- }))[] | undefined;
1860
+ })[] | undefined;
1947
1861
  tabs?: ({
1948
1862
  tab: string;
1949
1863
  icon?: string | {
1950
1864
  name: string;
1951
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1865
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1952
1866
  } | undefined;
1953
1867
  hidden?: boolean | undefined;
1954
- } & ({
1955
- openapi: (string | string[]) & (string | string[] | undefined);
1956
- } | {
1868
+ } & {
1957
1869
  href: string;
1958
- }))[] | undefined;
1870
+ })[] | undefined;
1959
1871
  dropdowns?: ({
1960
1872
  dropdown: string;
1961
1873
  icon?: string | {
1962
1874
  name: string;
1963
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1875
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1964
1876
  } | undefined;
1965
1877
  hidden?: boolean | undefined;
1966
- } & ({
1967
- openapi: (string | string[]) & (string | string[] | undefined);
1968
- } | {
1878
+ } & {
1969
1879
  href: string;
1970
- }))[] | undefined;
1880
+ })[] | undefined;
1971
1881
  anchors?: ({
1972
1882
  anchor: string;
1973
1883
  icon?: string | {
1974
1884
  name: string;
1975
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1885
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1976
1886
  } | undefined;
1977
1887
  color?: {
1978
1888
  light: string;
1979
1889
  dark: string;
1980
1890
  } | undefined;
1981
1891
  hidden?: boolean | undefined;
1982
- } & ({
1983
- openapi: (string | string[]) & (string | string[] | undefined);
1984
- } | {
1892
+ } & {
1985
1893
  href: string;
1986
- }))[] | undefined;
1987
- };
1988
- } | undefined)) | undefined);
1894
+ })[] | undefined;
1895
+ } | undefined;
1896
+ }) | undefined);
1989
1897
  $schema?: string | undefined;
1990
1898
  description?: string | undefined;
1991
1899
  logo?: string | {
@@ -2007,6 +1915,11 @@ export declare const mintConfigSchema: z.ZodObject<{
2007
1915
  languages?: string[] | undefined;
2008
1916
  } | undefined;
2009
1917
  } | undefined;
1918
+ feedback?: {
1919
+ thumbs?: boolean | undefined;
1920
+ edits?: boolean | undefined;
1921
+ issues?: boolean | undefined;
1922
+ } | undefined;
2010
1923
  appearance?: {
2011
1924
  default?: "light" | "dark" | "system" | undefined;
2012
1925
  strict?: boolean | undefined;