@mintlify/validation 0.1.245 → 0.1.247

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 (57) hide show
  1. package/dist/mint-config/schemas/v2/index.d.ts +5235 -2167
  2. package/dist/mint-config/schemas/v2/index.js +8 -6
  3. package/dist/mint-config/schemas/v2/properties/api.d.ts +14 -11
  4. package/dist/mint-config/schemas/v2/properties/api.js +5 -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} +745 -543
  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} +745 -543
  43. package/dist/mint-config/schemas/v2/themes/maple.js +3 -0
  44. package/dist/mint-config/schemas/v2/themes/mint.d.ts +741 -539
  45. package/dist/mint-config/schemas/v2/themes/{prism.d.ts → palm.d.ts} +745 -543
  46. package/dist/mint-config/schemas/v2/themes/palm.js +3 -0
  47. package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +523 -321
  48. package/dist/mint-config/schemas/v2/themes/reusable/index.js +0 -2
  49. package/dist/mint-config/schemas/v2/themes/willow.d.ts +2262 -0
  50. package/dist/mint-config/schemas/v2/themes/willow.js +3 -0
  51. package/dist/mint-config/upgrades/upgradeToDocsConfig.d.ts +2 -5
  52. package/dist/mint-config/upgrades/upgradeToDocsConfig.js +72 -45
  53. package/dist/tsconfig.build.tsbuildinfo +1 -1
  54. package/package.json +2 -2
  55. package/dist/mint-config/schemas/v2/themes/prism.js +0 -3
  56. package/dist/mint-config/schemas/v2/themes/quill.js +0 -3
  57. package/dist/mint-config/schemas/v2/themes/venus.js +0 -3
@@ -1,308 +1,19 @@
1
1
  import { z } from 'zod';
2
- export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
3
- languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
4
- language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
5
- hidden: z.ZodOptional<z.ZodBoolean>;
6
- }, "strip", z.ZodTypeAny, {
7
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
8
- hidden?: boolean | undefined;
9
- }, {
10
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
11
- hidden?: boolean | undefined;
12
- }>, z.ZodUnion<[z.ZodObject<{
13
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
14
- }, "strip", z.ZodTypeAny, {
15
- openapi: (string | string[]) & (string | string[] | undefined);
16
- }, {
17
- openapi: (string | string[]) & (string | string[] | undefined);
18
- }>, z.ZodObject<{
19
- href: z.ZodString;
20
- }, "strip", z.ZodTypeAny, {
21
- href: string;
22
- }, {
23
- href: string;
24
- }>, z.ZodLazy<z.ZodObject<{
25
- versions: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
26
- }, "strip", z.ZodTypeAny, {
27
- versions: any[];
28
- }, {
29
- versions: any[];
30
- }>>, z.ZodLazy<z.ZodObject<{
31
- tabs: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
32
- }, "strip", z.ZodTypeAny, {
33
- tabs: any[];
34
- }, {
35
- tabs: any[];
36
- }>>, z.ZodLazy<z.ZodObject<{
37
- dropdowns: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
38
- }, "strip", z.ZodTypeAny, {
39
- dropdowns: any[];
40
- }, {
41
- dropdowns: any[];
42
- }>>, z.ZodLazy<z.ZodObject<{
43
- anchors: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
44
- }, "strip", z.ZodTypeAny, {
45
- anchors: any[];
46
- }, {
47
- anchors: any[];
48
- }>>, z.ZodLazy<z.ZodObject<{
49
- groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
50
- group: z.ZodString;
51
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
52
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
53
- name: z.ZodEffects<z.ZodString, string, string>;
54
- }, "strip", z.ZodTypeAny, {
55
- name: string;
56
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
57
- }, {
58
- name: string;
59
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
60
- }>]>>;
61
- hidden: z.ZodOptional<z.ZodBoolean>;
62
- root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
63
- }, "strip", z.ZodTypeAny, {
64
- group: string;
65
- icon?: string | {
66
- name: string;
67
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
68
- } | undefined;
69
- hidden?: boolean | undefined;
70
- root?: string | undefined;
71
- }, {
72
- group: string;
73
- icon?: string | {
74
- name: string;
75
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
76
- } | undefined;
77
- hidden?: boolean | undefined;
78
- root?: string | undefined;
79
- }>, z.ZodUnion<[z.ZodObject<{
80
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
81
- }, "strip", z.ZodTypeAny, {
82
- openapi: (string | string[]) & (string | string[] | undefined);
83
- }, {
84
- openapi: (string | string[]) & (string | string[] | undefined);
85
- }>, z.ZodLazy<z.ZodObject<{
86
- pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
87
- }, "strip", z.ZodTypeAny, {
88
- pages: any[];
89
- }, {
90
- pages: any[];
91
- }>>]>>, "many">;
92
- }, "strip", z.ZodTypeAny, {
93
- groups: ({
94
- group: string;
95
- icon?: string | {
96
- name: string;
97
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
98
- } | undefined;
99
- hidden?: boolean | undefined;
100
- root?: string | undefined;
101
- } & ({
102
- openapi: (string | string[]) & (string | string[] | undefined);
103
- } | {
104
- pages: any[];
105
- }))[];
106
- }, {
107
- groups: ({
108
- group: string;
109
- icon?: string | {
110
- name: string;
111
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
112
- } | undefined;
113
- hidden?: boolean | undefined;
114
- root?: string | undefined;
115
- } & ({
116
- openapi: (string | string[]) & (string | string[] | undefined);
117
- } | {
118
- pages: any[];
119
- }))[];
120
- }>>, z.ZodLazy<z.ZodObject<{
121
- pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
122
- }, "strip", z.ZodTypeAny, {
123
- pages: any[];
124
- }, {
125
- pages: any[];
126
- }>>]>>, "many">;
127
- }, "strip", z.ZodTypeAny, {
128
- languages: ({
129
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
130
- hidden?: boolean | undefined;
131
- } & ({
132
- openapi: (string | string[]) & (string | string[] | undefined);
133
- } | {
134
- href: string;
135
- } | {
136
- versions: any[];
137
- } | {
138
- tabs: any[];
139
- } | {
140
- dropdowns: any[];
141
- } | {
142
- anchors: any[];
143
- } | {
144
- groups: ({
145
- group: string;
146
- icon?: string | {
147
- name: string;
148
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
149
- } | undefined;
150
- hidden?: boolean | undefined;
151
- root?: string | undefined;
152
- } & ({
153
- openapi: (string | string[]) & (string | string[] | undefined);
154
- } | {
155
- pages: any[];
156
- }))[];
157
- } | {
158
- pages: any[];
159
- }))[];
160
- }, {
161
- languages: ({
162
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
163
- hidden?: boolean | undefined;
164
- } & ({
165
- openapi: (string | string[]) & (string | string[] | undefined);
166
- } | {
167
- href: string;
168
- } | {
169
- versions: any[];
170
- } | {
171
- tabs: any[];
172
- } | {
173
- dropdowns: any[];
174
- } | {
175
- anchors: any[];
176
- } | {
177
- groups: ({
178
- group: string;
179
- icon?: string | {
180
- name: string;
181
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
182
- } | undefined;
183
- hidden?: boolean | undefined;
184
- root?: string | undefined;
185
- } & ({
186
- openapi: (string | string[]) & (string | string[] | undefined);
187
- } | {
188
- pages: any[];
189
- }))[];
190
- } | {
191
- pages: any[];
192
- }))[];
193
- }>, z.ZodObject<{
194
- versions: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
195
- }, "strip", z.ZodTypeAny, {
196
- versions: any[];
197
- }, {
198
- versions: any[];
199
- }>, z.ZodObject<{
200
- tabs: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
201
- }, "strip", z.ZodTypeAny, {
202
- tabs: any[];
203
- }, {
204
- tabs: any[];
205
- }>, z.ZodObject<{
206
- dropdowns: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
207
- }, "strip", z.ZodTypeAny, {
208
- dropdowns: any[];
209
- }, {
210
- dropdowns: any[];
211
- }>, z.ZodObject<{
212
- anchors: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
213
- }, "strip", z.ZodTypeAny, {
214
- anchors: any[];
215
- }, {
216
- anchors: any[];
217
- }>, z.ZodObject<{
218
- groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
219
- group: z.ZodString;
220
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
221
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
222
- name: z.ZodEffects<z.ZodString, string, string>;
223
- }, "strip", z.ZodTypeAny, {
224
- name: string;
225
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
226
- }, {
227
- name: string;
228
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
229
- }>]>>;
230
- hidden: z.ZodOptional<z.ZodBoolean>;
231
- root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
232
- }, "strip", z.ZodTypeAny, {
233
- group: string;
234
- icon?: string | {
235
- name: string;
236
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
237
- } | undefined;
238
- hidden?: boolean | undefined;
239
- root?: string | undefined;
240
- }, {
241
- group: string;
242
- icon?: string | {
243
- name: string;
244
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
245
- } | undefined;
246
- hidden?: boolean | undefined;
247
- root?: string | undefined;
248
- }>, z.ZodUnion<[z.ZodObject<{
249
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
250
- }, "strip", z.ZodTypeAny, {
251
- openapi: (string | string[]) & (string | string[] | undefined);
252
- }, {
253
- openapi: (string | string[]) & (string | string[] | undefined);
254
- }>, z.ZodLazy<z.ZodObject<{
255
- pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
256
- }, "strip", z.ZodTypeAny, {
257
- pages: any[];
258
- }, {
259
- pages: any[];
260
- }>>]>>, "many">;
261
- }, "strip", z.ZodTypeAny, {
262
- groups: ({
263
- group: string;
264
- icon?: string | {
265
- name: string;
266
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
267
- } | undefined;
268
- hidden?: boolean | undefined;
269
- root?: string | undefined;
270
- } & ({
271
- openapi: (string | string[]) & (string | string[] | undefined);
272
- } | {
273
- pages: any[];
274
- }))[];
275
- }, {
276
- groups: ({
277
- group: string;
278
- icon?: string | {
279
- name: string;
280
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
281
- } | undefined;
282
- hidden?: boolean | undefined;
283
- root?: string | undefined;
284
- } & ({
285
- openapi: (string | string[]) & (string | string[] | undefined);
286
- } | {
287
- pages: any[];
288
- }))[];
289
- }>, z.ZodObject<{
290
- pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
291
- }, "strip", z.ZodTypeAny, {
292
- pages: any[];
293
- }, {
294
- pages: any[];
295
- }>]>, z.ZodObject<{
2
+ export type NavigationSchemaType = 'default' | 'decorated';
3
+ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
296
4
  global: z.ZodOptional<z.ZodObject<{
297
5
  languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
298
6
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
299
7
  hidden: z.ZodOptional<z.ZodBoolean>;
8
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
300
9
  }, "strip", z.ZodTypeAny, {
301
10
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
302
11
  hidden?: boolean | undefined;
12
+ openapi?: string | string[] | undefined;
303
13
  }, {
304
14
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
305
15
  hidden?: boolean | undefined;
16
+ openapi?: string | string[] | undefined;
306
17
  }>, z.ZodObject<{
307
18
  href: z.ZodString;
308
19
  }, "strip", z.ZodTypeAny, {
@@ -313,12 +24,15 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
313
24
  versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
314
25
  version: z.ZodString;
315
26
  hidden: z.ZodOptional<z.ZodBoolean>;
27
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
316
28
  }, "strip", z.ZodTypeAny, {
317
29
  version: string;
318
30
  hidden?: boolean | undefined;
31
+ openapi?: string | string[] | undefined;
319
32
  }, {
320
33
  version: string;
321
34
  hidden?: boolean | undefined;
35
+ openapi?: string | string[] | undefined;
322
36
  }>, z.ZodObject<{
323
37
  href: z.ZodString;
324
38
  }, "strip", z.ZodTypeAny, {
@@ -339,6 +53,7 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
339
53
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
340
54
  }>]>>;
