@mintlify/validation 0.1.264 → 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 +30 -18
- package/dist/mint-config/schemas/v2/index.d.ts +640 -340
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +28 -13
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +28 -13
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +96 -17
- package/dist/mint-config/schemas/v2/properties/navigation/groups.js +7 -4
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +68 -32
- package/dist/mint-config/schemas/v2/properties/navigation/languages.js +27 -12
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +28 -13
- package/dist/mint-config/schemas/v2/properties/navigation/version.js +28 -13
- 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
|
@@ -253,8 +253,7 @@ export declare const standardConfigSchema: {
|
|
|
253
253
|
}, {
|
|
254
254
|
anchors: import("../../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
255
255
|
}>, import("zod").ZodObject<{
|
|
256
|
-
groups: import("zod").ZodArray<import("zod").
|
|
257
|
-
group: import("zod").ZodString;
|
|
256
|
+
groups: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodObject<{
|
|
258
257
|
icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
|
|
259
258
|
style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
260
259
|
name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
|
@@ -265,25 +264,9 @@ export declare const standardConfigSchema: {
|
|
|
265
264
|
name: string;
|
|
266
265
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
267
266
|
}>]>>;
|
|
267
|
+
group: import("zod").ZodString;
|
|
268
268
|
hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
269
269
|
root: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
|
|
270
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
271
|
-
group: string;
|
|
272
|
-
icon?: string | {
|
|
273
|
-
name: string;
|
|
274
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
275
|
-
} | undefined;
|
|
276
|
-
hidden?: boolean | undefined;
|
|
277
|
-
root?: string | undefined;
|
|
278
|
-
}, {
|
|
279
|
-
group: string;
|
|
280
|
-
icon?: string | {
|
|
281
|
-
name: string;
|
|
282
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
283
|
-
} | undefined;
|
|
284
|
-
hidden?: boolean | undefined;
|
|
285
|
-
root?: string | undefined;
|
|
286
|
-
}>, import("zod").ZodUnion<[import("zod").ZodObject<{
|
|
287
270
|
openapi: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">, import("zod").ZodObject<{
|
|
288
271
|
source: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
|
289
272
|
directory: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -302,6 +285,13 @@ export declare const standardConfigSchema: {
|
|
|
302
285
|
source: string;
|
|
303
286
|
directory?: string | undefined;
|
|
304
287
|
} | undefined);
|
|
288
|
+
group: string;
|
|
289
|
+
icon?: string | {
|
|
290
|
+
name: string;
|
|
291
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
292
|
+
} | undefined;
|
|
293
|
+
hidden?: boolean | undefined;
|
|
294
|
+
root?: string | undefined;
|
|
305
295
|
}, {
|
|
306
296
|
openapi: (string | string[] | {
|
|
307
297
|
source: string;
|
|
@@ -310,23 +300,49 @@ export declare const standardConfigSchema: {
|
|
|
310
300
|
source: string;
|
|
311
301
|
directory?: string | undefined;
|
|
312
302
|
} | undefined);
|
|
313
|
-
|
|
314
|
-
|
|
303
|
+
group: string;
|
|
304
|
+
icon?: string | {
|
|
305
|
+
name: string;
|
|
306
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
307
|
+
} | undefined;
|
|
308
|
+
hidden?: boolean | undefined;
|
|
309
|
+
root?: string | undefined;
|
|
310
|
+
}>, import("zod").ZodObject<{
|
|
311
|
+
icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
|
|
312
|
+
style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
313
|
+
name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
|
314
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
315
|
+
name: string;
|
|
316
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
317
|
+
}, {
|
|
318
|
+
name: string;
|
|
319
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
320
|
+
}>]>>;
|
|
321
|
+
group: import("zod").ZodString;
|
|
322
|
+
hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
323
|
+
root: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
|
|
324
|
+
pages: import("zod").ZodLazy<import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">>;
|
|
315
325
|
}, "strip", import("zod").ZodTypeAny, {
|
|
326
|
+
group: string;
|
|
316
327
|
pages: any[];
|
|
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
|
+
} | undefined;
|
|
332
|
+
hidden?: boolean | undefined;
|
|
333
|
+
root?: string | undefined;
|
|
317
334
|
}, {
|
|
318
|
-
pages: any[];
|
|
319
|
-
}>>]>>, "many">;
|
|
320
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
321
|
-
groups: ({
|
|
322
335
|
group: string;
|
|
336
|
+
pages: any[];
|
|
323
337
|
icon?: string | {
|
|
324
338
|
name: string;
|
|
325
339
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
326
340
|
} | undefined;
|
|
327
341
|
hidden?: boolean | undefined;
|
|
328
342
|
root?: string | undefined;
|
|
329
|
-
}
|
|
343
|
+
}>]>, "many">;
|
|
344
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
345
|
+
groups: ({
|
|
330
346
|
openapi: (string | string[] | {
|
|
331
347
|
source: string;
|
|
332
348
|
directory?: string | undefined;
|
|
@@ -334,19 +350,25 @@ export declare const standardConfigSchema: {
|
|
|
334
350
|
source: string;
|
|
335
351
|
directory?: string | undefined;
|
|
336
352
|
} | undefined);
|
|
353
|
+
group: string;
|
|
354
|
+
icon?: string | {
|
|
355
|
+
name: string;
|
|
356
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
357
|
+
} | undefined;
|
|
358
|
+
hidden?: boolean | undefined;
|
|
359
|
+
root?: string | undefined;
|
|
337
360
|
} | {
|
|
338
|
-
pages: any[];
|
|
339
|
-
}))[];
|
|
340
|
-
}, {
|
|
341
|
-
groups: ({
|
|
342
361
|
group: string;
|
|
362
|
+
pages: any[];
|
|
343
363
|
icon?: string | {
|
|
344
364
|
name: string;
|
|
345
365
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
346
366
|
} | undefined;
|
|
347
367
|
hidden?: boolean | undefined;
|
|
348
368
|
root?: string | undefined;
|
|
349
|
-
}
|
|
369
|
+
})[];
|
|
370
|
+
}, {
|
|
371
|
+
groups: ({
|
|
350
372
|
openapi: (string | string[] | {
|
|
351
373
|
source: string;
|
|
352
374
|
directory?: string | undefined;
|
|
@@ -354,9 +376,23 @@ export declare const standardConfigSchema: {
|
|
|
354
376
|
source: string;
|
|
355
377
|
directory?: string | undefined;
|
|
356
378
|
} | undefined);
|
|
379
|
+
group: string;
|
|
380
|
+
icon?: string | {
|
|
381
|
+
name: string;
|
|
382
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
383
|
+
} | undefined;
|
|
384
|
+
hidden?: boolean | undefined;
|
|
385
|
+
root?: string | undefined;
|
|
357
386
|
} | {
|
|
387
|
+
group: string;
|
|
358
388
|
pages: any[];
|
|
359
|
-
|
|
389
|
+
icon?: string | {
|
|
390
|
+
name: string;
|
|
391
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
392
|
+
} | undefined;
|
|
393
|
+
hidden?: boolean | undefined;
|
|
394
|
+
root?: string | undefined;
|
|
395
|
+
})[];
|
|
360
396
|
}>, import("zod").ZodObject<{
|
|
361
397
|
pages: import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">;
|
|
362
398
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -254,8 +254,7 @@ export declare const willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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
|
}) & {
|