@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
|
@@ -49,12 +49,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
49
49
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
50
50
|
} | {
|
|
51
51
|
groups: ({
|
|
52
|
-
openapi: string | string[] | {
|
|
53
|
-
source: string;
|
|
54
|
-
directory?: string | undefined;
|
|
55
|
-
};
|
|
56
52
|
group: string;
|
|
57
|
-
pages: any[];
|
|
58
53
|
icon?: string | {
|
|
59
54
|
name: string;
|
|
60
55
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -65,26 +60,22 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
65
60
|
tag?: string | undefined;
|
|
66
61
|
hidden?: boolean | undefined;
|
|
67
62
|
root?: string | undefined;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
pages: any[];
|
|
71
|
-
asyncapi: string | string[] | {
|
|
63
|
+
} & {
|
|
64
|
+
openapi?: string | string[] | {
|
|
72
65
|
source: string;
|
|
73
66
|
directory?: string | undefined;
|
|
74
|
-
};
|
|
75
|
-
icon?: string | {
|
|
76
|
-
name: string;
|
|
77
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
78
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
79
67
|
} | undefined;
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
68
|
+
asyncapi?: string | string[] | {
|
|
69
|
+
source: string;
|
|
70
|
+
directory?: string | undefined;
|
|
71
|
+
} | undefined;
|
|
72
|
+
} & {
|
|
73
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
74
|
+
})[];
|
|
75
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
76
|
+
} | {
|
|
77
|
+
pages: (string | ({
|
|
86
78
|
group: string;
|
|
87
|
-
pages: any[];
|
|
88
79
|
icon?: string | {
|
|
89
80
|
name: string;
|
|
90
81
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -95,10 +86,18 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
95
86
|
tag?: string | undefined;
|
|
96
87
|
hidden?: boolean | undefined;
|
|
97
88
|
root?: string | undefined;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
89
|
+
} & {
|
|
90
|
+
openapi?: string | string[] | {
|
|
91
|
+
source: string;
|
|
92
|
+
directory?: string | undefined;
|
|
93
|
+
} | undefined;
|
|
94
|
+
asyncapi?: string | string[] | {
|
|
95
|
+
source: string;
|
|
96
|
+
directory?: string | undefined;
|
|
97
|
+
} | undefined;
|
|
98
|
+
} & {
|
|
99
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
100
|
+
}))[];
|
|
102
101
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
103
102
|
};
|
|
104
103
|
background?: {
|
|
@@ -339,7 +338,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
339
338
|
};
|
|
340
339
|
} | undefined;
|
|
341
340
|
contextual?: {
|
|
342
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
341
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
343
342
|
href: string | {
|
|
344
343
|
base: string;
|
|
345
344
|
query?: {
|
|
@@ -355,6 +354,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
355
354
|
library?: "fontawesome" | "lucide" | undefined;
|
|
356
355
|
} | undefined;
|
|
357
356
|
})[];
|
|
357
|
+
display: "header" | "toc";
|
|
358
358
|
} | undefined;
|
|
359
359
|
thumbnails?: {
|
|
360
360
|
background?: string | undefined;
|
|
@@ -395,12 +395,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
395
395
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
396
396
|
} | {
|
|
397
397
|
groups: ({
|
|
398
|
-
openapi: string | string[] | {
|
|
399
|
-
source: string;
|
|
400
|
-
directory?: string | undefined;
|
|
401
|
-
};
|
|
402
398
|
group: string;
|
|
403
|
-
pages: any[];
|
|
404
399
|
icon?: string | {
|
|
405
400
|
name: string;
|
|
406
401
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -411,26 +406,22 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
411
406
|
tag?: string | undefined;
|
|
412
407
|
hidden?: boolean | undefined;
|
|
413
408
|
root?: string | undefined;
|
|
414
|
-
}
|
|
415
|
-
|
|
416
|
-
pages: any[];
|
|
417
|
-
asyncapi: string | string[] | {
|
|
409
|
+
} & {
|
|
410
|
+
openapi?: string | string[] | {
|
|
418
411
|
source: string;
|
|
419
412
|
directory?: string | undefined;
|
|
420
|
-
};
|
|
421
|
-
icon?: string | {
|
|
422
|
-
name: string;
|
|
423
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
424
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
425
413
|
} | undefined;
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
414
|
+
asyncapi?: string | string[] | {
|
|
415
|
+
source: string;
|
|
416
|
+
directory?: string | undefined;
|
|
417
|
+
} | undefined;
|
|
418
|
+
} & {
|
|
419
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
420
|
+
})[];
|
|
421
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
422
|
+
} | {
|
|
423
|
+
pages: (string | ({
|
|
432
424
|
group: string;
|
|
433
|
-
pages: any[];
|
|
434
425
|
icon?: string | {
|
|
435
426
|
name: string;
|
|
436
427
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -441,10 +432,18 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
441
432
|
tag?: string | undefined;
|
|
442
433
|
hidden?: boolean | undefined;
|
|
443
434
|
root?: string | undefined;
|
|
444
|
-
}
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
435
|
+
} & {
|
|
436
|
+
openapi?: string | string[] | {
|
|
437
|
+
source: string;
|
|
438
|
+
directory?: string | undefined;
|
|
439
|
+
} | undefined;
|
|
440
|
+
asyncapi?: string | string[] | {
|
|
441
|
+
source: string;
|
|
442
|
+
directory?: string | undefined;
|
|
443
|
+
} | undefined;
|
|
444
|
+
} & {
|
|
445
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
446
|
+
}))[];
|
|
448
447
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
449
448
|
};
|
|
450
449
|
background?: {
|
|
@@ -685,7 +684,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
685
684
|
};
|
|
686
685
|
} | undefined;
|
|
687
686
|
contextual?: {
|
|
688
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
687
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
689
688
|
href: string | {
|
|
690
689
|
base: string;
|
|
691
690
|
query?: {
|
|
@@ -701,6 +700,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
701
700
|
library?: "fontawesome" | "lucide" | undefined;
|
|
702
701
|
} | undefined;
|
|
703
702
|
})[];
|
|
703
|
+
display: "header" | "toc";
|
|
704
704
|
} | undefined;
|
|
705
705
|
thumbnails?: {
|
|
706
706
|
background?: string | undefined;
|
|
@@ -741,12 +741,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
741
741
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
742
742
|
} | {
|
|
743
743
|
groups: ({
|
|
744
|
-
openapi: string | string[] | {
|
|
745
|
-
source: string;
|
|
746
|
-
directory?: string | undefined;
|
|
747
|
-
};
|
|
748
744
|
group: string;
|
|
749
|
-
pages: any[];
|
|
750
745
|
icon?: string | {
|
|
751
746
|
name: string;
|
|
752
747
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -757,26 +752,22 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
757
752
|
tag?: string | undefined;
|
|
758
753
|
hidden?: boolean | undefined;
|
|
759
754
|
root?: string | undefined;
|
|
760
|
-
}
|
|
761
|
-
|
|
762
|
-
pages: any[];
|
|
763
|
-
asyncapi: string | string[] | {
|
|
755
|
+
} & {
|
|
756
|
+
openapi?: string | string[] | {
|
|
764
757
|
source: string;
|
|
765
758
|
directory?: string | undefined;
|
|
766
|
-
};
|
|
767
|
-
icon?: string | {
|
|
768
|
-
name: string;
|
|
769
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
770
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
771
759
|
} | undefined;
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
760
|
+
asyncapi?: string | string[] | {
|
|
761
|
+
source: string;
|
|
762
|
+
directory?: string | undefined;
|
|
763
|
+
} | undefined;
|
|
764
|
+
} & {
|
|
765
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
766
|
+
})[];
|
|
767
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
768
|
+
} | {
|
|
769
|
+
pages: (string | ({
|
|
778
770
|
group: string;
|
|
779
|
-
pages: any[];
|
|
780
771
|
icon?: string | {
|
|
781
772
|
name: string;
|
|
782
773
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -787,10 +778,18 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
787
778
|
tag?: string | undefined;
|
|
788
779
|
hidden?: boolean | undefined;
|
|
789
780
|
root?: string | undefined;
|
|
790
|
-
}
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
781
|
+
} & {
|
|
782
|
+
openapi?: string | string[] | {
|
|
783
|
+
source: string;
|
|
784
|
+
directory?: string | undefined;
|
|
785
|
+
} | undefined;
|
|
786
|
+
asyncapi?: string | string[] | {
|
|
787
|
+
source: string;
|
|
788
|
+
directory?: string | undefined;
|
|
789
|
+
} | undefined;
|
|
790
|
+
} & {
|
|
791
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
792
|
+
}))[];
|
|
794
793
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
795
794
|
};
|
|
796
795
|
background?: {
|
|
@@ -1031,7 +1030,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1031
1030
|
};
|
|
1032
1031
|
} | undefined;
|
|
1033
1032
|
contextual?: {
|
|
1034
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1033
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1035
1034
|
href: string | {
|
|
1036
1035
|
base: string;
|
|
1037
1036
|
query?: {
|
|
@@ -1047,6 +1046,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1047
1046
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1048
1047
|
} | undefined;
|
|
1049
1048
|
})[];
|
|
1049
|
+
display: "header" | "toc";
|
|
1050
1050
|
} | undefined;
|
|
1051
1051
|
thumbnails?: {
|
|
1052
1052
|
background?: string | undefined;
|
|
@@ -1087,12 +1087,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1087
1087
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1088
1088
|
} | {
|
|
1089
1089
|
groups: ({
|
|
1090
|
-
openapi: string | string[] | {
|
|
1091
|
-
source: string;
|
|
1092
|
-
directory?: string | undefined;
|
|
1093
|
-
};
|
|
1094
1090
|
group: string;
|
|
1095
|
-
pages: any[];
|
|
1096
1091
|
icon?: string | {
|
|
1097
1092
|
name: string;
|
|
1098
1093
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1103,26 +1098,22 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1103
1098
|
tag?: string | undefined;
|
|
1104
1099
|
hidden?: boolean | undefined;
|
|
1105
1100
|
root?: string | undefined;
|
|
1106
|
-
}
|
|
1107
|
-
|
|
1108
|
-
pages: any[];
|
|
1109
|
-
asyncapi: string | string[] | {
|
|
1101
|
+
} & {
|
|
1102
|
+
openapi?: string | string[] | {
|
|
1110
1103
|
source: string;
|
|
1111
1104
|
directory?: string | undefined;
|
|
1112
|
-
};
|
|
1113
|
-
icon?: string | {
|
|
1114
|
-
name: string;
|
|
1115
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1116
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1117
1105
|
} | undefined;
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1106
|
+
asyncapi?: string | string[] | {
|
|
1107
|
+
source: string;
|
|
1108
|
+
directory?: string | undefined;
|
|
1109
|
+
} | undefined;
|
|
1110
|
+
} & {
|
|
1111
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1112
|
+
})[];
|
|
1113
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1114
|
+
} | {
|
|
1115
|
+
pages: (string | ({
|
|
1124
1116
|
group: string;
|
|
1125
|
-
pages: any[];
|
|
1126
1117
|
icon?: string | {
|
|
1127
1118
|
name: string;
|
|
1128
1119
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1133,10 +1124,18 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1133
1124
|
tag?: string | undefined;
|
|
1134
1125
|
hidden?: boolean | undefined;
|
|
1135
1126
|
root?: string | undefined;
|
|
1136
|
-
}
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1127
|
+
} & {
|
|
1128
|
+
openapi?: string | string[] | {
|
|
1129
|
+
source: string;
|
|
1130
|
+
directory?: string | undefined;
|
|
1131
|
+
} | undefined;
|
|
1132
|
+
asyncapi?: string | string[] | {
|
|
1133
|
+
source: string;
|
|
1134
|
+
directory?: string | undefined;
|
|
1135
|
+
} | undefined;
|
|
1136
|
+
} & {
|
|
1137
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1138
|
+
}))[];
|
|
1140
1139
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1141
1140
|
};
|
|
1142
1141
|
background?: {
|
|
@@ -1377,7 +1376,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1377
1376
|
};
|
|
1378
1377
|
} | undefined;
|
|
1379
1378
|
contextual?: {
|
|
1380
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1379
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1381
1380
|
href: string | {
|
|
1382
1381
|
base: string;
|
|
1383
1382
|
query?: {
|
|
@@ -1393,6 +1392,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1393
1392
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1394
1393
|
} | undefined;
|
|
1395
1394
|
})[];
|
|
1395
|
+
display: "header" | "toc";
|
|
1396
1396
|
} | undefined;
|
|
1397
1397
|
thumbnails?: {
|
|
1398
1398
|
background?: string | undefined;
|
|
@@ -1433,12 +1433,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1433
1433
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1434
1434
|
} | {
|
|
1435
1435
|
groups: ({
|
|
1436
|
-
openapi: string | string[] | {
|
|
1437
|
-
source: string;
|
|
1438
|
-
directory?: string | undefined;
|
|
1439
|
-
};
|
|
1440
1436
|
group: string;
|
|
1441
|
-
pages: any[];
|
|
1442
1437
|
icon?: string | {
|
|
1443
1438
|
name: string;
|
|
1444
1439
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1449,26 +1444,22 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1449
1444
|
tag?: string | undefined;
|
|
1450
1445
|
hidden?: boolean | undefined;
|
|
1451
1446
|
root?: string | undefined;
|
|
1452
|
-
}
|
|
1453
|
-
|
|
1454
|
-
pages: any[];
|
|
1455
|
-
asyncapi: string | string[] | {
|
|
1447
|
+
} & {
|
|
1448
|
+
openapi?: string | string[] | {
|
|
1456
1449
|
source: string;
|
|
1457
1450
|
directory?: string | undefined;
|
|
1458
|
-
};
|
|
1459
|
-
icon?: string | {
|
|
1460
|
-
name: string;
|
|
1461
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1462
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1463
1451
|
} | undefined;
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1452
|
+
asyncapi?: string | string[] | {
|
|
1453
|
+
source: string;
|
|
1454
|
+
directory?: string | undefined;
|
|
1455
|
+
} | undefined;
|
|
1456
|
+
} & {
|
|
1457
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1458
|
+
})[];
|
|
1459
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1460
|
+
} | {
|
|
1461
|
+
pages: (string | ({
|
|
1470
1462
|
group: string;
|
|
1471
|
-
pages: any[];
|
|
1472
1463
|
icon?: string | {
|
|
1473
1464
|
name: string;
|
|
1474
1465
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1479,10 +1470,18 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1479
1470
|
tag?: string | undefined;
|
|
1480
1471
|
hidden?: boolean | undefined;
|
|
1481
1472
|
root?: string | undefined;
|
|
1482
|
-
}
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1473
|
+
} & {
|
|
1474
|
+
openapi?: string | string[] | {
|
|
1475
|
+
source: string;
|
|
1476
|
+
directory?: string | undefined;
|
|
1477
|
+
} | undefined;
|
|
1478
|
+
asyncapi?: string | string[] | {
|
|
1479
|
+
source: string;
|
|
1480
|
+
directory?: string | undefined;
|
|
1481
|
+
} | undefined;
|
|
1482
|
+
} & {
|
|
1483
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1484
|
+
}))[];
|
|
1486
1485
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1487
1486
|
};
|
|
1488
1487
|
background?: {
|
|
@@ -1723,7 +1722,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1723
1722
|
};
|
|
1724
1723
|
} | undefined;
|
|
1725
1724
|
contextual?: {
|
|
1726
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1725
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1727
1726
|
href: string | {
|
|
1728
1727
|
base: string;
|
|
1729
1728
|
query?: {
|
|
@@ -1739,6 +1738,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1739
1738
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1740
1739
|
} | undefined;
|
|
1741
1740
|
})[];
|
|
1741
|
+
display: "header" | "toc";
|
|
1742
1742
|
} | undefined;
|
|
1743
1743
|
thumbnails?: {
|
|
1744
1744
|
background?: string | undefined;
|
|
@@ -1779,12 +1779,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1779
1779
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1780
1780
|
} | {
|
|
1781
1781
|
groups: ({
|
|
1782
|
-
openapi: string | string[] | {
|
|
1783
|
-
source: string;
|
|
1784
|
-
directory?: string | undefined;
|
|
1785
|
-
};
|
|
1786
1782
|
group: string;
|
|
1787
|
-
pages: any[];
|
|
1788
1783
|
icon?: string | {
|
|
1789
1784
|
name: string;
|
|
1790
1785
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1795,26 +1790,22 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1795
1790
|
tag?: string | undefined;
|
|
1796
1791
|
hidden?: boolean | undefined;
|
|
1797
1792
|
root?: string | undefined;
|
|
1798
|
-
}
|
|
1799
|
-
|
|
1800
|
-
pages: any[];
|
|
1801
|
-
asyncapi: string | string[] | {
|
|
1793
|
+
} & {
|
|
1794
|
+
openapi?: string | string[] | {
|
|
1802
1795
|
source: string;
|
|
1803
1796
|
directory?: string | undefined;
|
|
1804
|
-
};
|
|
1805
|
-
icon?: string | {
|
|
1806
|
-
name: string;
|
|
1807
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1808
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1809
1797
|
} | undefined;
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1798
|
+
asyncapi?: string | string[] | {
|
|
1799
|
+
source: string;
|
|
1800
|
+
directory?: string | undefined;
|
|
1801
|
+
} | undefined;
|
|
1802
|
+
} & {
|
|
1803
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1804
|
+
})[];
|
|
1805
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1806
|
+
} | {
|
|
1807
|
+
pages: (string | ({
|
|
1816
1808
|
group: string;
|
|
1817
|
-
pages: any[];
|
|
1818
1809
|
icon?: string | {
|
|
1819
1810
|
name: string;
|
|
1820
1811
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1825,10 +1816,18 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1825
1816
|
tag?: string | undefined;
|
|
1826
1817
|
hidden?: boolean | undefined;
|
|
1827
1818
|
root?: string | undefined;
|
|
1828
|
-
}
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1819
|
+
} & {
|
|
1820
|
+
openapi?: string | string[] | {
|
|
1821
|
+
source: string;
|
|
1822
|
+
directory?: string | undefined;
|
|
1823
|
+
} | undefined;
|
|
1824
|
+
asyncapi?: string | string[] | {
|
|
1825
|
+
source: string;
|
|
1826
|
+
directory?: string | undefined;
|
|
1827
|
+
} | undefined;
|
|
1828
|
+
} & {
|
|
1829
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1830
|
+
}))[];
|
|
1832
1831
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1833
1832
|
};
|
|
1834
1833
|
background?: {
|
|
@@ -2069,7 +2068,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2069
2068
|
};
|
|
2070
2069
|
} | undefined;
|
|
2071
2070
|
contextual?: {
|
|
2072
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
2071
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
2073
2072
|
href: string | {
|
|
2074
2073
|
base: string;
|
|
2075
2074
|
query?: {
|
|
@@ -2085,6 +2084,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2085
2084
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2086
2085
|
} | undefined;
|
|
2087
2086
|
})[];
|
|
2087
|
+
display: "header" | "toc";
|
|
2088
2088
|
} | undefined;
|
|
2089
2089
|
thumbnails?: {
|
|
2090
2090
|
background?: string | undefined;
|
|
@@ -2125,12 +2125,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2125
2125
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2126
2126
|
} | {
|
|
2127
2127
|
groups: ({
|
|
2128
|
-
openapi: string | string[] | {
|
|
2129
|
-
source: string;
|
|
2130
|
-
directory?: string | undefined;
|
|
2131
|
-
};
|
|
2132
2128
|
group: string;
|
|
2133
|
-
pages: any[];
|
|
2134
2129
|
icon?: string | {
|
|
2135
2130
|
name: string;
|
|
2136
2131
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -2141,26 +2136,22 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2141
2136
|
tag?: string | undefined;
|
|
2142
2137
|
hidden?: boolean | undefined;
|
|
2143
2138
|
root?: string | undefined;
|
|
2144
|
-
}
|
|
2145
|
-
|
|
2146
|
-
pages: any[];
|
|
2147
|
-
asyncapi: string | string[] | {
|
|
2139
|
+
} & {
|
|
2140
|
+
openapi?: string | string[] | {
|
|
2148
2141
|
source: string;
|
|
2149
2142
|
directory?: string | undefined;
|
|
2150
|
-
};
|
|
2151
|
-
icon?: string | {
|
|
2152
|
-
name: string;
|
|
2153
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2154
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2155
2143
|
} | undefined;
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2144
|
+
asyncapi?: string | string[] | {
|
|
2145
|
+
source: string;
|
|
2146
|
+
directory?: string | undefined;
|
|
2147
|
+
} | undefined;
|
|
2148
|
+
} & {
|
|
2149
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2150
|
+
})[];
|
|
2151
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2152
|
+
} | {
|
|
2153
|
+
pages: (string | ({
|
|
2162
2154
|
group: string;
|
|
2163
|
-
pages: any[];
|
|
2164
2155
|
icon?: string | {
|
|
2165
2156
|
name: string;
|
|
2166
2157
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -2171,10 +2162,364 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2171
2162
|
tag?: string | undefined;
|
|
2172
2163
|
hidden?: boolean | undefined;
|
|
2173
2164
|
root?: string | undefined;
|
|
2174
|
-
}
|
|
2165
|
+
} & {
|
|
2166
|
+
openapi?: string | string[] | {
|
|
2167
|
+
source: string;
|
|
2168
|
+
directory?: string | undefined;
|
|
2169
|
+
} | undefined;
|
|
2170
|
+
asyncapi?: string | string[] | {
|
|
2171
|
+
source: string;
|
|
2172
|
+
directory?: string | undefined;
|
|
2173
|
+
} | undefined;
|
|
2174
|
+
} & {
|
|
2175
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2176
|
+
}))[];
|
|
2175
2177
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2176
|
-
}
|
|
2177
|
-
|
|
2178
|
+
};
|
|
2179
|
+
background?: {
|
|
2180
|
+
color?: {
|
|
2181
|
+
light?: string | undefined;
|
|
2182
|
+
dark?: string | undefined;
|
|
2183
|
+
} | undefined;
|
|
2184
|
+
image?: string | {
|
|
2185
|
+
light: string;
|
|
2186
|
+
dark: string;
|
|
2187
|
+
} | undefined;
|
|
2188
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
2189
|
+
} | undefined;
|
|
2190
|
+
public?: boolean | undefined;
|
|
2191
|
+
logo?: string | {
|
|
2192
|
+
light: string;
|
|
2193
|
+
dark: string;
|
|
2194
|
+
href?: string | undefined;
|
|
2195
|
+
} | undefined;
|
|
2196
|
+
favicon?: string | {
|
|
2197
|
+
light: string;
|
|
2198
|
+
dark: string;
|
|
2199
|
+
} | undefined;
|
|
2200
|
+
api?: {
|
|
2201
|
+
params?: {
|
|
2202
|
+
expanded?: "all" | "closed" | undefined;
|
|
2203
|
+
} | undefined;
|
|
2204
|
+
openapi?: string | string[] | {
|
|
2205
|
+
source: string;
|
|
2206
|
+
directory?: string | undefined;
|
|
2207
|
+
} | undefined;
|
|
2208
|
+
playground?: {
|
|
2209
|
+
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
2210
|
+
proxy?: boolean | undefined;
|
|
2211
|
+
} | undefined;
|
|
2212
|
+
asyncapi?: string | string[] | {
|
|
2213
|
+
source: string;
|
|
2214
|
+
directory?: string | undefined;
|
|
2215
|
+
} | undefined;
|
|
2216
|
+
examples?: {
|
|
2217
|
+
languages?: string[] | undefined;
|
|
2218
|
+
defaults?: "all" | "required" | undefined;
|
|
2219
|
+
prefill?: boolean | undefined;
|
|
2220
|
+
autogenerate?: boolean | undefined;
|
|
2221
|
+
} | undefined;
|
|
2222
|
+
mdx?: {
|
|
2223
|
+
server?: string | string[] | undefined;
|
|
2224
|
+
auth?: {
|
|
2225
|
+
name?: string | undefined;
|
|
2226
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
2227
|
+
} | undefined;
|
|
2228
|
+
} | undefined;
|
|
2229
|
+
} | undefined;
|
|
2230
|
+
metadata?: {
|
|
2231
|
+
timestamp: boolean;
|
|
2232
|
+
} | undefined;
|
|
2233
|
+
footer?: {
|
|
2234
|
+
links?: {
|
|
2235
|
+
items: {
|
|
2236
|
+
href: string;
|
|
2237
|
+
label: string;
|
|
2238
|
+
}[];
|
|
2239
|
+
header?: string | undefined;
|
|
2240
|
+
}[] | undefined;
|
|
2241
|
+
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;
|
|
2242
|
+
} | undefined;
|
|
2243
|
+
integrations?: {
|
|
2244
|
+
amplitude?: {
|
|
2245
|
+
apiKey: string;
|
|
2246
|
+
} | undefined;
|
|
2247
|
+
clarity?: {
|
|
2248
|
+
projectId: string;
|
|
2249
|
+
} | undefined;
|
|
2250
|
+
clearbit?: {
|
|
2251
|
+
publicApiKey: string;
|
|
2252
|
+
} | undefined;
|
|
2253
|
+
fathom?: {
|
|
2254
|
+
siteId: string;
|
|
2255
|
+
} | undefined;
|
|
2256
|
+
ga4?: {
|
|
2257
|
+
measurementId: string;
|
|
2258
|
+
} | undefined;
|
|
2259
|
+
gtm?: {
|
|
2260
|
+
tagId: string;
|
|
2261
|
+
} | undefined;
|
|
2262
|
+
heap?: {
|
|
2263
|
+
appId: string;
|
|
2264
|
+
} | undefined;
|
|
2265
|
+
hightouch?: {
|
|
2266
|
+
writeKey: string;
|
|
2267
|
+
apiHost?: string | undefined;
|
|
2268
|
+
} | undefined;
|
|
2269
|
+
hotjar?: {
|
|
2270
|
+
hjid: string;
|
|
2271
|
+
hjsv: string;
|
|
2272
|
+
} | undefined;
|
|
2273
|
+
koala?: {
|
|
2274
|
+
publicApiKey: string;
|
|
2275
|
+
} | undefined;
|
|
2276
|
+
logrocket?: {
|
|
2277
|
+
appId: string;
|
|
2278
|
+
} | undefined;
|
|
2279
|
+
mixpanel?: {
|
|
2280
|
+
projectToken: string;
|
|
2281
|
+
} | undefined;
|
|
2282
|
+
pirsch?: {
|
|
2283
|
+
id: string;
|
|
2284
|
+
} | undefined;
|
|
2285
|
+
posthog?: {
|
|
2286
|
+
apiKey: string;
|
|
2287
|
+
apiHost?: string | undefined;
|
|
2288
|
+
} | undefined;
|
|
2289
|
+
plausible?: {
|
|
2290
|
+
domain: string;
|
|
2291
|
+
server?: string | undefined;
|
|
2292
|
+
} | undefined;
|
|
2293
|
+
segment?: {
|
|
2294
|
+
key: string;
|
|
2295
|
+
} | undefined;
|
|
2296
|
+
intercom?: {
|
|
2297
|
+
appId: string;
|
|
2298
|
+
} | undefined;
|
|
2299
|
+
frontchat?: {
|
|
2300
|
+
snippetId: string;
|
|
2301
|
+
} | undefined;
|
|
2302
|
+
telemetry?: {
|
|
2303
|
+
enabled?: boolean | undefined;
|
|
2304
|
+
} | undefined;
|
|
2305
|
+
cookies?: {
|
|
2306
|
+
value?: string | undefined;
|
|
2307
|
+
key?: string | undefined;
|
|
2308
|
+
} | undefined;
|
|
2309
|
+
} | undefined;
|
|
2310
|
+
search?: {
|
|
2311
|
+
prompt?: string | undefined;
|
|
2312
|
+
} | undefined;
|
|
2313
|
+
redirects?: {
|
|
2314
|
+
source: string;
|
|
2315
|
+
destination: string;
|
|
2316
|
+
permanent?: boolean | undefined;
|
|
2317
|
+
}[] | undefined;
|
|
2318
|
+
seo?: {
|
|
2319
|
+
metatags?: Record<string, string> | undefined;
|
|
2320
|
+
indexing?: "all" | "navigable" | undefined;
|
|
2321
|
+
} | undefined;
|
|
2322
|
+
description?: string | undefined;
|
|
2323
|
+
banner?: {
|
|
2324
|
+
content: string;
|
|
2325
|
+
dismissible?: boolean | undefined;
|
|
2326
|
+
} | undefined;
|
|
2327
|
+
appearance?: {
|
|
2328
|
+
strict?: boolean | undefined;
|
|
2329
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
2330
|
+
} | undefined;
|
|
2331
|
+
fonts?: {
|
|
2332
|
+
family: string;
|
|
2333
|
+
source?: string | undefined;
|
|
2334
|
+
weight?: number | undefined;
|
|
2335
|
+
format?: "woff" | "woff2" | undefined;
|
|
2336
|
+
} | {
|
|
2337
|
+
body?: {
|
|
2338
|
+
family: string;
|
|
2339
|
+
source?: string | undefined;
|
|
2340
|
+
weight?: number | undefined;
|
|
2341
|
+
format?: "woff" | "woff2" | undefined;
|
|
2342
|
+
} | undefined;
|
|
2343
|
+
heading?: {
|
|
2344
|
+
family: string;
|
|
2345
|
+
source?: string | undefined;
|
|
2346
|
+
weight?: number | undefined;
|
|
2347
|
+
format?: "woff" | "woff2" | undefined;
|
|
2348
|
+
} | undefined;
|
|
2349
|
+
} | undefined;
|
|
2350
|
+
navbar?: {
|
|
2351
|
+
primary?: {
|
|
2352
|
+
type: "button";
|
|
2353
|
+
href: string;
|
|
2354
|
+
label: string;
|
|
2355
|
+
} | {
|
|
2356
|
+
type: "github";
|
|
2357
|
+
href: string;
|
|
2358
|
+
label?: string | undefined;
|
|
2359
|
+
} | {
|
|
2360
|
+
type: "discord";
|
|
2361
|
+
href: string;
|
|
2362
|
+
label?: string | undefined;
|
|
2363
|
+
} | undefined;
|
|
2364
|
+
links?: ({
|
|
2365
|
+
href: string;
|
|
2366
|
+
label: string;
|
|
2367
|
+
type?: string | undefined;
|
|
2368
|
+
icon?: string | {
|
|
2369
|
+
name: string;
|
|
2370
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2371
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2372
|
+
} | undefined;
|
|
2373
|
+
} | {
|
|
2374
|
+
type: "github";
|
|
2375
|
+
href: string;
|
|
2376
|
+
icon?: string | {
|
|
2377
|
+
name: string;
|
|
2378
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2379
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2380
|
+
} | undefined;
|
|
2381
|
+
label?: string | undefined;
|
|
2382
|
+
} | {
|
|
2383
|
+
type: "discord";
|
|
2384
|
+
href: string;
|
|
2385
|
+
icon?: string | {
|
|
2386
|
+
name: string;
|
|
2387
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2388
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2389
|
+
} | undefined;
|
|
2390
|
+
label?: string | undefined;
|
|
2391
|
+
})[] | undefined;
|
|
2392
|
+
} | undefined;
|
|
2393
|
+
icons?: {
|
|
2394
|
+
library: "fontawesome" | "lucide";
|
|
2395
|
+
} | undefined;
|
|
2396
|
+
styling?: {
|
|
2397
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
2398
|
+
codeblocks?: "dark" | "system" | {
|
|
2399
|
+
languages?: {
|
|
2400
|
+
custom?: string[] | undefined;
|
|
2401
|
+
} | undefined;
|
|
2402
|
+
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" | {
|
|
2403
|
+
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";
|
|
2404
|
+
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";
|
|
2405
|
+
} | undefined;
|
|
2406
|
+
} | undefined;
|
|
2407
|
+
latex?: boolean | undefined;
|
|
2408
|
+
} | undefined;
|
|
2409
|
+
errors?: {
|
|
2410
|
+
"404": {
|
|
2411
|
+
redirect: boolean;
|
|
2412
|
+
title?: string | undefined;
|
|
2413
|
+
description?: string | undefined;
|
|
2414
|
+
};
|
|
2415
|
+
} | undefined;
|
|
2416
|
+
contextual?: {
|
|
2417
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
2418
|
+
href: string | {
|
|
2419
|
+
base: string;
|
|
2420
|
+
query?: {
|
|
2421
|
+
value: string;
|
|
2422
|
+
key: string;
|
|
2423
|
+
}[] | undefined;
|
|
2424
|
+
};
|
|
2425
|
+
title: string;
|
|
2426
|
+
description: string;
|
|
2427
|
+
icon?: string | {
|
|
2428
|
+
name: string;
|
|
2429
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2430
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2431
|
+
} | undefined;
|
|
2432
|
+
})[];
|
|
2433
|
+
display: "header" | "toc";
|
|
2434
|
+
} | undefined;
|
|
2435
|
+
thumbnails?: {
|
|
2436
|
+
background?: string | undefined;
|
|
2437
|
+
appearance?: import("@mintlify/validation").ThumbnailAppearance | undefined;
|
|
2438
|
+
fonts?: {
|
|
2439
|
+
family: string;
|
|
2440
|
+
} | undefined;
|
|
2441
|
+
} | undefined;
|
|
2442
|
+
interaction?: {
|
|
2443
|
+
drilldown?: boolean | undefined;
|
|
2444
|
+
} | undefined;
|
|
2445
|
+
} | {
|
|
2446
|
+
name: string;
|
|
2447
|
+
$schema: string;
|
|
2448
|
+
theme: "sequoia";
|
|
2449
|
+
colors: {
|
|
2450
|
+
primary: string;
|
|
2451
|
+
light?: string | undefined;
|
|
2452
|
+
dark?: string | undefined;
|
|
2453
|
+
};
|
|
2454
|
+
navigation: {
|
|
2455
|
+
products: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
2456
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2457
|
+
} | {
|
|
2458
|
+
languages: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
2459
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2460
|
+
} | {
|
|
2461
|
+
versions: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
2462
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2463
|
+
} | {
|
|
2464
|
+
tabs: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
2465
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2466
|
+
} | {
|
|
2467
|
+
dropdowns: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
2468
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2469
|
+
} | {
|
|
2470
|
+
anchors: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
2471
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2472
|
+
} | {
|
|
2473
|
+
groups: ({
|
|
2474
|
+
group: string;
|
|
2475
|
+
icon?: string | {
|
|
2476
|
+
name: string;
|
|
2477
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2478
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2479
|
+
} | undefined;
|
|
2480
|
+
expanded?: boolean | undefined;
|
|
2481
|
+
public?: boolean | undefined;
|
|
2482
|
+
tag?: string | undefined;
|
|
2483
|
+
hidden?: boolean | undefined;
|
|
2484
|
+
root?: string | undefined;
|
|
2485
|
+
} & {
|
|
2486
|
+
openapi?: string | string[] | {
|
|
2487
|
+
source: string;
|
|
2488
|
+
directory?: string | undefined;
|
|
2489
|
+
} | undefined;
|
|
2490
|
+
asyncapi?: string | string[] | {
|
|
2491
|
+
source: string;
|
|
2492
|
+
directory?: string | undefined;
|
|
2493
|
+
} | undefined;
|
|
2494
|
+
} & {
|
|
2495
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2496
|
+
})[];
|
|
2497
|
+
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2498
|
+
} | {
|
|
2499
|
+
pages: (string | ({
|
|
2500
|
+
group: string;
|
|
2501
|
+
icon?: string | {
|
|
2502
|
+
name: string;
|
|
2503
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2504
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2505
|
+
} | undefined;
|
|
2506
|
+
expanded?: boolean | undefined;
|
|
2507
|
+
public?: boolean | undefined;
|
|
2508
|
+
tag?: string | undefined;
|
|
2509
|
+
hidden?: boolean | undefined;
|
|
2510
|
+
root?: string | undefined;
|
|
2511
|
+
} & {
|
|
2512
|
+
openapi?: string | string[] | {
|
|
2513
|
+
source: string;
|
|
2514
|
+
directory?: string | undefined;
|
|
2515
|
+
} | undefined;
|
|
2516
|
+
asyncapi?: string | string[] | {
|
|
2517
|
+
source: string;
|
|
2518
|
+
directory?: string | undefined;
|
|
2519
|
+
} | undefined;
|
|
2520
|
+
} & {
|
|
2521
|
+
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2522
|
+
}))[];
|
|
2178
2523
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2179
2524
|
};
|
|
2180
2525
|
background?: {
|
|
@@ -2415,7 +2760,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2415
2760
|
};
|
|
2416
2761
|
} | undefined;
|
|
2417
2762
|
contextual?: {
|
|
2418
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
2763
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
2419
2764
|
href: string | {
|
|
2420
2765
|
base: string;
|
|
2421
2766
|
query?: {
|
|
@@ -2431,6 +2776,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2431
2776
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2432
2777
|
} | undefined;
|
|
2433
2778
|
})[];
|
|
2779
|
+
display: "header" | "toc";
|
|
2434
2780
|
} | undefined;
|
|
2435
2781
|
thumbnails?: {
|
|
2436
2782
|
background?: string | undefined;
|