341
55
  hidden: z.ZodOptional<z.ZodBoolean>;
56
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
342
57
  }, "strip", z.ZodTypeAny, {
343
58
  tab: string;
344
59
  icon?: string | {
@@ -346,6 +61,7 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
346
61
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
347
62
  } | undefined;
348
63
  hidden?: boolean | undefined;
64
+ openapi?: string | string[] | undefined;
349
65
  }, {
350
66
  tab: string;
351
67
  icon?: string | {
@@ -353,6 +69,7 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
353
69
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
354
70
  } | undefined;
355
71
  hidden?: boolean | undefined;
72
+ openapi?: string | string[] | undefined;
356
73
  }>, z.ZodObject<{
357
74
  href: z.ZodString;
358
75
  }, "strip", z.ZodTypeAny, {
@@ -373,6 +90,7 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
373
90
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
374
91
  }>]>>;
375
92
  hidden: z.ZodOptional<z.ZodBoolean>;
93
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
376
94
  }, "strip", z.ZodTypeAny, {
377
95
  dropdown: string;
378
96
  icon?: string | {
@@ -380,6 +98,7 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
380
98
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
381
99
  } | undefined;
382
100
  hidden?: boolean | undefined;
101
+ openapi?: string | string[] | undefined;
383
102
  }, {
384
103
  dropdown: string;
385
104
  icon?: string | {
@@ -387,6 +106,7 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
387
106
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
388
107
  } | undefined;
389
108
  hidden?: boolean | undefined;
109
+ openapi?: string | string[] | undefined;
390
110
  }>, z.ZodObject<{
391
111
  href: z.ZodString;
392
112
  }, "strip", z.ZodTypeAny, {
@@ -417,6 +137,7 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
417
137
  dark?: string | undefined;
418
138
  }>>;
419
139
  hidden: z.ZodOptional<z.ZodBoolean>;
140
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
420
141
  }, "strip", z.ZodTypeAny, {
421
142
  anchor: string;
422
143
  icon?: string | {
@@ -428,6 +149,7 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
428
149
  dark?: string | undefined;
429
150
  } | undefined;
430
151
  hidden?: boolean | undefined;
152
+ openapi?: string | string[] | undefined;
431
153
  }, {
432
154
  anchor: string;
433
155
  icon?: string | {
@@ -439,6 +161,7 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
439
161
  dark?: string | undefined;
440
162
  } | undefined;
441
163
  hidden?: boolean | undefined;
164
+ openapi?: string | string[] | undefined;
442
165
  }>, z.ZodObject<{
443
166
  href: z.ZodString;
444
167
  }, "strip", z.ZodTypeAny, {
@@ -450,12 +173,14 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
450
173
  languages?: ({
451
174
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
452
175
  hidden?: boolean | undefined;
176
+ openapi?: string | string[] | undefined;
453
177
  } & {
454
178
  href: string;
455
179
  })[] | undefined;
456
180
  versions?: ({
457
181
  version: string;
458
182
  hidden?: boolean | undefined;
183
+ openapi?: string | string[] | undefined;
459
184
  } & {
460
185
  href: string;
461
186
  })[] | undefined;
@@ -466,6 +191,7 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
466
191
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
467
192
  } | undefined;
468
193
  hidden?: boolean | undefined;
194
+ openapi?: string | string[] | undefined;
469
195
  } & {
470
196
  href: string;
471
197
  })[] | undefined;
@@ -476,6 +202,7 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
476
202
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
477
203
  } | undefined;
478
204
  hidden?: boolean | undefined;
205
+ openapi?: string | string[] | undefined;
479
206
  } & {
480
207
  href: string;
481
208
  })[] | undefined;
@@ -490,6 +217,7 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
490
217
  dark?: string | undefined;
491
218
  } | undefined;
492
219
  hidden?: boolean | undefined;
220
+ openapi?: string | string[] | undefined;
493
221
  } & {
494
222
  href: string;
495
223
  })[] | undefined;
@@ -497,12 +225,14 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
497
225
  languages?: ({
498
226
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
499
227
  hidden?: boolean | undefined;
228
+ openapi?: string | string[] | undefined;
500
229
  } & {
501
230
  href: string;
502
231
  })[] | undefined;
503
232
  versions?: ({
504
233
  version: string;
505
234
  hidden?: boolean | undefined;
235
+ openapi?: string | string[] | undefined;
506
236
  } & {
507
237
  href: string;
508
238
  })[] | undefined;
@@ -513,6 +243,7 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
513
243
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
514
244
  } | undefined;
515
245
  hidden?: boolean | undefined;
246
+ openapi?: string | string[] | undefined;
516
247
  } & {
517
248
  href: string;
518
249
  })[] | undefined;
