@mintlify/validation 0.1.313 → 0.1.314

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. package/dist/mint-config/schemas/v2/index.d.ts +861 -11
  2. package/dist/mint-config/schemas/v2/properties/api.d.ts +18 -0
  3. package/dist/mint-config/schemas/v2/properties/api.js +2 -0
  4. package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +10 -1
  5. package/dist/mint-config/schemas/v2/properties/navigation/divisionNav.d.ts +20 -2
  6. package/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js +3 -1
  7. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +10 -1
  8. package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +108 -0
  9. package/dist/mint-config/schemas/v2/properties/navigation/groups.js +2 -0
  10. package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +84 -0
  11. package/dist/mint-config/schemas/v2/properties/navigation/languages.js +10 -1
  12. package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +13 -1
  13. package/dist/mint-config/schemas/v2/properties/navigation/version.js +10 -1
  14. package/dist/mint-config/schemas/v2/properties/reusable/asyncapi.d.ts +24 -0
  15. package/dist/mint-config/schemas/v2/properties/reusable/asyncapi.js +41 -0
  16. package/dist/mint-config/schemas/v2/themes/linden.d.ts +170 -0
  17. package/dist/mint-config/schemas/v2/themes/maple.d.ts +170 -0
  18. package/dist/mint-config/schemas/v2/themes/mint.d.ts +170 -0
  19. package/dist/mint-config/schemas/v2/themes/palm.d.ts +170 -0
  20. package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +102 -0
  21. package/dist/mint-config/schemas/v2/themes/willow.d.ts +170 -0
  22. package/dist/mint-config/validateConfig.d.ts +340 -0
  23. package/dist/tsconfig.build.tsbuildinfo +1 -1
  24. package/package.json +2 -2
@@ -52,6 +52,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
52
52
  source: string;
53
53
  directory?: string | undefined;
54
54
  }>]>>;
55
+ asyncapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
56
+ source: z.ZodEffects<z.ZodString, string, string>;
57
+ directory: z.ZodOptional<z.ZodString>;
58
+ }, "strict", z.ZodTypeAny, {
59
+ source: string;
60
+ directory?: string | undefined;
61
+ }, {
62
+ source: string;
63
+ directory?: string | undefined;
64
+ }>]>>;
55
65
  playground: z.ZodOptional<z.ZodObject<{
56
66
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
57
67
  proxy: z.ZodOptional<z.ZodBoolean>;
@@ -99,6 +109,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
99
109
  source: string;
100
110
  directory?: string | undefined;
101
111
  } | undefined;
112
+ asyncapi?: string | string[] | {
113
+ source: string;
114
+ directory?: string | undefined;
115
+ } | undefined;
102
116
  playground?: {
103
117
  display?: "simple" | "none" | "interactive" | undefined;
104
118
  proxy?: boolean | undefined;
@@ -118,6 +132,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
118
132
  source: string;
119
133
  directory?: string | undefined;
120
134
  } | undefined;
135
+ asyncapi?: string | string[] | {
136
+ source: string;
137
+ directory?: string | undefined;
138
+ } | undefined;
121
139
  playground?: {
122
140
  display?: "simple" | "none" | "interactive" | undefined;
123
141
  proxy?: boolean | undefined;
@@ -347,6 +365,60 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
347
365
  } | undefined;
348
366
  hidden?: boolean | undefined;
349
367
  root?: string | undefined;
368
+ }>, z.ZodObject<{
369
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
370
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
371
+ name: z.ZodEffects<z.ZodString, string, string>;
372
+ }, "strip", z.ZodTypeAny, {
373
+ name: string;
374
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
375
+ }, {
376
+ name: string;
377
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
378
+ }>]>>;
379
+ group: z.ZodString;
380
+ hidden: z.ZodOptional<z.ZodBoolean>;
381
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
382
+ asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
383
+ source: z.ZodEffects<z.ZodString, string, string>;
384
+ directory: z.ZodOptional<z.ZodString>;
385
+ }, "strict", z.ZodTypeAny, {
386
+ source: string;
387
+ directory?: string | undefined;
388
+ }, {
389
+ source: string;
390
+ directory?: string | undefined;
391
+ }>]>;
392
+ }, "strip", z.ZodTypeAny, {
393
+ group: string;
394
+ asyncapi: (string | string[] | {
395
+ source: string;
396
+ directory?: string | undefined;
397
+ }) & (string | string[] | {
398
+ source: string;
399
+ directory?: string | undefined;
400
+ } | undefined);
401
+ icon?: string | {
402
+ name: string;
403
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
404
+ } | undefined;
405
+ hidden?: boolean | undefined;
406
+ root?: string | undefined;
407
+ }, {
408
+ group: string;
409
+ asyncapi: (string | string[] | {
410
+ source: string;
411
+ directory?: string | undefined;
412
+ }) & (string | string[] | {
413
+ source: string;
414
+ directory?: string | undefined;
415
+ } | undefined);
416
+ icon?: string | {
417
+ name: string;
418
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
419
+ } | undefined;
420
+ hidden?: boolean | undefined;
421
+ root?: string | undefined;
350
422
  }>, z.ZodObject<{
351
423
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
352
424
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
@@ -397,6 +469,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
397
469
  } | undefined;
398
470
  hidden?: boolean | undefined;
399
471
  root?: string | undefined;
472
+ } | {
473
+ group: string;
474
+ asyncapi: (string | string[] | {
475
+ source: string;
476
+ directory?: string | undefined;
477
+ }) & (string | string[] | {
478
+ source: string;
479
+ directory?: string | undefined;
480
+ } | undefined);
481
+ icon?: string | {
482
+ name: string;
483
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
484
+ } | undefined;
485
+ hidden?: boolean | undefined;
486
+ root?: string | undefined;
400
487
  } | {
401
488
  group: string;
402
489
  pages: any[];
@@ -424,6 +511,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
424
511
  } | undefined;
425
512
  hidden?: boolean | undefined;
426
513
  root?: string | undefined;
