@mintlify/validation 0.1.248 → 0.1.250
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mint-config/schemas/v2/index.d.ts +945 -410
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +232 -19
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +6 -2
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +160 -19
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +6 -2
- package/dist/mint-config/schemas/v2/properties/navigation/global.d.ts +0 -25
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +364 -110
- package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +88 -19
- package/dist/mint-config/schemas/v2/properties/navigation/languages.js +6 -2
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +160 -19
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +6 -2
- package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +88 -19
- package/dist/mint-config/schemas/v2/properties/navigation/version.js +6 -2
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +182 -75
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +182 -75
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +182 -75
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +182 -75
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +182 -55
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +182 -75
- package/dist/mint-config/upgrades/updateNavigationToDocsConfig.d.ts +2 -2
- package/dist/mint-config/upgrades/upgradeToDocsConfig.d.ts +2 -2
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -5,15 +5,12 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
5
5
|
languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
6
6
|
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
7
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">]>>;
|
|
9
8
|
}, "strip", z.ZodTypeAny, {
|
|
10
9
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
11
10
|
hidden?: boolean | undefined;
|
|
12
|
-
openapi?: string | string[] | undefined;
|
|
13
11
|
}, {
|
|
14
12
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
15
13
|
hidden?: boolean | undefined;
|
|
16
|
-
openapi?: string | string[] | undefined;
|
|
17
14
|
}>, z.ZodObject<{
|
|
18
15
|
href: z.ZodString;
|
|
19
16
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -24,15 +21,12 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
24
21
|
versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
25
22
|
version: z.ZodString;
|
|
26
23
|
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">]>>;
|
|
28
24
|
}, "strip", z.ZodTypeAny, {
|
|
29
25
|
version: string;
|
|
30
26
|
hidden?: boolean | undefined;
|
|
31
|
-
openapi?: string | string[] | undefined;
|
|
32
27
|
}, {
|
|
33
28
|
version: string;
|
|
34
29
|
hidden?: boolean | undefined;
|
|
35
|
-
openapi?: string | string[] | undefined;
|
|
36
30
|
}>, z.ZodObject<{
|
|
37
31
|
href: z.ZodString;
|
|
38
32
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -53,7 +47,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
53
47
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
54
48
|
}>]>>;
|
|
55
49
|
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">]>>;
|
|
57
50
|
}, "strip", z.ZodTypeAny, {
|
|
58
51
|
tab: string;
|
|
59
52
|
icon?: string | {
|
|
@@ -61,7 +54,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
61
54
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
62
55
|
} | undefined;
|
|
63
56
|
hidden?: boolean | undefined;
|
|
64
|
-
openapi?: string | string[] | undefined;
|
|
65
57
|
}, {
|
|
66
58
|
tab: string;
|
|
67
59
|
icon?: string | {
|
|
@@ -69,7 +61,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
69
61
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
70
62
|
} | undefined;
|
|
71
63
|
hidden?: boolean | undefined;
|
|
72
|
-
openapi?: string | string[] | undefined;
|
|
73
64
|
}>, z.ZodObject<{
|
|
74
65
|
href: z.ZodString;
|
|
75
66
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -90,7 +81,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
90
81
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
91
82
|
}>]>>;
|
|
92
83
|
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">]>>;
|
|
94
84
|
}, "strip", z.ZodTypeAny, {
|
|
95
85
|
dropdown: string;
|
|
96
86
|
icon?: string | {
|
|
@@ -98,7 +88,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
98
88
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
99
89
|
} | undefined;
|
|
100
90
|
hidden?: boolean | undefined;
|
|
101
|
-
openapi?: string | string[] | undefined;
|
|
102
91
|
}, {
|
|
103
92
|
dropdown: string;
|
|
104
93
|
icon?: string | {
|
|
@@ -106,7 +95,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
106
95
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
107
96
|
} | undefined;
|
|
108
97
|
hidden?: boolean | undefined;
|
|
109
|
-
openapi?: string | string[] | undefined;
|
|
110
98
|
}>, z.ZodObject<{
|
|
111
99
|
href: z.ZodString;
|
|
112
100
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -137,7 +125,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
137
125
|
dark?: string | undefined;
|
|
138
126
|
}>>;
|
|
139
127
|
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">]>>;
|
|
141
128
|
}, "strip", z.ZodTypeAny, {
|
|
142
129
|
anchor: string;
|
|
143
130
|
icon?: string | {
|
|
@@ -149,7 +136,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
149
136
|
dark?: string | undefined;
|
|
150
137
|
} | undefined;
|
|
151
138
|
hidden?: boolean | undefined;
|
|
152
|
-
openapi?: string | string[] | undefined;
|
|
153
139
|
}, {
|
|
154
140
|
anchor: string;
|
|
155
141
|
icon?: string | {
|
|
@@ -161,7 +147,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
161
147
|
dark?: string | undefined;
|
|
162
148
|
} | undefined;
|
|
163
149
|
hidden?: boolean | undefined;
|
|
164
|
-
openapi?: string | string[] | undefined;
|
|
165
150
|
}>, z.ZodObject<{
|
|
166
151
|
href: z.ZodString;
|
|
167
152
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -173,14 +158,12 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
173
158
|
languages?: ({
|
|
174
159
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
175
160
|
hidden?: boolean | undefined;
|
|
176
|
-
openapi?: string | string[] | undefined;
|
|
177
161
|
} & {
|
|
178
162
|
href: string;
|
|
179
163
|
})[] | undefined;
|
|
180
164
|
versions?: ({
|
|
181
165
|
version: string;
|
|
182
166
|
hidden?: boolean | undefined;
|
|
183
|
-
openapi?: string | string[] | undefined;
|
|
184
167
|
} & {
|
|
185
168
|
href: string;
|
|
186
169
|
})[] | undefined;
|
|
@@ -191,7 +174,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
191
174
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
192
175
|
} | undefined;
|
|
193
176
|
hidden?: boolean | undefined;
|
|
194
|
-
openapi?: string | string[] | undefined;
|
|
195
177
|
} & {
|
|
196
178
|
href: string;
|
|
197
179
|
})[] | undefined;
|
|
@@ -202,7 +184,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
202
184
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
203
185
|
} | undefined;
|
|
204
186
|
hidden?: boolean | undefined;
|
|
205
|
-
openapi?: string | string[] | undefined;
|
|
206
187
|
} & {
|
|
207
188
|
href: string;
|
|
208
189
|
})[] | undefined;
|
|
@@ -217,7 +198,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
217
198
|
dark?: string | undefined;
|
|
218
199
|
} | undefined;
|
|
219
200
|
hidden?: boolean | undefined;
|
|
220
|
-
openapi?: string | string[] | undefined;
|
|
221
201
|
} & {
|
|
222
202
|
href: string;
|
|
223
203
|
})[] | undefined;
|
|
@@ -225,14 +205,12 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
225
205
|
languages?: ({
|
|
226
206
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
227
207
|
hidden?: boolean | undefined;
|
|
228
|
-
openapi?: string | string[] | undefined;
|
|
229
208
|
} & {
|
|
230
209
|
href: string;
|
|
231
210
|
})[] | undefined;
|
|
232
211
|
versions?: ({
|
|
233
212
|
version: string;
|
|
234
213
|
hidden?: boolean | undefined;
|
|
235
|
-
openapi?: string | string[] | undefined;
|
|
236
214
|
} & {
|
|
237
215
|
href: string;
|
|
238
216
|
})[] | undefined;
|
|
@@ -243,7 +221,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
243
221
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
244
222
|
} | undefined;
|
|
245
223
|
hidden?: boolean | undefined;
|
|
246
|
-
openapi?: string | string[] | undefined;
|
|
247
224
|
} & {
|
|
248
225
|
href: string;
|
|
249
226
|
})[] | undefined;
|
|
@@ -254,7 +231,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
254
231
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
255
232
|
} | undefined;
|
|
256
233
|
hidden?: boolean | undefined;
|
|
257
|
-
openapi?: string | string[] | undefined;
|
|
258
234
|
} & {
|
|
259
235
|
href: string;
|
|
260
236
|
})[] | undefined;
|
|
@@ -269,7 +245,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
269
245
|
dark?: string | undefined;
|
|
270
246
|
} | undefined;
|
|
271
247
|
hidden?: boolean | undefined;
|
|
272
|
-
openapi?: string | string[] | undefined;
|
|
273
248
|
} & {
|
|
274
249
|
href: string;
|
|
275
250
|
})[] | undefined;
|
|
@@ -279,14 +254,12 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
279
254
|
languages?: ({
|
|
280
255
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
281
256
|
hidden?: boolean | undefined;
|
|
282
|
-
openapi?: string | string[] | undefined;
|
|
283
257
|
} & {
|
|
284
258
|
href: string;
|
|
285
259
|
})[] | undefined;
|
|
286
260
|
versions?: ({
|
|
287
261
|
version: string;
|
|
288
262
|
hidden?: boolean | undefined;
|
|
289
|
-
openapi?: string | string[] | undefined;
|
|
290
263
|
} & {
|
|
291
264
|
href: string;
|
|
292
265
|
})[] | undefined;
|
|
@@ -297,7 +270,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
297
270
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
298
271
|
} | undefined;
|
|
299
272
|
hidden?: boolean | undefined;
|
|
300
|
-
openapi?: string | string[] | undefined;
|
|
301
273
|
} & {
|
|
302
274
|
href: string;
|
|
303
275
|
})[] | undefined;
|
|
@@ -308,7 +280,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
308
280
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
309
281
|
} | undefined;
|
|
310
282
|
hidden?: boolean | undefined;
|
|
311
|
-
openapi?: string | string[] | undefined;
|
|
312
283
|
} & {
|
|
313
284
|
href: string;
|
|
314
285
|
})[] | undefined;
|
|
@@ -323,7 +294,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
323
294
|
dark?: string | undefined;
|
|
324
295
|
} | undefined;
|
|
325
296
|
hidden?: boolean | undefined;
|
|
326
|
-
openapi?: string | string[] | undefined;
|
|
327
297
|
} & {
|
|
328
298
|
href: string;
|
|
329
299
|
})[] | undefined;
|
|
@@ -333,14 +303,12 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
333
303
|
languages?: ({
|
|
334
304
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
335
305
|
hidden?: boolean | undefined;
|
|
336
|
-
openapi?: string | string[] | undefined;
|
|
337
306
|
} & {
|
|
338
307
|
href: string;
|
|
339
308
|
})[] | undefined;
|
|
340
309
|
versions?: ({
|
|
341
310
|
version: string;
|
|
342
311
|
hidden?: boolean | undefined;
|
|
343
|
-
openapi?: string | string[] | undefined;
|
|
344
312
|
} & {
|
|
345
313
|
href: string;
|
|
346
314
|
})[] | undefined;
|
|
@@ -351,7 +319,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
351
319
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
352
320
|
} | undefined;
|
|
353
321
|
hidden?: boolean | undefined;
|
|
354
|
-
openapi?: string | string[] | undefined;
|
|
355
322
|
} & {
|
|
356
323
|
href: string;
|
|
357
324
|
})[] | undefined;
|
|
@@ -362,7 +329,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
362
329
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
363
330
|
} | undefined;
|
|
364
331
|
hidden?: boolean | undefined;
|
|
365
|
-
openapi?: string | string[] | undefined;
|
|
366
332
|
} & {
|
|
367
333
|
href: string;
|
|
368
334
|
})[] | undefined;
|
|
@@ -377,7 +343,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
377
343
|
dark?: string | undefined;
|
|
378
344
|
} | undefined;
|
|
379
345
|
hidden?: boolean | undefined;
|
|
380
|
-
openapi?: string | string[] | undefined;
|
|
381
346
|
} & {
|
|
382
347
|
href: string;
|
|
383
348
|
})[] | undefined;
|
|
@@ -386,22 +351,40 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
386
351
|
languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
387
352
|
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
388
353
|
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
354
|
}, "strip", z.ZodTypeAny, {
|
|
391
355
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
392
356
|
hidden?: boolean | undefined;
|
|
393
|
-
openapi?: string | string[] | undefined;
|
|
394
357
|
}, {
|
|
395
358
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
396
359
|
hidden?: boolean | undefined;
|
|
397
|
-
openapi?: string | string[] | undefined;
|
|
398
360
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
399
361
|
href: z.ZodString;
|
|
400
362
|
}, "strip", z.ZodTypeAny, {
|
|
401
363
|
href: string;
|
|
402
364
|
}, {
|
|
403
365
|
href: string;
|
|
404
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]
|
|
366
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
367
|
+
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
368
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
369
|
+
}, "strip", z.ZodTypeAny, {
|
|
370
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
371
|
+
hidden?: boolean | undefined;
|
|
372
|
+
}, {
|
|
373
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
374
|
+
hidden?: boolean | undefined;
|
|
375
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
376
|
+
href: z.ZodString;
|
|
377
|
+
}, "strip", z.ZodTypeAny, {
|
|
378
|
+
href: string;
|
|
379
|
+
}, {
|
|
380
|
+
href: string;
|
|
381
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
382
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
|
|
383
|
+
}, "strip", z.ZodTypeAny, {
|
|
384
|
+
openapi?: string | string[] | undefined;
|
|
385
|
+
}, {
|
|
386
|
+
openapi?: string | string[] | undefined;
|
|
387
|
+
}>>, "many">;
|
|
405
388
|
}, "strip", z.ZodTypeAny, {
|
|
406
389
|
languages: any[];
|
|
407
390
|
}, {
|
|
@@ -410,22 +393,40 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
410
393
|
versions: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
411
394
|
version: z.ZodString;
|
|
412
395
|
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
396
|
}, "strip", z.ZodTypeAny, {
|
|
415
397
|
version: string;
|
|
416
398
|
hidden?: boolean | undefined;
|
|
417
|
-
openapi?: string | string[] | undefined;
|
|
418
399
|
}, {
|
|
419
400
|
version: string;
|
|
420
401
|
hidden?: boolean | undefined;
|
|
421
|
-
openapi?: string | string[] | undefined;
|
|
422
402
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
423
403
|
href: z.ZodString;
|
|
424
404
|
}, "strip", z.ZodTypeAny, {
|
|
425
405
|
href: string;
|
|
426
406
|
}, {
|
|
427
407
|
href: string;
|
|
428
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]
|
|
408
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
409
|
+
version: z.ZodString;
|
|
410
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
411
|
+
}, "strip", z.ZodTypeAny, {
|
|
412
|
+
version: string;
|
|
413
|
+
hidden?: boolean | undefined;
|
|
414
|
+
}, {
|
|
415
|
+
version: string;
|
|
416
|
+
hidden?: boolean | undefined;
|
|
417
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
418
|
+
href: z.ZodString;
|
|
419
|
+
}, "strip", z.ZodTypeAny, {
|
|
420
|
+
href: string;
|
|
421
|
+
}, {
|
|
422
|
+
href: string;
|
|
423
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
424
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
|
|
425
|
+
}, "strip", z.ZodTypeAny, {
|
|
426
|
+
openapi?: string | string[] | undefined;
|
|
427
|
+
}, {
|
|
428
|
+
openapi?: string | string[] | undefined;
|
|
429
|
+
}>>, "many">;
|
|
429
430
|
}, "strip", z.ZodTypeAny, {
|
|
430
431
|
versions: any[];
|
|
431
432
|
}, {
|
|
@@ -444,7 +445,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
444
445
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
445
446
|
}>]>>;
|
|
446
447
|
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
448
|
}, "strip", z.ZodTypeAny, {
|
|
449
449
|
tab: string;
|
|
450
450
|
icon?: string | {
|
|
@@ -452,7 +452,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
452
452
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
453
453
|
} | undefined;
|
|
454
454
|
hidden?: boolean | undefined;
|
|
455
|
-
openapi?: string | string[] | undefined;
|
|
456
455
|
}, {
|
|
457
456
|
tab: string;
|
|
458
457
|
icon?: string | {
|
|
@@ -460,14 +459,52 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
460
459
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
461
460
|
} | undefined;
|
|
462
461
|
hidden?: boolean | undefined;
|
|
463
|
-
openapi?: string | string[] | undefined;
|
|
464
462
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
465
463
|
href: z.ZodString;
|
|
466
464
|
}, "strip", z.ZodTypeAny, {
|
|
467
465
|
href: string;
|
|
468
466
|
}, {
|
|
469
467
|
href: string;
|
|
470
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]
|
|
468
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
469
|
+
tab: z.ZodString;
|
|
470
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
471
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
472
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
473
|
+
}, "strip", z.ZodTypeAny, {
|
|
474
|
+
name: string;
|
|
475
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
476
|
+
}, {
|
|
477
|
+
name: string;
|
|
478
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
479
|
+
}>]>>;
|
|
480
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
481
|
+
}, "strip", z.ZodTypeAny, {
|
|
482
|
+
tab: string;
|
|
483
|
+
icon?: string | {
|
|
484
|
+
name: string;
|
|
485
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
486
|
+
} | undefined;
|
|
487
|
+
hidden?: boolean | undefined;
|
|
488
|
+
}, {
|
|
489
|
+
tab: string;
|
|
490
|
+
icon?: string | {
|
|
491
|
+
name: string;
|
|
492
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
493
|
+
} | undefined;
|
|
494
|
+
hidden?: boolean | undefined;
|
|
495
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
496
|
+
href: z.ZodString;
|
|
497
|
+
}, "strip", z.ZodTypeAny, {
|
|
498
|
+
href: string;
|
|
499
|
+
}, {
|
|
500
|
+
href: string;
|
|
501
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
502
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
|
|
503
|
+
}, "strip", z.ZodTypeAny, {
|
|
504
|
+
openapi?: string | string[] | undefined;
|
|
505
|
+
}, {
|
|
506
|
+
openapi?: string | string[] | undefined;
|
|
507
|
+
}>>, "many">;
|
|
471
508
|
}, "strip", z.ZodTypeAny, {
|
|
472
509
|
tabs: any[];
|
|
473
510
|
}, {
|
|
@@ -486,7 +523,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
486
523
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
487
524
|
}>]>>;
|
|
488
525
|
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
526
|
}, "strip", z.ZodTypeAny, {
|
|
491
527
|
dropdown: string;
|
|
492
528
|
icon?: string | {
|
|
@@ -494,7 +530,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
494
530
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
495
531
|
} | undefined;
|
|
496
532
|
hidden?: boolean | undefined;
|
|
497
|
-
openapi?: string | string[] | undefined;
|
|
498
533
|
}, {
|
|
499
534
|
dropdown: string;
|
|
500
535
|
icon?: string | {
|
|
@@ -502,14 +537,52 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
502
537
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
503
538
|
} | undefined;
|
|
504
539
|
hidden?: boolean | undefined;
|
|
505
|
-
openapi?: string | string[] | undefined;
|
|
506
540
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
507
541
|
href: z.ZodString;
|
|
508
542
|
}, "strip", z.ZodTypeAny, {
|
|
509
543
|
href: string;
|
|
510
544
|
}, {
|
|
511
545
|
href: string;
|
|
512
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]
|
|
546
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
547
|
+
dropdown: z.ZodString;
|
|
548
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
549
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
550
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
551
|
+
}, "strip", z.ZodTypeAny, {
|
|
552
|
+
name: string;
|
|
553
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
554
|
+
}, {
|
|
555
|
+
name: string;
|
|
556
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
557
|
+
}>]>>;
|
|
558
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
559
|
+
}, "strip", z.ZodTypeAny, {
|
|
560
|
+
dropdown: string;
|
|
561
|
+
icon?: string | {
|
|
562
|
+
name: string;
|
|
563
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
564
|
+
} | undefined;
|
|
565
|
+
hidden?: boolean | undefined;
|
|
566
|
+
}, {
|
|
567
|
+
dropdown: string;
|
|
568
|
+
icon?: string | {
|
|
569
|
+
name: string;
|
|
570
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
571
|
+
} | undefined;
|
|
572
|
+
hidden?: boolean | undefined;
|
|
573
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
574
|
+
href: z.ZodString;
|
|
575
|
+
}, "strip", z.ZodTypeAny, {
|
|
576
|
+
href: string;
|
|
577
|
+
}, {
|
|
578
|
+
href: string;
|
|
579
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
580
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
|
|
581
|
+
}, "strip", z.ZodTypeAny, {
|
|
582
|
+
openapi?: string | string[] | undefined;
|
|
583
|
+
}, {
|
|
584
|
+
openapi?: string | string[] | undefined;
|
|
585
|
+
}>>, "many">;
|
|
513
586
|
}, "strip", z.ZodTypeAny, {
|
|
514
587
|
dropdowns: any[];
|
|
515
588
|
}, {
|
|
@@ -538,7 +611,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
538
611
|
dark?: string | undefined;
|
|
539
612
|
}>>;
|
|
540
613
|
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
614
|
}, "strip", z.ZodTypeAny, {
|
|
543
615
|
anchor: string;
|
|
544
616
|
icon?: string | {
|
|
@@ -550,7 +622,6 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
550
622
|
dark?: string | undefined;
|
|
551
623
|
} | undefined;
|
|
552
624
|
hidden?: boolean | undefined;
|
|
553
|
-
openapi?: string | string[] | undefined;
|
|
554
625
|
}, {
|
|
555
626
|
anchor: string;
|
|
556
627
|
icon?: string | {
|
|
@@ -562,14 +633,70 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
562
633
|
dark?: string | undefined;
|
|
563
634
|
} | undefined;
|
|
564
635
|
hidden?: boolean | undefined;
|
|
565
|
-
openapi?: string | string[] | undefined;
|
|
566
636
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
567
637
|
href: z.ZodString;
|
|
568
638
|
}, "strip", z.ZodTypeAny, {
|
|
569
639
|
href: string;
|
|
570
640
|
}, {
|
|
571
641
|
href: string;
|
|
572
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]
|
|
642
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
643
|
+
anchor: z.ZodString;
|
|
644
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
645
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
646
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
647
|
+
}, "strip", z.ZodTypeAny, {
|
|
648
|
+
name: string;
|
|
649
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
650
|
+
}, {
|
|
651
|
+
name: string;
|
|
652
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
653
|
+
}>]>>;
|
|
654
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
655
|
+
light: z.ZodOptional<z.ZodString>;
|
|
656
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
657
|
+
}, "strict", z.ZodTypeAny, {
|
|
658
|
+
light?: string | undefined;
|
|
659
|
+
dark?: string | undefined;
|
|
660
|
+
}, {
|
|
661
|
+
light?: string | undefined;
|
|
662
|
+
dark?: string | undefined;
|
|
663
|
+
}>>;
|
|
664
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
665
|
+
}, "strip", z.ZodTypeAny, {
|
|
666
|
+
anchor: string;
|
|
667
|
+
icon?: string | {
|
|
668
|
+
name: string;
|
|
669
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
670
|
+
} | undefined;
|
|
671
|
+
color?: {
|
|
672
|
+
light?: string | undefined;
|
|
673
|
+
dark?: string | undefined;
|
|
674
|
+
} | undefined;
|
|
675
|
+
hidden?: boolean | undefined;
|
|
676
|
+
}, {
|
|
677
|
+
anchor: 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
|
+
color?: {
|
|
683
|
+
light?: string | undefined;
|
|
684
|
+
dark?: string | undefined;
|
|
685
|
+
} | undefined;
|
|
686
|
+
hidden?: boolean | undefined;
|
|
687
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
688
|
+
href: z.ZodString;
|
|
689
|
+
}, "strip", z.ZodTypeAny, {
|
|
690
|
+
href: string;
|
|
691
|
+
}, {
|
|
692
|
+
href: string;
|
|
693
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
694
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
|
|
695
|
+
}, "strip", z.ZodTypeAny, {
|
|
696
|
+
openapi?: string | string[] | undefined;
|
|
697
|
+
}, {
|
|
698
|
+
openapi?: string | string[] | undefined;
|
|
699
|
+
}>>, "many">;
|
|
573
700
|
}, "strip", z.ZodTypeAny, {
|
|
574
701
|
anchors: any[];
|
|
575
702
|
}, {
|
|
@@ -846,15 +973,12 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
846
973
|
languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
847
974
|
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
848
975
|
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
976
|
}, "strip", z.ZodTypeAny, {
|
|
851
977
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
852
978
|
hidden?: boolean | undefined;
|
|
853
|
-
openapi?: string | string[] | undefined;
|
|
854
979
|
}, {
|
|
855
980
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
856
981
|
hidden?: boolean | undefined;
|
|
857
|
-
openapi?: string | string[] | undefined;
|
|
858
982
|
}>, z.ZodObject<{
|
|
859
983
|
href: z.ZodString;
|
|
860
984
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -865,15 +989,12 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
865
989
|
versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
866
990
|
version: z.ZodString;
|
|
867
991
|
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
992
|
}, "strip", z.ZodTypeAny, {
|
|
870
993
|
version: string;
|
|
871
994
|
hidden?: boolean | undefined;
|
|
872
|
-
openapi?: string | string[] | undefined;
|
|
873
995
|
}, {
|
|
874
996
|
version: string;
|
|
875
997
|
hidden?: boolean | undefined;
|
|
876
|
-
openapi?: string | string[] | undefined;
|
|
877
998
|
}>, z.ZodObject<{
|
|
878
999
|
href: z.ZodString;
|
|
879
1000
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -894,7 +1015,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
894
1015
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
895
1016
|
}>]>>;
|
|
896
1017
|
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
1018
|
}, "strip", z.ZodTypeAny, {
|
|
899
1019
|
tab: string;
|
|
900
1020
|
icon?: string | {
|
|
@@ -902,7 +1022,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
902
1022
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
903
1023
|
} | undefined;
|
|
904
1024
|
hidden?: boolean | undefined;
|
|
905
|
-
openapi?: string | string[] | undefined;
|
|
906
1025
|
}, {
|
|
907
1026
|
tab: string;
|
|
908
1027
|
icon?: string | {
|
|
@@ -910,7 +1029,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
910
1029
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
911
1030
|
} | undefined;
|
|
912
1031
|
hidden?: boolean | undefined;
|
|
913
|
-
openapi?: string | string[] | undefined;
|
|
914
1032
|
}>, z.ZodObject<{
|
|
915
1033
|
href: z.ZodString;
|
|
916
1034
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -931,7 +1049,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
931
1049
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
932
1050
|
}>]>>;
|
|
933
1051
|
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
1052
|
}, "strip", z.ZodTypeAny, {
|
|
936
1053
|
dropdown: string;
|
|
937
1054
|
icon?: string | {
|
|
@@ -939,7 +1056,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
939
1056
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
940
1057
|
} | undefined;
|
|
941
1058
|
hidden?: boolean | undefined;
|
|
942
|
-
openapi?: string | string[] | undefined;
|
|
943
1059
|
}, {
|
|
944
1060
|
dropdown: string;
|
|
945
1061
|
icon?: string | {
|
|
@@ -947,7 +1063,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
947
1063
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
948
1064
|
} | undefined;
|
|
949
1065
|
hidden?: boolean | undefined;
|
|
950
|
-
openapi?: string | string[] | undefined;
|
|
951
1066
|
}>, z.ZodObject<{
|
|
952
1067
|
href: z.ZodString;
|
|
953
1068
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -978,7 +1093,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
978
1093
|
dark?: string | undefined;
|
|
979
1094
|
}>>;
|
|
980
1095
|
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
1096
|
}, "strip", z.ZodTypeAny, {
|
|
983
1097
|
anchor: string;
|
|
984
1098
|
icon?: string | {
|
|
@@ -990,7 +1104,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
990
1104
|
dark?: string | undefined;
|
|
991
1105
|
} | undefined;
|
|
992
1106
|
hidden?: boolean | undefined;
|
|
993
|
-
openapi?: string | string[] | undefined;
|
|
994
1107
|
}, {
|
|
995
1108
|
anchor: string;
|
|
996
1109
|
icon?: string | {
|
|
@@ -1002,7 +1115,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1002
1115
|
dark?: string | undefined;
|
|
1003
1116
|
} | undefined;
|
|
1004
1117
|
hidden?: boolean | undefined;
|
|
1005
|
-
openapi?: string | string[] | undefined;
|
|
1006
1118
|
}>, z.ZodObject<{
|
|
1007
1119
|
href: z.ZodString;
|
|
1008
1120
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1014,14 +1126,12 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1014
1126
|
languages?: ({
|
|
1015
1127
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1016
1128
|
hidden?: boolean | undefined;
|
|
1017
|
-
openapi?: string | string[] | undefined;
|
|
1018
1129
|
} & {
|
|
1019
1130
|
href: string;
|
|
1020
1131
|
})[] | undefined;
|
|
1021
1132
|
versions?: ({
|
|
1022
1133
|
version: string;
|
|
1023
1134
|
hidden?: boolean | undefined;
|
|
1024
|
-
openapi?: string | string[] | undefined;
|
|
1025
1135
|
} & {
|
|
1026
1136
|
href: string;
|
|
1027
1137
|
})[] | undefined;
|
|
@@ -1032,7 +1142,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1032
1142
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1033
1143
|
} | undefined;
|
|
1034
1144
|
hidden?: boolean | undefined;
|
|
1035
|
-
openapi?: string | string[] | undefined;
|
|
1036
1145
|
} & {
|
|
1037
1146
|
href: string;
|
|
1038
1147
|
})[] | undefined;
|
|
@@ -1043,7 +1152,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1043
1152
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1044
1153
|
} | undefined;
|
|
1045
1154
|
hidden?: boolean | undefined;
|
|
1046
|
-
openapi?: string | string[] | undefined;
|
|
1047
1155
|
} & {
|
|
1048
1156
|
href: string;
|
|
1049
1157
|
})[] | undefined;
|
|
@@ -1058,7 +1166,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1058
1166
|
dark?: string | undefined;
|
|
1059
1167
|
} | undefined;
|
|
1060
1168
|
hidden?: boolean | undefined;
|
|
1061
|
-
openapi?: string | string[] | undefined;
|
|
1062
1169
|
} & {
|
|
1063
1170
|
href: string;
|
|
1064
1171
|
})[] | undefined;
|
|
@@ -1066,14 +1173,12 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1066
1173
|
languages?: ({
|
|
1067
1174
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1068
1175
|
hidden?: boolean | undefined;
|
|
1069
|
-
openapi?: string | string[] | undefined;
|
|
1070
1176
|
} & {
|
|
1071
1177
|
href: string;
|
|
1072
1178
|
})[] | undefined;
|
|
1073
1179
|
versions?: ({
|
|
1074
1180
|
version: string;
|
|
1075
1181
|
hidden?: boolean | undefined;
|
|
1076
|
-
openapi?: string | string[] | undefined;
|
|
1077
1182
|
} & {
|
|
1078
1183
|
href: string;
|
|
1079
1184
|
})[] | undefined;
|
|
@@ -1084,7 +1189,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1084
1189
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1085
1190
|
} | undefined;
|
|
1086
1191
|
hidden?: boolean | undefined;
|
|
1087
|
-
openapi?: string | string[] | undefined;
|
|
1088
1192
|
} & {
|
|
1089
1193
|
href: string;
|
|
1090
1194
|
})[] | undefined;
|
|
@@ -1095,7 +1199,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1095
1199
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1096
1200
|
} | undefined;
|
|
1097
1201
|
hidden?: boolean | undefined;
|
|
1098
|
-
openapi?: string | string[] | undefined;
|
|
1099
1202
|
} & {
|
|
1100
1203
|
href: string;
|
|
1101
1204
|
})[] | undefined;
|
|
@@ -1110,7 +1213,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1110
1213
|
dark?: string | undefined;
|
|
1111
1214
|
} | undefined;
|
|
1112
1215
|
hidden?: boolean | undefined;
|
|
1113
|
-
openapi?: string | string[] | undefined;
|
|
1114
1216
|
} & {
|
|
1115
1217
|
href: string;
|
|
1116
1218
|
})[] | undefined;
|
|
@@ -1120,14 +1222,12 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1120
1222
|
languages?: ({
|
|
1121
1223
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1122
1224
|
hidden?: boolean | undefined;
|
|
1123
|
-
openapi?: string | string[] | undefined;
|
|
1124
1225
|
} & {
|
|
1125
1226
|
href: string;
|
|
1126
1227
|
})[] | undefined;
|
|
1127
1228
|
versions?: ({
|
|
1128
1229
|
version: string;
|
|
1129
1230
|
hidden?: boolean | undefined;
|
|
1130
|
-
openapi?: string | string[] | undefined;
|
|
1131
1231
|
} & {
|
|
1132
1232
|
href: string;
|
|
1133
1233
|
})[] | undefined;
|
|
@@ -1138,7 +1238,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1138
1238
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1139
1239
|
} | undefined;
|
|
1140
1240
|
hidden?: boolean | undefined;
|
|
1141
|
-
openapi?: string | string[] | undefined;
|
|
1142
1241
|
} & {
|
|
1143
1242
|
href: string;
|
|
1144
1243
|
})[] | undefined;
|
|
@@ -1149,7 +1248,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1149
1248
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1150
1249
|
} | undefined;
|
|
1151
1250
|
hidden?: boolean | undefined;
|
|
1152
|
-
openapi?: string | string[] | undefined;
|
|
1153
1251
|
} & {
|
|
1154
1252
|
href: string;
|
|
1155
1253
|
})[] | undefined;
|
|
@@ -1164,7 +1262,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1164
1262
|
dark?: string | undefined;
|
|
1165
1263
|
} | undefined;
|
|
1166
1264
|
hidden?: boolean | undefined;
|
|
1167
|
-
openapi?: string | string[] | undefined;
|
|
1168
1265
|
} & {
|
|
1169
1266
|
href: string;
|
|
1170
1267
|
})[] | undefined;
|
|
@@ -1174,14 +1271,12 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1174
1271
|
languages?: ({
|
|
1175
1272
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1176
1273
|
hidden?: boolean | undefined;
|
|
1177
|
-
openapi?: string | string[] | undefined;
|
|
1178
1274
|
} & {
|
|
1179
1275
|
href: string;
|
|
1180
1276
|
})[] | undefined;
|
|
1181
1277
|
versions?: ({
|
|
1182
1278
|
version: string;
|
|
1183
1279
|
hidden?: boolean | undefined;
|
|
1184
|
-
openapi?: string | string[] | undefined;
|
|
1185
1280
|
} & {
|
|
1186
1281
|
href: string;
|
|
1187
1282
|
})[] | undefined;
|
|
@@ -1192,7 +1287,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1192
1287
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1193
1288
|
} | undefined;
|
|
1194
1289
|
hidden?: boolean | undefined;
|
|
1195
|
-
openapi?: string | string[] | undefined;
|
|
1196
1290
|
} & {
|
|
1197
1291
|
href: string;
|
|
1198
1292
|
})[] | undefined;
|
|
@@ -1203,7 +1297,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1203
1297
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1204
1298
|
} | undefined;
|
|
1205
1299
|
hidden?: boolean | undefined;
|
|
1206
|
-
openapi?: string | string[] | undefined;
|
|
1207
1300
|
} & {
|
|
1208
1301
|
href: string;
|
|
1209
1302
|
})[] | undefined;
|
|
@@ -1218,7 +1311,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1218
1311
|
dark?: string | undefined;
|
|
1219
1312
|
} | undefined;
|
|
1220
1313
|
hidden?: boolean | undefined;
|
|
1221
|
-
openapi?: string | string[] | undefined;
|
|
1222
1314
|
} & {
|
|
1223
1315
|
href: string;
|
|
1224
1316
|
})[] | undefined;
|
|
@@ -1227,22 +1319,40 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1227
1319
|
languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
1228
1320
|
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
1229
1321
|
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
1322
|
}, "strip", z.ZodTypeAny, {
|
|
1232
1323
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1233
1324
|
hidden?: boolean | undefined;
|
|
1234
|
-
openapi?: string | string[] | undefined;
|
|
1235
1325
|
}, {
|
|
1236
1326
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1237
1327
|
hidden?: boolean | undefined;
|
|
1238
|
-
openapi?: string | string[] | undefined;
|
|
1239
1328
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
1240
1329
|
href: z.ZodString;
|
|
1241
1330
|
}, "strip", z.ZodTypeAny, {
|
|
1242
1331
|
href: string;
|
|
1243
1332
|
}, {
|
|
1244
1333
|
href: string;
|
|
1245
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]
|
|
1334
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1335
|
+
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
1336
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1337
|
+
}, "strip", z.ZodTypeAny, {
|
|
1338
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1339
|
+
hidden?: boolean | undefined;
|
|
1340
|
+
}, {
|
|
1341
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1342
|
+
hidden?: boolean | undefined;
|
|
1343
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
1344
|
+
href: z.ZodString;
|
|
1345
|
+
}, "strip", z.ZodTypeAny, {
|
|
1346
|
+
href: string;
|
|
1347
|
+
}, {
|
|
1348
|
+
href: string;
|
|
1349
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
1350
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
|
|
1351
|
+
}, "strip", z.ZodTypeAny, {
|
|
1352
|
+
openapi?: string | string[] | undefined;
|
|
1353
|
+
}, {
|
|
1354
|
+
openapi?: string | string[] | undefined;
|
|
1355
|
+
}>>, "many">;
|
|
1246
1356
|
}, "strip", z.ZodTypeAny, {
|
|
1247
1357
|
languages: any[];
|
|
1248
1358
|
}, {
|
|
@@ -1251,22 +1361,40 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1251
1361
|
versions: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
1252
1362
|
version: z.ZodString;
|
|
1253
1363
|
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
1364
|
}, "strip", z.ZodTypeAny, {
|
|
1256
1365
|
version: string;
|
|
1257
1366
|
hidden?: boolean | undefined;
|
|
1258
|
-
openapi?: string | string[] | undefined;
|
|
1259
1367
|
}, {
|
|
1260
1368
|
version: string;
|
|
1261
1369
|
hidden?: boolean | undefined;
|
|
1262
|
-
openapi?: string | string[] | undefined;
|
|
1263
1370
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
1264
1371
|
href: z.ZodString;
|
|
1265
1372
|
}, "strip", z.ZodTypeAny, {
|
|
1266
1373
|
href: string;
|
|
1267
1374
|
}, {
|
|
1268
1375
|
href: string;
|
|
1269
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]
|
|
1376
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1377
|
+
version: z.ZodString;
|
|
1378
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1379
|
+
}, "strip", z.ZodTypeAny, {
|
|
1380
|
+
version: string;
|
|
1381
|
+
hidden?: boolean | undefined;
|
|
1382
|
+
}, {
|
|
1383
|
+
version: string;
|
|
1384
|
+
hidden?: boolean | undefined;
|
|
1385
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
1386
|
+
href: z.ZodString;
|
|
1387
|
+
}, "strip", z.ZodTypeAny, {
|
|
1388
|
+
href: string;
|
|
1389
|
+
}, {
|
|
1390
|
+
href: string;
|
|
1391
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
1392
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
|
|
1393
|
+
}, "strip", z.ZodTypeAny, {
|
|
1394
|
+
openapi?: string | string[] | undefined;
|
|
1395
|
+
}, {
|
|
1396
|
+
openapi?: string | string[] | undefined;
|
|
1397
|
+
}>>, "many">;
|
|
1270
1398
|
}, "strip", z.ZodTypeAny, {
|
|
1271
1399
|
versions: any[];
|
|
1272
1400
|
}, {
|
|
@@ -1285,7 +1413,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1285
1413
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1286
1414
|
}>]>>;
|
|
1287
1415
|
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
1416
|
}, "strip", z.ZodTypeAny, {
|
|
1290
1417
|
tab: string;
|
|
1291
1418
|
icon?: string | {
|
|
@@ -1293,7 +1420,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1293
1420
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1294
1421
|
} | undefined;
|
|
1295
1422
|
hidden?: boolean | undefined;
|
|
1296
|
-
openapi?: string | string[] | undefined;
|
|
1297
1423
|
}, {
|
|
1298
1424
|
tab: string;
|
|
1299
1425
|
icon?: string | {
|
|
@@ -1301,14 +1427,52 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1301
1427
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1302
1428
|
} | undefined;
|
|
1303
1429
|
hidden?: boolean | undefined;
|
|
1304
|
-
openapi?: string | string[] | undefined;
|
|
1305
1430
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
1306
1431
|
href: z.ZodString;
|
|
1307
1432
|
}, "strip", z.ZodTypeAny, {
|
|
1308
1433
|
href: string;
|
|
1309
1434
|
}, {
|
|
1310
1435
|
href: string;
|
|
1311
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]
|
|
1436
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1437
|
+
tab: z.ZodString;
|
|
1438
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1439
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1440
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1441
|
+
}, "strip", z.ZodTypeAny, {
|
|
1442
|
+
name: string;
|
|
1443
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1444
|
+
}, {
|
|
1445
|
+
name: string;
|
|
1446
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1447
|
+
}>]>>;
|
|
1448
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1449
|
+
}, "strip", z.ZodTypeAny, {
|
|
1450
|
+
tab: string;
|
|
1451
|
+
icon?: string | {
|
|
1452
|
+
name: string;
|
|
1453
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1454
|
+
} | undefined;
|
|
1455
|
+
hidden?: boolean | undefined;
|
|
1456
|
+
}, {
|
|
1457
|
+
tab: string;
|
|
1458
|
+
icon?: string | {
|
|
1459
|
+
name: string;
|
|
1460
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1461
|
+
} | undefined;
|
|
1462
|
+
hidden?: boolean | undefined;
|
|
1463
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
1464
|
+
href: z.ZodString;
|
|
1465
|
+
}, "strip", z.ZodTypeAny, {
|
|
1466
|
+
href: string;
|
|
1467
|
+
}, {
|
|
1468
|
+
href: string;
|
|
1469
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
1470
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
|
|
1471
|
+
}, "strip", z.ZodTypeAny, {
|
|
1472
|
+
openapi?: string | string[] | undefined;
|
|
1473
|
+
}, {
|
|
1474
|
+
openapi?: string | string[] | undefined;
|
|
1475
|
+
}>>, "many">;
|
|
1312
1476
|
}, "strip", z.ZodTypeAny, {
|
|
1313
1477
|
tabs: any[];
|
|
1314
1478
|
}, {
|
|
@@ -1327,7 +1491,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1327
1491
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1328
1492
|
}>]>>;
|
|
1329
1493
|
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
1494
|
}, "strip", z.ZodTypeAny, {
|
|
1332
1495
|
dropdown: string;
|
|
1333
1496
|
icon?: string | {
|
|
@@ -1335,7 +1498,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1335
1498
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1336
1499
|
} | undefined;
|
|
1337
1500
|
hidden?: boolean | undefined;
|
|
1338
|
-
openapi?: string | string[] | undefined;
|
|
1339
1501
|
}, {
|
|
1340
1502
|
dropdown: string;
|
|
1341
1503
|
icon?: string | {
|
|
@@ -1343,14 +1505,52 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1343
1505
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1344
1506
|
} | undefined;
|
|
1345
1507
|
hidden?: boolean | undefined;
|
|
1346
|
-
openapi?: string | string[] | undefined;
|
|
1347
1508
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
1348
1509
|
href: z.ZodString;
|
|
1349
1510
|
}, "strip", z.ZodTypeAny, {
|
|
1350
1511
|
href: string;
|
|
1351
1512
|
}, {
|
|
1352
1513
|
href: string;
|
|
1353
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]
|
|
1514
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1515
|
+
dropdown: z.ZodString;
|
|
1516
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1517
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1518
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1519
|
+
}, "strip", z.ZodTypeAny, {
|
|
1520
|
+
name: string;
|
|
1521
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1522
|
+
}, {
|
|
1523
|
+
name: string;
|
|
1524
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1525
|
+
}>]>>;
|
|
1526
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1527
|
+
}, "strip", z.ZodTypeAny, {
|
|
1528
|
+
dropdown: string;
|
|
1529
|
+
icon?: string | {
|
|
1530
|
+
name: string;
|
|
1531
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1532
|
+
} | undefined;
|
|
1533
|
+
hidden?: boolean | undefined;
|
|
1534
|
+
}, {
|
|
1535
|
+
dropdown: string;
|
|
1536
|
+
icon?: string | {
|
|
1537
|
+
name: string;
|
|
1538
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1539
|
+
} | undefined;
|
|
1540
|
+
hidden?: boolean | undefined;
|
|
1541
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
1542
|
+
href: z.ZodString;
|
|
1543
|
+
}, "strip", z.ZodTypeAny, {
|
|
1544
|
+
href: string;
|
|
1545
|
+
}, {
|
|
1546
|
+
href: string;
|
|
1547
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
1548
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
|
|
1549
|
+
}, "strip", z.ZodTypeAny, {
|
|
1550
|
+
openapi?: string | string[] | undefined;
|
|
1551
|
+
}, {
|
|
1552
|
+
openapi?: string | string[] | undefined;
|
|
1553
|
+
}>>, "many">;
|
|
1354
1554
|
}, "strip", z.ZodTypeAny, {
|
|
1355
1555
|
dropdowns: any[];
|
|
1356
1556
|
}, {
|
|
@@ -1379,7 +1579,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1379
1579
|
dark?: string | undefined;
|
|
1380
1580
|
}>>;
|
|
1381
1581
|
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
1582
|
}, "strip", z.ZodTypeAny, {
|
|
1384
1583
|
anchor: string;
|
|
1385
1584
|
icon?: string | {
|
|
@@ -1391,7 +1590,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1391
1590
|
dark?: string | undefined;
|
|
1392
1591
|
} | undefined;
|
|
1393
1592
|
hidden?: boolean | undefined;
|
|
1394
|
-
openapi?: string | string[] | undefined;
|
|
1395
1593
|
}, {
|
|
1396
1594
|
anchor: string;
|
|
1397
1595
|
icon?: string | {
|
|
@@ -1403,14 +1601,70 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1403
1601
|
dark?: string | undefined;
|
|
1404
1602
|
} | undefined;
|
|
1405
1603
|
hidden?: boolean | undefined;
|
|
1406
|
-
openapi?: string | string[] | undefined;
|
|
1407
1604
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
1408
1605
|
href: z.ZodString;
|
|
1409
1606
|
}, "strip", z.ZodTypeAny, {
|
|
1410
1607
|
href: string;
|
|
1411
1608
|
}, {
|
|
1412
1609
|
href: string;
|
|
1413
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]
|
|
1610
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1611
|
+
anchor: z.ZodString;
|
|
1612
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1613
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1614
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1615
|
+
}, "strip", z.ZodTypeAny, {
|
|
1616
|
+
name: string;
|
|
1617
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1618
|
+
}, {
|
|
1619
|
+
name: string;
|
|
1620
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1621
|
+
}>]>>;
|
|
1622
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
1623
|
+
light: z.ZodOptional<z.ZodString>;
|
|
1624
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
1625
|
+
}, "strict", z.ZodTypeAny, {
|
|
1626
|
+
light?: string | undefined;
|
|
1627
|
+
dark?: string | undefined;
|
|
1628
|
+
}, {
|
|
1629
|
+
light?: string | undefined;
|
|
1630
|
+
dark?: string | undefined;
|
|
1631
|
+
}>>;
|
|
1632
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1633
|
+
}, "strip", z.ZodTypeAny, {
|
|
1634
|
+
anchor: string;
|
|
1635
|
+
icon?: string | {
|
|
1636
|
+
name: string;
|
|
1637
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1638
|
+
} | undefined;
|
|
1639
|
+
color?: {
|
|
1640
|
+
light?: string | undefined;
|
|
1641
|
+
dark?: string | undefined;
|
|
1642
|
+
} | undefined;
|
|
1643
|
+
hidden?: boolean | undefined;
|
|
1644
|
+
}, {
|
|
1645
|
+
anchor: string;
|
|
1646
|
+
icon?: string | {
|
|
1647
|
+
name: string;
|
|
1648
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1649
|
+
} | undefined;
|
|
1650
|
+
color?: {
|
|
1651
|
+
light?: string | undefined;
|
|
1652
|
+
dark?: string | undefined;
|
|
1653
|
+
} | undefined;
|
|
1654
|
+
hidden?: boolean | undefined;
|
|
1655
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
1656
|
+
href: z.ZodString;
|
|
1657
|
+
}, "strip", z.ZodTypeAny, {
|
|
1658
|
+
href: string;
|
|
1659
|
+
}, {
|
|
1660
|
+
href: string;
|
|
1661
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
1662
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
|
|
1663
|
+
}, "strip", z.ZodTypeAny, {
|
|
1664
|
+
openapi?: string | string[] | undefined;
|
|
1665
|
+
}, {
|
|
1666
|
+
openapi?: string | string[] | undefined;
|
|
1667
|
+
}>>, "many">;
|
|
1414
1668
|
}, "strip", z.ZodTypeAny, {
|
|
1415
1669
|
anchors: any[];
|
|
1416
1670
|
}, {
|