@mintlify/validation 0.1.530 → 0.1.532
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chat-config/index.d.ts +67 -67
- package/dist/mint-config/schemas/v1/apiReference.d.ts +4 -4
- package/dist/mint-config/schemas/v1/config.d.ts +81 -81
- package/dist/mint-config/schemas/v1/font.d.ts +20 -20
- package/dist/mint-config/schemas/v1/footer.d.ts +5 -5
- package/dist/mint-config/schemas/v1/navigation.d.ts +2 -2
- package/dist/mint-config/schemas/v1/tabs.d.ts +2 -2
- package/dist/mint-config/schemas/v2/index.d.ts +2978 -4567
- package/dist/mint-config/schemas/v2/properties/api.d.ts +28 -28
- package/dist/mint-config/schemas/v2/properties/appearance.d.ts +2 -2
- package/dist/mint-config/schemas/v2/properties/background.d.ts +5 -5
- package/dist/mint-config/schemas/v2/properties/contextual.d.ts +16 -64
- package/dist/mint-config/schemas/v2/properties/errors.d.ts +2 -2
- package/dist/mint-config/schemas/v2/properties/feedback.d.ts +2 -2
- package/dist/mint-config/schemas/v2/properties/fonts/index.d.ts +24 -24
- package/dist/mint-config/schemas/v2/properties/footer.d.ts +2 -2
- package/dist/mint-config/schemas/v2/properties/integrations.d.ts +22 -22
- package/dist/mint-config/schemas/v2/properties/navbar.d.ts +9 -9
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +186 -204
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +157 -170
- package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/menu.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/products.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +3 -2
- package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +26 -26
- package/dist/mint-config/schemas/v2/properties/styling.d.ts +10 -10
- package/dist/mint-config/schemas/v2/properties/thumbnails.d.ts +2 -2
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +421 -648
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +181 -230
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +421 -648
- package/dist/mint-config/validateConfig.d.ts +1753 -2997
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/deployment/deploymentEntitlements.d.ts +1 -1
- package/dist/types/deployment/deploymentEntitlements.js +1 -0
- package/dist/types/deployment/index.d.ts +2 -1
- package/dist/types/deployment/trieve.d.ts +4 -4
- package/dist/types/deployment/trieve.js +1 -0
- package/package.json +3 -3
|
@@ -82,12 +82,12 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
82
82
|
languages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
83
83
|
prefill: z.ZodOptional<z.ZodBoolean>;
|
|
84
84
|
}, "strip", z.ZodTypeAny, {
|
|
85
|
-
defaults?: "all" | "required" | undefined;
|
|
86
85
|
languages?: string[] | undefined;
|
|
86
|
+
defaults?: "all" | "required" | undefined;
|
|
87
87
|
prefill?: boolean | undefined;
|
|
88
88
|
}, {
|
|
89
|
-
defaults?: "all" | "required" | undefined;
|
|
90
89
|
languages?: string[] | undefined;
|
|
90
|
+
defaults?: "all" | "required" | undefined;
|
|
91
91
|
prefill?: boolean | undefined;
|
|
92
92
|
}>>;
|
|
93
93
|
mdx: z.ZodOptional<z.ZodObject<{
|
|
@@ -95,92 +95,92 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
95
95
|
method: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
|
|
96
96
|
name: z.ZodOptional<z.ZodString>;
|
|
97
97
|
}, "strip", z.ZodTypeAny, {
|
|
98
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
99
98
|
name?: string | undefined;
|
|
100
|
-
}, {
|
|
101
99
|
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
100
|
+
}, {
|
|
102
101
|
name?: string | undefined;
|
|
102
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
103
103
|
}>>;
|
|
104
104
|
server: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
105
105
|
}, "strip", z.ZodTypeAny, {
|
|
106
|
+
server?: string | string[] | undefined;
|
|
106
107
|
auth?: {
|
|
107
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
108
108
|
name?: string | undefined;
|
|
109
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
109
110
|
} | undefined;
|
|
110
|
-
server?: string | string[] | undefined;
|
|
111
111
|
}, {
|
|
112
|
+
server?: string | string[] | undefined;
|
|
112
113
|
auth?: {
|
|
113
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
114
114
|
name?: string | undefined;
|
|
115
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
115
116
|
} | undefined;
|
|
116
|
-
server?: string | string[] | undefined;
|
|
117
117
|
}>>;
|
|
118
118
|
}, "strip", z.ZodTypeAny, {
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
directory?: string | undefined;
|
|
119
|
+
params?: {
|
|
120
|
+
expanded?: "all" | "closed" | undefined;
|
|
122
121
|
} | undefined;
|
|
123
|
-
|
|
122
|
+
openapi?: string | string[] | {
|
|
124
123
|
source: string;
|
|
125
124
|
directory?: string | undefined;
|
|
126
125
|
} | undefined;
|
|
127
|
-
params?: {
|
|
128
|
-
expanded?: "all" | "closed" | undefined;
|
|
129
|
-
} | undefined;
|
|
130
126
|
playground?: {
|
|
131
127
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
132
128
|
proxy?: boolean | undefined;
|
|
133
129
|
} | undefined;
|
|
130
|
+
asyncapi?: string | string[] | {
|
|
131
|
+
source: string;
|
|
132
|
+
directory?: string | undefined;
|
|
133
|
+
} | undefined;
|
|
134
134
|
examples?: {
|
|
135
|
-
defaults?: "all" | "required" | undefined;
|
|
136
135
|
languages?: string[] | undefined;
|
|
136
|
+
defaults?: "all" | "required" | undefined;
|
|
137
137
|
prefill?: boolean | undefined;
|
|
138
138
|
} | undefined;
|
|
139
139
|
mdx?: {
|
|
140
|
+
server?: string | string[] | undefined;
|
|
140
141
|
auth?: {
|
|
141
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
142
142
|
name?: string | undefined;
|
|
143
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
143
144
|
} | undefined;
|
|
144
|
-
server?: string | string[] | undefined;
|
|
145
145
|
} | undefined;
|
|
146
146
|
}, {
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
directory?: string | undefined;
|
|
147
|
+
params?: {
|
|
148
|
+
expanded?: "all" | "closed" | undefined;
|
|
150
149
|
} | undefined;
|
|
151
|
-
|
|
150
|
+
openapi?: string | string[] | {
|
|
152
151
|
source: string;
|
|
153
152
|
directory?: string | undefined;
|
|
154
153
|
} | undefined;
|
|
155
|
-
params?: {
|
|
156
|
-
expanded?: "all" | "closed" | undefined;
|
|
157
|
-
} | undefined;
|
|
158
154
|
playground?: {
|
|
159
155
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
160
156
|
proxy?: boolean | undefined;
|
|
161
157
|
} | undefined;
|
|
158
|
+
asyncapi?: string | string[] | {
|
|
159
|
+
source: string;
|
|
160
|
+
directory?: string | undefined;
|
|
161
|
+
} | undefined;
|
|
162
162
|
examples?: {
|
|
163
|
-
defaults?: "all" | "required" | undefined;
|
|
164
163
|
languages?: string[] | undefined;
|
|
164
|
+
defaults?: "all" | "required" | undefined;
|
|
165
165
|
prefill?: boolean | undefined;
|
|
166
166
|
} | undefined;
|
|
167
167
|
mdx?: {
|
|
168
|
+
server?: string | string[] | undefined;
|
|
168
169
|
auth?: {
|
|
169
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
170
170
|
name?: string | undefined;
|
|
171
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
171
172
|
} | undefined;
|
|
172
|
-
server?: string | string[] | undefined;
|
|
173
173
|
} | undefined;
|
|
174
174
|
}>>;
|
|
175
175
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
176
176
|
default: z.ZodOptional<z.ZodEnum<["system", "light", "dark"]>>;
|
|
177
177
|
strict: z.ZodOptional<z.ZodBoolean>;
|
|
178
178
|
}, "strip", z.ZodTypeAny, {
|
|
179
|
-
default?: "light" | "dark" | "system" | undefined;
|
|
180
179
|
strict?: boolean | undefined;
|
|
181
|
-
}, {
|
|
182
180
|
default?: "light" | "dark" | "system" | undefined;
|
|
181
|
+
}, {
|
|
183
182
|
strict?: boolean | undefined;
|
|
183
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
184
184
|
}>>;
|
|
185
185
|
background: z.ZodOptional<z.ZodObject<{
|
|
186
186
|
image: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
@@ -205,25 +205,25 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
205
205
|
dark?: string | undefined;
|
|
206
206
|
}>>;
|
|
207
207
|
}, "strip", z.ZodTypeAny, {
|
|
208
|
+
color?: {
|
|
209
|
+
light?: string | undefined;
|
|
210
|
+
dark?: string | undefined;
|
|
211
|
+
} | undefined;
|
|
208
212
|
image?: string | {
|
|
209
213
|
light: string;
|
|
210
214
|
dark: string;
|
|
211
215
|
} | undefined;
|
|
212
216
|
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
217
|
+
}, {
|
|
213
218
|
color?: {
|
|
214
219
|
light?: string | undefined;
|
|
215
220
|
dark?: string | undefined;
|
|
216
221
|
} | undefined;
|
|
217
|
-
}, {
|
|
218
222
|
image?: string | {
|
|
219
223
|
light: string;
|
|
220
224
|
dark: string;
|
|
221
225
|
} | undefined;
|
|
222
226
|
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
223
|
-
color?: {
|
|
224
|
-
light?: string | undefined;
|
|
225
|
-
dark?: string | undefined;
|
|
226
|
-
} | undefined;
|
|
227
227
|
}>>;
|
|
228
228
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
229
229
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -282,6 +282,14 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
282
282
|
href: string;
|
|
283
283
|
}>]>>;
|
|
284
284
|
}, "strip", z.ZodTypeAny, {
|
|
285
|
+
primary?: {
|
|
286
|
+
type: "button";
|
|
287
|
+
href: string;
|
|
288
|
+
label: string;
|
|
289
|
+
} | {
|
|
290
|
+
type: "github";
|
|
291
|
+
href: string;
|
|
292
|
+
} | undefined;
|
|
285
293
|
links?: {
|
|
286
294
|
href: string;
|
|
287
295
|
label: string;
|
|
@@ -291,6 +299,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
291
299
|
library?: "fontawesome" | "lucide" | undefined;
|
|
292
300
|
} | undefined;
|
|
293
301
|
}[] | undefined;
|
|
302
|
+
}, {
|
|
294
303
|
primary?: {
|
|
295
304
|
type: "button";
|
|
296
305
|
href: string;
|
|
@@ -299,7 +308,6 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
299
308
|
type: "github";
|
|
300
309
|
href: string;
|
|
301
310
|
} | undefined;
|
|
302
|
-
}, {
|
|
303
311
|
links?: {
|
|
304
312
|
href: string;
|
|
305
313
|
label: string;
|
|
@@ -309,72 +317,73 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
309
317
|
library?: "fontawesome" | "lucide" | undefined;
|
|
310
318
|
} | undefined;
|
|
311
319
|
}[] | undefined;
|
|
312
|
-
primary?: {
|
|
313
|
-
type: "button";
|
|
314
|
-
href: string;
|
|
315
|
-
label: string;
|
|
316
|
-
} | {
|
|
317
|
-
type: "github";
|
|
318
|
-
href: string;
|
|
319
|
-
} | undefined;
|
|
320
320
|
}>>;
|
|
321
|
-
navigation: z.ZodUnion<[z.ZodObject<{
|
|
321
|
+
navigation: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
322
322
|
global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
323
|
+
}, {
|
|
323
324
|
products: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
324
|
-
}
|
|
325
|
+
}>, "strip", z.ZodTypeAny, {
|
|
325
326
|
products: import("../properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
326
327
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
327
328
|
}, {
|
|
328
329
|
products: import("../properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
329
330
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
330
|
-
}>, z.ZodObject<{
|
|
331
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
331
332
|
global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
333
|
+
}, {
|
|
332
334
|
languages: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
333
|
-
}
|
|
335
|
+
}>, "strip", z.ZodTypeAny, {
|
|
334
336
|
languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
335
337
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
336
338
|
}, {
|
|
337
339
|
languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
338
340
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
339
|
-
}>, z.ZodObject<{
|
|
341
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
340
342
|
global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
343
|
+
}, {
|
|
341
344
|
versions: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
342
|
-
}
|
|
345
|
+
}>, "strip", z.ZodTypeAny, {
|
|
343
346
|
versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
344
347
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
345
348
|
}, {
|
|
346
349
|
versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
347
350
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
348
|
-
}>, z.ZodObject<{
|
|
351
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
349
352
|
global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
353
|
+
}, {
|
|
350
354
|
tabs: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
|
|
351
|
-
}
|
|
355
|
+
}>, "strip", z.ZodTypeAny, {
|
|
352
356
|
tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
353
357
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
354
358
|
}, {
|
|
355
359
|
tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
356
360
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
357
|
-
}>, z.ZodObject<{
|
|
361
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
358
362
|
global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
363
|
+
}, {
|
|
359
364
|
dropdowns: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
360
|
-
}
|
|
365
|
+
}>, "strip", z.ZodTypeAny, {
|
|
361
366
|
dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
362
367
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
363
368
|
}, {
|
|
364
369
|
dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
365
370
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
366
|
-
}>, z.ZodObject<{
|
|
371
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
367
372
|
global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
373
|
+
}, {
|
|
368
374
|
anchors: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
369
|
-
}
|
|
375
|
+
}>, "strip", z.ZodTypeAny, {
|
|
370
376
|
anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
371
377
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
372
378
|
}, {
|
|
373
379
|
anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
374
380
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
375
|
-
}>, z.ZodObject<{
|
|
381
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
376
382
|
global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
377
|
-
|
|
383
|
+
}, {
|
|
384
|
+
groups: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
385
|
+
group: z.ZodString;
|
|
386
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
378
387
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
379
388
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
380
389
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -388,12 +397,11 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
388
397
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
389
398
|
library?: "fontawesome" | "lucide" | undefined;
|
|
390
399
|
}>]>>;
|
|
391
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
392
|
-
group: z.ZodString;
|
|
393
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
394
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
395
400
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
396
401
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
402
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
403
|
+
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
404
|
+
}, {
|
|
397
405
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
398
406
|
source: z.ZodEffects<z.ZodString, string, string>;
|
|
399
407
|
directory: z.ZodOptional<z.ZodString>;
|
|
@@ -405,14 +413,11 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
405
413
|
directory?: string | undefined;
|
|
406
414
|
}>]>;
|
|
407
415
|
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
408
|
-
}
|
|
409
|
-
openapi:
|
|
410
|
-
source: string;
|
|
411
|
-
directory?: string | undefined;
|
|
412
|
-
}) & (string | string[] | {
|
|
416
|
+
}>, "strip", z.ZodTypeAny, {
|
|
417
|
+
openapi: string | string[] | {
|
|
413
418
|
source: string;
|
|
414
419
|
directory?: string | undefined;
|
|
415
|
-
}
|
|
420
|
+
};
|
|
416
421
|
group: string;
|
|
417
422
|
pages: any[];
|
|
418
423
|
icon?: string | {
|
|
@@ -426,13 +431,10 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
426
431
|
hidden?: boolean | undefined;
|
|
427
432
|
root?: string | undefined;
|
|
428
433
|
}, {
|
|
429
|
-
openapi:
|
|
430
|
-
source: string;
|
|
431
|
-
directory?: string | undefined;
|
|
432
|
-
}) & (string | string[] | {
|
|
434
|
+
openapi: string | string[] | {
|
|
433
435
|
source: string;
|
|
434
436
|
directory?: string | undefined;
|
|
435
|
-
}
|
|
437
|
+
};
|
|
436
438
|
group: string;
|
|
437
439
|
icon?: string | {
|
|
438
440
|
name: string;
|
|
@@ -441,11 +443,13 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
441
443
|
} | undefined;
|
|
442
444
|
expanded?: boolean | undefined;
|
|
443
445
|
public?: boolean | undefined;
|
|
446
|
+
pages?: any[] | undefined;
|
|
444
447
|
tag?: string | undefined;
|
|
445
448
|
hidden?: boolean | undefined;
|
|
446
449
|
root?: string | undefined;
|
|
447
|
-
|
|
448
|
-
|
|
450
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
451
|
+
group: z.ZodString;
|
|
452
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
449
453
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
450
454
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
451
455
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -459,12 +463,11 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
459
463
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
460
464
|
library?: "fontawesome" | "lucide" | undefined;
|
|
461
465
|
}>]>>;
|
|
462
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
463
|
-
group: z.ZodString;
|
|
464
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
465
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
466
466
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
467
467
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
468
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
469
|
+
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
470
|
+
}, {
|
|
468
471
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
469
472
|
source: z.ZodEffects<z.ZodString, string, string>;
|
|
470
473
|
directory: z.ZodOptional<z.ZodString>;
|
|
@@ -476,16 +479,13 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
476
479
|
directory?: string | undefined;
|
|
477
480
|
}>]>;
|
|
478
481
|
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
479
|
-
}
|
|
482
|
+
}>, "strip", z.ZodTypeAny, {
|
|
480
483
|
group: string;
|
|
481
484
|
pages: any[];
|
|
482
|
-
asyncapi:
|
|
483
|
-
source: string;
|
|
484
|
-
directory?: string | undefined;
|
|
485
|
-
}) & (string | string[] | {
|
|
485
|
+
asyncapi: string | string[] | {
|
|
486
486
|
source: string;
|
|
487
487
|
directory?: string | undefined;
|
|
488
|
-
}
|
|
488
|
+
};
|
|
489
489
|
icon?: string | {
|
|
490
490
|
name: string;
|
|
491
491
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -498,13 +498,10 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
498
498
|
root?: string | undefined;
|
|
499
499
|
}, {
|
|
500
500
|
group: string;
|
|
501
|
-
asyncapi:
|
|
501
|
+
asyncapi: string | string[] | {
|
|
502
502
|
source: string;
|
|
503
503
|
directory?: string | undefined;
|
|
504
|
-
}
|
|
505
|
-
source: string;
|
|
506
|
-
directory?: string | undefined;
|
|
507
|
-
} | undefined);
|
|
504
|
+
};
|
|
508
505
|
icon?: string | {
|
|
509
506
|
name: string;
|
|
510
507
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -512,11 +509,13 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
512
509
|
} | undefined;
|
|
513
510
|
expanded?: boolean | undefined;
|
|
514
511
|
public?: boolean | undefined;
|
|
512
|
+
pages?: any[] | undefined;
|
|
515
513
|
tag?: string | undefined;
|
|
516
514
|
hidden?: boolean | undefined;
|
|
517
515
|
root?: string | undefined;
|
|
518
|
-
|
|
519
|
-
|
|
516
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
517
|
+
group: z.ZodString;
|
|
518
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
520
519
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
521
520
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
522
521
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -530,14 +529,13 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
530
529
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
531
530
|
library?: "fontawesome" | "lucide" | undefined;
|
|
532
531
|
}>]>>;
|
|
533
|
-
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
534
|
-
group: z.ZodString;
|
|
535
|
-
public: z.ZodOptional<z.ZodBoolean>;
|
|
536
|
-
tag: z.ZodOptional<z.ZodString>;
|
|
537
532
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
538
533
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
534
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
535
|
+
expanded: z.ZodOptional<z.ZodBoolean>;
|
|
536
|
+
}, {
|
|
539
537
|
pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
|
|
540
|
-
}
|
|
538
|
+
}>, "strip", z.ZodTypeAny, {
|
|
541
539
|
group: string;
|
|
542
540
|
pages: any[];
|
|
543
541
|
icon?: string | {
|
|
@@ -559,20 +557,17 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
559
557
|
} | undefined;
|
|
560
558
|
expanded?: boolean | undefined;
|
|
561
559
|
public?: boolean | undefined;
|
|
560
|
+
pages?: any[] | undefined;
|
|
562
561
|
tag?: string | undefined;
|
|
563
562
|
hidden?: boolean | undefined;
|
|
564
563
|
root?: string | undefined;
|
|
565
|
-
pages?: any[] | undefined;
|
|
566
564
|
}>]>, "many">;
|
|
567
|
-
}
|
|
565
|
+
}>, "strip", z.ZodTypeAny, {
|
|
568
566
|
groups: ({
|
|
569
|
-
openapi:
|
|
570
|
-
source: string;
|
|
571
|
-
directory?: string | undefined;
|
|
572
|
-
}) & (string | string[] | {
|
|
567
|
+
openapi: string | string[] | {
|
|
573
568
|
source: string;
|
|
574
569
|
directory?: string | undefined;
|
|
575
|
-
}
|
|
570
|
+
};
|
|
576
571
|
group: string;
|
|
577
572
|
pages: any[];
|
|
578
573
|
icon?: string | {
|
|
@@ -588,13 +583,10 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
588
583
|
} | {
|
|
589
584
|
group: string;
|
|
590
585
|
pages: any[];
|
|
591
|
-
asyncapi:
|
|
586
|
+
asyncapi: string | string[] | {
|
|
592
587
|
source: string;
|
|
593
588
|
directory?: string | undefined;
|
|
594
|
-
}
|
|
595
|
-
source: string;
|
|
596
|
-
directory?: string | undefined;
|
|
597
|
-
} | undefined);
|
|
589
|
+
};
|
|
598
590
|
icon?: string | {
|
|
599
591
|
name: string;
|
|
600
592
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -622,13 +614,10 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
622
614
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
623
615
|
}, {
|
|
624
616
|
groups: ({
|
|
625
|
-
openapi:
|
|
626
|
-
source: string;
|
|
627
|
-
directory?: string | undefined;
|
|
628
|
-
}) & (string | string[] | {
|
|
617
|
+
openapi: string | string[] | {
|
|
629
618
|
source: string;
|
|
630
619
|
directory?: string | undefined;
|
|
631
|
-
}
|
|
620
|
+
};
|
|
632
621
|
group: string;
|
|
633
622
|
icon?: string | {
|
|
634
623
|
name: string;
|
|
@@ -637,19 +626,16 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
637
626
|
} | undefined;
|
|
638
627
|
expanded?: boolean | undefined;
|
|
639
628
|
public?: boolean | undefined;
|
|
629
|
+
pages?: any[] | undefined;
|
|
640
630
|
tag?: string | undefined;
|
|
641
631
|
hidden?: boolean | undefined;
|
|
642
632
|
root?: string | undefined;
|
|
643
|
-
pages?: any[] | undefined;
|
|
644
633
|
} | {
|
|
645
634
|
group: string;
|
|
646
|
-
asyncapi:
|
|
647
|
-
source: string;
|
|
648
|
-
directory?: string | undefined;
|
|
649
|
-
}) & (string | string[] | {
|
|
635
|
+
asyncapi: string | string[] | {
|
|
650
636
|
source: string;
|
|
651
637
|
directory?: string | undefined;
|
|
652
|
-
}
|
|
638
|
+
};
|
|
653
639
|
icon?: string | {
|
|
654
640
|
name: string;
|
|
655
641
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -657,10 +643,10 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
657
643
|
} | undefined;
|
|
658
644
|
expanded?: boolean | undefined;
|
|
659
645
|
public?: boolean | undefined;
|
|
646
|
+
pages?: any[] | undefined;
|
|
660
647
|
tag?: string | undefined;
|
|
661
648
|
hidden?: boolean | undefined;
|
|
662
649
|
root?: string | undefined;
|
|
663
|
-
pages?: any[] | undefined;
|
|
664
650
|
} | {
|
|
665
651
|
group: string;
|
|
666
652
|
icon?: string | {
|
|
@@ -670,16 +656,17 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
670
656
|
} | undefined;
|
|
671
657
|
expanded?: boolean | undefined;
|
|
672
658
|
public?: boolean | undefined;
|
|
659
|
+
pages?: any[] | undefined;
|
|
673
660
|
tag?: string | undefined;
|
|
674
661
|
hidden?: boolean | undefined;
|
|
675
662
|
root?: string | undefined;
|
|
676
|
-
pages?: any[] | undefined;
|
|
677
663
|
})[];
|
|
678
664
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
679
|
-
}>, z.ZodObject<{
|
|
665
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
680
666
|
global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
667
|
+
}, {
|
|
681
668
|
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
682
|
-
}
|
|
669
|
+
}>, "strip", z.ZodTypeAny, {
|
|
683
670
|
pages: any[];
|
|
684
671
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
685
672
|
}, {
|
|
@@ -714,7 +701,6 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
714
701
|
header?: string | undefined;
|
|
715
702
|
}>, "many">>;
|
|
716
703
|
}, "strip", z.ZodTypeAny, {
|
|
717
|
-
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;
|
|
718
704
|
links?: {
|
|
719
705
|
items: {
|
|
720
706
|
href: string;
|
|
@@ -722,8 +708,8 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
722
708
|
}[];
|
|
723
709
|
header?: string | undefined;
|
|
724
710
|
}[] | undefined;
|
|
725
|
-
}, {
|
|
726
711
|
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;
|
|
712
|
+
}, {
|
|
727
713
|
links?: {
|
|
728
714
|
items: {
|
|
729
715
|
href: string;
|
|
@@ -731,6 +717,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
731
717
|
}[];
|
|
732
718
|
header?: string | undefined;
|
|
733
719
|
}[] | undefined;
|
|
720
|
+
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;
|
|
734
721
|
}>>;
|
|
735
722
|
search: z.ZodOptional<z.ZodObject<{
|
|
736
723
|
prompt: z.ZodOptional<z.ZodString>;
|
|
@@ -756,23 +743,23 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
756
743
|
format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
|
|
757
744
|
}, "strip", z.ZodTypeAny, {
|
|
758
745
|
family: string;
|
|
759
|
-
weight?: number | undefined;
|
|
760
746
|
source?: string | undefined;
|
|
747
|
+
weight?: number | undefined;
|
|
761
748
|
format?: "woff" | "woff2" | undefined;
|
|
762
749
|
}, {
|
|
763
750
|
family: string;
|
|
764
|
-
weight?: number | undefined;
|
|
765
751
|
source?: string | undefined;
|
|
752
|
+
weight?: number | undefined;
|
|
766
753
|
format?: "woff" | "woff2" | undefined;
|
|
767
754
|
}>, {
|
|
768
755
|
family: string;
|
|
769
|
-
weight?: number | undefined;
|
|
770
756
|
source?: string | undefined;
|
|
757
|
+
weight?: number | undefined;
|
|
771
758
|
format?: "woff" | "woff2" | undefined;
|
|
772
759
|
}, {
|
|
773
760
|
family: string;
|
|
774
|
-
weight?: number | undefined;
|
|
775
761
|
source?: string | undefined;
|
|
762
|
+
weight?: number | undefined;
|
|
776
763
|
format?: "woff" | "woff2" | undefined;
|
|
777
764
|
}>, z.ZodObject<{
|
|
778
765
|
heading: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
@@ -782,23 +769,23 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
782
769
|
format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
|
|
783
770
|
}, "strip", z.ZodTypeAny, {
|
|
784
771
|
family: string;
|
|
785
|
-
weight?: number | undefined;
|
|
786
772
|
source?: string | undefined;
|
|
773
|
+
weight?: number | undefined;
|
|
787
774
|
format?: "woff" | "woff2" | undefined;
|
|
788
775
|
}, {
|
|
789
776
|
family: string;
|
|
790
|
-
weight?: number | undefined;
|
|
791
777
|
source?: string | undefined;
|
|
778
|
+
weight?: number | undefined;
|
|
792
779
|
format?: "woff" | "woff2" | undefined;
|
|
793
780
|
}>, {
|
|
794
781
|
family: string;
|
|
795
|
-
weight?: number | undefined;
|
|
796
782
|
source?: string | undefined;
|
|
783
|
+
weight?: number | undefined;
|
|
797
784
|
format?: "woff" | "woff2" | undefined;
|
|
798
785
|
}, {
|
|
799
786
|
family: string;
|
|
800
|
-
weight?: number | undefined;
|
|
801
787
|
source?: string | undefined;
|
|
788
|
+
weight?: number | undefined;
|
|
802
789
|
format?: "woff" | "woff2" | undefined;
|
|
803
790
|
}>>;
|
|
804
791
|
body: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
@@ -808,49 +795,49 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
808
795
|
format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
|
|
809
796
|
}, "strip", z.ZodTypeAny, {
|
|
810
797
|
family: string;
|
|
811
|
-
weight?: number | undefined;
|
|
812
798
|
source?: string | undefined;
|
|
799
|
+
weight?: number | undefined;
|
|
813
800
|
format?: "woff" | "woff2" | undefined;
|
|
814
801
|
}, {
|
|
815
802
|
family: string;
|
|
816
|
-
weight?: number | undefined;
|
|
817
803
|
source?: string | undefined;
|
|
804
|
+
weight?: number | undefined;
|
|
818
805
|
format?: "woff" | "woff2" | undefined;
|
|
819
806
|
}>, {
|
|
820
807
|
family: string;
|
|
821
|
-
weight?: number | undefined;
|
|
822
808
|
source?: string | undefined;
|
|
809
|
+
weight?: number | undefined;
|
|
823
810
|
format?: "woff" | "woff2" | undefined;
|
|
824
811
|
}, {
|
|
825
812
|
family: string;
|
|
826
|
-
weight?: number | undefined;
|
|
827
813
|
source?: string | undefined;
|
|
814
|
+
weight?: number | undefined;
|
|
828
815
|
format?: "woff" | "woff2" | undefined;
|
|
829
816
|
}>>;
|
|
830
817
|
}, "strict", z.ZodTypeAny, {
|
|
831
|
-
|
|
818
|
+
body?: {
|
|
832
819
|
family: string;
|
|
833
|
-
weight?: number | undefined;
|
|
834
820
|
source?: string | undefined;
|
|
821
|
+
weight?: number | undefined;
|
|
835
822
|
format?: "woff" | "woff2" | undefined;
|
|
836
823
|
} | undefined;
|
|
837
|
-
|
|
824
|
+
heading?: {
|
|
838
825
|
family: string;
|
|
839
|
-
weight?: number | undefined;
|
|
840
826
|
source?: string | undefined;
|
|
827
|
+
weight?: number | undefined;
|
|
841
828
|
format?: "woff" | "woff2" | undefined;
|
|
842
829
|
} | undefined;
|
|
843
830
|
}, {
|
|
844
|
-
|
|
831
|
+
body?: {
|
|
845
832
|
family: string;
|
|
846
|
-
weight?: number | undefined;
|
|
847
833
|
source?: string | undefined;
|
|
834
|
+
weight?: number | undefined;
|
|
848
835
|
format?: "woff" | "woff2" | undefined;
|
|
849
836
|
} | undefined;
|
|
850
|
-
|
|
837
|
+
heading?: {
|
|
851
838
|
family: string;
|
|
852
|
-
weight?: number | undefined;
|
|
853
839
|
source?: string | undefined;
|
|
840
|
+
weight?: number | undefined;
|
|
854
841
|
format?: "woff" | "woff2" | undefined;
|
|
855
842
|
} | undefined;
|
|
856
843
|
}>]>>;
|
|
@@ -882,45 +869,45 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
882
869
|
custom?: string[] | undefined;
|
|
883
870
|
}>>;
|
|
884
871
|
}, "strip", z.ZodTypeAny, {
|
|
872
|
+
languages?: {
|
|
873
|
+
custom?: string[] | undefined;
|
|
874
|
+
} | undefined;
|
|
885
875
|
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" | {
|
|
886
876
|
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";
|
|
887
877
|
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";
|
|
888
878
|
} | undefined;
|
|
879
|
+
}, {
|
|
889
880
|
languages?: {
|
|
890
881
|
custom?: string[] | undefined;
|
|
891
882
|
} | undefined;
|
|
892
|
-
}, {
|
|
893
883
|
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" | {
|
|
894
884
|
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";
|
|
895
885
|
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";
|
|
896
886
|
} | undefined;
|
|
897
|
-
languages?: {
|
|
898
|
-
custom?: string[] | undefined;
|
|
899
|
-
} | undefined;
|
|
900
887
|
}>]>;
|
|
901
888
|
latex: z.ZodOptional<z.ZodBoolean>;
|
|
902
889
|
}, "strip", z.ZodTypeAny, {
|
|
903
890
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
904
891
|
codeblocks?: "dark" | "system" | {
|
|
892
|
+
languages?: {
|
|
893
|
+
custom?: string[] | undefined;
|
|
894
|
+
} | undefined;
|
|
905
895
|
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" | {
|
|
906
896
|
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";
|
|
907
897
|
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";
|
|
908
898
|
} | undefined;
|
|
909
|
-
languages?: {
|
|
910
|
-
custom?: string[] | undefined;
|
|
911
|
-
} | undefined;
|
|
912
899
|
} | undefined;
|
|
913
900
|
latex?: boolean | undefined;
|
|
914
901
|
}, {
|
|
915
902
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
916
903
|
codeblocks?: "dark" | "system" | {
|
|
904
|
+
languages?: {
|
|
905
|
+
custom?: string[] | undefined;
|
|
906
|
+
} | undefined;
|
|
917
907
|
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" | {
|
|
918
908
|
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";
|
|
919
909
|
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";
|
|
920
910
|
} | undefined;
|
|
921
|
-
languages?: {
|
|
922
|
-
custom?: string[] | undefined;
|
|
923
|
-
} | undefined;
|
|
924
911
|
} | undefined;
|
|
925
912
|
latex?: boolean | undefined;
|
|
926
913
|
}>>;
|
|
@@ -1102,11 +1089,11 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1102
1089
|
key: z.ZodOptional<z.ZodString>;
|
|
1103
1090
|
value: z.ZodOptional<z.ZodString>;
|
|
1104
1091
|
}, "strip", z.ZodTypeAny, {
|
|
1105
|
-
key?: string | undefined;
|
|
1106
1092
|
value?: string | undefined;
|
|
1107
|
-
}, {
|
|
1108
1093
|
key?: string | undefined;
|
|
1094
|
+
}, {
|
|
1109
1095
|
value?: string | undefined;
|
|
1096
|
+
key?: string | undefined;
|
|
1110
1097
|
}>>;
|
|
1111
1098
|
}, "strict", z.ZodTypeAny, {
|
|
1112
1099
|
amplitude?: {
|
|
@@ -1121,9 +1108,6 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1121
1108
|
fathom?: {
|
|
1122
1109
|
siteId: string;
|
|
1123
1110
|
} | undefined;
|
|
1124
|
-
frontchat?: {
|
|
1125
|
-
snippetId: string;
|
|
1126
|
-
} | undefined;
|
|
1127
1111
|
ga4?: {
|
|
1128
1112
|
measurementId: string;
|
|
1129
1113
|
} | undefined;
|
|
@@ -1141,9 +1125,6 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1141
1125
|
hjid: string;
|
|
1142
1126
|
hjsv: string;
|
|
1143
1127
|
} | undefined;
|
|
1144
|
-
intercom?: {
|
|
1145
|
-
appId: string;
|
|
1146
|
-
} | undefined;
|
|
1147
1128
|
koala?: {
|
|
1148
1129
|
publicApiKey: string;
|
|
1149
1130
|
} | undefined;
|
|
@@ -1153,9 +1134,6 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1153
1134
|
mixpanel?: {
|
|
1154
1135
|
projectToken: string;
|
|
1155
1136
|
} | undefined;
|
|
1156
|
-
osano?: {
|
|
1157
|
-
scriptSource: string;
|
|
1158
|
-
} | undefined;
|
|
1159
1137
|
pirsch?: {
|
|
1160
1138
|
id: string;
|
|
1161
1139
|
} | undefined;
|
|
@@ -1170,12 +1148,21 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1170
1148
|
segment?: {
|
|
1171
1149
|
key: string;
|
|
1172
1150
|
} | undefined;
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
} | undefined;
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1151
|
+
intercom?: {
|
|
1152
|
+
appId: string;
|
|
1153
|
+
} | undefined;
|
|
1154
|
+
frontchat?: {
|
|
1155
|
+
snippetId: string;
|
|
1156
|
+
} | undefined;
|
|
1157
|
+
osano?: {
|
|
1158
|
+
scriptSource: string;
|
|
1159
|
+
} | undefined;
|
|
1160
|
+
telemetry?: {
|
|
1161
|
+
enabled?: boolean | undefined;
|
|
1162
|
+
} | undefined;
|
|
1163
|
+
cookies?: {
|
|
1164
|
+
value?: string | undefined;
|
|
1165
|
+
key?: string | undefined;
|
|
1179
1166
|
} | undefined;
|
|
1180
1167
|
}, {
|
|
1181
1168
|
amplitude?: {
|
|
@@ -1190,9 +1177,6 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1190
1177
|
fathom?: {
|
|
1191
1178
|
siteId: string;
|
|
1192
1179
|
} | undefined;
|
|
1193
|
-
frontchat?: {
|
|
1194
|
-
snippetId: string;
|
|
1195
|
-
} | undefined;
|
|
1196
1180
|
ga4?: {
|
|
1197
1181
|
measurementId: string;
|
|
1198
1182
|
} | undefined;
|
|
@@ -1210,9 +1194,6 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1210
1194
|
hjid: string;
|
|
1211
1195
|
hjsv: string;
|
|
1212
1196
|
} | undefined;
|
|
1213
|
-
intercom?: {
|
|
1214
|
-
appId: string;
|
|
1215
|
-
} | undefined;
|
|
1216
1197
|
koala?: {
|
|
1217
1198
|
publicApiKey: string;
|
|
1218
1199
|
} | undefined;
|
|
@@ -1222,9 +1203,6 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1222
1203
|
mixpanel?: {
|
|
1223
1204
|
projectToken: string;
|
|
1224
1205
|
} | undefined;
|
|
1225
|
-
osano?: {
|
|
1226
|
-
scriptSource: string;
|
|
1227
|
-
} | undefined;
|
|
1228
1206
|
pirsch?: {
|
|
1229
1207
|
id: string;
|
|
1230
1208
|
} | undefined;
|
|
@@ -1239,12 +1217,21 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1239
1217
|
segment?: {
|
|
1240
1218
|
key: string;
|
|
1241
1219
|
} | undefined;
|
|
1220
|
+
intercom?: {
|
|
1221
|
+
appId: string;
|
|
1222
|
+
} | undefined;
|
|
1223
|
+
frontchat?: {
|
|
1224
|
+
snippetId: string;
|
|
1225
|
+
} | undefined;
|
|
1226
|
+
osano?: {
|
|
1227
|
+
scriptSource: string;
|
|
1228
|
+
} | undefined;
|
|
1242
1229
|
telemetry?: {
|
|
1243
1230
|
enabled?: boolean | undefined;
|
|
1244
1231
|
} | undefined;
|
|
1245
1232
|
cookies?: {
|
|
1246
|
-
key?: string | undefined;
|
|
1247
1233
|
value?: string | undefined;
|
|
1234
|
+
key?: string | undefined;
|
|
1248
1235
|
} | undefined;
|
|
1249
1236
|
}>>;
|
|
1250
1237
|
banner: z.ZodOptional<z.ZodObject<{
|
|
@@ -1267,9 +1254,9 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1267
1254
|
title?: string | undefined;
|
|
1268
1255
|
description?: string | undefined;
|
|
1269
1256
|
}, {
|
|
1270
|
-
redirect?: boolean | undefined;
|
|
1271
1257
|
title?: string | undefined;
|
|
1272
1258
|
description?: string | undefined;
|
|
1259
|
+
redirect?: boolean | undefined;
|
|
1273
1260
|
}>;
|
|
1274
1261
|
}, "strip", z.ZodTypeAny, {
|
|
1275
1262
|
'404': {
|
|
@@ -1279,9 +1266,9 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1279
1266
|
};
|
|
1280
1267
|
}, {
|
|
1281
1268
|
'404': {
|
|
1282
|
-
redirect?: boolean | undefined;
|
|
1283
1269
|
title?: string | undefined;
|
|
1284
1270
|
description?: string | undefined;
|
|
1271
|
+
redirect?: boolean | undefined;
|
|
1285
1272
|
};
|
|
1286
1273
|
}>>;
|
|
1287
1274
|
contextual: z.ZodOptional<z.ZodObject<{
|
|
@@ -1327,19 +1314,13 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1327
1314
|
}[] | undefined;
|
|
1328
1315
|
}>]>;
|
|
1329
1316
|
}, "strip", z.ZodTypeAny, {
|
|
1330
|
-
href:
|
|
1331
|
-
base: string;
|
|
1332
|
-
query?: {
|
|
1333
|
-
value: string;
|
|
1334
|
-
key: string;
|
|
1335
|
-
}[] | undefined;
|
|
1336
|
-
}) & (string | {
|
|
1317
|
+
href: string | {
|
|
1337
1318
|
base: string;
|
|
1338
1319
|
query?: {
|
|
1339
1320
|
value: string;
|
|
1340
1321
|
key: string;
|
|
1341
1322
|
}[] | undefined;
|
|
1342
|
-
}
|
|
1323
|
+
};
|
|
1343
1324
|
title: string;
|
|
1344
1325
|
description: string;
|
|
1345
1326
|
icon?: string | {
|
|
@@ -1348,19 +1329,13 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1348
1329
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1349
1330
|
} | undefined;
|
|
1350
1331
|
}, {
|
|
1351
|
-
href:
|
|
1352
|
-
base: string;
|
|
1353
|
-
query?: {
|
|
1354
|
-
value: string;
|
|
1355
|
-
key: string;
|
|
1356
|
-
}[] | undefined;
|
|
1357
|
-
}) & (string | {
|
|
1332
|
+
href: string | {
|
|
1358
1333
|
base: string;
|
|
1359
1334
|
query?: {
|
|
1360
1335
|
value: string;
|
|
1361
1336
|
key: string;
|
|
1362
1337
|
}[] | undefined;
|
|
1363
|
-
}
|
|
1338
|
+
};
|
|
1364
1339
|
title: string;
|
|
1365
1340
|
description: string;
|
|
1366
1341
|
icon?: string | {
|
|
@@ -1369,19 +1344,13 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1369
1344
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1370
1345
|
} | undefined;
|
|
1371
1346
|
}>]>, "many">, ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
|
|
1372
|
-
href:
|
|
1373
|
-
base: string;
|
|
1374
|
-
query?: {
|
|
1375
|
-
value: string;
|
|
1376
|
-
key: string;
|
|
1377
|
-
}[] | undefined;
|
|
1378
|
-
}) & (string | {
|
|
1347
|
+
href: string | {
|
|
1379
1348
|
base: string;
|
|
1380
1349
|
query?: {
|
|
1381
1350
|
value: string;
|
|
1382
1351
|
key: string;
|
|
1383
1352
|
}[] | undefined;
|
|
1384
|
-
}
|
|
1353
|
+
};
|
|
1385
1354
|
title: string;
|
|
1386
1355
|
description: string;
|
|
1387
1356
|
icon?: string | {
|
|
@@ -1390,19 +1359,13 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1390
1359
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1391
1360
|
} | undefined;
|
|
1392
1361
|
})[], ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
|
|
1393
|
-
href:
|
|
1394
|
-
base: string;
|
|
1395
|
-
query?: {
|
|
1396
|
-
value: string;
|
|
1397
|
-
key: string;
|
|
1398
|
-
}[] | undefined;
|
|
1399
|
-
}) & (string | {
|
|
1362
|
+
href: string | {
|
|
1400
1363
|
base: string;
|
|
1401
1364
|
query?: {
|
|
1402
1365
|
value: string;
|
|
1403
1366
|
key: string;
|
|
1404
1367
|
}[] | undefined;
|
|
1405
|
-
}
|
|
1368
|
+
};
|
|
1406
1369
|
title: string;
|
|
1407
1370
|
description: string;
|
|
1408
1371
|
icon?: string | {
|
|
@@ -1413,19 +1376,13 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1413
1376
|
})[]>;
|
|
1414
1377
|
}, "strip", z.ZodTypeAny, {
|
|
1415
1378
|
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
|
|
1416
|
-
href:
|
|
1417
|
-
base: string;
|
|
1418
|
-
query?: {
|
|
1419
|
-
value: string;
|
|
1420
|
-
key: string;
|
|
1421
|
-
}[] | undefined;
|
|
1422
|
-
}) & (string | {
|
|
1379
|
+
href: string | {
|
|
1423
1380
|
base: string;
|
|
1424
1381
|
query?: {
|
|
1425
1382
|
value: string;
|
|
1426
1383
|
key: string;
|
|
1427
1384
|
}[] | undefined;
|
|
1428
|
-
}
|
|
1385
|
+
};
|
|
1429
1386
|
title: string;
|
|
1430
1387
|
description: string;
|
|
1431
1388
|
icon?: string | {
|
|
@@ -1436,19 +1393,13 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1436
1393
|
})[];
|
|
1437
1394
|
}, {
|
|
1438
1395
|
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
|
|
1439
|
-
href:
|
|
1440
|
-
base: string;
|
|
1441
|
-
query?: {
|
|
1442
|
-
value: string;
|
|
1443
|
-
key: string;
|
|
1444
|
-
}[] | undefined;
|
|
1445
|
-
}) & (string | {
|
|
1396
|
+
href: string | {
|
|
1446
1397
|
base: string;
|
|
1447
1398
|
query?: {
|
|
1448
1399
|
value: string;
|
|
1449
1400
|
key: string;
|
|
1450
1401
|
}[] | undefined;
|
|
1451
|
-
}
|
|
1402
|
+
};
|
|
1452
1403
|
title: string;
|
|
1453
1404
|
description: string;
|
|
1454
1405
|
icon?: string | {
|
|
@@ -1469,14 +1420,14 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1469
1420
|
family: string;
|
|
1470
1421
|
}>>;
|
|
1471
1422
|
}, "strip", z.ZodTypeAny, {
|
|
1472
|
-
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1473
1423
|
background?: string | undefined;
|
|
1424
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1474
1425
|
fonts?: {
|
|
1475
1426
|
family: string;
|
|
1476
1427
|
} | undefined;
|
|
1477
1428
|
}, {
|
|
1478
|
-
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1479
1429
|
background?: string | undefined;
|
|
1430
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1480
1431
|
fonts?: {
|
|
1481
1432
|
family: string;
|
|
1482
1433
|
} | undefined;
|
|
@@ -1505,84 +1456,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1505
1456
|
light?: string | undefined;
|
|
1506
1457
|
dark?: string | undefined;
|
|
1507
1458
|
};
|
|
1508
|
-
navigation:
|
|
1509
|
-
products: import("../properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
1510
|
-
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1511
|
-
} | {
|
|
1512
|
-
languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
1513
|
-
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1514
|
-
} | {
|
|
1515
|
-
versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
1516
|
-
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1517
|
-
} | {
|
|
1518
|
-
tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
1519
|
-
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1520
|
-
} | {
|
|
1521
|
-
dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
1522
|
-
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1523
|
-
} | {
|
|
1524
|
-
anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
1525
|
-
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1526
|
-
} | {
|
|
1527
|
-
groups: ({
|
|
1528
|
-
openapi: (string | string[] | {
|
|
1529
|
-
source: string;
|
|
1530
|
-
directory?: string | undefined;
|
|
1531
|
-
}) & (string | string[] | {
|
|
1532
|
-
source: string;
|
|
1533
|
-
directory?: string | undefined;
|
|
1534
|
-
} | undefined);
|
|
1535
|
-
group: string;
|
|
1536
|
-
pages: any[];
|
|
1537
|
-
icon?: string | {
|
|
1538
|
-
name: string;
|
|
1539
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1540
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1541
|
-
} | undefined;
|
|
1542
|
-
expanded?: boolean | undefined;
|
|
1543
|
-
public?: boolean | undefined;
|
|
1544
|
-
tag?: string | undefined;
|
|
1545
|
-
hidden?: boolean | undefined;
|
|
1546
|
-
root?: string | undefined;
|
|
1547
|
-
} | {
|
|
1548
|
-
group: string;
|
|
1549
|
-
pages: any[];
|
|
1550
|
-
asyncapi: (string | string[] | {
|
|
1551
|
-
source: string;
|
|
1552
|
-
directory?: string | undefined;
|
|
1553
|
-
}) & (string | string[] | {
|
|
1554
|
-
source: string;
|
|
1555
|
-
directory?: string | undefined;
|
|
1556
|
-
} | undefined);
|
|
1557
|
-
icon?: string | {
|
|
1558
|
-
name: string;
|
|
1559
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1560
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1561
|
-
} | undefined;
|
|
1562
|
-
expanded?: boolean | undefined;
|
|
1563
|
-
public?: boolean | undefined;
|
|
1564
|
-
tag?: string | undefined;
|
|
1565
|
-
hidden?: boolean | undefined;
|
|
1566
|
-
root?: string | undefined;
|
|
1567
|
-
} | {
|
|
1568
|
-
group: string;
|
|
1569
|
-
pages: any[];
|
|
1570
|
-
icon?: string | {
|
|
1571
|
-
name: string;
|
|
1572
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1573
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1574
|
-
} | undefined;
|
|
1575
|
-
expanded?: boolean | undefined;
|
|
1576
|
-
public?: boolean | undefined;
|
|
1577
|
-
tag?: string | undefined;
|
|
1578
|
-
hidden?: boolean | undefined;
|
|
1579
|
-
root?: string | undefined;
|
|
1580
|
-
})[];
|
|
1581
|
-
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1582
|
-
} | {
|
|
1583
|
-
pages: any[];
|
|
1584
|
-
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1585
|
-
}) & ({
|
|
1459
|
+
navigation: {
|
|
1586
1460
|
products: import("../properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
1587
1461
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1588
1462
|
} | {
|
|
@@ -1602,13 +1476,10 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1602
1476
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1603
1477
|
} | {
|
|
1604
1478
|
groups: ({
|
|
1605
|
-
openapi:
|
|
1606
|
-
source: string;
|
|
1607
|
-
directory?: string | undefined;
|
|
1608
|
-
}) & (string | string[] | {
|
|
1479
|
+
openapi: string | string[] | {
|
|
1609
1480
|
source: string;
|
|
1610
1481
|
directory?: string | undefined;
|
|
1611
|
-
}
|
|
1482
|
+
};
|
|
1612
1483
|
group: string;
|
|
1613
1484
|
pages: any[];
|
|
1614
1485
|
icon?: string | {
|
|
@@ -1624,13 +1495,10 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1624
1495
|
} | {
|
|
1625
1496
|
group: string;
|
|
1626
1497
|
pages: any[];
|
|
1627
|
-
asyncapi:
|
|
1628
|
-
source: string;
|
|
1629
|
-
directory?: string | undefined;
|
|
1630
|
-
}) & (string | string[] | {
|
|
1498
|
+
asyncapi: string | string[] | {
|
|
1631
1499
|
source: string;
|
|
1632
1500
|
directory?: string | undefined;
|
|
1633
|
-
}
|
|
1501
|
+
};
|
|
1634
1502
|
icon?: string | {
|
|
1635
1503
|
name: string;
|
|
1636
1504
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -1659,8 +1527,18 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1659
1527
|
} | {
|
|
1660
1528
|
pages: any[];
|
|
1661
1529
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1662
|
-
}
|
|
1663
|
-
|
|
1530
|
+
};
|
|
1531
|
+
background?: {
|
|
1532
|
+
color?: {
|
|
1533
|
+
light?: string | undefined;
|
|
1534
|
+
dark?: string | undefined;
|
|
1535
|
+
} | undefined;
|
|
1536
|
+
image?: string | {
|
|
1537
|
+
light: string;
|
|
1538
|
+
dark: string;
|
|
1539
|
+
} | undefined;
|
|
1540
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
1541
|
+
} | undefined;
|
|
1664
1542
|
logo?: string | {
|
|
1665
1543
|
light: string;
|
|
1666
1544
|
dark: string;
|
|
@@ -1671,70 +1549,38 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1671
1549
|
dark: string;
|
|
1672
1550
|
} | undefined;
|
|
1673
1551
|
api?: {
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
directory?: string | undefined;
|
|
1552
|
+
params?: {
|
|
1553
|
+
expanded?: "all" | "closed" | undefined;
|
|
1677
1554
|
} | undefined;
|
|
1678
|
-
|
|
1555
|
+
openapi?: string | string[] | {
|
|
1679
1556
|
source: string;
|
|
1680
1557
|
directory?: string | undefined;
|
|
1681
1558
|
} | undefined;
|
|
1682
|
-
params?: {
|
|
1683
|
-
expanded?: "all" | "closed" | undefined;
|
|
1684
|
-
} | undefined;
|
|
1685
1559
|
playground?: {
|
|
1686
1560
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
1687
1561
|
proxy?: boolean | undefined;
|
|
1688
1562
|
} | undefined;
|
|
1563
|
+
asyncapi?: string | string[] | {
|
|
1564
|
+
source: string;
|
|
1565
|
+
directory?: string | undefined;
|
|
1566
|
+
} | undefined;
|
|
1689
1567
|
examples?: {
|
|
1690
|
-
defaults?: "all" | "required" | undefined;
|
|
1691
1568
|
languages?: string[] | undefined;
|
|
1569
|
+
defaults?: "all" | "required" | undefined;
|
|
1692
1570
|
prefill?: boolean | undefined;
|
|
1693
1571
|
} | undefined;
|
|
1694
1572
|
mdx?: {
|
|
1573
|
+
server?: string | string[] | undefined;
|
|
1695
1574
|
auth?: {
|
|
1696
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
1697
1575
|
name?: string | undefined;
|
|
1576
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
1698
1577
|
} | undefined;
|
|
1699
|
-
server?: string | string[] | undefined;
|
|
1700
|
-
} | undefined;
|
|
1701
|
-
} | undefined;
|
|
1702
|
-
appearance?: {
|
|
1703
|
-
default?: "light" | "dark" | "system" | undefined;
|
|
1704
|
-
strict?: boolean | undefined;
|
|
1705
|
-
} | undefined;
|
|
1706
|
-
background?: {
|
|
1707
|
-
image?: string | {
|
|
1708
|
-
light: string;
|
|
1709
|
-
dark: string;
|
|
1710
|
-
} | undefined;
|
|
1711
|
-
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
1712
|
-
color?: {
|
|
1713
|
-
light?: string | undefined;
|
|
1714
|
-
dark?: string | undefined;
|
|
1715
1578
|
} | undefined;
|
|
1716
1579
|
} | undefined;
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
href: string;
|
|
1720
|
-
label: string;
|
|
1721
|
-
icon?: string | {
|
|
1722
|
-
name: string;
|
|
1723
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1724
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1725
|
-
} | undefined;
|
|
1726
|
-
}[] | undefined;
|
|
1727
|
-
primary?: {
|
|
1728
|
-
type: "button";
|
|
1729
|
-
href: string;
|
|
1730
|
-
label: string;
|
|
1731
|
-
} | {
|
|
1732
|
-
type: "github";
|
|
1733
|
-
href: string;
|
|
1734
|
-
} | undefined;
|
|
1580
|
+
metadata?: {
|
|
1581
|
+
timestamp: boolean;
|
|
1735
1582
|
} | undefined;
|
|
1736
1583
|
footer?: {
|
|
1737
|
-
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;
|
|
1738
1584
|
links?: {
|
|
1739
1585
|
items: {
|
|
1740
1586
|
href: string;
|
|
@@ -1742,60 +1588,14 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1742
1588
|
}[];
|
|
1743
1589
|
header?: string | undefined;
|
|
1744
1590
|
}[] | undefined;
|
|
1591
|
+
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;
|
|
1745
1592
|
} | undefined;
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
seo?: {
|
|
1750
|
-
metatags?: Record<string, string> | undefined;
|
|
1751
|
-
indexing?: "all" | "navigable" | undefined;
|
|
1752
|
-
} | undefined;
|
|
1753
|
-
fonts?: {
|
|
1754
|
-
family: string;
|
|
1755
|
-
weight?: number | undefined;
|
|
1756
|
-
source?: string | undefined;
|
|
1757
|
-
format?: "woff" | "woff2" | undefined;
|
|
1758
|
-
} | {
|
|
1759
|
-
heading?: {
|
|
1760
|
-
family: string;
|
|
1761
|
-
weight?: number | undefined;
|
|
1762
|
-
source?: string | undefined;
|
|
1763
|
-
format?: "woff" | "woff2" | undefined;
|
|
1593
|
+
integrations?: {
|
|
1594
|
+
amplitude?: {
|
|
1595
|
+
apiKey: string;
|
|
1764
1596
|
} | undefined;
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
weight?: number | undefined;
|
|
1768
|
-
source?: string | undefined;
|
|
1769
|
-
format?: "woff" | "woff2" | undefined;
|
|
1770
|
-
} | undefined;
|
|
1771
|
-
} | undefined;
|
|
1772
|
-
icons?: {
|
|
1773
|
-
library: "fontawesome" | "lucide";
|
|
1774
|
-
} | undefined;
|
|
1775
|
-
styling?: {
|
|
1776
|
-
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
1777
|
-
codeblocks?: "dark" | "system" | {
|
|
1778
|
-
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" | {
|
|
1779
|
-
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";
|
|
1780
|
-
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";
|
|
1781
|
-
} | undefined;
|
|
1782
|
-
languages?: {
|
|
1783
|
-
custom?: string[] | undefined;
|
|
1784
|
-
} | undefined;
|
|
1785
|
-
} | undefined;
|
|
1786
|
-
latex?: boolean | undefined;
|
|
1787
|
-
} | undefined;
|
|
1788
|
-
redirects?: {
|
|
1789
|
-
source: string;
|
|
1790
|
-
destination: string;
|
|
1791
|
-
permanent?: boolean | undefined;
|
|
1792
|
-
}[] | undefined;
|
|
1793
|
-
integrations?: {
|
|
1794
|
-
amplitude?: {
|
|
1795
|
-
apiKey: string;
|
|
1796
|
-
} | undefined;
|
|
1797
|
-
clarity?: {
|
|
1798
|
-
projectId: string;
|
|
1597
|
+
clarity?: {
|
|
1598
|
+
projectId: string;
|
|
1799
1599
|
} | undefined;
|
|
1800
1600
|
clearbit?: {
|
|
1801
1601
|
publicApiKey: string;
|
|
@@ -1803,9 +1603,6 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1803
1603
|
fathom?: {
|
|
1804
1604
|
siteId: string;
|
|
1805
1605
|
} | undefined;
|
|
1806
|
-
frontchat?: {
|
|
1807
|
-
snippetId: string;
|
|
1808
|
-
} | undefined;
|
|
1809
1606
|
ga4?: {
|
|
1810
1607
|
measurementId: string;
|
|
1811
1608
|
} | undefined;
|
|
@@ -1823,9 +1620,6 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1823
1620
|
hjid: string;
|
|
1824
1621
|
hjsv: string;
|
|
1825
1622
|
} | undefined;
|
|
1826
|
-
intercom?: {
|
|
1827
|
-
appId: string;
|
|
1828
|
-
} | undefined;
|
|
1829
1623
|
koala?: {
|
|
1830
1624
|
publicApiKey: string;
|
|
1831
1625
|
} | undefined;
|
|
@@ -1835,9 +1629,6 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1835
1629
|
mixpanel?: {
|
|
1836
1630
|
projectToken: string;
|
|
1837
1631
|
} | undefined;
|
|
1838
|
-
osano?: {
|
|
1839
|
-
scriptSource: string;
|
|
1840
|
-
} | undefined;
|
|
1841
1632
|
pirsch?: {
|
|
1842
1633
|
id: string;
|
|
1843
1634
|
} | undefined;
|
|
@@ -1852,13 +1643,93 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1852
1643
|
segment?: {
|
|
1853
1644
|
key: string;
|
|
1854
1645
|
} | undefined;
|
|
1646
|
+
intercom?: {
|
|
1647
|
+
appId: string;
|
|
1648
|
+
} | undefined;
|
|
1649
|
+
frontchat?: {
|
|
1650
|
+
snippetId: string;
|
|
1651
|
+
} | undefined;
|
|
1652
|
+
osano?: {
|
|
1653
|
+
scriptSource: string;
|
|
1654
|
+
} | undefined;
|
|
1855
1655
|
telemetry?: {
|
|
1856
1656
|
enabled?: boolean | undefined;
|
|
1857
1657
|
} | undefined;
|
|
1858
1658
|
cookies?: {
|
|
1859
|
-
key?: string | undefined;
|
|
1860
1659
|
value?: string | undefined;
|
|
1660
|
+
key?: string | undefined;
|
|
1661
|
+
} | undefined;
|
|
1662
|
+
} | undefined;
|
|
1663
|
+
search?: {
|
|
1664
|
+
prompt?: string | undefined;
|
|
1665
|
+
} | undefined;
|
|
1666
|
+
redirects?: {
|
|
1667
|
+
source: string;
|
|
1668
|
+
destination: string;
|
|
1669
|
+
permanent?: boolean | undefined;
|
|
1670
|
+
}[] | undefined;
|
|
1671
|
+
seo?: {
|
|
1672
|
+
metatags?: Record<string, string> | undefined;
|
|
1673
|
+
indexing?: "all" | "navigable" | undefined;
|
|
1674
|
+
} | undefined;
|
|
1675
|
+
description?: string | undefined;
|
|
1676
|
+
appearance?: {
|
|
1677
|
+
strict?: boolean | undefined;
|
|
1678
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
1679
|
+
} | undefined;
|
|
1680
|
+
fonts?: {
|
|
1681
|
+
family: string;
|
|
1682
|
+
source?: string | undefined;
|
|
1683
|
+
weight?: number | undefined;
|
|
1684
|
+
format?: "woff" | "woff2" | undefined;
|
|
1685
|
+
} | {
|
|
1686
|
+
body?: {
|
|
1687
|
+
family: string;
|
|
1688
|
+
source?: string | undefined;
|
|
1689
|
+
weight?: number | undefined;
|
|
1690
|
+
format?: "woff" | "woff2" | undefined;
|
|
1691
|
+
} | undefined;
|
|
1692
|
+
heading?: {
|
|
1693
|
+
family: string;
|
|
1694
|
+
source?: string | undefined;
|
|
1695
|
+
weight?: number | undefined;
|
|
1696
|
+
format?: "woff" | "woff2" | undefined;
|
|
1697
|
+
} | undefined;
|
|
1698
|
+
} | undefined;
|
|
1699
|
+
navbar?: {
|
|
1700
|
+
primary?: {
|
|
1701
|
+
type: "button";
|
|
1702
|
+
href: string;
|
|
1703
|
+
label: string;
|
|
1704
|
+
} | {
|
|
1705
|
+
type: "github";
|
|
1706
|
+
href: string;
|
|
1861
1707
|
} | undefined;
|
|
1708
|
+
links?: {
|
|
1709
|
+
href: string;
|
|
1710
|
+
label: string;
|
|
1711
|
+
icon?: string | {
|
|
1712
|
+
name: string;
|
|
1713
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1714
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1715
|
+
} | undefined;
|
|
1716
|
+
}[] | undefined;
|
|
1717
|
+
} | undefined;
|
|
1718
|
+
icons?: {
|
|
1719
|
+
library: "fontawesome" | "lucide";
|
|
1720
|
+
} | undefined;
|
|
1721
|
+
styling?: {
|
|
1722
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
1723
|
+
codeblocks?: "dark" | "system" | {
|
|
1724
|
+
languages?: {
|
|
1725
|
+
custom?: string[] | undefined;
|
|
1726
|
+
} | undefined;
|
|
1727
|
+
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" | {
|
|
1728
|
+
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";
|
|
1729
|
+
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";
|
|
1730
|
+
} | undefined;
|
|
1731
|
+
} | undefined;
|
|
1732
|
+
latex?: boolean | undefined;
|
|
1862
1733
|
} | undefined;
|
|
1863
1734
|
banner?: {
|
|
1864
1735
|
content: string;
|
|
@@ -1873,19 +1744,13 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1873
1744
|
} | undefined;
|
|
1874
1745
|
contextual?: {
|
|
1875
1746
|
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
|
|
1876
|
-
href:
|
|
1747
|
+
href: string | {
|
|
1877
1748
|
base: string;
|
|
1878
1749
|
query?: {
|
|
1879
1750
|
value: string;
|
|
1880
1751
|
key: string;
|
|
1881
1752
|
}[] | undefined;
|
|
1882
|
-
}
|
|
1883
|
-
base: string;
|
|
1884
|
-
query?: {
|
|
1885
|
-
value: string;
|
|
1886
|
-
key: string;
|
|
1887
|
-
}[] | undefined;
|
|
1888
|
-
} | undefined);
|
|
1753
|
+
};
|
|
1889
1754
|
title: string;
|
|
1890
1755
|
description: string;
|
|
1891
1756
|
icon?: string | {
|
|
@@ -1896,8 +1761,8 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1896
1761
|
})[];
|
|
1897
1762
|
} | undefined;
|
|
1898
1763
|
thumbnails?: {
|
|
1899
|
-
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1900
1764
|
background?: string | undefined;
|
|
1765
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
1901
1766
|
fonts?: {
|
|
1902
1767
|
family: string;
|
|
1903
1768
|
} | undefined;
|
|
@@ -1905,9 +1770,6 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1905
1770
|
interaction?: {
|
|
1906
1771
|
drilldown?: boolean | undefined;
|
|
1907
1772
|
} | undefined;
|
|
1908
|
-
metadata?: {
|
|
1909
|
-
timestamp: boolean;
|
|
1910
|
-
} | undefined;
|
|
1911
1773
|
}, {
|
|
1912
1774
|
name: string;
|
|
1913
1775
|
theme: "maple";
|
|
@@ -1916,7 +1778,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1916
1778
|
light?: string | undefined;
|
|
1917
1779
|
dark?: string | undefined;
|
|
1918
1780
|
};
|
|
1919
|
-
navigation:
|
|
1781
|
+
navigation: {
|
|
1920
1782
|
products: import("../properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
1921
1783
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1922
1784
|
} | {
|
|
@@ -1936,13 +1798,10 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1936
1798
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1937
1799
|
} | {
|
|
1938
1800
|
groups: ({
|
|
1939
|
-
openapi:
|
|
1801
|
+
openapi: string | string[] | {
|
|
1940
1802
|
source: string;
|
|
1941
1803
|
directory?: string | undefined;
|
|
1942
|
-
}
|
|
1943
|
-
source: string;
|
|
1944
|
-
directory?: string | undefined;
|
|
1945
|
-
} | undefined);
|
|
1804
|
+
};
|
|
1946
1805
|
group: string;
|
|
1947
1806
|
icon?: string | {
|
|
1948
1807
|
name: string;
|
|
@@ -1951,76 +1810,16 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1951
1810
|
} | undefined;
|
|
1952
1811
|
expanded?: boolean | undefined;
|
|
1953
1812
|
public?: boolean | undefined;
|
|
1954
|
-
tag?: string | undefined;
|
|
1955
|
-
hidden?: boolean | undefined;
|
|
1956
|
-
root?: string | undefined;
|
|
1957
1813
|
pages?: any[] | undefined;
|
|
1958
|
-
} | {
|
|
1959
|
-
group: string;
|
|
1960
|
-
asyncapi: (string | string[] | {
|
|
1961
|
-
source: string;
|
|
1962
|
-
directory?: string | undefined;
|
|
1963
|
-
}) & (string | string[] | {
|
|
1964
|
-
source: string;
|
|
1965
|
-
directory?: string | undefined;
|
|
1966
|
-
} | undefined);
|
|
1967
|
-
icon?: string | {
|
|
1968
|
-
name: string;
|
|
1969
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1970
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1971
|
-
} | undefined;
|
|
1972
|
-
expanded?: boolean | undefined;
|
|
1973
|
-
public?: boolean | undefined;
|
|
1974
1814
|
tag?: string | undefined;
|
|
1975
1815
|
hidden?: boolean | undefined;
|
|
1976
1816
|
root?: string | undefined;
|
|
1977
|
-
pages?: any[] | undefined;
|
|
1978
1817
|
} | {
|
|
1979
1818
|
group: string;
|
|
1980
|
-
|
|
1981
|
-
name: string;
|
|
1982
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1983
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1984
|
-
} | undefined;
|
|
1985
|
-
expanded?: boolean | undefined;
|
|
1986
|
-
public?: boolean | undefined;
|
|
1987
|
-
tag?: string | undefined;
|
|
1988
|
-
hidden?: boolean | undefined;
|
|
1989
|
-
root?: string | undefined;
|
|
1990
|
-
pages?: any[] | undefined;
|
|
1991
|
-
})[];
|
|
1992
|
-
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1993
|
-
} | {
|
|
1994
|
-
pages: any[];
|
|
1995
|
-
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1996
|
-
}) & ({
|
|
1997
|
-
products: import("../properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
1998
|
-
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1999
|
-
} | {
|
|
2000
|
-
languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
|
|
2001
|
-
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2002
|
-
} | {
|
|
2003
|
-
versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
|
|
2004
|
-
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2005
|
-
} | {
|
|
2006
|
-
tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
|
|
2007
|
-
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2008
|
-
} | {
|
|
2009
|
-
dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
|
|
2010
|
-
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2011
|
-
} | {
|
|
2012
|
-
anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
|
|
2013
|
-
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2014
|
-
} | {
|
|
2015
|
-
groups: ({
|
|
2016
|
-
openapi: (string | string[] | {
|
|
2017
|
-
source: string;
|
|
2018
|
-
directory?: string | undefined;
|
|
2019
|
-
}) & (string | string[] | {
|
|
1819
|
+
asyncapi: string | string[] | {
|
|
2020
1820
|
source: string;
|
|
2021
1821
|
directory?: string | undefined;
|
|
2022
|
-
}
|
|
2023
|
-
group: string;
|
|
1822
|
+
};
|
|
2024
1823
|
icon?: string | {
|
|
2025
1824
|
name: string;
|
|
2026
1825
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -2028,30 +1827,10 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
2028
1827
|
} | undefined;
|
|
2029
1828
|
expanded?: boolean | undefined;
|
|
2030
1829
|
public?: boolean | undefined;
|
|
2031
|
-
tag?: string | undefined;
|
|
2032
|
-
hidden?: boolean | undefined;
|
|
2033
|
-
root?: string | undefined;
|
|
2034
1830
|
pages?: any[] | undefined;
|
|
2035
|
-
} | {
|
|
2036
|
-
group: string;
|
|
2037
|
-
asyncapi: (string | string[] | {
|
|
2038
|
-
source: string;
|
|
2039
|
-
directory?: string | undefined;
|
|
2040
|
-
}) & (string | string[] | {
|
|
2041
|
-
source: string;
|
|
2042
|
-
directory?: string | undefined;
|
|
2043
|
-
} | undefined);
|
|
2044
|
-
icon?: string | {
|
|
2045
|
-
name: string;
|
|
2046
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2047
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2048
|
-
} | undefined;
|
|
2049
|
-
expanded?: boolean | undefined;
|
|
2050
|
-
public?: boolean | undefined;
|
|
2051
1831
|
tag?: string | undefined;
|
|
2052
1832
|
hidden?: boolean | undefined;
|
|
2053
1833
|
root?: string | undefined;
|
|
2054
|
-
pages?: any[] | undefined;
|
|
2055
1834
|
} | {
|
|
2056
1835
|
group: string;
|
|
2057
1836
|
icon?: string | {
|
|
@@ -2061,18 +1840,28 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
2061
1840
|
} | undefined;
|
|
2062
1841
|
expanded?: boolean | undefined;
|
|
2063
1842
|
public?: boolean | undefined;
|
|
1843
|
+
pages?: any[] | undefined;
|
|
2064
1844
|
tag?: string | undefined;
|
|
2065
1845
|
hidden?: boolean | undefined;
|
|
2066
1846
|
root?: string | undefined;
|
|
2067
|
-
pages?: any[] | undefined;
|
|
2068
1847
|
})[];
|
|
2069
1848
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2070
1849
|
} | {
|
|
2071
1850
|
pages: any[];
|
|
2072
1851
|
global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2073
|
-
}
|
|
1852
|
+
};
|
|
1853
|
+
background?: {
|
|
1854
|
+
color?: {
|
|
1855
|
+
light?: string | undefined;
|
|
1856
|
+
dark?: string | undefined;
|
|
1857
|
+
} | undefined;
|
|
1858
|
+
image?: string | {
|
|
1859
|
+
light: string;
|
|
1860
|
+
dark: string;
|
|
1861
|
+
} | undefined;
|
|
1862
|
+
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
1863
|
+
} | undefined;
|
|
2074
1864
|
$schema?: string | undefined;
|
|
2075
|
-
description?: string | undefined;
|
|
2076
1865
|
logo?: string | {
|
|
2077
1866
|
light: string;
|
|
2078
1867
|
dark: string;
|
|
@@ -2083,70 +1872,38 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
2083
1872
|
dark: string;
|
|
2084
1873
|
} | undefined;
|
|
2085
1874
|
api?: {
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
directory?: string | undefined;
|
|
1875
|
+
params?: {
|
|
1876
|
+
expanded?: "all" | "closed" | undefined;
|
|
2089
1877
|
} | undefined;
|
|
2090
|
-
|
|
1878
|
+
openapi?: string | string[] | {
|
|
2091
1879
|
source: string;
|
|
2092
1880
|
directory?: string | undefined;
|
|
2093
1881
|
} | undefined;
|
|
2094
|
-
params?: {
|
|
2095
|
-
expanded?: "all" | "closed" | undefined;
|
|
2096
|
-
} | undefined;
|
|
2097
1882
|
playground?: {
|
|
2098
1883
|
display?: "simple" | "none" | "interactive" | undefined;
|
|
2099
1884
|
proxy?: boolean | undefined;
|
|
2100
1885
|
} | undefined;
|
|
1886
|
+
asyncapi?: string | string[] | {
|
|
1887
|
+
source: string;
|
|
1888
|
+
directory?: string | undefined;
|
|
1889
|
+
} | undefined;
|
|
2101
1890
|
examples?: {
|
|
2102
|
-
defaults?: "all" | "required" | undefined;
|
|
2103
1891
|
languages?: string[] | undefined;
|
|
1892
|
+
defaults?: "all" | "required" | undefined;
|
|
2104
1893
|
prefill?: boolean | undefined;
|
|
2105
1894
|
} | undefined;
|
|
2106
1895
|
mdx?: {
|
|
1896
|
+
server?: string | string[] | undefined;
|
|
2107
1897
|
auth?: {
|
|
2108
|
-
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
2109
1898
|
name?: string | undefined;
|
|
1899
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
2110
1900
|
} | undefined;
|
|
2111
|
-
server?: string | string[] | undefined;
|
|
2112
|
-
} | undefined;
|
|
2113
|
-
} | undefined;
|
|
2114
|
-
appearance?: {
|
|
2115
|
-
default?: "light" | "dark" | "system" | undefined;
|
|
2116
|
-
strict?: boolean | undefined;
|
|
2117
|
-
} | undefined;
|
|
2118
|
-
background?: {
|
|
2119
|
-
image?: string | {
|
|
2120
|
-
light: string;
|
|
2121
|
-
dark: string;
|
|
2122
|
-
} | undefined;
|
|
2123
|
-
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
2124
|
-
color?: {
|
|
2125
|
-
light?: string | undefined;
|
|
2126
|
-
dark?: string | undefined;
|
|
2127
1901
|
} | undefined;
|
|
2128
1902
|
} | undefined;
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
href: string;
|
|
2132
|
-
label: string;
|
|
2133
|
-
icon?: string | {
|
|
2134
|
-
name: string;
|
|
2135
|
-
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2136
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2137
|
-
} | undefined;
|
|
2138
|
-
}[] | undefined;
|
|
2139
|
-
primary?: {
|
|
2140
|
-
type: "button";
|
|
2141
|
-
href: string;
|
|
2142
|
-
label: string;
|
|
2143
|
-
} | {
|
|
2144
|
-
type: "github";
|
|
2145
|
-
href: string;
|
|
2146
|
-
} | undefined;
|
|
1903
|
+
metadata?: {
|
|
1904
|
+
timestamp?: boolean | undefined;
|
|
2147
1905
|
} | undefined;
|
|
2148
1906
|
footer?: {
|
|
2149
|
-
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;
|
|
2150
1907
|
links?: {
|
|
2151
1908
|
items: {
|
|
2152
1909
|
href: string;
|
|
@@ -2154,54 +1911,8 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
2154
1911
|
}[];
|
|
2155
1912
|
header?: string | undefined;
|
|
2156
1913
|
}[] | undefined;
|
|
1914
|
+
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;
|
|
2157
1915
|
} | undefined;
|
|
2158
|
-
search?: {
|
|
2159
|
-
prompt?: string | undefined;
|
|
2160
|
-
} | undefined;
|
|
2161
|
-
seo?: {
|
|
2162
|
-
metatags?: Record<string, string> | undefined;
|
|
2163
|
-
indexing?: "all" | "navigable" | undefined;
|
|
2164
|
-
} | undefined;
|
|
2165
|
-
fonts?: {
|
|
2166
|
-
family: string;
|
|
2167
|
-
weight?: number | undefined;
|
|
2168
|
-
source?: string | undefined;
|
|
2169
|
-
format?: "woff" | "woff2" | undefined;
|
|
2170
|
-
} | {
|
|
2171
|
-
heading?: {
|
|
2172
|
-
family: string;
|
|
2173
|
-
weight?: number | undefined;
|
|
2174
|
-
source?: string | undefined;
|
|
2175
|
-
format?: "woff" | "woff2" | undefined;
|
|
2176
|
-
} | undefined;
|
|
2177
|
-
body?: {
|
|
2178
|
-
family: string;
|
|
2179
|
-
weight?: number | undefined;
|
|
2180
|
-
source?: string | undefined;
|
|
2181
|
-
format?: "woff" | "woff2" | undefined;
|
|
2182
|
-
} | undefined;
|
|
2183
|
-
} | undefined;
|
|
2184
|
-
icons?: {
|
|
2185
|
-
library: "fontawesome" | "lucide";
|
|
2186
|
-
} | undefined;
|
|
2187
|
-
styling?: {
|
|
2188
|
-
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
2189
|
-
codeblocks?: "dark" | "system" | {
|
|
2190
|
-
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" | {
|
|
2191
|
-
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";
|
|
2192
|
-
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";
|
|
2193
|
-
} | undefined;
|
|
2194
|
-
languages?: {
|
|
2195
|
-
custom?: string[] | undefined;
|
|
2196
|
-
} | undefined;
|
|
2197
|
-
} | undefined;
|
|
2198
|
-
latex?: boolean | undefined;
|
|
2199
|
-
} | undefined;
|
|
2200
|
-
redirects?: {
|
|
2201
|
-
source: string;
|
|
2202
|
-
destination: string;
|
|
2203
|
-
permanent?: boolean | undefined;
|
|
2204
|
-
}[] | undefined;
|
|
2205
1916
|
integrations?: {
|
|
2206
1917
|
amplitude?: {
|
|
2207
1918
|
apiKey: string;
|
|
@@ -2215,9 +1926,6 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
2215
1926
|
fathom?: {
|
|
2216
1927
|
siteId: string;
|
|
2217
1928
|
} | undefined;
|
|
2218
|
-
frontchat?: {
|
|
2219
|
-
snippetId: string;
|
|
2220
|
-
} | undefined;
|
|
2221
1929
|
ga4?: {
|
|
2222
1930
|
measurementId: string;
|
|
2223
1931
|
} | undefined;
|
|
@@ -2235,9 +1943,6 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
2235
1943
|
hjid: string;
|
|
2236
1944
|
hjsv: string;
|
|
2237
1945
|
} | undefined;
|
|
2238
|
-
intercom?: {
|
|
2239
|
-
appId: string;
|
|
2240
|
-
} | undefined;
|
|
2241
1946
|
koala?: {
|
|
2242
1947
|
publicApiKey: string;
|
|
2243
1948
|
} | undefined;
|
|
@@ -2247,9 +1952,6 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
2247
1952
|
mixpanel?: {
|
|
2248
1953
|
projectToken: string;
|
|
2249
1954
|
} | undefined;
|
|
2250
|
-
osano?: {
|
|
2251
|
-
scriptSource: string;
|
|
2252
|
-
} | undefined;
|
|
2253
1955
|
pirsch?: {
|
|
2254
1956
|
id: string;
|
|
2255
1957
|
} | undefined;
|
|
@@ -2264,40 +1966,114 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
2264
1966
|
segment?: {
|
|
2265
1967
|
key: string;
|
|
2266
1968
|
} | undefined;
|
|
1969
|
+
intercom?: {
|
|
1970
|
+
appId: string;
|
|
1971
|
+
} | undefined;
|
|
1972
|
+
frontchat?: {
|
|
1973
|
+
snippetId: string;
|
|
1974
|
+
} | undefined;
|
|
1975
|
+
osano?: {
|
|
1976
|
+
scriptSource: string;
|
|
1977
|
+
} | undefined;
|
|
2267
1978
|
telemetry?: {
|
|
2268
1979
|
enabled?: boolean | undefined;
|
|
2269
1980
|
} | undefined;
|
|
2270
1981
|
cookies?: {
|
|
2271
|
-
key?: string | undefined;
|
|
2272
1982
|
value?: string | undefined;
|
|
1983
|
+
key?: string | undefined;
|
|
2273
1984
|
} | undefined;
|
|
2274
1985
|
} | undefined;
|
|
1986
|
+
search?: {
|
|
1987
|
+
prompt?: string | undefined;
|
|
1988
|
+
} | undefined;
|
|
1989
|
+
redirects?: {
|
|
1990
|
+
source: string;
|
|
1991
|
+
destination: string;
|
|
1992
|
+
permanent?: boolean | undefined;
|
|
1993
|
+
}[] | undefined;
|
|
1994
|
+
seo?: {
|
|
1995
|
+
metatags?: Record<string, string> | undefined;
|
|
1996
|
+
indexing?: "all" | "navigable" | undefined;
|
|
1997
|
+
} | undefined;
|
|
1998
|
+
description?: string | undefined;
|
|
1999
|
+
appearance?: {
|
|
2000
|
+
strict?: boolean | undefined;
|
|
2001
|
+
default?: "light" | "dark" | "system" | undefined;
|
|
2002
|
+
} | undefined;
|
|
2003
|
+
fonts?: {
|
|
2004
|
+
family: string;
|
|
2005
|
+
source?: string | undefined;
|
|
2006
|
+
weight?: number | undefined;
|
|
2007
|
+
format?: "woff" | "woff2" | undefined;
|
|
2008
|
+
} | {
|
|
2009
|
+
body?: {
|
|
2010
|
+
family: string;
|
|
2011
|
+
source?: string | undefined;
|
|
2012
|
+
weight?: number | undefined;
|
|
2013
|
+
format?: "woff" | "woff2" | undefined;
|
|
2014
|
+
} | undefined;
|
|
2015
|
+
heading?: {
|
|
2016
|
+
family: string;
|
|
2017
|
+
source?: string | undefined;
|
|
2018
|
+
weight?: number | undefined;
|
|
2019
|
+
format?: "woff" | "woff2" | undefined;
|
|
2020
|
+
} | undefined;
|
|
2021
|
+
} | undefined;
|
|
2022
|
+
navbar?: {
|
|
2023
|
+
primary?: {
|
|
2024
|
+
type: "button";
|
|
2025
|
+
href: string;
|
|
2026
|
+
label: string;
|
|
2027
|
+
} | {
|
|
2028
|
+
type: "github";
|
|
2029
|
+
href: string;
|
|
2030
|
+
} | undefined;
|
|
2031
|
+
links?: {
|
|
2032
|
+
href: string;
|
|
2033
|
+
label: string;
|
|
2034
|
+
icon?: string | {
|
|
2035
|
+
name: string;
|
|
2036
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2037
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2038
|
+
} | undefined;
|
|
2039
|
+
}[] | undefined;
|
|
2040
|
+
} | undefined;
|
|
2041
|
+
icons?: {
|
|
2042
|
+
library: "fontawesome" | "lucide";
|
|
2043
|
+
} | undefined;
|
|
2044
|
+
styling?: {
|
|
2045
|
+
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
2046
|
+
codeblocks?: "dark" | "system" | {
|
|
2047
|
+
languages?: {
|
|
2048
|
+
custom?: string[] | undefined;
|
|
2049
|
+
} | undefined;
|
|
2050
|
+
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" | {
|
|
2051
|
+
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";
|
|
2052
|
+
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";
|
|
2053
|
+
} | undefined;
|
|
2054
|
+
} | undefined;
|
|
2055
|
+
latex?: boolean | undefined;
|
|
2056
|
+
} | undefined;
|
|
2275
2057
|
banner?: {
|
|
2276
2058
|
content: string;
|
|
2277
2059
|
dismissible?: boolean | undefined;
|
|
2278
2060
|
} | undefined;
|
|
2279
2061
|
errors?: {
|
|
2280
2062
|
'404': {
|
|
2281
|
-
redirect?: boolean | undefined;
|
|
2282
2063
|
title?: string | undefined;
|
|
2283
2064
|
description?: string | undefined;
|
|
2065
|
+
redirect?: boolean | undefined;
|
|
2284
2066
|
};
|
|
2285
2067
|
} | undefined;
|
|
2286
2068
|
contextual?: {
|
|
2287
2069
|
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
|
|
2288
|
-
href:
|
|
2289
|
-
base: string;
|
|
2290
|
-
query?: {
|
|
2291
|
-
value: string;
|
|
2292
|
-
key: string;
|
|
2293
|
-
}[] | undefined;
|
|
2294
|
-
}) & (string | {
|
|
2070
|
+
href: string | {
|
|
2295
2071
|
base: string;
|
|
2296
2072
|
query?: {
|
|
2297
2073
|
value: string;
|
|
2298
2074
|
key: string;
|
|
2299
2075
|
}[] | undefined;
|
|
2300
|
-
}
|
|
2076
|
+
};
|
|
2301
2077
|
title: string;
|
|
2302
2078
|
description: string;
|
|
2303
2079
|
icon?: string | {
|
|
@@ -2308,8 +2084,8 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
2308
2084
|
})[];
|
|
2309
2085
|
} | undefined;
|
|
2310
2086
|
thumbnails?: {
|
|
2311
|
-
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
2312
2087
|
background?: string | undefined;
|
|
2088
|
+
appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
|
|
2313
2089
|
fonts?: {
|
|
2314
2090
|
family: string;
|
|
2315
2091
|
} | undefined;
|
|
@@ -2317,7 +2093,4 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
2317
2093
|
interaction?: {
|
|
2318
2094
|
drilldown?: boolean | undefined;
|
|
2319
2095
|
} | undefined;
|
|
2320
|
-
metadata?: {
|
|
2321
|
-
timestamp?: boolean | undefined;
|
|
2322
|
-
} | undefined;
|
|
2323
2096
|
}>;
|