514
+ } | {
515
+ group: string;
516
+ asyncapi: (string | string[] | {
517
+ source: string;
518
+ directory?: string | undefined;
519
+ }) & (string | string[] | {
520
+ source: string;
521
+ directory?: string | undefined;
522
+ } | undefined);
523
+ icon?: string | {
524
+ name: string;
525
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
526
+ } | undefined;
527
+ hidden?: boolean | undefined;
528
+ root?: string | undefined;
427
529
  } | {
428
530
  group: string;
429
531
  pages: any[];
@@ -973,6 +1075,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
973
1075
  } | undefined;
974
1076
  hidden?: boolean | undefined;
975
1077
  root?: string | undefined;
1078
+ } | {
1079
+ group: string;
1080
+ asyncapi: (string | string[] | {
1081
+ source: string;
1082
+ directory?: string | undefined;
1083
+ }) & (string | string[] | {
1084
+ source: string;
1085
+ directory?: string | undefined;
1086
+ } | undefined);
1087
+ icon?: string | {
1088
+ name: string;
1089
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1090
+ } | undefined;
1091
+ hidden?: boolean | undefined;
1092
+ root?: string | undefined;
976
1093
  } | {
977
1094
  group: string;
978
1095
  pages: any[];
@@ -1018,6 +1135,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1018
1135
  } | undefined;
1019
1136
  hidden?: boolean | undefined;
1020
1137
  root?: string | undefined;
1138
+ } | {
1139
+ group: string;
1140
+ asyncapi: (string | string[] | {
1141
+ source: string;
1142
+ directory?: string | undefined;
1143
+ }) & (string | string[] | {
1144
+ source: string;
1145
+ directory?: string | undefined;
1146
+ } | undefined);
1147
+ icon?: string | {
1148
+ name: string;
1149
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1150
+ } | undefined;
1151
+ hidden?: boolean | undefined;
1152
+ root?: string | undefined;
1021
1153
  } | {
1022
1154
  group: string;
1023
1155
  pages: any[];
@@ -1048,6 +1180,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1048
1180
  source: string;
1049
1181
  directory?: string | undefined;
1050
1182
  } | undefined;
1183
+ asyncapi?: string | string[] | {
1184
+ source: string;
1185
+ directory?: string | undefined;
1186
+ } | undefined;
1051
1187
  playground?: {
1052
1188
  display?: "simple" | "none" | "interactive" | undefined;
1053
1189
  proxy?: boolean | undefined;
@@ -1246,6 +1382,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1246
1382
  } | undefined;
1247
1383
  hidden?: boolean | undefined;
1248
1384
  root?: string | undefined;
1385
+ } | {
1386
+ group: string;
1387
+ asyncapi: (string | string[] | {
1388
+ source: string;
1389
+ directory?: string | undefined;
1390
+ }) & (string | string[] | {
1391
+ source: string;
1392
+ directory?: string | undefined;
1393
+ } | undefined);
1394
+ icon?: string | {
1395
+ name: string;
1396
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1397
+ } | undefined;
1398
+ hidden?: boolean | undefined;
1399
+ root?: string | undefined;
1249
1400
  } | {
1250
1401
  group: string;
1251
1402
  pages: any[];
@@ -1291,6 +1442,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1291
1442
  } | undefined;
1292
1443
  hidden?: boolean | undefined;
1293
1444
  root?: string | undefined;
1445
+ } | {
1446
+ group: string;
1447
+ asyncapi: (string | string[] | {
1448
+ source: string;
1449
+ directory?: string | undefined;
1450
+ }) & (string | string[] | {
1451
+ source: string;
1452
+ directory?: string | undefined;
1453
+ } | undefined);
1454
+ icon?: string | {
1455
+ name: string;
1456
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1457
+ } | undefined;
1458
+ hidden?: boolean | undefined;
1459
+ root?: string | undefined;
1294
1460
  } | {
1295
1461
  group: string;
1296
1462
  pages: any[];
@@ -1322,6 +1488,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1322
1488
  source: string;
1323
1489
  directory?: string | undefined;
1324
1490
  } | undefined;
1491
+ asyncapi?: string | string[] | {
1492
+ source: string;
1493
+ directory?: string | undefined;
1494
+ } | undefined;
1325
1495
  playground?: {
1326
1496
  display?: "simple" | "none" | "interactive" | undefined;
1327
1497
  proxy?: boolean | undefined;
@@ -1532,6 +1702,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1532
1702
  source: string;
1533
1703
  directory?: string | undefined;
1534
1704
  }>]>>;
1705
+ asyncapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
1706
+ source: z.ZodEffects<z.ZodString, string, string>;
1707
+ directory: z.ZodOptional<z.ZodString>;
1708
+ }, "strict", z.ZodTypeAny, {
1709
+ source: string;
1710
+ directory?: string | undefined;
1711
+ }, {
1712
+ source: string;
1713
+ directory?: string | undefined;
1714
+ }>]>>;
1535
1715
  playground: z.ZodOptional<z.ZodObject<{
1536
1716
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
1537
1717
  proxy: z.ZodOptional<z.ZodBoolean>;
@@ -1579,6 +1759,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1579
1759
  source: string;
1580
1760
  directory?: string | undefined;
1581
1761
  } | undefined;
1762
+ asyncapi?: string | string[] | {
1763
+ source: string;
1764
+ directory?: string | undefined;
1765
+ } | undefined;
1582
1766
  playground?: {
1583
1767
  display?: "simple" | "none" | "interactive" | undefined;
1584
1768
  proxy?: boolean | undefined;
@@ -1598,6 +1782,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1598
1782
  source: string;
1599
1783
  directory?: string | undefined;
1600
1784
  } | undefined;
1785
+ asyncapi?: string | string[] | {
1786
+ source: string;
1787
+ directory?: string | undefined;
1788
+ } | undefined;
1601
1789
  playground?: {
1602
1790
  display?: "simple" | "none" | "interactive" | undefined;
1603
1791
  proxy?: boolean | undefined;
@@ -1827,6 +2015,60 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1827
2015
  } | undefined;
1828
2016
  hidden?: boolean | undefined;
