@mintlify/validation 0.1.530 → 0.1.531
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/chat-config/index.d.ts +67 -67
- package/dist/mint-config/schemas/v1/apiReference.d.ts +4 -4
- package/dist/mint-config/schemas/v1/config.d.ts +81 -81
- package/dist/mint-config/schemas/v1/font.d.ts +20 -20
- package/dist/mint-config/schemas/v1/footer.d.ts +5 -5
- package/dist/mint-config/schemas/v1/navigation.d.ts +2 -2
- package/dist/mint-config/schemas/v1/tabs.d.ts +2 -2
- package/dist/mint-config/schemas/v2/index.d.ts +2978 -4567
- package/dist/mint-config/schemas/v2/properties/api.d.ts +28 -28
- package/dist/mint-config/schemas/v2/properties/appearance.d.ts +2 -2
- package/dist/mint-config/schemas/v2/properties/background.d.ts +5 -5
- package/dist/mint-config/schemas/v2/properties/contextual.d.ts +16 -64
- package/dist/mint-config/schemas/v2/properties/errors.d.ts +2 -2
- package/dist/mint-config/schemas/v2/properties/feedback.d.ts +2 -2
- package/dist/mint-config/schemas/v2/properties/fonts/index.d.ts +24 -24
- package/dist/mint-config/schemas/v2/properties/footer.d.ts +2 -2
- package/dist/mint-config/schemas/v2/properties/integrations.d.ts +22 -22
- package/dist/mint-config/schemas/v2/properties/navbar.d.ts +9 -9
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +186 -204
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +157 -170
- package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/menu.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/products.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +3 -2
- package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +26 -26
- package/dist/mint-config/schemas/v2/properties/styling.d.ts +10 -10
- package/dist/mint-config/schemas/v2/properties/thumbnails.d.ts +2 -2
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +181 -230
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +421 -648
- package/dist/mint-config/validateConfig.d.ts +1753 -2997
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/deployment/index.d.ts +2 -1
- package/package.json +2 -2
|
@@ -21,30 +21,32 @@ export declare const baseGroupSchema: z.ZodObject<{
|
|
|
21
21
|
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
22
22
|
}, "strip", z.ZodTypeAny, {
|
|
23
23
|
group: string;
|
|
24
|
-
public?: boolean | undefined;
|
|
25
24
|
icon?: string | {
|
|
26
25
|
name: string;
|
|
27
26
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
28
27
|
library?: "fontawesome" | "lucide" | undefined;
|
|
29
28
|
} | undefined;
|
|
29
|
+
expanded?: boolean | undefined;
|
|
30
|
+
public?: boolean | undefined;
|
|
31
|
+
tag?: string | undefined;
|
|
30
32
|
hidden?: boolean | undefined;
|
|
31
33
|
root?: string | undefined;
|
|
32
|
-
tag?: string | undefined;
|
|
33
|
-
expanded?: boolean | undefined;
|
|
34
34
|
}, {
|
|
35
35
|
group: string;
|
|
36
|
-
public?: boolean | undefined;
|
|
37
36
|
icon?: string | {
|
|
38
37
|
name: string;
|
|
39
38
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
40
39
|
library?: "fontawesome" | "lucide" | undefined;
|
|
41
40
|
} | undefined;
|
|
41
|
+
expanded?: boolean | undefined;
|
|
42
|
+
public?: boolean | undefined;
|
|
43
|
+
tag?: string | undefined;
|
|
42
44
|
hidden?: boolean | undefined;
|
|
43
45
|
root?: string | undefined;
|
|
44
|
-
tag?: string | undefined;
|
|
45
|
-
expanded?: boolean | undefined;
|
|
46
46
|
}>;
|
|
47
|
-
export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
47
|
+
export declare const groupSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
48
|
+
group: z.ZodString;
|
|
49
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
48
50
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
49
51
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
50
52
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -58,12 +60,11 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
58
60
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
59
61
|
library?: "fontawesome" | "lucide" | undefined;
|
|
60
62
|
}>]>>;
|
|
61
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
62
|
-
group: z.ZodString;
|
|
63
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
64
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
65
63
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
66
64
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
65
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
66
|
+
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
67
|
+
}, {
|
|
67
68
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
68
69
|
source: z.ZodEffects<z.ZodString, string, string>;
|
|
69
70
|
directory: z.ZodOptional<z.ZodString>;
|
|
@@ -75,14 +76,11 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
75
76
|
directory?: string | undefined;
|
|
76
77
|
}>]>;
|
|
77
78
|
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
78
|
-
}
|
|
79
|
-
openapi:
|
|
80
|
-
source: string;
|
|
81
|
-
directory?: string | undefined;
|
|
82
|
-
}) & (string | string[] | {
|
|
79
|
+
}>, "strip", z.ZodTypeAny, {
|
|
80
|
+
openapi: string | string[] | {
|
|
83
81
|
source: string;
|
|
84
82
|
directory?: string | undefined;
|
|
85
|
-
}
|
|
83
|
+
};
|
|
86
84
|
group: string;
|
|
87
85
|
pages: any[];
|
|
88
86
|
icon?: string | {
|
|
@@ -96,13 +94,10 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
96
94
|
hidden?: boolean | undefined;
|
|
97
95
|
root?: string | undefined;
|
|
98
96
|
}, {
|
|
99
|
-
openapi:
|
|
97
|
+
openapi: string | string[] | {
|
|
100
98
|
source: string;
|
|
101
99
|
directory?: string | undefined;
|
|
102
|
-
}
|
|
103
|
-
source: string;
|
|
104
|
-
directory?: string | undefined;
|
|
105
|
-
} | undefined);
|
|
100
|
+
};
|
|
106
101
|
group: string;
|
|
107
102
|
icon?: string | {
|
|
108
103
|
name: string;
|
|
@@ -111,11 +106,13 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
111
106
|
} | undefined;
|
|
112
107
|
expanded?: boolean | undefined;
|
|
113
108
|
public?: boolean | undefined;
|
|
109
|
+
pages?: any[] | undefined;
|
|
114
110
|
tag?: string | undefined;
|
|
115
111
|
hidden?: boolean | undefined;
|
|
116
112
|
root?: string | undefined;
|
|
117
|
-
|
|
118
|
-
|
|
113
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
114
|
+
group: z.ZodString;
|
|
115
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
119
116
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
120
117
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
121
118
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -129,12 +126,11 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
129
126
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
130
127
|
library?: "fontawesome" | "lucide" | undefined;
|
|
131
128
|
}>]>>;
|
|
132
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
133
|
-
group: z.ZodString;
|
|
134
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
135
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
136
129
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
137
130
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
131
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
132
|
+
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
133
|
+
}, {
|
|
138
134
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
139
135
|
source: z.ZodEffects<z.ZodString, string, string>;
|
|
140
136
|
directory: z.ZodOptional<z.ZodString>;
|
|
@@ -146,16 +142,13 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
146
142
|
directory?: string | undefined;
|
|
147
143
|
}>]>;
|
|
148
144
|
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
149
|
-
}
|
|
145
|
+
}>, "strip", z.ZodTypeAny, {
|
|
150
146
|
group: string;
|
|
151
147
|
pages: any[];
|
|
152
|
-
asyncapi:
|
|
153
|
-
source: string;
|
|
154
|
-
directory?: string | undefined;
|
|
155
|
-
}) & (string | string[] | {
|
|
148
|
+
asyncapi: string | string[] | {
|
|
156
149
|
source: string;
|
|
157
150
|
directory?: string | undefined;
|
|
158
|
-
}
|
|
151
|
+
};
|
|
159
152
|
icon?: string | {
|
|
160
153
|
name: string;
|
|
161
154
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -168,13 +161,10 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
168
161
|
root?: string | undefined;
|
|
169
162
|
}, {
|
|
170
163
|
group: string;
|
|
171
|
-
asyncapi:
|
|
172
|
-
source: string;
|
|
173
|
-
directory?: string | undefined;
|
|
174
|
-
}) & (string | string[] | {
|
|
164
|
+
asyncapi: string | string[] | {
|
|
175
165
|
source: string;
|
|
176
166
|
directory?: string | undefined;
|
|
177
|
-
}
|
|
167
|
+
};
|
|
178
168
|
icon?: string | {
|
|
179
169
|
name: string;
|
|
180
170
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -182,11 +172,13 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
182
172
|
} | undefined;
|
|
183
173
|
expanded?: boolean | undefined;
|
|
184
174
|
public?: boolean | undefined;
|
|
175
|
+
pages?: any[] | undefined;
|
|
185
176
|
tag?: string | undefined;
|
|
186
177
|
hidden?: boolean | undefined;
|
|
187
178
|
root?: string | undefined;
|
|
188
|
-
|
|
189
|
-
|
|
179
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
180
|
+
group: z.ZodString;
|
|
181
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
190
182
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
191
183
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
192
184
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -200,14 +192,13 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
200
192
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
201
193
|
library?: "fontawesome" | "lucide" | undefined;
|
|
202
194
|
}>]>>;
|
|
203
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
204
|
-
group: z.ZodString;
|
|
205
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
206
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
207
195
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
208
196
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
197
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
198
|
+
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
199
|
+
}, {
|
|
209
200
|
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
210
|
-
}
|
|
201
|
+
}>, "strip", z.ZodTypeAny, {
|
|
211
202
|
group: string;
|
|
212
203
|
pages: any[];
|
|
213
204
|
icon?: string | {
|
|
@@ -229,10 +220,10 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
229
220
|
} | undefined;
|
|
230
221
|
expanded?: boolean | undefined;
|
|
231
222
|
public?: boolean | undefined;
|
|
223
|
+
pages?: any[] | undefined;
|
|
232
224
|
tag?: string | undefined;
|
|
233
225
|
hidden?: boolean | undefined;
|
|
234
226
|
root?: string | undefined;
|
|
235
|
-
pages?: any[] | undefined;
|
|
236
227
|
}>]>;
|
|
237
228
|
export declare const decoratedGroupSchema: z.ZodObject<{
|
|
238
229
|
group: z.ZodString;
|
|
@@ -292,62 +283,62 @@ export declare const decoratedGroupSchema: z.ZodObject<{
|
|
|
292
283
|
}, "strip", z.ZodTypeAny, {
|
|
293
284
|
href: string;
|
|
294
285
|
title: string;
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
286
|
+
url?: string | undefined;
|
|
287
|
+
icon?: string | {
|
|
288
|
+
name: string;
|
|
289
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
290
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
291
|
+
} | undefined;
|
|
292
|
+
version?: string | undefined;
|
|
298
293
|
openapi?: string | undefined;
|
|
294
|
+
auth?: string | undefined;
|
|
295
|
+
mode?: string | undefined;
|
|
296
|
+
public?: boolean | undefined;
|
|
297
|
+
api?: string | undefined;
|
|
299
298
|
asyncapi?: string | undefined;
|
|
299
|
+
description?: string | undefined;
|
|
300
|
+
sidebarTitle?: string | undefined;
|
|
300
301
|
contentType?: string | undefined;
|
|
301
302
|
authMethod?: string | undefined;
|
|
302
|
-
auth?: string | undefined;
|
|
303
|
-
version?: string | undefined;
|
|
304
|
-
mode?: string | undefined;
|
|
305
303
|
hideFooterPagination?: boolean | undefined;
|
|
306
304
|
authors?: unknown;
|
|
307
305
|
lastUpdatedDate?: string | undefined;
|
|
308
306
|
createdDate?: string | undefined;
|
|
309
307
|
'openapi-schema'?: string | undefined;
|
|
310
|
-
icon?: string | {
|
|
311
|
-
name: string;
|
|
312
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
313
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
314
|
-
} | undefined;
|
|
315
308
|
tag?: string | undefined;
|
|
316
|
-
url?: string | undefined;
|
|
317
309
|
hideApiMarker?: boolean | undefined;
|
|
318
310
|
noindex?: boolean | undefined;
|
|
319
311
|
isPublic?: boolean | undefined;
|
|
320
|
-
public?: boolean | undefined;
|
|
321
312
|
deprecated?: boolean | undefined;
|
|
322
313
|
}, {
|
|
323
314
|
href: string;
|
|
324
315
|
title: string;
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
316
|
+
url?: string | undefined;
|
|
317
|
+
icon?: string | {
|
|
318
|
+
name: string;
|
|
319
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
320
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
321
|
+
} | undefined;
|
|
322
|
+
version?: string | undefined;
|
|
328
323
|
openapi?: string | undefined;
|
|
324
|
+
auth?: string | undefined;
|
|
325
|
+
mode?: string | undefined;
|
|
326
|
+
public?: boolean | undefined;
|
|
327
|
+
api?: string | undefined;
|
|
329
328
|
asyncapi?: string | undefined;
|
|
329
|
+
description?: string | undefined;
|
|
330
|
+
sidebarTitle?: string | undefined;
|
|
330
331
|
contentType?: string | undefined;
|
|
331
332
|
authMethod?: string | undefined;
|
|
332
|
-
auth?: string | undefined;
|
|
333
|
-
version?: string | undefined;
|
|
334
|
-
mode?: string | undefined;
|
|
335
333
|
hideFooterPagination?: boolean | undefined;
|
|
336
334
|
authors?: unknown;
|
|
337
335
|
lastUpdatedDate?: string | undefined;
|
|
338
336
|
createdDate?: string | undefined;
|
|
339
337
|
'openapi-schema'?: string | undefined;
|
|
340
|
-
icon?: string | {
|
|
341
|
-
name: string;
|
|
342
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
343
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
344
|
-
} | undefined;
|
|
345
338
|
tag?: string | undefined;
|
|
346
|
-
url?: string | undefined;
|
|
347
339
|
hideApiMarker?: boolean | undefined;
|
|
348
340
|
noindex?: boolean | undefined;
|
|
349
341
|
isPublic?: boolean | undefined;
|
|
350
|
-
public?: boolean | undefined;
|
|
351
342
|
deprecated?: boolean | undefined;
|
|
352
343
|
}>>;
|
|
353
344
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -356,91 +347,93 @@ export declare const decoratedGroupSchema: z.ZodObject<{
|
|
|
356
347
|
}, "strip", z.ZodTypeAny, {
|
|
357
348
|
group: string;
|
|
358
349
|
pages: any[];
|
|
359
|
-
public?: boolean | undefined;
|
|
360
350
|
icon?: string | {
|
|
361
351
|
name: string;
|
|
362
352
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
363
353
|
library?: "fontawesome" | "lucide" | undefined;
|
|
364
354
|
} | undefined;
|
|
355
|
+
expanded?: boolean | undefined;
|
|
356
|
+
public?: boolean | undefined;
|
|
357
|
+
tag?: string | undefined;
|
|
365
358
|
hidden?: boolean | undefined;
|
|
366
359
|
root?: {
|
|
367
360
|
href: string;
|
|
368
361
|
title: string;
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
362
|
+
url?: string | undefined;
|
|
363
|
+
icon?: string | {
|
|
364
|
+
name: string;
|
|
365
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
366
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
367
|
+
} | undefined;
|
|
368
|
+
version?: string | undefined;
|
|
372
369
|
openapi?: string | undefined;
|
|
370
|
+
auth?: string | undefined;
|
|
371
|
+
mode?: string | undefined;
|
|
372
|
+
public?: boolean | undefined;
|
|
373
|
+
api?: string | undefined;
|
|
373
374
|
asyncapi?: string | undefined;
|
|
375
|
+
description?: string | undefined;
|
|
376
|
+
sidebarTitle?: string | undefined;
|
|
374
377
|
contentType?: string | undefined;
|
|
375
378
|
authMethod?: string | undefined;
|
|
376
|
-
auth?: string | undefined;
|
|
377
|
-
version?: string | undefined;
|
|
378
|
-
mode?: string | undefined;
|
|
379
379
|
hideFooterPagination?: boolean | undefined;
|
|
380
380
|
authors?: unknown;
|
|
381
381
|
lastUpdatedDate?: string | undefined;
|
|
382
382
|
createdDate?: string | undefined;
|
|
383
383
|
'openapi-schema'?: string | undefined;
|
|
384
|
-
icon?: string | {
|
|
385
|
-
name: string;
|
|
386
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
387
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
388
|
-
} | undefined;
|
|
389
384
|
tag?: string | undefined;
|
|
390
|
-
url?: string | undefined;
|
|
391
385
|
hideApiMarker?: boolean | undefined;
|
|
392
386
|
noindex?: boolean | undefined;
|
|
393
387
|
isPublic?: boolean | undefined;
|
|
394
|
-
public?: boolean | undefined;
|
|
395
388
|
deprecated?: boolean | undefined;
|
|
396
389
|
} | undefined;
|
|
397
|
-
tag?: string | undefined;
|
|
398
|
-
expanded?: boolean | undefined;
|
|
399
390
|
}, {
|
|
400
391
|
group: string;
|
|
401
392
|
pages: any[];
|
|
402
|
-
public?: boolean | undefined;
|
|
403
393
|
icon?: string | {
|
|
404
394
|
name: string;
|
|
405
395
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
406
396
|
library?: "fontawesome" | "lucide" | undefined;
|
|
407
397
|
} | undefined;
|
|
398
|
+
expanded?: boolean | undefined;
|
|
399
|
+
public?: boolean | undefined;
|
|
400
|
+
tag?: string | undefined;
|
|
408
401
|
hidden?: boolean | undefined;
|
|
409
402
|
root?: {
|
|
410
403
|
href: string;
|
|
411
404
|
title: string;
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
405
|
+
url?: string | undefined;
|
|
406
|
+
icon?: string | {
|
|
407
|
+
name: string;
|
|
408
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
409
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
410
|
+
} | undefined;
|
|
411
|
+
version?: string | undefined;
|
|
415
412
|
openapi?: string | undefined;
|
|
413
|
+
auth?: string | undefined;
|
|
414
|
+
mode?: string | undefined;
|
|
415
|
+
public?: boolean | undefined;
|
|
416
|
+
api?: string | undefined;
|
|
416
417
|
asyncapi?: string | undefined;
|
|
418
|
+
description?: string | undefined;
|
|
419
|
+
sidebarTitle?: string | undefined;
|
|
417
420
|
contentType?: string | undefined;
|
|
418
421
|
authMethod?: string | undefined;
|
|
419
|
-
auth?: string | undefined;
|
|
420
|
-
version?: string | undefined;
|
|
421
|
-
mode?: string | undefined;
|
|
422
422
|
hideFooterPagination?: boolean | undefined;
|
|
423
423
|
authors?: unknown;
|
|
424
424
|
lastUpdatedDate?: string | undefined;
|
|
425
425
|
createdDate?: string | undefined;
|
|
426
426
|
'openapi-schema'?: string | undefined;
|
|
427
|
-
icon?: string | {
|
|
428
|
-
name: string;
|
|
429
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
430
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
431
|
-
} | undefined;
|
|
432
427
|
tag?: string | undefined;
|
|
433
|
-
url?: string | undefined;
|
|
434
428
|
hideApiMarker?: boolean | undefined;
|
|
435
429
|
noindex?: boolean | undefined;
|
|
436
430
|
isPublic?: boolean | undefined;
|
|
437
|
-
public?: boolean | undefined;
|
|
438
431
|
deprecated?: boolean | undefined;
|
|
439
432
|
} | undefined;
|
|
440
|
-
tag?: string | undefined;
|
|
441
|
-
expanded?: boolean | undefined;
|
|
442
433
|
}>;
|
|
443
|
-
export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
434
|
+
export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
435
|
+
group: z.ZodString;
|
|
436
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
444
437
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
445
438
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
446
439
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -454,12 +447,11 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
454
447
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
455
448
|
library?: "fontawesome" | "lucide" | undefined;
|
|
456
449
|
}>]>>;
|
|
457
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
458
|
-
group: z.ZodString;
|
|
459
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
460
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
461
450
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
462
451
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
452
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
453
|
+
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
454
|
+
}, {
|
|
463
455
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
464
456
|
source: z.ZodEffects<z.ZodString, string, string>;
|
|
465
457
|
directory: z.ZodOptional<z.ZodString>;
|
|
@@ -471,14 +463,11 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
471
463
|
directory?: string | undefined;
|
|
472
464
|
}>]>;
|
|
473
465
|
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
474
|
-
}
|
|
475
|
-
openapi:
|
|
466
|
+
}>, "strip", z.ZodTypeAny, {
|
|
467
|
+
openapi: string | string[] | {
|
|
476
468
|
source: string;
|
|
477
469
|
directory?: string | undefined;
|
|
478
|
-
}
|
|
479
|
-
source: string;
|
|
480
|
-
directory?: string | undefined;
|
|
481
|
-
} | undefined);
|
|
470
|
+
};
|
|
482
471
|
group: string;
|
|
483
472
|
pages: any[];
|
|
484
473
|
icon?: string | {
|
|
@@ -492,13 +481,10 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
492
481
|
hidden?: boolean | undefined;
|
|
493
482
|
root?: string | undefined;
|
|
494
483
|
}, {
|
|
495
|
-
openapi:
|
|
484
|
+
openapi: string | string[] | {
|
|
496
485
|
source: string;
|
|
497
486
|
directory?: string | undefined;
|
|
498
|
-
}
|
|
499
|
-
source: string;
|
|
500
|
-
directory?: string | undefined;
|
|
501
|
-
} | undefined);
|
|
487
|
+
};
|
|
502
488
|
group: string;
|
|
503
489
|
icon?: string | {
|
|
504
490
|
name: string;
|
|
@@ -507,11 +493,13 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
507
493
|
} | undefined;
|
|
508
494
|
expanded?: boolean | undefined;
|
|
509
495
|
public?: boolean | undefined;
|
|
496
|
+
pages?: any[] | undefined;
|
|
510
497
|
tag?: string | undefined;
|
|
511
498
|
hidden?: boolean | undefined;
|
|
512
499
|
root?: string | undefined;
|
|
513
|
-
|
|
514
|
-
|
|
500
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
501
|
+
group: z.ZodString;
|
|
502
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
515
503
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
516
504
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
517
505
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -525,12 +513,11 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
525
513
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
526
514
|
library?: "fontawesome" | "lucide" | undefined;
|
|
527
515
|
}>]>>;
|
|
528
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
529
|
-
group: z.ZodString;
|
|
530
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
531
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
532
516
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
533
517
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
518
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
519
|
+
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
520
|
+
}, {
|
|
534
521
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
535
522
|
source: z.ZodEffects<z.ZodString, string, string>;
|
|
536
523
|
directory: z.ZodOptional<z.ZodString>;
|
|
@@ -542,16 +529,13 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
542
529
|
directory?: string | undefined;
|
|
543
530
|
}>]>;
|
|
544
531
|
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
545
|
-
}
|
|
532
|
+
}>, "strip", z.ZodTypeAny, {
|
|
546
533
|
group: string;
|
|
547
534
|
pages: any[];
|
|
548
|
-
asyncapi:
|
|
535
|
+
asyncapi: string | string[] | {
|
|
549
536
|
source: string;
|
|
550
537
|
directory?: string | undefined;
|
|
551
|
-
}
|
|
552
|
-
source: string;
|
|
553
|
-
directory?: string | undefined;
|
|
554
|
-
} | undefined);
|
|
538
|
+
};
|
|
555
539
|
icon?: string | {
|
|
556
540
|
name: string;
|
|
557
541
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -564,13 +548,10 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
564
548
|
root?: string | undefined;
|
|
565
549
|
}, {
|
|
566
550
|
group: string;
|
|
567
|
-
asyncapi:
|
|
551
|
+
asyncapi: string | string[] | {
|
|
568
552
|
source: string;
|
|
569
553
|
directory?: string | undefined;
|
|
570
|
-
}
|
|
571
|
-
source: string;
|
|
572
|
-
directory?: string | undefined;
|
|
573
|
-
} | undefined);
|
|
554
|
+
};
|
|
574
555
|
icon?: string | {
|
|
575
556
|
name: string;
|
|
576
557
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -578,11 +559,13 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
578
559
|
} | undefined;
|
|
579
560
|
expanded?: boolean | undefined;
|
|
580
561
|
public?: boolean | undefined;
|
|
562
|
+
pages?: any[] | undefined;
|
|
581
563
|
tag?: string | undefined;
|
|
582
564
|
hidden?: boolean | undefined;
|
|
583
565
|
root?: string | undefined;
|
|
584
|
-
|
|
585
|
-
|
|
566
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
567
|
+
group: z.ZodString;
|
|
568
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
586
569
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
587
570
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
588
571
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -596,14 +579,13 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
596
579
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
597
580
|
library?: "fontawesome" | "lucide" | undefined;
|
|
598
581
|
}>]>>;
|
|
599
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
600
|
-
group: z.ZodString;
|
|
601
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
602
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
603
582
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
604
583
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
584
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
585
|
+
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
586
|
+
}, {
|
|
605
587
|
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
606
|
-
}
|
|
588
|
+
}>, "strip", z.ZodTypeAny, {
|
|
607
589
|
group: string;
|
|
608
590
|
pages: any[];
|
|
609
591
|
icon?: string | {
|
|
@@ -625,10 +607,10 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
625
607
|
} | undefined;
|
|
626
608
|
expanded?: boolean | undefined;
|
|
627
609
|
public?: boolean | undefined;
|
|
610
|
+
pages?: any[] | undefined;
|
|
628
611
|
tag?: string | undefined;
|
|
629
612
|
hidden?: boolean | undefined;
|
|
630
613
|
root?: string | undefined;
|
|
631
|
-
pages?: any[] | undefined;
|
|
632
614
|
}>]>, "many">;
|
|
633
615
|
export declare const decoratedGroupsSchema: z.ZodArray<z.ZodObject<{
|
|
634
616
|
group: z.ZodString;
|
|
@@ -688,62 +670,62 @@ export declare const decoratedGroupsSchema: z.ZodArray<z.ZodObject<{
|
|
|
688
670
|
}, "strip", z.ZodTypeAny, {
|
|
689
671
|
href: string;
|
|
690
672
|
title: string;
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
673
|
+
url?: string | undefined;
|
|
674
|
+
icon?: string | {
|
|
675
|
+
name: string;
|
|
676
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
677
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
678
|
+
} | undefined;
|
|
679
|
+
version?: string | undefined;
|
|
694
680
|
openapi?: string | undefined;
|
|
681
|
+
auth?: string | undefined;
|
|
682
|
+
mode?: string | undefined;
|
|
683
|
+
public?: boolean | undefined;
|
|
684
|
+
api?: string | undefined;
|
|
695
685
|
asyncapi?: string | undefined;
|
|
686
|
+
description?: string | undefined;
|
|
687
|
+
sidebarTitle?: string | undefined;
|
|
696
688
|
contentType?: string | undefined;
|
|
697
689
|
authMethod?: string | undefined;
|
|
698
|
-
auth?: string | undefined;
|
|
699
|
-
version?: string | undefined;
|
|
700
|
-
mode?: string | undefined;
|
|
701
690
|
hideFooterPagination?: boolean | undefined;
|
|
702
691
|
authors?: unknown;
|
|
703
692
|
lastUpdatedDate?: string | undefined;
|
|
704
693
|
createdDate?: string | undefined;
|
|
705
694
|
'openapi-schema'?: string | undefined;
|
|
706
|
-
icon?: string | {
|
|
707
|
-
name: string;
|
|
708
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
709
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
710
|
-
} | undefined;
|
|
711
695
|
tag?: string | undefined;
|
|
712
|
-
url?: string | undefined;
|
|
713
696
|
hideApiMarker?: boolean | undefined;
|
|
714
697
|
noindex?: boolean | undefined;
|
|
715
698
|
isPublic?: boolean | undefined;
|
|
716
|
-
public?: boolean | undefined;
|
|
717
699
|
deprecated?: boolean | undefined;
|
|
718
700
|
}, {
|
|
719
701
|
href: string;
|
|
720
702
|
title: string;
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
703
|
+
url?: string | undefined;
|
|
704
|
+
icon?: string | {
|
|
705
|
+
name: string;
|
|
706
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
707
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
708
|
+
} | undefined;
|
|
709
|
+
version?: string | undefined;
|
|
724
710
|
openapi?: string | undefined;
|
|
711
|
+
auth?: string | undefined;
|
|
712
|
+
mode?: string | undefined;
|
|
713
|
+
public?: boolean | undefined;
|
|
714
|
+
api?: string | undefined;
|
|
725
715
|
asyncapi?: string | undefined;
|
|
716
|
+
description?: string | undefined;
|
|
717
|
+
sidebarTitle?: string | undefined;
|
|
726
718
|
contentType?: string | undefined;
|
|
727
719
|
authMethod?: string | undefined;
|
|
728
|
-
auth?: string | undefined;
|
|
729
|
-
version?: string | undefined;
|
|
730
|
-
mode?: string | undefined;
|
|
731
720
|
hideFooterPagination?: boolean | undefined;
|
|
732
721
|
authors?: unknown;
|
|
733
722
|
lastUpdatedDate?: string | undefined;
|
|
734
723
|
createdDate?: string | undefined;
|
|
735
724
|
'openapi-schema'?: string | undefined;
|
|
736
|
-
icon?: string | {
|
|
737
|
-
name: string;
|
|
738
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
739
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
740
|
-
} | undefined;
|
|
741
725
|
tag?: string | undefined;
|
|
742
|
-
url?: string | undefined;
|
|
743
726
|
hideApiMarker?: boolean | undefined;
|
|
744
727
|
noindex?: boolean | undefined;
|
|
745
728
|
isPublic?: boolean | undefined;
|
|
746
|
-
public?: boolean | undefined;
|
|
747
729
|
deprecated?: boolean | undefined;
|
|
748
730
|
}>>;
|
|
749
731
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -752,89 +734,89 @@ export declare const decoratedGroupsSchema: z.ZodArray<z.ZodObject<{
|
|
|
752
734
|
}, "strip", z.ZodTypeAny, {
|
|
753
735
|
group: string;
|
|
754
736
|
pages: any[];
|
|
755
|
-
public?: boolean | undefined;
|
|
756
737
|
icon?: string | {
|
|
757
738
|
name: string;
|
|
758
739
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
759
740
|
library?: "fontawesome" | "lucide" | undefined;
|
|
760
741
|
} | undefined;
|
|
742
|
+
expanded?: boolean | undefined;
|
|
743
|
+
public?: boolean | undefined;
|
|
744
|
+
tag?: string | undefined;
|
|
761
745
|
hidden?: boolean | undefined;
|
|
762
746
|
root?: {
|
|
763
747
|
href: string;
|
|
764
748
|
title: string;
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
749
|
+
url?: string | undefined;
|
|
750
|
+
icon?: string | {
|
|
751
|
+
name: string;
|
|
752
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
753
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
754
|
+
} | undefined;
|
|
755
|
+
version?: string | undefined;
|
|
768
756
|
openapi?: string | undefined;
|
|
757
|
+
auth?: string | undefined;
|
|
758
|
+
mode?: string | undefined;
|
|
759
|
+
public?: boolean | undefined;
|
|
760
|
+
api?: string | undefined;
|
|
769
761
|
asyncapi?: string | undefined;
|
|
762
|
+
description?: string | undefined;
|
|
763
|
+
sidebarTitle?: string | undefined;
|
|
770
764
|
contentType?: string | undefined;
|
|
771
765
|
authMethod?: string | undefined;
|
|
772
|
-
auth?: string | undefined;
|
|
773
|
-
version?: string | undefined;
|
|
774
|
-
mode?: string | undefined;
|
|
775
766
|
hideFooterPagination?: boolean | undefined;
|
|
776
767
|
authors?: unknown;
|
|
777
768
|
lastUpdatedDate?: string | undefined;
|
|
778
769
|
createdDate?: string | undefined;
|
|
779
770
|
'openapi-schema'?: string | undefined;
|
|
780
|
-
icon?: string | {
|
|
781
|
-
name: string;
|
|
782
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
783
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
784
|
-
} | undefined;
|
|
785
771
|
tag?: string | undefined;
|
|
786
|
-
url?: string | undefined;
|
|
787
772
|
hideApiMarker?: boolean | undefined;
|
|
788
773
|
noindex?: boolean | undefined;
|
|
789
774
|
isPublic?: boolean | undefined;
|
|
790
|
-
public?: boolean | undefined;
|
|
791
775
|
deprecated?: boolean | undefined;
|
|
792
776
|
} | undefined;
|
|
793
|
-
tag?: string | undefined;
|
|
794
|
-
expanded?: boolean | undefined;
|
|
795
777
|
}, {
|
|
796
778
|
group: string;
|
|
797
779
|
pages: any[];
|
|
798
|
-
public?: boolean | undefined;
|
|
799
780
|
icon?: string | {
|
|
800
781
|
name: string;
|
|
801
782
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
802
783
|
library?: "fontawesome" | "lucide" | undefined;
|
|
803
784
|
} | undefined;
|
|
785
|
+
expanded?: boolean | undefined;
|
|
786
|
+
public?: boolean | undefined;
|
|
787
|
+
tag?: string | undefined;
|
|
804
788
|
hidden?: boolean | undefined;
|
|
805
789
|
root?: {
|
|
806
790
|
href: string;
|
|
807
791
|
title: string;
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
792
|
+
url?: string | undefined;
|
|
793
|
+
icon?: string | {
|
|
794
|
+
name: string;
|
|
795
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
796
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
797
|
+
} | undefined;
|
|
798
|
+
version?: string | undefined;
|
|
811
799
|
openapi?: string | undefined;
|
|
800
|
+
auth?: string | undefined;
|
|
801
|
+
mode?: string | undefined;
|
|
802
|
+
public?: boolean | undefined;
|
|
803
|
+
api?: string | undefined;
|
|
812
804
|
asyncapi?: string | undefined;
|
|
805
|
+
description?: string | undefined;
|
|
806
|
+
sidebarTitle?: string | undefined;
|
|
813
807
|
contentType?: string | undefined;
|
|
814
808
|
authMethod?: string | undefined;
|
|
815
|
-
auth?: string | undefined;
|
|
816
|
-
version?: string | undefined;
|
|
817
|
-
mode?: string | undefined;
|
|
818
809
|
hideFooterPagination?: boolean | undefined;
|
|
819
810
|
authors?: unknown;
|
|
820
811
|
lastUpdatedDate?: string | undefined;
|
|
821
812
|
createdDate?: string | undefined;
|
|
822
813
|
'openapi-schema'?: string | undefined;
|
|
823
|
-
icon?: string | {
|
|
824
|
-
name: string;
|
|
825
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
826
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
827
|
-
} | undefined;
|
|
828
814
|
tag?: string | undefined;
|
|
829
|
-
url?: string | undefined;
|
|
830
815
|
hideApiMarker?: boolean | undefined;
|
|
831
816
|
noindex?: boolean | undefined;
|
|
832
817
|
isPublic?: boolean | undefined;
|
|
833
|
-
public?: boolean | undefined;
|
|
834
818
|
deprecated?: boolean | undefined;
|
|
835
819
|
} | undefined;
|
|
836
|
-
tag?: string | undefined;
|
|
837
|
-
expanded?: boolean | undefined;
|
|
838
820
|
}>, "many">;
|
|
839
821
|
export type GroupConfig = z.infer<typeof groupSchema>;
|
|
840
822
|
export type GroupsConfig = z.infer<typeof groupsSchema>;
|