@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
|
@@ -254,8 +254,7 @@ export declare const mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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
|
}) & {
|
|
@@ -254,8 +254,7 @@ export declare const mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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
|
}) & {
|