1829
2017
  root?: string | undefined;
2018
+ }>, z.ZodObject<{
2019
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
2020
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
2021
+ name: z.ZodEffects<z.ZodString, string, string>;
2022
+ }, "strip", z.ZodTypeAny, {
2023
+ name: string;
2024
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2025
+ }, {
2026
+ name: string;
2027
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2028
+ }>]>>;
2029
+ group: z.ZodString;
2030
+ hidden: z.ZodOptional<z.ZodBoolean>;
2031
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2032
+ asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
2033
+ source: z.ZodEffects<z.ZodString, string, string>;
2034
+ directory: z.ZodOptional<z.ZodString>;
2035
+ }, "strict", z.ZodTypeAny, {
2036
+ source: string;
2037
+ directory?: string | undefined;
2038
+ }, {
2039
+ source: string;
2040
+ directory?: string | undefined;
2041
+ }>]>;
2042
+ }, "strip", z.ZodTypeAny, {
2043
+ group: string;
2044
+ asyncapi: (string | string[] | {
2045
+ source: string;
2046
+ directory?: string | undefined;
2047
+ }) & (string | string[] | {
2048
+ source: string;
2049
+ directory?: string | undefined;
2050
+ } | undefined);
2051
+ icon?: string | {
2052
+ name: string;
2053
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2054
+ } | undefined;
2055
+ hidden?: boolean | undefined;
2056
+ root?: string | undefined;
2057
+ }, {
2058
+ group: string;
2059
+ asyncapi: (string | string[] | {
2060
+ source: string;
2061
+ directory?: string | undefined;
2062
+ }) & (string | string[] | {
2063
+ source: string;
2064
+ directory?: string | undefined;
2065
+ } | undefined);
2066
+ icon?: string | {
2067
+ name: string;
2068
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2069
+ } | undefined;
2070
+ hidden?: boolean | undefined;
2071
+ root?: string | undefined;
1830
2072
  }>, z.ZodObject<{
1831
2073
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1832
2074
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
@@ -1877,6 +2119,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1877
2119
  } | undefined;
1878
2120
  hidden?: boolean | undefined;
1879
2121
  root?: string | undefined;
2122
+ } | {
2123
+ group: string;
2124
+ asyncapi: (string | string[] | {
2125
+ source: string;
2126
+ directory?: string | undefined;
2127
+ }) & (string | string[] | {
2128
+ source: string;
2129
+ directory?: string | undefined;
2130
+ } | undefined);
2131
+ icon?: string | {
2132
+ name: string;
2133
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2134
+ } | undefined;
2135
+ hidden?: boolean | undefined;
2136
+ root?: string | undefined;
1880
2137
  } | {
1881
2138
  group: string;
1882
2139
  pages: any[];
@@ -1904,6 +2161,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1904
2161
  } | undefined;
1905
2162
  hidden?: boolean | undefined;
1906
2163
  root?: string | undefined;
2164
+ } | {
2165
+ group: string;
2166
+ asyncapi: (string | string[] | {
2167
+ source: string;
2168
+ directory?: string | undefined;
2169
+ }) & (string | string[] | {
2170
+ source: string;
2171
+ directory?: string | undefined;
2172
+ } | undefined);
2173
+ icon?: string | {
2174
+ name: string;
2175
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2176
+ } | undefined;
2177
+ hidden?: boolean | undefined;
2178
+ root?: string | undefined;
1907
2179
  } | {
1908
2180
  group: string;
1909
2181
  pages: any[];
@@ -2455,12 +2727,27 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2455
2727
  root?: string | undefined;
2456
2728
  } | {
2457
2729
  group: string;
2458
- pages: any[];
2459
- icon?: string | {
2460
- name: string;
2461
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2462
- } | undefined;
2463
- hidden?: boolean | undefined;
2730
+ asyncapi: (string | string[] | {
2731
+ source: string;
2732
+ directory?: string | undefined;
2733
+ }) & (string | string[] | {
2734
+ source: string;
2735
+ directory?: string | undefined;
2736
+ } | undefined);
2737
+ icon?: string | {
2738
+ name: string;
2739
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2740
+ } | undefined;
2741
+ hidden?: boolean | undefined;
2742
+ root?: string | undefined;
2743
+ } | {
2744
+ group: string;
2745
+ pages: any[];
2746
+ icon?: string | {
2747
+ name: string;
2748
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2749
+ } | undefined;
2750
+ hidden?: boolean | undefined;
2464
2751
  root?: string | undefined;
2465
2752
  })[];
2466
2753
  global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
@@ -2498,6 +2785,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2498
2785
  } | undefined;
2499
2786
  hidden?: boolean | undefined;
2500
2787
  root?: string | undefined;
2788
+ } | {
2789
+ group: string;
2790
+ asyncapi: (string | string[] | {
2791
+ source: string;
2792
+ directory?: string | undefined;
2793
+ }) & (string | string[] | {
2794
+ source: string;
2795
+ directory?: string | undefined;
2796
+ } | undefined);
2797
+ icon?: string | {
2798
+ name: string;
2799
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2800
+ } | undefined;
2801
+ hidden?: boolean | undefined;
2802
+ root?: string | undefined;
2501
2803
  } | {
2502
2804
  group: string;
2503
2805
  pages: any[];
@@ -2528,6 +2830,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2528
2830
  source: string;
2529
2831
  directory?: string | undefined;
2530
2832
  } | undefined;
2833
+ asyncapi?: string | string[] | {
2834
+ source: string;
2835
+ directory?: string | undefined;
2836
+ } | undefined;
2531
2837
  playground?: {
2532
2838
  display?: "simple" | "none" | "interactive" | undefined;
2533
2839
  proxy?: boolean | undefined;
@@ -2726,6 +3032,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2726
3032
  } | undefined;
2727
3033
  hidden?: boolean | undefined;
2728
3034
  root?: string | undefined;
