@mintlify/validation 0.1.585 → 0.1.586
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 +1138 -1874
- package/dist/mint-config/schemas/v2/properties/navigation/divisionNav.d.ts +12 -4
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +24 -717
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +360 -428
- package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +177 -4
- package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +101 -55
- package/dist/mint-config/schemas/v2/properties/reusable/page.js +12 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +140 -232
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +140 -232
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +140 -232
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +140 -232
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +140 -232
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +140 -232
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +92 -182
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +140 -232
- package/dist/mint-config/upgrades/convertMintDecoratedNavToDocsDecoratedNav.js +7 -3
- package/dist/mint-config/validateConfig.d.ts +336 -350
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -70,45 +70,8 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exte
|
|
|
70
70
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
71
71
|
global: z.ZodOptional<z.ZodType<import("./divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./divisionNav.js").GlobalNavigation>>;
|
|
72
72
|
}, {
|
|
73
|
-
groups: z.ZodArray<z.
|
|
74
|
-
group: z.ZodString;
|
|
75
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
76
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
77
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
78
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
79
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
80
|
-
}, "strip", z.ZodTypeAny, {
|
|
81
|
-
name: string;
|
|
82
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
83
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
84
|
-
}, {
|
|
85
|
-
name: string;
|
|
86
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
87
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
88
|
-
}>]>>;
|
|
89
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
90
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
91
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
92
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
93
|
-
}, {
|
|
94
|
-
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
95
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
96
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
97
|
-
}, "strict", z.ZodTypeAny, {
|
|
98
|
-
source: string;
|
|
99
|
-
directory?: string | undefined;
|
|
100
|
-
}, {
|
|
101
|
-
source: string;
|
|
102
|
-
directory?: string | undefined;
|
|
103
|
-
}>]>;
|
|
104
|
-
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
105
|
-
}>, "strip", z.ZodTypeAny, {
|
|
106
|
-
openapi: string | string[] | {
|
|
107
|
-
source: string;
|
|
108
|
-
directory?: string | undefined;
|
|
109
|
-
};
|
|
73
|
+
groups: z.ZodArray<z.ZodType<{
|
|
110
74
|
group: string;
|
|
111
|
-
pages: any[];
|
|
112
75
|
icon?: string | {
|
|
113
76
|
name: string;
|
|
114
77
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -119,11 +82,18 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exte
|
|
|
119
82
|
tag?: string | undefined;
|
|
120
83
|
hidden?: boolean | undefined;
|
|
121
84
|
root?: string | undefined;
|
|
122
|
-
}
|
|
123
|
-
openapi
|
|
85
|
+
} & {
|
|
86
|
+
openapi?: string | string[] | {
|
|
87
|
+
source: string;
|
|
88
|
+
directory?: string | undefined;
|
|
89
|
+
} | undefined;
|
|
90
|
+
asyncapi?: string | string[] | {
|
|
124
91
|
source: string;
|
|
125
92
|
directory?: string | undefined;
|
|
126
|
-
};
|
|
93
|
+
} | undefined;
|
|
94
|
+
} & {
|
|
95
|
+
pages?: import("./divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
96
|
+
}, z.ZodTypeDef, {
|
|
127
97
|
group: string;
|
|
128
98
|
icon?: string | {
|
|
129
99
|
name: string;
|
|
@@ -132,49 +102,24 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exte
|
|
|
132
102
|
} | undefined;
|
|
133
103
|
expanded?: boolean | undefined;
|
|
134
104
|
public?: boolean | undefined;
|
|
135
|
-
pages?: any[] | undefined;
|
|
136
105
|
tag?: string | undefined;
|
|
137
106
|
hidden?: boolean | undefined;
|
|
138
107
|
root?: string | undefined;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
142
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
143
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
144
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
145
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
146
|
-
}, "strip", z.ZodTypeAny, {
|
|
147
|
-
name: string;
|
|
148
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
149
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
150
|
-
}, {
|
|
151
|
-
name: string;
|
|
152
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
153
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
154
|
-
}>]>>;
|
|
155
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
156
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
157
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
158
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
159
|
-
}, {
|
|
160
|
-
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
161
|
-
source: z.ZodEffects<z.ZodString, string, string>;
|
|
162
|
-
directory: z.ZodOptional<z.ZodString>;
|
|
163
|
-
}, "strict", z.ZodTypeAny, {
|
|
108
|
+
} & {
|
|
109
|
+
openapi?: string | string[] | {
|
|
164
110
|
source: string;
|
|
165
111
|
directory?: string | undefined;
|
|
166
|
-
}
|
|
112
|
+
} | undefined;
|
|
113
|
+
asyncapi?: string | string[] | {
|
|
167
114
|
source: string;
|
|
168
115
|
directory?: string | undefined;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
|
|
116
|
+
} | undefined;
|
|
117
|
+
} & {
|
|
118
|
+
pages?: import("./divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
119
|
+
}>, "many">;
|
|
120
|
+
}>, "strip", z.ZodTypeAny, {
|
|
121
|
+
groups: ({
|
|
172
122
|
group: string;
|
|
173
|
-
pages: any[];
|
|
174
|
-
asyncapi: string | string[] | {
|
|
175
|
-
source: string;
|
|
176
|
-
directory?: string | undefined;
|
|
177
|
-
};
|
|
178
123
|
icon?: string | {
|
|
179
124
|
name: string;
|
|
180
125
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -185,59 +130,21 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exte
|
|
|
185
130
|
tag?: string | undefined;
|
|
186
131
|
hidden?: boolean | undefined;
|
|
187
132
|
root?: string | undefined;
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
asyncapi: string | string[] | {
|
|
133
|
+
} & {
|
|
134
|
+
openapi?: string | string[] | {
|
|
191
135
|
source: string;
|
|
192
136
|
directory?: string | undefined;
|
|
193
|
-
};
|
|
194
|
-
icon?: string | {
|
|
195
|
-
name: string;
|
|
196
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
197
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
198
137
|
} | undefined;
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
tag?: string | undefined;
|
|
203
|
-
hidden?: boolean | undefined;
|
|
204
|
-
root?: string | undefined;
|
|
205
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
206
|
-
group: z.ZodString;
|
|
207
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
208
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
209
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
210
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
211
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
212
|
-
}, "strip", z.ZodTypeAny, {
|
|
213
|
-
name: string;
|
|
214
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
215
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
216
|
-
}, {
|
|
217
|
-
name: string;
|
|
218
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
219
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
220
|
-
}>]>>;
|
|
221
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
222
|
-
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
223
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
224
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
225
|
-
}, {
|
|
226
|
-
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
227
|
-
}>, "strip", z.ZodTypeAny, {
|
|
228
|
-
group: string;
|
|
229
|
-
pages: any[];
|
|
230
|
-
icon?: string | {
|
|
231
|
-
name: string;
|
|
232
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
233
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
138
|
+
asyncapi?: string | string[] | {
|
|
139
|
+
source: string;
|
|
140
|
+
directory?: string | undefined;
|
|
234
141
|
} | undefined;
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
142
|
+
} & {
|
|
143
|
+
pages?: import("./divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
144
|
+
})[];
|
|
145
|
+
global?: import("./divisionNav.js").GlobalNavigation | undefined;
|
|
146
|
+
}, {
|
|
147
|
+
groups: ({
|
|
241
148
|
group: string;
|
|
242
149
|
icon?: string | {
|
|
243
150
|
name: string;
|
|
@@ -246,19 +153,27 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exte
|
|
|
246
153
|
} | undefined;
|
|
247
154
|
expanded?: boolean | undefined;
|
|
248
155
|
public?: boolean | undefined;
|
|
249
|
-
pages?: any[] | undefined;
|
|
250
156
|
tag?: string | undefined;
|
|
251
157
|
hidden?: boolean | undefined;
|
|
252
158
|
root?: string | undefined;
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
159
|
+
} & {
|
|
160
|
+
openapi?: string | string[] | {
|
|
161
|
+
source: string;
|
|
162
|
+
directory?: string | undefined;
|
|
163
|
+
} | undefined;
|
|
164
|
+
asyncapi?: string | string[] | {
|
|
257
165
|
source: string;
|
|
258
166
|
directory?: string | undefined;
|
|
259
|
-
};
|
|
167
|
+
} | undefined;
|
|
168
|
+
} & {
|
|
169
|
+
pages?: import("./divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
170
|
+
})[];
|
|
171
|
+
global?: import("./divisionNav.js").GlobalNavigation | undefined;
|
|
172
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
173
|
+
global: z.ZodOptional<z.ZodType<import("./divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./divisionNav.js").GlobalNavigation>>;
|
|
174
|
+
}, {
|
|
175
|
+
pages: z.ZodArray<z.ZodType<string | ({
|
|
260
176
|
group: string;
|
|
261
|
-
pages: any[];
|
|
262
177
|
icon?: string | {
|
|
263
178
|
name: string;
|
|
264
179
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -269,26 +184,19 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exte
|
|
|
269
184
|
tag?: string | undefined;
|
|
270
185
|
hidden?: boolean | undefined;
|
|
271
186
|
root?: string | undefined;
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
pages: any[];
|
|
275
|
-
asyncapi: string | string[] | {
|
|
187
|
+
} & {
|
|
188
|
+
openapi?: string | string[] | {
|
|
276
189
|
source: string;
|
|
277
190
|
directory?: string | undefined;
|
|
278
|
-
};
|
|
279
|
-
icon?: string | {
|
|
280
|
-
name: string;
|
|
281
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
282
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
283
191
|
} | undefined;
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
192
|
+
asyncapi?: string | string[] | {
|
|
193
|
+
source: string;
|
|
194
|
+
directory?: string | undefined;
|
|
195
|
+
} | undefined;
|
|
196
|
+
} & {
|
|
197
|
+
pages?: import("./divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
198
|
+
}), z.ZodTypeDef, string | ({
|
|
290
199
|
group: string;
|
|
291
|
-
pages: any[];
|
|
292
200
|
icon?: string | {
|
|
293
201
|
name: string;
|
|
294
202
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -299,14 +207,20 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exte
|
|
|
299
207
|
tag?: string | undefined;
|
|
300
208
|
hidden?: boolean | undefined;
|
|
301
209
|
root?: string | undefined;
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
210
|
+
} & {
|
|
211
|
+
openapi?: string | string[] | {
|
|
212
|
+
source: string;
|
|
213
|
+
directory?: string | undefined;
|
|
214
|
+
} | undefined;
|
|
215
|
+
asyncapi?: string | string[] | {
|
|
307
216
|
source: string;
|
|
308
217
|
directory?: string | undefined;
|
|
309
|
-
};
|
|
218
|
+
} | undefined;
|
|
219
|
+
} & {
|
|
220
|
+
pages?: import("./divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
221
|
+
})>, "many">;
|
|
222
|
+
}>, "strip", z.ZodTypeAny, {
|
|
223
|
+
pages: (string | ({
|
|
310
224
|
group: string;
|
|
311
225
|
icon?: string | {
|
|
312
226
|
name: string;
|
|
@@ -315,28 +229,24 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exte
|
|
|
315
229
|
} | undefined;
|
|
316
230
|
expanded?: boolean | undefined;
|
|
317
231
|
public?: boolean | undefined;
|
|
318
|
-
pages?: any[] | undefined;
|
|
319
232
|
tag?: string | undefined;
|
|
320
233
|
hidden?: boolean | undefined;
|
|
321
234
|
root?: string | undefined;
|
|
322
|
-
}
|
|
323
|
-
|
|
324
|
-
asyncapi: string | string[] | {
|
|
235
|
+
} & {
|
|
236
|
+
openapi?: string | string[] | {
|
|
325
237
|
source: string;
|
|
326
238
|
directory?: string | undefined;
|
|
327
|
-
};
|
|
328
|
-
icon?: string | {
|
|
329
|
-
name: string;
|
|
330
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
331
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
332
239
|
} | undefined;
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
}
|
|
240
|
+
asyncapi?: string | string[] | {
|
|
241
|
+
source: string;
|
|
242
|
+
directory?: string | undefined;
|
|
243
|
+
} | undefined;
|
|
244
|
+
} & {
|
|
245
|
+
pages?: import("./divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
246
|
+
}))[];
|
|
247
|
+
global?: import("./divisionNav.js").GlobalNavigation | undefined;
|
|
248
|
+
}, {
|
|
249
|
+
pages: (string | ({
|
|
340
250
|
group: string;
|
|
341
251
|
icon?: string | {
|
|
342
252
|
name: string;
|
|
@@ -345,21 +255,21 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exte
|
|
|
345
255
|
} | undefined;
|
|
346
256
|
expanded?: boolean | undefined;
|
|
347
257
|
public?: boolean | undefined;
|
|
348
|
-
pages?: any[] | undefined;
|
|
349
258
|
tag?: string | undefined;
|
|
350
259
|
hidden?: boolean | undefined;
|
|
351
260
|
root?: string | undefined;
|
|
352
|
-
}
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
}
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
}
|
|
362
|
-
|
|
261
|
+
} & {
|
|
262
|
+
openapi?: string | string[] | {
|
|
263
|
+
source: string;
|
|
264
|
+
directory?: string | undefined;
|
|
265
|
+
} | undefined;
|
|
266
|
+
asyncapi?: string | string[] | {
|
|
267
|
+
source: string;
|
|
268
|
+
directory?: string | undefined;
|
|
269
|
+
} | undefined;
|
|
270
|
+
} & {
|
|
271
|
+
pages?: import("./divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
272
|
+
}))[];
|
|
363
273
|
global?: import("./divisionNav.js").GlobalNavigation | undefined;
|
|
364
274
|
}>]>;
|
|
365
275
|
export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
@@ -399,9 +309,93 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
399
309
|
}, {
|
|
400
310
|
anchors: import("./divisionNav.js").AnchorNavigation<"decorated">[];
|
|
401
311
|
}>, z.ZodObject<{
|
|
402
|
-
groups: z.ZodArray<z.
|
|
403
|
-
group:
|
|
404
|
-
|
|
312
|
+
groups: z.ZodArray<z.ZodType<Omit<{
|
|
313
|
+
group: string;
|
|
314
|
+
icon?: string | {
|
|
315
|
+
name: string;
|
|
316
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
317
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
318
|
+
} | undefined;
|
|
319
|
+
expanded?: boolean | undefined;
|
|
320
|
+
public?: boolean | undefined;
|
|
321
|
+
tag?: string | undefined;
|
|
322
|
+
hidden?: boolean | undefined;
|
|
323
|
+
root?: string | undefined;
|
|
324
|
+
}, "root"> & {
|
|
325
|
+
pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
|
|
326
|
+
root?: import("../index.js").DecoratedPageConfig;
|
|
327
|
+
}, z.ZodTypeDef, Omit<{
|
|
328
|
+
group: string;
|
|
329
|
+
icon?: string | {
|
|
330
|
+
name: string;
|
|
331
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
332
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
333
|
+
} | undefined;
|
|
334
|
+
expanded?: boolean | undefined;
|
|
335
|
+
public?: boolean | undefined;
|
|
336
|
+
tag?: string | undefined;
|
|
337
|
+
hidden?: boolean | undefined;
|
|
338
|
+
root?: string | undefined;
|
|
339
|
+
}, "root"> & {
|
|
340
|
+
pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
|
|
341
|
+
root?: import("../index.js").DecoratedPageConfig;
|
|
342
|
+
}>, "many">;
|
|
343
|
+
}, "strip", z.ZodTypeAny, {
|
|
344
|
+
groups: (Omit<{
|
|
345
|
+
group: string;
|
|
346
|
+
icon?: string | {
|
|
347
|
+
name: string;
|
|
348
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
349
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
350
|
+
} | undefined;
|
|
351
|
+
expanded?: boolean | undefined;
|
|
352
|
+
public?: boolean | undefined;
|
|
353
|
+
tag?: string | undefined;
|
|
354
|
+
hidden?: boolean | undefined;
|
|
355
|
+
root?: string | undefined;
|
|
356
|
+
}, "root"> & {
|
|
357
|
+
pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
|
|
358
|
+
root?: import("../index.js").DecoratedPageConfig;
|
|
359
|
+
})[];
|
|
360
|
+
}, {
|
|
361
|
+
groups: (Omit<{
|
|
362
|
+
group: string;
|
|
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
|
+
expanded?: boolean | undefined;
|
|
369
|
+
public?: boolean | undefined;
|
|
370
|
+
tag?: string | undefined;
|
|
371
|
+
hidden?: boolean | undefined;
|
|
372
|
+
root?: string | undefined;
|
|
373
|
+
}, "root"> & {
|
|
374
|
+
pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
|
|
375
|
+
root?: import("../index.js").DecoratedPageConfig;
|
|
376
|
+
})[];
|
|
377
|
+
}>, z.ZodObject<{
|
|
378
|
+
pages: z.ZodArray<z.ZodType<z.objectOutputType<{
|
|
379
|
+
href: z.ZodString;
|
|
380
|
+
title: z.ZodString;
|
|
381
|
+
sidebarTitle: z.ZodOptional<z.ZodString>;
|
|
382
|
+
description: z.ZodOptional<z.ZodString>;
|
|
383
|
+
canonical: z.ZodOptional<z.ZodString>;
|
|
384
|
+
'og:title': z.ZodOptional<z.ZodString>;
|
|
385
|
+
'og:url': z.ZodOptional<z.ZodString>;
|
|
386
|
+
api: z.ZodOptional<z.ZodString>;
|
|
387
|
+
openapi: z.ZodOptional<z.ZodString>;
|
|
388
|
+
asyncapi: z.ZodOptional<z.ZodString>;
|
|
389
|
+
contentType: z.ZodOptional<z.ZodString>;
|
|
390
|
+
authMethod: z.ZodOptional<z.ZodString>;
|
|
391
|
+
auth: z.ZodOptional<z.ZodString>;
|
|
392
|
+
version: z.ZodOptional<z.ZodString>;
|
|
393
|
+
mode: z.ZodOptional<z.ZodString>;
|
|
394
|
+
hideFooterPagination: z.ZodOptional<z.ZodBoolean>;
|
|
395
|
+
authors: z.ZodOptional<z.ZodUnknown>;
|
|
396
|
+
lastUpdatedDate: z.ZodOptional<z.ZodString>;
|
|
397
|
+
createdDate: z.ZodOptional<z.ZodString>;
|
|
398
|
+
'openapi-schema': z.ZodOptional<z.ZodString>;
|
|
405
399
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
406
400
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
407
401
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -415,112 +409,22 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
415
409
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
416
410
|
library?: "fontawesome" | "lucide" | undefined;
|
|
417
411
|
}>]>>;
|
|
418
|
-
|
|
419
|
-
root: z.ZodOptional<z.ZodObject<{
|
|
420
|
-
href: z.ZodString;
|
|
421
|
-
title: z.ZodString;
|
|
422
|
-
sidebarTitle: z.ZodOptional<z.ZodString>;
|
|
423
|
-
description: z.ZodOptional<z.ZodString>;
|
|
424
|
-
api: z.ZodOptional<z.ZodString>;
|
|
425
|
-
openapi: z.ZodOptional<z.ZodString>;
|
|
426
|
-
asyncapi: z.ZodOptional<z.ZodString>;
|
|
427
|
-
contentType: z.ZodOptional<z.ZodString>;
|
|
428
|
-
authMethod: z.ZodOptional<z.ZodString>;
|
|
429
|
-
auth: z.ZodOptional<z.ZodString>;
|
|
430
|
-
version: z.ZodOptional<z.ZodString>;
|
|
431
|
-
mode: z.ZodOptional<z.ZodString>;
|
|
432
|
-
hideFooterPagination: z.ZodOptional<z.ZodBoolean>;
|
|
433
|
-
authors: z.ZodOptional<z.ZodUnknown>;
|
|
434
|
-
lastUpdatedDate: z.ZodOptional<z.ZodString>;
|
|
435
|
-
createdDate: z.ZodOptional<z.ZodString>;
|
|
436
|
-
'openapi-schema': z.ZodOptional<z.ZodString>;
|
|
437
|
-
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
438
|
-
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
439
|
-
name: z.ZodEffects<z.ZodString, string, string>;
|
|
440
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
441
|
-
}, "strip", z.ZodTypeAny, {
|
|
442
|
-
name: string;
|
|
443
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
444
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
445
|
-
}, {
|
|
446
|
-
name: string;
|
|
447
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
448
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
449
|
-
}>]>>;
|
|
450
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
451
|
-
url: z.ZodOptional<z.ZodString>;
|
|
452
|
-
hideApiMarker: z.ZodOptional<z.ZodBoolean>;
|
|
453
|
-
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
454
|
-
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
455
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
456
|
-
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
457
|
-
}, "strip", z.ZodTypeAny, {
|
|
458
|
-
href: string;
|
|
459
|
-
title: string;
|
|
460
|
-
url?: string | undefined;
|
|
461
|
-
icon?: string | {
|
|
462
|
-
name: string;
|
|
463
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
464
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
465
|
-
} | undefined;
|
|
466
|
-
version?: string | undefined;
|
|
467
|
-
openapi?: string | undefined;
|
|
468
|
-
auth?: string | undefined;
|
|
469
|
-
mode?: string | undefined;
|
|
470
|
-
public?: boolean | undefined;
|
|
471
|
-
api?: string | undefined;
|
|
472
|
-
asyncapi?: string | undefined;
|
|
473
|
-
description?: string | undefined;
|
|
474
|
-
sidebarTitle?: string | undefined;
|
|
475
|
-
contentType?: string | undefined;
|
|
476
|
-
authMethod?: string | undefined;
|
|
477
|
-
hideFooterPagination?: boolean | undefined;
|
|
478
|
-
authors?: unknown;
|
|
479
|
-
lastUpdatedDate?: string | undefined;
|
|
480
|
-
createdDate?: string | undefined;
|
|
481
|
-
'openapi-schema'?: string | undefined;
|
|
482
|
-
tag?: string | undefined;
|
|
483
|
-
hideApiMarker?: boolean | undefined;
|
|
484
|
-
noindex?: boolean | undefined;
|
|
485
|
-
isPublic?: boolean | undefined;
|
|
486
|
-
deprecated?: boolean | undefined;
|
|
487
|
-
}, {
|
|
488
|
-
href: string;
|
|
489
|
-
title: string;
|
|
490
|
-
url?: string | undefined;
|
|
491
|
-
icon?: string | {
|
|
492
|
-
name: string;
|
|
493
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
494
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
495
|
-
} | undefined;
|
|
496
|
-
version?: string | undefined;
|
|
497
|
-
openapi?: string | undefined;
|
|
498
|
-
auth?: string | undefined;
|
|
499
|
-
mode?: string | undefined;
|
|
500
|
-
public?: boolean | undefined;
|
|
501
|
-
api?: string | undefined;
|
|
502
|
-
asyncapi?: string | undefined;
|
|
503
|
-
description?: string | undefined;
|
|
504
|
-
sidebarTitle?: string | undefined;
|
|
505
|
-
contentType?: string | undefined;
|
|
506
|
-
authMethod?: string | undefined;
|
|
507
|
-
hideFooterPagination?: boolean | undefined;
|
|
508
|
-
authors?: unknown;
|
|
509
|
-
lastUpdatedDate?: string | undefined;
|
|
510
|
-
createdDate?: string | undefined;
|
|
511
|
-
'openapi-schema'?: string | undefined;
|
|
512
|
-
tag?: string | undefined;
|
|
513
|
-
hideApiMarker?: boolean | undefined;
|
|
514
|
-
noindex?: boolean | undefined;
|
|
515
|
-
isPublic?: boolean | undefined;
|
|
516
|
-
deprecated?: boolean | undefined;
|
|
517
|
-
}>>;
|
|
518
|
-
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
412
|
+
iconType: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
519
413
|
tag: z.ZodOptional<z.ZodString>;
|
|
520
|
-
|
|
521
|
-
|
|
414
|
+
url: z.ZodOptional<z.ZodString>;
|
|
415
|
+
hideApiMarker: z.ZodOptional<z.ZodBoolean>;
|
|
416
|
+
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
417
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
418
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
419
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
420
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
421
|
+
groups: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
422
|
+
robots: z.ZodOptional<z.ZodString>;
|
|
423
|
+
playground: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
424
|
+
keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
425
|
+
timestamp: z.ZodOptional<z.ZodBoolean>;
|
|
426
|
+
}, z.ZodTypeAny, "passthrough"> | (Omit<{
|
|
522
427
|
group: string;
|
|
523
|
-
pages: any[];
|
|
524
428
|
icon?: string | {
|
|
525
429
|
name: string;
|
|
526
430
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -530,40 +434,60 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
530
434
|
public?: boolean | undefined;
|
|
531
435
|
tag?: string | undefined;
|
|
532
436
|
hidden?: boolean | undefined;
|
|
533
|
-
root?:
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
437
|
+
root?: string | undefined;
|
|
438
|
+
}, "root"> & {
|
|
439
|
+
pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
|
|
440
|
+
root?: import("../index.js").DecoratedPageConfig;
|
|
441
|
+
}), z.ZodTypeDef, z.objectOutputType<{
|
|
442
|
+
href: z.ZodString;
|
|
443
|
+
title: z.ZodString;
|
|
444
|
+
sidebarTitle: z.ZodOptional<z.ZodString>;
|
|
445
|
+
description: z.ZodOptional<z.ZodString>;
|
|
446
|
+
canonical: z.ZodOptional<z.ZodString>;
|
|
447
|
+
'og:title': z.ZodOptional<z.ZodString>;
|
|
448
|
+
'og:url': z.ZodOptional<z.ZodString>;
|
|
449
|
+
api: z.ZodOptional<z.ZodString>;
|
|
450
|
+
openapi: z.ZodOptional<z.ZodString>;
|
|
451
|
+
asyncapi: z.ZodOptional<z.ZodString>;
|
|
452
|
+
contentType: z.ZodOptional<z.ZodString>;
|
|
453
|
+
authMethod: z.ZodOptional<z.ZodString>;
|
|
454
|
+
auth: z.ZodOptional<z.ZodString>;
|
|
455
|
+
version: z.ZodOptional<z.ZodString>;
|
|
456
|
+
mode: z.ZodOptional<z.ZodString>;
|
|
457
|
+
hideFooterPagination: z.ZodOptional<z.ZodBoolean>;
|
|
458
|
+
authors: z.ZodOptional<z.ZodUnknown>;
|
|
459
|
+
lastUpdatedDate: z.ZodOptional<z.ZodString>;
|
|
460
|
+
createdDate: z.ZodOptional<z.ZodString>;
|
|
461
|
+
'openapi-schema': z.ZodOptional<z.ZodString>;
|
|
462
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
463
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
464
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
465
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
466
|
+
}, "strip", z.ZodTypeAny, {
|
|
467
|
+
name: string;
|
|
468
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
469
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
470
|
+
}, {
|
|
471
|
+
name: string;
|
|
472
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
473
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
474
|
+
}>]>>;
|
|
475
|
+
iconType: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
476
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
477
|
+
url: z.ZodOptional<z.ZodString>;
|
|
478
|
+
hideApiMarker: z.ZodOptional<z.ZodBoolean>;
|
|
479
|
+
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
480
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
481
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
482
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
483
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
484
|
+
groups: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
485
|
+
robots: z.ZodOptional<z.ZodString>;
|
|
486
|
+
playground: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
487
|
+
keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
488
|
+
timestamp: z.ZodOptional<z.ZodBoolean>;
|
|
489
|
+
}, z.ZodTypeAny, "passthrough"> | (Omit<{
|
|
565
490
|
group: string;
|
|
566
|
-
pages: any[];
|
|
567
491
|
icon?: string | {
|
|
568
492
|
name: string;
|
|
569
493
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -573,42 +497,62 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
573
497
|
public?: boolean | undefined;
|
|
574
498
|
tag?: string | undefined;
|
|
575
499
|
hidden?: boolean | undefined;
|
|
576
|
-
root?:
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
name: string;
|
|
582
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
583
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
584
|
-
} | undefined;
|
|
585
|
-
version?: string | undefined;
|
|
586
|
-
openapi?: string | undefined;
|
|
587
|
-
auth?: string | undefined;
|
|
588
|
-
mode?: string | undefined;
|
|
589
|
-
public?: boolean | undefined;
|
|
590
|
-
api?: string | undefined;
|
|
591
|
-
asyncapi?: string | undefined;
|
|
592
|
-
description?: string | undefined;
|
|
593
|
-
sidebarTitle?: string | undefined;
|
|
594
|
-
contentType?: string | undefined;
|
|
595
|
-
authMethod?: string | undefined;
|
|
596
|
-
hideFooterPagination?: boolean | undefined;
|
|
597
|
-
authors?: unknown;
|
|
598
|
-
lastUpdatedDate?: string | undefined;
|
|
599
|
-
createdDate?: string | undefined;
|
|
600
|
-
'openapi-schema'?: string | undefined;
|
|
601
|
-
tag?: string | undefined;
|
|
602
|
-
hideApiMarker?: boolean | undefined;
|
|
603
|
-
noindex?: boolean | undefined;
|
|
604
|
-
isPublic?: boolean | undefined;
|
|
605
|
-
deprecated?: boolean | undefined;
|
|
606
|
-
} | undefined;
|
|
607
|
-
}>, "many">;
|
|
500
|
+
root?: string | undefined;
|
|
501
|
+
}, "root"> & {
|
|
502
|
+
pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
|
|
503
|
+
root?: import("../index.js").DecoratedPageConfig;
|
|
504
|
+
})>, "many">;
|
|
608
505
|
}, "strip", z.ZodTypeAny, {
|
|
609
|
-
|
|
506
|
+
pages: (z.objectOutputType<{
|
|
507
|
+
href: z.ZodString;
|
|
508
|
+
title: z.ZodString;
|
|
509
|
+
sidebarTitle: z.ZodOptional<z.ZodString>;
|
|
510
|
+
description: z.ZodOptional<z.ZodString>;
|
|
511
|
+
canonical: z.ZodOptional<z.ZodString>;
|
|
512
|
+
'og:title': z.ZodOptional<z.ZodString>;
|
|
513
|
+
'og:url': z.ZodOptional<z.ZodString>;
|
|
514
|
+
api: z.ZodOptional<z.ZodString>;
|
|
515
|
+
openapi: z.ZodOptional<z.ZodString>;
|
|
516
|
+
asyncapi: z.ZodOptional<z.ZodString>;
|
|
517
|
+
contentType: z.ZodOptional<z.ZodString>;
|
|
518
|
+
authMethod: z.ZodOptional<z.ZodString>;
|
|
519
|
+
auth: z.ZodOptional<z.ZodString>;
|
|
520
|
+
version: z.ZodOptional<z.ZodString>;
|
|
521
|
+
mode: z.ZodOptional<z.ZodString>;
|
|
522
|
+
hideFooterPagination: z.ZodOptional<z.ZodBoolean>;
|
|
523
|
+
authors: z.ZodOptional<z.ZodUnknown>;
|
|
524
|
+
lastUpdatedDate: z.ZodOptional<z.ZodString>;
|
|
525
|
+
createdDate: z.ZodOptional<z.ZodString>;
|
|
526
|
+
'openapi-schema': z.ZodOptional<z.ZodString>;
|
|
527
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
528
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
529
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
530
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
531
|
+
}, "strip", z.ZodTypeAny, {
|
|
532
|
+
name: string;
|
|
533
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
534
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
535
|
+
}, {
|
|
536
|
+
name: string;
|
|
537
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
538
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
539
|
+
}>]>>;
|
|
540
|
+
iconType: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
541
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
542
|
+
url: z.ZodOptional<z.ZodString>;
|
|
543
|
+
hideApiMarker: z.ZodOptional<z.ZodBoolean>;
|
|
544
|
+
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
545
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
546
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
547
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
548
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
549
|
+
groups: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
550
|
+
robots: z.ZodOptional<z.ZodString>;
|
|
551
|
+
playground: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
552
|
+
keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
553
|
+
timestamp: z.ZodOptional<z.ZodBoolean>;
|
|
554
|
+
}, z.ZodTypeAny, "passthrough"> | (Omit<{
|
|
610
555
|
group: string;
|
|
611
|
-
pages: any[];
|
|
612
556
|
icon?: string | {
|
|
613
557
|
name: string;
|
|
614
558
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -618,42 +562,62 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
618
562
|
public?: boolean | undefined;
|
|
619
563
|
tag?: string | undefined;
|
|
620
564
|
hidden?: boolean | undefined;
|
|
621
|
-
root?:
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
name: string;
|
|
627
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
628
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
629
|
-
} | undefined;
|
|
630
|
-
version?: string | undefined;
|
|
631
|
-
openapi?: string | undefined;
|
|
632
|
-
auth?: string | undefined;
|
|
633
|
-
mode?: string | undefined;
|
|
634
|
-
public?: boolean | undefined;
|
|
635
|
-
api?: string | undefined;
|
|
636
|
-
asyncapi?: string | undefined;
|
|
637
|
-
description?: string | undefined;
|
|
638
|
-
sidebarTitle?: string | undefined;
|
|
639
|
-
contentType?: string | undefined;
|
|
640
|
-
authMethod?: string | undefined;
|
|
641
|
-
hideFooterPagination?: boolean | undefined;
|
|
642
|
-
authors?: unknown;
|
|
643
|
-
lastUpdatedDate?: string | undefined;
|
|
644
|
-
createdDate?: string | undefined;
|
|
645
|
-
'openapi-schema'?: string | undefined;
|
|
646
|
-
tag?: string | undefined;
|
|
647
|
-
hideApiMarker?: boolean | undefined;
|
|
648
|
-
noindex?: boolean | undefined;
|
|
649
|
-
isPublic?: boolean | undefined;
|
|
650
|
-
deprecated?: boolean | undefined;
|
|
651
|
-
} | undefined;
|
|
652
|
-
}[];
|
|
565
|
+
root?: string | undefined;
|
|
566
|
+
}, "root"> & {
|
|
567
|
+
pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
|
|
568
|
+
root?: import("../index.js").DecoratedPageConfig;
|
|
569
|
+
}))[];
|
|
653
570
|
}, {
|
|
654
|
-
|
|
571
|
+
pages: (z.objectOutputType<{
|
|
572
|
+
href: z.ZodString;
|
|
573
|
+
title: z.ZodString;
|
|
574
|
+
sidebarTitle: z.ZodOptional<z.ZodString>;
|
|
575
|
+
description: z.ZodOptional<z.ZodString>;
|
|
576
|
+
canonical: z.ZodOptional<z.ZodString>;
|
|
577
|
+
'og:title': z.ZodOptional<z.ZodString>;
|
|
578
|
+
'og:url': z.ZodOptional<z.ZodString>;
|
|
579
|
+
api: z.ZodOptional<z.ZodString>;
|
|
580
|
+
openapi: z.ZodOptional<z.ZodString>;
|
|
581
|
+
asyncapi: z.ZodOptional<z.ZodString>;
|
|
582
|
+
contentType: z.ZodOptional<z.ZodString>;
|
|
583
|
+
authMethod: z.ZodOptional<z.ZodString>;
|
|
584
|
+
auth: z.ZodOptional<z.ZodString>;
|
|
585
|
+
version: z.ZodOptional<z.ZodString>;
|
|
586
|
+
mode: z.ZodOptional<z.ZodString>;
|
|
587
|
+
hideFooterPagination: z.ZodOptional<z.ZodBoolean>;
|
|
588
|
+
authors: z.ZodOptional<z.ZodUnknown>;
|
|
589
|
+
lastUpdatedDate: z.ZodOptional<z.ZodString>;
|
|
590
|
+
createdDate: z.ZodOptional<z.ZodString>;
|
|
591
|
+
'openapi-schema': z.ZodOptional<z.ZodString>;
|
|
592
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
593
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
594
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
595
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
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
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
600
|
+
}, {
|
|
601
|
+
name: string;
|
|
602
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
603
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
604
|
+
}>]>>;
|
|
605
|
+
iconType: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
606
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
607
|
+
url: z.ZodOptional<z.ZodString>;
|
|
608
|
+
hideApiMarker: z.ZodOptional<z.ZodBoolean>;
|
|
609
|
+
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
610
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
611
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
612
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
613
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
614
|
+
groups: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
615
|
+
robots: z.ZodOptional<z.ZodString>;
|
|
616
|
+
playground: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
617
|
+
keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
618
|
+
timestamp: z.ZodOptional<z.ZodBoolean>;
|
|
619
|
+
}, z.ZodTypeAny, "passthrough"> | (Omit<{
|
|
655
620
|
group: string;
|
|
656
|
-
pages: any[];
|
|
657
621
|
icon?: string | {
|
|
658
622
|
name: string;
|
|
659
623
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -663,44 +627,11 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
663
627
|
public?: boolean | undefined;
|
|
664
628
|
tag?: string | undefined;
|
|
665
629
|
hidden?: boolean | undefined;
|
|
666
|
-
root?:
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
name: string;
|
|
672
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
673
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
674
|
-
} | undefined;
|
|
675
|
-
version?: string | undefined;
|
|
676
|
-
openapi?: string | undefined;
|
|
677
|
-
auth?: string | undefined;
|
|
678
|
-
mode?: string | undefined;
|
|
679
|
-
public?: boolean | undefined;
|
|
680
|
-
api?: string | undefined;
|
|
681
|
-
asyncapi?: string | undefined;
|
|
682
|
-
description?: string | undefined;
|
|
683
|
-
sidebarTitle?: string | undefined;
|
|
684
|
-
contentType?: string | undefined;
|
|
685
|
-
authMethod?: string | undefined;
|
|
686
|
-
hideFooterPagination?: boolean | undefined;
|
|
687
|
-
authors?: unknown;
|
|
688
|
-
lastUpdatedDate?: string | undefined;
|
|
689
|
-
createdDate?: string | undefined;
|
|
690
|
-
'openapi-schema'?: string | undefined;
|
|
691
|
-
tag?: string | undefined;
|
|
692
|
-
hideApiMarker?: boolean | undefined;
|
|
693
|
-
noindex?: boolean | undefined;
|
|
694
|
-
isPublic?: boolean | undefined;
|
|
695
|
-
deprecated?: boolean | undefined;
|
|
696
|
-
} | undefined;
|
|
697
|
-
}[];
|
|
698
|
-
}>, z.ZodObject<{
|
|
699
|
-
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
700
|
-
}, "strip", z.ZodTypeAny, {
|
|
701
|
-
pages: any[];
|
|
702
|
-
}, {
|
|
703
|
-
pages: any[];
|
|
630
|
+
root?: string | undefined;
|
|
631
|
+
}, "root"> & {
|
|
632
|
+
pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
|
|
633
|
+
root?: import("../index.js").DecoratedPageConfig;
|
|
634
|
+
}))[];
|
|
704
635
|
}>]>, z.ZodObject<{
|
|
705
636
|
global: z.ZodOptional<z.ZodType<import("./divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./divisionNav.js").GlobalNavigation>>;
|
|
706
637
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -712,3 +643,4 @@ export type NavigationConfig = z.infer<typeof navigationSchema>;
|
|
|
712
643
|
export type DecoratedNavigationConfig = z.infer<typeof decoratedNavigationSchema>;
|
|
713
644
|
export type DivisionNavigationType = ProductConfig | AnchorConfig | TabConfig | DropdownConfig | VersionConfig | LanguageConfig | MenuItemConfig | GroupConfig;
|
|
714
645
|
export type DecoratedDivisionNavigationType = DecoratedProductConfig | DecoratedAnchorConfig | DecoratedTabConfig | DecoratedDropdownConfig | DecoratedVersionConfig | DecoratedLanguageConfig | DecoratedMenuItemConfig | DecoratedGroupConfig;
|
|
646
|
+
export type DecoratedDivisionConfig = DecoratedAnchorConfig | DecoratedTabConfig | DecoratedVersionConfig | DecoratedLanguageConfig | DecoratedDropdownConfig | DecoratedMenuItemConfig | DecoratedProductConfig;
|