@mintlify/prebuild 1.0.750 → 1.0.752
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.
|
@@ -8,10 +8,12 @@ export declare class ConfigUpdater<T> {
|
|
|
8
8
|
data: T;
|
|
9
9
|
warnings: import("zod").ZodIssue[];
|
|
10
10
|
success: true;
|
|
11
|
+
error?: never;
|
|
11
12
|
} | {
|
|
12
13
|
data: T;
|
|
13
14
|
warnings: import("zod").ZodIssue[];
|
|
14
15
|
success: true;
|
|
16
|
+
error?: never;
|
|
15
17
|
}>;
|
|
16
18
|
private readConfigFile;
|
|
17
19
|
writeConfigFile: (config: T, targetDir?: string) => Promise<void>;
|
|
@@ -27,7 +29,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
27
29
|
light?: string | undefined;
|
|
28
30
|
dark?: string | undefined;
|
|
29
31
|
};
|
|
30
|
-
navigation:
|
|
32
|
+
navigation: {
|
|
31
33
|
products: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
32
34
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
33
35
|
} | {
|
|
@@ -47,90 +49,10 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
47
49
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
48
50
|
} | {
|
|
49
51
|
groups: ({
|
|
50
|
-
openapi:
|
|
52
|
+
openapi: string | string[] | {
|
|
51
53
|
source: string;
|
|
52
54
|
directory?: string | undefined;
|
|
53
|
-
}
|
|
54
|
-
source: string;
|
|
55
|
-
directory?: string | undefined;
|
|
56
|
-
} | undefined);
|
|
57
|
-
group: string;
|
|
58
|
-
pages: any[];
|
|
59
|
-
icon?: string | {
|
|
60
|
-
name: string;
|
|
61
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
62
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
63
|
-
} | undefined;
|
|
64
|
-
expanded?: boolean | undefined;
|
|
65
|
-
public?: boolean | undefined;
|
|
66
|
-
tag?: string | undefined;
|
|
67
|
-
hidden?: boolean | undefined;
|
|
68
|
-
root?: string | undefined;
|
|
69
|
-
} | {
|
|
70
|
-
group: string;
|
|
71
|
-
pages: any[];
|
|
72
|
-
asyncapi: (string | string[] | {
|
|
73
|
-
source: string;
|
|
74
|
-
directory?: string | undefined;
|
|
75
|
-
}) & (string | string[] | {
|
|
76
|
-
source: string;
|
|
77
|
-
directory?: string | undefined;
|
|
78
|
-
} | undefined);
|
|
79
|
-
icon?: string | {
|
|
80
|
-
name: string;
|
|
81
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
82
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
83
|
-
} | undefined;
|
|
84
|
-
expanded?: boolean | undefined;
|
|
85
|
-
public?: boolean | undefined;
|
|
86
|
-
tag?: string | undefined;
|
|
87
|
-
hidden?: boolean | undefined;
|
|
88
|
-
root?: string | undefined;
|
|
89
|
-
} | {
|
|
90
|
-
group: string;
|
|
91
|
-
pages: any[];
|
|
92
|
-
icon?: string | {
|
|
93
|
-
name: string;
|
|
94
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
95
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
96
|
-
} | undefined;
|
|
97
|
-
expanded?: boolean | undefined;
|
|
98
|
-
public?: boolean | undefined;
|
|
99
|
-
tag?: string | undefined;
|
|
100
|
-
hidden?: boolean | undefined;
|
|
101
|
-
root?: string | undefined;
|
|
102
|
-
})[];
|
|
103
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
104
|
-
} | {
|
|
105
|
-
pages: any[];
|
|
106
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
107
|
-
}) & ({
|
|
108
|
-
products: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
109
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
110
|
-
} | {
|
|
111
|
-
languages: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
112
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
113
|
-
} | {
|
|
114
|
-
versions: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
115
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
116
|
-
} | {
|
|
117
|
-
tabs: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
118
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
119
|
-
} | {
|
|
120
|
-
dropdowns: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
121
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
122
|
-
} | {
|
|
123
|
-
anchors: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
124
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
125
|
-
} | {
|
|
126
|
-
groups: ({
|
|
127
|
-
openapi: (string | string[] | {
|
|
128
|
-
source: string;
|
|
129
|
-
directory?: string | undefined;
|
|
130
|
-
}) & (string | string[] | {
|
|
131
|
-
source: string;
|
|
132
|
-
directory?: string | undefined;
|
|
133
|
-
} | undefined);
|
|
55
|
+
};
|
|
134
56
|
group: string;
|
|
135
57
|
pages: any[];
|
|
136
58
|
icon?: string | {
|
|
@@ -146,13 +68,10 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
146
68
|
} | {
|
|
147
69
|
group: string;
|
|
148
70
|
pages: any[];
|
|
149
|
-
asyncapi:
|
|
71
|
+
asyncapi: string | string[] | {
|
|
150
72
|
source: string;
|
|
151
73
|
directory?: string | undefined;
|
|
152
|
-
}
|
|
153
|
-
source: string;
|
|
154
|
-
directory?: string | undefined;
|
|
155
|
-
} | undefined);
|
|
74
|
+
};
|
|
156
75
|
icon?: string | {
|
|
157
76
|
name: string;
|
|
158
77
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -181,8 +100,18 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
181
100
|
} | {
|
|
182
101
|
pages: any[];
|
|
183
102
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
184
|
-
}
|
|
185
|
-
|
|
103
|
+
};
|
|
104
|
+
background?: {
|
|
105
|
+
color?: {
|
|
106
|
+
light?: string | undefined;
|
|
107
|
+
dark?: string | undefined;
|
|
108
|
+
} | undefined;
|
|
109
|
+
image?: string | {
|
|
110
|
+
light: string;
|
|
111
|
+
dark: string;
|
|
112
|
+
} | undefined;
|
|
113
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
114
|
+
} | undefined;
|
|
186
115
|
logo?: string | {
|
|
187
116
|
light: string;
|
|
188
117
|
dark: string;
|
|
@@ -193,70 +122,38 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
193
122
|
dark: string;
|
|
194
123
|
} | undefined;
|
|
195
124
|
api?: {
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
directory?: string | undefined;
|
|
125
|
+
params?: {
|
|
126
|
+
expanded?: "all" | "closed" | undefined;
|
|
199
127
|
} | undefined;
|
|
200
|
-
|
|
128
|
+
openapi?: string | string[] | {
|
|
201
129
|
source: string;
|
|
202
130
|
directory?: string | undefined;
|
|
203
131
|
} | undefined;
|
|
204
|
-
params?: {
|
|
205
|
-
expanded?: "all" | "closed" | undefined;
|
|
206
|
-
} | undefined;
|
|
207
132
|
playground?: {
|
|
208
133
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
209
134
|
proxy?: boolean | undefined;
|
|
210
135
|
} | undefined;
|
|
136
|
+
asyncapi?: string | string[] | {
|
|
137
|
+
source: string;
|
|
138
|
+
directory?: string | undefined;
|
|
139
|
+
} | undefined;
|
|
211
140
|
examples?: {
|
|
212
|
-
defaults?: "all" | "required" | undefined;
|
|
213
141
|
languages?: string[] | undefined;
|
|
142
|
+
defaults?: "all" | "required" | undefined;
|
|
214
143
|
prefill?: boolean | undefined;
|
|
215
144
|
} | undefined;
|
|
216
145
|
mdx?: {
|
|
146
|
+
server?: string | string[] | undefined;
|
|
217
147
|
auth?: {
|
|
218
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
219
148
|
name?: string | undefined;
|
|
149
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
220
150
|
} | undefined;
|
|
221
|
-
server?: string | string[] | undefined;
|
|
222
|
-
} | undefined;
|
|
223
|
-
} | undefined;
|
|
224
|
-
appearance?: {
|
|
225
|
-
default?: "light" | "dark" | "system" | undefined;
|
|
226
|
-
strict?: boolean | undefined;
|
|
227
|
-
} | undefined;
|
|
228
|
-
background?: {
|
|
229
|
-
image?: string | {
|
|
230
|
-
light: string;
|
|
231
|
-
dark: string;
|
|
232
|
-
} | undefined;
|
|
233
|
-
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
234
|
-
color?: {
|
|
235
|
-
light?: string | undefined;
|
|
236
|
-
dark?: string | undefined;
|
|
237
151
|
} | undefined;
|
|
238
152
|
} | undefined;
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
href: string;
|
|
242
|
-
label: string;
|
|
243
|
-
icon?: string | {
|
|
244
|
-
name: string;
|
|
245
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
246
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
247
|
-
} | undefined;
|
|
248
|
-
}[] | undefined;
|
|
249
|
-
primary?: {
|
|
250
|
-
type: "button";
|
|
251
|
-
href: string;
|
|
252
|
-
label: string;
|
|
253
|
-
} | {
|
|
254
|
-
type: "github";
|
|
255
|
-
href: string;
|
|
256
|
-
} | undefined;
|
|
153
|
+
metadata?: {
|
|
154
|
+
timestamp: boolean;
|
|
257
155
|
} | undefined;
|
|
258
156
|
footer?: {
|
|
259
|
-
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;
|
|
260
157
|
links?: {
|
|
261
158
|
items: {
|
|
262
159
|
href: string;
|
|
@@ -264,54 +161,8 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
264
161
|
}[];
|
|
265
162
|
header?: string | undefined;
|
|
266
163
|
}[] | undefined;
|
|
164
|
+
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;
|
|
267
165
|
} | undefined;
|
|
268
|
-
search?: {
|
|
269
|
-
prompt?: string | undefined;
|
|
270
|
-
} | undefined;
|
|
271
|
-
seo?: {
|
|
272
|
-
metatags?: Record<string, string> | undefined;
|
|
273
|
-
indexing?: "all" | "navigable" | undefined;
|
|
274
|
-
} | undefined;
|
|
275
|
-
fonts?: {
|
|
276
|
-
family: string;
|
|
277
|
-
weight?: number | undefined;
|
|
278
|
-
source?: string | undefined;
|
|
279
|
-
format?: "woff" | "woff2" | undefined;
|
|
280
|
-
} | {
|
|
281
|
-
heading?: {
|
|
282
|
-
family: string;
|
|
283
|
-
weight?: number | undefined;
|
|
284
|
-
source?: string | undefined;
|
|
285
|
-
format?: "woff" | "woff2" | undefined;
|
|
286
|
-
} | undefined;
|
|
287
|
-
body?: {
|
|
288
|
-
family: string;
|
|
289
|
-
weight?: number | undefined;
|
|
290
|
-
source?: string | undefined;
|
|
291
|
-
format?: "woff" | "woff2" | undefined;
|
|
292
|
-
} | undefined;
|
|
293
|
-
} | undefined;
|
|
294
|
-
icons?: {
|
|
295
|
-
library: "fontawesome" | "lucide";
|
|
296
|
-
} | undefined;
|
|
297
|
-
styling?: {
|
|
298
|
-
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
299
|
-
codeblocks?: "dark" | "system" | {
|
|
300
|
-
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" | {
|
|
301
|
-
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";
|
|
302
|
-
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";
|
|
303
|
-
} | undefined;
|
|
304
|
-
languages?: {
|
|
305
|
-
custom?: string[] | undefined;
|
|
306
|
-
} | undefined;
|
|
307
|
-
} | undefined;
|
|
308
|
-
latex?: boolean | undefined;
|
|
309
|
-
} | undefined;
|
|
310
|
-
redirects?: {
|
|
311
|
-
source: string;
|
|
312
|
-
destination: string;
|
|
313
|
-
permanent?: boolean | undefined;
|
|
314
|
-
}[] | undefined;
|
|
315
166
|
integrations?: {
|
|
316
167
|
amplitude?: {
|
|
317
168
|
apiKey: string;
|
|
@@ -325,9 +176,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
325
176
|
fathom?: {
|
|
326
177
|
siteId: string;
|
|
327
178
|
} | undefined;
|
|
328
|
-
frontchat?: {
|
|
329
|
-
snippetId: string;
|
|
330
|
-
} | undefined;
|
|
331
179
|
ga4?: {
|
|
332
180
|
measurementId: string;
|
|
333
181
|
} | undefined;
|
|
@@ -345,9 +193,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
345
193
|
hjid: string;
|
|
346
194
|
hjsv: string;
|
|
347
195
|
} | undefined;
|
|
348
|
-
intercom?: {
|
|
349
|
-
appId: string;
|
|
350
|
-
} | undefined;
|
|
351
196
|
koala?: {
|
|
352
197
|
publicApiKey: string;
|
|
353
198
|
} | undefined;
|
|
@@ -357,9 +202,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
357
202
|
mixpanel?: {
|
|
358
203
|
projectToken: string;
|
|
359
204
|
} | undefined;
|
|
360
|
-
osano?: {
|
|
361
|
-
scriptSource: string;
|
|
362
|
-
} | undefined;
|
|
363
205
|
pirsch?: {
|
|
364
206
|
id: string;
|
|
365
207
|
} | undefined;
|
|
@@ -374,52 +216,126 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
374
216
|
segment?: {
|
|
375
217
|
key: string;
|
|
376
218
|
} | undefined;
|
|
219
|
+
intercom?: {
|
|
220
|
+
appId: string;
|
|
221
|
+
} | undefined;
|
|
222
|
+
frontchat?: {
|
|
223
|
+
snippetId: string;
|
|
224
|
+
} | undefined;
|
|
225
|
+
osano?: {
|
|
226
|
+
scriptSource: string;
|
|
227
|
+
} | undefined;
|
|
377
228
|
telemetry?: {
|
|
378
229
|
enabled?: boolean | undefined;
|
|
379
230
|
} | undefined;
|
|
380
231
|
cookies?: {
|
|
381
|
-
key?: string | undefined;
|
|
382
232
|
value?: string | undefined;
|
|
233
|
+
key?: string | undefined;
|
|
383
234
|
} | undefined;
|
|
384
235
|
} | undefined;
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
dismissible?: boolean | undefined;
|
|
236
|
+
search?: {
|
|
237
|
+
prompt?: string | undefined;
|
|
388
238
|
} | undefined;
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
239
|
+
redirects?: {
|
|
240
|
+
source: string;
|
|
241
|
+
destination: string;
|
|
242
|
+
permanent?: boolean | undefined;
|
|
243
|
+
}[] | undefined;
|
|
244
|
+
seo?: {
|
|
245
|
+
metatags?: Record<string, string> | undefined;
|
|
246
|
+
indexing?: "all" | "navigable" | undefined;
|
|
395
247
|
} | undefined;
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
query?: {
|
|
401
|
-
value: string;
|
|
402
|
-
key: string;
|
|
403
|
-
}[] | undefined;
|
|
404
|
-
}) & (string | {
|
|
405
|
-
base: string;
|
|
406
|
-
query?: {
|
|
407
|
-
value: string;
|
|
408
|
-
key: string;
|
|
409
|
-
}[] | undefined;
|
|
410
|
-
} | undefined);
|
|
411
|
-
title: string;
|
|
412
|
-
description: string;
|
|
413
|
-
icon?: string | {
|
|
414
|
-
name: string;
|
|
415
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
416
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
417
|
-
} | undefined;
|
|
418
|
-
})[];
|
|
248
|
+
description?: string | undefined;
|
|
249
|
+
appearance?: {
|
|
250
|
+
strict?: boolean | undefined;
|
|
251
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
419
252
|
} | undefined;
|
|
420
|
-
|
|
421
|
-
|
|
253
|
+
fonts?: {
|
|
254
|
+
family: string;
|
|
255
|
+
source?: string | undefined;
|
|
256
|
+
weight?: number | undefined;
|
|
257
|
+
format?: "woff" | "woff2" | undefined;
|
|
258
|
+
} | {
|
|
259
|
+
body?: {
|
|
260
|
+
family: string;
|
|
261
|
+
source?: string | undefined;
|
|
262
|
+
weight?: number | undefined;
|
|
263
|
+
format?: "woff" | "woff2" | undefined;
|
|
264
|
+
} | undefined;
|
|
265
|
+
heading?: {
|
|
266
|
+
family: string;
|
|
267
|
+
source?: string | undefined;
|
|
268
|
+
weight?: number | undefined;
|
|
269
|
+
format?: "woff" | "woff2" | undefined;
|
|
270
|
+
} | undefined;
|
|
271
|
+
} | undefined;
|
|
272
|
+
navbar?: {
|
|
273
|
+
primary?: {
|
|
274
|
+
type: "button";
|
|
275
|
+
href: string;
|
|
276
|
+
label: string;
|
|
277
|
+
} | {
|
|
278
|
+
type: "github";
|
|
279
|
+
href: string;
|
|
280
|
+
} | undefined;
|
|
281
|
+
links?: {
|
|
282
|
+
href: string;
|
|
283
|
+
label: string;
|
|
284
|
+
icon?: string | {
|
|
285
|
+
name: string;
|
|
286
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
287
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
288
|
+
} | undefined;
|
|
289
|
+
}[] | undefined;
|
|
290
|
+
} | undefined;
|
|
291
|
+
icons?: {
|
|
292
|
+
library: "fontawesome" | "lucide";
|
|
293
|
+
} | undefined;
|
|
294
|
+
styling?: {
|
|
295
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
296
|
+
codeblocks?: "dark" | "system" | {
|
|
297
|
+
languages?: {
|
|
298
|
+
custom?: string[] | undefined;
|
|
299
|
+
} | undefined;
|
|
300
|
+
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" | {
|
|
301
|
+
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";
|
|
302
|
+
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";
|
|
303
|
+
} | undefined;
|
|
304
|
+
} | undefined;
|
|
305
|
+
latex?: boolean | undefined;
|
|
306
|
+
} | undefined;
|
|
307
|
+
banner?: {
|
|
308
|
+
content: string;
|
|
309
|
+
dismissible?: boolean | undefined;
|
|
310
|
+
} | undefined;
|
|
311
|
+
errors?: {
|
|
312
|
+
"404": {
|
|
313
|
+
redirect: boolean;
|
|
314
|
+
title?: string | undefined;
|
|
315
|
+
description?: string | undefined;
|
|
316
|
+
};
|
|
317
|
+
} | undefined;
|
|
318
|
+
contextual?: {
|
|
319
|
+
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
|
|
320
|
+
href: string | {
|
|
321
|
+
base: string;
|
|
322
|
+
query?: {
|
|
323
|
+
value: string;
|
|
324
|
+
key: string;
|
|
325
|
+
}[] | undefined;
|
|
326
|
+
};
|
|
327
|
+
title: string;
|
|
328
|
+
description: string;
|
|
329
|
+
icon?: string | {
|
|
330
|
+
name: string;
|
|
331
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
332
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
333
|
+
} | undefined;
|
|
334
|
+
})[];
|
|
335
|
+
} | undefined;
|
|
336
|
+
thumbnails?: {
|
|
422
337
|
background?: string | undefined;
|
|
338
|
+
appearance?: import("@mintlify/validation").ThumbnailAppearance | undefined;
|
|
423
339
|
fonts?: {
|
|
424
340
|
family: string;
|
|
425
341
|
} | undefined;
|
|
@@ -427,9 +343,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
427
343
|
interaction?: {
|
|
428
344
|
drilldown?: boolean | undefined;
|
|
429
345
|
} | undefined;
|
|
430
|
-
metadata?: {
|
|
431
|
-
timestamp: boolean;
|
|
432
|
-
} | undefined;
|
|
433
346
|
} | {
|
|
434
347
|
name: string;
|
|
435
348
|
$schema: string;
|
|
@@ -439,84 +352,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
439
352
|
light?: string | undefined;
|
|
440
353
|
dark?: string | undefined;
|
|
441
354
|
};
|
|
442
|
-
navigation:
|
|
443
|
-
products: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
444
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
445
|
-
} | {
|
|
446
|
-
languages: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
447
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
448
|
-
} | {
|
|
449
|
-
versions: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
450
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
451
|
-
} | {
|
|
452
|
-
tabs: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
453
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
454
|
-
} | {
|
|
455
|
-
dropdowns: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
456
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
457
|
-
} | {
|
|
458
|
-
anchors: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
459
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
460
|
-
} | {
|
|
461
|
-
groups: ({
|
|
462
|
-
openapi: (string | string[] | {
|
|
463
|
-
source: string;
|
|
464
|
-
directory?: string | undefined;
|
|
465
|
-
}) & (string | string[] | {
|
|
466
|
-
source: string;
|
|
467
|
-
directory?: string | undefined;
|
|
468
|
-
} | undefined);
|
|
469
|
-
group: string;
|
|
470
|
-
pages: any[];
|
|
471
|
-
icon?: string | {
|
|
472
|
-
name: string;
|
|
473
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
474
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
475
|
-
} | undefined;
|
|
476
|
-
expanded?: boolean | undefined;
|
|
477
|
-
public?: boolean | undefined;
|
|
478
|
-
tag?: string | undefined;
|
|
479
|
-
hidden?: boolean | undefined;
|
|
480
|
-
root?: string | undefined;
|
|
481
|
-
} | {
|
|
482
|
-
group: string;
|
|
483
|
-
pages: any[];
|
|
484
|
-
asyncapi: (string | string[] | {
|
|
485
|
-
source: string;
|
|
486
|
-
directory?: string | undefined;
|
|
487
|
-
}) & (string | string[] | {
|
|
488
|
-
source: string;
|
|
489
|
-
directory?: string | undefined;
|
|
490
|
-
} | undefined);
|
|
491
|
-
icon?: string | {
|
|
492
|
-
name: string;
|
|
493
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
494
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
495
|
-
} | undefined;
|
|
496
|
-
expanded?: boolean | undefined;
|
|
497
|
-
public?: boolean | undefined;
|
|
498
|
-
tag?: string | undefined;
|
|
499
|
-
hidden?: boolean | undefined;
|
|
500
|
-
root?: string | undefined;
|
|
501
|
-
} | {
|
|
502
|
-
group: string;
|
|
503
|
-
pages: any[];
|
|
504
|
-
icon?: string | {
|
|
505
|
-
name: string;
|
|
506
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
507
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
508
|
-
} | undefined;
|
|
509
|
-
expanded?: boolean | undefined;
|
|
510
|
-
public?: boolean | undefined;
|
|
511
|
-
tag?: string | undefined;
|
|
512
|
-
hidden?: boolean | undefined;
|
|
513
|
-
root?: string | undefined;
|
|
514
|
-
})[];
|
|
515
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
516
|
-
} | {
|
|
517
|
-
pages: any[];
|
|
518
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
519
|
-
}) & ({
|
|
355
|
+
navigation: {
|
|
520
356
|
products: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
521
357
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
522
358
|
} | {
|
|
@@ -536,13 +372,10 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
536
372
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
537
373
|
} | {
|
|
538
374
|
groups: ({
|
|
539
|
-
openapi:
|
|
375
|
+
openapi: string | string[] | {
|
|
540
376
|
source: string;
|
|
541
377
|
directory?: string | undefined;
|
|
542
|
-
}
|
|
543
|
-
source: string;
|
|
544
|
-
directory?: string | undefined;
|
|
545
|
-
} | undefined);
|
|
378
|
+
};
|
|
546
379
|
group: string;
|
|
547
380
|
pages: any[];
|
|
548
381
|
icon?: string | {
|
|
@@ -558,13 +391,10 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
558
391
|
} | {
|
|
559
392
|
group: string;
|
|
560
393
|
pages: any[];
|
|
561
|
-
asyncapi:
|
|
562
|
-
source: string;
|
|
563
|
-
directory?: string | undefined;
|
|
564
|
-
}) & (string | string[] | {
|
|
394
|
+
asyncapi: string | string[] | {
|
|
565
395
|
source: string;
|
|
566
396
|
directory?: string | undefined;
|
|
567
|
-
}
|
|
397
|
+
};
|
|
568
398
|
icon?: string | {
|
|
569
399
|
name: string;
|
|
570
400
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -593,8 +423,18 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
593
423
|
} | {
|
|
594
424
|
pages: any[];
|
|
595
425
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
596
|
-
}
|
|
597
|
-
|
|
426
|
+
};
|
|
427
|
+
background?: {
|
|
428
|
+
color?: {
|
|
429
|
+
light?: string | undefined;
|
|
430
|
+
dark?: string | undefined;
|
|
431
|
+
} | undefined;
|
|
432
|
+
image?: string | {
|
|
433
|
+
light: string;
|
|
434
|
+
dark: string;
|
|
435
|
+
} | undefined;
|
|
436
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
437
|
+
} | undefined;
|
|
598
438
|
logo?: string | {
|
|
599
439
|
light: string;
|
|
600
440
|
dark: string;
|
|
@@ -605,70 +445,38 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
605
445
|
dark: string;
|
|
606
446
|
} | undefined;
|
|
607
447
|
api?: {
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
directory?: string | undefined;
|
|
448
|
+
params?: {
|
|
449
|
+
expanded?: "all" | "closed" | undefined;
|
|
611
450
|
} | undefined;
|
|
612
|
-
|
|
451
|
+
openapi?: string | string[] | {
|
|
613
452
|
source: string;
|
|
614
453
|
directory?: string | undefined;
|
|
615
454
|
} | undefined;
|
|
616
|
-
params?: {
|
|
617
|
-
expanded?: "all" | "closed" | undefined;
|
|
618
|
-
} | undefined;
|
|
619
455
|
playground?: {
|
|
620
456
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
621
457
|
proxy?: boolean | undefined;
|
|
622
458
|
} | undefined;
|
|
459
|
+
asyncapi?: string | string[] | {
|
|
460
|
+
source: string;
|
|
461
|
+
directory?: string | undefined;
|
|
462
|
+
} | undefined;
|
|
623
463
|
examples?: {
|
|
624
|
-
defaults?: "all" | "required" | undefined;
|
|
625
464
|
languages?: string[] | undefined;
|
|
465
|
+
defaults?: "all" | "required" | undefined;
|
|
626
466
|
prefill?: boolean | undefined;
|
|
627
467
|
} | undefined;
|
|
628
468
|
mdx?: {
|
|
469
|
+
server?: string | string[] | undefined;
|
|
629
470
|
auth?: {
|
|
630
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
631
471
|
name?: string | undefined;
|
|
472
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
632
473
|
} | undefined;
|
|
633
|
-
server?: string | string[] | undefined;
|
|
634
|
-
} | undefined;
|
|
635
|
-
} | undefined;
|
|
636
|
-
appearance?: {
|
|
637
|
-
default?: "light" | "dark" | "system" | undefined;
|
|
638
|
-
strict?: boolean | undefined;
|
|
639
|
-
} | undefined;
|
|
640
|
-
background?: {
|
|
641
|
-
image?: string | {
|
|
642
|
-
light: string;
|
|
643
|
-
dark: string;
|
|
644
|
-
} | undefined;
|
|
645
|
-
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
646
|
-
color?: {
|
|
647
|
-
light?: string | undefined;
|
|
648
|
-
dark?: string | undefined;
|
|
649
474
|
} | undefined;
|
|
650
475
|
} | undefined;
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
href: string;
|
|
654
|
-
label: string;
|
|
655
|
-
icon?: string | {
|
|
656
|
-
name: string;
|
|
657
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
658
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
659
|
-
} | undefined;
|
|
660
|
-
}[] | undefined;
|
|
661
|
-
primary?: {
|
|
662
|
-
type: "button";
|
|
663
|
-
href: string;
|
|
664
|
-
label: string;
|
|
665
|
-
} | {
|
|
666
|
-
type: "github";
|
|
667
|
-
href: string;
|
|
668
|
-
} | undefined;
|
|
476
|
+
metadata?: {
|
|
477
|
+
timestamp: boolean;
|
|
669
478
|
} | undefined;
|
|
670
479
|
footer?: {
|
|
671
|
-
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;
|
|
672
480
|
links?: {
|
|
673
481
|
items: {
|
|
674
482
|
href: string;
|
|
@@ -676,57 +484,11 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
676
484
|
}[];
|
|
677
485
|
header?: string | undefined;
|
|
678
486
|
}[] | undefined;
|
|
487
|
+
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;
|
|
679
488
|
} | undefined;
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
seo?: {
|
|
684
|
-
metatags?: Record<string, string> | undefined;
|
|
685
|
-
indexing?: "all" | "navigable" | undefined;
|
|
686
|
-
} | undefined;
|
|
687
|
-
fonts?: {
|
|
688
|
-
family: string;
|
|
689
|
-
weight?: number | undefined;
|
|
690
|
-
source?: string | undefined;
|
|
691
|
-
format?: "woff" | "woff2" | undefined;
|
|
692
|
-
} | {
|
|
693
|
-
heading?: {
|
|
694
|
-
family: string;
|
|
695
|
-
weight?: number | undefined;
|
|
696
|
-
source?: string | undefined;
|
|
697
|
-
format?: "woff" | "woff2" | undefined;
|
|
698
|
-
} | undefined;
|
|
699
|
-
body?: {
|
|
700
|
-
family: string;
|
|
701
|
-
weight?: number | undefined;
|
|
702
|
-
source?: string | undefined;
|
|
703
|
-
format?: "woff" | "woff2" | undefined;
|
|
704
|
-
} | undefined;
|
|
705
|
-
} | undefined;
|
|
706
|
-
icons?: {
|
|
707
|
-
library: "fontawesome" | "lucide";
|
|
708
|
-
} | undefined;
|
|
709
|
-
styling?: {
|
|
710
|
-
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
711
|
-
codeblocks?: "dark" | "system" | {
|
|
712
|
-
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" | {
|
|
713
|
-
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";
|
|
714
|
-
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";
|
|
715
|
-
} | undefined;
|
|
716
|
-
languages?: {
|
|
717
|
-
custom?: string[] | undefined;
|
|
718
|
-
} | undefined;
|
|
719
|
-
} | undefined;
|
|
720
|
-
latex?: boolean | undefined;
|
|
721
|
-
} | undefined;
|
|
722
|
-
redirects?: {
|
|
723
|
-
source: string;
|
|
724
|
-
destination: string;
|
|
725
|
-
permanent?: boolean | undefined;
|
|
726
|
-
}[] | undefined;
|
|
727
|
-
integrations?: {
|
|
728
|
-
amplitude?: {
|
|
729
|
-
apiKey: string;
|
|
489
|
+
integrations?: {
|
|
490
|
+
amplitude?: {
|
|
491
|
+
apiKey: string;
|
|
730
492
|
} | undefined;
|
|
731
493
|
clarity?: {
|
|
732
494
|
projectId: string;
|
|
@@ -737,9 +499,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
737
499
|
fathom?: {
|
|
738
500
|
siteId: string;
|
|
739
501
|
} | undefined;
|
|
740
|
-
frontchat?: {
|
|
741
|
-
snippetId: string;
|
|
742
|
-
} | undefined;
|
|
743
502
|
ga4?: {
|
|
744
503
|
measurementId: string;
|
|
745
504
|
} | undefined;
|
|
@@ -757,9 +516,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
757
516
|
hjid: string;
|
|
758
517
|
hjsv: string;
|
|
759
518
|
} | undefined;
|
|
760
|
-
intercom?: {
|
|
761
|
-
appId: string;
|
|
762
|
-
} | undefined;
|
|
763
519
|
koala?: {
|
|
764
520
|
publicApiKey: string;
|
|
765
521
|
} | undefined;
|
|
@@ -769,9 +525,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
769
525
|
mixpanel?: {
|
|
770
526
|
projectToken: string;
|
|
771
527
|
} | undefined;
|
|
772
|
-
osano?: {
|
|
773
|
-
scriptSource: string;
|
|
774
|
-
} | undefined;
|
|
775
528
|
pirsch?: {
|
|
776
529
|
id: string;
|
|
777
530
|
} | undefined;
|
|
@@ -786,13 +539,93 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
786
539
|
segment?: {
|
|
787
540
|
key: string;
|
|
788
541
|
} | undefined;
|
|
542
|
+
intercom?: {
|
|
543
|
+
appId: string;
|
|
544
|
+
} | undefined;
|
|
545
|
+
frontchat?: {
|
|
546
|
+
snippetId: string;
|
|
547
|
+
} | undefined;
|
|
548
|
+
osano?: {
|
|
549
|
+
scriptSource: string;
|
|
550
|
+
} | undefined;
|
|
789
551
|
telemetry?: {
|
|
790
552
|
enabled?: boolean | undefined;
|
|
791
553
|
} | undefined;
|
|
792
554
|
cookies?: {
|
|
793
|
-
key?: string | undefined;
|
|
794
555
|
value?: string | undefined;
|
|
556
|
+
key?: string | undefined;
|
|
557
|
+
} | undefined;
|
|
558
|
+
} | undefined;
|
|
559
|
+
search?: {
|
|
560
|
+
prompt?: string | undefined;
|
|
561
|
+
} | undefined;
|
|
562
|
+
redirects?: {
|
|
563
|
+
source: string;
|
|
564
|
+
destination: string;
|
|
565
|
+
permanent?: boolean | undefined;
|
|
566
|
+
}[] | undefined;
|
|
567
|
+
seo?: {
|
|
568
|
+
metatags?: Record<string, string> | undefined;
|
|
569
|
+
indexing?: "all" | "navigable" | undefined;
|
|
570
|
+
} | undefined;
|
|
571
|
+
description?: string | undefined;
|
|
572
|
+
appearance?: {
|
|
573
|
+
strict?: boolean | undefined;
|
|
574
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
575
|
+
} | undefined;
|
|
576
|
+
fonts?: {
|
|
577
|
+
family: string;
|
|
578
|
+
source?: string | undefined;
|
|
579
|
+
weight?: number | undefined;
|
|
580
|
+
format?: "woff" | "woff2" | undefined;
|
|
581
|
+
} | {
|
|
582
|
+
body?: {
|
|
583
|
+
family: string;
|
|
584
|
+
source?: string | undefined;
|
|
585
|
+
weight?: number | undefined;
|
|
586
|
+
format?: "woff" | "woff2" | undefined;
|
|
587
|
+
} | undefined;
|
|
588
|
+
heading?: {
|
|
589
|
+
family: string;
|
|
590
|
+
source?: string | undefined;
|
|
591
|
+
weight?: number | undefined;
|
|
592
|
+
format?: "woff" | "woff2" | undefined;
|
|
593
|
+
} | undefined;
|
|
594
|
+
} | undefined;
|
|
595
|
+
navbar?: {
|
|
596
|
+
primary?: {
|
|
597
|
+
type: "button";
|
|
598
|
+
href: string;
|
|
599
|
+
label: string;
|
|
600
|
+
} | {
|
|
601
|
+
type: "github";
|
|
602
|
+
href: string;
|
|
603
|
+
} | undefined;
|
|
604
|
+
links?: {
|
|
605
|
+
href: string;
|
|
606
|
+
label: string;
|
|
607
|
+
icon?: string | {
|
|
608
|
+
name: string;
|
|
609
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
610
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
611
|
+
} | undefined;
|
|
612
|
+
}[] | undefined;
|
|
613
|
+
} | undefined;
|
|
614
|
+
icons?: {
|
|
615
|
+
library: "fontawesome" | "lucide";
|
|
616
|
+
} | undefined;
|
|
617
|
+
styling?: {
|
|
618
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
619
|
+
codeblocks?: "dark" | "system" | {
|
|
620
|
+
languages?: {
|
|
621
|
+
custom?: string[] | undefined;
|
|
622
|
+
} | undefined;
|
|
623
|
+
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" | {
|
|
624
|
+
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";
|
|
625
|
+
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";
|
|
626
|
+
} | undefined;
|
|
795
627
|
} | undefined;
|
|
628
|
+
latex?: boolean | undefined;
|
|
796
629
|
} | undefined;
|
|
797
630
|
banner?: {
|
|
798
631
|
content: string;
|
|
@@ -807,19 +640,13 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
807
640
|
} | undefined;
|
|
808
641
|
contextual?: {
|
|
809
642
|
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
|
|
810
|
-
href:
|
|
811
|
-
base: string;
|
|
812
|
-
query?: {
|
|
813
|
-
value: string;
|
|
814
|
-
key: string;
|
|
815
|
-
}[] | undefined;
|
|
816
|
-
}) & (string | {
|
|
643
|
+
href: string | {
|
|
817
644
|
base: string;
|
|
818
645
|
query?: {
|
|
819
646
|
value: string;
|
|
820
647
|
key: string;
|
|
821
648
|
}[] | undefined;
|
|
822
|
-
}
|
|
649
|
+
};
|
|
823
650
|
title: string;
|
|
824
651
|
description: string;
|
|
825
652
|
icon?: string | {
|
|
@@ -830,8 +657,8 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
830
657
|
})[];
|
|
831
658
|
} | undefined;
|
|
832
659
|
thumbnails?: {
|
|
833
|
-
appearance?: import("@mintlify/validation").ThumbnailAppearance | undefined;
|
|
834
660
|
background?: string | undefined;
|
|
661
|
+
appearance?: import("@mintlify/validation").ThumbnailAppearance | undefined;
|
|
835
662
|
fonts?: {
|
|
836
663
|
family: string;
|
|
837
664
|
} | undefined;
|
|
@@ -839,9 +666,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
839
666
|
interaction?: {
|
|
840
667
|
drilldown?: boolean | undefined;
|
|
841
668
|
} | undefined;
|
|
842
|
-
metadata?: {
|
|
843
|
-
timestamp: boolean;
|
|
844
|
-
} | undefined;
|
|
845
669
|
} | {
|
|
846
670
|
name: string;
|
|
847
671
|
$schema: string;
|
|
@@ -851,7 +675,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
851
675
|
light?: string | undefined;
|
|
852
676
|
dark?: string | undefined;
|
|
853
677
|
};
|
|
854
|
-
navigation:
|
|
678
|
+
navigation: {
|
|
855
679
|
products: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
856
680
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
857
681
|
} | {
|
|
@@ -871,90 +695,10 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
871
695
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
872
696
|
} | {
|
|
873
697
|
groups: ({
|
|
874
|
-
openapi:
|
|
698
|
+
openapi: string | string[] | {
|
|
875
699
|
source: string;
|
|
876
700
|
directory?: string | undefined;
|
|
877
|
-
}
|
|
878
|
-
source: string;
|
|
879
|
-
directory?: string | undefined;
|
|
880
|
-
} | undefined);
|
|
881
|
-
group: string;
|
|
882
|
-
pages: any[];
|
|
883
|
-
icon?: string | {
|
|
884
|
-
name: string;
|
|
885
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
886
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
887
|
-
} | undefined;
|
|
888
|
-
expanded?: boolean | undefined;
|
|
889
|
-
public?: boolean | undefined;
|
|
890
|
-
tag?: string | undefined;
|
|
891
|
-
hidden?: boolean | undefined;
|
|
892
|
-
root?: string | undefined;
|
|
893
|
-
} | {
|
|
894
|
-
group: string;
|
|
895
|
-
pages: any[];
|
|
896
|
-
asyncapi: (string | string[] | {
|
|
897
|
-
source: string;
|
|
898
|
-
directory?: string | undefined;
|
|
899
|
-
}) & (string | string[] | {
|
|
900
|
-
source: string;
|
|
901
|
-
directory?: string | undefined;
|
|
902
|
-
} | undefined);
|
|
903
|
-
icon?: string | {
|
|
904
|
-
name: string;
|
|
905
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
906
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
907
|
-
} | undefined;
|
|
908
|
-
expanded?: boolean | undefined;
|
|
909
|
-
public?: boolean | undefined;
|
|
910
|
-
tag?: string | undefined;
|
|
911
|
-
hidden?: boolean | undefined;
|
|
912
|
-
root?: string | undefined;
|
|
913
|
-
} | {
|
|
914
|
-
group: string;
|
|
915
|
-
pages: any[];
|
|
916
|
-
icon?: string | {
|
|
917
|
-
name: string;
|
|
918
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
919
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
920
|
-
} | undefined;
|
|
921
|
-
expanded?: boolean | undefined;
|
|
922
|
-
public?: boolean | undefined;
|
|
923
|
-
tag?: string | undefined;
|
|
924
|
-
hidden?: boolean | undefined;
|
|
925
|
-
root?: string | undefined;
|
|
926
|
-
})[];
|
|
927
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
928
|
-
} | {
|
|
929
|
-
pages: any[];
|
|
930
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
931
|
-
}) & ({
|
|
932
|
-
products: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
933
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
934
|
-
} | {
|
|
935
|
-
languages: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
936
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
937
|
-
} | {
|
|
938
|
-
versions: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
939
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
940
|
-
} | {
|
|
941
|
-
tabs: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
942
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
943
|
-
} | {
|
|
944
|
-
dropdowns: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
945
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
946
|
-
} | {
|
|
947
|
-
anchors: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
948
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
949
|
-
} | {
|
|
950
|
-
groups: ({
|
|
951
|
-
openapi: (string | string[] | {
|
|
952
|
-
source: string;
|
|
953
|
-
directory?: string | undefined;
|
|
954
|
-
}) & (string | string[] | {
|
|
955
|
-
source: string;
|
|
956
|
-
directory?: string | undefined;
|
|
957
|
-
} | undefined);
|
|
701
|
+
};
|
|
958
702
|
group: string;
|
|
959
703
|
pages: any[];
|
|
960
704
|
icon?: string | {
|
|
@@ -970,13 +714,10 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
970
714
|
} | {
|
|
971
715
|
group: string;
|
|
972
716
|
pages: any[];
|
|
973
|
-
asyncapi:
|
|
717
|
+
asyncapi: string | string[] | {
|
|
974
718
|
source: string;
|
|
975
719
|
directory?: string | undefined;
|
|
976
|
-
}
|
|
977
|
-
source: string;
|
|
978
|
-
directory?: string | undefined;
|
|
979
|
-
} | undefined);
|
|
720
|
+
};
|
|
980
721
|
icon?: string | {
|
|
981
722
|
name: string;
|
|
982
723
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1005,8 +746,18 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1005
746
|
} | {
|
|
1006
747
|
pages: any[];
|
|
1007
748
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1008
|
-
}
|
|
1009
|
-
|
|
749
|
+
};
|
|
750
|
+
background?: {
|
|
751
|
+
color?: {
|
|
752
|
+
light?: string | undefined;
|
|
753
|
+
dark?: string | undefined;
|
|
754
|
+
} | undefined;
|
|
755
|
+
image?: string | {
|
|
756
|
+
light: string;
|
|
757
|
+
dark: string;
|
|
758
|
+
} | undefined;
|
|
759
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
760
|
+
} | undefined;
|
|
1010
761
|
logo?: string | {
|
|
1011
762
|
light: string;
|
|
1012
763
|
dark: string;
|
|
@@ -1017,70 +768,38 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1017
768
|
dark: string;
|
|
1018
769
|
} | undefined;
|
|
1019
770
|
api?: {
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
directory?: string | undefined;
|
|
771
|
+
params?: {
|
|
772
|
+
expanded?: "all" | "closed" | undefined;
|
|
1023
773
|
} | undefined;
|
|
1024
|
-
|
|
774
|
+
openapi?: string | string[] | {
|
|
1025
775
|
source: string;
|
|
1026
776
|
directory?: string | undefined;
|
|
1027
777
|
} | undefined;
|
|
1028
|
-
params?: {
|
|
1029
|
-
expanded?: "all" | "closed" | undefined;
|
|
1030
|
-
} | undefined;
|
|
1031
778
|
playground?: {
|
|
1032
779
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
1033
780
|
proxy?: boolean | undefined;
|
|
1034
781
|
} | undefined;
|
|
782
|
+
asyncapi?: string | string[] | {
|
|
783
|
+
source: string;
|
|
784
|
+
directory?: string | undefined;
|
|
785
|
+
} | undefined;
|
|
1035
786
|
examples?: {
|
|
1036
|
-
defaults?: "all" | "required" | undefined;
|
|
1037
787
|
languages?: string[] | undefined;
|
|
788
|
+
defaults?: "all" | "required" | undefined;
|
|
1038
789
|
prefill?: boolean | undefined;
|
|
1039
790
|
} | undefined;
|
|
1040
791
|
mdx?: {
|
|
792
|
+
server?: string | string[] | undefined;
|
|
1041
793
|
auth?: {
|
|
1042
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
1043
794
|
name?: string | undefined;
|
|
795
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
1044
796
|
} | undefined;
|
|
1045
|
-
server?: string | string[] | undefined;
|
|
1046
797
|
} | undefined;
|
|
1047
798
|
} | undefined;
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
strict?: boolean | undefined;
|
|
1051
|
-
} | undefined;
|
|
1052
|
-
background?: {
|
|
1053
|
-
image?: string | {
|
|
1054
|
-
light: string;
|
|
1055
|
-
dark: string;
|
|
1056
|
-
} | undefined;
|
|
1057
|
-
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
1058
|
-
color?: {
|
|
1059
|
-
light?: string | undefined;
|
|
1060
|
-
dark?: string | undefined;
|
|
1061
|
-
} | undefined;
|
|
799
|
+
metadata?: {
|
|
800
|
+
timestamp: boolean;
|
|
1062
801
|
} | undefined;
|
|
1063
|
-
|
|
1064
|
-
links?: {
|
|
1065
|
-
href: string;
|
|
1066
|
-
label: string;
|
|
1067
|
-
icon?: string | {
|
|
1068
|
-
name: string;
|
|
1069
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1070
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1071
|
-
} | undefined;
|
|
1072
|
-
}[] | undefined;
|
|
1073
|
-
primary?: {
|
|
1074
|
-
type: "button";
|
|
1075
|
-
href: string;
|
|
1076
|
-
label: string;
|
|
1077
|
-
} | {
|
|
1078
|
-
type: "github";
|
|
1079
|
-
href: string;
|
|
1080
|
-
} | undefined;
|
|
1081
|
-
} | undefined;
|
|
1082
|
-
footer?: {
|
|
1083
|
-
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;
|
|
802
|
+
footer?: {
|
|
1084
803
|
links?: {
|
|
1085
804
|
items: {
|
|
1086
805
|
href: string;
|
|
@@ -1088,54 +807,8 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1088
807
|
}[];
|
|
1089
808
|
header?: string | undefined;
|
|
1090
809
|
}[] | undefined;
|
|
810
|
+
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;
|
|
1091
811
|
} | undefined;
|
|
1092
|
-
search?: {
|
|
1093
|
-
prompt?: string | undefined;
|
|
1094
|
-
} | undefined;
|
|
1095
|
-
seo?: {
|
|
1096
|
-
metatags?: Record<string, string> | undefined;
|
|
1097
|
-
indexing?: "all" | "navigable" | undefined;
|
|
1098
|
-
} | undefined;
|
|
1099
|
-
fonts?: {
|
|
1100
|
-
family: string;
|
|
1101
|
-
weight?: number | undefined;
|
|
1102
|
-
source?: string | undefined;
|
|
1103
|
-
format?: "woff" | "woff2" | undefined;
|
|
1104
|
-
} | {
|
|
1105
|
-
heading?: {
|
|
1106
|
-
family: string;
|
|
1107
|
-
weight?: number | undefined;
|
|
1108
|
-
source?: string | undefined;
|
|
1109
|
-
format?: "woff" | "woff2" | undefined;
|
|
1110
|
-
} | undefined;
|
|
1111
|
-
body?: {
|
|
1112
|
-
family: string;
|
|
1113
|
-
weight?: number | undefined;
|
|
1114
|
-
source?: string | undefined;
|
|
1115
|
-
format?: "woff" | "woff2" | undefined;
|
|
1116
|
-
} | undefined;
|
|
1117
|
-
} | undefined;
|
|
1118
|
-
icons?: {
|
|
1119
|
-
library: "fontawesome" | "lucide";
|
|
1120
|
-
} | undefined;
|
|
1121
|
-
styling?: {
|
|
1122
|
-
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
1123
|
-
codeblocks?: "dark" | "system" | {
|
|
1124
|
-
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" | {
|
|
1125
|
-
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";
|
|
1126
|
-
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";
|
|
1127
|
-
} | undefined;
|
|
1128
|
-
languages?: {
|
|
1129
|
-
custom?: string[] | undefined;
|
|
1130
|
-
} | undefined;
|
|
1131
|
-
} | undefined;
|
|
1132
|
-
latex?: boolean | undefined;
|
|
1133
|
-
} | undefined;
|
|
1134
|
-
redirects?: {
|
|
1135
|
-
source: string;
|
|
1136
|
-
destination: string;
|
|
1137
|
-
permanent?: boolean | undefined;
|
|
1138
|
-
}[] | undefined;
|
|
1139
812
|
integrations?: {
|
|
1140
813
|
amplitude?: {
|
|
1141
814
|
apiKey: string;
|
|
@@ -1149,9 +822,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1149
822
|
fathom?: {
|
|
1150
823
|
siteId: string;
|
|
1151
824
|
} | undefined;
|
|
1152
|
-
frontchat?: {
|
|
1153
|
-
snippetId: string;
|
|
1154
|
-
} | undefined;
|
|
1155
825
|
ga4?: {
|
|
1156
826
|
measurementId: string;
|
|
1157
827
|
} | undefined;
|
|
@@ -1169,9 +839,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1169
839
|
hjid: string;
|
|
1170
840
|
hjsv: string;
|
|
1171
841
|
} | undefined;
|
|
1172
|
-
intercom?: {
|
|
1173
|
-
appId: string;
|
|
1174
|
-
} | undefined;
|
|
1175
842
|
koala?: {
|
|
1176
843
|
publicApiKey: string;
|
|
1177
844
|
} | undefined;
|
|
@@ -1181,9 +848,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1181
848
|
mixpanel?: {
|
|
1182
849
|
projectToken: string;
|
|
1183
850
|
} | undefined;
|
|
1184
|
-
osano?: {
|
|
1185
|
-
scriptSource: string;
|
|
1186
|
-
} | undefined;
|
|
1187
851
|
pirsch?: {
|
|
1188
852
|
id: string;
|
|
1189
853
|
} | undefined;
|
|
@@ -1198,13 +862,93 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1198
862
|
segment?: {
|
|
1199
863
|
key: string;
|
|
1200
864
|
} | undefined;
|
|
865
|
+
intercom?: {
|
|
866
|
+
appId: string;
|
|
867
|
+
} | undefined;
|
|
868
|
+
frontchat?: {
|
|
869
|
+
snippetId: string;
|
|
870
|
+
} | undefined;
|
|
871
|
+
osano?: {
|
|
872
|
+
scriptSource: string;
|
|
873
|
+
} | undefined;
|
|
1201
874
|
telemetry?: {
|
|
1202
875
|
enabled?: boolean | undefined;
|
|
1203
876
|
} | undefined;
|
|
1204
877
|
cookies?: {
|
|
1205
|
-
key?: string | undefined;
|
|
1206
878
|
value?: string | undefined;
|
|
879
|
+
key?: string | undefined;
|
|
880
|
+
} | undefined;
|
|
881
|
+
} | undefined;
|
|
882
|
+
search?: {
|
|
883
|
+
prompt?: string | undefined;
|
|
884
|
+
} | undefined;
|
|
885
|
+
redirects?: {
|
|
886
|
+
source: string;
|
|
887
|
+
destination: string;
|
|
888
|
+
permanent?: boolean | undefined;
|
|
889
|
+
}[] | undefined;
|
|
890
|
+
seo?: {
|
|
891
|
+
metatags?: Record<string, string> | undefined;
|
|
892
|
+
indexing?: "all" | "navigable" | undefined;
|
|
893
|
+
} | undefined;
|
|
894
|
+
description?: string | undefined;
|
|
895
|
+
appearance?: {
|
|
896
|
+
strict?: boolean | undefined;
|
|
897
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
898
|
+
} | undefined;
|
|
899
|
+
fonts?: {
|
|
900
|
+
family: string;
|
|
901
|
+
source?: string | undefined;
|
|
902
|
+
weight?: number | undefined;
|
|
903
|
+
format?: "woff" | "woff2" | undefined;
|
|
904
|
+
} | {
|
|
905
|
+
body?: {
|
|
906
|
+
family: string;
|
|
907
|
+
source?: string | undefined;
|
|
908
|
+
weight?: number | undefined;
|
|
909
|
+
format?: "woff" | "woff2" | undefined;
|
|
910
|
+
} | undefined;
|
|
911
|
+
heading?: {
|
|
912
|
+
family: string;
|
|
913
|
+
source?: string | undefined;
|
|
914
|
+
weight?: number | undefined;
|
|
915
|
+
format?: "woff" | "woff2" | undefined;
|
|
916
|
+
} | undefined;
|
|
917
|
+
} | undefined;
|
|
918
|
+
navbar?: {
|
|
919
|
+
primary?: {
|
|
920
|
+
type: "button";
|
|
921
|
+
href: string;
|
|
922
|
+
label: string;
|
|
923
|
+
} | {
|
|
924
|
+
type: "github";
|
|
925
|
+
href: string;
|
|
926
|
+
} | undefined;
|
|
927
|
+
links?: {
|
|
928
|
+
href: string;
|
|
929
|
+
label: string;
|
|
930
|
+
icon?: string | {
|
|
931
|
+
name: string;
|
|
932
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
933
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
934
|
+
} | undefined;
|
|
935
|
+
}[] | undefined;
|
|
936
|
+
} | undefined;
|
|
937
|
+
icons?: {
|
|
938
|
+
library: "fontawesome" | "lucide";
|
|
939
|
+
} | undefined;
|
|
940
|
+
styling?: {
|
|
941
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
942
|
+
codeblocks?: "dark" | "system" | {
|
|
943
|
+
languages?: {
|
|
944
|
+
custom?: string[] | undefined;
|
|
945
|
+
} | undefined;
|
|
946
|
+
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" | {
|
|
947
|
+
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";
|
|
948
|
+
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";
|
|
949
|
+
} | undefined;
|
|
1207
950
|
} | undefined;
|
|
951
|
+
latex?: boolean | undefined;
|
|
1208
952
|
} | undefined;
|
|
1209
953
|
banner?: {
|
|
1210
954
|
content: string;
|
|
@@ -1219,19 +963,13 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1219
963
|
} | undefined;
|
|
1220
964
|
contextual?: {
|
|
1221
965
|
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
|
|
1222
|
-
href:
|
|
1223
|
-
base: string;
|
|
1224
|
-
query?: {
|
|
1225
|
-
value: string;
|
|
1226
|
-
key: string;
|
|
1227
|
-
}[] | undefined;
|
|
1228
|
-
}) & (string | {
|
|
966
|
+
href: string | {
|
|
1229
967
|
base: string;
|
|
1230
968
|
query?: {
|
|
1231
969
|
value: string;
|
|
1232
970
|
key: string;
|
|
1233
971
|
}[] | undefined;
|
|
1234
|
-
}
|
|
972
|
+
};
|
|
1235
973
|
title: string;
|
|
1236
974
|
description: string;
|
|
1237
975
|
icon?: string | {
|
|
@@ -1242,8 +980,8 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1242
980
|
})[];
|
|
1243
981
|
} | undefined;
|
|
1244
982
|
thumbnails?: {
|
|
1245
|
-
appearance?: import("@mintlify/validation").ThumbnailAppearance | undefined;
|
|
1246
983
|
background?: string | undefined;
|
|
984
|
+
appearance?: import("@mintlify/validation").ThumbnailAppearance | undefined;
|
|
1247
985
|
fonts?: {
|
|
1248
986
|
family: string;
|
|
1249
987
|
} | undefined;
|
|
@@ -1251,9 +989,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1251
989
|
interaction?: {
|
|
1252
990
|
drilldown?: boolean | undefined;
|
|
1253
991
|
} | undefined;
|
|
1254
|
-
metadata?: {
|
|
1255
|
-
timestamp: boolean;
|
|
1256
|
-
} | undefined;
|
|
1257
992
|
} | {
|
|
1258
993
|
name: string;
|
|
1259
994
|
$schema: string;
|
|
@@ -1263,84 +998,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1263
998
|
light?: string | undefined;
|
|
1264
999
|
dark?: string | undefined;
|
|
1265
1000
|
};
|
|
1266
|
-
navigation:
|
|
1267
|
-
products: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
1268
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1269
|
-
} | {
|
|
1270
|
-
languages: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
1271
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1272
|
-
} | {
|
|
1273
|
-
versions: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
1274
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1275
|
-
} | {
|
|
1276
|
-
tabs: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
1277
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1278
|
-
} | {
|
|
1279
|
-
dropdowns: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
1280
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1281
|
-
} | {
|
|
1282
|
-
anchors: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
1283
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1284
|
-
} | {
|
|
1285
|
-
groups: ({
|
|
1286
|
-
openapi: (string | string[] | {
|
|
1287
|
-
source: string;
|
|
1288
|
-
directory?: string | undefined;
|
|
1289
|
-
}) & (string | string[] | {
|
|
1290
|
-
source: string;
|
|
1291
|
-
directory?: string | undefined;
|
|
1292
|
-
} | undefined);
|
|
1293
|
-
group: string;
|
|
1294
|
-
pages: any[];
|
|
1295
|
-
icon?: string | {
|
|
1296
|
-
name: string;
|
|
1297
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1298
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1299
|
-
} | undefined;
|
|
1300
|
-
expanded?: boolean | undefined;
|
|
1301
|
-
public?: boolean | undefined;
|
|
1302
|
-
tag?: string | undefined;
|
|
1303
|
-
hidden?: boolean | undefined;
|
|
1304
|
-
root?: string | undefined;
|
|
1305
|
-
} | {
|
|
1306
|
-
group: string;
|
|
1307
|
-
pages: any[];
|
|
1308
|
-
asyncapi: (string | string[] | {
|
|
1309
|
-
source: string;
|
|
1310
|
-
directory?: string | undefined;
|
|
1311
|
-
}) & (string | string[] | {
|
|
1312
|
-
source: string;
|
|
1313
|
-
directory?: string | undefined;
|
|
1314
|
-
} | undefined);
|
|
1315
|
-
icon?: string | {
|
|
1316
|
-
name: string;
|
|
1317
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1318
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1319
|
-
} | undefined;
|
|
1320
|
-
expanded?: boolean | undefined;
|
|
1321
|
-
public?: boolean | undefined;
|
|
1322
|
-
tag?: string | undefined;
|
|
1323
|
-
hidden?: boolean | undefined;
|
|
1324
|
-
root?: string | undefined;
|
|
1325
|
-
} | {
|
|
1326
|
-
group: string;
|
|
1327
|
-
pages: any[];
|
|
1328
|
-
icon?: string | {
|
|
1329
|
-
name: string;
|
|
1330
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1331
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1332
|
-
} | undefined;
|
|
1333
|
-
expanded?: boolean | undefined;
|
|
1334
|
-
public?: boolean | undefined;
|
|
1335
|
-
tag?: string | undefined;
|
|
1336
|
-
hidden?: boolean | undefined;
|
|
1337
|
-
root?: string | undefined;
|
|
1338
|
-
})[];
|
|
1339
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1340
|
-
} | {
|
|
1341
|
-
pages: any[];
|
|
1342
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1343
|
-
}) & ({
|
|
1001
|
+
navigation: {
|
|
1344
1002
|
products: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
1345
1003
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1346
1004
|
} | {
|
|
@@ -1360,13 +1018,10 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1360
1018
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1361
1019
|
} | {
|
|
1362
1020
|
groups: ({
|
|
1363
|
-
openapi:
|
|
1021
|
+
openapi: string | string[] | {
|
|
1364
1022
|
source: string;
|
|
1365
1023
|
directory?: string | undefined;
|
|
1366
|
-
}
|
|
1367
|
-
source: string;
|
|
1368
|
-
directory?: string | undefined;
|
|
1369
|
-
} | undefined);
|
|
1024
|
+
};
|
|
1370
1025
|
group: string;
|
|
1371
1026
|
pages: any[];
|
|
1372
1027
|
icon?: string | {
|
|
@@ -1382,13 +1037,10 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1382
1037
|
} | {
|
|
1383
1038
|
group: string;
|
|
1384
1039
|
pages: any[];
|
|
1385
|
-
asyncapi:
|
|
1386
|
-
source: string;
|
|
1387
|
-
directory?: string | undefined;
|
|
1388
|
-
}) & (string | string[] | {
|
|
1040
|
+
asyncapi: string | string[] | {
|
|
1389
1041
|
source: string;
|
|
1390
1042
|
directory?: string | undefined;
|
|
1391
|
-
}
|
|
1043
|
+
};
|
|
1392
1044
|
icon?: string | {
|
|
1393
1045
|
name: string;
|
|
1394
1046
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1417,8 +1069,18 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1417
1069
|
} | {
|
|
1418
1070
|
pages: any[];
|
|
1419
1071
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1420
|
-
}
|
|
1421
|
-
|
|
1072
|
+
};
|
|
1073
|
+
background?: {
|
|
1074
|
+
color?: {
|
|
1075
|
+
light?: string | undefined;
|
|
1076
|
+
dark?: string | undefined;
|
|
1077
|
+
} | undefined;
|
|
1078
|
+
image?: string | {
|
|
1079
|
+
light: string;
|
|
1080
|
+
dark: string;
|
|
1081
|
+
} | undefined;
|
|
1082
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
1083
|
+
} | undefined;
|
|
1422
1084
|
logo?: string | {
|
|
1423
1085
|
light: string;
|
|
1424
1086
|
dark: string;
|
|
@@ -1429,70 +1091,38 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1429
1091
|
dark: string;
|
|
1430
1092
|
} | undefined;
|
|
1431
1093
|
api?: {
|
|
1094
|
+
params?: {
|
|
1095
|
+
expanded?: "all" | "closed" | undefined;
|
|
1096
|
+
} | undefined;
|
|
1432
1097
|
openapi?: string | string[] | {
|
|
1433
1098
|
source: string;
|
|
1434
1099
|
directory?: string | undefined;
|
|
1435
1100
|
} | undefined;
|
|
1436
|
-
asyncapi?: string | string[] | {
|
|
1437
|
-
source: string;
|
|
1438
|
-
directory?: string | undefined;
|
|
1439
|
-
} | undefined;
|
|
1440
|
-
params?: {
|
|
1441
|
-
expanded?: "all" | "closed" | undefined;
|
|
1442
|
-
} | undefined;
|
|
1443
1101
|
playground?: {
|
|
1444
1102
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
1445
1103
|
proxy?: boolean | undefined;
|
|
1446
1104
|
} | undefined;
|
|
1105
|
+
asyncapi?: string | string[] | {
|
|
1106
|
+
source: string;
|
|
1107
|
+
directory?: string | undefined;
|
|
1108
|
+
} | undefined;
|
|
1447
1109
|
examples?: {
|
|
1448
|
-
defaults?: "all" | "required" | undefined;
|
|
1449
1110
|
languages?: string[] | undefined;
|
|
1111
|
+
defaults?: "all" | "required" | undefined;
|
|
1450
1112
|
prefill?: boolean | undefined;
|
|
1451
1113
|
} | undefined;
|
|
1452
1114
|
mdx?: {
|
|
1115
|
+
server?: string | string[] | undefined;
|
|
1453
1116
|
auth?: {
|
|
1454
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
1455
1117
|
name?: string | undefined;
|
|
1118
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
1456
1119
|
} | undefined;
|
|
1457
|
-
server?: string | string[] | undefined;
|
|
1458
|
-
} | undefined;
|
|
1459
|
-
} | undefined;
|
|
1460
|
-
appearance?: {
|
|
1461
|
-
default?: "light" | "dark" | "system" | undefined;
|
|
1462
|
-
strict?: boolean | undefined;
|
|
1463
|
-
} | undefined;
|
|
1464
|
-
background?: {
|
|
1465
|
-
image?: string | {
|
|
1466
|
-
light: string;
|
|
1467
|
-
dark: string;
|
|
1468
|
-
} | undefined;
|
|
1469
|
-
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
1470
|
-
color?: {
|
|
1471
|
-
light?: string | undefined;
|
|
1472
|
-
dark?: string | undefined;
|
|
1473
1120
|
} | undefined;
|
|
1474
1121
|
} | undefined;
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
href: string;
|
|
1478
|
-
label: string;
|
|
1479
|
-
icon?: string | {
|
|
1480
|
-
name: string;
|
|
1481
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1482
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1483
|
-
} | undefined;
|
|
1484
|
-
}[] | undefined;
|
|
1485
|
-
primary?: {
|
|
1486
|
-
type: "button";
|
|
1487
|
-
href: string;
|
|
1488
|
-
label: string;
|
|
1489
|
-
} | {
|
|
1490
|
-
type: "github";
|
|
1491
|
-
href: string;
|
|
1492
|
-
} | undefined;
|
|
1122
|
+
metadata?: {
|
|
1123
|
+
timestamp: boolean;
|
|
1493
1124
|
} | undefined;
|
|
1494
1125
|
footer?: {
|
|
1495
|
-
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;
|
|
1496
1126
|
links?: {
|
|
1497
1127
|
items: {
|
|
1498
1128
|
href: string;
|
|
@@ -1500,54 +1130,8 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1500
1130
|
}[];
|
|
1501
1131
|
header?: string | undefined;
|
|
1502
1132
|
}[] | undefined;
|
|
1133
|
+
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;
|
|
1503
1134
|
} | undefined;
|
|
1504
|
-
search?: {
|
|
1505
|
-
prompt?: string | undefined;
|
|
1506
|
-
} | undefined;
|
|
1507
|
-
seo?: {
|
|
1508
|
-
metatags?: Record<string, string> | undefined;
|
|
1509
|
-
indexing?: "all" | "navigable" | undefined;
|
|
1510
|
-
} | undefined;
|
|
1511
|
-
fonts?: {
|
|
1512
|
-
family: string;
|
|
1513
|
-
weight?: number | undefined;
|
|
1514
|
-
source?: string | undefined;
|
|
1515
|
-
format?: "woff" | "woff2" | undefined;
|
|
1516
|
-
} | {
|
|
1517
|
-
heading?: {
|
|
1518
|
-
family: string;
|
|
1519
|
-
weight?: number | undefined;
|
|
1520
|
-
source?: string | undefined;
|
|
1521
|
-
format?: "woff" | "woff2" | undefined;
|
|
1522
|
-
} | undefined;
|
|
1523
|
-
body?: {
|
|
1524
|
-
family: string;
|
|
1525
|
-
weight?: number | undefined;
|
|
1526
|
-
source?: string | undefined;
|
|
1527
|
-
format?: "woff" | "woff2" | undefined;
|
|
1528
|
-
} | undefined;
|
|
1529
|
-
} | undefined;
|
|
1530
|
-
icons?: {
|
|
1531
|
-
library: "fontawesome" | "lucide";
|
|
1532
|
-
} | undefined;
|
|
1533
|
-
styling?: {
|
|
1534
|
-
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
1535
|
-
codeblocks?: "dark" | "system" | {
|
|
1536
|
-
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" | {
|
|
1537
|
-
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";
|
|
1538
|
-
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";
|
|
1539
|
-
} | undefined;
|
|
1540
|
-
languages?: {
|
|
1541
|
-
custom?: string[] | undefined;
|
|
1542
|
-
} | undefined;
|
|
1543
|
-
} | undefined;
|
|
1544
|
-
latex?: boolean | undefined;
|
|
1545
|
-
} | undefined;
|
|
1546
|
-
redirects?: {
|
|
1547
|
-
source: string;
|
|
1548
|
-
destination: string;
|
|
1549
|
-
permanent?: boolean | undefined;
|
|
1550
|
-
}[] | undefined;
|
|
1551
1135
|
integrations?: {
|
|
1552
1136
|
amplitude?: {
|
|
1553
1137
|
apiKey: string;
|
|
@@ -1561,9 +1145,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1561
1145
|
fathom?: {
|
|
1562
1146
|
siteId: string;
|
|
1563
1147
|
} | undefined;
|
|
1564
|
-
frontchat?: {
|
|
1565
|
-
snippetId: string;
|
|
1566
|
-
} | undefined;
|
|
1567
1148
|
ga4?: {
|
|
1568
1149
|
measurementId: string;
|
|
1569
1150
|
} | undefined;
|
|
@@ -1581,9 +1162,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1581
1162
|
hjid: string;
|
|
1582
1163
|
hjsv: string;
|
|
1583
1164
|
} | undefined;
|
|
1584
|
-
intercom?: {
|
|
1585
|
-
appId: string;
|
|
1586
|
-
} | undefined;
|
|
1587
1165
|
koala?: {
|
|
1588
1166
|
publicApiKey: string;
|
|
1589
1167
|
} | undefined;
|
|
@@ -1593,9 +1171,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1593
1171
|
mixpanel?: {
|
|
1594
1172
|
projectToken: string;
|
|
1595
1173
|
} | undefined;
|
|
1596
|
-
osano?: {
|
|
1597
|
-
scriptSource: string;
|
|
1598
|
-
} | undefined;
|
|
1599
1174
|
pirsch?: {
|
|
1600
1175
|
id: string;
|
|
1601
1176
|
} | undefined;
|
|
@@ -1610,13 +1185,93 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1610
1185
|
segment?: {
|
|
1611
1186
|
key: string;
|
|
1612
1187
|
} | undefined;
|
|
1188
|
+
intercom?: {
|
|
1189
|
+
appId: string;
|
|
1190
|
+
} | undefined;
|
|
1191
|
+
frontchat?: {
|
|
1192
|
+
snippetId: string;
|
|
1193
|
+
} | undefined;
|
|
1194
|
+
osano?: {
|
|
1195
|
+
scriptSource: string;
|
|
1196
|
+
} | undefined;
|
|
1613
1197
|
telemetry?: {
|
|
1614
1198
|
enabled?: boolean | undefined;
|
|
1615
1199
|
} | undefined;
|
|
1616
1200
|
cookies?: {
|
|
1617
|
-
key?: string | undefined;
|
|
1618
1201
|
value?: string | undefined;
|
|
1202
|
+
key?: string | undefined;
|
|
1203
|
+
} | undefined;
|
|
1204
|
+
} | undefined;
|
|
1205
|
+
search?: {
|
|
1206
|
+
prompt?: string | undefined;
|
|
1207
|
+
} | undefined;
|
|
1208
|
+
redirects?: {
|
|
1209
|
+
source: string;
|
|
1210
|
+
destination: string;
|
|
1211
|
+
permanent?: boolean | undefined;
|
|
1212
|
+
}[] | undefined;
|
|
1213
|
+
seo?: {
|
|
1214
|
+
metatags?: Record<string, string> | undefined;
|
|
1215
|
+
indexing?: "all" | "navigable" | undefined;
|
|
1216
|
+
} | undefined;
|
|
1217
|
+
description?: string | undefined;
|
|
1218
|
+
appearance?: {
|
|
1219
|
+
strict?: boolean | undefined;
|
|
1220
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
1221
|
+
} | undefined;
|
|
1222
|
+
fonts?: {
|
|
1223
|
+
family: string;
|
|
1224
|
+
source?: string | undefined;
|
|
1225
|
+
weight?: number | undefined;
|
|
1226
|
+
format?: "woff" | "woff2" | undefined;
|
|
1227
|
+
} | {
|
|
1228
|
+
body?: {
|
|
1229
|
+
family: string;
|
|
1230
|
+
source?: string | undefined;
|
|
1231
|
+
weight?: number | undefined;
|
|
1232
|
+
format?: "woff" | "woff2" | undefined;
|
|
1233
|
+
} | undefined;
|
|
1234
|
+
heading?: {
|
|
1235
|
+
family: string;
|
|
1236
|
+
source?: string | undefined;
|
|
1237
|
+
weight?: number | undefined;
|
|
1238
|
+
format?: "woff" | "woff2" | undefined;
|
|
1239
|
+
} | undefined;
|
|
1240
|
+
} | undefined;
|
|
1241
|
+
navbar?: {
|
|
1242
|
+
primary?: {
|
|
1243
|
+
type: "button";
|
|
1244
|
+
href: string;
|
|
1245
|
+
label: string;
|
|
1246
|
+
} | {
|
|
1247
|
+
type: "github";
|
|
1248
|
+
href: string;
|
|
1249
|
+
} | undefined;
|
|
1250
|
+
links?: {
|
|
1251
|
+
href: string;
|
|
1252
|
+
label: string;
|
|
1253
|
+
icon?: string | {
|
|
1254
|
+
name: string;
|
|
1255
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1256
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1257
|
+
} | undefined;
|
|
1258
|
+
}[] | undefined;
|
|
1259
|
+
} | undefined;
|
|
1260
|
+
icons?: {
|
|
1261
|
+
library: "fontawesome" | "lucide";
|
|
1262
|
+
} | undefined;
|
|
1263
|
+
styling?: {
|
|
1264
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
1265
|
+
codeblocks?: "dark" | "system" | {
|
|
1266
|
+
languages?: {
|
|
1267
|
+
custom?: string[] | undefined;
|
|
1268
|
+
} | undefined;
|
|
1269
|
+
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" | {
|
|
1270
|
+
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";
|
|
1271
|
+
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";
|
|
1272
|
+
} | undefined;
|
|
1619
1273
|
} | undefined;
|
|
1274
|
+
latex?: boolean | undefined;
|
|
1620
1275
|
} | undefined;
|
|
1621
1276
|
banner?: {
|
|
1622
1277
|
content: string;
|
|
@@ -1631,19 +1286,13 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1631
1286
|
} | undefined;
|
|
1632
1287
|
contextual?: {
|
|
1633
1288
|
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
|
|
1634
|
-
href:
|
|
1289
|
+
href: string | {
|
|
1635
1290
|
base: string;
|
|
1636
1291
|
query?: {
|
|
1637
1292
|
value: string;
|
|
1638
1293
|
key: string;
|
|
1639
1294
|
}[] | undefined;
|
|
1640
|
-
}
|
|
1641
|
-
base: string;
|
|
1642
|
-
query?: {
|
|
1643
|
-
value: string;
|
|
1644
|
-
key: string;
|
|
1645
|
-
}[] | undefined;
|
|
1646
|
-
} | undefined);
|
|
1295
|
+
};
|
|
1647
1296
|
title: string;
|
|
1648
1297
|
description: string;
|
|
1649
1298
|
icon?: string | {
|
|
@@ -1654,8 +1303,8 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1654
1303
|
})[];
|
|
1655
1304
|
} | undefined;
|
|
1656
1305
|
thumbnails?: {
|
|
1657
|
-
appearance?: import("@mintlify/validation").ThumbnailAppearance | undefined;
|
|
1658
1306
|
background?: string | undefined;
|
|
1307
|
+
appearance?: import("@mintlify/validation").ThumbnailAppearance | undefined;
|
|
1659
1308
|
fonts?: {
|
|
1660
1309
|
family: string;
|
|
1661
1310
|
} | undefined;
|
|
@@ -1663,9 +1312,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1663
1312
|
interaction?: {
|
|
1664
1313
|
drilldown?: boolean | undefined;
|
|
1665
1314
|
} | undefined;
|
|
1666
|
-
metadata?: {
|
|
1667
|
-
timestamp: boolean;
|
|
1668
|
-
} | undefined;
|
|
1669
1315
|
} | {
|
|
1670
1316
|
name: string;
|
|
1671
1317
|
$schema: string;
|
|
@@ -1675,7 +1321,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1675
1321
|
light?: string | undefined;
|
|
1676
1322
|
dark?: string | undefined;
|
|
1677
1323
|
};
|
|
1678
|
-
navigation:
|
|
1324
|
+
navigation: {
|
|
1679
1325
|
products: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
1680
1326
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1681
1327
|
} | {
|
|
@@ -1695,13 +1341,10 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1695
1341
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1696
1342
|
} | {
|
|
1697
1343
|
groups: ({
|
|
1698
|
-
openapi:
|
|
1699
|
-
source: string;
|
|
1700
|
-
directory?: string | undefined;
|
|
1701
|
-
}) & (string | string[] | {
|
|
1344
|
+
openapi: string | string[] | {
|
|
1702
1345
|
source: string;
|
|
1703
1346
|
directory?: string | undefined;
|
|
1704
|
-
}
|
|
1347
|
+
};
|
|
1705
1348
|
group: string;
|
|
1706
1349
|
pages: any[];
|
|
1707
1350
|
icon?: string | {
|
|
@@ -1717,13 +1360,10 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1717
1360
|
} | {
|
|
1718
1361
|
group: string;
|
|
1719
1362
|
pages: any[];
|
|
1720
|
-
asyncapi:
|
|
1363
|
+
asyncapi: string | string[] | {
|
|
1721
1364
|
source: string;
|
|
1722
1365
|
directory?: string | undefined;
|
|
1723
|
-
}
|
|
1724
|
-
source: string;
|
|
1725
|
-
directory?: string | undefined;
|
|
1726
|
-
} | undefined);
|
|
1366
|
+
};
|
|
1727
1367
|
icon?: string | {
|
|
1728
1368
|
name: string;
|
|
1729
1369
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1752,85 +1392,18 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1752
1392
|
} | {
|
|
1753
1393
|
pages: any[];
|
|
1754
1394
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1755
|
-
}
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
} | {
|
|
1768
|
-
dropdowns: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
1769
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1770
|
-
} | {
|
|
1771
|
-
anchors: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
1772
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1773
|
-
} | {
|
|
1774
|
-
groups: ({
|
|
1775
|
-
openapi: (string | string[] | {
|
|
1776
|
-
source: string;
|
|
1777
|
-
directory?: string | undefined;
|
|
1778
|
-
}) & (string | string[] | {
|
|
1779
|
-
source: string;
|
|
1780
|
-
directory?: string | undefined;
|
|
1781
|
-
} | undefined);
|
|
1782
|
-
group: string;
|
|
1783
|
-
pages: any[];
|
|
1784
|
-
icon?: string | {
|
|
1785
|
-
name: string;
|
|
1786
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1787
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1788
|
-
} | undefined;
|
|
1789
|
-
expanded?: boolean | undefined;
|
|
1790
|
-
public?: boolean | undefined;
|
|
1791
|
-
tag?: string | undefined;
|
|
1792
|
-
hidden?: boolean | undefined;
|
|
1793
|
-
root?: string | undefined;
|
|
1794
|
-
} | {
|
|
1795
|
-
group: string;
|
|
1796
|
-
pages: any[];
|
|
1797
|
-
asyncapi: (string | string[] | {
|
|
1798
|
-
source: string;
|
|
1799
|
-
directory?: string | undefined;
|
|
1800
|
-
}) & (string | string[] | {
|
|
1801
|
-
source: string;
|
|
1802
|
-
directory?: string | undefined;
|
|
1803
|
-
} | undefined);
|
|
1804
|
-
icon?: string | {
|
|
1805
|
-
name: string;
|
|
1806
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1807
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1808
|
-
} | undefined;
|
|
1809
|
-
expanded?: boolean | undefined;
|
|
1810
|
-
public?: boolean | undefined;
|
|
1811
|
-
tag?: string | undefined;
|
|
1812
|
-
hidden?: boolean | undefined;
|
|
1813
|
-
root?: string | undefined;
|
|
1814
|
-
} | {
|
|
1815
|
-
group: string;
|
|
1816
|
-
pages: any[];
|
|
1817
|
-
icon?: string | {
|
|
1818
|
-
name: string;
|
|
1819
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1820
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1821
|
-
} | undefined;
|
|
1822
|
-
expanded?: boolean | undefined;
|
|
1823
|
-
public?: boolean | undefined;
|
|
1824
|
-
tag?: string | undefined;
|
|
1825
|
-
hidden?: boolean | undefined;
|
|
1826
|
-
root?: string | undefined;
|
|
1827
|
-
})[];
|
|
1828
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1829
|
-
} | {
|
|
1830
|
-
pages: any[];
|
|
1831
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1832
|
-
} | undefined);
|
|
1833
|
-
description?: string | undefined;
|
|
1395
|
+
};
|
|
1396
|
+
background?: {
|
|
1397
|
+
color?: {
|
|
1398
|
+
light?: string | undefined;
|
|
1399
|
+
dark?: string | undefined;
|
|
1400
|
+
} | undefined;
|
|
1401
|
+
image?: string | {
|
|
1402
|
+
light: string;
|
|
1403
|
+
dark: string;
|
|
1404
|
+
} | undefined;
|
|
1405
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
1406
|
+
} | undefined;
|
|
1834
1407
|
logo?: string | {
|
|
1835
1408
|
light: string;
|
|
1836
1409
|
dark: string;
|
|
@@ -1841,70 +1414,38 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1841
1414
|
dark: string;
|
|
1842
1415
|
} | undefined;
|
|
1843
1416
|
api?: {
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
directory?: string | undefined;
|
|
1417
|
+
params?: {
|
|
1418
|
+
expanded?: "all" | "closed" | undefined;
|
|
1847
1419
|
} | undefined;
|
|
1848
|
-
|
|
1420
|
+
openapi?: string | string[] | {
|
|
1849
1421
|
source: string;
|
|
1850
1422
|
directory?: string | undefined;
|
|
1851
1423
|
} | undefined;
|
|
1852
|
-
params?: {
|
|
1853
|
-
expanded?: "all" | "closed" | undefined;
|
|
1854
|
-
} | undefined;
|
|
1855
1424
|
playground?: {
|
|
1856
1425
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
1857
1426
|
proxy?: boolean | undefined;
|
|
1858
1427
|
} | undefined;
|
|
1428
|
+
asyncapi?: string | string[] | {
|
|
1429
|
+
source: string;
|
|
1430
|
+
directory?: string | undefined;
|
|
1431
|
+
} | undefined;
|
|
1859
1432
|
examples?: {
|
|
1860
|
-
defaults?: "all" | "required" | undefined;
|
|
1861
1433
|
languages?: string[] | undefined;
|
|
1434
|
+
defaults?: "all" | "required" | undefined;
|
|
1862
1435
|
prefill?: boolean | undefined;
|
|
1863
1436
|
} | undefined;
|
|
1864
1437
|
mdx?: {
|
|
1438
|
+
server?: string | string[] | undefined;
|
|
1865
1439
|
auth?: {
|
|
1866
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
1867
1440
|
name?: string | undefined;
|
|
1441
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
1868
1442
|
} | undefined;
|
|
1869
|
-
server?: string | string[] | undefined;
|
|
1870
|
-
} | undefined;
|
|
1871
|
-
} | undefined;
|
|
1872
|
-
appearance?: {
|
|
1873
|
-
default?: "light" | "dark" | "system" | undefined;
|
|
1874
|
-
strict?: boolean | undefined;
|
|
1875
|
-
} | undefined;
|
|
1876
|
-
background?: {
|
|
1877
|
-
image?: string | {
|
|
1878
|
-
light: string;
|
|
1879
|
-
dark: string;
|
|
1880
|
-
} | undefined;
|
|
1881
|
-
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
1882
|
-
color?: {
|
|
1883
|
-
light?: string | undefined;
|
|
1884
|
-
dark?: string | undefined;
|
|
1885
1443
|
} | undefined;
|
|
1886
1444
|
} | undefined;
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
href: string;
|
|
1890
|
-
label: string;
|
|
1891
|
-
icon?: string | {
|
|
1892
|
-
name: string;
|
|
1893
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1894
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1895
|
-
} | undefined;
|
|
1896
|
-
}[] | undefined;
|
|
1897
|
-
primary?: {
|
|
1898
|
-
type: "button";
|
|
1899
|
-
href: string;
|
|
1900
|
-
label: string;
|
|
1901
|
-
} | {
|
|
1902
|
-
type: "github";
|
|
1903
|
-
href: string;
|
|
1904
|
-
} | undefined;
|
|
1445
|
+
metadata?: {
|
|
1446
|
+
timestamp: boolean;
|
|
1905
1447
|
} | undefined;
|
|
1906
1448
|
footer?: {
|
|
1907
|
-
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;
|
|
1908
1449
|
links?: {
|
|
1909
1450
|
items: {
|
|
1910
1451
|
href: string;
|
|
@@ -1912,54 +1453,8 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1912
1453
|
}[];
|
|
1913
1454
|
header?: string | undefined;
|
|
1914
1455
|
}[] | undefined;
|
|
1456
|
+
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;
|
|
1915
1457
|
} | undefined;
|
|
1916
|
-
search?: {
|
|
1917
|
-
prompt?: string | undefined;
|
|
1918
|
-
} | undefined;
|
|
1919
|
-
seo?: {
|
|
1920
|
-
metatags?: Record<string, string> | undefined;
|
|
1921
|
-
indexing?: "all" | "navigable" | undefined;
|
|
1922
|
-
} | undefined;
|
|
1923
|
-
fonts?: {
|
|
1924
|
-
family: string;
|
|
1925
|
-
weight?: number | undefined;
|
|
1926
|
-
source?: string | undefined;
|
|
1927
|
-
format?: "woff" | "woff2" | undefined;
|
|
1928
|
-
} | {
|
|
1929
|
-
heading?: {
|
|
1930
|
-
family: string;
|
|
1931
|
-
weight?: number | undefined;
|
|
1932
|
-
source?: string | undefined;
|
|
1933
|
-
format?: "woff" | "woff2" | undefined;
|
|
1934
|
-
} | undefined;
|
|
1935
|
-
body?: {
|
|
1936
|
-
family: string;
|
|
1937
|
-
weight?: number | undefined;
|
|
1938
|
-
source?: string | undefined;
|
|
1939
|
-
format?: "woff" | "woff2" | undefined;
|
|
1940
|
-
} | undefined;
|
|
1941
|
-
} | undefined;
|
|
1942
|
-
icons?: {
|
|
1943
|
-
library: "fontawesome" | "lucide";
|
|
1944
|
-
} | undefined;
|
|
1945
|
-
styling?: {
|
|
1946
|
-
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
1947
|
-
codeblocks?: "dark" | "system" | {
|
|
1948
|
-
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" | {
|
|
1949
|
-
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";
|
|
1950
|
-
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";
|
|
1951
|
-
} | undefined;
|
|
1952
|
-
languages?: {
|
|
1953
|
-
custom?: string[] | undefined;
|
|
1954
|
-
} | undefined;
|
|
1955
|
-
} | undefined;
|
|
1956
|
-
latex?: boolean | undefined;
|
|
1957
|
-
} | undefined;
|
|
1958
|
-
redirects?: {
|
|
1959
|
-
source: string;
|
|
1960
|
-
destination: string;
|
|
1961
|
-
permanent?: boolean | undefined;
|
|
1962
|
-
}[] | undefined;
|
|
1963
1458
|
integrations?: {
|
|
1964
1459
|
amplitude?: {
|
|
1965
1460
|
apiKey: string;
|
|
@@ -1973,9 +1468,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1973
1468
|
fathom?: {
|
|
1974
1469
|
siteId: string;
|
|
1975
1470
|
} | undefined;
|
|
1976
|
-
frontchat?: {
|
|
1977
|
-
snippetId: string;
|
|
1978
|
-
} | undefined;
|
|
1979
1471
|
ga4?: {
|
|
1980
1472
|
measurementId: string;
|
|
1981
1473
|
} | undefined;
|
|
@@ -1993,9 +1485,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1993
1485
|
hjid: string;
|
|
1994
1486
|
hjsv: string;
|
|
1995
1487
|
} | undefined;
|
|
1996
|
-
intercom?: {
|
|
1997
|
-
appId: string;
|
|
1998
|
-
} | undefined;
|
|
1999
1488
|
koala?: {
|
|
2000
1489
|
publicApiKey: string;
|
|
2001
1490
|
} | undefined;
|
|
@@ -2005,9 +1494,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2005
1494
|
mixpanel?: {
|
|
2006
1495
|
projectToken: string;
|
|
2007
1496
|
} | undefined;
|
|
2008
|
-
osano?: {
|
|
2009
|
-
scriptSource: string;
|
|
2010
|
-
} | undefined;
|
|
2011
1497
|
pirsch?: {
|
|
2012
1498
|
id: string;
|
|
2013
1499
|
} | undefined;
|
|
@@ -2022,13 +1508,93 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2022
1508
|
segment?: {
|
|
2023
1509
|
key: string;
|
|
2024
1510
|
} | undefined;
|
|
1511
|
+
intercom?: {
|
|
1512
|
+
appId: string;
|
|
1513
|
+
} | undefined;
|
|
1514
|
+
frontchat?: {
|
|
1515
|
+
snippetId: string;
|
|
1516
|
+
} | undefined;
|
|
1517
|
+
osano?: {
|
|
1518
|
+
scriptSource: string;
|
|
1519
|
+
} | undefined;
|
|
2025
1520
|
telemetry?: {
|
|
2026
1521
|
enabled?: boolean | undefined;
|
|
2027
1522
|
} | undefined;
|
|
2028
1523
|
cookies?: {
|
|
2029
|
-
key?: string | undefined;
|
|
2030
1524
|
value?: string | undefined;
|
|
1525
|
+
key?: string | undefined;
|
|
1526
|
+
} | undefined;
|
|
1527
|
+
} | undefined;
|
|
1528
|
+
search?: {
|
|
1529
|
+
prompt?: string | undefined;
|
|
1530
|
+
} | undefined;
|
|
1531
|
+
redirects?: {
|
|
1532
|
+
source: string;
|
|
1533
|
+
destination: string;
|
|
1534
|
+
permanent?: boolean | undefined;
|
|
1535
|
+
}[] | undefined;
|
|
1536
|
+
seo?: {
|
|
1537
|
+
metatags?: Record<string, string> | undefined;
|
|
1538
|
+
indexing?: "all" | "navigable" | undefined;
|
|
1539
|
+
} | undefined;
|
|
1540
|
+
description?: string | undefined;
|
|
1541
|
+
appearance?: {
|
|
1542
|
+
strict?: boolean | undefined;
|
|
1543
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
1544
|
+
} | undefined;
|
|
1545
|
+
fonts?: {
|
|
1546
|
+
family: string;
|
|
1547
|
+
source?: string | undefined;
|
|
1548
|
+
weight?: number | undefined;
|
|
1549
|
+
format?: "woff" | "woff2" | undefined;
|
|
1550
|
+
} | {
|
|
1551
|
+
body?: {
|
|
1552
|
+
family: string;
|
|
1553
|
+
source?: string | undefined;
|
|
1554
|
+
weight?: number | undefined;
|
|
1555
|
+
format?: "woff" | "woff2" | undefined;
|
|
1556
|
+
} | undefined;
|
|
1557
|
+
heading?: {
|
|
1558
|
+
family: string;
|
|
1559
|
+
source?: string | undefined;
|
|
1560
|
+
weight?: number | undefined;
|
|
1561
|
+
format?: "woff" | "woff2" | undefined;
|
|
1562
|
+
} | undefined;
|
|
1563
|
+
} | undefined;
|
|
1564
|
+
navbar?: {
|
|
1565
|
+
primary?: {
|
|
1566
|
+
type: "button";
|
|
1567
|
+
href: string;
|
|
1568
|
+
label: string;
|
|
1569
|
+
} | {
|
|
1570
|
+
type: "github";
|
|
1571
|
+
href: string;
|
|
1572
|
+
} | undefined;
|
|
1573
|
+
links?: {
|
|
1574
|
+
href: string;
|
|
1575
|
+
label: string;
|
|
1576
|
+
icon?: string | {
|
|
1577
|
+
name: string;
|
|
1578
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1579
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1580
|
+
} | undefined;
|
|
1581
|
+
}[] | undefined;
|
|
1582
|
+
} | undefined;
|
|
1583
|
+
icons?: {
|
|
1584
|
+
library: "fontawesome" | "lucide";
|
|
1585
|
+
} | undefined;
|
|
1586
|
+
styling?: {
|
|
1587
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
1588
|
+
codeblocks?: "dark" | "system" | {
|
|
1589
|
+
languages?: {
|
|
1590
|
+
custom?: string[] | undefined;
|
|
1591
|
+
} | undefined;
|
|
1592
|
+
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" | {
|
|
1593
|
+
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";
|
|
1594
|
+
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";
|
|
1595
|
+
} | undefined;
|
|
2031
1596
|
} | undefined;
|
|
1597
|
+
latex?: boolean | undefined;
|
|
2032
1598
|
} | undefined;
|
|
2033
1599
|
banner?: {
|
|
2034
1600
|
content: string;
|
|
@@ -2043,19 +1609,13 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2043
1609
|
} | undefined;
|
|
2044
1610
|
contextual?: {
|
|
2045
1611
|
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
|
|
2046
|
-
href:
|
|
2047
|
-
base: string;
|
|
2048
|
-
query?: {
|
|
2049
|
-
value: string;
|
|
2050
|
-
key: string;
|
|
2051
|
-
}[] | undefined;
|
|
2052
|
-
}) & (string | {
|
|
1612
|
+
href: string | {
|
|
2053
1613
|
base: string;
|
|
2054
1614
|
query?: {
|
|
2055
1615
|
value: string;
|
|
2056
1616
|
key: string;
|
|
2057
1617
|
}[] | undefined;
|
|
2058
|
-
}
|
|
1618
|
+
};
|
|
2059
1619
|
title: string;
|
|
2060
1620
|
description: string;
|
|
2061
1621
|
icon?: string | {
|
|
@@ -2066,8 +1626,8 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2066
1626
|
})[];
|
|
2067
1627
|
} | undefined;
|
|
2068
1628
|
thumbnails?: {
|
|
2069
|
-
appearance?: import("@mintlify/validation").ThumbnailAppearance | undefined;
|
|
2070
1629
|
background?: string | undefined;
|
|
1630
|
+
appearance?: import("@mintlify/validation").ThumbnailAppearance | undefined;
|
|
2071
1631
|
fonts?: {
|
|
2072
1632
|
family: string;
|
|
2073
1633
|
} | undefined;
|
|
@@ -2075,9 +1635,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2075
1635
|
interaction?: {
|
|
2076
1636
|
drilldown?: boolean | undefined;
|
|
2077
1637
|
} | undefined;
|
|
2078
|
-
metadata?: {
|
|
2079
|
-
timestamp: boolean;
|
|
2080
|
-
} | undefined;
|
|
2081
1638
|
} | {
|
|
2082
1639
|
name: string;
|
|
2083
1640
|
$schema: string;
|
|
@@ -2087,7 +1644,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2087
1644
|
light?: string | undefined;
|
|
2088
1645
|
dark?: string | undefined;
|
|
2089
1646
|
};
|
|
2090
|
-
navigation:
|
|
1647
|
+
navigation: {
|
|
2091
1648
|
products: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
2092
1649
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2093
1650
|
} | {
|
|
@@ -2107,13 +1664,10 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2107
1664
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2108
1665
|
} | {
|
|
2109
1666
|
groups: ({
|
|
2110
|
-
openapi:
|
|
2111
|
-
source: string;
|
|
2112
|
-
directory?: string | undefined;
|
|
2113
|
-
}) & (string | string[] | {
|
|
1667
|
+
openapi: string | string[] | {
|
|
2114
1668
|
source: string;
|
|
2115
1669
|
directory?: string | undefined;
|
|
2116
|
-
}
|
|
1670
|
+
};
|
|
2117
1671
|
group: string;
|
|
2118
1672
|
pages: any[];
|
|
2119
1673
|
icon?: string | {
|
|
@@ -2129,13 +1683,10 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2129
1683
|
} | {
|
|
2130
1684
|
group: string;
|
|
2131
1685
|
pages: any[];
|
|
2132
|
-
asyncapi:
|
|
1686
|
+
asyncapi: string | string[] | {
|
|
2133
1687
|
source: string;
|
|
2134
1688
|
directory?: string | undefined;
|
|
2135
|
-
}
|
|
2136
|
-
source: string;
|
|
2137
|
-
directory?: string | undefined;
|
|
2138
|
-
} | undefined);
|
|
1689
|
+
};
|
|
2139
1690
|
icon?: string | {
|
|
2140
1691
|
name: string;
|
|
2141
1692
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -2164,85 +1715,18 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2164
1715
|
} | {
|
|
2165
1716
|
pages: any[];
|
|
2166
1717
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2167
|
-
}
|
|
2168
|
-
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
|
|
2174
|
-
|
|
2175
|
-
|
|
2176
|
-
|
|
2177
|
-
|
|
2178
|
-
|
|
2179
|
-
} | {
|
|
2180
|
-
dropdowns: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
2181
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2182
|
-
} | {
|
|
2183
|
-
anchors: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
2184
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2185
|
-
} | {
|
|
2186
|
-
groups: ({
|
|
2187
|
-
openapi: (string | string[] | {
|
|
2188
|
-
source: string;
|
|
2189
|
-
directory?: string | undefined;
|
|
2190
|
-
}) & (string | string[] | {
|
|
2191
|
-
source: string;
|
|
2192
|
-
directory?: string | undefined;
|
|
2193
|
-
} | undefined);
|
|
2194
|
-
group: string;
|
|
2195
|
-
pages: any[];
|
|
2196
|
-
icon?: string | {
|
|
2197
|
-
name: string;
|
|
2198
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2199
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2200
|
-
} | undefined;
|
|
2201
|
-
expanded?: boolean | undefined;
|
|
2202
|
-
public?: boolean | undefined;
|
|
2203
|
-
tag?: string | undefined;
|
|
2204
|
-
hidden?: boolean | undefined;
|
|
2205
|
-
root?: string | undefined;
|
|
2206
|
-
} | {
|
|
2207
|
-
group: string;
|
|
2208
|
-
pages: any[];
|
|
2209
|
-
asyncapi: (string | string[] | {
|
|
2210
|
-
source: string;
|
|
2211
|
-
directory?: string | undefined;
|
|
2212
|
-
}) & (string | string[] | {
|
|
2213
|
-
source: string;
|
|
2214
|
-
directory?: string | undefined;
|
|
2215
|
-
} | undefined);
|
|
2216
|
-
icon?: string | {
|
|
2217
|
-
name: string;
|
|
2218
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2219
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2220
|
-
} | undefined;
|
|
2221
|
-
expanded?: boolean | undefined;
|
|
2222
|
-
public?: boolean | undefined;
|
|
2223
|
-
tag?: string | undefined;
|
|
2224
|
-
hidden?: boolean | undefined;
|
|
2225
|
-
root?: string | undefined;
|
|
2226
|
-
} | {
|
|
2227
|
-
group: string;
|
|
2228
|
-
pages: any[];
|
|
2229
|
-
icon?: string | {
|
|
2230
|
-
name: string;
|
|
2231
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2232
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2233
|
-
} | undefined;
|
|
2234
|
-
expanded?: boolean | undefined;
|
|
2235
|
-
public?: boolean | undefined;
|
|
2236
|
-
tag?: string | undefined;
|
|
2237
|
-
hidden?: boolean | undefined;
|
|
2238
|
-
root?: string | undefined;
|
|
2239
|
-
})[];
|
|
2240
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2241
|
-
} | {
|
|
2242
|
-
pages: any[];
|
|
2243
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2244
|
-
} | undefined);
|
|
2245
|
-
description?: string | undefined;
|
|
1718
|
+
};
|
|
1719
|
+
background?: {
|
|
1720
|
+
color?: {
|
|
1721
|
+
light?: string | undefined;
|
|
1722
|
+
dark?: string | undefined;
|
|
1723
|
+
} | undefined;
|
|
1724
|
+
image?: string | {
|
|
1725
|
+
light: string;
|
|
1726
|
+
dark: string;
|
|
1727
|
+
} | undefined;
|
|
1728
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
1729
|
+
} | undefined;
|
|
2246
1730
|
logo?: string | {
|
|
2247
1731
|
light: string;
|
|
2248
1732
|
dark: string;
|
|
@@ -2253,70 +1737,38 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2253
1737
|
dark: string;
|
|
2254
1738
|
} | undefined;
|
|
2255
1739
|
api?: {
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
directory?: string | undefined;
|
|
1740
|
+
params?: {
|
|
1741
|
+
expanded?: "all" | "closed" | undefined;
|
|
2259
1742
|
} | undefined;
|
|
2260
|
-
|
|
1743
|
+
openapi?: string | string[] | {
|
|
2261
1744
|
source: string;
|
|
2262
1745
|
directory?: string | undefined;
|
|
2263
1746
|
} | undefined;
|
|
2264
|
-
params?: {
|
|
2265
|
-
expanded?: "all" | "closed" | undefined;
|
|
2266
|
-
} | undefined;
|
|
2267
1747
|
playground?: {
|
|
2268
1748
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
2269
1749
|
proxy?: boolean | undefined;
|
|
2270
1750
|
} | undefined;
|
|
1751
|
+
asyncapi?: string | string[] | {
|
|
1752
|
+
source: string;
|
|
1753
|
+
directory?: string | undefined;
|
|
1754
|
+
} | undefined;
|
|
2271
1755
|
examples?: {
|
|
2272
|
-
defaults?: "all" | "required" | undefined;
|
|
2273
1756
|
languages?: string[] | undefined;
|
|
1757
|
+
defaults?: "all" | "required" | undefined;
|
|
2274
1758
|
prefill?: boolean | undefined;
|
|
2275
1759
|
} | undefined;
|
|
2276
1760
|
mdx?: {
|
|
1761
|
+
server?: string | string[] | undefined;
|
|
2277
1762
|
auth?: {
|
|
2278
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
2279
1763
|
name?: string | undefined;
|
|
1764
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
2280
1765
|
} | undefined;
|
|
2281
|
-
server?: string | string[] | undefined;
|
|
2282
1766
|
} | undefined;
|
|
2283
1767
|
} | undefined;
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
strict?: boolean | undefined;
|
|
2287
|
-
} | undefined;
|
|
2288
|
-
background?: {
|
|
2289
|
-
image?: string | {
|
|
2290
|
-
light: string;
|
|
2291
|
-
dark: string;
|
|
2292
|
-
} | undefined;
|
|
2293
|
-
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
2294
|
-
color?: {
|
|
2295
|
-
light?: string | undefined;
|
|
2296
|
-
dark?: string | undefined;
|
|
2297
|
-
} | undefined;
|
|
2298
|
-
} | undefined;
|
|
2299
|
-
navbar?: {
|
|
2300
|
-
links?: {
|
|
2301
|
-
href: string;
|
|
2302
|
-
label: string;
|
|
2303
|
-
icon?: string | {
|
|
2304
|
-
name: string;
|
|
2305
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2306
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2307
|
-
} | undefined;
|
|
2308
|
-
}[] | undefined;
|
|
2309
|
-
primary?: {
|
|
2310
|
-
type: "button";
|
|
2311
|
-
href: string;
|
|
2312
|
-
label: string;
|
|
2313
|
-
} | {
|
|
2314
|
-
type: "github";
|
|
2315
|
-
href: string;
|
|
2316
|
-
} | undefined;
|
|
1768
|
+
metadata?: {
|
|
1769
|
+
timestamp: boolean;
|
|
2317
1770
|
} | undefined;
|
|
2318
1771
|
footer?: {
|
|
2319
|
-
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;
|
|
2320
1772
|
links?: {
|
|
2321
1773
|
items: {
|
|
2322
1774
|
href: string;
|
|
@@ -2324,54 +1776,8 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2324
1776
|
}[];
|
|
2325
1777
|
header?: string | undefined;
|
|
2326
1778
|
}[] | undefined;
|
|
1779
|
+
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;
|
|
2327
1780
|
} | undefined;
|
|
2328
|
-
search?: {
|
|
2329
|
-
prompt?: string | undefined;
|
|
2330
|
-
} | undefined;
|
|
2331
|
-
seo?: {
|
|
2332
|
-
metatags?: Record<string, string> | undefined;
|
|
2333
|
-
indexing?: "all" | "navigable" | undefined;
|
|
2334
|
-
} | undefined;
|
|
2335
|
-
fonts?: {
|
|
2336
|
-
family: string;
|
|
2337
|
-
weight?: number | undefined;
|
|
2338
|
-
source?: string | undefined;
|
|
2339
|
-
format?: "woff" | "woff2" | undefined;
|
|
2340
|
-
} | {
|
|
2341
|
-
heading?: {
|
|
2342
|
-
family: string;
|
|
2343
|
-
weight?: number | undefined;
|
|
2344
|
-
source?: string | undefined;
|
|
2345
|
-
format?: "woff" | "woff2" | undefined;
|
|
2346
|
-
} | undefined;
|
|
2347
|
-
body?: {
|
|
2348
|
-
family: string;
|
|
2349
|
-
weight?: number | undefined;
|
|
2350
|
-
source?: string | undefined;
|
|
2351
|
-
format?: "woff" | "woff2" | undefined;
|
|
2352
|
-
} | undefined;
|
|
2353
|
-
} | undefined;
|
|
2354
|
-
icons?: {
|
|
2355
|
-
library: "fontawesome" | "lucide";
|
|
2356
|
-
} | undefined;
|
|
2357
|
-
styling?: {
|
|
2358
|
-
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
2359
|
-
codeblocks?: "dark" | "system" | {
|
|
2360
|
-
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" | {
|
|
2361
|
-
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";
|
|
2362
|
-
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";
|
|
2363
|
-
} | undefined;
|
|
2364
|
-
languages?: {
|
|
2365
|
-
custom?: string[] | undefined;
|
|
2366
|
-
} | undefined;
|
|
2367
|
-
} | undefined;
|
|
2368
|
-
latex?: boolean | undefined;
|
|
2369
|
-
} | undefined;
|
|
2370
|
-
redirects?: {
|
|
2371
|
-
source: string;
|
|
2372
|
-
destination: string;
|
|
2373
|
-
permanent?: boolean | undefined;
|
|
2374
|
-
}[] | undefined;
|
|
2375
1781
|
integrations?: {
|
|
2376
1782
|
amplitude?: {
|
|
2377
1783
|
apiKey: string;
|
|
@@ -2385,9 +1791,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2385
1791
|
fathom?: {
|
|
2386
1792
|
siteId: string;
|
|
2387
1793
|
} | undefined;
|
|
2388
|
-
frontchat?: {
|
|
2389
|
-
snippetId: string;
|
|
2390
|
-
} | undefined;
|
|
2391
1794
|
ga4?: {
|
|
2392
1795
|
measurementId: string;
|
|
2393
1796
|
} | undefined;
|
|
@@ -2405,9 +1808,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2405
1808
|
hjid: string;
|
|
2406
1809
|
hjsv: string;
|
|
2407
1810
|
} | undefined;
|
|
2408
|
-
intercom?: {
|
|
2409
|
-
appId: string;
|
|
2410
|
-
} | undefined;
|
|
2411
1811
|
koala?: {
|
|
2412
1812
|
publicApiKey: string;
|
|
2413
1813
|
} | undefined;
|
|
@@ -2417,9 +1817,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2417
1817
|
mixpanel?: {
|
|
2418
1818
|
projectToken: string;
|
|
2419
1819
|
} | undefined;
|
|
2420
|
-
osano?: {
|
|
2421
|
-
scriptSource: string;
|
|
2422
|
-
} | undefined;
|
|
2423
1820
|
pirsch?: {
|
|
2424
1821
|
id: string;
|
|
2425
1822
|
} | undefined;
|
|
@@ -2434,14 +1831,94 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2434
1831
|
segment?: {
|
|
2435
1832
|
key: string;
|
|
2436
1833
|
} | undefined;
|
|
1834
|
+
intercom?: {
|
|
1835
|
+
appId: string;
|
|
1836
|
+
} | undefined;
|
|
1837
|
+
frontchat?: {
|
|
1838
|
+
snippetId: string;
|
|
1839
|
+
} | undefined;
|
|
1840
|
+
osano?: {
|
|
1841
|
+
scriptSource: string;
|
|
1842
|
+
} | undefined;
|
|
2437
1843
|
telemetry?: {
|
|
2438
1844
|
enabled?: boolean | undefined;
|
|
2439
1845
|
} | undefined;
|
|
2440
1846
|
cookies?: {
|
|
2441
|
-
key?: string | undefined;
|
|
2442
1847
|
value?: string | undefined;
|
|
1848
|
+
key?: string | undefined;
|
|
1849
|
+
} | undefined;
|
|
1850
|
+
} | undefined;
|
|
1851
|
+
search?: {
|
|
1852
|
+
prompt?: string | undefined;
|
|
1853
|
+
} | undefined;
|
|
1854
|
+
redirects?: {
|
|
1855
|
+
source: string;
|
|
1856
|
+
destination: string;
|
|
1857
|
+
permanent?: boolean | undefined;
|
|
1858
|
+
}[] | undefined;
|
|
1859
|
+
seo?: {
|
|
1860
|
+
metatags?: Record<string, string> | undefined;
|
|
1861
|
+
indexing?: "all" | "navigable" | undefined;
|
|
1862
|
+
} | undefined;
|
|
1863
|
+
description?: string | undefined;
|
|
1864
|
+
appearance?: {
|
|
1865
|
+
strict?: boolean | undefined;
|
|
1866
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
1867
|
+
} | undefined;
|
|
1868
|
+
fonts?: {
|
|
1869
|
+
family: string;
|
|
1870
|
+
source?: string | undefined;
|
|
1871
|
+
weight?: number | undefined;
|
|
1872
|
+
format?: "woff" | "woff2" | undefined;
|
|
1873
|
+
} | {
|
|
1874
|
+
body?: {
|
|
1875
|
+
family: string;
|
|
1876
|
+
source?: string | undefined;
|
|
1877
|
+
weight?: number | undefined;
|
|
1878
|
+
format?: "woff" | "woff2" | undefined;
|
|
1879
|
+
} | undefined;
|
|
1880
|
+
heading?: {
|
|
1881
|
+
family: string;
|
|
1882
|
+
source?: string | undefined;
|
|
1883
|
+
weight?: number | undefined;
|
|
1884
|
+
format?: "woff" | "woff2" | undefined;
|
|
2443
1885
|
} | undefined;
|
|
2444
1886
|
} | undefined;
|
|
1887
|
+
navbar?: {
|
|
1888
|
+
primary?: {
|
|
1889
|
+
type: "button";
|
|
1890
|
+
href: string;
|
|
1891
|
+
label: string;
|
|
1892
|
+
} | {
|
|
1893
|
+
type: "github";
|
|
1894
|
+
href: string;
|
|
1895
|
+
} | undefined;
|
|
1896
|
+
links?: {
|
|
1897
|
+
href: string;
|
|
1898
|
+
label: string;
|
|
1899
|
+
icon?: string | {
|
|
1900
|
+
name: string;
|
|
1901
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1902
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1903
|
+
} | undefined;
|
|
1904
|
+
}[] | undefined;
|
|
1905
|
+
} | undefined;
|
|
1906
|
+
icons?: {
|
|
1907
|
+
library: "fontawesome" | "lucide";
|
|
1908
|
+
} | undefined;
|
|
1909
|
+
styling?: {
|
|
1910
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
1911
|
+
codeblocks?: "dark" | "system" | {
|
|
1912
|
+
languages?: {
|
|
1913
|
+
custom?: string[] | undefined;
|
|
1914
|
+
} | undefined;
|
|
1915
|
+
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" | {
|
|
1916
|
+
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";
|
|
1917
|
+
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";
|
|
1918
|
+
} | undefined;
|
|
1919
|
+
} | undefined;
|
|
1920
|
+
latex?: boolean | undefined;
|
|
1921
|
+
} | undefined;
|
|
2445
1922
|
banner?: {
|
|
2446
1923
|
content: string;
|
|
2447
1924
|
dismissible?: boolean | undefined;
|
|
@@ -2455,128 +1932,42 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2455
1932
|
} | undefined;
|
|
2456
1933
|
contextual?: {
|
|
2457
1934
|
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
|
|
2458
|
-
href:
|
|
2459
|
-
base: string;
|
|
2460
|
-
query?: {
|
|
2461
|
-
value: string;
|
|
2462
|
-
key: string;
|
|
2463
|
-
}[] | undefined;
|
|
2464
|
-
}) & (string | {
|
|
1935
|
+
href: string | {
|
|
2465
1936
|
base: string;
|
|
2466
1937
|
query?: {
|
|
2467
|
-
value: string;
|
|
2468
|
-
key: string;
|
|
2469
|
-
}[] | undefined;
|
|
2470
|
-
}
|
|
2471
|
-
title: string;
|
|
2472
|
-
description: string;
|
|
2473
|
-
icon?: string | {
|
|
2474
|
-
name: string;
|
|
2475
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2476
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2477
|
-
} | undefined;
|
|
2478
|
-
})[];
|
|
2479
|
-
} | undefined;
|
|
2480
|
-
thumbnails?: {
|
|
2481
|
-
appearance?: import("@mintlify/validation").ThumbnailAppearance | undefined;
|
|
2482
|
-
background?: string | undefined;
|
|
2483
|
-
fonts?: {
|
|
2484
|
-
family: string;
|
|
2485
|
-
} | undefined;
|
|
2486
|
-
} | undefined;
|
|
2487
|
-
interaction?: {
|
|
2488
|
-
drilldown?: boolean | undefined;
|
|
2489
|
-
} | undefined;
|
|
2490
|
-
metadata?: {
|
|
2491
|
-
timestamp: boolean;
|
|
2492
|
-
} | undefined;
|
|
2493
|
-
} | {
|
|
2494
|
-
name: string;
|
|
2495
|
-
$schema: string;
|
|
2496
|
-
theme: "aspen";
|
|
2497
|
-
colors: {
|
|
2498
|
-
primary: string;
|
|
2499
|
-
light?: string | undefined;
|
|
2500
|
-
dark?: string | undefined;
|
|
2501
|
-
};
|
|
2502
|
-
navigation: ({
|
|
2503
|
-
products: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
2504
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2505
|
-
} | {
|
|
2506
|
-
languages: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
2507
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2508
|
-
} | {
|
|
2509
|
-
versions: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
2510
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2511
|
-
} | {
|
|
2512
|
-
tabs: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
2513
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2514
|
-
} | {
|
|
2515
|
-
dropdowns: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
2516
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2517
|
-
} | {
|
|
2518
|
-
anchors: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
2519
|
-
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2520
|
-
} | {
|
|
2521
|
-
groups: ({
|
|
2522
|
-
openapi: (string | string[] | {
|
|
2523
|
-
source: string;
|
|
2524
|
-
directory?: string | undefined;
|
|
2525
|
-
}) & (string | string[] | {
|
|
2526
|
-
source: string;
|
|
2527
|
-
directory?: string | undefined;
|
|
2528
|
-
} | undefined);
|
|
2529
|
-
group: string;
|
|
2530
|
-
pages: any[];
|
|
2531
|
-
icon?: string | {
|
|
2532
|
-
name: string;
|
|
2533
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2534
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2535
|
-
} | undefined;
|
|
2536
|
-
expanded?: boolean | undefined;
|
|
2537
|
-
public?: boolean | undefined;
|
|
2538
|
-
tag?: string | undefined;
|
|
2539
|
-
hidden?: boolean | undefined;
|
|
2540
|
-
root?: string | undefined;
|
|
2541
|
-
} | {
|
|
2542
|
-
group: string;
|
|
2543
|
-
pages: any[];
|
|
2544
|
-
asyncapi: (string | string[] | {
|
|
2545
|
-
source: string;
|
|
2546
|
-
directory?: string | undefined;
|
|
2547
|
-
}) & (string | string[] | {
|
|
2548
|
-
source: string;
|
|
2549
|
-
directory?: string | undefined;
|
|
2550
|
-
} | undefined);
|
|
2551
|
-
icon?: string | {
|
|
2552
|
-
name: string;
|
|
2553
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2554
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2555
|
-
} | undefined;
|
|
2556
|
-
expanded?: boolean | undefined;
|
|
2557
|
-
public?: boolean | undefined;
|
|
2558
|
-
tag?: string | undefined;
|
|
2559
|
-
hidden?: boolean | undefined;
|
|
2560
|
-
root?: string | undefined;
|
|
2561
|
-
} | {
|
|
2562
|
-
group: string;
|
|
2563
|
-
pages: any[];
|
|
1938
|
+
value: string;
|
|
1939
|
+
key: string;
|
|
1940
|
+
}[] | undefined;
|
|
1941
|
+
};
|
|
1942
|
+
title: string;
|
|
1943
|
+
description: string;
|
|
2564
1944
|
icon?: string | {
|
|
2565
1945
|
name: string;
|
|
2566
1946
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2567
1947
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2568
1948
|
} | undefined;
|
|
2569
|
-
expanded?: boolean | undefined;
|
|
2570
|
-
public?: boolean | undefined;
|
|
2571
|
-
tag?: string | undefined;
|
|
2572
|
-
hidden?: boolean | undefined;
|
|
2573
|
-
root?: string | undefined;
|
|
2574
1949
|
})[];
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
1950
|
+
} | undefined;
|
|
1951
|
+
thumbnails?: {
|
|
1952
|
+
background?: string | undefined;
|
|
1953
|
+
appearance?: import("@mintlify/validation").ThumbnailAppearance | undefined;
|
|
1954
|
+
fonts?: {
|
|
1955
|
+
family: string;
|
|
1956
|
+
} | undefined;
|
|
1957
|
+
} | undefined;
|
|
1958
|
+
interaction?: {
|
|
1959
|
+
drilldown?: boolean | undefined;
|
|
1960
|
+
} | undefined;
|
|
1961
|
+
} | {
|
|
1962
|
+
name: string;
|
|
1963
|
+
$schema: string;
|
|
1964
|
+
theme: "aspen";
|
|
1965
|
+
colors: {
|
|
1966
|
+
primary: string;
|
|
1967
|
+
light?: string | undefined;
|
|
1968
|
+
dark?: string | undefined;
|
|
1969
|
+
};
|
|
1970
|
+
navigation: {
|
|
2580
1971
|
products: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
2581
1972
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2582
1973
|
} | {
|
|
@@ -2596,13 +1987,10 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2596
1987
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2597
1988
|
} | {
|
|
2598
1989
|
groups: ({
|
|
2599
|
-
openapi:
|
|
2600
|
-
source: string;
|
|
2601
|
-
directory?: string | undefined;
|
|
2602
|
-
}) & (string | string[] | {
|
|
1990
|
+
openapi: string | string[] | {
|
|
2603
1991
|
source: string;
|
|
2604
1992
|
directory?: string | undefined;
|
|
2605
|
-
}
|
|
1993
|
+
};
|
|
2606
1994
|
group: string;
|
|
2607
1995
|
pages: any[];
|
|
2608
1996
|
icon?: string | {
|
|
@@ -2618,13 +2006,10 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2618
2006
|
} | {
|
|
2619
2007
|
group: string;
|
|
2620
2008
|
pages: any[];
|
|
2621
|
-
asyncapi:
|
|
2009
|
+
asyncapi: string | string[] | {
|
|
2622
2010
|
source: string;
|
|
2623
2011
|
directory?: string | undefined;
|
|
2624
|
-
}
|
|
2625
|
-
source: string;
|
|
2626
|
-
directory?: string | undefined;
|
|
2627
|
-
} | undefined);
|
|
2012
|
+
};
|
|
2628
2013
|
icon?: string | {
|
|
2629
2014
|
name: string;
|
|
2630
2015
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -2653,8 +2038,18 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2653
2038
|
} | {
|
|
2654
2039
|
pages: any[];
|
|
2655
2040
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2656
|
-
}
|
|
2657
|
-
|
|
2041
|
+
};
|
|
2042
|
+
background?: {
|
|
2043
|
+
color?: {
|
|
2044
|
+
light?: string | undefined;
|
|
2045
|
+
dark?: string | undefined;
|
|
2046
|
+
} | undefined;
|
|
2047
|
+
image?: string | {
|
|
2048
|
+
light: string;
|
|
2049
|
+
dark: string;
|
|
2050
|
+
} | undefined;
|
|
2051
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
2052
|
+
} | undefined;
|
|
2658
2053
|
logo?: string | {
|
|
2659
2054
|
light: string;
|
|
2660
2055
|
dark: string;
|
|
@@ -2665,70 +2060,38 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2665
2060
|
dark: string;
|
|
2666
2061
|
} | undefined;
|
|
2667
2062
|
api?: {
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
directory?: string | undefined;
|
|
2063
|
+
params?: {
|
|
2064
|
+
expanded?: "all" | "closed" | undefined;
|
|
2671
2065
|
} | undefined;
|
|
2672
|
-
|
|
2066
|
+
openapi?: string | string[] | {
|
|
2673
2067
|
source: string;
|
|
2674
2068
|
directory?: string | undefined;
|
|
2675
2069
|
} | undefined;
|
|
2676
|
-
params?: {
|
|
2677
|
-
expanded?: "all" | "closed" | undefined;
|
|
2678
|
-
} | undefined;
|
|
2679
2070
|
playground?: {
|
|
2680
2071
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
2681
2072
|
proxy?: boolean | undefined;
|
|
2682
2073
|
} | undefined;
|
|
2074
|
+
asyncapi?: string | string[] | {
|
|
2075
|
+
source: string;
|
|
2076
|
+
directory?: string | undefined;
|
|
2077
|
+
} | undefined;
|
|
2683
2078
|
examples?: {
|
|
2684
|
-
defaults?: "all" | "required" | undefined;
|
|
2685
2079
|
languages?: string[] | undefined;
|
|
2080
|
+
defaults?: "all" | "required" | undefined;
|
|
2686
2081
|
prefill?: boolean | undefined;
|
|
2687
2082
|
} | undefined;
|
|
2688
2083
|
mdx?: {
|
|
2084
|
+
server?: string | string[] | undefined;
|
|
2689
2085
|
auth?: {
|
|
2690
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
2691
2086
|
name?: string | undefined;
|
|
2087
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
2692
2088
|
} | undefined;
|
|
2693
|
-
server?: string | string[] | undefined;
|
|
2694
|
-
} | undefined;
|
|
2695
|
-
} | undefined;
|
|
2696
|
-
appearance?: {
|
|
2697
|
-
default?: "light" | "dark" | "system" | undefined;
|
|
2698
|
-
strict?: boolean | undefined;
|
|
2699
|
-
} | undefined;
|
|
2700
|
-
background?: {
|
|
2701
|
-
image?: string | {
|
|
2702
|
-
light: string;
|
|
2703
|
-
dark: string;
|
|
2704
|
-
} | undefined;
|
|
2705
|
-
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
2706
|
-
color?: {
|
|
2707
|
-
light?: string | undefined;
|
|
2708
|
-
dark?: string | undefined;
|
|
2709
2089
|
} | undefined;
|
|
2710
2090
|
} | undefined;
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
href: string;
|
|
2714
|
-
label: string;
|
|
2715
|
-
icon?: string | {
|
|
2716
|
-
name: string;
|
|
2717
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2718
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2719
|
-
} | undefined;
|
|
2720
|
-
}[] | undefined;
|
|
2721
|
-
primary?: {
|
|
2722
|
-
type: "button";
|
|
2723
|
-
href: string;
|
|
2724
|
-
label: string;
|
|
2725
|
-
} | {
|
|
2726
|
-
type: "github";
|
|
2727
|
-
href: string;
|
|
2728
|
-
} | undefined;
|
|
2091
|
+
metadata?: {
|
|
2092
|
+
timestamp: boolean;
|
|
2729
2093
|
} | undefined;
|
|
2730
2094
|
footer?: {
|
|
2731
|
-
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;
|
|
2732
2095
|
links?: {
|
|
2733
2096
|
items: {
|
|
2734
2097
|
href: string;
|
|
@@ -2736,54 +2099,8 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2736
2099
|
}[];
|
|
2737
2100
|
header?: string | undefined;
|
|
2738
2101
|
}[] | undefined;
|
|
2102
|
+
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;
|
|
2739
2103
|
} | undefined;
|
|
2740
|
-
search?: {
|
|
2741
|
-
prompt?: string | undefined;
|
|
2742
|
-
} | undefined;
|
|
2743
|
-
seo?: {
|
|
2744
|
-
metatags?: Record<string, string> | undefined;
|
|
2745
|
-
indexing?: "all" | "navigable" | undefined;
|
|
2746
|
-
} | undefined;
|
|
2747
|
-
fonts?: {
|
|
2748
|
-
family: string;
|
|
2749
|
-
weight?: number | undefined;
|
|
2750
|
-
source?: string | undefined;
|
|
2751
|
-
format?: "woff" | "woff2" | undefined;
|
|
2752
|
-
} | {
|
|
2753
|
-
heading?: {
|
|
2754
|
-
family: string;
|
|
2755
|
-
weight?: number | undefined;
|
|
2756
|
-
source?: string | undefined;
|
|
2757
|
-
format?: "woff" | "woff2" | undefined;
|
|
2758
|
-
} | undefined;
|
|
2759
|
-
body?: {
|
|
2760
|
-
family: string;
|
|
2761
|
-
weight?: number | undefined;
|
|
2762
|
-
source?: string | undefined;
|
|
2763
|
-
format?: "woff" | "woff2" | undefined;
|
|
2764
|
-
} | undefined;
|
|
2765
|
-
} | undefined;
|
|
2766
|
-
icons?: {
|
|
2767
|
-
library: "fontawesome" | "lucide";
|
|
2768
|
-
} | undefined;
|
|
2769
|
-
styling?: {
|
|
2770
|
-
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
2771
|
-
codeblocks?: "dark" | "system" | {
|
|
2772
|
-
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" | {
|
|
2773
|
-
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";
|
|
2774
|
-
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";
|
|
2775
|
-
} | undefined;
|
|
2776
|
-
languages?: {
|
|
2777
|
-
custom?: string[] | undefined;
|
|
2778
|
-
} | undefined;
|
|
2779
|
-
} | undefined;
|
|
2780
|
-
latex?: boolean | undefined;
|
|
2781
|
-
} | undefined;
|
|
2782
|
-
redirects?: {
|
|
2783
|
-
source: string;
|
|
2784
|
-
destination: string;
|
|
2785
|
-
permanent?: boolean | undefined;
|
|
2786
|
-
}[] | undefined;
|
|
2787
2104
|
integrations?: {
|
|
2788
2105
|
amplitude?: {
|
|
2789
2106
|
apiKey: string;
|
|
@@ -2797,9 +2114,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2797
2114
|
fathom?: {
|
|
2798
2115
|
siteId: string;
|
|
2799
2116
|
} | undefined;
|
|
2800
|
-
frontchat?: {
|
|
2801
|
-
snippetId: string;
|
|
2802
|
-
} | undefined;
|
|
2803
2117
|
ga4?: {
|
|
2804
2118
|
measurementId: string;
|
|
2805
2119
|
} | undefined;
|
|
@@ -2817,9 +2131,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2817
2131
|
hjid: string;
|
|
2818
2132
|
hjsv: string;
|
|
2819
2133
|
} | undefined;
|
|
2820
|
-
intercom?: {
|
|
2821
|
-
appId: string;
|
|
2822
|
-
} | undefined;
|
|
2823
2134
|
koala?: {
|
|
2824
2135
|
publicApiKey: string;
|
|
2825
2136
|
} | undefined;
|
|
@@ -2829,9 +2140,6 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2829
2140
|
mixpanel?: {
|
|
2830
2141
|
projectToken: string;
|
|
2831
2142
|
} | undefined;
|
|
2832
|
-
osano?: {
|
|
2833
|
-
scriptSource: string;
|
|
2834
|
-
} | undefined;
|
|
2835
2143
|
pirsch?: {
|
|
2836
2144
|
id: string;
|
|
2837
2145
|
} | undefined;
|
|
@@ -2846,13 +2154,93 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2846
2154
|
segment?: {
|
|
2847
2155
|
key: string;
|
|
2848
2156
|
} | undefined;
|
|
2157
|
+
intercom?: {
|
|
2158
|
+
appId: string;
|
|
2159
|
+
} | undefined;
|
|
2160
|
+
frontchat?: {
|
|
2161
|
+
snippetId: string;
|
|
2162
|
+
} | undefined;
|
|
2163
|
+
osano?: {
|
|
2164
|
+
scriptSource: string;
|
|
2165
|
+
} | undefined;
|
|
2849
2166
|
telemetry?: {
|
|
2850
2167
|
enabled?: boolean | undefined;
|
|
2851
2168
|
} | undefined;
|
|
2852
2169
|
cookies?: {
|
|
2853
|
-
key?: string | undefined;
|
|
2854
2170
|
value?: string | undefined;
|
|
2171
|
+
key?: string | undefined;
|
|
2172
|
+
} | undefined;
|
|
2173
|
+
} | undefined;
|
|
2174
|
+
search?: {
|
|
2175
|
+
prompt?: string | undefined;
|
|
2176
|
+
} | undefined;
|
|
2177
|
+
redirects?: {
|
|
2178
|
+
source: string;
|
|
2179
|
+
destination: string;
|
|
2180
|
+
permanent?: boolean | undefined;
|
|
2181
|
+
}[] | undefined;
|
|
2182
|
+
seo?: {
|
|
2183
|
+
metatags?: Record<string, string> | undefined;
|
|
2184
|
+
indexing?: "all" | "navigable" | undefined;
|
|
2185
|
+
} | undefined;
|
|
2186
|
+
description?: string | undefined;
|
|
2187
|
+
appearance?: {
|
|
2188
|
+
strict?: boolean | undefined;
|
|
2189
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
2190
|
+
} | undefined;
|
|
2191
|
+
fonts?: {
|
|
2192
|
+
family: string;
|
|
2193
|
+
source?: string | undefined;
|
|
2194
|
+
weight?: number | undefined;
|
|
2195
|
+
format?: "woff" | "woff2" | undefined;
|
|
2196
|
+
} | {
|
|
2197
|
+
body?: {
|
|
2198
|
+
family: string;
|
|
2199
|
+
source?: string | undefined;
|
|
2200
|
+
weight?: number | undefined;
|
|
2201
|
+
format?: "woff" | "woff2" | undefined;
|
|
2202
|
+
} | undefined;
|
|
2203
|
+
heading?: {
|
|
2204
|
+
family: string;
|
|
2205
|
+
source?: string | undefined;
|
|
2206
|
+
weight?: number | undefined;
|
|
2207
|
+
format?: "woff" | "woff2" | undefined;
|
|
2208
|
+
} | undefined;
|
|
2209
|
+
} | undefined;
|
|
2210
|
+
navbar?: {
|
|
2211
|
+
primary?: {
|
|
2212
|
+
type: "button";
|
|
2213
|
+
href: string;
|
|
2214
|
+
label: string;
|
|
2215
|
+
} | {
|
|
2216
|
+
type: "github";
|
|
2217
|
+
href: string;
|
|
2218
|
+
} | undefined;
|
|
2219
|
+
links?: {
|
|
2220
|
+
href: string;
|
|
2221
|
+
label: string;
|
|
2222
|
+
icon?: string | {
|
|
2223
|
+
name: string;
|
|
2224
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2225
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2226
|
+
} | undefined;
|
|
2227
|
+
}[] | undefined;
|
|
2228
|
+
} | undefined;
|
|
2229
|
+
icons?: {
|
|
2230
|
+
library: "fontawesome" | "lucide";
|
|
2231
|
+
} | undefined;
|
|
2232
|
+
styling?: {
|
|
2233
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
2234
|
+
codeblocks?: "dark" | "system" | {
|
|
2235
|
+
languages?: {
|
|
2236
|
+
custom?: string[] | undefined;
|
|
2237
|
+
} | undefined;
|
|
2238
|
+
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" | {
|
|
2239
|
+
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";
|
|
2240
|
+
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";
|
|
2241
|
+
} | undefined;
|
|
2855
2242
|
} | undefined;
|
|
2243
|
+
latex?: boolean | undefined;
|
|
2856
2244
|
} | undefined;
|
|
2857
2245
|
banner?: {
|
|
2858
2246
|
content: string;
|
|
@@ -2867,19 +2255,13 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2867
2255
|
} | undefined;
|
|
2868
2256
|
contextual?: {
|
|
2869
2257
|
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
|
|
2870
|
-
href:
|
|
2871
|
-
base: string;
|
|
2872
|
-
query?: {
|
|
2873
|
-
value: string;
|
|
2874
|
-
key: string;
|
|
2875
|
-
}[] | undefined;
|
|
2876
|
-
}) & (string | {
|
|
2258
|
+
href: string | {
|
|
2877
2259
|
base: string;
|
|
2878
2260
|
query?: {
|
|
2879
2261
|
value: string;
|
|
2880
2262
|
key: string;
|
|
2881
2263
|
}[] | undefined;
|
|
2882
|
-
}
|
|
2264
|
+
};
|
|
2883
2265
|
title: string;
|
|
2884
2266
|
description: string;
|
|
2885
2267
|
icon?: string | {
|
|
@@ -2890,8 +2272,8 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2890
2272
|
})[];
|
|
2891
2273
|
} | undefined;
|
|
2892
2274
|
thumbnails?: {
|
|
2893
|
-
appearance?: import("@mintlify/validation").ThumbnailAppearance | undefined;
|
|
2894
2275
|
background?: string | undefined;
|
|
2276
|
+
appearance?: import("@mintlify/validation").ThumbnailAppearance | undefined;
|
|
2895
2277
|
fonts?: {
|
|
2896
2278
|
family: string;
|
|
2897
2279
|
} | undefined;
|
|
@@ -2899,7 +2281,4 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2899
2281
|
interaction?: {
|
|
2900
2282
|
drilldown?: boolean | undefined;
|
|
2901
2283
|
} | undefined;
|
|
2902
|
-
metadata?: {
|
|
2903
|
-
timestamp: boolean;
|
|
2904
|
-
} | undefined;
|
|
2905
2284
|
}>;
|