3035
+ } | {
3036
+ group: string;
3037
+ asyncapi: (string | string[] | {
3038
+ source: string;
3039
+ directory?: string | undefined;
3040
+ }) & (string | string[] | {
3041
+ source: string;
3042
+ directory?: string | undefined;
3043
+ } | undefined);
3044
+ icon?: string | {
3045
+ name: string;
3046
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3047
+ } | undefined;
3048
+ hidden?: boolean | undefined;
3049
+ root?: string | undefined;
2729
3050
  } | {
2730
3051
  group: string;
2731
3052
  pages: any[];
@@ -2771,6 +3092,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2771
3092
  } | undefined;
2772
3093
  hidden?: boolean | undefined;
2773
3094
  root?: string | undefined;
3095
+ } | {
3096
+ group: string;
3097
+ asyncapi: (string | string[] | {
3098
+ source: string;
3099
+ directory?: string | undefined;
3100
+ }) & (string | string[] | {
3101
+ source: string;
3102
+ directory?: string | undefined;
3103
+ } | undefined);
3104
+ icon?: string | {
3105
+ name: string;
3106
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3107
+ } | undefined;
3108
+ hidden?: boolean | undefined;
3109
+ root?: string | undefined;
2774
3110
  } | {
2775
3111
  group: string;
2776
3112
  pages: any[];
@@ -2802,6 +3138,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2802
3138
  source: string;
2803
3139
  directory?: string | undefined;
2804
3140
  } | undefined;
3141
+ asyncapi?: string | string[] | {
3142
+ source: string;
3143
+ directory?: string | undefined;
3144
+ } | undefined;
2805
3145
  playground?: {
2806
3146
  display?: "simple" | "none" | "interactive" | undefined;
2807
3147
  proxy?: boolean | undefined;
@@ -3012,6 +3352,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3012
3352
  source: string;
3013
3353
  directory?: string | undefined;
3014
3354
  }>]>>;
3355
+ asyncapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
3356
+ source: z.ZodEffects<z.ZodString, string, string>;
3357
+ directory: z.ZodOptional<z.ZodString>;
3358
+ }, "strict", z.ZodTypeAny, {
3359
+ source: string;
3360
+ directory?: string | undefined;
3361
+ }, {
3362
+ source: string;
3363
+ directory?: string | undefined;
3364
+ }>]>>;
3015
3365
  playground: z.ZodOptional<z.ZodObject<{
3016
3366
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
3017
3367
  proxy: z.ZodOptional<z.ZodBoolean>;
@@ -3059,6 +3409,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3059
3409
  source: string;
3060
3410
  directory?: string | undefined;
3061
3411
  } | undefined;
3412
+ asyncapi?: string | string[] | {
3413
+ source: string;
3414
+ directory?: string | undefined;
3415
+ } | undefined;
3062
3416
  playground?: {
3063
3417
  display?: "simple" | "none" | "interactive" | undefined;
3064
3418
  proxy?: boolean | undefined;
@@ -3078,6 +3432,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3078
3432
  source: string;
3079
3433
  directory?: string | undefined;
3080
3434
  } | undefined;
3435
+ asyncapi?: string | string[] | {
3436
+ source: string;
3437
+ directory?: string | undefined;
3438
+ } | undefined;
3081
3439
  playground?: {
3082
3440
  display?: "simple" | "none" | "interactive" | undefined;
3083
3441
  proxy?: boolean | undefined;
@@ -3307,6 +3665,60 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3307
3665
  } | undefined;
3308
3666
  hidden?: boolean | undefined;
3309
3667
  root?: string | undefined;
3668
+ }>, z.ZodObject<{
3669
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
3670
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
3671
+ name: z.ZodEffects<z.ZodString, string, string>;
3672
+ }, "strip", z.ZodTypeAny, {
3673
+ name: string;
3674
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3675
+ }, {
3676
+ name: string;
3677
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3678
+ }>]>>;
3679
+ group: z.ZodString;
3680
+ hidden: z.ZodOptional<z.ZodBoolean>;
3681
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
3682
+ asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
3683
+ source: z.ZodEffects<z.ZodString, string, string>;
3684
+ directory: z.ZodOptional<z.ZodString>;
3685
+ }, "strict", z.ZodTypeAny, {
3686
+ source: string;
3687
+ directory?: string | undefined;
3688
+ }, {
3689
+ source: string;
3690
+ directory?: string | undefined;
3691
+ }>]>;
3692
+ }, "strip", z.ZodTypeAny, {
3693
+ group: string;
3694
+ asyncapi: (string | string[] | {
3695
+ source: string;
3696
+ directory?: string | undefined;
3697
+ }) & (string | string[] | {
3698
+ source: string;
3699
+ directory?: string | undefined;
3700
+ } | undefined);
3701
+ icon?: string | {
3702
+ name: string;
3703
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3704
+ } | undefined;
3705
+ hidden?: boolean | undefined;
3706
+ root?: string | undefined;
3707
+ }, {
3708
+ group: string;
3709
+ asyncapi: (string | string[] | {
3710
+ source: string;
3711
+ directory?: string | undefined;
3712
+ }) & (string | string[] | {
3713
+ source: string;
3714
+ directory?: string | undefined;
3715
+ } | undefined);
3716
+ icon?: string | {
3717
+ name: string;
3718
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3719
+ } | undefined;
3720
+ hidden?: boolean | undefined;
3721
+ root?: string | undefined;
3310
3722
  }>, z.ZodObject<{
3311
3723
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
3312
3724
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
@@ -3357,6 +3769,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3357
3769
  } | undefined;
3358
3770
  hidden?: boolean | undefined;
3359
3771
  root?: string | undefined;
3772
+ } | {
3773
+ group: string;
3774
+ asyncapi: (string | string[] | {
3775
+ source: string;
3776
+ directory?: string | undefined;
3777
+ }) & (string | string[] | {
3778
+ source: string;
3779
+ directory?: string | undefined;
3780
+ } | undefined);
3781
+ icon?: string | {
3782
+ name: string;
3783
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3784
+ } | undefined;
3785
+ hidden?: boolean | undefined;
3786
+ root?: string | undefined;
3360
3787
  } | {
3361
3788
  group: string;
3362
3789
  pages: any[];
@@ -3384,6 +3811,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3384
3811
  } | undefined;
