@mintlify/validation 0.1.246 → 0.1.248

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 (56) hide show
  1. package/dist/mint-config/schemas/v2/index.d.ts +5215 -2155
  2. package/dist/mint-config/schemas/v2/index.js +8 -6
  3. package/dist/mint-config/schemas/v2/properties/api.d.ts +11 -11
  4. package/dist/mint-config/schemas/v2/properties/api.js +3 -5
  5. package/dist/mint-config/schemas/v2/properties/appearance.d.ts +4 -4
  6. package/dist/mint-config/schemas/v2/properties/appearance.js +6 -3
  7. package/dist/mint-config/schemas/v2/properties/icons.d.ts +2 -2
  8. package/dist/mint-config/schemas/v2/properties/icons.js +3 -1
  9. package/dist/mint-config/schemas/v2/properties/index.d.ts +9 -0
  10. package/dist/mint-config/schemas/v2/properties/index.js +9 -0
  11. package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +225 -2
  12. package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +10 -16
  13. package/dist/mint-config/schemas/v2/properties/navigation/divisionSchemas.d.ts +7 -0
  14. package/dist/mint-config/schemas/v2/properties/navigation/divisionSchemas.js +26 -0
  15. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +155 -2
  16. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +10 -16
  17. package/dist/mint-config/schemas/v2/properties/navigation/global.d.ts +25 -0
  18. package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +638 -6
  19. package/dist/mint-config/schemas/v2/properties/navigation/groups.js +15 -7
  20. package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +1338 -295
  21. package/dist/mint-config/schemas/v2/properties/navigation/index.js +20 -18
  22. package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +47 -214
  23. package/dist/mint-config/schemas/v2/properties/navigation/languages.js +10 -18
  24. package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +4 -0
  25. package/dist/mint-config/schemas/v2/properties/navigation/pages.js +6 -2
  26. package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +153 -2
  27. package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +8 -16
  28. package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +81 -2
  29. package/dist/mint-config/schemas/v2/properties/navigation/version.js +10 -16
  30. package/dist/mint-config/schemas/v2/properties/reusable/divisions.d.ts +2 -0
  31. package/dist/mint-config/schemas/v2/properties/reusable/divisions.js +1 -0
  32. package/dist/mint-config/schemas/v2/properties/reusable/index.d.ts +4 -0
  33. package/dist/mint-config/schemas/v2/properties/reusable/index.js +4 -0
  34. package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +86 -0
  35. package/dist/mint-config/schemas/v2/properties/reusable/page.js +27 -0
  36. package/dist/mint-config/schemas/v2/properties/seo.d.ts +2 -2
  37. package/dist/mint-config/schemas/v2/properties/seo.js +1 -2
  38. package/dist/mint-config/schemas/v2/properties/styling.d.ts +6 -6
  39. package/dist/mint-config/schemas/v2/properties/styling.js +3 -6
  40. package/dist/mint-config/schemas/v2/themes/{quill.d.ts → linden.d.ts} +740 -540
  41. package/dist/mint-config/schemas/v2/themes/linden.js +3 -0
  42. package/dist/mint-config/schemas/v2/themes/{venus.d.ts → maple.d.ts} +740 -540
  43. package/dist/mint-config/schemas/v2/themes/maple.js +3 -0
  44. package/dist/mint-config/schemas/v2/themes/mint.d.ts +736 -536
  45. package/dist/mint-config/schemas/v2/themes/{prism.d.ts → palm.d.ts} +740 -540
  46. package/dist/mint-config/schemas/v2/themes/palm.js +3 -0
  47. package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +520 -320
  48. package/dist/mint-config/schemas/v2/themes/willow.d.ts +2262 -0
  49. package/dist/mint-config/schemas/v2/themes/willow.js +3 -0
  50. package/dist/mint-config/upgrades/upgradeToDocsConfig.d.ts +2 -5
  51. package/dist/mint-config/upgrades/upgradeToDocsConfig.js +47 -29
  52. package/dist/tsconfig.build.tsbuildinfo +1 -1
  53. package/package.json +2 -2
  54. package/dist/mint-config/schemas/v2/themes/prism.js +0 -3
  55. package/dist/mint-config/schemas/v2/themes/quill.js +0 -3
  56. package/dist/mint-config/schemas/v2/themes/venus.js +0 -3
