@mintlify/validation 0.1.246 → 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.
- package/dist/mint-config/schemas/v2/index.d.ts +5215 -2155
- package/dist/mint-config/schemas/v2/index.js +8 -6
- package/dist/mint-config/schemas/v2/properties/api.d.ts +11 -11
- package/dist/mint-config/schemas/v2/properties/api.js +3 -5
- package/dist/mint-config/schemas/v2/properties/appearance.d.ts +4 -4
- package/dist/mint-config/schemas/v2/properties/appearance.js +6 -3
- package/dist/mint-config/schemas/v2/properties/icons.d.ts +2 -2
- package/dist/mint-config/schemas/v2/properties/icons.js +3 -1
- package/dist/mint-config/schemas/v2/properties/index.d.ts +9 -0
- package/dist/mint-config/schemas/v2/properties/index.js +9 -0
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +225 -2
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +10 -16
- package/dist/mint-config/schemas/v2/properties/navigation/divisionSchemas.d.ts +7 -0
- package/dist/mint-config/schemas/v2/properties/navigation/divisionSchemas.js +26 -0
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +155 -2
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +10 -16
- package/dist/mint-config/schemas/v2/properties/navigation/global.d.ts +25 -0
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +638 -6
- package/dist/mint-config/schemas/v2/properties/navigation/groups.js +15 -7
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +1338 -295
- package/dist/mint-config/schemas/v2/properties/navigation/index.js +20 -18
- package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +47 -214
- package/dist/mint-config/schemas/v2/properties/navigation/languages.js +10 -18
- package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +4 -0
- package/dist/mint-config/schemas/v2/properties/navigation/pages.js +6 -2
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +153 -2
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +8 -16
- package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +81 -2
- package/dist/mint-config/schemas/v2/properties/navigation/version.js +10 -16
- package/dist/mint-config/schemas/v2/properties/reusable/divisions.d.ts +2 -0
- package/dist/mint-config/schemas/v2/properties/reusable/divisions.js +1 -0
- package/dist/mint-config/schemas/v2/properties/reusable/index.d.ts +4 -0
- package/dist/mint-config/schemas/v2/properties/reusable/index.js +4 -0
- package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +86 -0
- package/dist/mint-config/schemas/v2/properties/reusable/page.js +27 -0
- package/dist/mint-config/schemas/v2/properties/seo.d.ts +2 -2
- package/dist/mint-config/schemas/v2/properties/seo.js +1 -2
- package/dist/mint-config/schemas/v2/properties/styling.d.ts +6 -6
- package/dist/mint-config/schemas/v2/properties/styling.js +3 -6
- package/dist/mint-config/schemas/v2/themes/{quill.d.ts → linden.d.ts} +740 -540
- package/dist/mint-config/schemas/v2/themes/linden.js +3 -0
- package/dist/mint-config/schemas/v2/themes/{venus.d.ts → maple.d.ts} +740 -540
- package/dist/mint-config/schemas/v2/themes/maple.js +3 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +736 -536
- package/dist/mint-config/schemas/v2/themes/{prism.d.ts → palm.d.ts} +740 -540
- package/dist/mint-config/schemas/v2/themes/palm.js +3 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +520 -320
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +2262 -0
- package/dist/mint-config/schemas/v2/themes/willow.js +3 -0
- package/dist/mint-config/upgrades/upgradeToDocsConfig.d.ts +2 -5
- package/dist/mint-config/upgrades/upgradeToDocsConfig.js +28 -11
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/dist/mint-config/schemas/v2/themes/prism.js +0 -3
- package/dist/mint-config/schemas/v2/themes/quill.js +0 -3
- package/dist/mint-config/schemas/v2/themes/venus.js +0 -3
|
@@ -42,11 +42,11 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
42
42
|
api: z.ZodOptional<z.ZodObject<{
|
|
43
43
|
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
|
|
44
44
|
playground: z.ZodOptional<z.ZodObject<{
|
|
45
|
-
display: z.
|
|
46
|
-
proxy: z.
|
|
45
|
+
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
|
|
46
|
+
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
47
47
|
}, "strip", z.ZodTypeAny, {
|
|
48
|
-
display
|
|
49
|
-
proxy
|
|
48
|
+
display?: "simple" | "none" | "interactive" | undefined;
|
|
49
|
+
proxy?: boolean | undefined;
|
|
50
50
|
}, {
|
|
51
51
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
52
52
|
proxy?: boolean | undefined;
|
|
@@ -60,26 +60,26 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
60
60
|
}>>;
|
|
61
61
|
mdx: z.ZodOptional<z.ZodObject<{
|
|
62
62
|
auth: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
|
|
63
|
-
|
|
63
|
+
server: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
64
64
|
}, "strip", z.ZodTypeAny, {
|
|
65
65
|
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
66
|
-
|
|
66
|
+
server?: string | string[] | undefined;
|
|
67
67
|
}, {
|
|
68
68
|
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
69
|
-
|
|
69
|
+
server?: string | string[] | undefined;
|
|
70
70
|
}>>;
|
|
71
71
|
}, "strip", z.ZodTypeAny, {
|
|
72
72
|
openapi?: string | string[] | undefined;
|
|
73
73
|
playground?: {
|
|
74
|
-
display
|
|
75
|
-
proxy
|
|
74
|
+
display?: "simple" | "none" | "interactive" | undefined;
|
|
75
|
+
proxy?: boolean | undefined;
|
|
76
76
|
} | undefined;
|
|
77
77
|
examples?: {
|
|
78
78
|
languages?: string[] | undefined;
|
|
79
79
|
} | undefined;
|
|
80
80
|
mdx?: {
|
|
81
81
|
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
82
|
-
|
|
82
|
+
server?: string | string[] | undefined;
|
|
83
83
|
} | undefined;
|
|
84
84
|
}, {
|
|
85
85
|
openapi?: string | string[] | undefined;
|
|
@@ -92,15 +92,15 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
92
92
|
} | undefined;
|
|
93
93
|
mdx?: {
|
|
94
94
|
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
95
|
-
|
|
95
|
+
server?: string | string[] | undefined;
|
|
96
96
|
} | undefined;
|
|
97
97
|
}>>;
|
|
98
98
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
99
|
-
default: z.
|
|
100
|
-
strict: z.
|
|
99
|
+
default: z.ZodOptional<z.ZodEnum<["system", "light", "dark"]>>;
|
|
100
|
+
strict: z.ZodOptional<z.ZodBoolean>;
|
|
101
101
|
}, "strip", z.ZodTypeAny, {
|
|
102
|
-
|
|
103
|
-
|
|
102
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
103
|
+
strict?: boolean | undefined;
|
|
104
104
|
}, {
|
|
105
105
|
default?: "light" | "dark" | "system" | undefined;
|
|
106
106
|
strict?: boolean | undefined;
|
|
@@ -208,310 +208,20 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
208
208
|
href: string;
|
|
209
209
|
} | undefined;
|
|
210
210
|
}>>;
|
|
211
|
-
navigation: z.ZodIntersection<z.
|
|
212
|
-
languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
213
|
-
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
214
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
215
|
-
}, "strip", z.ZodTypeAny, {
|
|
216
|
-
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
217
|
-
hidden?: boolean | undefined;
|
|
218
|
-
}, {
|
|
219
|
-
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
220
|
-
hidden?: boolean | undefined;
|
|
221
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
222
|
-
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
223
|
-
}, "strip", z.ZodTypeAny, {
|
|
224
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
225
|
-
}, {
|
|
226
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
227
|
-
}>, z.ZodObject<{
|
|
228
|
-
href: z.ZodString;
|
|
229
|
-
}, "strip", z.ZodTypeAny, {
|
|
230
|
-
href: string;
|
|
231
|
-
}, {
|
|
232
|
-
href: string;
|
|
233
|
-
}>, z.ZodLazy<z.ZodObject<{
|
|
234
|
-
versions: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
235
|
-
}, "strip", z.ZodTypeAny, {
|
|
236
|
-
versions: any[];
|
|
237
|
-
}, {
|
|
238
|
-
versions: any[];
|
|
239
|
-
}>>, z.ZodLazy<z.ZodObject<{
|
|
240
|
-
tabs: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
241
|
-
}, "strip", z.ZodTypeAny, {
|
|
242
|
-
tabs: any[];
|
|
243
|
-
}, {
|
|
244
|
-
tabs: any[];
|
|
245
|
-
}>>, z.ZodLazy<z.ZodObject<{
|
|
246
|
-
dropdowns: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
247
|
-
}, "strip", z.ZodTypeAny, {
|
|
248
|
-
dropdowns: any[];
|
|
249
|
-
}, {
|
|
250
|
-
dropdowns: any[];
|
|
251
|
-
}>>, z.ZodLazy<z.ZodObject<{
|
|
252
|
-
anchors: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
253
|
-
}, "strip", z.ZodTypeAny, {
|
|
254
|
-
anchors: any[];
|
|
255
|
-
}, {
|
|
256
|
-
anchors: any[];
|
|
257
|
-
}>>, z.ZodLazy<z.ZodObject<{
|
|
258
|
-
groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
259
|
-
group: z.ZodString;
|
|
260
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
261
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
262
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
263
|
-
}, "strip", z.ZodTypeAny, {
|
|
264
|
-
name: string;
|
|
265
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
266
|
-
}, {
|
|
267
|
-
name: string;
|
|
268
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
269
|
-
}>]>>;
|
|
270
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
271
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
272
|
-
}, "strip", z.ZodTypeAny, {
|
|
273
|
-
group: string;
|
|
274
|
-
icon?: string | {
|
|
275
|
-
name: string;
|
|
276
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
277
|
-
} | undefined;
|
|
278
|
-
hidden?: boolean | undefined;
|
|
279
|
-
root?: string | undefined;
|
|
280
|
-
}, {
|
|
281
|
-
group: string;
|
|
282
|
-
icon?: string | {
|
|
283
|
-
name: string;
|
|
284
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
285
|
-
} | undefined;
|
|
286
|
-
hidden?: boolean | undefined;
|
|
287
|
-
root?: string | undefined;
|
|
288
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
289
|
-
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
290
|
-
}, "strip", z.ZodTypeAny, {
|
|
291
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
292
|
-
}, {
|
|
293
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
294
|
-
}>, z.ZodLazy<z.ZodObject<{
|
|
295
|
-
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
296
|
-
}, "strip", z.ZodTypeAny, {
|
|
297
|
-
pages: any[];
|
|
298
|
-
}, {
|
|
299
|
-
pages: any[];
|
|
300
|
-
}>>]>>, "many">;
|
|
301
|
-
}, "strip", z.ZodTypeAny, {
|
|
302
|
-
groups: ({
|
|
303
|
-
group: string;
|
|
304
|
-
icon?: string | {
|
|
305
|
-
name: string;
|
|
306
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
307
|
-
} | undefined;
|
|
308
|
-
hidden?: boolean | undefined;
|
|
309
|
-
root?: string | undefined;
|
|
310
|
-
} & ({
|
|
311
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
312
|
-
} | {
|
|
313
|
-
pages: any[];
|
|
314
|
-
}))[];
|
|
315
|
-
}, {
|
|
316
|
-
groups: ({
|
|
317
|
-
group: string;
|
|
318
|
-
icon?: string | {
|
|
319
|
-
name: string;
|
|
320
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
321
|
-
} | undefined;
|
|
322
|
-
hidden?: boolean | undefined;
|
|
323
|
-
root?: string | undefined;
|
|
324
|
-
} & ({
|
|
325
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
326
|
-
} | {
|
|
327
|
-
pages: any[];
|
|
328
|
-
}))[];
|
|
329
|
-
}>>, z.ZodLazy<z.ZodObject<{
|
|
330
|
-
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
331
|
-
}, "strip", z.ZodTypeAny, {
|
|
332
|
-
pages: any[];
|
|
333
|
-
}, {
|
|
334
|
-
pages: any[];
|
|
335
|
-
}>>]>>, "many">;
|
|
336
|
-
}, "strip", z.ZodTypeAny, {
|
|
337
|
-
languages: ({
|
|
338
|
-
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
339
|
-
hidden?: boolean | undefined;
|
|
340
|
-
} & ({
|
|
341
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
342
|
-
} | {
|
|
343
|
-
href: string;
|
|
344
|
-
} | {
|
|
345
|
-
versions: any[];
|
|
346
|
-
} | {
|
|
347
|
-
tabs: any[];
|
|
348
|
-
} | {
|
|
349
|
-
dropdowns: any[];
|
|
350
|
-
} | {
|
|
351
|
-
anchors: any[];
|
|
352
|
-
} | {
|
|
353
|
-
groups: ({
|
|
354
|
-
group: string;
|
|
355
|
-
icon?: string | {
|
|
356
|
-
name: string;
|
|
357
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
358
|
-
} | undefined;
|
|
359
|
-
hidden?: boolean | undefined;
|
|
360
|
-
root?: string | undefined;
|
|
361
|
-
} & ({
|
|
362
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
363
|
-
} | {
|
|
364
|
-
pages: any[];
|
|
365
|
-
}))[];
|
|
366
|
-
} | {
|
|
367
|
-
pages: any[];
|
|
368
|
-
}))[];
|
|
369
|
-
}, {
|
|
370
|
-
languages: ({
|
|
371
|
-
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
372
|
-
hidden?: boolean | undefined;
|
|
373
|
-
} & ({
|
|
374
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
375
|
-
} | {
|
|
376
|
-
href: string;
|
|
377
|
-
} | {
|
|
378
|
-
versions: any[];
|
|
379
|
-
} | {
|
|
380
|
-
tabs: any[];
|
|
381
|
-
} | {
|
|
382
|
-
dropdowns: any[];
|
|
383
|
-
} | {
|
|
384
|
-
anchors: any[];
|
|
385
|
-
} | {
|
|
386
|
-
groups: ({
|
|
387
|
-
group: string;
|
|
388
|
-
icon?: string | {
|
|
389
|
-
name: string;
|
|
390
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
391
|
-
} | undefined;
|
|
392
|
-
hidden?: boolean | undefined;
|
|
393
|
-
root?: string | undefined;
|
|
394
|
-
} & ({
|
|
395
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
396
|
-
} | {
|
|
397
|
-
pages: any[];
|
|
398
|
-
}))[];
|
|
399
|
-
} | {
|
|
400
|
-
pages: any[];
|
|
401
|
-
}))[];
|
|
402
|
-
}>, z.ZodObject<{
|
|
403
|
-
versions: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
404
|
-
}, "strip", z.ZodTypeAny, {
|
|
405
|
-
versions: any[];
|
|
406
|
-
}, {
|
|
407
|
-
versions: any[];
|
|
408
|
-
}>, z.ZodObject<{
|
|
409
|
-
tabs: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
410
|
-
}, "strip", z.ZodTypeAny, {
|
|
411
|
-
tabs: any[];
|
|
412
|
-
}, {
|
|
413
|
-
tabs: any[];
|
|
414
|
-
}>, z.ZodObject<{
|
|
415
|
-
dropdowns: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
416
|
-
}, "strip", z.ZodTypeAny, {
|
|
417
|
-
dropdowns: any[];
|
|
418
|
-
}, {
|
|
419
|
-
dropdowns: any[];
|
|
420
|
-
}>, z.ZodObject<{
|
|
421
|
-
anchors: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
422
|
-
}, "strip", z.ZodTypeAny, {
|
|
423
|
-
anchors: any[];
|
|
424
|
-
}, {
|
|
425
|
-
anchors: any[];
|
|
426
|
-
}>, z.ZodObject<{
|
|
427
|
-
groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
428
|
-
group: z.ZodString;
|
|
429
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
430
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
431
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
432
|
-
}, "strip", z.ZodTypeAny, {
|
|
433
|
-
name: string;
|
|
434
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
435
|
-
}, {
|
|
436
|
-
name: string;
|
|
437
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
438
|
-
}>]>>;
|
|
439
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
440
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
441
|
-
}, "strip", z.ZodTypeAny, {
|
|
442
|
-
group: string;
|
|
443
|
-
icon?: string | {
|
|
444
|
-
name: string;
|
|
445
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
446
|
-
} | undefined;
|
|
447
|
-
hidden?: boolean | undefined;
|
|
448
|
-
root?: string | undefined;
|
|
449
|
-
}, {
|
|
450
|
-
group: string;
|
|
451
|
-
icon?: string | {
|
|
452
|
-
name: string;
|
|
453
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
454
|
-
} | undefined;
|
|
455
|
-
hidden?: boolean | undefined;
|
|
456
|
-
root?: string | undefined;
|
|
457
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
458
|
-
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
459
|
-
}, "strip", z.ZodTypeAny, {
|
|
460
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
461
|
-
}, {
|
|
462
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
463
|
-
}>, z.ZodLazy<z.ZodObject<{
|
|
464
|
-
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
465
|
-
}, "strip", z.ZodTypeAny, {
|
|
466
|
-
pages: any[];
|
|
467
|
-
}, {
|
|
468
|
-
pages: any[];
|
|
469
|
-
}>>]>>, "many">;
|
|
470
|
-
}, "strip", z.ZodTypeAny, {
|
|
471
|
-
groups: ({
|
|
472
|
-
group: string;
|
|
473
|
-
icon?: string | {
|
|
474
|
-
name: string;
|
|
475
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
476
|
-
} | undefined;
|
|
477
|
-
hidden?: boolean | undefined;
|
|
478
|
-
root?: string | undefined;
|
|
479
|
-
} & ({
|
|
480
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
481
|
-
} | {
|
|
482
|
-
pages: any[];
|
|
483
|
-
}))[];
|
|
484
|
-
}, {
|
|
485
|
-
groups: ({
|
|
486
|
-
group: string;
|
|
487
|
-
icon?: string | {
|
|
488
|
-
name: string;
|
|
489
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
490
|
-
} | undefined;
|
|
491
|
-
hidden?: boolean | undefined;
|
|
492
|
-
root?: string | undefined;
|
|
493
|
-
} & ({
|
|
494
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
495
|
-
} | {
|
|
496
|
-
pages: any[];
|
|
497
|
-
}))[];
|
|
498
|
-
}>, z.ZodObject<{
|
|
499
|
-
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
500
|
-
}, "strip", z.ZodTypeAny, {
|
|
501
|
-
pages: any[];
|
|
502
|
-
}, {
|
|
503
|
-
pages: any[];
|
|
504
|
-
}>]>, z.ZodObject<{
|
|
211
|
+
navigation: z.ZodIntersection<z.ZodObject<{
|
|
505
212
|
global: z.ZodOptional<z.ZodObject<{
|
|
506
213
|
languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
507
214
|
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
508
215
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
216
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
|
|
509
217
|
}, "strip", z.ZodTypeAny, {
|
|
510
218
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
511
219
|
hidden?: boolean | undefined;
|
|
220
|
+
openapi?: string | string[] | undefined;
|
|
512
221
|
}, {
|
|
513
222
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
514
223
|
hidden?: boolean | undefined;
|
|
224
|
+
openapi?: string | string[] | undefined;
|
|
515
225
|
}>, z.ZodObject<{
|
|
516
226
|
href: z.ZodString;
|
|
517
227
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -522,12 +232,15 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
522
232
|
versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
523
233
|
version: z.ZodString;
|
|
524
234
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
235
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
|
|
525
236
|
}, "strip", z.ZodTypeAny, {
|
|
526
237
|
version: string;
|
|
527
238
|
hidden?: boolean | undefined;
|
|
239
|
+
openapi?: string | string[] | undefined;
|
|
528
240
|
}, {
|
|
529
241
|
version: string;
|
|
530
242
|
hidden?: boolean | undefined;
|
|
243
|
+
openapi?: string | string[] | undefined;
|
|
531
244
|
}>, z.ZodObject<{
|
|
532
245
|
href: z.ZodString;
|
|
533
246
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -548,6 +261,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
548
261
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
549
262
|
}>]>>;
|
|
550
263
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
264
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
|
|
551
265
|
}, "strip", z.ZodTypeAny, {
|
|
552
266
|
tab: string;
|
|
553
267
|
icon?: string | {
|
|
@@ -555,6 +269,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
555
269
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
556
270
|
} | undefined;
|
|
557
271
|
hidden?: boolean | undefined;
|
|
272
|
+
openapi?: string | string[] | undefined;
|
|
558
273
|
}, {
|
|
559
274
|
tab: string;
|
|
560
275
|
icon?: string | {
|
|
@@ -562,6 +277,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
562
277
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
563
278
|
} | undefined;
|
|
564
279
|
hidden?: boolean | undefined;
|
|
280
|
+
openapi?: string | string[] | undefined;
|
|
565
281
|
}>, z.ZodObject<{
|
|
566
282
|
href: z.ZodString;
|
|
567
283
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -582,6 +298,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
582
298
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
583
299
|
}>]>>;
|
|
584
300
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
301
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
|
|
585
302
|
}, "strip", z.ZodTypeAny, {
|
|
586
303
|
dropdown: string;
|
|
587
304
|
icon?: string | {
|
|
@@ -589,6 +306,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
589
306
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
590
307
|
} | undefined;
|
|
591
308
|
hidden?: boolean | undefined;
|
|
309
|
+
openapi?: string | string[] | undefined;
|
|
592
310
|
}, {
|
|
593
311
|
dropdown: string;
|
|
594
312
|
icon?: string | {
|
|
@@ -596,6 +314,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
596
314
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
597
315
|
} | undefined;
|
|
598
316
|
hidden?: boolean | undefined;
|
|
317
|
+
openapi?: string | string[] | undefined;
|
|
599
318
|
}>, z.ZodObject<{
|
|
600
319
|
href: z.ZodString;
|
|
601
320
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -626,6 +345,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
626
345
|
dark?: string | undefined;
|
|
627
346
|
}>>;
|
|
628
347
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
348
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
|
|
629
349
|
}, "strip", z.ZodTypeAny, {
|
|
630
350
|
anchor: string;
|
|
631
351
|
icon?: string | {
|
|
@@ -637,6 +357,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
637
357
|
dark?: string | undefined;
|
|
638
358
|
} | undefined;
|
|
639
359
|
hidden?: boolean | undefined;
|
|
360
|
+
openapi?: string | string[] | undefined;
|
|
640
361
|
}, {
|
|
641
362
|
anchor: string;
|
|
642
363
|
icon?: string | {
|
|
@@ -648,6 +369,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
648
369
|
dark?: string | undefined;
|
|
649
370
|
} | undefined;
|
|
650
371
|
hidden?: boolean | undefined;
|
|
372
|
+
openapi?: string | string[] | undefined;
|
|
651
373
|
}>, z.ZodObject<{
|
|
652
374
|
href: z.ZodString;
|
|
653
375
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -659,12 +381,14 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
659
381
|
languages?: ({
|
|
660
382
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
661
383
|
hidden?: boolean | undefined;
|
|
384
|
+
openapi?: string | string[] | undefined;
|
|
662
385
|
} & {
|
|
663
386
|
href: string;
|
|
664
387
|
})[] | undefined;
|
|
665
388
|
versions?: ({
|
|
666
389
|
version: string;
|
|
667
390
|
hidden?: boolean | undefined;
|
|
391
|
+
openapi?: string | string[] | undefined;
|
|
668
392
|
} & {
|
|
669
393
|
href: string;
|
|
670
394
|
})[] | undefined;
|
|
@@ -675,6 +399,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
675
399
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
676
400
|
} | undefined;
|
|
677
401
|
hidden?: boolean | undefined;
|
|
402
|
+
openapi?: string | string[] | undefined;
|
|
678
403
|
} & {
|
|
679
404
|
href: string;
|
|
680
405
|
})[] | undefined;
|
|
@@ -685,6 +410,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
685
410
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
686
411
|
} | undefined;
|
|
687
412
|
hidden?: boolean | undefined;
|
|
413
|
+
openapi?: string | string[] | undefined;
|
|
688
414
|
} & {
|
|
689
415
|
href: string;
|
|
690
416
|
})[] | undefined;
|
|
@@ -699,6 +425,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
699
425
|
dark?: string | undefined;
|
|
700
426
|
} | undefined;
|
|
701
427
|
hidden?: boolean | undefined;
|
|
428
|
+
openapi?: string | string[] | undefined;
|
|
702
429
|
} & {
|
|
703
430
|
href: string;
|
|
704
431
|
})[] | undefined;
|
|
@@ -706,12 +433,14 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
706
433
|
languages?: ({
|
|
707
434
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
708
435
|
hidden?: boolean | undefined;
|
|
436
|
+
openapi?: string | string[] | undefined;
|
|
709
437
|
} & {
|
|
710
438
|
href: string;
|
|
711
439
|
})[] | undefined;
|
|
712
440
|
versions?: ({
|
|
713
441
|
version: string;
|
|
714
442
|
hidden?: boolean | undefined;
|
|
443
|
+
openapi?: string | string[] | undefined;
|
|
715
444
|
} & {
|
|
716
445
|
href: string;
|
|
717
446
|
})[] | undefined;
|
|
@@ -722,6 +451,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
722
451
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
723
452
|
} | undefined;
|
|
724
453
|
hidden?: boolean | undefined;
|
|
454
|
+
openapi?: string | string[] | undefined;
|
|
725
455
|
} & {
|
|
726
456
|
href: string;
|
|
727
457
|
})[] | undefined;
|
|
@@ -732,6 +462,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
732
462
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
733
463
|
} | undefined;
|
|
734
464
|
hidden?: boolean | undefined;
|
|
465
|
+
openapi?: string | string[] | undefined;
|
|
735
466
|
} & {
|
|
736
467
|
href: string;
|
|
737
468
|
})[] | undefined;
|
|
@@ -746,6 +477,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
746
477
|
dark?: string | undefined;
|
|
747
478
|
} | undefined;
|
|
748
479
|
hidden?: boolean | undefined;
|
|
480
|
+
openapi?: string | string[] | undefined;
|
|
749
481
|
} & {
|
|
750
482
|
href: string;
|
|
751
483
|
})[] | undefined;
|
|
@@ -755,12 +487,14 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
755
487
|
languages?: ({
|
|
756
488
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
757
489
|
hidden?: boolean | undefined;
|
|
490
|
+
openapi?: string | string[] | undefined;
|
|
758
491
|
} & {
|
|
759
492
|
href: string;
|
|
760
493
|
})[] | undefined;
|
|
761
494
|
versions?: ({
|
|
762
495
|
version: string;
|
|
763
496
|
hidden?: boolean | undefined;
|
|
497
|
+
openapi?: string | string[] | undefined;
|
|
764
498
|
} & {
|
|
765
499
|
href: string;
|
|
766
500
|
})[] | undefined;
|
|
@@ -771,6 +505,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
771
505
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
772
506
|
} | undefined;
|
|
773
507
|
hidden?: boolean | undefined;
|
|
508
|
+
openapi?: string | string[] | undefined;
|
|
774
509
|
} & {
|
|
775
510
|
href: string;
|
|
776
511
|
})[] | undefined;
|
|
@@ -781,6 +516,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
781
516
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
782
517
|
} | undefined;
|
|
783
518
|
hidden?: boolean | undefined;
|
|
519
|
+
openapi?: string | string[] | undefined;
|
|
784
520
|
} & {
|
|
785
521
|
href: string;
|
|
786
522
|
})[] | undefined;
|
|
@@ -795,6 +531,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
795
531
|
dark?: string | undefined;
|
|
796
532
|
} | undefined;
|
|
797
533
|
hidden?: boolean | undefined;
|
|
534
|
+
openapi?: string | string[] | undefined;
|
|
798
535
|
} & {
|
|
799
536
|
href: string;
|
|
800
537
|
})[] | undefined;
|
|
@@ -804,12 +541,14 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
804
541
|
languages?: ({
|
|
805
542
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
806
543
|
hidden?: boolean | undefined;
|
|
544
|
+
openapi?: string | string[] | undefined;
|
|
807
545
|
} & {
|
|
808
546
|
href: string;
|
|
809
547
|
})[] | undefined;
|
|
810
548
|
versions?: ({
|
|
811
549
|
version: string;
|
|
812
550
|
hidden?: boolean | undefined;
|
|
551
|
+
openapi?: string | string[] | undefined;
|
|
813
552
|
} & {
|
|
814
553
|
href: string;
|
|
815
554
|
})[] | undefined;
|
|
@@ -820,35 +559,496 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
820
559
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
821
560
|
} | undefined;
|
|
822
561
|
hidden?: boolean | undefined;
|
|
562
|
+
openapi?: string | string[] | undefined;
|
|
563
|
+
} & {
|
|
564
|
+
href: string;
|
|
565
|
+
})[] | undefined;
|
|
566
|
+
dropdowns?: ({
|
|
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
|
+
openapi?: string | string[] | undefined;
|
|
574
|
+
} & {
|
|
575
|
+
href: string;
|
|
576
|
+
})[] | undefined;
|
|
577
|
+
anchors?: ({
|
|
578
|
+
anchor: string;
|
|
579
|
+
icon?: string | {
|
|
580
|
+
name: string;
|
|
581
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
582
|
+
} | undefined;
|
|
583
|
+
color?: {
|
|
584
|
+
light?: string | undefined;
|
|
585
|
+
dark?: string | undefined;
|
|
586
|
+
} | undefined;
|
|
587
|
+
hidden?: boolean | undefined;
|
|
588
|
+
openapi?: string | string[] | undefined;
|
|
823
589
|
} & {
|
|
824
590
|
href: string;
|
|
825
|
-
})[] | undefined;
|
|
826
|
-
|
|
827
|
-
|
|
591
|
+
})[] | undefined;
|
|
592
|
+
} | undefined;
|
|
593
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
594
|
+
languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
595
|
+
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
596
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
597
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
|
|
598
|
+
}, "strip", z.ZodTypeAny, {
|
|
599
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
600
|
+
hidden?: boolean | undefined;
|
|
601
|
+
openapi?: string | string[] | undefined;
|
|
602
|
+
}, {
|
|
603
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
604
|
+
hidden?: boolean | undefined;
|
|
605
|
+
openapi?: string | string[] | undefined;
|
|
606
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
607
|
+
href: z.ZodString;
|
|
608
|
+
}, "strip", z.ZodTypeAny, {
|
|
609
|
+
href: string;
|
|
610
|
+
}, {
|
|
611
|
+
href: string;
|
|
612
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
|
|
613
|
+
}, "strip", z.ZodTypeAny, {
|
|
614
|
+
languages: any[];
|
|
615
|
+
}, {
|
|
616
|
+
languages: any[];
|
|
617
|
+
}>, z.ZodObject<{
|
|
618
|
+
versions: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
619
|
+
version: z.ZodString;
|
|
620
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
621
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
|
|
622
|
+
}, "strip", z.ZodTypeAny, {
|
|
623
|
+
version: string;
|
|
624
|
+
hidden?: boolean | undefined;
|
|
625
|
+
openapi?: string | string[] | undefined;
|
|
626
|
+
}, {
|
|
627
|
+
version: string;
|
|
628
|
+
hidden?: boolean | undefined;
|
|
629
|
+
openapi?: string | string[] | undefined;
|
|
630
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
631
|
+
href: z.ZodString;
|
|
632
|
+
}, "strip", z.ZodTypeAny, {
|
|
633
|
+
href: string;
|
|
634
|
+
}, {
|
|
635
|
+
href: string;
|
|
636
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
|
|
637
|
+
}, "strip", z.ZodTypeAny, {
|
|
638
|
+
versions: any[];
|
|
639
|
+
}, {
|
|
640
|
+
versions: any[];
|
|
641
|
+
}>, z.ZodObject<{
|
|
642
|
+
tabs: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
643
|
+
tab: 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
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
655
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
|
|
656
|
+
}, "strip", z.ZodTypeAny, {
|
|
657
|
+
tab: string;
|
|
658
|
+
icon?: string | {
|
|
659
|
+
name: string;
|
|
660
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
661
|
+
} | undefined;
|
|
662
|
+
hidden?: boolean | undefined;
|
|
663
|
+
openapi?: string | string[] | undefined;
|
|
664
|
+
}, {
|
|
665
|
+
tab: string;
|
|
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
|
+
hidden?: boolean | undefined;
|
|
671
|
+
openapi?: string | string[] | undefined;
|
|
672
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
673
|
+
href: z.ZodString;
|
|
674
|
+
}, "strip", z.ZodTypeAny, {
|
|
675
|
+
href: string;
|
|
676
|
+
}, {
|
|
677
|
+
href: string;
|
|
678
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
|
|
679
|
+
}, "strip", z.ZodTypeAny, {
|
|
680
|
+
tabs: any[];
|
|
681
|
+
}, {
|
|
682
|
+
tabs: any[];
|
|
683
|
+
}>, z.ZodObject<{
|
|
684
|
+
dropdowns: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
685
|
+
dropdown: z.ZodString;
|
|
686
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
687
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
688
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
689
|
+
}, "strip", z.ZodTypeAny, {
|
|
690
|
+
name: string;
|
|
691
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
692
|
+
}, {
|
|
693
|
+
name: string;
|
|
694
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
695
|
+
}>]>>;
|
|
696
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
697
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
|
|
698
|
+
}, "strip", z.ZodTypeAny, {
|
|
699
|
+
dropdown: string;
|
|
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
|
+
hidden?: boolean | undefined;
|
|
705
|
+
openapi?: string | string[] | undefined;
|
|
706
|
+
}, {
|
|
707
|
+
dropdown: string;
|
|
708
|
+
icon?: string | {
|
|
709
|
+
name: string;
|
|
710
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
711
|
+
} | undefined;
|
|
712
|
+
hidden?: boolean | undefined;
|
|
713
|
+
openapi?: string | string[] | undefined;
|
|
714
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
715
|
+
href: z.ZodString;
|
|
716
|
+
}, "strip", z.ZodTypeAny, {
|
|
717
|
+
href: string;
|
|
718
|
+
}, {
|
|
719
|
+
href: string;
|
|
720
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
|
|
721
|
+
}, "strip", z.ZodTypeAny, {
|
|
722
|
+
dropdowns: any[];
|
|
723
|
+
}, {
|
|
724
|
+
dropdowns: any[];
|
|
725
|
+
}>, z.ZodObject<{
|
|
726
|
+
anchors: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
727
|
+
anchor: z.ZodString;
|
|
728
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
729
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
730
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
731
|
+
}, "strip", z.ZodTypeAny, {
|
|
732
|
+
name: string;
|
|
733
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
734
|
+
}, {
|
|
735
|
+
name: string;
|
|
736
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
737
|
+
}>]>>;
|
|
738
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
739
|
+
light: z.ZodOptional<z.ZodString>;
|
|
740
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
741
|
+
}, "strict", z.ZodTypeAny, {
|
|
742
|
+
light?: string | undefined;
|
|
743
|
+
dark?: string | undefined;
|
|
744
|
+
}, {
|
|
745
|
+
light?: string | undefined;
|
|
746
|
+
dark?: string | undefined;
|
|
747
|
+
}>>;
|
|
748
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
749
|
+
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
|
|
750
|
+
}, "strip", z.ZodTypeAny, {
|
|
751
|
+
anchor: string;
|
|
752
|
+
icon?: string | {
|
|
753
|
+
name: string;
|
|
754
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
755
|
+
} | undefined;
|
|
756
|
+
color?: {
|
|
757
|
+
light?: string | undefined;
|
|
758
|
+
dark?: string | undefined;
|
|
759
|
+
} | undefined;
|
|
760
|
+
hidden?: boolean | undefined;
|
|
761
|
+
openapi?: string | string[] | undefined;
|
|
762
|
+
}, {
|
|
763
|
+
anchor: string;
|
|
764
|
+
icon?: string | {
|
|
765
|
+
name: string;
|
|
766
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
767
|
+
} | undefined;
|
|
768
|
+
color?: {
|
|
769
|
+
light?: string | undefined;
|
|
770
|
+
dark?: string | undefined;
|
|
771
|
+
} | undefined;
|
|
772
|
+
hidden?: boolean | undefined;
|
|
773
|
+
openapi?: string | string[] | undefined;
|
|
774
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
775
|
+
href: z.ZodString;
|
|
776
|
+
}, "strip", z.ZodTypeAny, {
|
|
777
|
+
href: string;
|
|
778
|
+
}, {
|
|
779
|
+
href: string;
|
|
780
|
+
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
|
|
781
|
+
}, "strip", z.ZodTypeAny, {
|
|
782
|
+
anchors: any[];
|
|
783
|
+
}, {
|
|
784
|
+
anchors: any[];
|
|
785
|
+
}>, z.ZodObject<{
|
|
786
|
+
groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
787
|
+
group: z.ZodString;
|
|
788
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
789
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
790
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
791
|
+
}, "strip", z.ZodTypeAny, {
|
|
792
|
+
name: string;
|
|
793
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
794
|
+
}, {
|
|
795
|
+
name: string;
|
|
796
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
797
|
+
}>]>>;
|
|
798
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
799
|
+
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>> | z.ZodOptional<z.ZodObject<{
|
|
800
|
+
href: z.ZodString;
|
|
801
|
+
title: z.ZodString;
|
|
802
|
+
sidebarTitle: z.ZodOptional<z.ZodString>;
|
|
803
|
+
description: z.ZodOptional<z.ZodString>;
|
|
804
|
+
api: z.ZodOptional<z.ZodString>;
|
|
805
|
+
openapi: z.ZodOptional<z.ZodString>;
|
|
806
|
+
contentType: z.ZodOptional<z.ZodString>;
|
|
807
|
+
authMethod: z.ZodOptional<z.ZodString>;
|
|
808
|
+
auth: z.ZodOptional<z.ZodString>;
|
|
809
|
+
version: z.ZodOptional<z.ZodString>;
|
|
810
|
+
mode: z.ZodOptional<z.ZodString>;
|
|
811
|
+
hideFooterPagination: z.ZodOptional<z.ZodBoolean>;
|
|
812
|
+
authors: z.ZodOptional<z.ZodUnknown>;
|
|
813
|
+
lastUpdatedDate: z.ZodOptional<z.ZodString>;
|
|
814
|
+
createdDate: z.ZodOptional<z.ZodString>;
|
|
815
|
+
'openapi-schema': z.ZodOptional<z.ZodString>;
|
|
816
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
817
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
818
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
819
|
+
}, "strip", z.ZodTypeAny, {
|
|
820
|
+
name: string;
|
|
821
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
822
|
+
}, {
|
|
823
|
+
name: string;
|
|
824
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
825
|
+
}>]>>;
|
|
826
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
827
|
+
url: z.ZodOptional<z.ZodString>;
|
|
828
|
+
hideApiMarker: z.ZodOptional<z.ZodBoolean>;
|
|
829
|
+
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
830
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
831
|
+
}, "strip", z.ZodTypeAny, {
|
|
832
|
+
href: string;
|
|
833
|
+
title: string;
|
|
834
|
+
sidebarTitle?: string | undefined;
|
|
835
|
+
description?: string | undefined;
|
|
836
|
+
api?: string | undefined;
|
|
837
|
+
openapi?: string | undefined;
|
|
838
|
+
contentType?: string | undefined;
|
|
839
|
+
authMethod?: string | undefined;
|
|
840
|
+
auth?: string | undefined;
|
|
841
|
+
version?: string | undefined;
|
|
842
|
+
mode?: string | undefined;
|
|
843
|
+
hideFooterPagination?: boolean | undefined;
|
|
844
|
+
authors?: unknown;
|
|
845
|
+
lastUpdatedDate?: string | undefined;
|
|
846
|
+
createdDate?: string | undefined;
|
|
847
|
+
'openapi-schema'?: string | undefined;
|
|
848
|
+
icon?: string | {
|
|
849
|
+
name: string;
|
|
850
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
851
|
+
} | undefined;
|
|
852
|
+
tag?: string | undefined;
|
|
853
|
+
url?: string | undefined;
|
|
854
|
+
hideApiMarker?: boolean | undefined;
|
|
855
|
+
noindex?: boolean | undefined;
|
|
856
|
+
isPublic?: boolean | undefined;
|
|
857
|
+
}, {
|
|
858
|
+
href: string;
|
|
859
|
+
title: string;
|
|
860
|
+
sidebarTitle?: string | undefined;
|
|
861
|
+
description?: string | undefined;
|
|
862
|
+
api?: string | undefined;
|
|
863
|
+
openapi?: string | undefined;
|
|
864
|
+
contentType?: string | undefined;
|
|
865
|
+
authMethod?: string | undefined;
|
|
866
|
+
auth?: string | undefined;
|
|
867
|
+
version?: string | undefined;
|
|
868
|
+
mode?: string | undefined;
|
|
869
|
+
hideFooterPagination?: boolean | undefined;
|
|
870
|
+
authors?: unknown;
|
|
871
|
+
lastUpdatedDate?: string | undefined;
|
|
872
|
+
createdDate?: string | undefined;
|
|
873
|
+
'openapi-schema'?: string | undefined;
|
|
874
|
+
icon?: string | {
|
|
875
|
+
name: string;
|
|
876
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
877
|
+
} | undefined;
|
|
878
|
+
tag?: string | undefined;
|
|
879
|
+
url?: string | undefined;
|
|
880
|
+
hideApiMarker?: boolean | undefined;
|
|
881
|
+
noindex?: boolean | undefined;
|
|
882
|
+
isPublic?: boolean | undefined;
|
|
883
|
+
}>>;
|
|
884
|
+
}, "strip", z.ZodTypeAny, {
|
|
885
|
+
group: string;
|
|
886
|
+
icon?: string | {
|
|
887
|
+
name: string;
|
|
888
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
889
|
+
} | undefined;
|
|
890
|
+
hidden?: boolean | undefined;
|
|
891
|
+
root?: string | {
|
|
892
|
+
href: string;
|
|
893
|
+
title: string;
|
|
894
|
+
sidebarTitle?: string | undefined;
|
|
895
|
+
description?: string | undefined;
|
|
896
|
+
api?: string | undefined;
|
|
897
|
+
openapi?: string | undefined;
|
|
898
|
+
contentType?: string | undefined;
|
|
899
|
+
authMethod?: string | undefined;
|
|
900
|
+
auth?: string | undefined;
|
|
901
|
+
version?: string | undefined;
|
|
902
|
+
mode?: string | undefined;
|
|
903
|
+
hideFooterPagination?: boolean | undefined;
|
|
904
|
+
authors?: unknown;
|
|
905
|
+
lastUpdatedDate?: string | undefined;
|
|
906
|
+
createdDate?: string | undefined;
|
|
907
|
+
'openapi-schema'?: string | undefined;
|
|
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
|
+
tag?: string | undefined;
|
|
913
|
+
url?: string | undefined;
|
|
914
|
+
hideApiMarker?: boolean | undefined;
|
|
915
|
+
noindex?: boolean | undefined;
|
|
916
|
+
isPublic?: boolean | undefined;
|
|
917
|
+
} | undefined;
|
|
918
|
+
}, {
|
|
919
|
+
group: string;
|
|
920
|
+
icon?: string | {
|
|
921
|
+
name: string;
|
|
922
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
923
|
+
} | undefined;
|
|
924
|
+
hidden?: boolean | undefined;
|
|
925
|
+
root?: string | {
|
|
926
|
+
href: string;
|
|
927
|
+
title: string;
|
|
928
|
+
sidebarTitle?: string | undefined;
|
|
929
|
+
description?: string | undefined;
|
|
930
|
+
api?: string | undefined;
|
|
931
|
+
openapi?: string | undefined;
|
|
932
|
+
contentType?: string | undefined;
|
|
933
|
+
authMethod?: string | undefined;
|
|
934
|
+
auth?: string | undefined;
|
|
935
|
+
version?: string | undefined;
|
|
936
|
+
mode?: string | undefined;
|
|
937
|
+
hideFooterPagination?: boolean | undefined;
|
|
938
|
+
authors?: unknown;
|
|
939
|
+
lastUpdatedDate?: string | undefined;
|
|
940
|
+
createdDate?: string | undefined;
|
|
941
|
+
'openapi-schema'?: string | undefined;
|
|
942
|
+
icon?: string | {
|
|
943
|
+
name: string;
|
|
944
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
945
|
+
} | undefined;
|
|
946
|
+
tag?: string | undefined;
|
|
947
|
+
url?: string | undefined;
|
|
948
|
+
hideApiMarker?: boolean | undefined;
|
|
949
|
+
noindex?: boolean | undefined;
|
|
950
|
+
isPublic?: boolean | undefined;
|
|
951
|
+
} | undefined;
|
|
952
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
953
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
|
|
954
|
+
}, "strip", z.ZodTypeAny, {
|
|
955
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
956
|
+
}, {
|
|
957
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
958
|
+
}>, z.ZodLazy<z.ZodObject<{
|
|
959
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
960
|
+
}, "strip", z.ZodTypeAny, {
|
|
961
|
+
pages: any[];
|
|
962
|
+
}, {
|
|
963
|
+
pages: any[];
|
|
964
|
+
}>>]>>, "many">;
|
|
965
|
+
}, "strip", z.ZodTypeAny, {
|
|
966
|
+
groups: ({
|
|
967
|
+
group: string;
|
|
968
|
+
icon?: string | {
|
|
969
|
+
name: string;
|
|
970
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
971
|
+
} | undefined;
|
|
972
|
+
hidden?: boolean | undefined;
|
|
973
|
+
root?: string | {
|
|
974
|
+
href: string;
|
|
975
|
+
title: string;
|
|
976
|
+
sidebarTitle?: string | undefined;
|
|
977
|
+
description?: string | undefined;
|
|
978
|
+
api?: string | undefined;
|
|
979
|
+
openapi?: string | undefined;
|
|
980
|
+
contentType?: string | undefined;
|
|
981
|
+
authMethod?: string | undefined;
|
|
982
|
+
auth?: string | undefined;
|
|
983
|
+
version?: string | undefined;
|
|
984
|
+
mode?: string | undefined;
|
|
985
|
+
hideFooterPagination?: boolean | undefined;
|
|
986
|
+
authors?: unknown;
|
|
987
|
+
lastUpdatedDate?: string | undefined;
|
|
988
|
+
createdDate?: string | undefined;
|
|
989
|
+
'openapi-schema'?: string | undefined;
|
|
828
990
|
icon?: string | {
|
|
829
991
|
name: string;
|
|
830
992
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
831
993
|
} | undefined;
|
|
832
|
-
|
|
833
|
-
|
|
994
|
+
tag?: string | undefined;
|
|
995
|
+
url?: string | undefined;
|
|
996
|
+
hideApiMarker?: boolean | undefined;
|
|
997
|
+
noindex?: boolean | undefined;
|
|
998
|
+
isPublic?: boolean | undefined;
|
|
999
|
+
} | undefined;
|
|
1000
|
+
} & ({
|
|
1001
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1002
|
+
} | {
|
|
1003
|
+
pages: any[];
|
|
1004
|
+
}))[];
|
|
1005
|
+
}, {
|
|
1006
|
+
groups: ({
|
|
1007
|
+
group: string;
|
|
1008
|
+
icon?: string | {
|
|
1009
|
+
name: string;
|
|
1010
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1011
|
+
} | undefined;
|
|
1012
|
+
hidden?: boolean | undefined;
|
|
1013
|
+
root?: string | {
|
|
834
1014
|
href: string;
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
1015
|
+
title: string;
|
|
1016
|
+
sidebarTitle?: string | undefined;
|
|
1017
|
+
description?: string | undefined;
|
|
1018
|
+
api?: string | undefined;
|
|
1019
|
+
openapi?: string | undefined;
|
|
1020
|
+
contentType?: string | undefined;
|
|
1021
|
+
authMethod?: string | undefined;
|
|
1022
|
+
auth?: string | undefined;
|
|
1023
|
+
version?: string | undefined;
|
|
1024
|
+
mode?: string | undefined;
|
|
1025
|
+
hideFooterPagination?: boolean | undefined;
|
|
1026
|
+
authors?: unknown;
|
|
1027
|
+
lastUpdatedDate?: string | undefined;
|
|
1028
|
+
createdDate?: string | undefined;
|
|
1029
|
+
'openapi-schema'?: string | undefined;
|
|
838
1030
|
icon?: string | {
|
|
839
1031
|
name: string;
|
|
840
1032
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
841
1033
|
} | undefined;
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
}
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
} |
|
|
851
|
-
|
|
1034
|
+
tag?: string | undefined;
|
|
1035
|
+
url?: string | undefined;
|
|
1036
|
+
hideApiMarker?: boolean | undefined;
|
|
1037
|
+
noindex?: boolean | undefined;
|
|
1038
|
+
isPublic?: boolean | undefined;
|
|
1039
|
+
} | undefined;
|
|
1040
|
+
} & ({
|
|
1041
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1042
|
+
} | {
|
|
1043
|
+
pages: any[];
|
|
1044
|
+
}))[];
|
|
1045
|
+
}>, z.ZodObject<{
|
|
1046
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
1047
|
+
}, "strip", z.ZodTypeAny, {
|
|
1048
|
+
pages: any[];
|
|
1049
|
+
}, {
|
|
1050
|
+
pages: any[];
|
|
1051
|
+
}>]>>;
|
|
852
1052
|
footer: z.ZodOptional<z.ZodObject<{
|
|
853
1053
|
socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter"]>, z.ZodString>>;
|
|
854
1054
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -904,10 +1104,10 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
904
1104
|
}>>;
|
|
905
1105
|
seo: z.ZodOptional<z.ZodObject<{
|
|
906
1106
|
metatags: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
907
|
-
indexing: z.
|
|
1107
|
+
indexing: z.ZodOptional<z.ZodEnum<["navigable", "all"]>>;
|
|
908
1108
|
}, "strip", z.ZodTypeAny, {
|
|
909
|
-
indexing: "all" | "navigable";
|
|
910
1109
|
metatags?: Record<string, string> | undefined;
|
|
1110
|
+
indexing?: "all" | "navigable" | undefined;
|
|
911
1111
|
}, {
|
|
912
1112
|
metatags?: Record<string, string> | undefined;
|
|
913
1113
|
indexing?: "all" | "navigable" | undefined;
|
|
@@ -1018,20 +1218,20 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1018
1218
|
} | undefined;
|
|
1019
1219
|
}>]>>;
|
|
1020
1220
|
icons: z.ZodOptional<z.ZodObject<{
|
|
1021
|
-
library: z.
|
|
1221
|
+
library: z.ZodEnum<["fontawesome"]>;
|
|
1022
1222
|
}, "strip", z.ZodTypeAny, {
|
|
1023
1223
|
library: "fontawesome";
|
|
1024
1224
|
}, {
|
|
1025
|
-
library
|
|
1225
|
+
library: "fontawesome";
|
|
1026
1226
|
}>>;
|
|
1027
1227
|
styling: z.ZodOptional<z.ZodObject<{
|
|
1028
|
-
rounded: z.
|
|
1029
|
-
eyebrows: z.
|
|
1030
|
-
codeblocks: z.
|
|
1228
|
+
rounded: z.ZodOptional<z.ZodEnum<["regular", "sharp"]>>;
|
|
1229
|
+
eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
|
|
1230
|
+
codeblocks: z.ZodOptional<z.ZodEnum<["system", "dark"]>>;
|
|
1031
1231
|
}, "strip", z.ZodTypeAny, {
|
|
1032
|
-
rounded
|
|
1033
|
-
eyebrows
|
|
1034
|
-
codeblocks
|
|
1232
|
+
rounded?: "regular" | "sharp" | undefined;
|
|
1233
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
1234
|
+
codeblocks?: "dark" | "system" | undefined;
|
|
1035
1235
|
}, {
|
|
1036
1236
|
rounded?: "regular" | "sharp" | undefined;
|
|
1037
1237
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -1308,74 +1508,19 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1308
1508
|
light?: string | undefined;
|
|
1309
1509
|
dark?: string | undefined;
|
|
1310
1510
|
};
|
|
1311
|
-
navigation: (
|
|
1312
|
-
languages: ({
|
|
1313
|
-
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1314
|
-
hidden?: boolean | undefined;
|
|
1315
|
-
} & ({
|
|
1316
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1317
|
-
} | {
|
|
1318
|
-
href: string;
|
|
1319
|
-
} | {
|
|
1320
|
-
versions: any[];
|
|
1321
|
-
} | {
|
|
1322
|
-
tabs: any[];
|
|
1323
|
-
} | {
|
|
1324
|
-
dropdowns: any[];
|
|
1325
|
-
} | {
|
|
1326
|
-
anchors: any[];
|
|
1327
|
-
} | {
|
|
1328
|
-
groups: ({
|
|
1329
|
-
group: string;
|
|
1330
|
-
icon?: string | {
|
|
1331
|
-
name: string;
|
|
1332
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1333
|
-
} | undefined;
|
|
1334
|
-
hidden?: boolean | undefined;
|
|
1335
|
-
root?: string | undefined;
|
|
1336
|
-
} & ({
|
|
1337
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1338
|
-
} | {
|
|
1339
|
-
pages: any[];
|
|
1340
|
-
}))[];
|
|
1341
|
-
} | {
|
|
1342
|
-
pages: any[];
|
|
1343
|
-
}))[];
|
|
1344
|
-
} | {
|
|
1345
|
-
versions: any[];
|
|
1346
|
-
} | {
|
|
1347
|
-
tabs: any[];
|
|
1348
|
-
} | {
|
|
1349
|
-
dropdowns: any[];
|
|
1350
|
-
} | {
|
|
1351
|
-
anchors: any[];
|
|
1352
|
-
} | {
|
|
1353
|
-
groups: ({
|
|
1354
|
-
group: string;
|
|
1355
|
-
icon?: string | {
|
|
1356
|
-
name: string;
|
|
1357
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1358
|
-
} | undefined;
|
|
1359
|
-
hidden?: boolean | undefined;
|
|
1360
|
-
root?: string | undefined;
|
|
1361
|
-
} & ({
|
|
1362
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1363
|
-
} | {
|
|
1364
|
-
pages: any[];
|
|
1365
|
-
}))[];
|
|
1366
|
-
} | {
|
|
1367
|
-
pages: any[];
|
|
1368
|
-
}) & {
|
|
1511
|
+
navigation: ({
|
|
1369
1512
|
global?: {
|
|
1370
1513
|
languages?: ({
|
|
1371
1514
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1372
1515
|
hidden?: boolean | undefined;
|
|
1516
|
+
openapi?: string | string[] | undefined;
|
|
1373
1517
|
} & {
|
|
1374
1518
|
href: string;
|
|
1375
1519
|
})[] | undefined;
|
|
1376
1520
|
versions?: ({
|
|
1377
1521
|
version: string;
|
|
1378
1522
|
hidden?: boolean | undefined;
|
|
1523
|
+
openapi?: string | string[] | undefined;
|
|
1379
1524
|
} & {
|
|
1380
1525
|
href: string;
|
|
1381
1526
|
})[] | undefined;
|
|
@@ -1386,6 +1531,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1386
1531
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1387
1532
|
} | undefined;
|
|
1388
1533
|
hidden?: boolean | undefined;
|
|
1534
|
+
openapi?: string | string[] | undefined;
|
|
1389
1535
|
} & {
|
|
1390
1536
|
href: string;
|
|
1391
1537
|
})[] | undefined;
|
|
@@ -1396,6 +1542,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1396
1542
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1397
1543
|
} | undefined;
|
|
1398
1544
|
hidden?: boolean | undefined;
|
|
1545
|
+
openapi?: string | string[] | undefined;
|
|
1399
1546
|
} & {
|
|
1400
1547
|
href: string;
|
|
1401
1548
|
})[] | undefined;
|
|
@@ -1410,43 +1557,13 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1410
1557
|
dark?: string | undefined;
|
|
1411
1558
|
} | undefined;
|
|
1412
1559
|
hidden?: boolean | undefined;
|
|
1560
|
+
openapi?: string | string[] | undefined;
|
|
1413
1561
|
} & {
|
|
1414
1562
|
href: string;
|
|
1415
1563
|
})[] | undefined;
|
|
1416
1564
|
} | undefined;
|
|
1417
|
-
}
|
|
1418
|
-
languages:
|
|
1419
|
-
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1420
|
-
hidden?: boolean | undefined;
|
|
1421
|
-
} & ({
|
|
1422
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1423
|
-
} | {
|
|
1424
|
-
href: string;
|
|
1425
|
-
} | {
|
|
1426
|
-
versions: any[];
|
|
1427
|
-
} | {
|
|
1428
|
-
tabs: any[];
|
|
1429
|
-
} | {
|
|
1430
|
-
dropdowns: any[];
|
|
1431
|
-
} | {
|
|
1432
|
-
anchors: any[];
|
|
1433
|
-
} | {
|
|
1434
|
-
groups: ({
|
|
1435
|
-
group: string;
|
|
1436
|
-
icon?: string | {
|
|
1437
|
-
name: string;
|
|
1438
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1439
|
-
} | undefined;
|
|
1440
|
-
hidden?: boolean | undefined;
|
|
1441
|
-
root?: string | undefined;
|
|
1442
|
-
} & ({
|
|
1443
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1444
|
-
} | {
|
|
1445
|
-
pages: any[];
|
|
1446
|
-
}))[];
|
|
1447
|
-
} | {
|
|
1448
|
-
pages: any[];
|
|
1449
|
-
}))[];
|
|
1565
|
+
} & ({
|
|
1566
|
+
languages: any[];
|
|
1450
1567
|
} | {
|
|
1451
1568
|
versions: any[];
|
|
1452
1569
|
} | {
|
|
@@ -1463,7 +1580,33 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1463
1580
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1464
1581
|
} | undefined;
|
|
1465
1582
|
hidden?: boolean | undefined;
|
|
1466
|
-
root?: string |
|
|
1583
|
+
root?: string | {
|
|
1584
|
+
href: string;
|
|
1585
|
+
title: string;
|
|
1586
|
+
sidebarTitle?: string | undefined;
|
|
1587
|
+
description?: string | undefined;
|
|
1588
|
+
api?: string | undefined;
|
|
1589
|
+
openapi?: string | undefined;
|
|
1590
|
+
contentType?: string | undefined;
|
|
1591
|
+
authMethod?: string | undefined;
|
|
1592
|
+
auth?: string | undefined;
|
|
1593
|
+
version?: string | undefined;
|
|
1594
|
+
mode?: string | undefined;
|
|
1595
|
+
hideFooterPagination?: boolean | undefined;
|
|
1596
|
+
authors?: unknown;
|
|
1597
|
+
lastUpdatedDate?: string | undefined;
|
|
1598
|
+
createdDate?: string | undefined;
|
|
1599
|
+
'openapi-schema'?: string | undefined;
|
|
1600
|
+
icon?: string | {
|
|
1601
|
+
name: string;
|
|
1602
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1603
|
+
} | undefined;
|
|
1604
|
+
tag?: string | undefined;
|
|
1605
|
+
url?: string | undefined;
|
|
1606
|
+
hideApiMarker?: boolean | undefined;
|
|
1607
|
+
noindex?: boolean | undefined;
|
|
1608
|
+
isPublic?: boolean | undefined;
|
|
1609
|
+
} | undefined;
|
|
1467
1610
|
} & ({
|
|
1468
1611
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1469
1612
|
} | {
|
|
@@ -1471,17 +1614,19 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1471
1614
|
}))[];
|
|
1472
1615
|
} | {
|
|
1473
1616
|
pages: any[];
|
|
1474
|
-
}) & {
|
|
1617
|
+
})) & (({
|
|
1475
1618
|
global?: {
|
|
1476
1619
|
languages?: ({
|
|
1477
1620
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1478
1621
|
hidden?: boolean | undefined;
|
|
1622
|
+
openapi?: string | string[] | undefined;
|
|
1479
1623
|
} & {
|
|
1480
1624
|
href: string;
|
|
1481
1625
|
})[] | undefined;
|
|
1482
1626
|
versions?: ({
|
|
1483
1627
|
version: string;
|
|
1484
1628
|
hidden?: boolean | undefined;
|
|
1629
|
+
openapi?: string | string[] | undefined;
|
|
1485
1630
|
} & {
|
|
1486
1631
|
href: string;
|
|
1487
1632
|
})[] | undefined;
|
|
@@ -1492,6 +1637,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1492
1637
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1493
1638
|
} | undefined;
|
|
1494
1639
|
hidden?: boolean | undefined;
|
|
1640
|
+
openapi?: string | string[] | undefined;
|
|
1495
1641
|
} & {
|
|
1496
1642
|
href: string;
|
|
1497
1643
|
})[] | undefined;
|
|
@@ -1502,6 +1648,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1502
1648
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1503
1649
|
} | undefined;
|
|
1504
1650
|
hidden?: boolean | undefined;
|
|
1651
|
+
openapi?: string | string[] | undefined;
|
|
1505
1652
|
} & {
|
|
1506
1653
|
href: string;
|
|
1507
1654
|
})[] | undefined;
|
|
@@ -1516,11 +1663,64 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1516
1663
|
dark?: string | undefined;
|
|
1517
1664
|
} | undefined;
|
|
1518
1665
|
hidden?: boolean | undefined;
|
|
1666
|
+
openapi?: string | string[] | undefined;
|
|
1519
1667
|
} & {
|
|
1520
1668
|
href: string;
|
|
1521
1669
|
})[] | undefined;
|
|
1522
1670
|
} | undefined;
|
|
1523
|
-
}
|
|
1671
|
+
} & ({
|
|
1672
|
+
languages: any[];
|
|
1673
|
+
} | {
|
|
1674
|
+
versions: any[];
|
|
1675
|
+
} | {
|
|
1676
|
+
tabs: any[];
|
|
1677
|
+
} | {
|
|
1678
|
+
dropdowns: any[];
|
|
1679
|
+
} | {
|
|
1680
|
+
anchors: any[];
|
|
1681
|
+
} | {
|
|
1682
|
+
groups: ({
|
|
1683
|
+
group: string;
|
|
1684
|
+
icon?: string | {
|
|
1685
|
+
name: string;
|
|
1686
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1687
|
+
} | undefined;
|
|
1688
|
+
hidden?: boolean | undefined;
|
|
1689
|
+
root?: string | {
|
|
1690
|
+
href: string;
|
|
1691
|
+
title: string;
|
|
1692
|
+
sidebarTitle?: string | undefined;
|
|
1693
|
+
description?: string | undefined;
|
|
1694
|
+
api?: string | undefined;
|
|
1695
|
+
openapi?: string | undefined;
|
|
1696
|
+
contentType?: string | undefined;
|
|
1697
|
+
authMethod?: string | undefined;
|
|
1698
|
+
auth?: string | undefined;
|
|
1699
|
+
version?: string | undefined;
|
|
1700
|
+
mode?: string | undefined;
|
|
1701
|
+
hideFooterPagination?: boolean | undefined;
|
|
1702
|
+
authors?: unknown;
|
|
1703
|
+
lastUpdatedDate?: string | undefined;
|
|
1704
|
+
createdDate?: string | undefined;
|
|
1705
|
+
'openapi-schema'?: string | undefined;
|
|
1706
|
+
icon?: string | {
|
|
1707
|
+
name: string;
|
|
1708
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1709
|
+
} | undefined;
|
|
1710
|
+
tag?: string | undefined;
|
|
1711
|
+
url?: string | undefined;
|
|
1712
|
+
hideApiMarker?: boolean | undefined;
|
|
1713
|
+
noindex?: boolean | undefined;
|
|
1714
|
+
isPublic?: boolean | undefined;
|
|
1715
|
+
} | undefined;
|
|
1716
|
+
} & ({
|
|
1717
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1718
|
+
} | {
|
|
1719
|
+
pages: any[];
|
|
1720
|
+
}))[];
|
|
1721
|
+
} | {
|
|
1722
|
+
pages: any[];
|
|
1723
|
+
})) | undefined);
|
|
1524
1724
|
description?: string | undefined;
|
|
1525
1725
|
logo?: string | {
|
|
1526
1726
|
light: string;
|
|
@@ -1534,20 +1734,20 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1534
1734
|
api?: {
|
|
1535
1735
|
openapi?: string | string[] | undefined;
|
|
1536
1736
|
playground?: {
|
|
1537
|
-
display
|
|
1538
|
-
proxy
|
|
1737
|
+
display?: "simple" | "none" | "interactive" | undefined;
|
|
1738
|
+
proxy?: boolean | undefined;
|
|
1539
1739
|
} | undefined;
|
|
1540
1740
|
examples?: {
|
|
1541
1741
|
languages?: string[] | undefined;
|
|
1542
1742
|
} | undefined;
|
|
1543
1743
|
mdx?: {
|
|
1544
1744
|
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
1545
|
-
|
|
1745
|
+
server?: string | string[] | undefined;
|
|
1546
1746
|
} | undefined;
|
|
1547
1747
|
} | undefined;
|
|
1548
1748
|
appearance?: {
|
|
1549
|
-
|
|
1550
|
-
|
|
1749
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
1750
|
+
strict?: boolean | undefined;
|
|
1551
1751
|
} | undefined;
|
|
1552
1752
|
background?: {
|
|
1553
1753
|
image?: string | {
|
|
@@ -1588,8 +1788,8 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1588
1788
|
prompt?: string | undefined;
|
|
1589
1789
|
} | undefined;
|
|
1590
1790
|
seo?: {
|
|
1591
|
-
indexing: "all" | "navigable";
|
|
1592
1791
|
metatags?: Record<string, string> | undefined;
|
|
1792
|
+
indexing?: "all" | "navigable" | undefined;
|
|
1593
1793
|
} | undefined;
|
|
1594
1794
|
fonts?: {
|
|
1595
1795
|
family: string;
|
|
@@ -1614,9 +1814,9 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1614
1814
|
library: "fontawesome";
|
|
1615
1815
|
} | undefined;
|
|
1616
1816
|
styling?: {
|
|
1617
|
-
rounded
|
|
1618
|
-
eyebrows
|
|
1619
|
-
codeblocks
|
|
1817
|
+
rounded?: "regular" | "sharp" | undefined;
|
|
1818
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
1819
|
+
codeblocks?: "dark" | "system" | undefined;
|
|
1620
1820
|
} | undefined;
|
|
1621
1821
|
redirects?: {
|
|
1622
1822
|
source: string;
|
|
@@ -1687,74 +1887,19 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1687
1887
|
light?: string | undefined;
|
|
1688
1888
|
dark?: string | undefined;
|
|
1689
1889
|
};
|
|
1690
|
-
navigation: (
|
|
1691
|
-
languages: ({
|
|
1692
|
-
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1693
|
-
hidden?: boolean | undefined;
|
|
1694
|
-
} & ({
|
|
1695
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1696
|
-
} | {
|
|
1697
|
-
href: string;
|
|
1698
|
-
} | {
|
|
1699
|
-
versions: any[];
|
|
1700
|
-
} | {
|
|
1701
|
-
tabs: any[];
|
|
1702
|
-
} | {
|
|
1703
|
-
dropdowns: any[];
|
|
1704
|
-
} | {
|
|
1705
|
-
anchors: any[];
|
|
1706
|
-
} | {
|
|
1707
|
-
groups: ({
|
|
1708
|
-
group: string;
|
|
1709
|
-
icon?: string | {
|
|
1710
|
-
name: string;
|
|
1711
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1712
|
-
} | undefined;
|
|
1713
|
-
hidden?: boolean | undefined;
|
|
1714
|
-
root?: string | undefined;
|
|
1715
|
-
} & ({
|
|
1716
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1717
|
-
} | {
|
|
1718
|
-
pages: any[];
|
|
1719
|
-
}))[];
|
|
1720
|
-
} | {
|
|
1721
|
-
pages: any[];
|
|
1722
|
-
}))[];
|
|
1723
|
-
} | {
|
|
1724
|
-
versions: any[];
|
|
1725
|
-
} | {
|
|
1726
|
-
tabs: any[];
|
|
1727
|
-
} | {
|
|
1728
|
-
dropdowns: any[];
|
|
1729
|
-
} | {
|
|
1730
|
-
anchors: any[];
|
|
1731
|
-
} | {
|
|
1732
|
-
groups: ({
|
|
1733
|
-
group: string;
|
|
1734
|
-
icon?: string | {
|
|
1735
|
-
name: string;
|
|
1736
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1737
|
-
} | undefined;
|
|
1738
|
-
hidden?: boolean | undefined;
|
|
1739
|
-
root?: string | undefined;
|
|
1740
|
-
} & ({
|
|
1741
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1742
|
-
} | {
|
|
1743
|
-
pages: any[];
|
|
1744
|
-
}))[];
|
|
1745
|
-
} | {
|
|
1746
|
-
pages: any[];
|
|
1747
|
-
}) & {
|
|
1890
|
+
navigation: ({
|
|
1748
1891
|
global?: {
|
|
1749
1892
|
languages?: ({
|
|
1750
1893
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1751
1894
|
hidden?: boolean | undefined;
|
|
1895
|
+
openapi?: string | string[] | undefined;
|
|
1752
1896
|
} & {
|
|
1753
1897
|
href: string;
|
|
1754
1898
|
})[] | undefined;
|
|
1755
1899
|
versions?: ({
|
|
1756
1900
|
version: string;
|
|
1757
1901
|
hidden?: boolean | undefined;
|
|
1902
|
+
openapi?: string | string[] | undefined;
|
|
1758
1903
|
} & {
|
|
1759
1904
|
href: string;
|
|
1760
1905
|
})[] | undefined;
|
|
@@ -1765,6 +1910,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1765
1910
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1766
1911
|
} | undefined;
|
|
1767
1912
|
hidden?: boolean | undefined;
|
|
1913
|
+
openapi?: string | string[] | undefined;
|
|
1768
1914
|
} & {
|
|
1769
1915
|
href: string;
|
|
1770
1916
|
})[] | undefined;
|
|
@@ -1775,6 +1921,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1775
1921
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1776
1922
|
} | undefined;
|
|
1777
1923
|
hidden?: boolean | undefined;
|
|
1924
|
+
openapi?: string | string[] | undefined;
|
|
1778
1925
|
} & {
|
|
1779
1926
|
href: string;
|
|
1780
1927
|
})[] | undefined;
|
|
@@ -1789,43 +1936,13 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1789
1936
|
dark?: string | undefined;
|
|
1790
1937
|
} | undefined;
|
|
1791
1938
|
hidden?: boolean | undefined;
|
|
1939
|
+
openapi?: string | string[] | undefined;
|
|
1792
1940
|
} & {
|
|
1793
1941
|
href: string;
|
|
1794
1942
|
})[] | undefined;
|
|
1795
1943
|
} | undefined;
|
|
1796
|
-
}
|
|
1797
|
-
languages:
|
|
1798
|
-
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1799
|
-
hidden?: boolean | undefined;
|
|
1800
|
-
} & ({
|
|
1801
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1802
|
-
} | {
|
|
1803
|
-
href: string;
|
|
1804
|
-
} | {
|
|
1805
|
-
versions: any[];
|
|
1806
|
-
} | {
|
|
1807
|
-
tabs: any[];
|
|
1808
|
-
} | {
|
|
1809
|
-
dropdowns: any[];
|
|
1810
|
-
} | {
|
|
1811
|
-
anchors: any[];
|
|
1812
|
-
} | {
|
|
1813
|
-
groups: ({
|
|
1814
|
-
group: string;
|
|
1815
|
-
icon?: string | {
|
|
1816
|
-
name: string;
|
|
1817
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1818
|
-
} | undefined;
|
|
1819
|
-
hidden?: boolean | undefined;
|
|
1820
|
-
root?: string | undefined;
|
|
1821
|
-
} & ({
|
|
1822
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1823
|
-
} | {
|
|
1824
|
-
pages: any[];
|
|
1825
|
-
}))[];
|
|
1826
|
-
} | {
|
|
1827
|
-
pages: any[];
|
|
1828
|
-
}))[];
|
|
1944
|
+
} & ({
|
|
1945
|
+
languages: any[];
|
|
1829
1946
|
} | {
|
|
1830
1947
|
versions: any[];
|
|
1831
1948
|
} | {
|
|
@@ -1842,7 +1959,33 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1842
1959
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1843
1960
|
} | undefined;
|
|
1844
1961
|
hidden?: boolean | undefined;
|
|
1845
|
-
root?: string |
|
|
1962
|
+
root?: string | {
|
|
1963
|
+
href: string;
|
|
1964
|
+
title: string;
|
|
1965
|
+
sidebarTitle?: string | undefined;
|
|
1966
|
+
description?: string | undefined;
|
|
1967
|
+
api?: string | undefined;
|
|
1968
|
+
openapi?: string | undefined;
|
|
1969
|
+
contentType?: string | undefined;
|
|
1970
|
+
authMethod?: string | undefined;
|
|
1971
|
+
auth?: string | undefined;
|
|
1972
|
+
version?: string | undefined;
|
|
1973
|
+
mode?: string | undefined;
|
|
1974
|
+
hideFooterPagination?: boolean | undefined;
|
|
1975
|
+
authors?: unknown;
|
|
1976
|
+
lastUpdatedDate?: string | undefined;
|
|
1977
|
+
createdDate?: string | undefined;
|
|
1978
|
+
'openapi-schema'?: string | undefined;
|
|
1979
|
+
icon?: string | {
|
|
1980
|
+
name: string;
|
|
1981
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1982
|
+
} | undefined;
|
|
1983
|
+
tag?: string | undefined;
|
|
1984
|
+
url?: string | undefined;
|
|
1985
|
+
hideApiMarker?: boolean | undefined;
|
|
1986
|
+
noindex?: boolean | undefined;
|
|
1987
|
+
isPublic?: boolean | undefined;
|
|
1988
|
+
} | undefined;
|
|
1846
1989
|
} & ({
|
|
1847
1990
|
openapi: (string | string[]) & (string | string[] | undefined);
|
|
1848
1991
|
} | {
|
|
@@ -1850,17 +1993,19 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1850
1993
|
}))[];
|
|
1851
1994
|
} | {
|
|
1852
1995
|
pages: any[];
|
|
1853
|
-
}) & {
|
|
1996
|
+
})) & (({
|
|
1854
1997
|
global?: {
|
|
1855
1998
|
languages?: ({
|
|
1856
1999
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1857
2000
|
hidden?: boolean | undefined;
|
|
2001
|
+
openapi?: string | string[] | undefined;
|
|
1858
2002
|
} & {
|
|
1859
2003
|
href: string;
|
|
1860
2004
|
})[] | undefined;
|
|
1861
2005
|
versions?: ({
|
|
1862
2006
|
version: string;
|
|
1863
2007
|
hidden?: boolean | undefined;
|
|
2008
|
+
openapi?: string | string[] | undefined;
|
|
1864
2009
|
} & {
|
|
1865
2010
|
href: string;
|
|
1866
2011
|
})[] | undefined;
|
|
@@ -1871,6 +2016,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1871
2016
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1872
2017
|
} | undefined;
|
|
1873
2018
|
hidden?: boolean | undefined;
|
|
2019
|
+
openapi?: string | string[] | undefined;
|
|
1874
2020
|
} & {
|
|
1875
2021
|
href: string;
|
|
1876
2022
|
})[] | undefined;
|
|
@@ -1881,6 +2027,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1881
2027
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1882
2028
|
} | undefined;
|
|
1883
2029
|
hidden?: boolean | undefined;
|
|
2030
|
+
openapi?: string | string[] | undefined;
|
|
1884
2031
|
} & {
|
|
1885
2032
|
href: string;
|
|
1886
2033
|
})[] | undefined;
|
|
@@ -1895,11 +2042,64 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1895
2042
|
dark?: string | undefined;
|
|
1896
2043
|
} | undefined;
|
|
1897
2044
|
hidden?: boolean | undefined;
|
|
2045
|
+
openapi?: string | string[] | undefined;
|
|
1898
2046
|
} & {
|
|
1899
2047
|
href: string;
|
|
1900
2048
|
})[] | undefined;
|
|
1901
2049
|
} | undefined;
|
|
1902
|
-
}
|
|
2050
|
+
} & ({
|
|
2051
|
+
languages: any[];
|
|
2052
|
+
} | {
|
|
2053
|
+
versions: any[];
|
|
2054
|
+
} | {
|
|
2055
|
+
tabs: any[];
|
|
2056
|
+
} | {
|
|
2057
|
+
dropdowns: any[];
|
|
2058
|
+
} | {
|
|
2059
|
+
anchors: any[];
|
|
2060
|
+
} | {
|
|
2061
|
+
groups: ({
|
|
2062
|
+
group: string;
|
|
2063
|
+
icon?: string | {
|
|
2064
|
+
name: string;
|
|
2065
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2066
|
+
} | undefined;
|
|
2067
|
+
hidden?: boolean | undefined;
|
|
2068
|
+
root?: string | {
|
|
2069
|
+
href: string;
|
|
2070
|
+
title: string;
|
|
2071
|
+
sidebarTitle?: string | undefined;
|
|
2072
|
+
description?: string | undefined;
|
|
2073
|
+
api?: string | undefined;
|
|
2074
|
+
openapi?: string | undefined;
|
|
2075
|
+
contentType?: string | undefined;
|
|
2076
|
+
authMethod?: string | undefined;
|
|
2077
|
+
auth?: string | undefined;
|
|
2078
|
+
version?: string | undefined;
|
|
2079
|
+
mode?: string | undefined;
|
|
2080
|
+
hideFooterPagination?: boolean | undefined;
|
|
2081
|
+
authors?: unknown;
|
|
2082
|
+
lastUpdatedDate?: string | undefined;
|
|
2083
|
+
createdDate?: string | undefined;
|
|
2084
|
+
'openapi-schema'?: string | undefined;
|
|
2085
|
+
icon?: string | {
|
|
2086
|
+
name: string;
|
|
2087
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2088
|
+
} | undefined;
|
|
2089
|
+
tag?: string | undefined;
|
|
2090
|
+
url?: string | undefined;
|
|
2091
|
+
hideApiMarker?: boolean | undefined;
|
|
2092
|
+
noindex?: boolean | undefined;
|
|
2093
|
+
isPublic?: boolean | undefined;
|
|
2094
|
+
} | undefined;
|
|
2095
|
+
} & ({
|
|
2096
|
+
openapi: (string | string[]) & (string | string[] | undefined);
|
|
2097
|
+
} | {
|
|
2098
|
+
pages: any[];
|
|
2099
|
+
}))[];
|
|
2100
|
+
} | {
|
|
2101
|
+
pages: any[];
|
|
2102
|
+
})) | undefined);
|
|
1903
2103
|
$schema?: string | undefined;
|
|
1904
2104
|
description?: string | undefined;
|
|
1905
2105
|
logo?: string | {
|
|
@@ -1922,7 +2122,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1922
2122
|
} | undefined;
|
|
1923
2123
|
mdx?: {
|
|
1924
2124
|
auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
1925
|
-
|
|
2125
|
+
server?: string | string[] | undefined;
|
|
1926
2126
|
} | undefined;
|
|
1927
2127
|
} | undefined;
|
|
1928
2128
|
appearance?: {
|
|
@@ -1991,7 +2191,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1991
2191
|
} | undefined;
|
|
1992
2192
|
} | undefined;
|
|
1993
2193
|
icons?: {
|
|
1994
|
-
library
|
|
2194
|
+
library: "fontawesome";
|
|
1995
2195
|
} | undefined;
|
|
1996
2196
|
styling?: {
|
|
1997
2197
|
rounded?: "regular" | "sharp" | undefined;
|