3385
3812
  hidden?: boolean | undefined;
3386
3813
  root?: string | undefined;
3814
+ } | {
3815
+ group: string;
3816
+ asyncapi: (string | string[] | {
3817
+ source: string;
3818
+ directory?: string | undefined;
3819
+ }) & (string | string[] | {
3820
+ source: string;
3821
+ directory?: string | undefined;
3822
+ } | undefined);
3823
+ icon?: string | {
3824
+ name: string;
3825
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3826
+ } | undefined;
3827
+ hidden?: boolean | undefined;
3828
+ root?: string | undefined;
3387
3829
  } | {
3388
3830
  group: string;
3389
3831
  pages: any[];
@@ -3933,6 +4375,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3933
4375
  } | undefined;
3934
4376
  hidden?: boolean | undefined;
3935
4377
  root?: string | undefined;
4378
+ } | {
4379
+ group: string;
4380
+ asyncapi: (string | string[] | {
4381
+ source: string;
4382
+ directory?: string | undefined;
4383
+ }) & (string | string[] | {
4384
+ source: string;
4385
+ directory?: string | undefined;
4386
+ } | undefined);
4387
+ icon?: string | {
4388
+ name: string;
4389
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4390
+ } | undefined;
4391
+ hidden?: boolean | undefined;
4392
+ root?: string | undefined;
3936
4393
  } | {
3937
4394
  group: string;
3938
4395
  pages: any[];
@@ -3978,6 +4435,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3978
4435
  } | undefined;
3979
4436
  hidden?: boolean | undefined;
3980
4437
  root?: string | undefined;
4438
+ } | {
4439
+ group: string;
4440
+ asyncapi: (string | string[] | {
4441
+ source: string;
4442
+ directory?: string | undefined;
4443
+ }) & (string | string[] | {
4444
+ source: string;
4445
+ directory?: string | undefined;
4446
+ } | undefined);
4447
+ icon?: string | {
4448
+ name: string;
4449
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4450
+ } | undefined;
4451
+ hidden?: boolean | undefined;
4452
+ root?: string | undefined;
3981
4453
  } | {
3982
4454
  group: string;
3983
4455
  pages: any[];
@@ -4008,6 +4480,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4008
4480
  source: string;
4009
4481
  directory?: string | undefined;
4010
4482
  } | undefined;
4483
+ asyncapi?: string | string[] | {
4484
+ source: string;
4485
+ directory?: string | undefined;
4486
+ } | undefined;
4011
4487
  playground?: {
4012
4488
  display?: "simple" | "none" | "interactive" | undefined;
4013
4489
  proxy?: boolean | undefined;
@@ -4206,6 +4682,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4206
4682
  } | undefined;
4207
4683
  hidden?: boolean | undefined;
4208
4684
  root?: string | undefined;
4685
+ } | {
4686
+ group: string;
4687
+ asyncapi: (string | string[] | {
4688
+ source: string;
4689
+ directory?: string | undefined;
4690
+ }) & (string | string[] | {
4691
+ source: string;
4692
+ directory?: string | undefined;
4693
+ } | undefined);
4694
+ icon?: string | {
4695
+ name: string;
4696
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4697
+ } | undefined;
4698
+ hidden?: boolean | undefined;
4699
+ root?: string | undefined;
4209
4700
  } | {
4210
4701
  group: string;
4211
4702
  pages: any[];
@@ -4251,6 +4742,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4251
4742
  } | undefined;
4252
4743
  hidden?: boolean | undefined;
4253
4744
  root?: string | undefined;
4745
+ } | {
4746
+ group: string;
4747
+ asyncapi: (string | string[] | {
4748
+ source: string;
4749
+ directory?: string | undefined;
4750
+ }) & (string | string[] | {
4751
+ source: string;
4752
+ directory?: string | undefined;
4753
+ } | undefined);
4754
+ icon?: string | {
4755
+ name: string;
4756
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4757
+ } | undefined;
4758
+ hidden?: boolean | undefined;
4759
+ root?: string | undefined;
4254
4760
  } | {
4255
4761
  group: string;
4256
4762
  pages: any[];
@@ -4282,6 +4788,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4282
4788
  source: string;
4283
4789
  directory?: string | undefined;
4284
4790
  } | undefined;
4791
+ asyncapi?: string | string[] | {
4792
+ source: string;
4793
+ directory?: string | undefined;
4794
+ } | undefined;
4285
4795
  playground?: {
4286
4796
  display?: "simple" | "none" | "interactive" | undefined;
4287
4797
  proxy?: boolean | undefined;
@@ -4492,6 +5002,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4492
5002
  source: string;
4493
5003
  directory?: string | undefined;
4494
5004
  }>]>>;
5005
+ asyncapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
5006
+ source: z.ZodEffects<z.ZodString, string, string>;
5007
+ directory: z.ZodOptional<z.ZodString>;
5008
+ }, "strict", z.ZodTypeAny, {
5009
+ source: string;
5010
+ directory?: string | undefined;
5011
+ }, {
5012
+ source: string;
5013
+ directory?: string | undefined;
5014
+ }>]>>;
4495
5015
  playground: z.ZodOptional<z.ZodObject<{
4496
5016
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
4497
5017
  proxy: z.ZodOptional<z.ZodBoolean>;
@@ -4539,6 +5059,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4539
5059
  source: string;
4540
5060
  directory?: string | undefined;
4541
5061
  } | undefined;
5062
+ asyncapi?: string | string[] | {
5063
+ source: string;
5064
+ directory?: string | undefined;
5065
+ } | undefined;
4542
5066
  playground?: {
4543
5067
  display?: "simple" | "none" | "interactive" | undefined;
4544
5068
  proxy?: boolean | undefined;
@@ -4558,6 +5082,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4558
5082
  source: string;
4559
5083
  directory?: string | undefined;
4560
5084
  } | undefined;
