@mintlify/validation 0.1.263 → 0.1.265
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/index.js +42 -1
- package/dist/mint-config/schemas/v2/index.d.ts +640 -340
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +1 -2
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +33 -15
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +1 -2
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +30 -14
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +96 -17
- package/dist/mint-config/schemas/v2/properties/navigation/groups.js +15 -6
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +68 -32
- package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +1 -2
- package/dist/mint-config/schemas/v2/properties/navigation/languages.js +28 -13
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +1 -2
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +37 -16
- package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +1 -2
- package/dist/mint-config/schemas/v2/properties/navigation/version.js +34 -15
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +128 -68
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +128 -68
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +128 -68
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +128 -68
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +68 -32
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +128 -68
- package/dist/mint-config/validateConfig.d.ts +300 -180
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -9,24 +9,39 @@ import { decoratedGroupsSchema, groupsSchema } from './groups.js';
|
|
|
9
9
|
import { decoratedLanguagesSchema, languagesSchema } from './languages.js';
|
|
10
10
|
import { decoratedPagesSchema, pagesSchema } from './pages.js';
|
|
11
11
|
import { decoratedVersionsSchema, versionsSchema } from './version.js';
|
|
12
|
-
const baseTabSchema = z.object({
|
|
12
|
+
export const baseTabSchema = z.object({
|
|
13
13
|
tab: z.string().nonempty().describe('The name of the tab'),
|
|
14
14
|
icon: iconSchema.optional(),
|
|
15
15
|
hidden: hiddenSchema.optional(),
|
|
16
16
|
});
|
|
17
|
-
export const tabSchema =
|
|
18
|
-
.
|
|
19
|
-
.
|
|
20
|
-
.
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
17
|
+
export const tabSchema = z.union([
|
|
18
|
+
baseTabSchema.extend({ openapi: openApiSchema }),
|
|
19
|
+
baseTabSchema.extend({ href: hrefSchema, openapi: openApiSchema.optional() }),
|
|
20
|
+
baseTabSchema.extend({
|
|
21
|
+
languages: z.lazy(() => languagesSchema),
|
|
22
|
+
openapi: openApiSchema.optional(),
|
|
23
|
+
}),
|
|
24
|
+
baseTabSchema.extend({
|
|
25
|
+
versions: z.lazy(() => versionsSchema),
|
|
26
|
+
openapi: openApiSchema.optional(),
|
|
27
|
+
}),
|
|
28
|
+
baseTabSchema.extend({
|
|
29
|
+
dropdowns: z.lazy(() => dropdownsSchema),
|
|
30
|
+
openapi: openApiSchema.optional(),
|
|
31
|
+
}),
|
|
32
|
+
baseTabSchema.extend({
|
|
33
|
+
anchors: z.lazy(() => anchorsSchema),
|
|
34
|
+
openapi: openApiSchema.optional(),
|
|
35
|
+
}),
|
|
36
|
+
baseTabSchema.extend({
|
|
37
|
+
groups: z.lazy(() => groupsSchema),
|
|
38
|
+
openapi: openApiSchema.optional(),
|
|
39
|
+
}),
|
|
40
|
+
baseTabSchema.extend({
|
|
41
|
+
pages: z.lazy(() => pagesSchema),
|
|
42
|
+
openapi: openApiSchema.optional(),
|
|
43
|
+
}),
|
|
44
|
+
]);
|
|
30
45
|
export const decoratedTabSchema = baseTabSchema.and(z.union([
|
|
31
46
|
z.object({ href: hrefSchema }),
|
|
32
47
|
z.lazy(() => z.object({ languages: decoratedLanguagesSchema })),
|
|
@@ -37,5 +52,11 @@ export const decoratedTabSchema = baseTabSchema.and(z.union([
|
|
|
37
52
|
z.lazy(() => z.object({ pages: decoratedPagesSchema })),
|
|
38
53
|
]));
|
|
39
54
|
export const nonRecursiveTabSchema = baseTabSchema.and(z.object({ href: hrefSchema }));
|
|
40
|
-
export const tabsSchema = z
|
|
41
|
-
|
|
55
|
+
export const tabsSchema = z
|
|
56
|
+
.array(tabSchema)
|
|
57
|
+
.min(1, 'At least one tab must be specified')
|
|
58
|
+
.describe('Organizing by tabs');
|
|
59
|
+
export const decoratedTabsSchema = z
|
|
60
|
+
.array(decoratedTabSchema)
|
|
61
|
+
.min(1, 'At least one tab must be specified')
|
|
62
|
+
.describe('Organizing by tabs');
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { VersionNavigation } from './divisionNav.js';
|
|
3
|
-
declare const baseVersionSchema: z.ZodObject<{
|
|
3
|
+
export declare const baseVersionSchema: z.ZodObject<{
|
|
4
4
|
version: z.ZodString;
|
|
5
5
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
6
6
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -35,4 +35,3 @@ export type VersionsConfig = z.infer<typeof versionsSchema>;
|
|
|
35
35
|
export type VersionConfig = z.infer<typeof versionSchema>;
|
|
36
36
|
export type DecoratedVersionConfig = z.infer<typeof decoratedVersionSchema>;
|
|
37
37
|
export type DecoratedVersionsConfig = z.infer<typeof decoratedVersionsSchema>;
|
|
38
|
-
export {};
|
|
@@ -8,23 +8,38 @@ import { decoratedGroupsSchema, groupsSchema } from './groups.js';
|
|
|
8
8
|
import { decoratedLanguagesSchema, languagesSchema } from './languages.js';
|
|
9
9
|
import { decoratedPagesSchema, pagesSchema } from './pages.js';
|
|
10
10
|
import { decoratedTabsSchema, tabsSchema } from './tabs.js';
|
|
11
|
-
const baseVersionSchema = z.object({
|
|
11
|
+
export const baseVersionSchema = z.object({
|
|
12
12
|
version: z.string().nonempty().describe('The name of the version'),
|
|
13
13
|
hidden: hiddenSchema.optional(),
|
|
14
14
|
});
|
|
15
|
-
export const versionSchema =
|
|
16
|
-
.
|
|
17
|
-
.
|
|
18
|
-
.
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
15
|
+
export const versionSchema = z.union([
|
|
16
|
+
baseVersionSchema.extend({ openapi: openApiSchema }),
|
|
17
|
+
baseVersionSchema.extend({ href: hrefSchema, openapi: openApiSchema.optional() }),
|
|
18
|
+
baseVersionSchema.extend({
|
|
19
|
+
languages: z.lazy(() => languagesSchema),
|
|
20
|
+
openapi: openApiSchema.optional(),
|
|
21
|
+
}),
|
|
22
|
+
baseVersionSchema.extend({
|
|
23
|
+
tabs: z.lazy(() => tabsSchema),
|
|
24
|
+
openapi: openApiSchema.optional(),
|
|
25
|
+
}),
|
|
26
|
+
baseVersionSchema.extend({
|
|
27
|
+
dropdowns: z.lazy(() => dropdownsSchema),
|
|
28
|
+
openapi: openApiSchema.optional(),
|
|
29
|
+
}),
|
|
30
|
+
baseVersionSchema.extend({
|
|
31
|
+
anchors: z.lazy(() => anchorsSchema),
|
|
32
|
+
openapi: openApiSchema.optional(),
|
|
33
|
+
}),
|
|
34
|
+
baseVersionSchema.extend({
|
|
35
|
+
groups: z.lazy(() => groupsSchema),
|
|
36
|
+
openapi: openApiSchema.optional(),
|
|
37
|
+
}),
|
|
38
|
+
baseVersionSchema.extend({
|
|
39
|
+
pages: z.lazy(() => pagesSchema),
|
|
40
|
+
openapi: openApiSchema.optional(),
|
|
41
|
+
}),
|
|
42
|
+
]);
|
|
28
43
|
export const decoratedVersionSchema = baseVersionSchema.and(z.union([
|
|
29
44
|
z.object({ href: hrefSchema }),
|
|
30
45
|
z.lazy(() => z.object({ languages: decoratedLanguagesSchema })),
|
|
@@ -35,7 +50,11 @@ export const decoratedVersionSchema = baseVersionSchema.and(z.union([
|
|
|
35
50
|
z.lazy(() => z.object({ pages: decoratedPagesSchema })),
|
|
36
51
|
]));
|
|
37
52
|
export const nonRecursiveVersionSchema = baseVersionSchema.and(z.object({ href: hrefSchema }));
|
|
38
|
-
export const versionsSchema = z
|
|
53
|
+
export const versionsSchema = z
|
|
54
|
+
.array(versionSchema)
|
|
55
|
+
.min(1, 'At least one version must be specified')
|
|
56
|
+
.describe('Organizing by versions');
|
|
39
57
|
export const decoratedVersionsSchema = z
|
|
40
58
|
.array(decoratedVersionSchema)
|
|
59
|
+
.min(1, 'At least one version must be specified')
|
|
41
60
|
.describe('Organizing by versions');
|
|
@@ -254,8 +254,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
254
254
|
}, {
|
|
255
255
|
anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
256
256
|
}>, z.ZodObject<{
|
|
257
|
-
groups: z.ZodArray<z.
|
|
258
|
-
group: z.ZodString;
|
|
257
|
+
groups: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
259
258
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
260
259
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
261
260
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -266,25 +265,9 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
266
265
|
name: string;
|
|
267
266
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
268
267
|
}>]>>;
|
|
268
|
+
group: z.ZodString;
|
|
269
269
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
270
270
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
271
|
-
}, "strip", z.ZodTypeAny, {
|
|
272
|
-
group: string;
|
|
273
|
-
icon?: string | {
|
|
274
|
-
name: string;
|
|
275
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
276
|
-
} | undefined;
|
|
277
|
-
hidden?: boolean | undefined;
|
|
278
|
-
root?: string | undefined;
|
|
279
|
-
}, {
|
|
280
|
-
group: string;
|
|
281
|
-
icon?: string | {
|
|
282
|
-
name: string;
|
|
283
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
284
|
-
} | undefined;
|
|
285
|
-
hidden?: boolean | undefined;
|
|
286
|
-
root?: string | undefined;
|
|
287
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
288
271
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
289
272
|
source: z.ZodEffects<z.ZodString, string, string>;
|
|
290
273
|
directory: z.ZodOptional<z.ZodString>;
|
|
@@ -303,6 +286,13 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
303
286
|
source: string;
|
|
304
287
|
directory?: string | undefined;
|
|
305
288
|
} | undefined);
|
|
289
|
+
group: string;
|
|
290
|
+
icon?: string | {
|
|
291
|
+
name: string;
|
|
292
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
293
|
+
} | undefined;
|
|
294
|
+
hidden?: boolean | undefined;
|
|
295
|
+
root?: string | undefined;
|
|
306
296
|
}, {
|
|
307
297
|
openapi: (string | string[] | {
|
|
308
298
|
source: string;
|
|
@@ -311,23 +301,49 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
311
301
|
source: string;
|
|
312
302
|
directory?: string | undefined;
|
|
313
303
|
} | undefined);
|
|
314
|
-
|
|
315
|
-
|
|
304
|
+
group: string;
|
|
305
|
+
icon?: string | {
|
|
306
|
+
name: string;
|
|
307
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
308
|
+
} | undefined;
|
|
309
|
+
hidden?: boolean | undefined;
|
|
310
|
+
root?: string | undefined;
|
|
311
|
+
}>, z.ZodObject<{
|
|
312
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
313
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
314
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
315
|
+
}, "strip", z.ZodTypeAny, {
|
|
316
|
+
name: string;
|
|
317
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
318
|
+
}, {
|
|
319
|
+
name: string;
|
|
320
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
321
|
+
}>]>>;
|
|
322
|
+
group: z.ZodString;
|
|
323
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
324
|
+
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
325
|
+
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
316
326
|
}, "strip", z.ZodTypeAny, {
|
|
327
|
+
group: string;
|
|
317
328
|
pages: any[];
|
|
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
|
+
} | undefined;
|
|
333
|
+
hidden?: boolean | undefined;
|
|
334
|
+
root?: string | undefined;
|
|
318
335
|
}, {
|
|
319
|
-
pages: any[];
|
|
320
|
-
}>>]>>, "many">;
|
|
321
|
-
}, "strip", z.ZodTypeAny, {
|
|
322
|
-
groups: ({
|
|
323
336
|
group: string;
|
|
337
|
+
pages: any[];
|
|
324
338
|
icon?: string | {
|
|
325
339
|
name: string;
|
|
326
340
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
327
341
|
} | undefined;
|
|
328
342
|
hidden?: boolean | undefined;
|
|
329
343
|
root?: string | undefined;
|
|
330
|
-
}
|
|
344
|
+
}>]>, "many">;
|
|
345
|
+
}, "strip", z.ZodTypeAny, {
|
|
346
|
+
groups: ({
|
|
331
347
|
openapi: (string | string[] | {
|
|
332
348
|
source: string;
|
|
333
349
|
directory?: string | undefined;
|
|
@@ -335,19 +351,25 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
335
351
|
source: string;
|
|
336
352
|
directory?: string | undefined;
|
|
337
353
|
} | undefined);
|
|
354
|
+
group: string;
|
|
355
|
+
icon?: string | {
|
|
356
|
+
name: string;
|
|
357
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
358
|
+
} | undefined;
|
|
359
|
+
hidden?: boolean | undefined;
|
|
360
|
+
root?: string | undefined;
|
|
338
361
|
} | {
|
|
339
|
-
pages: any[];
|
|
340
|
-
}))[];
|
|
341
|
-
}, {
|
|
342
|
-
groups: ({
|
|
343
362
|
group: string;
|
|
363
|
+
pages: any[];
|
|
344
364
|
icon?: string | {
|
|
345
365
|
name: string;
|
|
346
366
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
347
367
|
} | undefined;
|
|
348
368
|
hidden?: boolean | undefined;
|
|
349
369
|
root?: string | undefined;
|
|
350
|
-
}
|
|
370
|
+
})[];
|
|
371
|
+
}, {
|
|
372
|
+
groups: ({
|
|
351
373
|
openapi: (string | string[] | {
|
|
352
374
|
source: string;
|
|
353
375
|
directory?: string | undefined;
|
|
@@ -355,9 +377,23 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
355
377
|
source: string;
|
|
356
378
|
directory?: string | undefined;
|
|
357
379
|
} | undefined);
|
|
380
|
+
group: string;
|
|
381
|
+
icon?: string | {
|
|
382
|
+
name: string;
|
|
383
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
384
|
+
} | undefined;
|
|
385
|
+
hidden?: boolean | undefined;
|
|
386
|
+
root?: string | undefined;
|
|
358
387
|
} | {
|
|
388
|
+
group: string;
|
|
359
389
|
pages: any[];
|
|
360
|
-
|
|
390
|
+
icon?: string | {
|
|
391
|
+
name: string;
|
|
392
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
393
|
+
} | undefined;
|
|
394
|
+
hidden?: boolean | undefined;
|
|
395
|
+
root?: string | undefined;
|
|
396
|
+
})[];
|
|
361
397
|
}>, z.ZodObject<{
|
|
362
398
|
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
363
399
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1183,14 +1219,6 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1183
1219
|
anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
1184
1220
|
} | {
|
|
1185
1221
|
groups: ({
|
|
1186
|
-
group: string;
|
|
1187
|
-
icon?: string | {
|
|
1188
|
-
name: string;
|
|
1189
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1190
|
-
} | undefined;
|
|
1191
|
-
hidden?: boolean | undefined;
|
|
1192
|
-
root?: string | undefined;
|
|
1193
|
-
} & ({
|
|
1194
1222
|
openapi: (string | string[] | {
|
|
1195
1223
|
source: string;
|
|
1196
1224
|
directory?: string | undefined;
|
|
@@ -1198,9 +1226,23 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1198
1226
|
source: string;
|
|
1199
1227
|
directory?: string | undefined;
|
|
1200
1228
|
} | undefined);
|
|
1229
|
+
group: string;
|
|
1230
|
+
icon?: string | {
|
|
1231
|
+
name: string;
|
|
1232
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1233
|
+
} | undefined;
|
|
1234
|
+
hidden?: boolean | undefined;
|
|
1235
|
+
root?: string | undefined;
|
|
1201
1236
|
} | {
|
|
1237
|
+
group: string;
|
|
1202
1238
|
pages: any[];
|
|
1203
|
-
|
|
1239
|
+
icon?: string | {
|
|
1240
|
+
name: string;
|
|
1241
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1242
|
+
} | undefined;
|
|
1243
|
+
hidden?: boolean | undefined;
|
|
1244
|
+
root?: string | undefined;
|
|
1245
|
+
})[];
|
|
1204
1246
|
} | {
|
|
1205
1247
|
pages: any[];
|
|
1206
1248
|
}) & {
|
|
@@ -1264,14 +1306,6 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1264
1306
|
anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
1265
1307
|
} | {
|
|
1266
1308
|
groups: ({
|
|
1267
|
-
group: string;
|
|
1268
|
-
icon?: string | {
|
|
1269
|
-
name: string;
|
|
1270
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1271
|
-
} | undefined;
|
|
1272
|
-
hidden?: boolean | undefined;
|
|
1273
|
-
root?: string | undefined;
|
|
1274
|
-
} & ({
|
|
1275
1309
|
openapi: (string | string[] | {
|
|
1276
1310
|
source: string;
|
|
1277
1311
|
directory?: string | undefined;
|
|
@@ -1279,9 +1313,23 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1279
1313
|
source: string;
|
|
1280
1314
|
directory?: string | undefined;
|
|
1281
1315
|
} | undefined);
|
|
1316
|
+
group: string;
|
|
1317
|
+
icon?: string | {
|
|
1318
|
+
name: string;
|
|
1319
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1320
|
+
} | undefined;
|
|
1321
|
+
hidden?: boolean | undefined;
|
|
1322
|
+
root?: string | undefined;
|
|
1282
1323
|
} | {
|
|
1324
|
+
group: string;
|
|
1283
1325
|
pages: any[];
|
|
1284
|
-
|
|
1326
|
+
icon?: string | {
|
|
1327
|
+
name: string;
|
|
1328
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1329
|
+
} | undefined;
|
|
1330
|
+
hidden?: boolean | undefined;
|
|
1331
|
+
root?: string | undefined;
|
|
1332
|
+
})[];
|
|
1285
1333
|
} | {
|
|
1286
1334
|
pages: any[];
|
|
1287
1335
|
}) & {
|
|
@@ -1515,14 +1563,6 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1515
1563
|
anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
1516
1564
|
} | {
|
|
1517
1565
|
groups: ({
|
|
1518
|
-
group: string;
|
|
1519
|
-
icon?: string | {
|
|
1520
|
-
name: string;
|
|
1521
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1522
|
-
} | undefined;
|
|
1523
|
-
hidden?: boolean | undefined;
|
|
1524
|
-
root?: string | undefined;
|
|
1525
|
-
} & ({
|
|
1526
1566
|
openapi: (string | string[] | {
|
|
1527
1567
|
source: string;
|
|
1528
1568
|
directory?: string | undefined;
|
|
@@ -1530,9 +1570,23 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1530
1570
|
source: string;
|
|
1531
1571
|
directory?: string | undefined;
|
|
1532
1572
|
} | undefined);
|
|
1573
|
+
group: string;
|
|
1574
|
+
icon?: string | {
|
|
1575
|
+
name: string;
|
|
1576
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1577
|
+
} | undefined;
|
|
1578
|
+
hidden?: boolean | undefined;
|
|
1579
|
+
root?: string | undefined;
|
|
1533
1580
|
} | {
|
|
1581
|
+
group: string;
|
|
1534
1582
|
pages: any[];
|
|
1535
|
-
|
|
1583
|
+
icon?: string | {
|
|
1584
|
+
name: string;
|
|
1585
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1586
|
+
} | undefined;
|
|
1587
|
+
hidden?: boolean | undefined;
|
|
1588
|
+
root?: string | undefined;
|
|
1589
|
+
})[];
|
|
1536
1590
|
} | {
|
|
1537
1591
|
pages: any[];
|
|
1538
1592
|
}) & {
|
|
@@ -1596,14 +1650,6 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1596
1650
|
anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
1597
1651
|
} | {
|
|
1598
1652
|
groups: ({
|
|
1599
|
-
group: string;
|
|
1600
|
-
icon?: string | {
|
|
1601
|
-
name: string;
|
|
1602
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1603
|
-
} | undefined;
|
|
1604
|
-
hidden?: boolean | undefined;
|
|
1605
|
-
root?: string | undefined;
|
|
1606
|
-
} & ({
|
|
1607
1653
|
openapi: (string | string[] | {
|
|
1608
1654
|
source: string;
|
|
1609
1655
|
directory?: string | undefined;
|
|
@@ -1611,9 +1657,23 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1611
1657
|
source: string;
|
|
1612
1658
|
directory?: string | undefined;
|
|
1613
1659
|
} | undefined);
|
|
1660
|
+
group: string;
|
|
1661
|
+
icon?: string | {
|
|
1662
|
+
name: string;
|
|
1663
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1664
|
+
} | undefined;
|
|
1665
|
+
hidden?: boolean | undefined;
|
|
1666
|
+
root?: string | undefined;
|
|
1614
1667
|
} | {
|
|
1668
|
+
group: string;
|
|
1615
1669
|
pages: any[];
|
|
1616
|
-
|
|
1670
|
+
icon?: string | {
|
|
1671
|
+
name: string;
|
|
1672
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1673
|
+
} | undefined;
|
|
1674
|
+
hidden?: boolean | undefined;
|
|
1675
|
+
root?: string | undefined;
|
|
1676
|
+
})[];
|
|
1617
1677
|
} | {
|
|
1618
1678
|
pages: any[];
|
|
1619
1679
|
}) & {
|