@mintlify/validation 0.1.250 → 0.1.252
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/mint-config/schemas/v2/index.d.ts +920 -155
- package/dist/mint-config/schemas/v2/properties/api.d.ts +18 -3
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +72 -12
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +72 -12
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +96 -12
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +256 -40
- package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +80 -20
- package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +5 -0
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +72 -12
- package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +80 -20
- package/dist/mint-config/schemas/v2/properties/reusable/openapi.d.ts +22 -1
- package/dist/mint-config/schemas/v2/properties/reusable/openapi.js +7 -1
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +182 -29
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +182 -29
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +182 -29
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +182 -29
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +146 -23
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +182 -29
- package/dist/mint-config/upgrades/updateNavigationToDocsConfig.js +9 -7
- package/dist/mint-config/validateConfig.d.ts +4333 -0
- package/dist/mint-config/{validateMintConfig.js → validateConfig.js} +10 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/dist/mint-config/validateMintConfig.d.ts +0 -478
|
@@ -1,478 +0,0 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
export declare function validateMintConfig(value: unknown): z.SafeParseError<{
|
|
3
|
-
name: string;
|
|
4
|
-
favicon: string;
|
|
5
|
-
colors: {
|
|
6
|
-
primary: string;
|
|
7
|
-
light?: string | undefined;
|
|
8
|
-
dark?: string | undefined;
|
|
9
|
-
background?: {
|
|
10
|
-
light?: string | undefined;
|
|
11
|
-
dark?: string | undefined;
|
|
12
|
-
} | undefined;
|
|
13
|
-
anchors?: string | {
|
|
14
|
-
from: string;
|
|
15
|
-
to: string;
|
|
16
|
-
via?: string | undefined;
|
|
17
|
-
} | undefined;
|
|
18
|
-
ultraLight?: any;
|
|
19
|
-
ultraDark?: any;
|
|
20
|
-
};
|
|
21
|
-
navigation: import("@mintlify/models").NavigationGroup[];
|
|
22
|
-
$schema?: string | undefined;
|
|
23
|
-
mintlify?: string | undefined;
|
|
24
|
-
logo?: string | {
|
|
25
|
-
light: string;
|
|
26
|
-
dark: string;
|
|
27
|
-
href?: string | undefined;
|
|
28
|
-
} | undefined;
|
|
29
|
-
theme?: "venus" | "quill" | "prism" | undefined;
|
|
30
|
-
layout?: "topnav" | "sidenav" | "solidSidenav" | undefined;
|
|
31
|
-
openapi?: string | string[] | undefined;
|
|
32
|
-
topbar?: {
|
|
33
|
-
style?: "gradient" | "default" | undefined;
|
|
34
|
-
} | undefined;
|
|
35
|
-
sidebar?: {
|
|
36
|
-
items?: "container" | "card" | "border" | "undecorated" | undefined;
|
|
37
|
-
} | undefined;
|
|
38
|
-
rounded?: "default" | "sharp" | undefined;
|
|
39
|
-
api?: {
|
|
40
|
-
baseUrl?: string | string[] | undefined;
|
|
41
|
-
auth?: {
|
|
42
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
43
|
-
name?: string | undefined;
|
|
44
|
-
inputPrefix?: string | undefined;
|
|
45
|
-
} | undefined;
|
|
46
|
-
playground?: {
|
|
47
|
-
mode?: "show" | "simple" | "hide" | undefined;
|
|
48
|
-
disableProxy?: boolean | undefined;
|
|
49
|
-
} | undefined;
|
|
50
|
-
request?: {
|
|
51
|
-
example?: {
|
|
52
|
-
showOptionalParams?: boolean | undefined;
|
|
53
|
-
languages?: string[] | undefined;
|
|
54
|
-
} | undefined;
|
|
55
|
-
} | undefined;
|
|
56
|
-
maintainOrder?: boolean | undefined;
|
|
57
|
-
paramFields?: {
|
|
58
|
-
expanded?: "all" | "topLevel" | "topLevelOneOfs" | "none" | undefined;
|
|
59
|
-
} | undefined;
|
|
60
|
-
} | undefined;
|
|
61
|
-
modeToggle?: {
|
|
62
|
-
default?: "light" | "dark" | undefined;
|
|
63
|
-
isHidden?: boolean | undefined;
|
|
64
|
-
} | undefined;
|
|
65
|
-
versions?: (string | {
|
|
66
|
-
name: string;
|
|
67
|
-
url?: string | undefined;
|
|
68
|
-
default?: true | undefined;
|
|
69
|
-
locale?: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de" | undefined;
|
|
70
|
-
})[] | undefined;
|
|
71
|
-
metadata?: Record<string, string> | undefined;
|
|
72
|
-
codeBlock?: {
|
|
73
|
-
mode?: "dark" | "auto" | undefined;
|
|
74
|
-
} | undefined;
|
|
75
|
-
eyebrow?: {
|
|
76
|
-
display?: "section" | "breadcrumbs" | undefined;
|
|
77
|
-
} | undefined;
|
|
78
|
-
topbarCtaButton?: {
|
|
79
|
-
name: string;
|
|
80
|
-
url: string;
|
|
81
|
-
type?: "link" | undefined;
|
|
82
|
-
style?: "pill" | "roundedRectangle" | undefined;
|
|
83
|
-
arrow?: boolean | undefined;
|
|
84
|
-
} | {
|
|
85
|
-
type: "github";
|
|
86
|
-
url: string;
|
|
87
|
-
} | undefined;
|
|
88
|
-
topbarLinks?: ({
|
|
89
|
-
name: string;
|
|
90
|
-
url: string;
|
|
91
|
-
type?: "link" | undefined;
|
|
92
|
-
style?: "pill" | "roundedRectangle" | undefined;
|
|
93
|
-
arrow?: boolean | undefined;
|
|
94
|
-
} | {
|
|
95
|
-
type: "github";
|
|
96
|
-
url: string;
|
|
97
|
-
})[] | undefined;
|
|
98
|
-
primaryTab?: {
|
|
99
|
-
name: string;
|
|
100
|
-
isDefaultHidden?: boolean | undefined;
|
|
101
|
-
} | undefined;
|
|
102
|
-
topAnchor?: {
|
|
103
|
-
name: string;
|
|
104
|
-
icon?: string | undefined;
|
|
105
|
-
iconType?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
106
|
-
} | undefined;
|
|
107
|
-
anchors?: {
|
|
108
|
-
name: string;
|
|
109
|
-
url: string;
|
|
110
|
-
icon?: string | undefined;
|
|
111
|
-
iconType?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
112
|
-
color?: string | {
|
|
113
|
-
from: string;
|
|
114
|
-
to: string;
|
|
115
|
-
via?: string | undefined;
|
|
116
|
-
} | undefined;
|
|
117
|
-
isDefaultHidden?: boolean | undefined;
|
|
118
|
-
version?: string | undefined;
|
|
119
|
-
openapi?: string | undefined;
|
|
120
|
-
}[] | undefined;
|
|
121
|
-
tabs?: {
|
|
122
|
-
name: string;
|
|
123
|
-
url: string;
|
|
124
|
-
version?: string | undefined;
|
|
125
|
-
isDefaultHidden?: boolean | undefined;
|
|
126
|
-
openapi?: string | undefined;
|
|
127
|
-
}[] | undefined;
|
|
128
|
-
footer?: {
|
|
129
|
-
socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter", string>> | {
|
|
130
|
-
type: "github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter";
|
|
131
|
-
url: string;
|
|
132
|
-
}[] | undefined;
|
|
133
|
-
links?: {
|
|
134
|
-
links: {
|
|
135
|
-
url: string;
|
|
136
|
-
label: string;
|
|
137
|
-
}[];
|
|
138
|
-
title?: string | undefined;
|
|
139
|
-
}[] | undefined;
|
|
140
|
-
} | undefined;
|
|
141
|
-
background?: {
|
|
142
|
-
style?: "gradient" | "grid" | "windows" | undefined;
|
|
143
|
-
} | undefined;
|
|
144
|
-
backgroundImage?: string | undefined;
|
|
145
|
-
font?: {
|
|
146
|
-
family: string;
|
|
147
|
-
weight?: number | undefined;
|
|
148
|
-
url?: string | undefined;
|
|
149
|
-
format?: "woff" | "woff2" | undefined;
|
|
150
|
-
} | {
|
|
151
|
-
headings?: {
|
|
152
|
-
family: string;
|
|
153
|
-
weight?: number | undefined;
|
|
154
|
-
url?: string | undefined;
|
|
155
|
-
format?: "woff" | "woff2" | undefined;
|
|
156
|
-
} | undefined;
|
|
157
|
-
body?: {
|
|
158
|
-
family: string;
|
|
159
|
-
weight?: number | undefined;
|
|
160
|
-
url?: string | undefined;
|
|
161
|
-
format?: "woff" | "woff2" | undefined;
|
|
162
|
-
} | undefined;
|
|
163
|
-
} | undefined;
|
|
164
|
-
feedback?: {
|
|
165
|
-
thumbsRating?: boolean | undefined;
|
|
166
|
-
suggestEdit?: boolean | undefined;
|
|
167
|
-
raiseIssue?: boolean | undefined;
|
|
168
|
-
} | undefined;
|
|
169
|
-
analytics?: {
|
|
170
|
-
amplitude?: {
|
|
171
|
-
apiKey: string;
|
|
172
|
-
} | undefined;
|
|
173
|
-
clearbit?: {
|
|
174
|
-
publicApiKey: string;
|
|
175
|
-
} | undefined;
|
|
176
|
-
fathom?: {
|
|
177
|
-
siteId: string;
|
|
178
|
-
} | undefined;
|
|
179
|
-
ga4?: {
|
|
180
|
-
measurementId: string;
|
|
181
|
-
} | undefined;
|
|
182
|
-
gtm?: {
|
|
183
|
-
tagId: string;
|
|
184
|
-
} | undefined;
|
|
185
|
-
heap?: {
|
|
186
|
-
appId: string;
|
|
187
|
-
} | undefined;
|
|
188
|
-
hotjar?: {
|
|
189
|
-
hjid: string;
|
|
190
|
-
hjsv: string;
|
|
191
|
-
} | undefined;
|
|
192
|
-
koala?: {
|
|
193
|
-
publicApiKey: string;
|
|
194
|
-
} | undefined;
|
|
195
|
-
logrocket?: {
|
|
196
|
-
appId: string;
|
|
197
|
-
} | undefined;
|
|
198
|
-
mixpanel?: {
|
|
199
|
-
projectToken: string;
|
|
200
|
-
} | undefined;
|
|
201
|
-
pirsch?: {
|
|
202
|
-
id: string;
|
|
203
|
-
} | undefined;
|
|
204
|
-
posthog?: {
|
|
205
|
-
apiKey: string;
|
|
206
|
-
apiHost?: string | undefined;
|
|
207
|
-
} | undefined;
|
|
208
|
-
plausible?: {
|
|
209
|
-
domain: string;
|
|
210
|
-
server?: string | undefined;
|
|
211
|
-
} | undefined;
|
|
212
|
-
segment?: {
|
|
213
|
-
key: string;
|
|
214
|
-
} | undefined;
|
|
215
|
-
} | undefined;
|
|
216
|
-
integrations?: {
|
|
217
|
-
intercom?: string | undefined;
|
|
218
|
-
frontchat?: string | undefined;
|
|
219
|
-
osano?: string | undefined;
|
|
220
|
-
} | undefined;
|
|
221
|
-
isWhiteLabeled?: boolean | undefined;
|
|
222
|
-
search?: {
|
|
223
|
-
prompt?: string | undefined;
|
|
224
|
-
location?: "side" | "top" | undefined;
|
|
225
|
-
} | undefined;
|
|
226
|
-
redirects?: {
|
|
227
|
-
source: string;
|
|
228
|
-
destination: string;
|
|
229
|
-
permanent?: boolean | undefined;
|
|
230
|
-
}[] | undefined;
|
|
231
|
-
seo?: {
|
|
232
|
-
indexHiddenPages?: boolean | undefined;
|
|
233
|
-
} | undefined;
|
|
234
|
-
footerSocials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter", string>> | {
|
|
235
|
-
type: "github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter";
|
|
236
|
-
url: string;
|
|
237
|
-
}[] | undefined;
|
|
238
|
-
}> | {
|
|
239
|
-
warnings: z.ZodIssue[];
|
|
240
|
-
success: true;
|
|
241
|
-
data: {
|
|
242
|
-
name: string;
|
|
243
|
-
$schema: string;
|
|
244
|
-
favicon: string;
|
|
245
|
-
colors: {
|
|
246
|
-
primary: string;
|
|
247
|
-
light?: string | undefined;
|
|
248
|
-
dark?: string | undefined;
|
|
249
|
-
background?: {
|
|
250
|
-
light?: string | undefined;
|
|
251
|
-
dark?: string | undefined;
|
|
252
|
-
} | undefined;
|
|
253
|
-
anchors?: string | {
|
|
254
|
-
from: string;
|
|
255
|
-
to: string;
|
|
256
|
-
via?: string | undefined;
|
|
257
|
-
} | undefined;
|
|
258
|
-
ultraLight?: any;
|
|
259
|
-
ultraDark?: any;
|
|
260
|
-
};
|
|
261
|
-
navigation: import("@mintlify/models").NavigationGroup[];
|
|
262
|
-
mintlify?: string | undefined;
|
|
263
|
-
logo?: string | {
|
|
264
|
-
light: string;
|
|
265
|
-
dark: string;
|
|
266
|
-
href?: string | undefined;
|
|
267
|
-
} | undefined;
|
|
268
|
-
theme?: "venus" | "quill" | "prism" | undefined;
|
|
269
|
-
layout?: "topnav" | "sidenav" | "solidSidenav" | undefined;
|
|
270
|
-
openapi?: string | string[] | undefined;
|
|
271
|
-
topbar?: {
|
|
272
|
-
style?: "gradient" | "default" | undefined;
|
|
273
|
-
} | undefined;
|
|
274
|
-
sidebar?: {
|
|
275
|
-
items?: "container" | "card" | "border" | "undecorated" | undefined;
|
|
276
|
-
} | undefined;
|
|
277
|
-
rounded?: "default" | "sharp" | undefined;
|
|
278
|
-
api?: {
|
|
279
|
-
baseUrl?: string | string[] | undefined;
|
|
280
|
-
auth?: {
|
|
281
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
282
|
-
name?: string | undefined;
|
|
283
|
-
inputPrefix?: string | undefined;
|
|
284
|
-
} | undefined;
|
|
285
|
-
playground?: {
|
|
286
|
-
mode: "show" | "simple" | "hide";
|
|
287
|
-
disableProxy?: boolean | undefined;
|
|
288
|
-
} | undefined;
|
|
289
|
-
request?: {
|
|
290
|
-
example?: {
|
|
291
|
-
showOptionalParams?: boolean | undefined;
|
|
292
|
-
languages?: string[] | undefined;
|
|
293
|
-
} | undefined;
|
|
294
|
-
} | undefined;
|
|
295
|
-
maintainOrder?: boolean | undefined;
|
|
296
|
-
paramFields?: {
|
|
297
|
-
expanded?: "all" | "topLevel" | "topLevelOneOfs" | "none" | undefined;
|
|
298
|
-
} | undefined;
|
|
299
|
-
} | undefined;
|
|
300
|
-
modeToggle?: {
|
|
301
|
-
default?: "light" | "dark" | undefined;
|
|
302
|
-
isHidden?: boolean | undefined;
|
|
303
|
-
} | undefined;
|
|
304
|
-
versions?: (string | {
|
|
305
|
-
name: string;
|
|
306
|
-
url?: string | undefined;
|
|
307
|
-
default?: true | undefined;
|
|
308
|
-
locale?: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de" | undefined;
|
|
309
|
-
})[] | undefined;
|
|
310
|
-
metadata?: Record<string, string> | undefined;
|
|
311
|
-
codeBlock?: {
|
|
312
|
-
mode?: "dark" | "auto" | undefined;
|
|
313
|
-
} | undefined;
|
|
314
|
-
eyebrow?: {
|
|
315
|
-
display?: "section" | "breadcrumbs" | undefined;
|
|
316
|
-
} | undefined;
|
|
317
|
-
topbarCtaButton?: {
|
|
318
|
-
name: string;
|
|
319
|
-
url: string;
|
|
320
|
-
type?: "link" | undefined;
|
|
321
|
-
style?: "pill" | "roundedRectangle" | undefined;
|
|
322
|
-
arrow?: boolean | undefined;
|
|
323
|
-
} | {
|
|
324
|
-
type: "github";
|
|
325
|
-
url: string;
|
|
326
|
-
} | undefined;
|
|
327
|
-
topbarLinks?: ({
|
|
328
|
-
name: string;
|
|
329
|
-
url: string;
|
|
330
|
-
type?: "link" | undefined;
|
|
331
|
-
style?: "pill" | "roundedRectangle" | undefined;
|
|
332
|
-
arrow?: boolean | undefined;
|
|
333
|
-
} | {
|
|
334
|
-
type: "github";
|
|
335
|
-
url: string;
|
|
336
|
-
})[] | undefined;
|
|
337
|
-
primaryTab?: {
|
|
338
|
-
name: string;
|
|
339
|
-
isDefaultHidden?: boolean | undefined;
|
|
340
|
-
} | undefined;
|
|
341
|
-
topAnchor?: {
|
|
342
|
-
name: string;
|
|
343
|
-
icon?: string | undefined;
|
|
344
|
-
iconType?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
345
|
-
} | undefined;
|
|
346
|
-
anchors?: {
|
|
347
|
-
name: string;
|
|
348
|
-
url: string;
|
|
349
|
-
icon?: string | undefined;
|
|
350
|
-
iconType?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
351
|
-
color?: string | {
|
|
352
|
-
from: string;
|
|
353
|
-
to: string;
|
|
354
|
-
via?: string | undefined;
|
|
355
|
-
} | undefined;
|
|
356
|
-
isDefaultHidden?: boolean | undefined;
|
|
357
|
-
version?: string | undefined;
|
|
358
|
-
openapi?: string | undefined;
|
|
359
|
-
}[] | undefined;
|
|
360
|
-
tabs?: {
|
|
361
|
-
name: string;
|
|
362
|
-
url: string;
|
|
363
|
-
version?: string | undefined;
|
|
364
|
-
isDefaultHidden?: boolean | undefined;
|
|
365
|
-
openapi?: string | undefined;
|
|
366
|
-
}[] | undefined;
|
|
367
|
-
footer?: {
|
|
368
|
-
socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter", string>> | {
|
|
369
|
-
type: "github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter";
|
|
370
|
-
url: string;
|
|
371
|
-
}[] | undefined;
|
|
372
|
-
links?: {
|
|
373
|
-
links: {
|
|
374
|
-
url: string;
|
|
375
|
-
label: string;
|
|
376
|
-
}[];
|
|
377
|
-
title?: string | undefined;
|
|
378
|
-
}[] | undefined;
|
|
379
|
-
} | undefined;
|
|
380
|
-
background?: {
|
|
381
|
-
style?: "gradient" | "grid" | "windows" | undefined;
|
|
382
|
-
} | undefined;
|
|
383
|
-
backgroundImage?: string | undefined;
|
|
384
|
-
font?: {
|
|
385
|
-
family: string;
|
|
386
|
-
weight?: number | undefined;
|
|
387
|
-
url?: string | undefined;
|
|
388
|
-
format?: "woff" | "woff2" | undefined;
|
|
389
|
-
} | {
|
|
390
|
-
headings?: {
|
|
391
|
-
family: string;
|
|
392
|
-
weight?: number | undefined;
|
|
393
|
-
url?: string | undefined;
|
|
394
|
-
format?: "woff" | "woff2" | undefined;
|
|
395
|
-
} | undefined;
|
|
396
|
-
body?: {
|
|
397
|
-
family: string;
|
|
398
|
-
weight?: number | undefined;
|
|
399
|
-
url?: string | undefined;
|
|
400
|
-
format?: "woff" | "woff2" | undefined;
|
|
401
|
-
} | undefined;
|
|
402
|
-
} | undefined;
|
|
403
|
-
feedback?: {
|
|
404
|
-
thumbsRating?: boolean | undefined;
|
|
405
|
-
suggestEdit?: boolean | undefined;
|
|
406
|
-
raiseIssue?: boolean | undefined;
|
|
407
|
-
} | undefined;
|
|
408
|
-
analytics?: {
|
|
409
|
-
amplitude?: {
|
|
410
|
-
apiKey: string;
|
|
411
|
-
} | undefined;
|
|
412
|
-
clearbit?: {
|
|
413
|
-
publicApiKey: string;
|
|
414
|
-
} | undefined;
|
|
415
|
-
fathom?: {
|
|
416
|
-
siteId: string;
|
|
417
|
-
} | undefined;
|
|
418
|
-
ga4?: {
|
|
419
|
-
measurementId: string;
|
|
420
|
-
} | undefined;
|
|
421
|
-
gtm?: {
|
|
422
|
-
tagId: string;
|
|
423
|
-
} | undefined;
|
|
424
|
-
heap?: {
|
|
425
|
-
appId: string;
|
|
426
|
-
} | undefined;
|
|
427
|
-
hotjar?: {
|
|
428
|
-
hjid: string;
|
|
429
|
-
hjsv: string;
|
|
430
|
-
} | undefined;
|
|
431
|
-
koala?: {
|
|
432
|
-
publicApiKey: string;
|
|
433
|
-
} | undefined;
|
|
434
|
-
logrocket?: {
|
|
435
|
-
appId: string;
|
|
436
|
-
} | undefined;
|
|
437
|
-
mixpanel?: {
|
|
438
|
-
projectToken: string;
|
|
439
|
-
} | undefined;
|
|
440
|
-
pirsch?: {
|
|
441
|
-
id: string;
|
|
442
|
-
} | undefined;
|
|
443
|
-
posthog?: {
|
|
444
|
-
apiKey: string;
|
|
445
|
-
apiHost?: string | undefined;
|
|
446
|
-
} | undefined;
|
|
447
|
-
plausible?: {
|
|
448
|
-
domain: string;
|
|
449
|
-
server?: string | undefined;
|
|
450
|
-
} | undefined;
|
|
451
|
-
segment?: {
|
|
452
|
-
key: string;
|
|
453
|
-
} | undefined;
|
|
454
|
-
} | undefined;
|
|
455
|
-
integrations?: {
|
|
456
|
-
intercom?: string | undefined;
|
|
457
|
-
frontchat?: string | undefined;
|
|
458
|
-
osano?: string | undefined;
|
|
459
|
-
} | undefined;
|
|
460
|
-
isWhiteLabeled?: boolean | undefined;
|
|
461
|
-
search?: {
|
|
462
|
-
prompt?: string | undefined;
|
|
463
|
-
location?: "side" | "top" | undefined;
|
|
464
|
-
} | undefined;
|
|
465
|
-
redirects?: {
|
|
466
|
-
source: string;
|
|
467
|
-
destination: string;
|
|
468
|
-
permanent?: boolean | undefined;
|
|
469
|
-
}[] | undefined;
|
|
470
|
-
seo?: {
|
|
471
|
-
indexHiddenPages?: boolean | undefined;
|
|
472
|
-
} | undefined;
|
|
473
|
-
footerSocials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter", string>> | {
|
|
474
|
-
type: "github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter";
|
|
475
|
-
url: string;
|
|
476
|
-
}[] | undefined;
|
|
477
|
-
};
|
|
478
|
-
};
|