5085
+ asyncapi?: string | string[] | {
5086
+ source: string;
5087
+ directory?: string | undefined;
5088
+ } | undefined;
4561
5089
  playground?: {
4562
5090
  display?: "simple" | "none" | "interactive" | undefined;
4563
5091
  proxy?: boolean | undefined;
@@ -4747,7 +5275,61 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4747
5275
  group: z.ZodString;
4748
5276
  hidden: z.ZodOptional<z.ZodBoolean>;
4749
5277
  root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
4750
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
5278
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
5279
+ source: z.ZodEffects<z.ZodString, string, string>;
5280
+ directory: z.ZodOptional<z.ZodString>;
5281
+ }, "strict", z.ZodTypeAny, {
5282
+ source: string;
5283
+ directory?: string | undefined;
5284
+ }, {
5285
+ source: string;
5286
+ directory?: string | undefined;
5287
+ }>]>;
5288
+ }, "strip", z.ZodTypeAny, {
5289
+ openapi: (string | string[] | {
5290
+ source: string;
5291
+ directory?: string | undefined;
5292
+ }) & (string | string[] | {
5293
+ source: string;
5294
+ directory?: string | undefined;
5295
+ } | undefined);
5296
+ group: string;
5297
+ icon?: string | {
5298
+ name: string;
5299
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5300
+ } | undefined;
5301
+ hidden?: boolean | undefined;
5302
+ root?: string | undefined;
5303
+ }, {
5304
+ openapi: (string | string[] | {
5305
+ source: string;
5306
+ directory?: string | undefined;
5307
+ }) & (string | string[] | {
5308
+ source: string;
5309
+ directory?: string | undefined;
5310
+ } | undefined);
5311
+ group: string;
5312
+ icon?: string | {
5313
+ name: string;
5314
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5315
+ } | undefined;
5316
+ hidden?: boolean | undefined;
5317
+ root?: string | undefined;
5318
+ }>, z.ZodObject<{
5319
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
5320
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
5321
+ name: z.ZodEffects<z.ZodString, string, string>;
5322
+ }, "strip", z.ZodTypeAny, {
5323
+ name: string;
5324
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5325
+ }, {
5326
+ name: string;
5327
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5328
+ }>]>>;
5329
+ group: z.ZodString;
5330
+ hidden: z.ZodOptional<z.ZodBoolean>;
5331
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
5332
+ asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
4751
5333
  source: z.ZodEffects<z.ZodString, string, string>;
4752
5334
  directory: z.ZodOptional<z.ZodString>;
4753
5335
  }, "strict", z.ZodTypeAny, {
@@ -4758,14 +5340,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4758
5340
  directory?: string | undefined;
4759
5341
  }>]>;
4760
5342
  }, "strip", z.ZodTypeAny, {
4761
- openapi: (string | string[] | {
5343
+ group: string;
5344
+ asyncapi: (string | string[] | {
4762
5345
  source: string;
4763
5346
  directory?: string | undefined;
4764
5347
  }) & (string | string[] | {
4765
5348
  source: string;
4766
5349
  directory?: string | undefined;
4767
5350
  } | undefined);
4768
- group: string;
4769
5351
  icon?: string | {
4770
5352
  name: string;
4771
5353
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
@@ -4773,14 +5355,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4773
5355
  hidden?: boolean | undefined;
4774
5356
  root?: string | undefined;
4775
5357
  }, {
4776
- openapi: (string | string[] | {
5358
+ group: string;
5359
+ asyncapi: (string | string[] | {
4777
5360
  source: string;
4778
5361
  directory?: string | undefined;
4779
5362
  }) & (string | string[] | {
4780
5363
  source: string;
4781
5364
  directory?: string | undefined;
4782
5365
  } | undefined);
4783
- group: string;
4784
5366
  icon?: string | {
4785
5367
  name: string;
4786
5368
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
@@ -4837,6 +5419,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4837
5419
  } | undefined;
4838
5420
  hidden?: boolean | undefined;
4839
5421
  root?: string | undefined;
5422
+ } | {
5423
+ group: string;
5424
+ asyncapi: (string | string[] | {
5425
+ source: string;
5426
+ directory?: string | undefined;
5427
+ }) & (string | string[] | {
5428
+ source: string;
5429
+ directory?: string | undefined;
5430
+ } | undefined);
5431
+ icon?: string | {
5432
+ name: string;
5433
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5434
+ } | undefined;
5435
+ hidden?: boolean | undefined;
5436
+ root?: string | undefined;
4840
5437
  } | {
4841
5438
  group: string;
4842
5439
  pages: any[];
@@ -4864,6 +5461,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4864
5461
  } | undefined;
4865
5462
  hidden?: boolean | undefined;
4866
5463
  root?: string | undefined;
5464
+ } | {
5465
+ group: string;
5466
+ asyncapi: (string | string[] | {
5467
+ source: string;
5468
+ directory?: string | undefined;
5469
+ }) & (string | string[] | {
5470
+ source: string;
5471
+ directory?: string | undefined;
5472
+ } | undefined);
5473
+ icon?: string | {
5474
+ name: string;
5475
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5476
+ } | undefined;
5477
+ hidden?: boolean | undefined;
5478
+ root?: string | undefined;
4867
5479
  } | {
4868
5480
  group: string;
4869
5481
  pages: any[];
@@ -5413,6 +6025,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5413
6025
  } | undefined;
5414
6026
  hidden?: boolean | undefined;
5415
6027
  root?: string | undefined;
6028
+ } | {
6029
+ group: string;
6030
+ asyncapi: (string | string[] | {
6031
+ source: string;
6032
+ directory?: string | undefined;
6033
+ }) & (string | string[] | {
6034
+ source: string;
6035
+ directory?: string | undefined;
6036
+ } | undefined);
6037
+ icon?: string | {
6038
+ name: string;
6039
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6040
+ } | undefined;
6041
+ hidden?: boolean | undefined;
6042
+ root?: string | undefined;
5416
6043
  } | {
5417
6044
  group: string;
5418
6045
  pages: any[];
@@ -5458,6 +6085,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5458
6085
  } | undefined;
5459
6086
  hidden?: boolean | undefined;
5460
6087
  root?: string | undefined;
6088
+ } | {
6089
+ group: string;
6090
+ asyncapi: (string | string[] | {
6091
+ source: string;
6092
+ directory?: string | undefined;
6093
+ }) & (string | string[] | {
6094
+ source: string;
6095
+ directory?: string | undefined;
6096
+ } | undefined);
6097
+ icon?: string | {
6098
+ name: string;
6099
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6100
+ } | undefined;
6101
+ hidden?: boolean | undefined;
6102
+ root?: string | undefined;
5461
6103
  } | {
5462
6104
  group: string;
5463
6105
  pages: any[];
@@ -5488,6 +6130,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5488
6130
  source: string;
5489
6131
  directory?: string | undefined;
5490
6132
  } | undefined;
6133
+ asyncapi?: string | string[] | {
6134
+ source: string;
6135
+ directory?: string | undefined;
6136
+ } | undefined;
5491
6137
  playground?: {
5492
6138
  display?: "simple" | "none" | "interactive" | undefined;
5493
6139
  proxy?: boolean | undefined;
@@ -5686,6 +6332,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5686
6332
  } | undefined;
5687
6333
  hidden?: boolean | undefined;
5688
6334
  root?: string | undefined;
6335
+ } | {
6336
+ group: string;
6337
+ asyncapi: (string | string[] | {
6338
+ source: string;
6339
+ directory?: string | undefined;
6340
+ }) & (string | string[] | {
6341
+ source: string;
6342
+ directory?: string | undefined;
6343
+ } | undefined);
6344
+ icon?: string | {
6345
+ name: string;
6346
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6347
+ } | undefined;
6348
+ hidden?: boolean | undefined;
6349
+ root?: string | undefined;
5689
6350
  } | {
5690
6351
  group: string;
5691
6352
  pages: any[];
@@ -5731,6 +6392,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5731
6392
  } | undefined;
5732
6393
  hidden?: boolean | undefined;
5733
6394
  root?: string | undefined;
6395
+ } | {
6396
+ group: string;
6397
+ asyncapi: (string | string[] | {
6398
+ source: string;
6399
+ directory?: string | undefined;
6400
+ }) & (string | string[] | {
6401
+ source: string;
6402
+ directory?: string | undefined;
6403
+ } | undefined);
6404
+ icon?: string | {
6405
+ name: string;
6406
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6407
+ } | undefined;
6408
+ hidden?: boolean | undefined;
6409
+ root?: string | undefined;
5734
6410
  } | {
5735
6411
  group: string;
5736
6412
  pages: any[];
@@ -5762,6 +6438,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5762
6438
  source: string;
5763
6439
  directory?: string | undefined;
5764
6440
  } | undefined;