@@ -523,6 +254,7 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
523
254
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
524
255
  } | undefined;
525
256
  hidden?: boolean | undefined;
257
+ openapi?: string | string[] | undefined;
526
258
  } & {
527
259
  href: string;
528
260
  })[] | undefined;
@@ -537,6 +269,7 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
537
269
  dark?: string | undefined;
538
270
  } | undefined;
539
271
  hidden?: boolean | undefined;
272
+ openapi?: string | string[] | undefined;
540
273
  } & {
541
274
  href: string;
542
275
  })[] | undefined;
@@ -546,12 +279,14 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
546
279
  languages?: ({
547
280
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
548
281
  hidden?: boolean | undefined;
282
+ openapi?: string | string[] | undefined;
549
283
  } & {
550
284
  href: string;
551
285
  })[] | undefined;
552
286
  versions?: ({
553
287
  version: string;
554
288
  hidden?: boolean | undefined;
289
+ openapi?: string | string[] | undefined;
555
290
  } & {
556
291
  href: string;
557
292
  })[] | undefined;
@@ -562,6 +297,7 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
562
297
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
563
298
  } | undefined;
564
299
  hidden?: boolean | undefined;
300
+ openapi?: string | string[] | undefined;
565
301
  } & {
566
302
  href: string;
567
303
  })[] | undefined;
@@ -572,6 +308,7 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
572
308
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
573
309
  } | undefined;
574
310
  hidden?: boolean | undefined;
311
+ openapi?: string | string[] | undefined;
575
312
  } & {
576
313
  href: string;
577
314
  })[] | undefined;
@@ -586,6 +323,7 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
586
323
  dark?: string | undefined;
587
324
  } | undefined;
588
325
  hidden?: boolean | undefined;
326
+ openapi?: string | string[] | undefined;
589
327
  } & {
590
328
  href: string;
591
329
  })[] | undefined;
@@ -595,12 +333,14 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
595
333
  languages?: ({
596
334
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
597
335
  hidden?: boolean | undefined;
336
+ openapi?: string | string[] | undefined;
598
337
  } & {
599
338
  href: string;
600
339
  })[] | undefined;
601
340
  versions?: ({
602
341
  version: string;
603
342
  hidden?: boolean | undefined;
343
+ openapi?: string | string[] | undefined;
604
344
  } & {
605
345
  href: string;
606
346
  })[] | undefined;
@@ -611,6 +351,7 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
611
351
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
612
352
  } | undefined;
613
353
  hidden?: boolean | undefined;
354
+ openapi?: string | string[] | undefined;
614
355
  } & {
615
356
  href: string;
616
357
  })[] | undefined;
@@ -621,6 +362,7 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
621
362
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
622
363
  } | undefined;
623
364
  hidden?: boolean | undefined;
365
+ openapi?: string | string[] | undefined;
624
366
  } & {
625
367
  href: string;
626
368
  })[] | undefined;
@@ -635,9 +377,1310 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
635
377
  dark?: string | undefined;
636
378
  } | undefined;
637
379
  hidden?: boolean | undefined;
380
+ openapi?: string | string[] | undefined;
638
381
  } & {
639
382
  href: string;
640
383
  })[] | undefined;
641
384
  } | undefined;
