@mintlify/prebuild 1.0.850 → 1.0.852
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 -1
- package/dist/prebuild/update/ConfigUpdater.d.ts +527 -181
- package/dist/prebuild/update/docsConfig/generateAsyncApiFromDocsConfig.js +3 -1
- package/dist/prebuild/update/docsConfig/generateOpenApiFromDocsConfig.js +9 -3
- package/dist/prebuild/update/index.d.ts +527 -181
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +6 -6
|
@@ -45,12 +45,7 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
45
45
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
46
46
|
} | {
|
|
47
47
|
groups: ({
|
|
48
|
-
openapi: string | string[] | {
|
|
49
|
-
source: string;
|
|
50
|
-
directory?: string | undefined;
|
|
51
|
-
};
|
|
52
48
|
group: string;
|
|
53
|
-
pages: any[];
|
|
54
49
|
icon?: string | {
|
|
55
50
|
name: string;
|
|
56
51
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -61,26 +56,22 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
61
56
|
tag?: string | undefined;
|
|
62
57
|
hidden?: boolean | undefined;
|
|
63
58
|
root?: string | undefined;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
pages: any[];
|
|
67
|
-
asyncapi: string | string[] | {
|
|
59
|
+
} & {
|
|
60
|
+
openapi?: string | string[] | {
|
|
68
61
|
source: string;
|
|
69
62
|
directory?: string | undefined;
|
|
70
|
-
};
|
|
71
|
-
icon?: string | {
|
|
72
|
-
name: string;
|
|
73
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
74
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
75
63
|
} | undefined;
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
64
|
+
asyncapi?: string | string[] | {
|
|
65
|
+
source: string;
|
|
66
|
+
directory?: string | undefined;
|
|
67
|
+
} | undefined;
|
|
68
|
+
} & {
|
|
69
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
70
|
+
})[];
|
|
71
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
72
|
+
} | {
|
|
73
|
+
pages: (string | ({
|
|
82
74
|
group: string;
|
|
83
|
-
pages: any[];
|
|
84
75
|
icon?: string | {
|
|
85
76
|
name: string;
|
|
86
77
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -91,10 +82,18 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
91
82
|
tag?: string | undefined;
|
|
92
83
|
hidden?: boolean | undefined;
|
|
93
84
|
root?: string | undefined;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
85
|
+
} & {
|
|
86
|
+
openapi?: string | string[] | {
|
|
87
|
+
source: string;
|
|
88
|
+
directory?: string | undefined;
|
|
89
|
+
} | undefined;
|
|
90
|
+
asyncapi?: string | string[] | {
|
|
91
|
+
source: string;
|
|
92
|
+
directory?: string | undefined;
|
|
93
|
+
} | undefined;
|
|
94
|
+
} & {
|
|
95
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
96
|
+
}))[];
|
|
98
97
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
99
98
|
};
|
|
100
99
|
background?: {
|
|
@@ -335,7 +334,7 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
335
334
|
};
|
|
336
335
|
} | undefined;
|
|
337
336
|
contextual?: {
|
|
338
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
337
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
339
338
|
href: string | {
|
|
340
339
|
base: string;
|
|
341
340
|
query?: {
|
|
@@ -351,6 +350,7 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
351
350
|
library?: "fontawesome" | "lucide" | undefined;
|
|
352
351
|
} | undefined;
|
|
353
352
|
})[];
|
|
353
|
+
display: "header" | "toc";
|
|
354
354
|
} | undefined;
|
|
355
355
|
thumbnails?: {
|
|
356
356
|
background?: string | undefined;
|
|
@@ -391,12 +391,7 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
391
391
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
392
392
|
} | {
|
|
393
393
|
groups: ({
|
|
394
|
-
openapi: string | string[] | {
|
|
395
|
-
source: string;
|
|
396
|
-
directory?: string | undefined;
|
|
397
|
-
};
|
|
398
394
|
group: string;
|
|
399
|
-
pages: any[];
|
|
400
395
|
icon?: string | {
|
|
401
396
|
name: string;
|
|
402
397
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -407,26 +402,22 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
407
402
|
tag?: string | undefined;
|
|
408
403
|
hidden?: boolean | undefined;
|
|
409
404
|
root?: string | undefined;
|
|
410
|
-
}
|
|
411
|
-
|
|
412
|
-
pages: any[];
|
|
413
|
-
asyncapi: string | string[] | {
|
|
405
|
+
} & {
|
|
406
|
+
openapi?: string | string[] | {
|
|
414
407
|
source: string;
|
|
415
408
|
directory?: string | undefined;
|
|
416
|
-
};
|
|
417
|
-
icon?: string | {
|
|
418
|
-
name: string;
|
|
419
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
420
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
421
409
|
} | undefined;
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
410
|
+
asyncapi?: string | string[] | {
|
|
411
|
+
source: string;
|
|
412
|
+
directory?: string | undefined;
|
|
413
|
+
} | undefined;
|
|
414
|
+
} & {
|
|
415
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
416
|
+
})[];
|
|
417
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
418
|
+
} | {
|
|
419
|
+
pages: (string | ({
|
|
428
420
|
group: string;
|
|
429
|
-
pages: any[];
|
|
430
421
|
icon?: string | {
|
|
431
422
|
name: string;
|
|
432
423
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -437,10 +428,18 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
437
428
|
tag?: string | undefined;
|
|
438
429
|
hidden?: boolean | undefined;
|
|
439
430
|
root?: string | undefined;
|
|
440
|
-
}
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
431
|
+
} & {
|
|
432
|
+
openapi?: string | string[] | {
|
|
433
|
+
source: string;
|
|
434
|
+
directory?: string | undefined;
|
|
435
|
+
} | undefined;
|
|
436
|
+
asyncapi?: string | string[] | {
|
|
437
|
+
source: string;
|
|
438
|
+
directory?: string | undefined;
|
|
439
|
+
} | undefined;
|
|
440
|
+
} & {
|
|
441
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
442
|
+
}))[];
|
|
444
443
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
445
444
|
};
|
|
446
445
|
background?: {
|
|
@@ -681,7 +680,7 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
681
680
|
};
|
|
682
681
|
} | undefined;
|
|
683
682
|
contextual?: {
|
|
684
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
683
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
685
684
|
href: string | {
|
|
686
685
|
base: string;
|
|
687
686
|
query?: {
|
|
@@ -697,6 +696,7 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
697
696
|
library?: "fontawesome" | "lucide" | undefined;
|
|
698
697
|
} | undefined;
|
|
699
698
|
})[];
|
|
699
|
+
display: "header" | "toc";
|
|
700
700
|
} | undefined;
|
|
701
701
|
thumbnails?: {
|
|
702
702
|
background?: string | undefined;
|
|
@@ -737,12 +737,7 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
737
737
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
738
738
|
} | {
|
|
739
739
|
groups: ({
|
|
740
|
-
openapi: string | string[] | {
|
|
741
|
-
source: string;
|
|
742
|
-
directory?: string | undefined;
|
|
743
|
-
};
|
|
744
740
|
group: string;
|
|
745
|
-
pages: any[];
|
|
746
741
|
icon?: string | {
|
|
747
742
|
name: string;
|
|
748
743
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -753,26 +748,22 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
753
748
|
tag?: string | undefined;
|
|
754
749
|
hidden?: boolean | undefined;
|
|
755
750
|
root?: string | undefined;
|
|
756
|
-
}
|
|
757
|
-
|
|
758
|
-
pages: any[];
|
|
759
|
-
asyncapi: string | string[] | {
|
|
751
|
+
} & {
|
|
752
|
+
openapi?: string | string[] | {
|
|
760
753
|
source: string;
|
|
761
754
|
directory?: string | undefined;
|
|
762
|
-
};
|
|
763
|
-
icon?: string | {
|
|
764
|
-
name: string;
|
|
765
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
766
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
767
755
|
} | undefined;
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
756
|
+
asyncapi?: string | string[] | {
|
|
757
|
+
source: string;
|
|
758
|
+
directory?: string | undefined;
|
|
759
|
+
} | undefined;
|
|
760
|
+
} & {
|
|
761
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
762
|
+
})[];
|
|
763
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
764
|
+
} | {
|
|
765
|
+
pages: (string | ({
|
|
774
766
|
group: string;
|
|
775
|
-
pages: any[];
|
|
776
767
|
icon?: string | {
|
|
777
768
|
name: string;
|
|
778
769
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -783,10 +774,18 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
783
774
|
tag?: string | undefined;
|
|
784
775
|
hidden?: boolean | undefined;
|
|
785
776
|
root?: string | undefined;
|
|
786
|
-
}
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
777
|
+
} & {
|
|
778
|
+
openapi?: string | string[] | {
|
|
779
|
+
source: string;
|
|
780
|
+
directory?: string | undefined;
|
|
781
|
+
} | undefined;
|
|
782
|
+
asyncapi?: string | string[] | {
|
|
783
|
+
source: string;
|
|
784
|
+
directory?: string | undefined;
|
|
785
|
+
} | undefined;
|
|
786
|
+
} & {
|
|
787
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
788
|
+
}))[];
|
|
790
789
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
791
790
|
};
|
|
792
791
|
background?: {
|
|
@@ -1027,7 +1026,7 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
1027
1026
|
};
|
|
1028
1027
|
} | undefined;
|
|
1029
1028
|
contextual?: {
|
|
1030
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1029
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1031
1030
|
href: string | {
|
|
1032
1031
|
base: string;
|
|
1033
1032
|
query?: {
|
|
@@ -1043,6 +1042,7 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
1043
1042
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1044
1043
|
} | undefined;
|
|
1045
1044
|
})[];
|
|
1045
|
+
display: "header" | "toc";
|
|
1046
1046
|
} | undefined;
|
|
1047
1047
|
thumbnails?: {
|
|
1048
1048
|
background?: string | undefined;
|
|
@@ -1083,12 +1083,7 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
1083
1083
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1084
1084
|
} | {
|
|
1085
1085
|
groups: ({
|
|
1086
|
-
openapi: string | string[] | {
|
|
1087
|
-
source: string;
|
|
1088
|
-
directory?: string | undefined;
|
|
1089
|
-
};
|
|
1090
1086
|
group: string;
|
|
1091
|
-
pages: any[];
|
|
1092
1087
|
icon?: string | {
|
|
1093
1088
|
name: string;
|
|
1094
1089
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1099,26 +1094,22 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
1099
1094
|
tag?: string | undefined;
|
|
1100
1095
|
hidden?: boolean | undefined;
|
|
1101
1096
|
root?: string | undefined;
|
|
1102
|
-
}
|
|
1103
|
-
|
|
1104
|
-
pages: any[];
|
|
1105
|
-
asyncapi: string | string[] | {
|
|
1097
|
+
} & {
|
|
1098
|
+
openapi?: string | string[] | {
|
|
1106
1099
|
source: string;
|
|
1107
1100
|
directory?: string | undefined;
|
|
1108
|
-
};
|
|
1109
|
-
icon?: string | {
|
|
1110
|
-
name: string;
|
|
1111
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1112
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1113
1101
|
} | undefined;
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1102
|
+
asyncapi?: string | string[] | {
|
|
1103
|
+
source: string;
|
|
1104
|
+
directory?: string | undefined;
|
|
1105
|
+
} | undefined;
|
|
1106
|
+
} & {
|
|
1107
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1108
|
+
})[];
|
|
1109
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1110
|
+
} | {
|
|
1111
|
+
pages: (string | ({
|
|
1120
1112
|
group: string;
|
|
1121
|
-
pages: any[];
|
|
1122
1113
|
icon?: string | {
|
|
1123
1114
|
name: string;
|
|
1124
1115
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1129,10 +1120,18 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
1129
1120
|
tag?: string | undefined;
|
|
1130
1121
|
hidden?: boolean | undefined;
|
|
1131
1122
|
root?: string | undefined;
|
|
1132
|
-
}
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1123
|
+
} & {
|
|
1124
|
+
openapi?: string | string[] | {
|
|
1125
|
+
source: string;
|
|
1126
|
+
directory?: string | undefined;
|
|
1127
|
+
} | undefined;
|
|
1128
|
+
asyncapi?: string | string[] | {
|
|
1129
|
+
source: string;
|
|
1130
|
+
directory?: string | undefined;
|
|
1131
|
+
} | undefined;
|
|
1132
|
+
} & {
|
|
1133
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1134
|
+
}))[];
|
|
1136
1135
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1137
1136
|
};
|
|
1138
1137
|
background?: {
|
|
@@ -1373,7 +1372,7 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
1373
1372
|
};
|
|
1374
1373
|
} | undefined;
|
|
1375
1374
|
contextual?: {
|
|
1376
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1375
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1377
1376
|
href: string | {
|
|
1378
1377
|
base: string;
|
|
1379
1378
|
query?: {
|
|
@@ -1389,6 +1388,7 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
1389
1388
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1390
1389
|
} | undefined;
|
|
1391
1390
|
})[];
|
|
1391
|
+
display: "header" | "toc";
|
|
1392
1392
|
} | undefined;
|
|
1393
1393
|
thumbnails?: {
|
|
1394
1394
|
background?: string | undefined;
|
|
@@ -1429,12 +1429,7 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
1429
1429
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1430
1430
|
} | {
|
|
1431
1431
|
groups: ({
|
|
1432
|
-
openapi: string | string[] | {
|
|
1433
|
-
source: string;
|
|
1434
|
-
directory?: string | undefined;
|
|
1435
|
-
};
|
|
1436
1432
|
group: string;
|
|
1437
|
-
pages: any[];
|
|
1438
1433
|
icon?: string | {
|
|
1439
1434
|
name: string;
|
|
1440
1435
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1445,26 +1440,22 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
1445
1440
|
tag?: string | undefined;
|
|
1446
1441
|
hidden?: boolean | undefined;
|
|
1447
1442
|
root?: string | undefined;
|
|
1448
|
-
}
|
|
1449
|
-
|
|
1450
|
-
pages: any[];
|
|
1451
|
-
asyncapi: string | string[] | {
|
|
1443
|
+
} & {
|
|
1444
|
+
openapi?: string | string[] | {
|
|
1452
1445
|
source: string;
|
|
1453
1446
|
directory?: string | undefined;
|
|
1454
|
-
};
|
|
1455
|
-
icon?: string | {
|
|
1456
|
-
name: string;
|
|
1457
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1458
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1459
1447
|
} | undefined;
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1448
|
+
asyncapi?: string | string[] | {
|
|
1449
|
+
source: string;
|
|
1450
|
+
directory?: string | undefined;
|
|
1451
|
+
} | undefined;
|
|
1452
|
+
} & {
|
|
1453
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1454
|
+
})[];
|
|
1455
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1456
|
+
} | {
|
|
1457
|
+
pages: (string | ({
|
|
1466
1458
|
group: string;
|
|
1467
|
-
pages: any[];
|
|
1468
1459
|
icon?: string | {
|
|
1469
1460
|
name: string;
|
|
1470
1461
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1475,10 +1466,18 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
1475
1466
|
tag?: string | undefined;
|
|
1476
1467
|
hidden?: boolean | undefined;
|
|
1477
1468
|
root?: string | undefined;
|
|
1478
|
-
}
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1469
|
+
} & {
|
|
1470
|
+
openapi?: string | string[] | {
|
|
1471
|
+
source: string;
|
|
1472
|
+
directory?: string | undefined;
|
|
1473
|
+
} | undefined;
|
|
1474
|
+
asyncapi?: string | string[] | {
|
|
1475
|
+
source: string;
|
|
1476
|
+
directory?: string | undefined;
|
|
1477
|
+
} | undefined;
|
|
1478
|
+
} & {
|
|
1479
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1480
|
+
}))[];
|
|
1482
1481
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1483
1482
|
};
|
|
1484
1483
|
background?: {
|
|
@@ -1719,7 +1718,7 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
1719
1718
|
};
|
|
1720
1719
|
} | undefined;
|
|
1721
1720
|
contextual?: {
|
|
1722
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1721
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1723
1722
|
href: string | {
|
|
1724
1723
|
base: string;
|
|
1725
1724
|
query?: {
|
|
@@ -1735,6 +1734,7 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
1735
1734
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1736
1735
|
} | undefined;
|
|
1737
1736
|
})[];
|
|
1737
|
+
display: "header" | "toc";
|
|
1738
1738
|
} | undefined;
|
|
1739
1739
|
thumbnails?: {
|
|
1740
1740
|
background?: string | undefined;
|
|
@@ -1775,12 +1775,7 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
1775
1775
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1776
1776
|
} | {
|
|
1777
1777
|
groups: ({
|
|
1778
|
-
openapi: string | string[] | {
|
|
1779
|
-
source: string;
|
|
1780
|
-
directory?: string | undefined;
|
|
1781
|
-
};
|
|
1782
1778
|
group: string;
|
|
1783
|
-
pages: any[];
|
|
1784
1779
|
icon?: string | {
|
|
1785
1780
|
name: string;
|
|
1786
1781
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1791,26 +1786,22 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
1791
1786
|
tag?: string | undefined;
|
|
1792
1787
|
hidden?: boolean | undefined;
|
|
1793
1788
|
root?: string | undefined;
|
|
1794
|
-
}
|
|
1795
|
-
|
|
1796
|
-
pages: any[];
|
|
1797
|
-
asyncapi: string | string[] | {
|
|
1789
|
+
} & {
|
|
1790
|
+
openapi?: string | string[] | {
|
|
1798
1791
|
source: string;
|
|
1799
1792
|
directory?: string | undefined;
|
|
1800
|
-
};
|
|
1801
|
-
icon?: string | {
|
|
1802
|
-
name: string;
|
|
1803
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1804
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1805
1793
|
} | undefined;
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1794
|
+
asyncapi?: string | string[] | {
|
|
1795
|
+
source: string;
|
|
1796
|
+
directory?: string | undefined;
|
|
1797
|
+
} | undefined;
|
|
1798
|
+
} & {
|
|
1799
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1800
|
+
})[];
|
|
1801
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1802
|
+
} | {
|
|
1803
|
+
pages: (string | ({
|
|
1812
1804
|
group: string;
|
|
1813
|
-
pages: any[];
|
|
1814
1805
|
icon?: string | {
|
|
1815
1806
|
name: string;
|
|
1816
1807
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1821,10 +1812,18 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
1821
1812
|
tag?: string | undefined;
|
|
1822
1813
|
hidden?: boolean | undefined;
|
|
1823
1814
|
root?: string | undefined;
|
|
1824
|
-
}
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1815
|
+
} & {
|
|
1816
|
+
openapi?: string | string[] | {
|
|
1817
|
+
source: string;
|
|
1818
|
+
directory?: string | undefined;
|
|
1819
|
+
} | undefined;
|
|
1820
|
+
asyncapi?: string | string[] | {
|
|
1821
|
+
source: string;
|
|
1822
|
+
directory?: string | undefined;
|
|
1823
|
+
} | undefined;
|
|
1824
|
+
} & {
|
|
1825
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1826
|
+
}))[];
|
|
1828
1827
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1829
1828
|
};
|
|
1830
1829
|
background?: {
|
|
@@ -2065,7 +2064,7 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
2065
2064
|
};
|
|
2066
2065
|
} | undefined;
|
|
2067
2066
|
contextual?: {
|
|
2068
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
2067
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
2069
2068
|
href: string | {
|
|
2070
2069
|
base: string;
|
|
2071
2070
|
query?: {
|
|
@@ -2081,6 +2080,7 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
2081
2080
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2082
2081
|
} | undefined;
|
|
2083
2082
|
})[];
|
|
2083
|
+
display: "header" | "toc";
|
|
2084
2084
|
} | undefined;
|
|
2085
2085
|
thumbnails?: {
|
|
2086
2086
|
background?: string | undefined;
|
|
@@ -2121,12 +2121,7 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
2121
2121
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2122
2122
|
} | {
|
|
2123
2123
|
groups: ({
|
|
2124
|
-
openapi: string | string[] | {
|
|
2125
|
-
source: string;
|
|
2126
|
-
directory?: string | undefined;
|
|
2127
|
-
};
|
|
2128
2124
|
group: string;
|
|
2129
|
-
pages: any[];
|
|
2130
2125
|
icon?: string | {
|
|
2131
2126
|
name: string;
|
|
2132
2127
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -2137,26 +2132,22 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
2137
2132
|
tag?: string | undefined;
|
|
2138
2133
|
hidden?: boolean | undefined;
|
|
2139
2134
|
root?: string | undefined;
|
|
2140
|
-
}
|
|
2141
|
-
|
|
2142
|
-
pages: any[];
|
|
2143
|
-
asyncapi: string | string[] | {
|
|
2135
|
+
} & {
|
|
2136
|
+
openapi?: string | string[] | {
|
|
2144
2137
|
source: string;
|
|
2145
2138
|
directory?: string | undefined;
|
|
2146
|
-
};
|
|
2147
|
-
icon?: string | {
|
|
2148
|
-
name: string;
|
|
2149
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2150
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2151
2139
|
} | undefined;
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2140
|
+
asyncapi?: string | string[] | {
|
|
2141
|
+
source: string;
|
|
2142
|
+
directory?: string | undefined;
|
|
2143
|
+
} | undefined;
|
|
2144
|
+
} & {
|
|
2145
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2146
|
+
})[];
|
|
2147
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2148
|
+
} | {
|
|
2149
|
+
pages: (string | ({
|
|
2158
2150
|
group: string;
|
|
2159
|
-
pages: any[];
|
|
2160
2151
|
icon?: string | {
|
|
2161
2152
|
name: string;
|
|
2162
2153
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -2167,10 +2158,364 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
2167
2158
|
tag?: string | undefined;
|
|
2168
2159
|
hidden?: boolean | undefined;
|
|
2169
2160
|
root?: string | undefined;
|
|
2170
|
-
}
|
|
2161
|
+
} & {
|
|
2162
|
+
openapi?: string | string[] | {
|
|
2163
|
+
source: string;
|
|
2164
|
+
directory?: string | undefined;
|
|
2165
|
+
} | undefined;
|
|
2166
|
+
asyncapi?: string | string[] | {
|
|
2167
|
+
source: string;
|
|
2168
|
+
directory?: string | undefined;
|
|
2169
|
+
} | undefined;
|
|
2170
|
+
} & {
|
|
2171
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2172
|
+
}))[];
|
|
2171
2173
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2172
|
-
}
|
|
2173
|
-
|
|
2174
|
+
};
|
|
2175
|
+
background?: {
|
|
2176
|
+
color?: {
|
|
2177
|
+
light?: string | undefined;
|
|
2178
|
+
dark?: string | undefined;
|
|
2179
|
+
} | undefined;
|
|
2180
|
+
image?: string | {
|
|
2181
|
+
light: string;
|
|
2182
|
+
dark: string;
|
|
2183
|
+
} | undefined;
|
|
2184
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
2185
|
+
} | undefined;
|
|
2186
|
+
public?: boolean | undefined;
|
|
2187
|
+
logo?: string | {
|
|
2188
|
+
light: string;
|
|
2189
|
+
dark: string;
|
|
2190
|
+
href?: string | undefined;
|
|
2191
|
+
} | undefined;
|
|
2192
|
+
favicon?: string | {
|
|
2193
|
+
light: string;
|
|
2194
|
+
dark: string;
|
|
2195
|
+
} | undefined;
|
|
2196
|
+
api?: {
|
|
2197
|
+
params?: {
|
|
2198
|
+
expanded?: "all" | "closed" | undefined;
|
|
2199
|
+
} | undefined;
|
|
2200
|
+
openapi?: string | string[] | {
|
|
2201
|
+
source: string;
|
|
2202
|
+
directory?: string | undefined;
|
|
2203
|
+
} | undefined;
|
|
2204
|
+
playground?: {
|
|
2205
|
+
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
2206
|
+
proxy?: boolean | undefined;
|
|
2207
|
+
} | undefined;
|
|
2208
|
+
asyncapi?: string | string[] | {
|
|
2209
|
+
source: string;
|
|
2210
|
+
directory?: string | undefined;
|
|
2211
|
+
} | undefined;
|
|
2212
|
+
examples?: {
|
|
2213
|
+
languages?: string[] | undefined;
|
|
2214
|
+
defaults?: "all" | "required" | undefined;
|
|
2215
|
+
prefill?: boolean | undefined;
|
|
2216
|
+
autogenerate?: boolean | undefined;
|
|
2217
|
+
} | undefined;
|
|
2218
|
+
mdx?: {
|
|
2219
|
+
server?: string | string[] | undefined;
|
|
2220
|
+
auth?: {
|
|
2221
|
+
name?: string | undefined;
|
|
2222
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
2223
|
+
} | undefined;
|
|
2224
|
+
} | undefined;
|
|
2225
|
+
} | undefined;
|
|
2226
|
+
metadata?: {
|
|
2227
|
+
timestamp: boolean;
|
|
2228
|
+
} | undefined;
|
|
2229
|
+
footer?: {
|
|
2230
|
+
links?: {
|
|
2231
|
+
items: {
|
|
2232
|
+
href: string;
|
|
2233
|
+
label: string;
|
|
2234
|
+
}[];
|
|
2235
|
+
header?: string | undefined;
|
|
2236
|
+
}[] | undefined;
|
|
2237
|
+
socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
|
|
2238
|
+
} | undefined;
|
|
2239
|
+
integrations?: {
|
|
2240
|
+
amplitude?: {
|
|
2241
|
+
apiKey: string;
|
|
2242
|
+
} | undefined;
|
|
2243
|
+
clarity?: {
|
|
2244
|
+
projectId: string;
|
|
2245
|
+
} | undefined;
|
|
2246
|
+
clearbit?: {
|
|
2247
|
+
publicApiKey: string;
|
|
2248
|
+
} | undefined;
|
|
2249
|
+
fathom?: {
|
|
2250
|
+
siteId: string;
|
|
2251
|
+
} | undefined;
|
|
2252
|
+
ga4?: {
|
|
2253
|
+
measurementId: string;
|
|
2254
|
+
} | undefined;
|
|
2255
|
+
gtm?: {
|
|
2256
|
+
tagId: string;
|
|
2257
|
+
} | undefined;
|
|
2258
|
+
heap?: {
|
|
2259
|
+
appId: string;
|
|
2260
|
+
} | undefined;
|
|
2261
|
+
hightouch?: {
|
|
2262
|
+
writeKey: string;
|
|
2263
|
+
apiHost?: string | undefined;
|
|
2264
|
+
} | undefined;
|
|
2265
|
+
hotjar?: {
|
|
2266
|
+
hjid: string;
|
|
2267
|
+
hjsv: string;
|
|
2268
|
+
} | undefined;
|
|
2269
|
+
koala?: {
|
|
2270
|
+
publicApiKey: string;
|
|
2271
|
+
} | undefined;
|
|
2272
|
+
logrocket?: {
|
|
2273
|
+
appId: string;
|
|
2274
|
+
} | undefined;
|
|
2275
|
+
mixpanel?: {
|
|
2276
|
+
projectToken: string;
|
|
2277
|
+
} | undefined;
|
|
2278
|
+
pirsch?: {
|
|
2279
|
+
id: string;
|
|
2280
|
+
} | undefined;
|
|
2281
|
+
posthog?: {
|
|
2282
|
+
apiKey: string;
|
|
2283
|
+
apiHost?: string | undefined;
|
|
2284
|
+
} | undefined;
|
|
2285
|
+
plausible?: {
|
|
2286
|
+
domain: string;
|
|
2287
|
+
server?: string | undefined;
|
|
2288
|
+
} | undefined;
|
|
2289
|
+
segment?: {
|
|
2290
|
+
key: string;
|
|
2291
|
+
} | undefined;
|
|
2292
|
+
intercom?: {
|
|
2293
|
+
appId: string;
|
|
2294
|
+
} | undefined;
|
|
2295
|
+
frontchat?: {
|
|
2296
|
+
snippetId: string;
|
|
2297
|
+
} | undefined;
|
|
2298
|
+
telemetry?: {
|
|
2299
|
+
enabled?: boolean | undefined;
|
|
2300
|
+
} | undefined;
|
|
2301
|
+
cookies?: {
|
|
2302
|
+
value?: string | undefined;
|
|
2303
|
+
key?: string | undefined;
|
|
2304
|
+
} | undefined;
|
|
2305
|
+
} | undefined;
|
|
2306
|
+
search?: {
|
|
2307
|
+
prompt?: string | undefined;
|
|
2308
|
+
} | undefined;
|
|
2309
|
+
redirects?: {
|
|
2310
|
+
source: string;
|
|
2311
|
+
destination: string;
|
|
2312
|
+
permanent?: boolean | undefined;
|
|
2313
|
+
}[] | undefined;
|
|
2314
|
+
seo?: {
|
|
2315
|
+
metatags?: Record<string, string> | undefined;
|
|
2316
|
+
indexing?: "all" | "navigable" | undefined;
|
|
2317
|
+
} | undefined;
|
|
2318
|
+
description?: string | undefined;
|
|
2319
|
+
banner?: {
|
|
2320
|
+
content: string;
|
|
2321
|
+
dismissible?: boolean | undefined;
|
|
2322
|
+
} | undefined;
|
|
2323
|
+
appearance?: {
|
|
2324
|
+
strict?: boolean | undefined;
|
|
2325
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
2326
|
+
} | undefined;
|
|
2327
|
+
fonts?: {
|
|
2328
|
+
family: string;
|
|
2329
|
+
source?: string | undefined;
|
|
2330
|
+
weight?: number | undefined;
|
|
2331
|
+
format?: "woff" | "woff2" | undefined;
|
|
2332
|
+
} | {
|
|
2333
|
+
body?: {
|
|
2334
|
+
family: string;
|
|
2335
|
+
source?: string | undefined;
|
|
2336
|
+
weight?: number | undefined;
|
|
2337
|
+
format?: "woff" | "woff2" | undefined;
|
|
2338
|
+
} | undefined;
|
|
2339
|
+
heading?: {
|
|
2340
|
+
family: string;
|
|
2341
|
+
source?: string | undefined;
|
|
2342
|
+
weight?: number | undefined;
|
|
2343
|
+
format?: "woff" | "woff2" | undefined;
|
|
2344
|
+
} | undefined;
|
|
2345
|
+
} | undefined;
|
|
2346
|
+
navbar?: {
|
|
2347
|
+
primary?: {
|
|
2348
|
+
type: "button";
|
|
2349
|
+
href: string;
|
|
2350
|
+
label: string;
|
|
2351
|
+
} | {
|
|
2352
|
+
type: "github";
|
|
2353
|
+
href: string;
|
|
2354
|
+
label?: string | undefined;
|
|
2355
|
+
} | {
|
|
2356
|
+
type: "discord";
|
|
2357
|
+
href: string;
|
|
2358
|
+
label?: string | undefined;
|
|
2359
|
+
} | undefined;
|
|
2360
|
+
links?: ({
|
|
2361
|
+
href: string;
|
|
2362
|
+
label: string;
|
|
2363
|
+
type?: string | undefined;
|
|
2364
|
+
icon?: string | {
|
|
2365
|
+
name: string;
|
|
2366
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2367
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2368
|
+
} | undefined;
|
|
2369
|
+
} | {
|
|
2370
|
+
type: "github";
|
|
2371
|
+
href: string;
|
|
2372
|
+
icon?: string | {
|
|
2373
|
+
name: string;
|
|
2374
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2375
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2376
|
+
} | undefined;
|
|
2377
|
+
label?: string | undefined;
|
|
2378
|
+
} | {
|
|
2379
|
+
type: "discord";
|
|
2380
|
+
href: string;
|
|
2381
|
+
icon?: string | {
|
|
2382
|
+
name: string;
|
|
2383
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2384
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2385
|
+
} | undefined;
|
|
2386
|
+
label?: string | undefined;
|
|
2387
|
+
})[] | undefined;
|
|
2388
|
+
} | undefined;
|
|
2389
|
+
icons?: {
|
|
2390
|
+
library: "fontawesome" | "lucide";
|
|
2391
|
+
} | undefined;
|
|
2392
|
+
styling?: {
|
|
2393
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
2394
|
+
codeblocks?: "dark" | "system" | {
|
|
2395
|
+
languages?: {
|
|
2396
|
+
custom?: string[] | undefined;
|
|
2397
|
+
} | undefined;
|
|
2398
|
+
theme?: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables" | {
|
|
2399
|
+
light: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
|
|
2400
|
+
dark: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
|
|
2401
|
+
} | undefined;
|
|
2402
|
+
} | undefined;
|
|
2403
|
+
latex?: boolean | undefined;
|
|
2404
|
+
} | undefined;
|
|
2405
|
+
errors?: {
|
|
2406
|
+
"404": {
|
|
2407
|
+
redirect: boolean;
|
|
2408
|
+
title?: string | undefined;
|
|
2409
|
+
description?: string | undefined;
|
|
2410
|
+
};
|
|
2411
|
+
} | undefined;
|
|
2412
|
+
contextual?: {
|
|
2413
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
2414
|
+
href: string | {
|
|
2415
|
+
base: string;
|
|
2416
|
+
query?: {
|
|
2417
|
+
value: string;
|
|
2418
|
+
key: string;
|
|
2419
|
+
}[] | undefined;
|
|
2420
|
+
};
|
|
2421
|
+
title: string;
|
|
2422
|
+
description: string;
|
|
2423
|
+
icon?: string | {
|
|
2424
|
+
name: string;
|
|
2425
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2426
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2427
|
+
} | undefined;
|
|
2428
|
+
})[];
|
|
2429
|
+
display: "header" | "toc";
|
|
2430
|
+
} | undefined;
|
|
2431
|
+
thumbnails?: {
|
|
2432
|
+
background?: string | undefined;
|
|
2433
|
+
appearance?: import("@mintlify/validation").ThumbnailAppearance | undefined;
|
|
2434
|
+
fonts?: {
|
|
2435
|
+
family: string;
|
|
2436
|
+
} | undefined;
|
|
2437
|
+
} | undefined;
|
|
2438
|
+
interaction?: {
|
|
2439
|
+
drilldown?: boolean | undefined;
|
|
2440
|
+
} | undefined;
|
|
2441
|
+
} | {
|
|
2442
|
+
name: string;
|
|
2443
|
+
$schema: string;
|
|
2444
|
+
theme: "sequoia";
|
|
2445
|
+
colors: {
|
|
2446
|
+
primary: string;
|
|
2447
|
+
light?: string | undefined;
|
|
2448
|
+
dark?: string | undefined;
|
|
2449
|
+
};
|
|
2450
|
+
navigation: {
|
|
2451
|
+
products: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
2452
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2453
|
+
} | {
|
|
2454
|
+
languages: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
2455
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2456
|
+
} | {
|
|
2457
|
+
versions: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
2458
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2459
|
+
} | {
|
|
2460
|
+
tabs: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
2461
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2462
|
+
} | {
|
|
2463
|
+
dropdowns: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
2464
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2465
|
+
} | {
|
|
2466
|
+
anchors: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
2467
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2468
|
+
} | {
|
|
2469
|
+
groups: ({
|
|
2470
|
+
group: string;
|
|
2471
|
+
icon?: string | {
|
|
2472
|
+
name: string;
|
|
2473
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2474
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2475
|
+
} | undefined;
|
|
2476
|
+
expanded?: boolean | undefined;
|
|
2477
|
+
public?: boolean | undefined;
|
|
2478
|
+
tag?: string | undefined;
|
|
2479
|
+
hidden?: boolean | undefined;
|
|
2480
|
+
root?: string | undefined;
|
|
2481
|
+
} & {
|
|
2482
|
+
openapi?: string | string[] | {
|
|
2483
|
+
source: string;
|
|
2484
|
+
directory?: string | undefined;
|
|
2485
|
+
} | undefined;
|
|
2486
|
+
asyncapi?: string | string[] | {
|
|
2487
|
+
source: string;
|
|
2488
|
+
directory?: string | undefined;
|
|
2489
|
+
} | undefined;
|
|
2490
|
+
} & {
|
|
2491
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2492
|
+
})[];
|
|
2493
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2494
|
+
} | {
|
|
2495
|
+
pages: (string | ({
|
|
2496
|
+
group: string;
|
|
2497
|
+
icon?: string | {
|
|
2498
|
+
name: string;
|
|
2499
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2500
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2501
|
+
} | undefined;
|
|
2502
|
+
expanded?: boolean | undefined;
|
|
2503
|
+
public?: boolean | undefined;
|
|
2504
|
+
tag?: string | undefined;
|
|
2505
|
+
hidden?: boolean | undefined;
|
|
2506
|
+
root?: string | undefined;
|
|
2507
|
+
} & {
|
|
2508
|
+
openapi?: string | string[] | {
|
|
2509
|
+
source: string;
|
|
2510
|
+
directory?: string | undefined;
|
|
2511
|
+
} | undefined;
|
|
2512
|
+
asyncapi?: string | string[] | {
|
|
2513
|
+
source: string;
|
|
2514
|
+
directory?: string | undefined;
|
|
2515
|
+
} | undefined;
|
|
2516
|
+
} & {
|
|
2517
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2518
|
+
}))[];
|
|
2174
2519
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2175
2520
|
};
|
|
2176
2521
|
background?: {
|
|
@@ -2411,7 +2756,7 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
2411
2756
|
};
|
|
2412
2757
|
} | undefined;
|
|
2413
2758
|
contextual?: {
|
|
2414
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
2759
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
2415
2760
|
href: string | {
|
|
2416
2761
|
base: string;
|
|
2417
2762
|
query?: {
|
|
@@ -2427,6 +2772,7 @@ export declare const update: ({ contentDirectoryPath, staticFilenames, openApiFi
|
|
|
2427
2772
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2428
2773
|
} | undefined;
|
|
2429
2774
|
})[];
|
|
2775
|
+
display: "header" | "toc";
|
|
2430
2776
|
} | undefined;
|
|
2431
2777
|
thumbnails?: {
|
|
2432
2778
|
background?: string | undefined;
|