6441
+ asyncapi?: string | string[] | {
6442
+ source: string;
6443
+ directory?: string | undefined;
6444
+ } | undefined;
5765
6445
  playground?: {
5766
6446
  display?: "simple" | "none" | "interactive" | undefined;
5767
6447
  proxy?: boolean | undefined;
@@ -5972,6 +6652,16 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5972
6652
  source: string;
5973
6653
  directory?: string | undefined;
5974
6654
  }>]>>;
6655
+ asyncapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
6656
+ source: z.ZodEffects<z.ZodString, string, string>;
6657
+ directory: z.ZodOptional<z.ZodString>;
6658
+ }, "strict", z.ZodTypeAny, {
6659
+ source: string;
6660
+ directory?: string | undefined;
6661
+ }, {
6662
+ source: string;
6663
+ directory?: string | undefined;
6664
+ }>]>>;
5975
6665
  playground: z.ZodOptional<z.ZodObject<{
5976
6666
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
5977
6667
  proxy: z.ZodOptional<z.ZodBoolean>;
@@ -6019,6 +6709,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6019
6709
  source: string;
6020
6710
  directory?: string | undefined;
6021
6711
  } | undefined;
6712
+ asyncapi?: string | string[] | {
6713
+ source: string;
6714
+ directory?: string | undefined;
6715
+ } | undefined;
6022
6716
  playground?: {
6023
6717
  display?: "simple" | "none" | "interactive" | undefined;
6024
6718
  proxy?: boolean | undefined;
@@ -6038,6 +6732,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6038
6732
  source: string;
6039
6733
  directory?: string | undefined;
6040
6734
  } | undefined;
6735
+ asyncapi?: string | string[] | {
6736
+ source: string;
6737
+ directory?: string | undefined;
6738
+ } | undefined;
6041
6739
  playground?: {
6042
6740
  display?: "simple" | "none" | "interactive" | undefined;
6043
6741
  proxy?: boolean | undefined;
@@ -6267,6 +6965,60 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6267
6965
  } | undefined;
6268
6966
  hidden?: boolean | undefined;
6269
6967
  root?: string | undefined;
6968
+ }>, z.ZodObject<{
6969
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
6970
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
6971
+ name: z.ZodEffects<z.ZodString, string, string>;
6972
+ }, "strip", z.ZodTypeAny, {
6973
+ name: string;
6974
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6975
+ }, {
6976
+ name: string;
6977
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6978
+ }>]>>;
6979
+ group: z.ZodString;
6980
+ hidden: z.ZodOptional<z.ZodBoolean>;
6981
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
6982
+ asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
6983
+ source: z.ZodEffects<z.ZodString, string, string>;
6984
+ directory: z.ZodOptional<z.ZodString>;
6985
+ }, "strict", z.ZodTypeAny, {
6986
+ source: string;
6987
+ directory?: string | undefined;
6988
+ }, {
6989
+ source: string;
6990
+ directory?: string | undefined;
6991
+ }>]>;
6992
+ }, "strip", z.ZodTypeAny, {
6993
+ group: string;
6994
+ asyncapi: (string | string[] | {
6995
+ source: string;
6996
+ directory?: string | undefined;
6997
+ }) & (string | string[] | {
6998
+ source: string;
6999
+ directory?: string | undefined;
7000
+ } | undefined);
7001
+ icon?: string | {
7002
+ name: string;
7003
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7004
+ } | undefined;
7005
+ hidden?: boolean | undefined;
7006
+ root?: string | undefined;
7007
+ }, {
7008
+ group: string;
7009
+ asyncapi: (string | string[] | {
7010
+ source: string;
7011
+ directory?: string | undefined;
7012
+ }) & (string | string[] | {
7013
+ source: string;
7014
+ directory?: string | undefined;
7015
+ } | undefined);
7016
+ icon?: string | {
7017
+ name: string;
7018
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7019
+ } | undefined;
7020
+ hidden?: boolean | undefined;
7021
+ root?: string | undefined;
6270
7022
  }>, z.ZodObject<{
6271
7023
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
6272
7024
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
@@ -6317,6 +7069,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6317
7069
  } | undefined;