642
- }>>;
385
+ }>, z.ZodUnion<[z.ZodObject<{
386
+ languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
387
+ language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
388
+ hidden: z.ZodOptional<z.ZodBoolean>;
389
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
390
+ }, "strip", z.ZodTypeAny, {
391
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
392
+ hidden?: boolean | undefined;
393
+ openapi?: string | string[] | undefined;
394
+ }, {
395
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
396
+ hidden?: boolean | undefined;
397
+ openapi?: string | string[] | undefined;
398
+ }>, z.ZodUnion<[z.ZodObject<{
399
+ href: z.ZodString;
400
+ }, "strip", z.ZodTypeAny, {
401
+ href: string;
402
+ }, {
403
+ href: string;
404
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
405
+ }, "strip", z.ZodTypeAny, {
406
+ languages: any[];
407
+ }, {
408
+ languages: any[];
409
+ }>, z.ZodObject<{
410
+ versions: z.ZodArray<z.ZodIntersection<z.ZodObject<{
411
+ version: z.ZodString;
412
+ hidden: z.ZodOptional<z.ZodBoolean>;
413
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
414
+ }, "strip", z.ZodTypeAny, {
415
+ version: string;
416
+ hidden?: boolean | undefined;
417
+ openapi?: string | string[] | undefined;
418
+ }, {
419
+ version: string;
420
+ hidden?: boolean | undefined;
421
+ openapi?: string | string[] | undefined;
422
+ }>, z.ZodUnion<[z.ZodObject<{
423
+ href: z.ZodString;
424
+ }, "strip", z.ZodTypeAny, {
425
+ href: string;
426
+ }, {
427
+ href: string;
428
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
429
+ }, "strip", z.ZodTypeAny, {
430
+ versions: any[];
431
+ }, {
432
+ versions: any[];
433
+ }>, z.ZodObject<{
434
+ tabs: z.ZodArray<z.ZodIntersection<z.ZodObject<{
435
+ tab: z.ZodString;
436
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
437
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
438
+ name: z.ZodEffects<z.ZodString, string, string>;
439
+ }, "strip", z.ZodTypeAny, {
440
+ name: string;
441
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
442
+ }, {
443
+ name: string;
444
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
445
+ }>]>>;
446
+ hidden: z.ZodOptional<z.ZodBoolean>;
447
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
448
+ }, "strip", z.ZodTypeAny, {
449
+ tab: string;
450
+ icon?: string | {
451
+ name: string;
452
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
453
+ } | undefined;
454
+ hidden?: boolean | undefined;
455
+ openapi?: string | string[] | undefined;
456
+ }, {
457
+ tab: string;
458
+ icon?: string | {
459
+ name: string;
460
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
461
+ } | undefined;
462
+ hidden?: boolean | undefined;
463
+ openapi?: string | string[] | undefined;
464
+ }>, z.ZodUnion<[z.ZodObject<{
465
+ href: z.ZodString;
466
+ }, "strip", z.ZodTypeAny, {
467
+ href: string;
468
+ }, {
469
+ href: string;
470
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
471
+ }, "strip", z.ZodTypeAny, {
472
+ tabs: any[];
473
+ }, {
474
+ tabs: any[];
475
+ }>, z.ZodObject<{
476
+ dropdowns: z.ZodArray<z.ZodIntersection<z.ZodObject<{
477
+ dropdown: z.ZodString;
478
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
479
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
480
+ name: z.ZodEffects<z.ZodString, string, string>;
481
+ }, "strip", z.ZodTypeAny, {
482
+ name: string;
483
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
484
+ }, {
485
+ name: string;
486
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
487
+ }>]>>;
488
+ hidden: z.ZodOptional<z.ZodBoolean>;
489
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
490
+ }, "strip", z.ZodTypeAny, {
491
+ dropdown: string;
492
+ icon?: string | {
493
+ name: string;
494
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
495
+ } | undefined;
496
+ hidden?: boolean | undefined;
497
+ openapi?: string | string[] | undefined;
498
+ }, {
499
+ dropdown: string;
500
+ icon?: string | {
501
+ name: string;
502
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
503
+ } | undefined;
504
+ hidden?: boolean | undefined;
505
+ openapi?: string | string[] | undefined;
506
+ }>, z.ZodUnion<[z.ZodObject<{
507
+ href: z.ZodString;
508
+ }, "strip", z.ZodTypeAny, {
509
+ href: string;
510
+ }, {
511
+ href: string;
512
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
513
+ }, "strip", z.ZodTypeAny, {
514
+ dropdowns: any[];
515
+ }, {
516
+ dropdowns: any[];
517
+ }>, z.ZodObject<{
518
+ anchors: z.ZodArray<z.ZodIntersection<z.ZodObject<{
519
+ anchor: z.ZodString;
520
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
521
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
522
+ name: z.ZodEffects<z.ZodString, string, string>;
523
+ }, "strip", z.ZodTypeAny, {
524
+ name: string;
525
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
526
+ }, {
527
+ name: string;
528
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
529
+ }>]>>;
530
+ color: z.ZodOptional<z.ZodObject<{
531
+ light: z.ZodOptional<z.ZodString>;
532
+ dark: z.ZodOptional<z.ZodString>;
533
+ }, "strict", z.ZodTypeAny, {
534
+ light?: string | undefined;
535
+ dark?: string | undefined;
536
+ }, {
537
+ light?: string | undefined;
538
+ dark?: string | undefined;
539
+ }>>;
540
+ hidden: z.ZodOptional<z.ZodBoolean>;
541
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
542
+ }, "strip", z.ZodTypeAny, {
543
+ anchor: string;
544
+ icon?: string | {
545
+ name: string;
546
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
547
+ } | undefined;
548
+ color?: {
549
+ light?: string | undefined;
550
+ dark?: string | undefined;
551
+ } | undefined;
552
+ hidden?: boolean | undefined;
553
+ openapi?: string | string[] | undefined;
554
+ }, {
555
+ anchor: string;
556
+ icon?: string | {
557
+ name: string;
558
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
559
+ } | undefined;
560
+ color?: {
561
+ light?: string | undefined;
562
+ dark?: string | undefined;
563
+ } | undefined;
564
+ hidden?: boolean | undefined;
565
+ openapi?: string | string[] | undefined;
566
+ }>, z.ZodUnion<[z.ZodObject<{
567
+ href: z.ZodString;
568
+ }, "strip", z.ZodTypeAny, {
569
+ href: string;
570
+ }, {
571
+ href: string;
572
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
573
+ }, "strip", z.ZodTypeAny, {
574
+ anchors: any[];
575
+ }, {
576
+ anchors: any[];
577
+ }>, z.ZodObject<{
578
+ groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
579
+ group: z.ZodString;
580
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
581
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
582
+ name: z.ZodEffects<z.ZodString, string, string>;
583
+ }, "strip", z.ZodTypeAny, {
584
+ name: string;
585
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
586
+ }, {
587
+ name: string;
588
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
589
+ }>]>>;
590
+ hidden: z.ZodOptional<z.ZodBoolean>;
591
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>> | z.ZodOptional<z.ZodObject<{
592
+ href: z.ZodString;
593
+ title: z.ZodString;
594
+ sidebarTitle: z.ZodOptional<z.ZodString>;
595
+ description: z.ZodOptional<z.ZodString>;
596
+ api: z.ZodOptional<z.ZodString>;
597
+ openapi: z.ZodOptional<z.ZodString>;
598
+ contentType: z.ZodOptional<z.ZodString>;
599
+ authMethod: z.ZodOptional<z.ZodString>;
600
+ auth: z.ZodOptional<z.ZodString>;
601
+ version: z.ZodOptional<z.ZodString>;
602
+ mode: z.ZodOptional<z.ZodString>;
603
+ hideFooterPagination: z.ZodOptional<z.ZodBoolean>;
604
+ authors: z.ZodOptional<z.ZodUnknown>;
605
+ lastUpdatedDate: z.ZodOptional<z.ZodString>;
606
+ createdDate: z.ZodOptional<z.ZodString>;
607
+ 'openapi-schema': z.ZodOptional<z.ZodString>;
608
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
609
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
610
+ name: z.ZodEffects<z.ZodString, string, string>;
611
+ }, "strip", z.ZodTypeAny, {
612
+ name: string;
613
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
614
+ }, {
615
+ name: string;
616
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
617
+ }>]>>;
618
+ tag: z.ZodOptional<z.ZodString>;
619
+ url: z.ZodOptional<z.ZodString>;
620
+ hideApiMarker: z.ZodOptional<z.ZodBoolean>;
621
+ noindex: z.ZodOptional<z.ZodBoolean>;
622
+ isPublic: z.ZodOptional<z.ZodBoolean>;
623
+ }, "strip", z.ZodTypeAny, {
624
+ href: string;
625
+ title: string;
626
+ sidebarTitle?: string | undefined;
627
+ description?: string | undefined;
628
+ api?: string | undefined;
629
+ openapi?: string | undefined;
630
+ contentType?: string | undefined;
631
+ authMethod?: string | undefined;
632
+ auth?: string | undefined;
633
+ version?: string | undefined;
634
+ mode?: string | undefined;
635
+ hideFooterPagination?: boolean | undefined;
636
+ authors?: unknown;
637
+ lastUpdatedDate?: string | undefined;
638
+ createdDate?: string | undefined;
639
+ 'openapi-schema'?: string | undefined;
640
+ icon?: string | {
641
+ name: string;
642
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
643
+ } | undefined;
644
+ tag?: string | undefined;
645
+ url?: string | undefined;
646
+ hideApiMarker?: boolean | undefined;
647
+ noindex?: boolean | undefined;
648
+ isPublic?: boolean | undefined;
649
+ }, {
650
+ href: string;
651
+ title: string;
652
+ sidebarTitle?: string | undefined;
653
+ description?: string | undefined;
654
+ api?: string | undefined;
655
+ openapi?: string | undefined;
656
+ contentType?: string | undefined;
657
+ authMethod?: string | undefined;
658
+ auth?: string | undefined;
659
+ version?: string | undefined;
660
+ mode?: string | undefined;
661
+ hideFooterPagination?: boolean | undefined;
662
+ authors?: unknown;
663
+ lastUpdatedDate?: string | undefined;
664
+ createdDate?: string | undefined;
665
+ 'openapi-schema'?: string | undefined;
666
+ icon?: string | {
667
+ name: string;
668
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
669
+ } | undefined;
670
+ tag?: string | undefined;
671
+ url?: string | undefined;
672
+ hideApiMarker?: boolean | undefined;
673
+ noindex?: boolean | undefined;
674
+ isPublic?: boolean | undefined;
675
+ }>>;
676
+ }, "strip", z.ZodTypeAny, {
677
+ group: string;
678
+ icon?: string | {
679
+ name: string;
680
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
681
+ } | undefined;
682
+ hidden?: boolean | undefined;
683
+ root?: string | {
684
+ href: string;
685
+ title: string;
686
+ sidebarTitle?: string | undefined;
687
+ description?: string | undefined;
688
+ api?: string | undefined;
689
+ openapi?: string | undefined;
690
+ contentType?: string | undefined;
691
+ authMethod?: string | undefined;
692
+ auth?: string | undefined;
693
+ version?: string | undefined;
694
+ mode?: string | undefined;
695
+ hideFooterPagination?: boolean | undefined;
696
+ authors?: unknown;
697
+ lastUpdatedDate?: string | undefined;
698
+ createdDate?: string | undefined;
699
+ 'openapi-schema'?: string | undefined;
700
+ icon?: string | {
701
+ name: string;
702
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
703
+ } | undefined;
704
+ tag?: string | undefined;
705
+ url?: string | undefined;
706
+ hideApiMarker?: boolean | undefined;
707
+ noindex?: boolean | undefined;
708
+ isPublic?: boolean | undefined;
709
+ } | undefined;
710
+ }, {
711
+ group: string;
712
+ icon?: string | {
713
+ name: string;
714
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
715
+ } | undefined;
716
+ hidden?: boolean | undefined;
717
+ root?: string | {
718
+ href: string;
719
+ title: string;
720
+ sidebarTitle?: string | undefined;
721
+ description?: string | undefined;
722
+ api?: string | undefined;
723
+ openapi?: string | undefined;
724
+ contentType?: string | undefined;
725
+ authMethod?: string | undefined;
726
+ auth?: string | undefined;
727
+ version?: string | undefined;
728
+ mode?: string | undefined;
729
+ hideFooterPagination?: boolean | undefined;
730
+ authors?: unknown;
731
+ lastUpdatedDate?: string | undefined;
732
+ createdDate?: string | undefined;
733
+ 'openapi-schema'?: string | undefined;
734
+ icon?: string | {
735
+ name: string;
736
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
737
+ } | undefined;
738
+ tag?: string | undefined;
739
+ url?: string | undefined;
740
+ hideApiMarker?: boolean | undefined;
741
+ noindex?: boolean | undefined;
742
+ isPublic?: boolean | undefined;
743
+ } | undefined;
744
+ }>, z.ZodUnion<[z.ZodObject<{
745
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
746
+ }, "strip", z.ZodTypeAny, {
747
+ openapi: (string | string[]) & (string | string[] | undefined);
748
+ }, {
749
+ openapi: (string | string[]) & (string | string[] | undefined);
750
+ }>, z.ZodLazy<z.ZodObject<{
751
+ pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
752
+ }, "strip", z.ZodTypeAny, {
753
+ pages: any[];
754
+ }, {
755
+ pages: any[];
756
+ }>>]>>, "many">;
757
+ }, "strip", z.ZodTypeAny, {
758
+ groups: ({
759
+ group: string;
760
+ icon?: string | {
761
+ name: string;
762
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
763
+ } | undefined;
764
+ hidden?: boolean | undefined;
765
+ root?: string | {
766
+ href: string;
767
+ title: string;
768
+ sidebarTitle?: string | undefined;
769
+ description?: string | undefined;
770
+ api?: string | undefined;
771
+ openapi?: string | undefined;
772
+ contentType?: string | undefined;
773
+ authMethod?: string | undefined;
774
+ auth?: string | undefined;
775
+ version?: string | undefined;
776
+ mode?: string | undefined;
777
+ hideFooterPagination?: boolean | undefined;
778
+ authors?: unknown;
779
+ lastUpdatedDate?: string | undefined;
780
+ createdDate?: string | undefined;
781
+ 'openapi-schema'?: string | undefined;
782
+ icon?: string | {
783
+ name: string;
784
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
785
+ } | undefined;
786
+ tag?: string | undefined;
787
+ url?: string | undefined;
788
+ hideApiMarker?: boolean | undefined;
789
+ noindex?: boolean | undefined;
790
+ isPublic?: boolean | undefined;
791
+ } | undefined;
792
+ } & ({
793
+ openapi: (string | string[]) & (string | string[] | undefined);
794
+ } | {
795
+ pages: any[];
796
+ }))[];
797
+ }, {
798
+ groups: ({
799
+ group: string;
800
+ icon?: string | {
801
+ name: string;
802
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
803
+ } | undefined;
804
+ hidden?: boolean | undefined;
805
+ root?: string | {
806
+ href: string;
807
+ title: string;
808
+ sidebarTitle?: string | undefined;
809
+ description?: string | undefined;
810
+ api?: string | undefined;
811
+ openapi?: string | undefined;
812
+ contentType?: string | undefined;
813
+ authMethod?: string | undefined;
814
+ auth?: string | undefined;
815
+ version?: string | undefined;
816
+ mode?: string | undefined;
817
+ hideFooterPagination?: boolean | undefined;
818
+ authors?: unknown;
819
+ lastUpdatedDate?: string | undefined;
820
+ createdDate?: string | undefined;
821
+ 'openapi-schema'?: string | undefined;
822
+ icon?: string | {
823
+ name: string;
824
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
825
+ } | undefined;
826
+ tag?: string | undefined;
827
+ url?: string | undefined;
828
+ hideApiMarker?: boolean | undefined;
829
+ noindex?: boolean | undefined;
830
+ isPublic?: boolean | undefined;
831
+ } | undefined;
832
+ } & ({
833
+ openapi: (string | string[]) & (string | string[] | undefined);
834
+ } | {
835
+ pages: any[];
836
+ }))[];
837
+ }>, z.ZodObject<{
838
+ pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
839
+ }, "strip", z.ZodTypeAny, {
840
+ pages: any[];
841
+ }, {
842
+ pages: any[];
843
+ }>]>>;
844
+ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
845
+ global: z.ZodOptional<z.ZodObject<{
846
+ languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
847
+ language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
848
+ hidden: z.ZodOptional<z.ZodBoolean>;
849
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
850
+ }, "strip", z.ZodTypeAny, {
851
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
852
+ hidden?: boolean | undefined;
853
+ openapi?: string | string[] | undefined;
854
+ }, {
855
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
856
+ hidden?: boolean | undefined;
857
+ openapi?: string | string[] | undefined;
858
+ }>, z.ZodObject<{
859
+ href: z.ZodString;
860
+ }, "strip", z.ZodTypeAny, {
861
+ href: string;
862
+ }, {
863
+ href: string;
864
+ }>>, "many">>;
865
+ versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
866
+ version: z.ZodString;
867
+ hidden: z.ZodOptional<z.ZodBoolean>;
868
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
869
+ }, "strip", z.ZodTypeAny, {
870
+ version: string;
871
+ hidden?: boolean | undefined;
872
+ openapi?: string | string[] | undefined;
873
+ }, {
874
+ version: string;
875
+ hidden?: boolean | undefined;
876
+ openapi?: string | string[] | undefined;
877
+ }>, z.ZodObject<{
878
+ href: z.ZodString;
879
+ }, "strip", z.ZodTypeAny, {
880
+ href: string;
881
+ }, {
882
+ href: string;
883
+ }>>, "many">>;
884
+ tabs: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
885
+ tab: z.ZodString;
886
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
887
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
888
+ name: z.ZodEffects<z.ZodString, string, string>;
889
+ }, "strip", z.ZodTypeAny, {
890
+ name: string;
891
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
892
+ }, {
893
+ name: string;
894
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
895
+ }>]>>;
896
+ hidden: z.ZodOptional<z.ZodBoolean>;
897
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
898
+ }, "strip", z.ZodTypeAny, {
899
+ tab: string;
900
+ icon?: string | {
901
+ name: string;
902
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
903
+ } | undefined;
904
+ hidden?: boolean | undefined;
905
+ openapi?: string | string[] | undefined;
906
+ }, {
907
+ tab: string;
908
+ icon?: string | {
909
+ name: string;
910
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
911
+ } | undefined;
912
+ hidden?: boolean | undefined;
913
+ openapi?: string | string[] | undefined;
914
+ }>, z.ZodObject<{
915
+ href: z.ZodString;
916
+ }, "strip", z.ZodTypeAny, {
917
+ href: string;
918
+ }, {
919
+ href: string;
920
+ }>>, "many">>;
921
+ dropdowns: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
922
+ dropdown: z.ZodString;
923
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
924
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
925
+ name: z.ZodEffects<z.ZodString, string, string>;
926
+ }, "strip", z.ZodTypeAny, {
927
+ name: string;
928
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
929
+ }, {
930
+ name: string;
931
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
932
+ }>]>>;
933
+ hidden: z.ZodOptional<z.ZodBoolean>;
934
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
935
+ }, "strip", z.ZodTypeAny, {
936
+ dropdown: string;
937
+ icon?: string | {
938
+ name: string;
939
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
940
+ } | undefined;
941
+ hidden?: boolean | undefined;
942
+ openapi?: string | string[] | undefined;
943
+ }, {
944
+ dropdown: string;
945
+ icon?: string | {
946
+ name: string;
947
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
948
+ } | undefined;
949
+ hidden?: boolean | undefined;
950
+ openapi?: string | string[] | undefined;
951
+ }>, z.ZodObject<{
952
+ href: z.ZodString;
953
+ }, "strip", z.ZodTypeAny, {
954
+ href: string;
955
+ }, {
956
+ href: string;
957
+ }>>, "many">>;
958
+ anchors: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
959
+ anchor: z.ZodString;
960
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
961
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
962
+ name: z.ZodEffects<z.ZodString, string, string>;
963
+ }, "strip", z.ZodTypeAny, {
964
+ name: string;
965
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
966
+ }, {
967
+ name: string;
968
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
969
+ }>]>>;
970
+ color: z.ZodOptional<z.ZodObject<{
971
+ light: z.ZodOptional<z.ZodString>;
972
+ dark: z.ZodOptional<z.ZodString>;
973
+ }, "strict", z.ZodTypeAny, {
974
+ light?: string | undefined;
975
+ dark?: string | undefined;
976
+ }, {
977
+ light?: string | undefined;
978
+ dark?: string | undefined;
979
+ }>>;
980
+ hidden: z.ZodOptional<z.ZodBoolean>;
981
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
982
+ }, "strip", z.ZodTypeAny, {
983
+ anchor: string;
984
+ icon?: string | {
985
+ name: string;
986
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
987
+ } | undefined;
988
+ color?: {
989
+ light?: string | undefined;
990
+ dark?: string | undefined;
991
+ } | undefined;
992
+ hidden?: boolean | undefined;
993
+ openapi?: string | string[] | undefined;
994
+ }, {
995
+ anchor: string;
996
+ icon?: string | {
997
+ name: string;
998
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
999
+ } | undefined;
1000
+ color?: {
1001
+ light?: string | undefined;
1002
+ dark?: string | undefined;
1003
+ } | undefined;
1004
+ hidden?: boolean | undefined;
1005
+ openapi?: string | string[] | undefined;
1006
+ }>, z.ZodObject<{
1007
+ href: z.ZodString;
1008
+ }, "strip", z.ZodTypeAny, {
1009
+ href: string;
1010
+ }, {
1011
+ href: string;
1012
+ }>>, "many">>;
1013
+ }, "strict", z.ZodTypeAny, {
1014
+ languages?: ({
1015
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1016
+ hidden?: boolean | undefined;
1017
+ openapi?: string | string[] | undefined;
1018
+ } & {
1019
+ href: string;
1020
+ })[] | undefined;
1021
+ versions?: ({
1022
+ version: string;
1023
+ hidden?: boolean | undefined;
1024
+ openapi?: string | string[] | undefined;
1025
+ } & {
1026
+ href: string;
1027
+ })[] | undefined;
1028
+ tabs?: ({
1029
+ tab: string;
1030
+ icon?: string | {
1031
+ name: string;
1032
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1033
+ } | undefined;
1034
+ hidden?: boolean | undefined;
1035
+ openapi?: string | string[] | undefined;
1036
+ } & {
1037
+ href: string;
1038
+ })[] | undefined;
1039
+ dropdowns?: ({
1040
+ dropdown: string;
1041
+ icon?: string | {
1042
+ name: string;
1043
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1044
+ } | undefined;
1045
+ hidden?: boolean | undefined;
1046
+ openapi?: string | string[] | undefined;
1047
+ } & {
1048
+ href: string;
1049
+ })[] | undefined;
1050
+ anchors?: ({
1051
+ anchor: string;
1052
+ icon?: string | {
1053
+ name: string;
1054
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1055
+ } | undefined;
1056
+ color?: {
1057
+ light?: string | undefined;
1058
+ dark?: string | undefined;
1059
+ } | undefined;
1060
+ hidden?: boolean | undefined;
1061
+ openapi?: string | string[] | undefined;
1062
+ } & {
1063
+ href: string;
1064
+ })[] | undefined;
1065
+ }, {
1066
+ languages?: ({
1067
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1068
+ hidden?: boolean | undefined;
1069
+ openapi?: string | string[] | undefined;
1070
+ } & {
1071
+ href: string;
1072
+ })[] | undefined;
1073
+ versions?: ({
1074
+ version: string;
1075
+ hidden?: boolean | undefined;
1076
+ openapi?: string | string[] | undefined;
1077
+ } & {
1078
+ href: string;
1079
+ })[] | undefined;
1080
+ tabs?: ({
1081
+ tab: string;
1082
+ icon?: string | {
1083
+ name: string;
1084
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1085
+ } | undefined;
1086
+ hidden?: boolean | undefined;
1087
+ openapi?: string | string[] | undefined;
1088
+ } & {
1089
+ href: string;
1090
+ })[] | undefined;
1091
+ dropdowns?: ({
1092
+ dropdown: string;
1093
+ icon?: string | {
1094
+ name: string;
1095
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1096
+ } | undefined;
1097
+ hidden?: boolean | undefined;
1098
+ openapi?: string | string[] | undefined;
1099
+ } & {
1100
+ href: string;
1101
+ })[] | undefined;
1102
+ anchors?: ({
1103
+ anchor: string;
1104
+ icon?: string | {
1105
+ name: string;
1106
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1107
+ } | undefined;
1108
+ color?: {
1109
+ light?: string | undefined;
1110
+ dark?: string | undefined;
1111
+ } | undefined;
1112
+ hidden?: boolean | undefined;
1113
+ openapi?: string | string[] | undefined;
1114
+ } & {
1115
+ href: string;
1116
+ })[] | undefined;
1117
+ }>>;
1118
+ }, "strip", z.ZodTypeAny, {
1119
+ global?: {
1120
+ languages?: ({
1121
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1122
+ hidden?: boolean | undefined;
1123
+ openapi?: string | string[] | undefined;
1124
+ } & {
1125
+ href: string;
1126
+ })[] | undefined;
1127
+ versions?: ({
1128
+ version: string;
1129
+ hidden?: boolean | undefined;
1130
+ openapi?: string | string[] | undefined;
1131
+ } & {
1132
+ href: string;
1133
+ })[] | undefined;
1134
+ tabs?: ({
1135
+ tab: string;
1136
+ icon?: string | {
1137
+ name: string;
1138
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1139
+ } | undefined;
1140
+ hidden?: boolean | undefined;
1141
+ openapi?: string | string[] | undefined;
1142
+ } & {
1143
+ href: string;
1144
+ })[] | undefined;
1145
+ dropdowns?: ({
1146
+ dropdown: string;
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
+ openapi?: string | string[] | undefined;
1153
+ } & {
1154
+ href: string;
1155
+ })[] | undefined;
1156
+ anchors?: ({
1157
+ anchor: string;
1158
+ icon?: string | {
1159
+ name: string;
1160
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1161
+ } | undefined;
1162
+ color?: {
1163
+ light?: string | undefined;
1164
+ dark?: string | undefined;
1165
+ } | undefined;
1166
+ hidden?: boolean | undefined;
1167
+ openapi?: string | string[] | undefined;
1168
+ } & {
1169
+ href: string;
1170
+ })[] | undefined;
1171
+ } | undefined;
1172
+ }, {
1173
+ global?: {
1174
+ languages?: ({
1175
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1176
+ hidden?: boolean | undefined;
1177
+ openapi?: string | string[] | undefined;
1178
+ } & {
1179
+ href: string;
1180
+ })[] | undefined;
1181
+ versions?: ({
1182
+ version: string;
1183
+ hidden?: boolean | undefined;
1184
+ openapi?: string | string[] | undefined;
1185
+ } & {
1186
+ href: string;
1187
+ })[] | undefined;
1188
+ tabs?: ({
1189
+ tab: string;
1190
+ icon?: string | {
1191
+ name: string;
1192
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1193
+ } | undefined;
1194
+ hidden?: boolean | undefined;
1195
+ openapi?: string | string[] | undefined;
1196
+ } & {
1197
+ href: string;
1198
+ })[] | undefined;
1199
+ dropdowns?: ({
1200
+ dropdown: string;
1201
+ icon?: string | {
1202
+ name: string;
1203
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1204
+ } | undefined;
1205
+ hidden?: boolean | undefined;
1206
+ openapi?: string | string[] | undefined;
1207
+ } & {
1208
+ href: string;
1209
+ })[] | undefined;
1210
+ anchors?: ({
1211
+ anchor: string;
1212
+ icon?: string | {
1213
+ name: string;
1214
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1215
+ } | undefined;
1216
+ color?: {
1217
+ light?: string | undefined;
1218
+ dark?: string | undefined;
1219
+ } | undefined;
1220
+ hidden?: boolean | undefined;
1221
+ openapi?: string | string[] | undefined;
1222
+ } & {
1223
+ href: string;
1224
+ })[] | undefined;
1225
+ } | undefined;
1226
+ }>, z.ZodUnion<[z.ZodObject<{
1227
+ languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
1228
+ language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
1229
+ hidden: z.ZodOptional<z.ZodBoolean>;
1230
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
1231
+ }, "strip", z.ZodTypeAny, {
1232
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1233
+ hidden?: boolean | undefined;
1234
+ openapi?: string | string[] | undefined;
1235
+ }, {
1236
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1237
+ hidden?: boolean | undefined;
1238
+ openapi?: string | string[] | undefined;
1239
+ }>, z.ZodUnion<[z.ZodObject<{
1240
+ href: z.ZodString;
1241
+ }, "strip", z.ZodTypeAny, {
1242
+ href: string;
1243
+ }, {
1244
+ href: string;
1245
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
1246
+ }, "strip", z.ZodTypeAny, {
1247
+ languages: any[];
1248
+ }, {
1249
+ languages: any[];
1250
+ }>, z.ZodObject<{
1251
+ versions: z.ZodArray<z.ZodIntersection<z.ZodObject<{
1252
+ version: z.ZodString;
1253
+ hidden: z.ZodOptional<z.ZodBoolean>;
1254
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
1255
+ }, "strip", z.ZodTypeAny, {
1256
+ version: string;
1257
+ hidden?: boolean | undefined;
1258
+ openapi?: string | string[] | undefined;
1259
+ }, {
1260
+ version: string;
1261
+ hidden?: boolean | undefined;
1262
+ openapi?: string | string[] | undefined;
1263
+ }>, z.ZodUnion<[z.ZodObject<{
1264
+ href: z.ZodString;
1265
+ }, "strip", z.ZodTypeAny, {
1266
+ href: string;
1267
+ }, {
1268
+ href: string;
1269
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
1270
+ }, "strip", z.ZodTypeAny, {
1271
+ versions: any[];
1272
+ }, {
1273
+ versions: any[];
1274
+ }>, z.ZodObject<{
1275
+ tabs: z.ZodArray<z.ZodIntersection<z.ZodObject<{
1276
+ tab: z.ZodString;
1277
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1278
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1279
+ name: z.ZodEffects<z.ZodString, string, string>;
1280
+ }, "strip", z.ZodTypeAny, {
1281
+ name: string;
1282
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1283
+ }, {
1284
+ name: string;
1285
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1286
+ }>]>>;
1287
+ hidden: z.ZodOptional<z.ZodBoolean>;
1288
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
1289
+ }, "strip", z.ZodTypeAny, {
1290
+ tab: string;
1291
+ icon?: string | {
1292
+ name: string;
1293
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1294
+ } | undefined;
1295
+ hidden?: boolean | undefined;
1296
+ openapi?: string | string[] | undefined;
1297
+ }, {
1298
+ tab: string;
1299
+ icon?: string | {
1300
+ name: string;
1301
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1302
+ } | undefined;
1303
+ hidden?: boolean | undefined;
1304
+ openapi?: string | string[] | undefined;
1305
+ }>, z.ZodUnion<[z.ZodObject<{
1306
+ href: z.ZodString;
1307
+ }, "strip", z.ZodTypeAny, {
1308
+ href: string;
1309
+ }, {
1310
+ href: string;
1311
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
1312
+ }, "strip", z.ZodTypeAny, {
1313
+ tabs: any[];
1314
+ }, {
1315
+ tabs: any[];
1316
+ }>, z.ZodObject<{
1317
+ dropdowns: z.ZodArray<z.ZodIntersection<z.ZodObject<{
1318
+ dropdown: z.ZodString;
1319
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1320
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1321
+ name: z.ZodEffects<z.ZodString, string, string>;
1322
+ }, "strip", z.ZodTypeAny, {
1323
+ name: string;
1324
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1325
+ }, {
1326
+ name: string;
1327
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1328
+ }>]>>;
1329
+ hidden: z.ZodOptional<z.ZodBoolean>;
1330
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
1331
+ }, "strip", z.ZodTypeAny, {
1332
+ dropdown: string;
1333
+ icon?: string | {
1334
+ name: string;
1335
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1336
+ } | undefined;
1337
+ hidden?: boolean | undefined;
1338
+ openapi?: string | string[] | undefined;
1339
+ }, {
1340
+ dropdown: string;
1341
+ icon?: string | {
1342
+ name: string;
1343
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1344
+ } | undefined;
1345
+ hidden?: boolean | undefined;
1346
+ openapi?: string | string[] | undefined;
1347
+ }>, z.ZodUnion<[z.ZodObject<{
1348
+ href: z.ZodString;
1349
+ }, "strip", z.ZodTypeAny, {
1350
+ href: string;
1351
+ }, {
1352
+ href: string;
1353
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
1354
+ }, "strip", z.ZodTypeAny, {
1355
+ dropdowns: any[];
1356
+ }, {
1357
+ dropdowns: any[];
1358
+ }>, z.ZodObject<{
1359
+ anchors: z.ZodArray<z.ZodIntersection<z.ZodObject<{
1360
+ anchor: z.ZodString;
1361
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1362
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1363
+ name: z.ZodEffects<z.ZodString, string, string>;
1364
+ }, "strip", z.ZodTypeAny, {
1365
+ name: string;
1366
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1367
+ }, {
1368
+ name: string;
1369
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1370
+ }>]>>;
1371
+ color: z.ZodOptional<z.ZodObject<{
1372
+ light: z.ZodOptional<z.ZodString>;
1373
+ dark: z.ZodOptional<z.ZodString>;
1374
+ }, "strict", z.ZodTypeAny, {
1375
+ light?: string | undefined;
1376
+ dark?: string | undefined;
1377
+ }, {
1378
+ light?: string | undefined;
1379
+ dark?: string | undefined;
1380
+ }>>;
1381
+ hidden: z.ZodOptional<z.ZodBoolean>;
1382
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
1383
+ }, "strip", z.ZodTypeAny, {
1384
+ anchor: string;
1385
+ icon?: string | {
1386
+ name: string;
1387
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1388
+ } | undefined;
1389
+ color?: {
1390
+ light?: string | undefined;
1391
+ dark?: string | undefined;
1392
+ } | undefined;
1393
+ hidden?: boolean | undefined;
1394
+ openapi?: string | string[] | undefined;
1395
+ }, {
1396
+ anchor: string;
1397
+ icon?: string | {
1398
+ name: string;
1399
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1400
+ } | undefined;
1401
+ color?: {
1402
+ light?: string | undefined;
1403
+ dark?: string | undefined;
1404
+ } | undefined;
1405
+ hidden?: boolean | undefined;
1406
+ openapi?: string | string[] | undefined;
1407
+ }>, z.ZodUnion<[z.ZodObject<{
1408
+ href: z.ZodString;
1409
+ }, "strip", z.ZodTypeAny, {
1410
+ href: string;
1411
+ }, {
1412
+ href: string;
1413
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
1414
+ }, "strip", z.ZodTypeAny, {
1415
+ anchors: any[];
1416
+ }, {
1417
+ anchors: any[];
1418
+ }>, z.ZodObject<{
1419
+ groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
1420
+ group: z.ZodString;
1421
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1422
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1423
+ name: z.ZodEffects<z.ZodString, string, string>;
1424
+ }, "strip", z.ZodTypeAny, {
1425
+ name: string;
1426
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1427
+ }, {
1428
+ name: string;
1429
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1430
+ }>]>>;
1431
+ hidden: z.ZodOptional<z.ZodBoolean>;
1432
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>> | z.ZodOptional<z.ZodObject<{
1433
+ href: z.ZodString;
1434
+ title: z.ZodString;
1435
+ sidebarTitle: z.ZodOptional<z.ZodString>;
1436
+ description: z.ZodOptional<z.ZodString>;
1437
+ api: z.ZodOptional<z.ZodString>;
1438
+ openapi: z.ZodOptional<z.ZodString>;
1439
+ contentType: z.ZodOptional<z.ZodString>;
1440
+ authMethod: z.ZodOptional<z.ZodString>;
1441
+ auth: z.ZodOptional<z.ZodString>;
1442
+ version: z.ZodOptional<z.ZodString>;
1443
+ mode: z.ZodOptional<z.ZodString>;
1444
+ hideFooterPagination: z.ZodOptional<z.ZodBoolean>;
1445
+ authors: z.ZodOptional<z.ZodUnknown>;
1446
+ lastUpdatedDate: z.ZodOptional<z.ZodString>;
1447
+ createdDate: z.ZodOptional<z.ZodString>;
1448
+ 'openapi-schema': z.ZodOptional<z.ZodString>;
1449
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1450
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1451
+ name: z.ZodEffects<z.ZodString, string, string>;
1452
+ }, "strip", z.ZodTypeAny, {
1453
+ name: string;
1454
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1455
+ }, {
1456
+ name: string;
1457
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1458
+ }>]>>;
1459
+ tag: z.ZodOptional<z.ZodString>;
1460
+ url: z.ZodOptional<z.ZodString>;
1461
+ hideApiMarker: z.ZodOptional<z.ZodBoolean>;
1462
+ noindex: z.ZodOptional<z.ZodBoolean>;
1463
+ isPublic: z.ZodOptional<z.ZodBoolean>;
1464
+ }, "strip", z.ZodTypeAny, {
1465
+ href: string;
1466
+ title: string;
1467
+ sidebarTitle?: string | undefined;
1468
+ description?: string | undefined;
1469
+ api?: string | undefined;
1470
+ openapi?: string | undefined;
1471
+ contentType?: string | undefined;
1472
+ authMethod?: string | undefined;
1473
+ auth?: string | undefined;
1474
+ version?: string | undefined;
1475
+ mode?: string | undefined;
1476
+ hideFooterPagination?: boolean | undefined;
1477
+ authors?: unknown;
1478
+ lastUpdatedDate?: string | undefined;
1479
+ createdDate?: string | undefined;
1480
+ 'openapi-schema'?: string | undefined;
1481
+ icon?: string | {
1482
+ name: string;
1483
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1484
+ } | undefined;
1485
+ tag?: string | undefined;
1486
+ url?: string | undefined;
1487
+ hideApiMarker?: boolean | undefined;
1488
+ noindex?: boolean | undefined;
1489
+ isPublic?: boolean | undefined;
1490
+ }, {
1491
+ href: string;
1492
+ title: string;
1493
+ sidebarTitle?: string | undefined;
1494
+ description?: string | undefined;
1495
+ api?: string | undefined;
1496
+ openapi?: string | undefined;
1497
+ contentType?: string | undefined;
1498
+ authMethod?: string | undefined;
1499
+ auth?: string | undefined;
1500
+ version?: string | undefined;
1501
+ mode?: string | undefined;
1502
+ hideFooterPagination?: boolean | undefined;
1503
+ authors?: unknown;
1504
+ lastUpdatedDate?: string | undefined;
1505
+ createdDate?: string | undefined;
1506
+ 'openapi-schema'?: string | undefined;
1507
+ icon?: string | {
1508
+ name: string;
1509
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1510
+ } | undefined;
1511
+ tag?: string | undefined;
1512
+ url?: string | undefined;
1513
+ hideApiMarker?: boolean | undefined;
1514
+ noindex?: boolean | undefined;
1515
+ isPublic?: boolean | undefined;
1516
+ }>>;
1517
+ }, "strip", z.ZodTypeAny, {
1518
+ group: string;
1519
+ icon?: string | {
1520
+ name: string;
1521
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1522
+ } | undefined;
1523
+ hidden?: boolean | undefined;
1524
+ root?: string | {
1525
+ href: string;
1526
+ title: string;
1527
+ sidebarTitle?: string | undefined;
1528
+ description?: string | undefined;
1529
+ api?: string | undefined;
1530
+ openapi?: string | undefined;
1531
+ contentType?: string | undefined;
1532
+ authMethod?: string | undefined;
1533
+ auth?: string | undefined;
1534
+ version?: string | undefined;
1535
+ mode?: string | undefined;
1536
+ hideFooterPagination?: boolean | undefined;
1537
+ authors?: unknown;
1538
+ lastUpdatedDate?: string | undefined;
1539
+ createdDate?: string | undefined;
1540
+ 'openapi-schema'?: string | undefined;
1541
+ icon?: string | {
1542
+ name: string;
1543
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1544
+ } | undefined;
1545
+ tag?: string | undefined;
1546
+ url?: string | undefined;
1547
+ hideApiMarker?: boolean | undefined;
1548
+ noindex?: boolean | undefined;
1549
+ isPublic?: boolean | undefined;
1550
+ } | undefined;
1551
+ }, {
1552
+ group: string;
1553
+ icon?: string | {
1554
+ name: string;
1555
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1556
+ } | undefined;
1557
+ hidden?: boolean | undefined;
1558
+ root?: string | {
1559
+ href: string;
1560
+ title: string;
1561
+ sidebarTitle?: string | undefined;
1562
+ description?: string | undefined;
1563
+ api?: string | undefined;
1564
+ openapi?: string | undefined;
1565
+ contentType?: string | undefined;
1566
+ authMethod?: string | undefined;
1567
+ auth?: string | undefined;
1568
+ version?: string | undefined;
1569
+ mode?: string | undefined;
1570
+ hideFooterPagination?: boolean | undefined;
1571
+ authors?: unknown;
1572
+ lastUpdatedDate?: string | undefined;
1573
+ createdDate?: string | undefined;
1574
+ 'openapi-schema'?: string | undefined;
1575
+ icon?: string | {
1576
+ name: string;
1577
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1578
+ } | undefined;
1579
+ tag?: string | undefined;
1580
+ url?: string | undefined;
1581
+ hideApiMarker?: boolean | undefined;
1582
+ noindex?: boolean | undefined;
1583
+ isPublic?: boolean | undefined;
1584
+ } | undefined;
1585
+ }>, z.ZodUnion<[z.ZodObject<{
1586
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
1587
+ }, "strip", z.ZodTypeAny, {
1588
+ openapi: (string | string[]) & (string | string[] | undefined);
1589
+ }, {
1590
+ openapi: (string | string[]) & (string | string[] | undefined);
1591
+ }>, z.ZodLazy<z.ZodObject<{
1592
+ pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
1593
+ }, "strip", z.ZodTypeAny, {
1594
+ pages: any[];
1595
+ }, {
1596
+ pages: any[];
1597
+ }>>]>>, "many">;
1598
+ }, "strip", z.ZodTypeAny, {
1599
+ groups: ({
1600
+ group: string;
1601
+ icon?: string | {
1602
+ name: string;
1603
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1604
+ } | undefined;
1605
+ hidden?: boolean | undefined;
1606
+ root?: string | {
1607
+ href: string;
1608
+ title: string;
1609
+ sidebarTitle?: string | undefined;
1610
+ description?: string | undefined;
1611
+ api?: string | undefined;
1612
+ openapi?: string | undefined;
1613
+ contentType?: string | undefined;
1614
+ authMethod?: string | undefined;
1615
+ auth?: string | undefined;
1616
+ version?: string | undefined;
1617
+ mode?: string | undefined;
1618
+ hideFooterPagination?: boolean | undefined;
1619
+ authors?: unknown;
1620
+ lastUpdatedDate?: string | undefined;
1621
+ createdDate?: string | undefined;
1622
+ 'openapi-schema'?: string | undefined;
1623
+ icon?: string | {
1624
+ name: string;
1625
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1626
+ } | undefined;
1627
+ tag?: string | undefined;
1628
+ url?: string | undefined;
1629
+ hideApiMarker?: boolean | undefined;
1630
+ noindex?: boolean | undefined;
1631
+ isPublic?: boolean | undefined;
1632
+ } | undefined;
1633
+ } & ({
1634
+ openapi: (string | string[]) & (string | string[] | undefined);
1635
+ } | {
1636
+ pages: any[];
1637
+ }))[];
1638
+ }, {
1639
+ groups: ({
1640
+ group: string;
1641
+ icon?: string | {
1642
+ name: string;
1643
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1644
+ } | undefined;
1645
+ hidden?: boolean | undefined;
1646
+ root?: string | {
1647
+ href: string;
1648
+ title: string;
1649
+ sidebarTitle?: string | undefined;
1650
+ description?: string | undefined;
1651
+ api?: string | undefined;
1652
+ openapi?: string | undefined;
1653
+ contentType?: string | undefined;
1654
+ authMethod?: string | undefined;
1655
+ auth?: string | undefined;
1656
+ version?: string | undefined;
1657
+ mode?: string | undefined;
1658
+ hideFooterPagination?: boolean | undefined;
1659
+ authors?: unknown;
1660
+ lastUpdatedDate?: string | undefined;
1661
+ createdDate?: string | undefined;
1662
+ 'openapi-schema'?: string | undefined;
1663
+ icon?: string | {
1664
+ name: string;
1665
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1666
+ } | undefined;
1667
+ tag?: string | undefined;
1668
+ url?: string | undefined;
1669
+ hideApiMarker?: boolean | undefined;
1670
+ noindex?: boolean | undefined;
1671
+ isPublic?: boolean | undefined;
1672
+ } | undefined;
1673
+ } & ({
1674
+ openapi: (string | string[]) & (string | string[] | undefined);
1675
+ } | {
1676
+ pages: any[];
1677
+ }))[];
1678
+ }>, z.ZodObject<{
1679
+ pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
1680
+ }, "strip", z.ZodTypeAny, {
1681
+ pages: any[];
1682
+ }, {
1683
+ pages: any[];
1684
+ }>]>>;
643
1685
  export type NavigationConfig = z.infer<typeof navigationSchema>;
1686
+ export type DecoratedNavigationConfig = z.infer<typeof decoratedNavigationSchema>;