@@ -12,7 +12,91 @@ export declare const groupSchema: z.ZodIntersection<z.ZodObject<{
12
12
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
13
13
  }>]>>;
14
14
  hidden: z.ZodOptional<z.ZodBoolean>;
15
- root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
15
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>> | z.ZodOptional<z.ZodObject<{
16
+ href: z.ZodString;
17
+ title: z.ZodString;
18
+ sidebarTitle: z.ZodOptional<z.ZodString>;
19
+ description: z.ZodOptional<z.ZodString>;
20
+ api: z.ZodOptional<z.ZodString>;
21
+ openapi: z.ZodOptional<z.ZodString>;
22
+ contentType: z.ZodOptional<z.ZodString>;
23
+ authMethod: z.ZodOptional<z.ZodString>;
24
+ auth: z.ZodOptional<z.ZodString>;
25
+ version: z.ZodOptional<z.ZodString>;
26
+ mode: z.ZodOptional<z.ZodString>;
27
+ hideFooterPagination: z.ZodOptional<z.ZodBoolean>;
28
+ authors: z.ZodOptional<z.ZodUnknown>;
29
+ lastUpdatedDate: z.ZodOptional<z.ZodString>;
30
+ createdDate: z.ZodOptional<z.ZodString>;
31
+ 'openapi-schema': z.ZodOptional<z.ZodString>;
32
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
33
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
34
+ name: z.ZodEffects<z.ZodString, string, string>;
35
+ }, "strip", z.ZodTypeAny, {
36
+ name: string;
37
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
38
+ }, {
39
+ name: string;
40
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
41
+ }>]>>;
42
+ tag: z.ZodOptional<z.ZodString>;
43
+ url: z.ZodOptional<z.ZodString>;
44
+ hideApiMarker: z.ZodOptional<z.ZodBoolean>;
45
+ noindex: z.ZodOptional<z.ZodBoolean>;
46
+ isPublic: z.ZodOptional<z.ZodBoolean>;
47
+ }, "strip", z.ZodTypeAny, {
48
+ href: string;
49
+ title: string;
50
+ sidebarTitle?: string | undefined;
51
+ description?: string | undefined;
52
+ api?: string | undefined;
53
+ openapi?: string | undefined;
54
+ contentType?: string | undefined;
55
+ authMethod?: string | undefined;
56
+ auth?: string | undefined;
57
+ version?: string | undefined;
58
+ mode?: string | undefined;
59
+ hideFooterPagination?: boolean | undefined;
60
+ authors?: unknown;
61
+ lastUpdatedDate?: string | undefined;
62
+ createdDate?: string | undefined;
63
+ 'openapi-schema'?: string | undefined;
64
+ icon?: string | {
65
+ name: string;
66
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
67
+ } | undefined;
68
+ tag?: string | undefined;
69
+ url?: string | undefined;
70
+ hideApiMarker?: boolean | undefined;
71
+ noindex?: boolean | undefined;
72
+ isPublic?: boolean | undefined;
73
+ }, {
74
+ href: string;
75
+ title: string;
76
+ sidebarTitle?: string | undefined;
77
+ description?: string | undefined;
78
+ api?: string | undefined;
79
+ openapi?: string | undefined;
80
+ contentType?: string | undefined;
81
+ authMethod?: string | undefined;
82
+ auth?: string | undefined;
83
+ version?: string | undefined;
84
+ mode?: string | undefined;
85
+ hideFooterPagination?: boolean | undefined;
86
+ authors?: unknown;
87
+ lastUpdatedDate?: string | undefined;
88
+ createdDate?: string | undefined;
89
+ 'openapi-schema'?: string | undefined;
90
+ icon?: string | {
91
+ name: string;
92
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
93
+ } | undefined;
94
+ tag?: string | undefined;
95
+ url?: string | undefined;
96
+ hideApiMarker?: boolean | undefined;
97
+ noindex?: boolean | undefined;
98
+ isPublic?: boolean | undefined;
99
+ }>>;
16
100
  }, "strip", z.ZodTypeAny, {
17
101
  group: string;
18
102
  icon?: string | {
@@ -20,7 +104,33 @@ export declare const groupSchema: z.ZodIntersection<z.ZodObject<{
20
104
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
21
105
  } | undefined;
22
106
  hidden?: boolean | undefined;
23
- root?: string | undefined;
107
+ root?: string | {
108
+ href: string;
109
+ title: string;
110
+ sidebarTitle?: string | undefined;
111
+ description?: string | undefined;
112
+ api?: string | undefined;
113
+ openapi?: string | undefined;
114
+ contentType?: string | undefined;
115
+ authMethod?: string | undefined;
116
+ auth?: string | undefined;
117
+ version?: string | undefined;
118
+ mode?: string | undefined;
119
+ hideFooterPagination?: boolean | undefined;
120
+ authors?: unknown;
121
+ lastUpdatedDate?: string | undefined;
122
+ createdDate?: string | undefined;
123
+ 'openapi-schema'?: string | undefined;
124
+ icon?: string | {
125
+ name: string;
126
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
127
+ } | undefined;
128
+ tag?: string | undefined;
129
+ url?: string | undefined;
130
+ hideApiMarker?: boolean | undefined;
131
+ noindex?: boolean | undefined;
132
+ isPublic?: boolean | undefined;
133
+ } | undefined;
24
134
  }, {
25
135
  group: string;
26
136
  icon?: string | {
@@ -28,7 +138,212 @@ export declare const groupSchema: z.ZodIntersection<z.ZodObject<{
28
138
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
29
139
  } | undefined;
30
140
  hidden?: boolean | undefined;
31
- root?: string | undefined;
141
+ root?: string | {
142
+ href: string;
143
+ title: string;
144
+ sidebarTitle?: string | undefined;
145
+ description?: string | undefined;
146
+ api?: string | undefined;
147
+ openapi?: string | undefined;
148
+ contentType?: string | undefined;
149
+ authMethod?: string | undefined;
150
+ auth?: string | undefined;
151
+ version?: string | undefined;
152
+ mode?: string | undefined;
153
+ hideFooterPagination?: boolean | undefined;
154
+ authors?: unknown;
155
+ lastUpdatedDate?: string | undefined;
156
+ createdDate?: string | undefined;
157
+ 'openapi-schema'?: string | undefined;
158
+ icon?: string | {
159
+ name: string;
160
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
161
+ } | undefined;
162
+ tag?: string | undefined;
163
+ url?: string | undefined;
164
+ hideApiMarker?: boolean | undefined;
165
+ noindex?: boolean | undefined;
166
+ isPublic?: boolean | undefined;
167
+ } | undefined;
168
+ }>, z.ZodUnion<[z.ZodObject<{
169
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
170
+ }, "strip", z.ZodTypeAny, {
171
+ openapi: (string | string[]) & (string | string[] | undefined);
172
+ }, {
173
+ openapi: (string | string[]) & (string | string[] | undefined);
174
+ }>, z.ZodLazy<z.ZodObject<{
175
+ pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
176
+ }, "strip", z.ZodTypeAny, {
177
+ pages: any[];
178
+ }, {
179
+ pages: any[];
180
+ }>>]>>;
181
+ export declare const decoratedGroupSchema: z.ZodIntersection<z.ZodObject<{
182
+ group: z.ZodString;
183
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
184
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
185
+ name: z.ZodEffects<z.ZodString, string, string>;
186
+ }, "strip", z.ZodTypeAny, {
187
+ name: string;
188
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
189
+ }, {
190
+ name: string;
191
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
192
+ }>]>>;
193
+ hidden: z.ZodOptional<z.ZodBoolean>;
194
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>> | z.ZodOptional<z.ZodObject<{
195
+ href: z.ZodString;
196
+ title: z.ZodString;
197
+ sidebarTitle: z.ZodOptional<z.ZodString>;
198
+ description: z.ZodOptional<z.ZodString>;
199
+ api: z.ZodOptional<z.ZodString>;
200
+ openapi: z.ZodOptional<z.ZodString>;
201
+ contentType: z.ZodOptional<z.ZodString>;
202
+ authMethod: z.ZodOptional<z.ZodString>;
203
+ auth: z.ZodOptional<z.ZodString>;
204
+ version: z.ZodOptional<z.ZodString>;
205
+ mode: z.ZodOptional<z.ZodString>;
206
+ hideFooterPagination: z.ZodOptional<z.ZodBoolean>;
207
+ authors: z.ZodOptional<z.ZodUnknown>;
208
+ lastUpdatedDate: z.ZodOptional<z.ZodString>;
209
+ createdDate: z.ZodOptional<z.ZodString>;
210
+ 'openapi-schema': z.ZodOptional<z.ZodString>;
211
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
212
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
213
+ name: z.ZodEffects<z.ZodString, string, string>;
214
+ }, "strip", z.ZodTypeAny, {
215
+ name: string;
216
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
217
+ }, {
218
+ name: string;
219
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
220
+ }>]>>;
221
+ tag: z.ZodOptional<z.ZodString>;
222
+ url: z.ZodOptional<z.ZodString>;
223
+ hideApiMarker: z.ZodOptional<z.ZodBoolean>;
224
+ noindex: z.ZodOptional<z.ZodBoolean>;
225
+ isPublic: z.ZodOptional<z.ZodBoolean>;
226
+ }, "strip", z.ZodTypeAny, {
227
+ href: string;
228
+ title: string;
229
+ sidebarTitle?: string | undefined;
230
+ description?: string | undefined;
231
+ api?: string | undefined;
232
+ openapi?: string | undefined;
233
+ contentType?: string | undefined;
234
+ authMethod?: string | undefined;
235
+ auth?: string | undefined;
236
+ version?: string | undefined;
237
+ mode?: string | undefined;
238
+ hideFooterPagination?: boolean | undefined;
239
+ authors?: unknown;
240
+ lastUpdatedDate?: string | undefined;
241
+ createdDate?: string | undefined;
242
+ 'openapi-schema'?: string | undefined;
243
+ icon?: string | {
244
+ name: string;
245
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
246
+ } | undefined;
247
+ tag?: string | undefined;
248
+ url?: string | undefined;
249
+ hideApiMarker?: boolean | undefined;
250
+ noindex?: boolean | undefined;
251
+ isPublic?: boolean | undefined;
252
+ }, {
253
+ href: string;
254
+ title: string;
255
+ sidebarTitle?: string | undefined;
256
+ description?: string | undefined;
257
+ api?: string | undefined;
258
+ openapi?: string | undefined;
259
+ contentType?: string | undefined;
260
+ authMethod?: string | undefined;
261
+ auth?: string | undefined;
262
+ version?: string | undefined;
263
+ mode?: string | undefined;
264
+ hideFooterPagination?: boolean | undefined;
265
+ authors?: unknown;
266
+ lastUpdatedDate?: string | undefined;
267
+ createdDate?: string | undefined;
268
+ 'openapi-schema'?: string | undefined;
269
+ icon?: string | {
270
+ name: string;
271
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
272
+ } | undefined;
273
+ tag?: string | undefined;
274
+ url?: string | undefined;
275
+ hideApiMarker?: boolean | undefined;
276
+ noindex?: boolean | undefined;
277
+ isPublic?: boolean | undefined;
278
+ }>>;
279
+ }, "strip", z.ZodTypeAny, {
280
+ group: string;
281
+ icon?: string | {
282
+ name: string;
283
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
284
+ } | undefined;
285
+ hidden?: boolean | undefined;
286
+ root?: string | {
287
+ href: string;
288
+ title: string;
289
+ sidebarTitle?: string | undefined;
290
+ description?: string | undefined;
291
+ api?: string | undefined;
292
+ openapi?: string | undefined;
293
+ contentType?: string | undefined;
294
+ authMethod?: string | undefined;
295
+ auth?: string | undefined;
296
+ version?: string | undefined;
297
+ mode?: string | undefined;
298
+ hideFooterPagination?: boolean | undefined;
299
+ authors?: unknown;
300
+ lastUpdatedDate?: string | undefined;
301
+ createdDate?: string | undefined;
302
+ 'openapi-schema'?: string | undefined;
303
+ icon?: string | {
304
+ name: string;
305
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
306
+ } | undefined;
307
+ tag?: string | undefined;
308
+ url?: string | undefined;
309
+ hideApiMarker?: boolean | undefined;
310
+ noindex?: boolean | undefined;
311
+ isPublic?: boolean | undefined;
312
+ } | undefined;
313
+ }, {
314
+ group: string;
315
+ icon?: string | {
316
+ name: string;
317
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
318
+ } | undefined;
319
+ hidden?: boolean | undefined;
320
+ root?: string | {
321
+ href: string;
322
+ title: string;
323
+ sidebarTitle?: string | undefined;
324
+ description?: string | undefined;
325
+ api?: string | undefined;
326
+ openapi?: string | undefined;
327
+ contentType?: string | undefined;
328
+ authMethod?: string | undefined;
329
+ auth?: string | undefined;
330
+ version?: string | undefined;
331
+ mode?: string | undefined;
332
+ hideFooterPagination?: boolean | undefined;
333
+ authors?: unknown;
334
+ lastUpdatedDate?: string | undefined;
335
+ createdDate?: string | undefined;
336
+ 'openapi-schema'?: string | undefined;
337
+ icon?: string | {
338
+ name: string;
339
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
340
+ } | undefined;
341
+ tag?: string | undefined;
342
+ url?: string | undefined;
343
+ hideApiMarker?: boolean | undefined;
344
+ noindex?: boolean | undefined;
345
+ isPublic?: boolean | undefined;
346
+ } | undefined;
32
347
  }>, z.ZodUnion<[z.ZodObject<{
33
348
  openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
34
349
  }, "strip", z.ZodTypeAny, {
@@ -55,7 +370,91 @@ export declare const groupsSchema: z.ZodArray<z.ZodIntersection<z.ZodObject<{
55
370
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
56
371
  }>]>>;
57
372
  hidden: z.ZodOptional<z.ZodBoolean>;
58
- root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
373
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>> | z.ZodOptional<z.ZodObject<{
374
+ href: z.ZodString;
375
+ title: z.ZodString;
376
+ sidebarTitle: z.ZodOptional<z.ZodString>;
377
+ description: z.ZodOptional<z.ZodString>;
378
+ api: z.ZodOptional<z.ZodString>;
379
+ openapi: z.ZodOptional<z.ZodString>;
380
+ contentType: z.ZodOptional<z.ZodString>;
381
+ authMethod: z.ZodOptional<z.ZodString>;
382
+ auth: z.ZodOptional<z.ZodString>;
383
+ version: z.ZodOptional<z.ZodString>;
384
+ mode: z.ZodOptional<z.ZodString>;
385
+ hideFooterPagination: z.ZodOptional<z.ZodBoolean>;
386
+ authors: z.ZodOptional<z.ZodUnknown>;
387
+ lastUpdatedDate: z.ZodOptional<z.ZodString>;
388
+ createdDate: z.ZodOptional<z.ZodString>;
389
+ 'openapi-schema': z.ZodOptional<z.ZodString>;
390
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
391
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
392
+ name: z.ZodEffects<z.ZodString, string, string>;
393
+ }, "strip", z.ZodTypeAny, {
394
+ name: string;
395
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
396
+ }, {
397
+ name: string;
398
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
399
+ }>]>>;
400
+ tag: z.ZodOptional<z.ZodString>;
401
+ url: z.ZodOptional<z.ZodString>;
402
+ hideApiMarker: z.ZodOptional<z.ZodBoolean>;
403
+ noindex: z.ZodOptional<z.ZodBoolean>;
404
+ isPublic: z.ZodOptional<z.ZodBoolean>;
405
+ }, "strip", z.ZodTypeAny, {
406
+ href: string;
407
+ title: string;
408
+ sidebarTitle?: string | undefined;
409
+ description?: string | undefined;
410
+ api?: string | undefined;
411
+ openapi?: string | undefined;
412
+ contentType?: string | undefined;
413
+ authMethod?: string | undefined;
414
+ auth?: string | undefined;
415
+ version?: string | undefined;
416
+ mode?: string | undefined;
417
+ hideFooterPagination?: boolean | undefined;
418
+ authors?: unknown;
419
+ lastUpdatedDate?: string | undefined;
420
+ createdDate?: string | undefined;
421
+ 'openapi-schema'?: string | undefined;
422
+ icon?: string | {
423
+ name: string;
424
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
425
+ } | undefined;
426
+ tag?: string | undefined;
427
+ url?: string | undefined;
428
+ hideApiMarker?: boolean | undefined;
429
+ noindex?: boolean | undefined;
430
+ isPublic?: boolean | undefined;
431
+ }, {
432
+ href: string;
433
+ title: string;
434
+ sidebarTitle?: string | undefined;
435
+ description?: string | undefined;
436
+ api?: string | undefined;
437
+ openapi?: string | undefined;
438
+ contentType?: string | undefined;
439
+ authMethod?: string | undefined;
440
+ auth?: string | undefined;
441
+ version?: string | undefined;
442
+ mode?: string | undefined;
443
+ hideFooterPagination?: boolean | undefined;
444
+ authors?: unknown;
445
+ lastUpdatedDate?: string | undefined;
446
+ createdDate?: string | undefined;
447
+ 'openapi-schema'?: string | undefined;
448
+ icon?: string | {
449
+ name: string;
450
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
451
+ } | undefined;
452
+ tag?: string | undefined;
453
+ url?: string | undefined;
454
+ hideApiMarker?: boolean | undefined;
455
+ noindex?: boolean | undefined;
456
+ isPublic?: boolean | undefined;
457
+ }>>;
59
458
  }, "strip", z.ZodTypeAny, {
60
459
  group: string;
61
460
  icon?: string | {
@@ -63,7 +462,33 @@ export declare const groupsSchema: z.ZodArray<z.ZodIntersection<z.ZodObject<{
63
462
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
64
463
  } | undefined;
65
464
  hidden?: boolean | undefined;
66
- root?: string | undefined;
465
+ root?: string | {
466
+ href: string;
467
+ title: string;
468
+ sidebarTitle?: string | undefined;
469
+ description?: string | undefined;
470
+ api?: string | undefined;
471
+ openapi?: string | undefined;
472
+ contentType?: string | undefined;
473
+ authMethod?: string | undefined;
474
+ auth?: string | undefined;
475
+ version?: string | undefined;
476
+ mode?: string | undefined;
477
+ hideFooterPagination?: boolean | undefined;
478
+ authors?: unknown;
479
+ lastUpdatedDate?: string | undefined;
480
+ createdDate?: string | undefined;
481
+ 'openapi-schema'?: string | undefined;
482
+ icon?: string | {
483
+ name: string;
484
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
485
+ } | undefined;
486
+ tag?: string | undefined;
487
+ url?: string | undefined;
488
+ hideApiMarker?: boolean | undefined;
489
+ noindex?: boolean | undefined;
490
+ isPublic?: boolean | undefined;
491
+ } | undefined;
67
492
  }, {
68
493
  group: string;
69
494
  icon?: string | {
@@ -71,7 +496,212 @@ export declare const groupsSchema: z.ZodArray<z.ZodIntersection<z.ZodObject<{
71
496
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
72
497
  } | undefined;
73
498
  hidden?: boolean | undefined;
74
- root?: string | undefined;
499
+ root?: string | {
500
+ href: string;
501
+ title: string;
502
+ sidebarTitle?: string | undefined;
503
+ description?: string | undefined;
504
+ api?: string | undefined;
505
+ openapi?: string | undefined;
506
+ contentType?: string | undefined;
507
+ authMethod?: string | undefined;
508
+ auth?: string | undefined;
509
+ version?: string | undefined;
510
+ mode?: string | undefined;
511
+ hideFooterPagination?: boolean | undefined;
512
+ authors?: unknown;
513
+ lastUpdatedDate?: string | undefined;
514
+ createdDate?: string | undefined;
515
+ 'openapi-schema'?: string | undefined;
516
+ icon?: string | {
517
+ name: string;
518
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
519
+ } | undefined;
520
+ tag?: string | undefined;
521
+ url?: string | undefined;
522
+ hideApiMarker?: boolean | undefined;
523
+ noindex?: boolean | undefined;
524
+ isPublic?: boolean | undefined;
525
+ } | undefined;
526
+ }>, z.ZodUnion<[z.ZodObject<{
527
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
528
+ }, "strip", z.ZodTypeAny, {
529
+ openapi: (string | string[]) & (string | string[] | undefined);
530
+ }, {
531
+ openapi: (string | string[]) & (string | string[] | undefined);
532
+ }>, z.ZodLazy<z.ZodObject<{
533
+ pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
534
+ }, "strip", z.ZodTypeAny, {
535
+ pages: any[];
536
+ }, {
537
+ pages: any[];
538
+ }>>]>>, "many">;
539
+ export declare const decoratedGroupsSchema: z.ZodArray<z.ZodIntersection<z.ZodObject<{
540
+ group: z.ZodString;
541
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
542
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
543
+ name: z.ZodEffects<z.ZodString, string, string>;
544
+ }, "strip", z.ZodTypeAny, {
545
+ name: string;
546
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
547
+ }, {
548
+ name: string;
549
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
550
+ }>]>>;
551
+ hidden: z.ZodOptional<z.ZodBoolean>;
552
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>> | z.ZodOptional<z.ZodObject<{
553
+ href: z.ZodString;
554
+ title: z.ZodString;
555
+ sidebarTitle: z.ZodOptional<z.ZodString>;
556
+ description: z.ZodOptional<z.ZodString>;
557
+ api: z.ZodOptional<z.ZodString>;
558
+ openapi: z.ZodOptional<z.ZodString>;
559
+ contentType: z.ZodOptional<z.ZodString>;
560
+ authMethod: z.ZodOptional<z.ZodString>;
561
+ auth: z.ZodOptional<z.ZodString>;
562
+ version: z.ZodOptional<z.ZodString>;
563
+ mode: z.ZodOptional<z.ZodString>;
564
+ hideFooterPagination: z.ZodOptional<z.ZodBoolean>;
565
+ authors: z.ZodOptional<z.ZodUnknown>;
566
+ lastUpdatedDate: z.ZodOptional<z.ZodString>;
567
+ createdDate: z.ZodOptional<z.ZodString>;
568
+ 'openapi-schema': z.ZodOptional<z.ZodString>;
569
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
570
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
571
+ name: z.ZodEffects<z.ZodString, string, string>;
572
+ }, "strip", z.ZodTypeAny, {
573
+ name: string;
574
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
575
+ }, {
576
+ name: string;
577
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
578
+ }>]>>;
579
+ tag: z.ZodOptional<z.ZodString>;
580
+ url: z.ZodOptional<z.ZodString>;
581
+ hideApiMarker: z.ZodOptional<z.ZodBoolean>;
582
+ noindex: z.ZodOptional<z.ZodBoolean>;
583
+ isPublic: z.ZodOptional<z.ZodBoolean>;
584
+ }, "strip", z.ZodTypeAny, {
585
+ href: string;
586
+ title: string;
587
+ sidebarTitle?: string | undefined;
588
+ description?: string | undefined;
589
+ api?: string | undefined;
590
+ openapi?: string | undefined;
591
+ contentType?: string | undefined;
592
+ authMethod?: string | undefined;
593
+ auth?: string | undefined;
594
+ version?: string | undefined;
595
+ mode?: string | undefined;
596
+ hideFooterPagination?: boolean | undefined;
597
+ authors?: unknown;
598
+ lastUpdatedDate?: string | undefined;
599
+ createdDate?: string | undefined;
600
+ 'openapi-schema'?: string | undefined;
601
+ icon?: string | {
602
+ name: string;
603
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
604
+ } | undefined;
605
+ tag?: string | undefined;
606
+ url?: string | undefined;
607
+ hideApiMarker?: boolean | undefined;
608
+ noindex?: boolean | undefined;
609
+ isPublic?: boolean | undefined;
610
+ }, {
611
+ href: string;
612
+ title: string;
613
+ sidebarTitle?: string | undefined;
614
+ description?: string | undefined;
615
+ api?: string | undefined;
616
+ openapi?: string | undefined;
617
+ contentType?: string | undefined;
618
+ authMethod?: string | undefined;
619
+ auth?: string | undefined;
620
+ version?: string | undefined;
621
+ mode?: string | undefined;
622
+ hideFooterPagination?: boolean | undefined;
623
+ authors?: unknown;
624
+ lastUpdatedDate?: string | undefined;
625
+ createdDate?: string | undefined;
626
+ 'openapi-schema'?: string | undefined;
627
+ icon?: string | {
628
+ name: string;
629
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
630
+ } | undefined;
631
+ tag?: string | undefined;
632
+ url?: string | undefined;
633
+ hideApiMarker?: boolean | undefined;
634
+ noindex?: boolean | undefined;
635
+ isPublic?: boolean | undefined;
636
+ }>>;
637
+ }, "strip", z.ZodTypeAny, {
638
+ group: string;
639
+ icon?: string | {
640
+ name: string;
641
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
642
+ } | undefined;
643
+ hidden?: boolean | undefined;
644
+ root?: string | {
645
+ href: string;
646
+ title: string;
647
+ sidebarTitle?: string | undefined;
648
+ description?: string | undefined;
649
+ api?: string | undefined;
650
+ openapi?: string | undefined;
651
+ contentType?: string | undefined;
652
+ authMethod?: string | undefined;
653
+ auth?: string | undefined;
654
+ version?: string | undefined;
655
+ mode?: string | undefined;
656
+ hideFooterPagination?: boolean | undefined;
657
+ authors?: unknown;
658
+ lastUpdatedDate?: string | undefined;
659
+ createdDate?: string | undefined;
660
+ 'openapi-schema'?: string | undefined;
661
+ icon?: string | {
662
+ name: string;
663
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
664
+ } | undefined;
665
+ tag?: string | undefined;
666
+ url?: string | undefined;
667
+ hideApiMarker?: boolean | undefined;
668
+ noindex?: boolean | undefined;
669
+ isPublic?: boolean | undefined;
670
+ } | undefined;
671
+ }, {
672
+ group: string;
673
+ icon?: string | {
674
+ name: string;
675
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
676
+ } | undefined;
677
+ hidden?: boolean | undefined;
678
+ root?: string | {
679
+ href: string;
680
+ title: string;
681
+ sidebarTitle?: string | undefined;
682
+ description?: string | undefined;
683
+ api?: string | undefined;
684
+ openapi?: string | undefined;
685
+ contentType?: string | undefined;
686
+ authMethod?: string | undefined;
687
+ auth?: string | undefined;
688
+ version?: string | undefined;
689
+ mode?: string | undefined;
690
+ hideFooterPagination?: boolean | undefined;
691
+ authors?: unknown;
692
+ lastUpdatedDate?: string | undefined;
693
+ createdDate?: string | undefined;
694
+ 'openapi-schema'?: string | undefined;
695
+ icon?: string | {
696
+ name: string;
697
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
698
+ } | undefined;
699
+ tag?: string | undefined;
700
+ url?: string | undefined;
701
+ hideApiMarker?: boolean | undefined;
702
+ noindex?: boolean | undefined;
703
+ isPublic?: boolean | undefined;
704
+ } | undefined;
75
705
  }>, z.ZodUnion<[z.ZodObject<{
76
706
  openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
77
707
  }, "strip", z.ZodTypeAny, {
@@ -87,3 +717,5 @@ export declare const groupsSchema: z.ZodArray<z.ZodIntersection<z.ZodObject<{
87
717
  }>>]>>, "many">;
88
718
  export type GroupConfig = z.infer<typeof groupSchema>;
89
719
  export type GroupsConfig = z.infer<typeof groupsSchema>;
720
+ export type DecoratedGroupConfig = z.infer<typeof decoratedGroupSchema>;
721
+ export type DecoratedGroupsConfig = z.infer<typeof decoratedGroupsSchema>;