6318
7070
  hidden?: boolean | undefined;
6319
7071
  root?: string | undefined;
7072
+ } | {
7073
+ group: string;
7074
+ asyncapi: (string | string[] | {
7075
+ source: string;
7076
+ directory?: string | undefined;
7077
+ }) & (string | string[] | {
7078
+ source: string;
7079
+ directory?: string | undefined;
7080
+ } | undefined);
7081
+ icon?: string | {
7082
+ name: string;
7083
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7084
+ } | undefined;
7085
+ hidden?: boolean | undefined;
7086
+ root?: string | undefined;
6320
7087
  } | {
6321
7088
  group: string;
6322
7089
  pages: any[];
@@ -6344,6 +7111,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6344
7111
  } | undefined;
6345
7112
  hidden?: boolean | undefined;
6346
7113
  root?: string | undefined;
7114
+ } | {
7115
+ group: string;
7116
+ asyncapi: (string | string[] | {
7117
+ source: string;
7118
+ directory?: string | undefined;
7119
+ }) & (string | string[] | {
7120
+ source: string;
7121
+ directory?: string | undefined;
7122
+ } | undefined);
7123
+ icon?: string | {
7124
+ name: string;
7125
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7126
+ } | undefined;
7127
+ hidden?: boolean | undefined;
7128
+ root?: string | undefined;
6347
7129
  } | {
6348
7130
  group: string;
6349
7131
  pages: any[];
@@ -6893,6 +7675,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6893
7675
  } | undefined;
6894
7676
  hidden?: boolean | undefined;
6895
7677
  root?: string | undefined;
7678
+ } | {
7679
+ group: string;
7680
+ asyncapi: (string | string[] | {
7681
+ source: string;
7682
+ directory?: string | undefined;
7683
+ }) & (string | string[] | {
7684
+ source: string;
7685
+ directory?: string | undefined;
7686
+ } | undefined);
7687
+ icon?: string | {
7688
+ name: string;
7689
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7690
+ } | undefined;
7691
+ hidden?: boolean | undefined;
7692
+ root?: string | undefined;
6896
7693
  } | {
6897
7694
  group: string;
6898
7695
  pages: any[];
@@ -6938,6 +7735,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6938
7735
  } | undefined;
6939
7736
  hidden?: boolean | undefined;
6940
7737
  root?: string | undefined;
7738
+ } | {
7739
+ group: string;
7740
+ asyncapi: (string | string[] | {
7741
+ source: string;
7742
+ directory?: string | undefined;
7743
+ }) & (string | string[] | {
7744
+ source: string;
7745
+ directory?: string | undefined;
7746
+ } | undefined);
7747
+ icon?: string | {
7748
+ name: string;
7749
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7750
+ } | undefined;
7751
+ hidden?: boolean | undefined;
7752
+ root?: string | undefined;
6941
7753
  } | {
6942
7754
  group: string;
6943
7755
  pages: any[];
@@ -6968,6 +7780,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6968
7780
  source: string;
6969
7781
  directory?: string | undefined;
6970
7782
  } | undefined;
7783
+ asyncapi?: string | string[] | {
7784
+ source: string;
7785
+ directory?: string | undefined;
7786
+ } | undefined;
6971
7787
  playground?: {
6972
7788
  display?: "simple" | "none" | "interactive" | undefined;
6973
7789
  proxy?: boolean | undefined;
@@ -7166,6 +7982,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7166
7982
  } | undefined;
7167
7983
  hidden?: boolean | undefined;
7168
7984
  root?: string | undefined;
7985
+ } | {
7986
+ group: string;
7987
+ asyncapi: (string | string[] | {
7988
+ source: string;
7989
+ directory?: string | undefined;
7990
+ }) & (string | string[] | {
7991
+ source: string;
7992
+ directory?: string | undefined;
7993
+ } | undefined);
7994
+ icon?: string | {
7995
+ name: string;
7996
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7997
+ } | undefined;
7998
+ hidden?: boolean | undefined;
7999
+ root?: string | undefined;
7169
8000
  } | {
7170
8001
  group: string;
7171
8002
  pages: any[];
@@ -7211,6 +8042,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7211
8042
  } | undefined;
7212
8043
  hidden?: boolean | undefined;
7213
8044
  root?: string | undefined;
8045
+ } | {
8046
+ group: string;
8047
+ asyncapi: (string | string[] | {
8048
+ source: string;
8049
+ directory?: string | undefined;
8050
+ }) & (string | string[] | {
8051
+ source: string;
8052
+ directory?: string | undefined;
8053
+ } | undefined);
8054
+ icon?: string | {
8055
+ name: string;
8056
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
8057
+ } | undefined;
8058
+ hidden?: boolean | undefined;
8059
+ root?: string | undefined;
7214
8060
  } | {
7215
8061
  group: string;
7216
8062
  pages: any[];
@@ -7242,6 +8088,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7242
8088
  source: string;
7243
8089
  directory?: string | undefined;
7244
8090
  } | undefined;
8091
+ asyncapi?: string | string[] | {
8092
+ source: string;
8093
+ directory?: string | undefined;
8094
+ } | undefined;
7245
8095
  playground?: {
7246
8096
  display?: "simple" | "none" | "interactive" | undefined;
7247
8097
  proxy?: boolean | undefined;