@mintlify/validation 0.1.254 → 0.1.255
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 +3922 -7432
- package/dist/mint-config/schemas/v2/properties/index.d.ts +1 -0
- package/dist/mint-config/schemas/v2/properties/index.js +1 -0
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +12 -455
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +28 -11
- package/dist/mint-config/schemas/v2/properties/navigation/divisionNav.d.ts +56 -0
- package/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js +5 -0
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +13 -330
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +28 -11
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +22 -646
- package/dist/mint-config/schemas/v2/properties/navigation/groups.js +15 -13
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +258 -1495
- package/dist/mint-config/schemas/v2/properties/navigation/index.js +23 -13
- package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +11 -202
- package/dist/mint-config/schemas/v2/properties/navigation/languages.js +33 -11
- package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +2 -3
- package/dist/mint-config/schemas/v2/properties/navigation/pages.js +2 -2
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +11 -328
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +28 -11
- package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +12 -203
- package/dist/mint-config/schemas/v2/properties/navigation/version.js +28 -11
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +253 -955
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +253 -955
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +253 -955
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +253 -955
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +143 -737
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +253 -955
- package/dist/mint-config/upgrades/updateNavigationToDocsConfig.js +14 -8
- package/dist/mint-config/validateConfig.d.ts +420 -960
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/dist/mint-config/schemas/v2/properties/navigation/divisionSchemas.d.ts +0 -7
- package/dist/mint-config/schemas/v2/properties/navigation/divisionSchemas.js +0 -26
|
@@ -1,6 +1,146 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export
|
|
3
|
-
|
|
2
|
+
export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
3
|
+
languages: z.ZodArray<z.ZodType<import("./divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
4
|
+
}, "strip", z.ZodTypeAny, {
|
|
5
|
+
languages: import("./divisionNav.js").LanguageNavigation<"default">[];
|
|
6
|
+
}, {
|
|
7
|
+
languages: import("./divisionNav.js").LanguageNavigation<"default">[];
|
|
8
|
+
}>, z.ZodObject<{
|
|
9
|
+
versions: z.ZodArray<z.ZodType<import("./divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
10
|
+
}, "strip", z.ZodTypeAny, {
|
|
11
|
+
versions: import("./divisionNav.js").VersionNavigation<"default">[];
|
|
12
|
+
}, {
|
|
13
|
+
versions: import("./divisionNav.js").VersionNavigation<"default">[];
|
|
14
|
+
}>, z.ZodObject<{
|
|
15
|
+
tabs: z.ZodArray<z.ZodType<import("./divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./divisionNav.js").TabNavigation<"default">>, "many">;
|
|
16
|
+
}, "strip", z.ZodTypeAny, {
|
|
17
|
+
tabs: import("./divisionNav.js").TabNavigation<"default">[];
|
|
18
|
+
}, {
|
|
19
|
+
tabs: import("./divisionNav.js").TabNavigation<"default">[];
|
|
20
|
+
}>, z.ZodObject<{
|
|
21
|
+
dropdowns: z.ZodArray<z.ZodType<import("./divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
22
|
+
}, "strip", z.ZodTypeAny, {
|
|
23
|
+
dropdowns: import("./divisionNav.js").DropdownNavigation<"default">[];
|
|
24
|
+
}, {
|
|
25
|
+
dropdowns: import("./divisionNav.js").DropdownNavigation<"default">[];
|
|
26
|
+
}>, z.ZodObject<{
|
|
27
|
+
anchors: z.ZodArray<z.ZodType<import("./divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
28
|
+
}, "strip", z.ZodTypeAny, {
|
|
29
|
+
anchors: import("./divisionNav.js").AnchorNavigation<"default">[];
|
|
30
|
+
}, {
|
|
31
|
+
anchors: import("./divisionNav.js").AnchorNavigation<"default">[];
|
|
32
|
+
}>, z.ZodObject<{
|
|
33
|
+
groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
34
|
+
group: z.ZodString;
|
|
35
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
36
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
37
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
38
|
+
}, "strip", z.ZodTypeAny, {
|
|
39
|
+
name: string;
|
|
40
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
41
|
+
}, {
|
|
42
|
+
name: string;
|
|
43
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
44
|
+
}>]>>;
|
|
45
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
46
|
+
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
47
|
+
}, "strip", z.ZodTypeAny, {
|
|
48
|
+
group: string;
|
|
49
|
+
icon?: string | {
|
|
50
|
+
name: string;
|
|
51
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
52
|
+
} | undefined;
|
|
53
|
+
hidden?: boolean | undefined;
|
|
54
|
+
root?: string | undefined;
|
|
55
|
+
}, {
|
|
56
|
+
group: string;
|
|
57
|
+
icon?: string | {
|
|
58
|
+
name: string;
|
|
59
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
60
|
+
} | undefined;
|
|
61
|
+
hidden?: boolean | undefined;
|
|
62
|
+
root?: string | undefined;
|
|
63
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
64
|
+
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
65
|
+
source: z.ZodEffects<z.ZodString, string, string>;
|
|
66
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
67
|
+
}, "strict", z.ZodTypeAny, {
|
|
68
|
+
source: string;
|
|
69
|
+
directory?: string | undefined;
|
|
70
|
+
}, {
|
|
71
|
+
source: string;
|
|
72
|
+
directory?: string | undefined;
|
|
73
|
+
}>]>;
|
|
74
|
+
}, "strip", z.ZodTypeAny, {
|
|
75
|
+
openapi: (string | string[] | {
|
|
76
|
+
source: string;
|
|
77
|
+
directory?: string | undefined;
|
|
78
|
+
}) & (string | string[] | {
|
|
79
|
+
source: string;
|
|
80
|
+
directory?: string | undefined;
|
|
81
|
+
} | undefined);
|
|
82
|
+
}, {
|
|
83
|
+
openapi: (string | string[] | {
|
|
84
|
+
source: string;
|
|
85
|
+
directory?: string | undefined;
|
|
86
|
+
}) & (string | string[] | {
|
|
87
|
+
source: string;
|
|
88
|
+
directory?: string | undefined;
|
|
89
|
+
} | undefined);
|
|
90
|
+
}>, z.ZodLazy<z.ZodObject<{
|
|
91
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
92
|
+
}, "strip", z.ZodTypeAny, {
|
|
93
|
+
pages: any[];
|
|
94
|
+
}, {
|
|
95
|
+
pages: any[];
|
|
96
|
+
}>>]>>, "many">;
|
|
97
|
+
}, "strip", z.ZodTypeAny, {
|
|
98
|
+
groups: ({
|
|
99
|
+
group: string;
|
|
100
|
+
icon?: string | {
|
|
101
|
+
name: string;
|
|
102
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
103
|
+
} | undefined;
|
|
104
|
+
hidden?: boolean | undefined;
|
|
105
|
+
root?: string | undefined;
|
|
106
|
+
} & ({
|
|
107
|
+
openapi: (string | string[] | {
|
|
108
|
+
source: string;
|
|
109
|
+
directory?: string | undefined;
|
|
110
|
+
}) & (string | string[] | {
|
|
111
|
+
source: string;
|
|
112
|
+
directory?: string | undefined;
|
|
113
|
+
} | undefined);
|
|
114
|
+
} | {
|
|
115
|
+
pages: any[];
|
|
116
|
+
}))[];
|
|
117
|
+
}, {
|
|
118
|
+
groups: ({
|
|
119
|
+
group: string;
|
|
120
|
+
icon?: string | {
|
|
121
|
+
name: string;
|
|
122
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
123
|
+
} | undefined;
|
|
124
|
+
hidden?: boolean | undefined;
|
|
125
|
+
root?: string | undefined;
|
|
126
|
+
} & ({
|
|
127
|
+
openapi: (string | string[] | {
|
|
128
|
+
source: string;
|
|
129
|
+
directory?: string | undefined;
|
|
130
|
+
}) & (string | string[] | {
|
|
131
|
+
source: string;
|
|
132
|
+
directory?: string | undefined;
|
|
133
|
+
} | undefined);
|
|
134
|
+
} | {
|
|
135
|
+
pages: any[];
|
|
136
|
+
}))[];
|
|
137
|
+
}>, z.ZodObject<{
|
|
138
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
139
|
+
}, "strip", z.ZodTypeAny, {
|
|
140
|
+
pages: any[];
|
|
141
|
+
}, {
|
|
142
|
+
pages: any[];
|
|
143
|
+
}>]>, z.ZodObject<{
|
|
4
144
|
global: z.ZodOptional<z.ZodObject<{
|
|
5
145
|
languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
6
146
|
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
@@ -347,123 +487,40 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
347
487
|
href: string;
|
|
348
488
|
})[] | undefined;
|
|
349
489
|
} | undefined;
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
354
|
-
}, "strip", z.ZodTypeAny, {
|
|
355
|
-
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
356
|
-
hidden?: boolean | undefined;
|
|
357
|
-
}, {
|
|
358
|
-
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
359
|
-
hidden?: boolean | undefined;
|
|
360
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
361
|
-
href: z.ZodString;
|
|
362
|
-
}, "strip", z.ZodTypeAny, {
|
|
363
|
-
href: string;
|
|
364
|
-
}, {
|
|
365
|
-
href: string;
|
|
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">, z.ZodObject<{
|
|
383
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
384
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
385
|
-
}, "strict", z.ZodTypeAny, {
|
|
386
|
-
source: string;
|
|
387
|
-
directory?: string | undefined;
|
|
388
|
-
}, {
|
|
389
|
-
source: string;
|
|
390
|
-
directory?: string | undefined;
|
|
391
|
-
}>]>>;
|
|
392
|
-
}, "strip", z.ZodTypeAny, {
|
|
393
|
-
openapi?: string | string[] | {
|
|
394
|
-
source: string;
|
|
395
|
-
directory?: string | undefined;
|
|
396
|
-
} | undefined;
|
|
397
|
-
}, {
|
|
398
|
-
openapi?: string | string[] | {
|
|
399
|
-
source: string;
|
|
400
|
-
directory?: string | undefined;
|
|
401
|
-
} | undefined;
|
|
402
|
-
}>>, "many">;
|
|
490
|
+
}>>;
|
|
491
|
+
export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
492
|
+
languages: z.ZodArray<z.ZodType<import("./divisionNav.js").LanguageNavigation<"decorated">, z.ZodTypeDef, import("./divisionNav.js").LanguageNavigation<"decorated">>, "many">;
|
|
403
493
|
}, "strip", z.ZodTypeAny, {
|
|
404
|
-
languages:
|
|
494
|
+
languages: import("./divisionNav.js").LanguageNavigation<"decorated">[];
|
|
405
495
|
}, {
|
|
406
|
-
languages:
|
|
496
|
+
languages: import("./divisionNav.js").LanguageNavigation<"decorated">[];
|
|
407
497
|
}>, z.ZodObject<{
|
|
408
|
-
versions: z.ZodArray<z.
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
}, {
|
|
422
|
-
href: string;
|
|
423
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
424
|
-
version: z.ZodString;
|
|
425
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
426
|
-
}, "strip", z.ZodTypeAny, {
|
|
427
|
-
version: string;
|
|
428
|
-
hidden?: boolean | undefined;
|
|
429
|
-
}, {
|
|
430
|
-
version: string;
|
|
431
|
-
hidden?: boolean | undefined;
|
|
432
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
433
|
-
href: z.ZodString;
|
|
434
|
-
}, "strip", z.ZodTypeAny, {
|
|
435
|
-
href: string;
|
|
436
|
-
}, {
|
|
437
|
-
href: string;
|
|
438
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
439
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
440
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
441
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
442
|
-
}, "strict", z.ZodTypeAny, {
|
|
443
|
-
source: string;
|
|
444
|
-
directory?: string | undefined;
|
|
445
|
-
}, {
|
|
446
|
-
source: string;
|
|
447
|
-
directory?: string | undefined;
|
|
448
|
-
}>]>>;
|
|
449
|
-
}, "strip", z.ZodTypeAny, {
|
|
450
|
-
openapi?: string | string[] | {
|
|
451
|
-
source: string;
|
|
452
|
-
directory?: string | undefined;
|
|
453
|
-
} | undefined;
|
|
454
|
-
}, {
|
|
455
|
-
openapi?: string | string[] | {
|
|
456
|
-
source: string;
|
|
457
|
-
directory?: string | undefined;
|
|
458
|
-
} | undefined;
|
|
459
|
-
}>>, "many">;
|
|
498
|
+
versions: z.ZodArray<z.ZodType<import("./divisionNav.js").VersionNavigation<"decorated">, z.ZodTypeDef, import("./divisionNav.js").VersionNavigation<"decorated">>, "many">;
|
|
499
|
+
}, "strip", z.ZodTypeAny, {
|
|
500
|
+
versions: import("./divisionNav.js").VersionNavigation<"decorated">[];
|
|
501
|
+
}, {
|
|
502
|
+
versions: import("./divisionNav.js").VersionNavigation<"decorated">[];
|
|
503
|
+
}>, z.ZodObject<{
|
|
504
|
+
tabs: z.ZodArray<z.ZodType<import("./divisionNav.js").TabNavigation<"decorated">, z.ZodTypeDef, import("./divisionNav.js").TabNavigation<"decorated">>, "many">;
|
|
505
|
+
}, "strip", z.ZodTypeAny, {
|
|
506
|
+
tabs: import("./divisionNav.js").TabNavigation<"decorated">[];
|
|
507
|
+
}, {
|
|
508
|
+
tabs: import("./divisionNav.js").TabNavigation<"decorated">[];
|
|
509
|
+
}>, z.ZodObject<{
|
|
510
|
+
dropdowns: z.ZodArray<z.ZodType<import("./divisionNav.js").DropdownNavigation<"decorated">, z.ZodTypeDef, import("./divisionNav.js").DropdownNavigation<"decorated">>, "many">;
|
|
460
511
|
}, "strip", z.ZodTypeAny, {
|
|
461
|
-
|
|
512
|
+
dropdowns: import("./divisionNav.js").DropdownNavigation<"decorated">[];
|
|
462
513
|
}, {
|
|
463
|
-
|
|
514
|
+
dropdowns: import("./divisionNav.js").DropdownNavigation<"decorated">[];
|
|
464
515
|
}>, z.ZodObject<{
|
|
465
|
-
|
|
466
|
-
|
|
516
|
+
anchors: z.ZodArray<z.ZodType<import("./divisionNav.js").AnchorNavigation<"decorated">, z.ZodTypeDef, import("./divisionNav.js").AnchorNavigation<"decorated">>, "many">;
|
|
517
|
+
}, "strip", z.ZodTypeAny, {
|
|
518
|
+
anchors: import("./divisionNav.js").AnchorNavigation<"decorated">[];
|
|
519
|
+
}, {
|
|
520
|
+
anchors: import("./divisionNav.js").AnchorNavigation<"decorated">[];
|
|
521
|
+
}>, z.ZodObject<{
|
|
522
|
+
groups: z.ZodArray<z.ZodObject<{
|
|
523
|
+
group: z.ZodString;
|
|
467
524
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
468
525
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
469
526
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -475,338 +532,91 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
475
532
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
476
533
|
}>]>>;
|
|
477
534
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
535
|
+
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
536
|
+
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
478
537
|
}, "strip", z.ZodTypeAny, {
|
|
479
|
-
|
|
538
|
+
group: string;
|
|
539
|
+
pages: any[];
|
|
480
540
|
icon?: string | {
|
|
481
541
|
name: string;
|
|
482
542
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
483
543
|
} | undefined;
|
|
484
544
|
hidden?: boolean | undefined;
|
|
545
|
+
root?: string | undefined;
|
|
485
546
|
}, {
|
|
486
|
-
|
|
547
|
+
group: string;
|
|
548
|
+
pages: any[];
|
|
487
549
|
icon?: string | {
|
|
488
550
|
name: string;
|
|
489
551
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
490
552
|
} | undefined;
|
|
491
553
|
hidden?: boolean | undefined;
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
499
|
-
tab: z.ZodString;
|
|
500
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
501
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
502
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
503
|
-
}, "strip", z.ZodTypeAny, {
|
|
504
|
-
name: string;
|
|
505
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
506
|
-
}, {
|
|
507
|
-
name: string;
|
|
508
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
509
|
-
}>]>>;
|
|
510
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
511
|
-
}, "strip", z.ZodTypeAny, {
|
|
512
|
-
tab: string;
|
|
554
|
+
root?: string | undefined;
|
|
555
|
+
}>, "many">;
|
|
556
|
+
}, "strip", z.ZodTypeAny, {
|
|
557
|
+
groups: {
|
|
558
|
+
group: string;
|
|
559
|
+
pages: any[];
|
|
513
560
|
icon?: string | {
|
|
514
561
|
name: string;
|
|
515
562
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
516
563
|
} | undefined;
|
|
517
564
|
hidden?: boolean | undefined;
|
|
518
|
-
|
|
519
|
-
|
|
565
|
+
root?: string | undefined;
|
|
566
|
+
}[];
|
|
567
|
+
}, {
|
|
568
|
+
groups: {
|
|
569
|
+
group: string;
|
|
570
|
+
pages: any[];
|
|
520
571
|
icon?: string | {
|
|
521
572
|
name: string;
|
|
522
573
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
523
574
|
} | undefined;
|
|
524
575
|
hidden?: boolean | undefined;
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
}, {
|
|
530
|
-
href: string;
|
|
531
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
532
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
533
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
534
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
535
|
-
}, "strict", z.ZodTypeAny, {
|
|
536
|
-
source: string;
|
|
537
|
-
directory?: string | undefined;
|
|
538
|
-
}, {
|
|
539
|
-
source: string;
|
|
540
|
-
directory?: string | undefined;
|
|
541
|
-
}>]>>;
|
|
542
|
-
}, "strip", z.ZodTypeAny, {
|
|
543
|
-
openapi?: string | string[] | {
|
|
544
|
-
source: string;
|
|
545
|
-
directory?: string | undefined;
|
|
546
|
-
} | undefined;
|
|
547
|
-
}, {
|
|
548
|
-
openapi?: string | string[] | {
|
|
549
|
-
source: string;
|
|
550
|
-
directory?: string | undefined;
|
|
551
|
-
} | undefined;
|
|
552
|
-
}>>, "many">;
|
|
576
|
+
root?: string | undefined;
|
|
577
|
+
}[];
|
|
578
|
+
}>, z.ZodObject<{
|
|
579
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
553
580
|
}, "strip", z.ZodTypeAny, {
|
|
554
|
-
|
|
581
|
+
pages: any[];
|
|
555
582
|
}, {
|
|
556
|
-
|
|
557
|
-
}>, z.ZodObject<{
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
583
|
+
pages: any[];
|
|
584
|
+
}>]>, z.ZodObject<{
|
|
585
|
+
global: z.ZodOptional<z.ZodObject<{
|
|
586
|
+
languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
587
|
+
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
588
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
563
589
|
}, "strip", z.ZodTypeAny, {
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
}, {
|
|
567
|
-
name: string;
|
|
568
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
569
|
-
}>]>>;
|
|
570
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
571
|
-
}, "strip", z.ZodTypeAny, {
|
|
572
|
-
dropdown: string;
|
|
573
|
-
icon?: string | {
|
|
574
|
-
name: string;
|
|
575
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
576
|
-
} | undefined;
|
|
577
|
-
hidden?: boolean | undefined;
|
|
578
|
-
}, {
|
|
579
|
-
dropdown: string;
|
|
580
|
-
icon?: string | {
|
|
581
|
-
name: string;
|
|
582
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
583
|
-
} | undefined;
|
|
584
|
-
hidden?: boolean | undefined;
|
|
585
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
586
|
-
href: z.ZodString;
|
|
587
|
-
}, "strip", z.ZodTypeAny, {
|
|
588
|
-
href: string;
|
|
589
|
-
}, {
|
|
590
|
-
href: string;
|
|
591
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
592
|
-
dropdown: z.ZodString;
|
|
593
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
594
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
595
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
596
|
-
}, "strip", z.ZodTypeAny, {
|
|
597
|
-
name: string;
|
|
598
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
599
|
-
}, {
|
|
600
|
-
name: string;
|
|
601
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
602
|
-
}>]>>;
|
|
603
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
604
|
-
}, "strip", z.ZodTypeAny, {
|
|
605
|
-
dropdown: string;
|
|
606
|
-
icon?: string | {
|
|
607
|
-
name: string;
|
|
608
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
609
|
-
} | undefined;
|
|
610
|
-
hidden?: boolean | undefined;
|
|
611
|
-
}, {
|
|
612
|
-
dropdown: string;
|
|
613
|
-
icon?: string | {
|
|
614
|
-
name: string;
|
|
615
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
616
|
-
} | undefined;
|
|
617
|
-
hidden?: boolean | undefined;
|
|
618
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
619
|
-
href: z.ZodString;
|
|
620
|
-
}, "strip", z.ZodTypeAny, {
|
|
621
|
-
href: string;
|
|
622
|
-
}, {
|
|
623
|
-
href: string;
|
|
624
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
625
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
626
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
627
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
628
|
-
}, "strict", z.ZodTypeAny, {
|
|
629
|
-
source: string;
|
|
630
|
-
directory?: string | undefined;
|
|
590
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
591
|
+
hidden?: boolean | undefined;
|
|
631
592
|
}, {
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
}
|
|
635
|
-
|
|
636
|
-
openapi?: string | string[] | {
|
|
637
|
-
source: string;
|
|
638
|
-
directory?: string | undefined;
|
|
639
|
-
} | undefined;
|
|
640
|
-
}, {
|
|
641
|
-
openapi?: string | string[] | {
|
|
642
|
-
source: string;
|
|
643
|
-
directory?: string | undefined;
|
|
644
|
-
} | undefined;
|
|
645
|
-
}>>, "many">;
|
|
646
|
-
}, "strip", z.ZodTypeAny, {
|
|
647
|
-
dropdowns: any[];
|
|
648
|
-
}, {
|
|
649
|
-
dropdowns: any[];
|
|
650
|
-
}>, z.ZodObject<{
|
|
651
|
-
anchors: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
652
|
-
anchor: z.ZodString;
|
|
653
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
654
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
655
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
593
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
594
|
+
hidden?: boolean | undefined;
|
|
595
|
+
}>, z.ZodObject<{
|
|
596
|
+
href: z.ZodString;
|
|
656
597
|
}, "strip", z.ZodTypeAny, {
|
|
657
|
-
|
|
658
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
659
|
-
}, {
|
|
660
|
-
name: string;
|
|
661
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
662
|
-
}>]>>;
|
|
663
|
-
color: z.ZodOptional<z.ZodObject<{
|
|
664
|
-
light: z.ZodOptional<z.ZodString>;
|
|
665
|
-
dark: z.ZodOptional<z.ZodString>;
|
|
666
|
-
}, "strict", z.ZodTypeAny, {
|
|
667
|
-
light?: string | undefined;
|
|
668
|
-
dark?: string | undefined;
|
|
598
|
+
href: string;
|
|
669
599
|
}, {
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
anchor: string;
|
|
676
|
-
icon?: string | {
|
|
677
|
-
name: string;
|
|
678
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
679
|
-
} | undefined;
|
|
680
|
-
color?: {
|
|
681
|
-
light?: string | undefined;
|
|
682
|
-
dark?: string | undefined;
|
|
683
|
-
} | undefined;
|
|
684
|
-
hidden?: boolean | undefined;
|
|
685
|
-
}, {
|
|
686
|
-
anchor: string;
|
|
687
|
-
icon?: string | {
|
|
688
|
-
name: string;
|
|
689
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
690
|
-
} | undefined;
|
|
691
|
-
color?: {
|
|
692
|
-
light?: string | undefined;
|
|
693
|
-
dark?: string | undefined;
|
|
694
|
-
} | undefined;
|
|
695
|
-
hidden?: boolean | undefined;
|
|
696
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
697
|
-
href: z.ZodString;
|
|
698
|
-
}, "strip", z.ZodTypeAny, {
|
|
699
|
-
href: string;
|
|
700
|
-
}, {
|
|
701
|
-
href: string;
|
|
702
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
703
|
-
anchor: z.ZodString;
|
|
704
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
705
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
706
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
600
|
+
href: string;
|
|
601
|
+
}>>, "many">>;
|
|
602
|
+
versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
603
|
+
version: z.ZodString;
|
|
604
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
707
605
|
}, "strip", z.ZodTypeAny, {
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
}, {
|
|
711
|
-
name: string;
|
|
712
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
713
|
-
}>]>>;
|
|
714
|
-
color: z.ZodOptional<z.ZodObject<{
|
|
715
|
-
light: z.ZodOptional<z.ZodString>;
|
|
716
|
-
dark: z.ZodOptional<z.ZodString>;
|
|
717
|
-
}, "strict", z.ZodTypeAny, {
|
|
718
|
-
light?: string | undefined;
|
|
719
|
-
dark?: string | undefined;
|
|
720
|
-
}, {
|
|
721
|
-
light?: string | undefined;
|
|
722
|
-
dark?: string | undefined;
|
|
723
|
-
}>>;
|
|
724
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
725
|
-
}, "strip", z.ZodTypeAny, {
|
|
726
|
-
anchor: string;
|
|
727
|
-
icon?: string | {
|
|
728
|
-
name: string;
|
|
729
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
730
|
-
} | undefined;
|
|
731
|
-
color?: {
|
|
732
|
-
light?: string | undefined;
|
|
733
|
-
dark?: string | undefined;
|
|
734
|
-
} | undefined;
|
|
735
|
-
hidden?: boolean | undefined;
|
|
736
|
-
}, {
|
|
737
|
-
anchor: string;
|
|
738
|
-
icon?: string | {
|
|
739
|
-
name: string;
|
|
740
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
741
|
-
} | undefined;
|
|
742
|
-
color?: {
|
|
743
|
-
light?: string | undefined;
|
|
744
|
-
dark?: string | undefined;
|
|
745
|
-
} | undefined;
|
|
746
|
-
hidden?: boolean | undefined;
|
|
747
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
748
|
-
href: z.ZodString;
|
|
749
|
-
}, "strip", z.ZodTypeAny, {
|
|
750
|
-
href: string;
|
|
751
|
-
}, {
|
|
752
|
-
href: string;
|
|
753
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
754
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
755
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
756
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
757
|
-
}, "strict", z.ZodTypeAny, {
|
|
758
|
-
source: string;
|
|
759
|
-
directory?: string | undefined;
|
|
606
|
+
version: string;
|
|
607
|
+
hidden?: boolean | undefined;
|
|
760
608
|
}, {
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
}
|
|
764
|
-
|
|
765
|
-
openapi?: string | string[] | {
|
|
766
|
-
source: string;
|
|
767
|
-
directory?: string | undefined;
|
|
768
|
-
} | undefined;
|
|
769
|
-
}, {
|
|
770
|
-
openapi?: string | string[] | {
|
|
771
|
-
source: string;
|
|
772
|
-
directory?: string | undefined;
|
|
773
|
-
} | undefined;
|
|
774
|
-
}>>, "many">;
|
|
775
|
-
}, "strip", z.ZodTypeAny, {
|
|
776
|
-
anchors: any[];
|
|
777
|
-
}, {
|
|
778
|
-
anchors: any[];
|
|
779
|
-
}>, z.ZodObject<{
|
|
780
|
-
groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
781
|
-
group: z.ZodString;
|
|
782
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
783
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
784
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
609
|
+
version: string;
|
|
610
|
+
hidden?: boolean | undefined;
|
|
611
|
+
}>, z.ZodObject<{
|
|
612
|
+
href: z.ZodString;
|
|
785
613
|
}, "strip", z.ZodTypeAny, {
|
|
786
|
-
|
|
787
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
614
|
+
href: string;
|
|
788
615
|
}, {
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>> | z.ZodOptional<z.ZodObject<{
|
|
794
|
-
href: z.ZodString;
|
|
795
|
-
title: z.ZodString;
|
|
796
|
-
sidebarTitle: z.ZodOptional<z.ZodString>;
|
|
797
|
-
description: z.ZodOptional<z.ZodString>;
|
|
798
|
-
api: z.ZodOptional<z.ZodString>;
|
|
799
|
-
openapi: z.ZodOptional<z.ZodString>;
|
|
800
|
-
contentType: z.ZodOptional<z.ZodString>;
|
|
801
|
-
authMethod: z.ZodOptional<z.ZodString>;
|
|
802
|
-
auth: z.ZodOptional<z.ZodString>;
|
|
803
|
-
version: z.ZodOptional<z.ZodString>;
|
|
804
|
-
mode: z.ZodOptional<z.ZodString>;
|
|
805
|
-
hideFooterPagination: z.ZodOptional<z.ZodBoolean>;
|
|
806
|
-
authors: z.ZodOptional<z.ZodUnknown>;
|
|
807
|
-
lastUpdatedDate: z.ZodOptional<z.ZodString>;
|
|
808
|
-
createdDate: z.ZodOptional<z.ZodString>;
|
|
809
|
-
'openapi-schema': z.ZodOptional<z.ZodString>;
|
|
616
|
+
href: string;
|
|
617
|
+
}>>, "many">>;
|
|
618
|
+
tabs: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
619
|
+
tab: z.ZodString;
|
|
810
620
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
811
621
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
812
622
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -817,371 +627,59 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
817
627
|
name: string;
|
|
818
628
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
819
629
|
}>]>>;
|
|
820
|
-
|
|
821
|
-
url: z.ZodOptional<z.ZodString>;
|
|
822
|
-
hideApiMarker: z.ZodOptional<z.ZodBoolean>;
|
|
823
|
-
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
824
|
-
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
825
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
630
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
826
631
|
}, "strip", z.ZodTypeAny, {
|
|
827
|
-
|
|
828
|
-
title: string;
|
|
829
|
-
sidebarTitle?: string | undefined;
|
|
830
|
-
description?: string | undefined;
|
|
831
|
-
api?: string | undefined;
|
|
832
|
-
openapi?: string | undefined;
|
|
833
|
-
contentType?: string | undefined;
|
|
834
|
-
authMethod?: string | undefined;
|
|
835
|
-
auth?: string | undefined;
|
|
836
|
-
version?: string | undefined;
|
|
837
|
-
mode?: string | undefined;
|
|
838
|
-
hideFooterPagination?: boolean | undefined;
|
|
839
|
-
authors?: unknown;
|
|
840
|
-
lastUpdatedDate?: string | undefined;
|
|
841
|
-
createdDate?: string | undefined;
|
|
842
|
-
'openapi-schema'?: string | undefined;
|
|
632
|
+
tab: string;
|
|
843
633
|
icon?: string | {
|
|
844
634
|
name: string;
|
|
845
635
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
846
636
|
} | undefined;
|
|
847
|
-
|
|
848
|
-
url?: string | undefined;
|
|
849
|
-
hideApiMarker?: boolean | undefined;
|
|
850
|
-
noindex?: boolean | undefined;
|
|
851
|
-
isPublic?: boolean | undefined;
|
|
852
|
-
public?: boolean | undefined;
|
|
637
|
+
hidden?: boolean | undefined;
|
|
853
638
|
}, {
|
|
854
|
-
|
|
855
|
-
title: string;
|
|
856
|
-
sidebarTitle?: string | undefined;
|
|
857
|
-
description?: string | undefined;
|
|
858
|
-
api?: string | undefined;
|
|
859
|
-
openapi?: string | undefined;
|
|
860
|
-
contentType?: string | undefined;
|
|
861
|
-
authMethod?: string | undefined;
|
|
862
|
-
auth?: string | undefined;
|
|
863
|
-
version?: string | undefined;
|
|
864
|
-
mode?: string | undefined;
|
|
865
|
-
hideFooterPagination?: boolean | undefined;
|
|
866
|
-
authors?: unknown;
|
|
867
|
-
lastUpdatedDate?: string | undefined;
|
|
868
|
-
createdDate?: string | undefined;
|
|
869
|
-
'openapi-schema'?: string | undefined;
|
|
639
|
+
tab: string;
|
|
870
640
|
icon?: string | {
|
|
871
641
|
name: string;
|
|
872
642
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
873
643
|
} | undefined;
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
}>>;
|
|
881
|
-
}, "strip", z.ZodTypeAny, {
|
|
882
|
-
group: string;
|
|
883
|
-
icon?: string | {
|
|
884
|
-
name: string;
|
|
885
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
886
|
-
} | undefined;
|
|
887
|
-
hidden?: boolean | undefined;
|
|
888
|
-
root?: string | {
|
|
644
|
+
hidden?: boolean | undefined;
|
|
645
|
+
}>, z.ZodObject<{
|
|
646
|
+
href: z.ZodString;
|
|
647
|
+
}, "strip", z.ZodTypeAny, {
|
|
648
|
+
href: string;
|
|
649
|
+
}, {
|
|
889
650
|
href: string;
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
651
|
+
}>>, "many">>;
|
|
652
|
+
dropdowns: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
653
|
+
dropdown: z.ZodString;
|
|
654
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
655
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
656
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
657
|
+
}, "strip", z.ZodTypeAny, {
|
|
658
|
+
name: string;
|
|
659
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
660
|
+
}, {
|
|
661
|
+
name: string;
|
|
662
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
663
|
+
}>]>>;
|
|
664
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
665
|
+
}, "strip", z.ZodTypeAny, {
|
|
666
|
+
dropdown: string;
|
|
905
667
|
icon?: string | {
|
|
906
668
|
name: string;
|
|
907
669
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
908
670
|
} | undefined;
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
noindex?: boolean | undefined;
|
|
913
|
-
isPublic?: boolean | undefined;
|
|
914
|
-
public?: boolean | undefined;
|
|
915
|
-
} | undefined;
|
|
916
|
-
}, {
|
|
917
|
-
group: string;
|
|
918
|
-
icon?: string | {
|
|
919
|
-
name: string;
|
|
920
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
921
|
-
} | undefined;
|
|
922
|
-
hidden?: boolean | undefined;
|
|
923
|
-
root?: string | {
|
|
924
|
-
href: string;
|
|
925
|
-
title: string;
|
|
926
|
-
sidebarTitle?: string | undefined;
|
|
927
|
-
description?: string | undefined;
|
|
928
|
-
api?: string | undefined;
|
|
929
|
-
openapi?: string | undefined;
|
|
930
|
-
contentType?: string | undefined;
|
|
931
|
-
authMethod?: string | undefined;
|
|
932
|
-
auth?: string | undefined;
|
|
933
|
-
version?: string | undefined;
|
|
934
|
-
mode?: string | undefined;
|
|
935
|
-
hideFooterPagination?: boolean | undefined;
|
|
936
|
-
authors?: unknown;
|
|
937
|
-
lastUpdatedDate?: string | undefined;
|
|
938
|
-
createdDate?: string | undefined;
|
|
939
|
-
'openapi-schema'?: string | undefined;
|
|
671
|
+
hidden?: boolean | undefined;
|
|
672
|
+
}, {
|
|
673
|
+
dropdown: string;
|
|
940
674
|
icon?: string | {
|
|
941
675
|
name: string;
|
|
942
676
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
943
677
|
} | undefined;
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
public?: boolean | undefined;
|
|
950
|
-
} | undefined;
|
|
951
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
952
|
-
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
953
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
954
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
955
|
-
}, "strict", z.ZodTypeAny, {
|
|
956
|
-
source: string;
|
|
957
|
-
directory?: string | undefined;
|
|
958
|
-
}, {
|
|
959
|
-
source: string;
|
|
960
|
-
directory?: string | undefined;
|
|
961
|
-
}>]>;
|
|
962
|
-
}, "strip", z.ZodTypeAny, {
|
|
963
|
-
openapi: (string | string[] | {
|
|
964
|
-
source: string;
|
|
965
|
-
directory?: string | undefined;
|
|
966
|
-
}) & (string | string[] | {
|
|
967
|
-
source: string;
|
|
968
|
-
directory?: string | undefined;
|
|
969
|
-
} | undefined);
|
|
970
|
-
}, {
|
|
971
|
-
openapi: (string | string[] | {
|
|
972
|
-
source: string;
|
|
973
|
-
directory?: string | undefined;
|
|
974
|
-
}) & (string | string[] | {
|
|
975
|
-
source: string;
|
|
976
|
-
directory?: string | undefined;
|
|
977
|
-
} | undefined);
|
|
978
|
-
}>, z.ZodLazy<z.ZodObject<{
|
|
979
|
-
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
980
|
-
}, "strip", z.ZodTypeAny, {
|
|
981
|
-
pages: any[];
|
|
982
|
-
}, {
|
|
983
|
-
pages: any[];
|
|
984
|
-
}>>]>>, "many">;
|
|
985
|
-
}, "strip", z.ZodTypeAny, {
|
|
986
|
-
groups: ({
|
|
987
|
-
group: string;
|
|
988
|
-
icon?: string | {
|
|
989
|
-
name: string;
|
|
990
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
991
|
-
} | undefined;
|
|
992
|
-
hidden?: boolean | undefined;
|
|
993
|
-
root?: string | {
|
|
994
|
-
href: string;
|
|
995
|
-
title: string;
|
|
996
|
-
sidebarTitle?: string | undefined;
|
|
997
|
-
description?: string | undefined;
|
|
998
|
-
api?: string | undefined;
|
|
999
|
-
openapi?: string | undefined;
|
|
1000
|
-
contentType?: string | undefined;
|
|
1001
|
-
authMethod?: string | undefined;
|
|
1002
|
-
auth?: string | undefined;
|
|
1003
|
-
version?: string | undefined;
|
|
1004
|
-
mode?: string | undefined;
|
|
1005
|
-
hideFooterPagination?: boolean | undefined;
|
|
1006
|
-
authors?: unknown;
|
|
1007
|
-
lastUpdatedDate?: string | undefined;
|
|
1008
|
-
createdDate?: string | undefined;
|
|
1009
|
-
'openapi-schema'?: string | undefined;
|
|
1010
|
-
icon?: string | {
|
|
1011
|
-
name: string;
|
|
1012
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1013
|
-
} | undefined;
|
|
1014
|
-
tag?: string | undefined;
|
|
1015
|
-
url?: string | undefined;
|
|
1016
|
-
hideApiMarker?: boolean | undefined;
|
|
1017
|
-
noindex?: boolean | undefined;
|
|
1018
|
-
isPublic?: boolean | undefined;
|
|
1019
|
-
public?: boolean | undefined;
|
|
1020
|
-
} | undefined;
|
|
1021
|
-
} & ({
|
|
1022
|
-
openapi: (string | string[] | {
|
|
1023
|
-
source: string;
|
|
1024
|
-
directory?: string | undefined;
|
|
1025
|
-
}) & (string | string[] | {
|
|
1026
|
-
source: string;
|
|
1027
|
-
directory?: string | undefined;
|
|
1028
|
-
} | undefined);
|
|
1029
|
-
} | {
|
|
1030
|
-
pages: any[];
|
|
1031
|
-
}))[];
|
|
1032
|
-
}, {
|
|
1033
|
-
groups: ({
|
|
1034
|
-
group: string;
|
|
1035
|
-
icon?: string | {
|
|
1036
|
-
name: string;
|
|
1037
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1038
|
-
} | undefined;
|
|
1039
|
-
hidden?: boolean | undefined;
|
|
1040
|
-
root?: string | {
|
|
1041
|
-
href: string;
|
|
1042
|
-
title: string;
|
|
1043
|
-
sidebarTitle?: string | undefined;
|
|
1044
|
-
description?: string | undefined;
|
|
1045
|
-
api?: string | undefined;
|
|
1046
|
-
openapi?: string | undefined;
|
|
1047
|
-
contentType?: string | undefined;
|
|
1048
|
-
authMethod?: string | undefined;
|
|
1049
|
-
auth?: string | undefined;
|
|
1050
|
-
version?: string | undefined;
|
|
1051
|
-
mode?: string | undefined;
|
|
1052
|
-
hideFooterPagination?: boolean | undefined;
|
|
1053
|
-
authors?: unknown;
|
|
1054
|
-
lastUpdatedDate?: string | undefined;
|
|
1055
|
-
createdDate?: string | undefined;
|
|
1056
|
-
'openapi-schema'?: string | undefined;
|
|
1057
|
-
icon?: string | {
|
|
1058
|
-
name: string;
|
|
1059
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1060
|
-
} | undefined;
|
|
1061
|
-
tag?: string | undefined;
|
|
1062
|
-
url?: string | undefined;
|
|
1063
|
-
hideApiMarker?: boolean | undefined;
|
|
1064
|
-
noindex?: boolean | undefined;
|
|
1065
|
-
isPublic?: boolean | undefined;
|
|
1066
|
-
public?: boolean | undefined;
|
|
1067
|
-
} | undefined;
|
|
1068
|
-
} & ({
|
|
1069
|
-
openapi: (string | string[] | {
|
|
1070
|
-
source: string;
|
|
1071
|
-
directory?: string | undefined;
|
|
1072
|
-
}) & (string | string[] | {
|
|
1073
|
-
source: string;
|
|
1074
|
-
directory?: string | undefined;
|
|
1075
|
-
} | undefined);
|
|
1076
|
-
} | {
|
|
1077
|
-
pages: any[];
|
|
1078
|
-
}))[];
|
|
1079
|
-
}>, z.ZodObject<{
|
|
1080
|
-
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
1081
|
-
}, "strip", z.ZodTypeAny, {
|
|
1082
|
-
pages: any[];
|
|
1083
|
-
}, {
|
|
1084
|
-
pages: any[];
|
|
1085
|
-
}>]>>;
|
|
1086
|
-
export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
1087
|
-
global: z.ZodOptional<z.ZodObject<{
|
|
1088
|
-
languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
1089
|
-
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
1090
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1091
|
-
}, "strip", z.ZodTypeAny, {
|
|
1092
|
-
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1093
|
-
hidden?: boolean | undefined;
|
|
1094
|
-
}, {
|
|
1095
|
-
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1096
|
-
hidden?: boolean | undefined;
|
|
1097
|
-
}>, z.ZodObject<{
|
|
1098
|
-
href: z.ZodString;
|
|
1099
|
-
}, "strip", z.ZodTypeAny, {
|
|
1100
|
-
href: string;
|
|
1101
|
-
}, {
|
|
1102
|
-
href: string;
|
|
1103
|
-
}>>, "many">>;
|
|
1104
|
-
versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
1105
|
-
version: z.ZodString;
|
|
1106
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1107
|
-
}, "strip", z.ZodTypeAny, {
|
|
1108
|
-
version: string;
|
|
1109
|
-
hidden?: boolean | undefined;
|
|
1110
|
-
}, {
|
|
1111
|
-
version: string;
|
|
1112
|
-
hidden?: boolean | undefined;
|
|
1113
|
-
}>, z.ZodObject<{
|
|
1114
|
-
href: z.ZodString;
|
|
1115
|
-
}, "strip", z.ZodTypeAny, {
|
|
1116
|
-
href: string;
|
|
1117
|
-
}, {
|
|
1118
|
-
href: string;
|
|
1119
|
-
}>>, "many">>;
|
|
1120
|
-
tabs: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
1121
|
-
tab: z.ZodString;
|
|
1122
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1123
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1124
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1125
|
-
}, "strip", z.ZodTypeAny, {
|
|
1126
|
-
name: string;
|
|
1127
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1128
|
-
}, {
|
|
1129
|
-
name: string;
|
|
1130
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1131
|
-
}>]>>;
|
|
1132
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1133
|
-
}, "strip", z.ZodTypeAny, {
|
|
1134
|
-
tab: string;
|
|
1135
|
-
icon?: string | {
|
|
1136
|
-
name: string;
|
|
1137
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1138
|
-
} | undefined;
|
|
1139
|
-
hidden?: boolean | undefined;
|
|
1140
|
-
}, {
|
|
1141
|
-
tab: string;
|
|
1142
|
-
icon?: string | {
|
|
1143
|
-
name: string;
|
|
1144
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1145
|
-
} | undefined;
|
|
1146
|
-
hidden?: boolean | undefined;
|
|
1147
|
-
}>, z.ZodObject<{
|
|
1148
|
-
href: z.ZodString;
|
|
1149
|
-
}, "strip", z.ZodTypeAny, {
|
|
1150
|
-
href: string;
|
|
1151
|
-
}, {
|
|
1152
|
-
href: string;
|
|
1153
|
-
}>>, "many">>;
|
|
1154
|
-
dropdowns: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
1155
|
-
dropdown: z.ZodString;
|
|
1156
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1157
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1158
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1159
|
-
}, "strip", z.ZodTypeAny, {
|
|
1160
|
-
name: string;
|
|
1161
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1162
|
-
}, {
|
|
1163
|
-
name: string;
|
|
1164
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1165
|
-
}>]>>;
|
|
1166
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1167
|
-
}, "strip", z.ZodTypeAny, {
|
|
1168
|
-
dropdown: string;
|
|
1169
|
-
icon?: string | {
|
|
1170
|
-
name: string;
|
|
1171
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1172
|
-
} | undefined;
|
|
1173
|
-
hidden?: boolean | undefined;
|
|
1174
|
-
}, {
|
|
1175
|
-
dropdown: string;
|
|
1176
|
-
icon?: string | {
|
|
1177
|
-
name: string;
|
|
1178
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1179
|
-
} | undefined;
|
|
1180
|
-
hidden?: boolean | undefined;
|
|
1181
|
-
}>, z.ZodObject<{
|
|
1182
|
-
href: z.ZodString;
|
|
1183
|
-
}, "strip", z.ZodTypeAny, {
|
|
1184
|
-
href: string;
|
|
678
|
+
hidden?: boolean | undefined;
|
|
679
|
+
}>, z.ZodObject<{
|
|
680
|
+
href: z.ZodString;
|
|
681
|
+
}, "strip", z.ZodTypeAny, {
|
|
682
|
+
href: string;
|
|
1185
683
|
}, {
|
|
1186
684
|
href: string;
|
|
1187
685
|
}>>, "many">>;
|
|
@@ -1430,741 +928,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1430
928
|
href: string;
|
|
1431
929
|
})[] | undefined;
|
|
1432
930
|
} | undefined;
|
|
1433
|
-
}
|
|
1434
|
-
languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
1435
|
-
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
1436
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1437
|
-
}, "strip", z.ZodTypeAny, {
|
|
1438
|
-
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1439
|
-
hidden?: boolean | undefined;
|
|
1440
|
-
}, {
|
|
1441
|
-
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1442
|
-
hidden?: boolean | undefined;
|
|
1443
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
1444
|
-
href: z.ZodString;
|
|
1445
|
-
}, "strip", z.ZodTypeAny, {
|
|
1446
|
-
href: string;
|
|
1447
|
-
}, {
|
|
1448
|
-
href: string;
|
|
1449
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1450
|
-
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
1451
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1452
|
-
}, "strip", z.ZodTypeAny, {
|
|
1453
|
-
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1454
|
-
hidden?: boolean | undefined;
|
|
1455
|
-
}, {
|
|
1456
|
-
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1457
|
-
hidden?: boolean | undefined;
|
|
1458
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
1459
|
-
href: z.ZodString;
|
|
1460
|
-
}, "strip", z.ZodTypeAny, {
|
|
1461
|
-
href: string;
|
|
1462
|
-
}, {
|
|
1463
|
-
href: string;
|
|
1464
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
1465
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
1466
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
1467
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
1468
|
-
}, "strict", z.ZodTypeAny, {
|
|
1469
|
-
source: string;
|
|
1470
|
-
directory?: string | undefined;
|
|
1471
|
-
}, {
|
|
1472
|
-
source: string;
|
|
1473
|
-
directory?: string | undefined;
|
|
1474
|
-
}>]>>;
|
|
1475
|
-
}, "strip", z.ZodTypeAny, {
|
|
1476
|
-
openapi?: string | string[] | {
|
|
1477
|
-
source: string;
|
|
1478
|
-
directory?: string | undefined;
|
|
1479
|
-
} | undefined;
|
|
1480
|
-
}, {
|
|
1481
|
-
openapi?: string | string[] | {
|
|
1482
|
-
source: string;
|
|
1483
|
-
directory?: string | undefined;
|
|
1484
|
-
} | undefined;
|
|
1485
|
-
}>>, "many">;
|
|
1486
|
-
}, "strip", z.ZodTypeAny, {
|
|
1487
|
-
languages: any[];
|
|
1488
|
-
}, {
|
|
1489
|
-
languages: any[];
|
|
1490
|
-
}>, z.ZodObject<{
|
|
1491
|
-
versions: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
1492
|
-
version: z.ZodString;
|
|
1493
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1494
|
-
}, "strip", z.ZodTypeAny, {
|
|
1495
|
-
version: string;
|
|
1496
|
-
hidden?: boolean | undefined;
|
|
1497
|
-
}, {
|
|
1498
|
-
version: string;
|
|
1499
|
-
hidden?: boolean | undefined;
|
|
1500
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
1501
|
-
href: z.ZodString;
|
|
1502
|
-
}, "strip", z.ZodTypeAny, {
|
|
1503
|
-
href: string;
|
|
1504
|
-
}, {
|
|
1505
|
-
href: string;
|
|
1506
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1507
|
-
version: z.ZodString;
|
|
1508
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1509
|
-
}, "strip", z.ZodTypeAny, {
|
|
1510
|
-
version: string;
|
|
1511
|
-
hidden?: boolean | undefined;
|
|
1512
|
-
}, {
|
|
1513
|
-
version: string;
|
|
1514
|
-
hidden?: boolean | undefined;
|
|
1515
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
1516
|
-
href: z.ZodString;
|
|
1517
|
-
}, "strip", z.ZodTypeAny, {
|
|
1518
|
-
href: string;
|
|
1519
|
-
}, {
|
|
1520
|
-
href: string;
|
|
1521
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
1522
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
1523
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
1524
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
1525
|
-
}, "strict", z.ZodTypeAny, {
|
|
1526
|
-
source: string;
|
|
1527
|
-
directory?: string | undefined;
|
|
1528
|
-
}, {
|
|
1529
|
-
source: string;
|
|
1530
|
-
directory?: string | undefined;
|
|
1531
|
-
}>]>>;
|
|
1532
|
-
}, "strip", z.ZodTypeAny, {
|
|
1533
|
-
openapi?: string | string[] | {
|
|
1534
|
-
source: string;
|
|
1535
|
-
directory?: string | undefined;
|
|
1536
|
-
} | undefined;
|
|
1537
|
-
}, {
|
|
1538
|
-
openapi?: string | string[] | {
|
|
1539
|
-
source: string;
|
|
1540
|
-
directory?: string | undefined;
|
|
1541
|
-
} | undefined;
|
|
1542
|
-
}>>, "many">;
|
|
1543
|
-
}, "strip", z.ZodTypeAny, {
|
|
1544
|
-
versions: any[];
|
|
1545
|
-
}, {
|
|
1546
|
-
versions: any[];
|
|
1547
|
-
}>, z.ZodObject<{
|
|
1548
|
-
tabs: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
1549
|
-
tab: z.ZodString;
|
|
1550
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1551
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1552
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1553
|
-
}, "strip", z.ZodTypeAny, {
|
|
1554
|
-
name: string;
|
|
1555
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1556
|
-
}, {
|
|
1557
|
-
name: string;
|
|
1558
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1559
|
-
}>]>>;
|
|
1560
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1561
|
-
}, "strip", z.ZodTypeAny, {
|
|
1562
|
-
tab: string;
|
|
1563
|
-
icon?: string | {
|
|
1564
|
-
name: string;
|
|
1565
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1566
|
-
} | undefined;
|
|
1567
|
-
hidden?: boolean | undefined;
|
|
1568
|
-
}, {
|
|
1569
|
-
tab: string;
|
|
1570
|
-
icon?: string | {
|
|
1571
|
-
name: string;
|
|
1572
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1573
|
-
} | undefined;
|
|
1574
|
-
hidden?: boolean | undefined;
|
|
1575
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
1576
|
-
href: z.ZodString;
|
|
1577
|
-
}, "strip", z.ZodTypeAny, {
|
|
1578
|
-
href: string;
|
|
1579
|
-
}, {
|
|
1580
|
-
href: string;
|
|
1581
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1582
|
-
tab: z.ZodString;
|
|
1583
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1584
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1585
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1586
|
-
}, "strip", z.ZodTypeAny, {
|
|
1587
|
-
name: string;
|
|
1588
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1589
|
-
}, {
|
|
1590
|
-
name: string;
|
|
1591
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1592
|
-
}>]>>;
|
|
1593
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1594
|
-
}, "strip", z.ZodTypeAny, {
|
|
1595
|
-
tab: string;
|
|
1596
|
-
icon?: string | {
|
|
1597
|
-
name: string;
|
|
1598
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1599
|
-
} | undefined;
|
|
1600
|
-
hidden?: boolean | undefined;
|
|
1601
|
-
}, {
|
|
1602
|
-
tab: string;
|
|
1603
|
-
icon?: string | {
|
|
1604
|
-
name: string;
|
|
1605
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1606
|
-
} | undefined;
|
|
1607
|
-
hidden?: boolean | undefined;
|
|
1608
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
1609
|
-
href: z.ZodString;
|
|
1610
|
-
}, "strip", z.ZodTypeAny, {
|
|
1611
|
-
href: string;
|
|
1612
|
-
}, {
|
|
1613
|
-
href: string;
|
|
1614
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
1615
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
1616
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
1617
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
1618
|
-
}, "strict", z.ZodTypeAny, {
|
|
1619
|
-
source: string;
|
|
1620
|
-
directory?: string | undefined;
|
|
1621
|
-
}, {
|
|
1622
|
-
source: string;
|
|
1623
|
-
directory?: string | undefined;
|
|
1624
|
-
}>]>>;
|
|
1625
|
-
}, "strip", z.ZodTypeAny, {
|
|
1626
|
-
openapi?: string | string[] | {
|
|
1627
|
-
source: string;
|
|
1628
|
-
directory?: string | undefined;
|
|
1629
|
-
} | undefined;
|
|
1630
|
-
}, {
|
|
1631
|
-
openapi?: string | string[] | {
|
|
1632
|
-
source: string;
|
|
1633
|
-
directory?: string | undefined;
|
|
1634
|
-
} | undefined;
|
|
1635
|
-
}>>, "many">;
|
|
1636
|
-
}, "strip", z.ZodTypeAny, {
|
|
1637
|
-
tabs: any[];
|
|
1638
|
-
}, {
|
|
1639
|
-
tabs: any[];
|
|
1640
|
-
}>, z.ZodObject<{
|
|
1641
|
-
dropdowns: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
1642
|
-
dropdown: z.ZodString;
|
|
1643
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1644
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1645
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1646
|
-
}, "strip", z.ZodTypeAny, {
|
|
1647
|
-
name: string;
|
|
1648
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1649
|
-
}, {
|
|
1650
|
-
name: string;
|
|
1651
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1652
|
-
}>]>>;
|
|
1653
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1654
|
-
}, "strip", z.ZodTypeAny, {
|
|
1655
|
-
dropdown: string;
|
|
1656
|
-
icon?: string | {
|
|
1657
|
-
name: string;
|
|
1658
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1659
|
-
} | undefined;
|
|
1660
|
-
hidden?: boolean | undefined;
|
|
1661
|
-
}, {
|
|
1662
|
-
dropdown: string;
|
|
1663
|
-
icon?: string | {
|
|
1664
|
-
name: string;
|
|
1665
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1666
|
-
} | undefined;
|
|
1667
|
-
hidden?: boolean | undefined;
|
|
1668
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
1669
|
-
href: z.ZodString;
|
|
1670
|
-
}, "strip", z.ZodTypeAny, {
|
|
1671
|
-
href: string;
|
|
1672
|
-
}, {
|
|
1673
|
-
href: string;
|
|
1674
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1675
|
-
dropdown: z.ZodString;
|
|
1676
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1677
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1678
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1679
|
-
}, "strip", z.ZodTypeAny, {
|
|
1680
|
-
name: string;
|
|
1681
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1682
|
-
}, {
|
|
1683
|
-
name: string;
|
|
1684
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1685
|
-
}>]>>;
|
|
1686
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1687
|
-
}, "strip", z.ZodTypeAny, {
|
|
1688
|
-
dropdown: string;
|
|
1689
|
-
icon?: string | {
|
|
1690
|
-
name: string;
|
|
1691
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1692
|
-
} | undefined;
|
|
1693
|
-
hidden?: boolean | undefined;
|
|
1694
|
-
}, {
|
|
1695
|
-
dropdown: string;
|
|
1696
|
-
icon?: string | {
|
|
1697
|
-
name: string;
|
|
1698
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1699
|
-
} | undefined;
|
|
1700
|
-
hidden?: boolean | undefined;
|
|
1701
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
1702
|
-
href: z.ZodString;
|
|
1703
|
-
}, "strip", z.ZodTypeAny, {
|
|
1704
|
-
href: string;
|
|
1705
|
-
}, {
|
|
1706
|
-
href: string;
|
|
1707
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
1708
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
1709
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
1710
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
1711
|
-
}, "strict", z.ZodTypeAny, {
|
|
1712
|
-
source: string;
|
|
1713
|
-
directory?: string | undefined;
|
|
1714
|
-
}, {
|
|
1715
|
-
source: string;
|
|
1716
|
-
directory?: string | undefined;
|
|
1717
|
-
}>]>>;
|
|
1718
|
-
}, "strip", z.ZodTypeAny, {
|
|
1719
|
-
openapi?: string | string[] | {
|
|
1720
|
-
source: string;
|
|
1721
|
-
directory?: string | undefined;
|
|
1722
|
-
} | undefined;
|
|
1723
|
-
}, {
|
|
1724
|
-
openapi?: string | string[] | {
|
|
1725
|
-
source: string;
|
|
1726
|
-
directory?: string | undefined;
|
|
1727
|
-
} | undefined;
|
|
1728
|
-
}>>, "many">;
|
|
1729
|
-
}, "strip", z.ZodTypeAny, {
|
|
1730
|
-
dropdowns: any[];
|
|
1731
|
-
}, {
|
|
1732
|
-
dropdowns: any[];
|
|
1733
|
-
}>, z.ZodObject<{
|
|
1734
|
-
anchors: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
1735
|
-
anchor: z.ZodString;
|
|
1736
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1737
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1738
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1739
|
-
}, "strip", z.ZodTypeAny, {
|
|
1740
|
-
name: string;
|
|
1741
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1742
|
-
}, {
|
|
1743
|
-
name: string;
|
|
1744
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1745
|
-
}>]>>;
|
|
1746
|
-
color: z.ZodOptional<z.ZodObject<{
|
|
1747
|
-
light: z.ZodOptional<z.ZodString>;
|
|
1748
|
-
dark: z.ZodOptional<z.ZodString>;
|
|
1749
|
-
}, "strict", z.ZodTypeAny, {
|
|
1750
|
-
light?: string | undefined;
|
|
1751
|
-
dark?: string | undefined;
|
|
1752
|
-
}, {
|
|
1753
|
-
light?: string | undefined;
|
|
1754
|
-
dark?: string | undefined;
|
|
1755
|
-
}>>;
|
|
1756
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1757
|
-
}, "strip", z.ZodTypeAny, {
|
|
1758
|
-
anchor: string;
|
|
1759
|
-
icon?: string | {
|
|
1760
|
-
name: string;
|
|
1761
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1762
|
-
} | undefined;
|
|
1763
|
-
color?: {
|
|
1764
|
-
light?: string | undefined;
|
|
1765
|
-
dark?: string | undefined;
|
|
1766
|
-
} | undefined;
|
|
1767
|
-
hidden?: boolean | undefined;
|
|
1768
|
-
}, {
|
|
1769
|
-
anchor: string;
|
|
1770
|
-
icon?: string | {
|
|
1771
|
-
name: string;
|
|
1772
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1773
|
-
} | undefined;
|
|
1774
|
-
color?: {
|
|
1775
|
-
light?: string | undefined;
|
|
1776
|
-
dark?: string | undefined;
|
|
1777
|
-
} | undefined;
|
|
1778
|
-
hidden?: boolean | undefined;
|
|
1779
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
1780
|
-
href: z.ZodString;
|
|
1781
|
-
}, "strip", z.ZodTypeAny, {
|
|
1782
|
-
href: string;
|
|
1783
|
-
}, {
|
|
1784
|
-
href: string;
|
|
1785
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1786
|
-
anchor: z.ZodString;
|
|
1787
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1788
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1789
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1790
|
-
}, "strip", z.ZodTypeAny, {
|
|
1791
|
-
name: string;
|
|
1792
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1793
|
-
}, {
|
|
1794
|
-
name: string;
|
|
1795
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1796
|
-
}>]>>;
|
|
1797
|
-
color: z.ZodOptional<z.ZodObject<{
|
|
1798
|
-
light: z.ZodOptional<z.ZodString>;
|
|
1799
|
-
dark: z.ZodOptional<z.ZodString>;
|
|
1800
|
-
}, "strict", z.ZodTypeAny, {
|
|
1801
|
-
light?: string | undefined;
|
|
1802
|
-
dark?: string | undefined;
|
|
1803
|
-
}, {
|
|
1804
|
-
light?: string | undefined;
|
|
1805
|
-
dark?: string | undefined;
|
|
1806
|
-
}>>;
|
|
1807
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1808
|
-
}, "strip", z.ZodTypeAny, {
|
|
1809
|
-
anchor: string;
|
|
1810
|
-
icon?: string | {
|
|
1811
|
-
name: string;
|
|
1812
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1813
|
-
} | undefined;
|
|
1814
|
-
color?: {
|
|
1815
|
-
light?: string | undefined;
|
|
1816
|
-
dark?: string | undefined;
|
|
1817
|
-
} | undefined;
|
|
1818
|
-
hidden?: boolean | undefined;
|
|
1819
|
-
}, {
|
|
1820
|
-
anchor: string;
|
|
1821
|
-
icon?: string | {
|
|
1822
|
-
name: string;
|
|
1823
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1824
|
-
} | undefined;
|
|
1825
|
-
color?: {
|
|
1826
|
-
light?: string | undefined;
|
|
1827
|
-
dark?: string | undefined;
|
|
1828
|
-
} | undefined;
|
|
1829
|
-
hidden?: boolean | undefined;
|
|
1830
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
1831
|
-
href: z.ZodString;
|
|
1832
|
-
}, "strip", z.ZodTypeAny, {
|
|
1833
|
-
href: string;
|
|
1834
|
-
}, {
|
|
1835
|
-
href: string;
|
|
1836
|
-
}>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
|
|
1837
|
-
openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
1838
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
1839
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
1840
|
-
}, "strict", z.ZodTypeAny, {
|
|
1841
|
-
source: string;
|
|
1842
|
-
directory?: string | undefined;
|
|
1843
|
-
}, {
|
|
1844
|
-
source: string;
|
|
1845
|
-
directory?: string | undefined;
|
|
1846
|
-
}>]>>;
|
|
1847
|
-
}, "strip", z.ZodTypeAny, {
|
|
1848
|
-
openapi?: string | string[] | {
|
|
1849
|
-
source: string;
|
|
1850
|
-
directory?: string | undefined;
|
|
1851
|
-
} | undefined;
|
|
1852
|
-
}, {
|
|
1853
|
-
openapi?: string | string[] | {
|
|
1854
|
-
source: string;
|
|
1855
|
-
directory?: string | undefined;
|
|
1856
|
-
} | undefined;
|
|
1857
|
-
}>>, "many">;
|
|
1858
|
-
}, "strip", z.ZodTypeAny, {
|
|
1859
|
-
anchors: any[];
|
|
1860
|
-
}, {
|
|
1861
|
-
anchors: any[];
|
|
1862
|
-
}>, z.ZodObject<{
|
|
1863
|
-
groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
1864
|
-
group: z.ZodString;
|
|
1865
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1866
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1867
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1868
|
-
}, "strip", z.ZodTypeAny, {
|
|
1869
|
-
name: string;
|
|
1870
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1871
|
-
}, {
|
|
1872
|
-
name: string;
|
|
1873
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1874
|
-
}>]>>;
|
|
1875
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1876
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>> | z.ZodOptional<z.ZodObject<{
|
|
1877
|
-
href: z.ZodString;
|
|
1878
|
-
title: z.ZodString;
|
|
1879
|
-
sidebarTitle: z.ZodOptional<z.ZodString>;
|
|
1880
|
-
description: z.ZodOptional<z.ZodString>;
|
|
1881
|
-
api: z.ZodOptional<z.ZodString>;
|
|
1882
|
-
openapi: z.ZodOptional<z.ZodString>;
|
|
1883
|
-
contentType: z.ZodOptional<z.ZodString>;
|
|
1884
|
-
authMethod: z.ZodOptional<z.ZodString>;
|
|
1885
|
-
auth: z.ZodOptional<z.ZodString>;
|
|
1886
|
-
version: z.ZodOptional<z.ZodString>;
|
|
1887
|
-
mode: z.ZodOptional<z.ZodString>;
|
|
1888
|
-
hideFooterPagination: z.ZodOptional<z.ZodBoolean>;
|
|
1889
|
-
authors: z.ZodOptional<z.ZodUnknown>;
|
|
1890
|
-
lastUpdatedDate: z.ZodOptional<z.ZodString>;
|
|
1891
|
-
createdDate: z.ZodOptional<z.ZodString>;
|
|
1892
|
-
'openapi-schema': z.ZodOptional<z.ZodString>;
|
|
1893
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1894
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1895
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1896
|
-
}, "strip", z.ZodTypeAny, {
|
|
1897
|
-
name: string;
|
|
1898
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1899
|
-
}, {
|
|
1900
|
-
name: string;
|
|
1901
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1902
|
-
}>]>>;
|
|
1903
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
1904
|
-
url: z.ZodOptional<z.ZodString>;
|
|
1905
|
-
hideApiMarker: z.ZodOptional<z.ZodBoolean>;
|
|
1906
|
-
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
1907
|
-
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
1908
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
1909
|
-
}, "strip", z.ZodTypeAny, {
|
|
1910
|
-
href: string;
|
|
1911
|
-
title: string;
|
|
1912
|
-
sidebarTitle?: string | undefined;
|
|
1913
|
-
description?: string | undefined;
|
|
1914
|
-
api?: string | undefined;
|
|
1915
|
-
openapi?: string | undefined;
|
|
1916
|
-
contentType?: string | undefined;
|
|
1917
|
-
authMethod?: string | undefined;
|
|
1918
|
-
auth?: string | undefined;
|
|
1919
|
-
version?: string | undefined;
|
|
1920
|
-
mode?: string | undefined;
|
|
1921
|
-
hideFooterPagination?: boolean | undefined;
|
|
1922
|
-
authors?: unknown;
|
|
1923
|
-
lastUpdatedDate?: string | undefined;
|
|
1924
|
-
createdDate?: string | undefined;
|
|
1925
|
-
'openapi-schema'?: string | undefined;
|
|
1926
|
-
icon?: string | {
|
|
1927
|
-
name: string;
|
|
1928
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1929
|
-
} | undefined;
|
|
1930
|
-
tag?: string | undefined;
|
|
1931
|
-
url?: string | undefined;
|
|
1932
|
-
hideApiMarker?: boolean | undefined;
|
|
1933
|
-
noindex?: boolean | undefined;
|
|
1934
|
-
isPublic?: boolean | undefined;
|
|
1935
|
-
public?: boolean | undefined;
|
|
1936
|
-
}, {
|
|
1937
|
-
href: string;
|
|
1938
|
-
title: string;
|
|
1939
|
-
sidebarTitle?: string | undefined;
|
|
1940
|
-
description?: string | undefined;
|
|
1941
|
-
api?: string | undefined;
|
|
1942
|
-
openapi?: string | undefined;
|
|
1943
|
-
contentType?: string | undefined;
|
|
1944
|
-
authMethod?: string | undefined;
|
|
1945
|
-
auth?: string | undefined;
|
|
1946
|
-
version?: string | undefined;
|
|
1947
|
-
mode?: string | undefined;
|
|
1948
|
-
hideFooterPagination?: boolean | undefined;
|
|
1949
|
-
authors?: unknown;
|
|
1950
|
-
lastUpdatedDate?: string | undefined;
|
|
1951
|
-
createdDate?: string | undefined;
|
|
1952
|
-
'openapi-schema'?: string | undefined;
|
|
1953
|
-
icon?: string | {
|
|
1954
|
-
name: string;
|
|
1955
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1956
|
-
} | undefined;
|
|
1957
|
-
tag?: string | undefined;
|
|
1958
|
-
url?: string | undefined;
|
|
1959
|
-
hideApiMarker?: boolean | undefined;
|
|
1960
|
-
noindex?: boolean | undefined;
|
|
1961
|
-
isPublic?: boolean | undefined;
|
|
1962
|
-
public?: boolean | undefined;
|
|
1963
|
-
}>>;
|
|
1964
|
-
}, "strip", z.ZodTypeAny, {
|
|
1965
|
-
group: string;
|
|
1966
|
-
icon?: string | {
|
|
1967
|
-
name: string;
|
|
1968
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1969
|
-
} | undefined;
|
|
1970
|
-
hidden?: boolean | undefined;
|
|
1971
|
-
root?: string | {
|
|
1972
|
-
href: string;
|
|
1973
|
-
title: string;
|
|
1974
|
-
sidebarTitle?: string | undefined;
|
|
1975
|
-
description?: string | undefined;
|
|
1976
|
-
api?: string | undefined;
|
|
1977
|
-
openapi?: string | undefined;
|
|
1978
|
-
contentType?: string | undefined;
|
|
1979
|
-
authMethod?: string | undefined;
|
|
1980
|
-
auth?: string | undefined;
|
|
1981
|
-
version?: string | undefined;
|
|
1982
|
-
mode?: string | undefined;
|
|
1983
|
-
hideFooterPagination?: boolean | undefined;
|
|
1984
|
-
authors?: unknown;
|
|
1985
|
-
lastUpdatedDate?: string | undefined;
|
|
1986
|
-
createdDate?: string | undefined;
|
|
1987
|
-
'openapi-schema'?: string | undefined;
|
|
1988
|
-
icon?: string | {
|
|
1989
|
-
name: string;
|
|
1990
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1991
|
-
} | undefined;
|
|
1992
|
-
tag?: string | undefined;
|
|
1993
|
-
url?: string | undefined;
|
|
1994
|
-
hideApiMarker?: boolean | undefined;
|
|
1995
|
-
noindex?: boolean | undefined;
|
|
1996
|
-
isPublic?: boolean | undefined;
|
|
1997
|
-
public?: boolean | undefined;
|
|
1998
|
-
} | undefined;
|
|
1999
|
-
}, {
|
|
2000
|
-
group: string;
|
|
2001
|
-
icon?: string | {
|
|
2002
|
-
name: string;
|
|
2003
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2004
|
-
} | undefined;
|
|
2005
|
-
hidden?: boolean | undefined;
|
|
2006
|
-
root?: string | {
|
|
2007
|
-
href: string;
|
|
2008
|
-
title: string;
|
|
2009
|
-
sidebarTitle?: string | undefined;
|
|
2010
|
-
description?: string | undefined;
|
|
2011
|
-
api?: string | undefined;
|
|
2012
|
-
openapi?: string | undefined;
|
|
2013
|
-
contentType?: string | undefined;
|
|
2014
|
-
authMethod?: string | undefined;
|
|
2015
|
-
auth?: string | undefined;
|
|
2016
|
-
version?: string | undefined;
|
|
2017
|
-
mode?: string | undefined;
|
|
2018
|
-
hideFooterPagination?: boolean | undefined;
|
|
2019
|
-
authors?: unknown;
|
|
2020
|
-
lastUpdatedDate?: string | undefined;
|
|
2021
|
-
createdDate?: string | undefined;
|
|
2022
|
-
'openapi-schema'?: string | undefined;
|
|
2023
|
-
icon?: string | {
|
|
2024
|
-
name: string;
|
|
2025
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2026
|
-
} | undefined;
|
|
2027
|
-
tag?: string | undefined;
|
|
2028
|
-
url?: string | undefined;
|
|
2029
|
-
hideApiMarker?: boolean | undefined;
|
|
2030
|
-
noindex?: boolean | undefined;
|
|
2031
|
-
isPublic?: boolean | undefined;
|
|
2032
|
-
public?: boolean | undefined;
|
|
2033
|
-
} | undefined;
|
|
2034
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
2035
|
-
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
2036
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
2037
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
2038
|
-
}, "strict", z.ZodTypeAny, {
|
|
2039
|
-
source: string;
|
|
2040
|
-
directory?: string | undefined;
|
|
2041
|
-
}, {
|
|
2042
|
-
source: string;
|
|
2043
|
-
directory?: string | undefined;
|
|
2044
|
-
}>]>;
|
|
2045
|
-
}, "strip", z.ZodTypeAny, {
|
|
2046
|
-
openapi: (string | string[] | {
|
|
2047
|
-
source: string;
|
|
2048
|
-
directory?: string | undefined;
|
|
2049
|
-
}) & (string | string[] | {
|
|
2050
|
-
source: string;
|
|
2051
|
-
directory?: string | undefined;
|
|
2052
|
-
} | undefined);
|
|
2053
|
-
}, {
|
|
2054
|
-
openapi: (string | string[] | {
|
|
2055
|
-
source: string;
|
|
2056
|
-
directory?: string | undefined;
|
|
2057
|
-
}) & (string | string[] | {
|
|
2058
|
-
source: string;
|
|
2059
|
-
directory?: string | undefined;
|
|
2060
|
-
} | undefined);
|
|
2061
|
-
}>, z.ZodLazy<z.ZodObject<{
|
|
2062
|
-
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
2063
|
-
}, "strip", z.ZodTypeAny, {
|
|
2064
|
-
pages: any[];
|
|
2065
|
-
}, {
|
|
2066
|
-
pages: any[];
|
|
2067
|
-
}>>]>>, "many">;
|
|
2068
|
-
}, "strip", z.ZodTypeAny, {
|
|
2069
|
-
groups: ({
|
|
2070
|
-
group: string;
|
|
2071
|
-
icon?: string | {
|
|
2072
|
-
name: string;
|
|
2073
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2074
|
-
} | undefined;
|
|
2075
|
-
hidden?: boolean | undefined;
|
|
2076
|
-
root?: string | {
|
|
2077
|
-
href: string;
|
|
2078
|
-
title: string;
|
|
2079
|
-
sidebarTitle?: string | undefined;
|
|
2080
|
-
description?: string | undefined;
|
|
2081
|
-
api?: string | undefined;
|
|
2082
|
-
openapi?: string | undefined;
|
|
2083
|
-
contentType?: string | undefined;
|
|
2084
|
-
authMethod?: string | undefined;
|
|
2085
|
-
auth?: string | undefined;
|
|
2086
|
-
version?: string | undefined;
|
|
2087
|
-
mode?: string | undefined;
|
|
2088
|
-
hideFooterPagination?: boolean | undefined;
|
|
2089
|
-
authors?: unknown;
|
|
2090
|
-
lastUpdatedDate?: string | undefined;
|
|
2091
|
-
createdDate?: string | undefined;
|
|
2092
|
-
'openapi-schema'?: string | undefined;
|
|
2093
|
-
icon?: string | {
|
|
2094
|
-
name: string;
|
|
2095
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2096
|
-
} | undefined;
|
|
2097
|
-
tag?: string | undefined;
|
|
2098
|
-
url?: string | undefined;
|
|
2099
|
-
hideApiMarker?: boolean | undefined;
|
|
2100
|
-
noindex?: boolean | undefined;
|
|
2101
|
-
isPublic?: boolean | undefined;
|
|
2102
|
-
public?: boolean | undefined;
|
|
2103
|
-
} | undefined;
|
|
2104
|
-
} & ({
|
|
2105
|
-
openapi: (string | string[] | {
|
|
2106
|
-
source: string;
|
|
2107
|
-
directory?: string | undefined;
|
|
2108
|
-
}) & (string | string[] | {
|
|
2109
|
-
source: string;
|
|
2110
|
-
directory?: string | undefined;
|
|
2111
|
-
} | undefined);
|
|
2112
|
-
} | {
|
|
2113
|
-
pages: any[];
|
|
2114
|
-
}))[];
|
|
2115
|
-
}, {
|
|
2116
|
-
groups: ({
|
|
2117
|
-
group: string;
|
|
2118
|
-
icon?: string | {
|
|
2119
|
-
name: string;
|
|
2120
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2121
|
-
} | undefined;
|
|
2122
|
-
hidden?: boolean | undefined;
|
|
2123
|
-
root?: string | {
|
|
2124
|
-
href: string;
|
|
2125
|
-
title: string;
|
|
2126
|
-
sidebarTitle?: string | undefined;
|
|
2127
|
-
description?: string | undefined;
|
|
2128
|
-
api?: string | undefined;
|
|
2129
|
-
openapi?: string | undefined;
|
|
2130
|
-
contentType?: string | undefined;
|
|
2131
|
-
authMethod?: string | undefined;
|
|
2132
|
-
auth?: string | undefined;
|
|
2133
|
-
version?: string | undefined;
|
|
2134
|
-
mode?: string | undefined;
|
|
2135
|
-
hideFooterPagination?: boolean | undefined;
|
|
2136
|
-
authors?: unknown;
|
|
2137
|
-
lastUpdatedDate?: string | undefined;
|
|
2138
|
-
createdDate?: string | undefined;
|
|
2139
|
-
'openapi-schema'?: string | undefined;
|
|
2140
|
-
icon?: string | {
|
|
2141
|
-
name: string;
|
|
2142
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2143
|
-
} | undefined;
|
|
2144
|
-
tag?: string | undefined;
|
|
2145
|
-
url?: string | undefined;
|
|
2146
|
-
hideApiMarker?: boolean | undefined;
|
|
2147
|
-
noindex?: boolean | undefined;
|
|
2148
|
-
isPublic?: boolean | undefined;
|
|
2149
|
-
public?: boolean | undefined;
|
|
2150
|
-
} | undefined;
|
|
2151
|
-
} & ({
|
|
2152
|
-
openapi: (string | string[] | {
|
|
2153
|
-
source: string;
|
|
2154
|
-
directory?: string | undefined;
|
|
2155
|
-
}) & (string | string[] | {
|
|
2156
|
-
source: string;
|
|
2157
|
-
directory?: string | undefined;
|
|
2158
|
-
} | undefined);
|
|
2159
|
-
} | {
|
|
2160
|
-
pages: any[];
|
|
2161
|
-
}))[];
|
|
2162
|
-
}>, z.ZodObject<{
|
|
2163
|
-
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
2164
|
-
}, "strip", z.ZodTypeAny, {
|
|
2165
|
-
pages: any[];
|
|
2166
|
-
}, {
|
|
2167
|
-
pages: any[];
|
|
2168
|
-
}>]>>;
|
|
931
|
+
}>>;
|
|
2169
932
|
export type NavigationConfig = z.infer<typeof navigationSchema>;
|
|
2170
933
|
export type DecoratedNavigationConfig = z.infer<typeof decoratedNavigationSchema>;
|