@mintlify/prebuild 1.0.834 → 1.0.841
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/generate.js +5 -2
- package/dist/prebuild/categorizeFilePaths.js +5 -1
- package/dist/prebuild/index.js +5 -0
- package/dist/prebuild/update/ConfigUpdater.d.ts +182 -14
- package/dist/prebuild/update/index.d.ts +182 -14
- package/dist/prebuild/update/resolveImportsAndWriteFiles.js +3 -0
- package/dist/prebuild/warnings.d.ts +7 -0
- package/dist/prebuild/warnings.js +14 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +6 -6
package/dist/generate.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { slugToTitle, optionallyAddLeadingSlash, removeLeadingSlash, optionallyRemoveTrailingSlash, } from '@mintlify/common';
|
|
2
2
|
import { divisions, } from '@mintlify/validation';
|
|
3
|
-
import
|
|
3
|
+
import { addWarning } from './prebuild/warnings.js';
|
|
4
4
|
const handleUnknownPage = (page, type) => {
|
|
5
|
-
|
|
5
|
+
addWarning({
|
|
6
|
+
type: 'missing-nav-page',
|
|
7
|
+
message: `"${page}" is referenced in the ${type}.json navigation but the file does not exist.`,
|
|
8
|
+
});
|
|
6
9
|
return {
|
|
7
10
|
title: slugToTitle(page),
|
|
8
11
|
href: optionallyAddLeadingSlash(page),
|
|
@@ -5,6 +5,7 @@ import * as path from 'path';
|
|
|
5
5
|
import { formatError } from '../errorMessages/formatError.js';
|
|
6
6
|
import { getFileList } from '../fs/index.js';
|
|
7
7
|
import { getFileExtension } from '../utils.js';
|
|
8
|
+
import { addWarning } from './warnings.js';
|
|
8
9
|
export const categorizeFilePaths = async (contentDirectoryPath, mintIgnore = [], disableOpenApi) => {
|
|
9
10
|
const allFiles = getFileList(contentDirectoryPath, contentDirectoryPath, mintIgnore);
|
|
10
11
|
const mdxFiles = [];
|
|
@@ -72,7 +73,10 @@ export const categorizeFilePaths = async (contentDirectoryPath, mintIgnore = [],
|
|
|
72
73
|
}
|
|
73
74
|
}
|
|
74
75
|
catch (error) {
|
|
75
|
-
|
|
76
|
+
addWarning({
|
|
77
|
+
type: 'openapi',
|
|
78
|
+
message: `Error validating OpenAPI file ${filename}: ${error}`,
|
|
79
|
+
});
|
|
76
80
|
}
|
|
77
81
|
}
|
|
78
82
|
if (isAsyncApi) {
|
package/dist/prebuild/index.js
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
import { getConfigPath, getMintIgnore } from '../utils.js';
|
|
2
2
|
import { categorizeFilePaths } from './categorizeFilePaths.js';
|
|
3
3
|
import { update } from './update/index.js';
|
|
4
|
+
import { clearWarnings, checkStrictMode } from './warnings.js';
|
|
4
5
|
export const prebuild = async (contentDirectoryPath, { localSchema, groups, disableOpenApi, strict, } = {}) => {
|
|
5
6
|
if (process.env.IS_MULTI_TENANT === 'true') {
|
|
6
7
|
console.log('Skipping prebuild in multi-tenant mode.');
|
|
7
8
|
return;
|
|
8
9
|
}
|
|
10
|
+
// Clear any warnings from previous runs
|
|
11
|
+
clearWarnings();
|
|
9
12
|
const docsConfigPath = await getConfigPath(contentDirectoryPath, 'docs');
|
|
10
13
|
const mintConfigPath = await getConfigPath(contentDirectoryPath, 'mint');
|
|
11
14
|
if (mintConfigPath == null && docsConfigPath == null) {
|
|
@@ -28,6 +31,8 @@ export const prebuild = async (contentDirectoryPath, { localSchema, groups, disa
|
|
|
28
31
|
disableOpenApi,
|
|
29
32
|
strict,
|
|
30
33
|
});
|
|
34
|
+
// In strict mode, fail if there were any warnings
|
|
35
|
+
checkStrictMode(strict);
|
|
31
36
|
return { fileImportsMap };
|
|
32
37
|
};
|
|
33
38
|
export * from './categorizeFilePaths.js';
|
|
@@ -280,16 +280,40 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
280
280
|
} | {
|
|
281
281
|
type: "github";
|
|
282
282
|
href: string;
|
|
283
|
+
label?: string | undefined;
|
|
284
|
+
} | {
|
|
285
|
+
type: "discord";
|
|
286
|
+
href: string;
|
|
287
|
+
label?: string | undefined;
|
|
283
288
|
} | undefined;
|
|
284
|
-
links?: {
|
|
289
|
+
links?: ({
|
|
285
290
|
href: string;
|
|
286
291
|
label: string;
|
|
292
|
+
type?: undefined;
|
|
287
293
|
icon?: string | {
|
|
288
294
|
name: string;
|
|
289
295
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
290
296
|
library?: "fontawesome" | "lucide" | undefined;
|
|
291
297
|
} | undefined;
|
|
292
|
-
}
|
|
298
|
+
} | {
|
|
299
|
+
type: "github";
|
|
300
|
+
href: string;
|
|
301
|
+
icon?: string | {
|
|
302
|
+
name: string;
|
|
303
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
304
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
305
|
+
} | undefined;
|
|
306
|
+
label?: string | undefined;
|
|
307
|
+
} | {
|
|
308
|
+
type: "discord";
|
|
309
|
+
href: string;
|
|
310
|
+
icon?: string | {
|
|
311
|
+
name: string;
|
|
312
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
313
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
314
|
+
} | undefined;
|
|
315
|
+
label?: string | undefined;
|
|
316
|
+
})[] | undefined;
|
|
293
317
|
} | undefined;
|
|
294
318
|
icons?: {
|
|
295
319
|
library: "fontawesome" | "lucide";
|
|
@@ -602,16 +626,40 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
602
626
|
} | {
|
|
603
627
|
type: "github";
|
|
604
628
|
href: string;
|
|
629
|
+
label?: string | undefined;
|
|
630
|
+
} | {
|
|
631
|
+
type: "discord";
|
|
632
|
+
href: string;
|
|
633
|
+
label?: string | undefined;
|
|
605
634
|
} | undefined;
|
|
606
|
-
links?: {
|
|
635
|
+
links?: ({
|
|
607
636
|
href: string;
|
|
608
637
|
label: string;
|
|
638
|
+
type?: undefined;
|
|
609
639
|
icon?: string | {
|
|
610
640
|
name: string;
|
|
611
641
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
612
642
|
library?: "fontawesome" | "lucide" | undefined;
|
|
613
643
|
} | undefined;
|
|
614
|
-
}
|
|
644
|
+
} | {
|
|
645
|
+
type: "github";
|
|
646
|
+
href: string;
|
|
647
|
+
icon?: string | {
|
|
648
|
+
name: string;
|
|
649
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
650
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
651
|
+
} | undefined;
|
|
652
|
+
label?: string | undefined;
|
|
653
|
+
} | {
|
|
654
|
+
type: "discord";
|
|
655
|
+
href: string;
|
|
656
|
+
icon?: string | {
|
|
657
|
+
name: string;
|
|
658
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
659
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
660
|
+
} | undefined;
|
|
661
|
+
label?: string | undefined;
|
|
662
|
+
})[] | undefined;
|
|
615
663
|
} | undefined;
|
|
616
664
|
icons?: {
|
|
617
665
|
library: "fontawesome" | "lucide";
|
|
@@ -924,16 +972,40 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
924
972
|
} | {
|
|
925
973
|
type: "github";
|
|
926
974
|
href: string;
|
|
975
|
+
label?: string | undefined;
|
|
976
|
+
} | {
|
|
977
|
+
type: "discord";
|
|
978
|
+
href: string;
|
|
979
|
+
label?: string | undefined;
|
|
927
980
|
} | undefined;
|
|
928
|
-
links?: {
|
|
981
|
+
links?: ({
|
|
929
982
|
href: string;
|
|
930
983
|
label: string;
|
|
984
|
+
type?: undefined;
|
|
931
985
|
icon?: string | {
|
|
932
986
|
name: string;
|
|
933
987
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
934
988
|
library?: "fontawesome" | "lucide" | undefined;
|
|
935
989
|
} | undefined;
|
|
936
|
-
}
|
|
990
|
+
} | {
|
|
991
|
+
type: "github";
|
|
992
|
+
href: string;
|
|
993
|
+
icon?: string | {
|
|
994
|
+
name: string;
|
|
995
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
996
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
997
|
+
} | undefined;
|
|
998
|
+
label?: string | undefined;
|
|
999
|
+
} | {
|
|
1000
|
+
type: "discord";
|
|
1001
|
+
href: string;
|
|
1002
|
+
icon?: string | {
|
|
1003
|
+
name: string;
|
|
1004
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1005
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1006
|
+
} | undefined;
|
|
1007
|
+
label?: string | undefined;
|
|
1008
|
+
})[] | undefined;
|
|
937
1009
|
} | undefined;
|
|
938
1010
|
icons?: {
|
|
939
1011
|
library: "fontawesome" | "lucide";
|
|
@@ -1246,16 +1318,40 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1246
1318
|
} | {
|
|
1247
1319
|
type: "github";
|
|
1248
1320
|
href: string;
|
|
1321
|
+
label?: string | undefined;
|
|
1322
|
+
} | {
|
|
1323
|
+
type: "discord";
|
|
1324
|
+
href: string;
|
|
1325
|
+
label?: string | undefined;
|
|
1249
1326
|
} | undefined;
|
|
1250
|
-
links?: {
|
|
1327
|
+
links?: ({
|
|
1251
1328
|
href: string;
|
|
1252
1329
|
label: string;
|
|
1330
|
+
type?: undefined;
|
|
1253
1331
|
icon?: string | {
|
|
1254
1332
|
name: string;
|
|
1255
1333
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1256
1334
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1257
1335
|
} | undefined;
|
|
1258
|
-
}
|
|
1336
|
+
} | {
|
|
1337
|
+
type: "github";
|
|
1338
|
+
href: string;
|
|
1339
|
+
icon?: string | {
|
|
1340
|
+
name: string;
|
|
1341
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1342
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1343
|
+
} | undefined;
|
|
1344
|
+
label?: string | undefined;
|
|
1345
|
+
} | {
|
|
1346
|
+
type: "discord";
|
|
1347
|
+
href: string;
|
|
1348
|
+
icon?: string | {
|
|
1349
|
+
name: string;
|
|
1350
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1351
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1352
|
+
} | undefined;
|
|
1353
|
+
label?: string | undefined;
|
|
1354
|
+
})[] | undefined;
|
|
1259
1355
|
} | undefined;
|
|
1260
1356
|
icons?: {
|
|
1261
1357
|
library: "fontawesome" | "lucide";
|
|
@@ -1568,16 +1664,40 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1568
1664
|
} | {
|
|
1569
1665
|
type: "github";
|
|
1570
1666
|
href: string;
|
|
1667
|
+
label?: string | undefined;
|
|
1668
|
+
} | {
|
|
1669
|
+
type: "discord";
|
|
1670
|
+
href: string;
|
|
1671
|
+
label?: string | undefined;
|
|
1571
1672
|
} | undefined;
|
|
1572
|
-
links?: {
|
|
1673
|
+
links?: ({
|
|
1573
1674
|
href: string;
|
|
1574
1675
|
label: string;
|
|
1676
|
+
type?: undefined;
|
|
1575
1677
|
icon?: string | {
|
|
1576
1678
|
name: string;
|
|
1577
1679
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1578
1680
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1579
1681
|
} | undefined;
|
|
1580
|
-
}
|
|
1682
|
+
} | {
|
|
1683
|
+
type: "github";
|
|
1684
|
+
href: string;
|
|
1685
|
+
icon?: string | {
|
|
1686
|
+
name: string;
|
|
1687
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1688
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1689
|
+
} | undefined;
|
|
1690
|
+
label?: string | undefined;
|
|
1691
|
+
} | {
|
|
1692
|
+
type: "discord";
|
|
1693
|
+
href: string;
|
|
1694
|
+
icon?: string | {
|
|
1695
|
+
name: string;
|
|
1696
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1697
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1698
|
+
} | undefined;
|
|
1699
|
+
label?: string | undefined;
|
|
1700
|
+
})[] | undefined;
|
|
1581
1701
|
} | undefined;
|
|
1582
1702
|
icons?: {
|
|
1583
1703
|
library: "fontawesome" | "lucide";
|
|
@@ -1890,16 +2010,40 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1890
2010
|
} | {
|
|
1891
2011
|
type: "github";
|
|
1892
2012
|
href: string;
|
|
2013
|
+
label?: string | undefined;
|
|
2014
|
+
} | {
|
|
2015
|
+
type: "discord";
|
|
2016
|
+
href: string;
|
|
2017
|
+
label?: string | undefined;
|
|
1893
2018
|
} | undefined;
|
|
1894
|
-
links?: {
|
|
2019
|
+
links?: ({
|
|
1895
2020
|
href: string;
|
|
1896
2021
|
label: string;
|
|
2022
|
+
type?: undefined;
|
|
1897
2023
|
icon?: string | {
|
|
1898
2024
|
name: string;
|
|
1899
2025
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1900
2026
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1901
2027
|
} | undefined;
|
|
1902
|
-
}
|
|
2028
|
+
} | {
|
|
2029
|
+
type: "github";
|
|
2030
|
+
href: string;
|
|
2031
|
+
icon?: string | {
|
|
2032
|
+
name: string;
|
|
2033
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2034
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2035
|
+
} | undefined;
|
|
2036
|
+
label?: string | undefined;
|
|
2037
|
+
} | {
|
|
2038
|
+
type: "discord";
|
|
2039
|
+
href: string;
|
|
2040
|
+
icon?: string | {
|
|
2041
|
+
name: string;
|
|
2042
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2043
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2044
|
+
} | undefined;
|
|
2045
|
+
label?: string | undefined;
|
|
2046
|
+
})[] | undefined;
|
|
1903
2047
|
} | undefined;
|
|
1904
2048
|
icons?: {
|
|
1905
2049
|
library: "fontawesome" | "lucide";
|
|
@@ -2212,16 +2356,40 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2212
2356
|
} | {
|
|
2213
2357
|
type: "github";
|
|
2214
2358
|
href: string;
|
|
2359
|
+
label?: string | undefined;
|
|
2360
|
+
} | {
|
|
2361
|
+
type: "discord";
|
|
2362
|
+
href: string;
|
|
2363
|
+
label?: string | undefined;
|
|
2215
2364
|
} | undefined;
|
|
2216
|
-
links?: {
|
|
2365
|
+
links?: ({
|
|
2217
2366
|
href: string;
|
|
2218
2367
|
label: string;
|
|
2368
|
+
type?: undefined;
|
|
2219
2369
|
icon?: string | {
|
|
2220
2370
|
name: string;
|
|
2221
2371
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2222
2372
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2223
2373
|
} | undefined;
|
|
2224
|
-
}
|
|
2374
|
+
} | {
|
|
2375
|
+
type: "github";
|
|
2376
|
+
href: string;
|
|
2377
|
+
icon?: string | {
|
|
2378
|
+
name: string;
|
|
2379
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2380
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2381
|
+
} | undefined;
|
|
2382
|
+
label?: string | undefined;
|
|
2383
|
+
} | {
|
|
2384
|
+
type: "discord";
|
|
2385
|
+
href: string;
|
|
2386
|
+
icon?: string | {
|
|
2387
|
+
name: string;
|
|
2388
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2389
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2390
|
+
} | undefined;
|
|
2391
|
+
label?: string | undefined;
|
|
2392
|
+
})[] | undefined;
|
|
2225
2393
|
} | undefined;
|
|
2226
2394
|
icons?: {
|
|
2227
2395
|
library: "fontawesome" | "lucide";
|
|
@@ -276,16 +276,40 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
276
276
|
} | {
|
|
277
277
|
type: "github";
|
|
278
278
|
href: string;
|
|
279
|
+
label?: string | undefined;
|
|
280
|
+
} | {
|
|
281
|
+
type: "discord";
|
|
282
|
+
href: string;
|
|
283
|
+
label?: string | undefined;
|
|
279
284
|
} | undefined;
|
|
280
|
-
links?: {
|
|
285
|
+
links?: ({
|
|
281
286
|
href: string;
|
|
282
287
|
label: string;
|
|
288
|
+
type?: undefined;
|
|
283
289
|
icon?: string | {
|
|
284
290
|
name: string;
|
|
285
291
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
286
292
|
library?: "fontawesome" | "lucide" | undefined;
|
|
287
293
|
} | undefined;
|
|
288
|
-
}
|
|
294
|
+
} | {
|
|
295
|
+
type: "github";
|
|
296
|
+
href: string;
|
|
297
|
+
icon?: string | {
|
|
298
|
+
name: string;
|
|
299
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
300
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
301
|
+
} | undefined;
|
|
302
|
+
label?: string | undefined;
|
|
303
|
+
} | {
|
|
304
|
+
type: "discord";
|
|
305
|
+
href: string;
|
|
306
|
+
icon?: string | {
|
|
307
|
+
name: string;
|
|
308
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
309
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
310
|
+
} | undefined;
|
|
311
|
+
label?: string | undefined;
|
|
312
|
+
})[] | undefined;
|
|
289
313
|
} | undefined;
|
|
290
314
|
icons?: {
|
|
291
315
|
library: "fontawesome" | "lucide";
|
|
@@ -598,16 +622,40 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
598
622
|
} | {
|
|
599
623
|
type: "github";
|
|
600
624
|
href: string;
|
|
625
|
+
label?: string | undefined;
|
|
626
|
+
} | {
|
|
627
|
+
type: "discord";
|
|
628
|
+
href: string;
|
|
629
|
+
label?: string | undefined;
|
|
601
630
|
} | undefined;
|
|
602
|
-
links?: {
|
|
631
|
+
links?: ({
|
|
603
632
|
href: string;
|
|
604
633
|
label: string;
|
|
634
|
+
type?: undefined;
|
|
605
635
|
icon?: string | {
|
|
606
636
|
name: string;
|
|
607
637
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
608
638
|
library?: "fontawesome" | "lucide" | undefined;
|
|
609
639
|
} | undefined;
|
|
610
|
-
}
|
|
640
|
+
} | {
|
|
641
|
+
type: "github";
|
|
642
|
+
href: string;
|
|
643
|
+
icon?: string | {
|
|
644
|
+
name: string;
|
|
645
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
646
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
647
|
+
} | undefined;
|
|
648
|
+
label?: string | undefined;
|
|
649
|
+
} | {
|
|
650
|
+
type: "discord";
|
|
651
|
+
href: string;
|
|
652
|
+
icon?: string | {
|
|
653
|
+
name: string;
|
|
654
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
655
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
656
|
+
} | undefined;
|
|
657
|
+
label?: string | undefined;
|
|
658
|
+
})[] | undefined;
|
|
611
659
|
} | undefined;
|
|
612
660
|
icons?: {
|
|
613
661
|
library: "fontawesome" | "lucide";
|
|
@@ -920,16 +968,40 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
920
968
|
} | {
|
|
921
969
|
type: "github";
|
|
922
970
|
href: string;
|
|
971
|
+
label?: string | undefined;
|
|
972
|
+
} | {
|
|
973
|
+
type: "discord";
|
|
974
|
+
href: string;
|
|
975
|
+
label?: string | undefined;
|
|
923
976
|
} | undefined;
|
|
924
|
-
links?: {
|
|
977
|
+
links?: ({
|
|
925
978
|
href: string;
|
|
926
979
|
label: string;
|
|
980
|
+
type?: undefined;
|
|
927
981
|
icon?: string | {
|
|
928
982
|
name: string;
|
|
929
983
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
930
984
|
library?: "fontawesome" | "lucide" | undefined;
|
|
931
985
|
} | undefined;
|
|
932
|
-
}
|
|
986
|
+
} | {
|
|
987
|
+
type: "github";
|
|
988
|
+
href: string;
|
|
989
|
+
icon?: string | {
|
|
990
|
+
name: string;
|
|
991
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
992
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
993
|
+
} | undefined;
|
|
994
|
+
label?: string | undefined;
|
|
995
|
+
} | {
|
|
996
|
+
type: "discord";
|
|
997
|
+
href: string;
|
|
998
|
+
icon?: string | {
|
|
999
|
+
name: string;
|
|
1000
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1001
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1002
|
+
} | undefined;
|
|
1003
|
+
label?: string | undefined;
|
|
1004
|
+
})[] | undefined;
|
|
933
1005
|
} | undefined;
|
|
934
1006
|
icons?: {
|
|
935
1007
|
library: "fontawesome" | "lucide";
|
|
@@ -1242,16 +1314,40 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
1242
1314
|
} | {
|
|
1243
1315
|
type: "github";
|
|
1244
1316
|
href: string;
|
|
1317
|
+
label?: string | undefined;
|
|
1318
|
+
} | {
|
|
1319
|
+
type: "discord";
|
|
1320
|
+
href: string;
|
|
1321
|
+
label?: string | undefined;
|
|
1245
1322
|
} | undefined;
|
|
1246
|
-
links?: {
|
|
1323
|
+
links?: ({
|
|
1247
1324
|
href: string;
|
|
1248
1325
|
label: string;
|
|
1326
|
+
type?: undefined;
|
|
1249
1327
|
icon?: string | {
|
|
1250
1328
|
name: string;
|
|
1251
1329
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1252
1330
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1253
1331
|
} | undefined;
|
|
1254
|
-
}
|
|
1332
|
+
} | {
|
|
1333
|
+
type: "github";
|
|
1334
|
+
href: string;
|
|
1335
|
+
icon?: string | {
|
|
1336
|
+
name: string;
|
|
1337
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1338
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1339
|
+
} | undefined;
|
|
1340
|
+
label?: string | undefined;
|
|
1341
|
+
} | {
|
|
1342
|
+
type: "discord";
|
|
1343
|
+
href: string;
|
|
1344
|
+
icon?: string | {
|
|
1345
|
+
name: string;
|
|
1346
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1347
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1348
|
+
} | undefined;
|
|
1349
|
+
label?: string | undefined;
|
|
1350
|
+
})[] | undefined;
|
|
1255
1351
|
} | undefined;
|
|
1256
1352
|
icons?: {
|
|
1257
1353
|
library: "fontawesome" | "lucide";
|
|
@@ -1564,16 +1660,40 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
1564
1660
|
} | {
|
|
1565
1661
|
type: "github";
|
|
1566
1662
|
href: string;
|
|
1663
|
+
label?: string | undefined;
|
|
1664
|
+
} | {
|
|
1665
|
+
type: "discord";
|
|
1666
|
+
href: string;
|
|
1667
|
+
label?: string | undefined;
|
|
1567
1668
|
} | undefined;
|
|
1568
|
-
links?: {
|
|
1669
|
+
links?: ({
|
|
1569
1670
|
href: string;
|
|
1570
1671
|
label: string;
|
|
1672
|
+
type?: undefined;
|
|
1571
1673
|
icon?: string | {
|
|
1572
1674
|
name: string;
|
|
1573
1675
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1574
1676
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1575
1677
|
} | undefined;
|
|
1576
|
-
}
|
|
1678
|
+
} | {
|
|
1679
|
+
type: "github";
|
|
1680
|
+
href: string;
|
|
1681
|
+
icon?: string | {
|
|
1682
|
+
name: string;
|
|
1683
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1684
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1685
|
+
} | undefined;
|
|
1686
|
+
label?: string | undefined;
|
|
1687
|
+
} | {
|
|
1688
|
+
type: "discord";
|
|
1689
|
+
href: string;
|
|
1690
|
+
icon?: string | {
|
|
1691
|
+
name: string;
|
|
1692
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1693
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1694
|
+
} | undefined;
|
|
1695
|
+
label?: string | undefined;
|
|
1696
|
+
})[] | undefined;
|
|
1577
1697
|
} | undefined;
|
|
1578
1698
|
icons?: {
|
|
1579
1699
|
library: "fontawesome" | "lucide";
|
|
@@ -1886,16 +2006,40 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
1886
2006
|
} | {
|
|
1887
2007
|
type: "github";
|
|
1888
2008
|
href: string;
|
|
2009
|
+
label?: string | undefined;
|
|
2010
|
+
} | {
|
|
2011
|
+
type: "discord";
|
|
2012
|
+
href: string;
|
|
2013
|
+
label?: string | undefined;
|
|
1889
2014
|
} | undefined;
|
|
1890
|
-
links?: {
|
|
2015
|
+
links?: ({
|
|
1891
2016
|
href: string;
|
|
1892
2017
|
label: string;
|
|
2018
|
+
type?: undefined;
|
|
1893
2019
|
icon?: string | {
|
|
1894
2020
|
name: string;
|
|
1895
2021
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1896
2022
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1897
2023
|
} | undefined;
|
|
1898
|
-
}
|
|
2024
|
+
} | {
|
|
2025
|
+
type: "github";
|
|
2026
|
+
href: string;
|
|
2027
|
+
icon?: string | {
|
|
2028
|
+
name: string;
|
|
2029
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2030
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2031
|
+
} | undefined;
|
|
2032
|
+
label?: string | undefined;
|
|
2033
|
+
} | {
|
|
2034
|
+
type: "discord";
|
|
2035
|
+
href: string;
|
|
2036
|
+
icon?: string | {
|
|
2037
|
+
name: string;
|
|
2038
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2039
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2040
|
+
} | undefined;
|
|
2041
|
+
label?: string | undefined;
|
|
2042
|
+
})[] | undefined;
|
|
1899
2043
|
} | undefined;
|
|
1900
2044
|
icons?: {
|
|
1901
2045
|
library: "fontawesome" | "lucide";
|
|
@@ -2208,16 +2352,40 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
2208
2352
|
} | {
|
|
2209
2353
|
type: "github";
|
|
2210
2354
|
href: string;
|
|
2355
|
+
label?: string | undefined;
|
|
2356
|
+
} | {
|
|
2357
|
+
type: "discord";
|
|
2358
|
+
href: string;
|
|
2359
|
+
label?: string | undefined;
|
|
2211
2360
|
} | undefined;
|
|
2212
|
-
links?: {
|
|
2361
|
+
links?: ({
|
|
2213
2362
|
href: string;
|
|
2214
2363
|
label: string;
|
|
2364
|
+
type?: undefined;
|
|
2215
2365
|
icon?: string | {
|
|
2216
2366
|
name: string;
|
|
2217
2367
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2218
2368
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2219
2369
|
} | undefined;
|
|
2220
|
-
}
|
|
2370
|
+
} | {
|
|
2371
|
+
type: "github";
|
|
2372
|
+
href: string;
|
|
2373
|
+
icon?: string | {
|
|
2374
|
+
name: string;
|
|
2375
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2376
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2377
|
+
} | undefined;
|
|
2378
|
+
label?: string | undefined;
|
|
2379
|
+
} | {
|
|
2380
|
+
type: "discord";
|
|
2381
|
+
href: string;
|
|
2382
|
+
icon?: string | {
|
|
2383
|
+
name: string;
|
|
2384
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2385
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2386
|
+
} | undefined;
|
|
2387
|
+
label?: string | undefined;
|
|
2388
|
+
})[] | undefined;
|
|
2221
2389
|
} | undefined;
|
|
2222
2390
|
icons?: {
|
|
2223
2391
|
library: "fontawesome" | "lucide";
|