@mintlify/validation 0.1.586 → 0.1.587

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.
@@ -6,6 +6,7 @@ import { mapleConfigSchema } from './themes/maple.js';
6
6
  import { mintConfigSchema } from './themes/mint.js';
7
7
  import { palmConfigSchema } from './themes/palm.js';
8
8
  import { standardConfigSchema } from './themes/reusable/index.js';
9
+ import { sequoiaConfigSchema } from './themes/sequoia.js';
9
10
  import { themeSchema } from './themes/themes.js';
10
11
  import { willowConfigSchema } from './themes/willow.js';
11
12
  export const docsConfigSchema = z.discriminatedUnion('theme', [
@@ -16,5 +17,6 @@ export const docsConfigSchema = z.discriminatedUnion('theme', [
16
17
  lindenConfigSchema,
17
18
  almondConfigSchema,
18
19
  aspenConfigSchema,
20
+ sequoiaConfigSchema,
19
21
  ]);
20
22
  export const docsConfigUnifiedSchema = z.object(Object.assign({ theme: themeSchema }, standardConfigSchema));
@@ -1,6 +1,8 @@
1
1
  import { z } from 'zod';
2
- export declare const contextualOptions: readonly ["copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"];
2
+ export declare const contextualOptions: readonly ["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"];
3
3
  export type ContextualOption = (typeof contextualOptions)[number];
4
+ export declare const contextualDisplayOptions: readonly ["header", "toc"];
5
+ export type ContextualDisplayOption = (typeof contextualDisplayOptions)[number];
4
6
  export declare const contextualHrefPresetValues: readonly ["$page", "$path", "$mcp"];
5
7
  export type ContextualHrefPresetValue = (typeof contextualHrefPresetValues)[number];
6
8
  export declare const DetailedContextualHrefSchema: z.ZodObject<{
@@ -101,7 +103,7 @@ export declare const customContextualOption: z.ZodObject<{
101
103
  } | undefined;
102
104
  }>;
103
105
  export declare const contextualSchema: z.ZodObject<{
104
- options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
106
+ options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
105
107
  title: z.ZodString;
106
108
  description: z.ZodString;
107
109
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
@@ -172,7 +174,7 @@ export declare const contextualSchema: z.ZodObject<{
172
174
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
173
175
  library?: "fontawesome" | "lucide" | undefined;
174
176
  } | undefined;
175
- }>]>, "many">, ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
177
+ }>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
176
178
  href: string | {
177
179
  base: string;
178
180
  query?: {
@@ -187,7 +189,7 @@ export declare const contextualSchema: z.ZodObject<{
187
189
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
188
190
  library?: "fontawesome" | "lucide" | undefined;
189
191
  } | undefined;
190
- })[], ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
192
+ })[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
191
193
  href: string | {
192
194
  base: string;
193
195
  query?: {
@@ -203,8 +205,9 @@ export declare const contextualSchema: z.ZodObject<{
203
205
  library?: "fontawesome" | "lucide" | undefined;
204
206
  } | undefined;
205
207
  })[]>;
208
+ display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
206
209
  }, "strip", z.ZodTypeAny, {
207
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
210
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
208
211
  href: string | {
209
212
  base: string;
210
213
  query?: {
@@ -220,8 +223,9 @@ export declare const contextualSchema: z.ZodObject<{
220
223
  library?: "fontawesome" | "lucide" | undefined;
221
224
  } | undefined;
222
225
  })[];
226
+ display: "header" | "toc";
223
227
  }, {
224
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
228
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
225
229
  href: string | {
226
230
  base: string;
227
231
  query?: {
@@ -237,7 +241,9 @@ export declare const contextualSchema: z.ZodObject<{
237
241
  library?: "fontawesome" | "lucide" | undefined;
238
242
  } | undefined;
239
243
  })[];
244
+ display?: "header" | "toc" | undefined;
240
245
  }>;
241
246
  export type CustomContextualOption = z.infer<typeof customContextualOption>;
242
247
  export type ContextualConfig = z.infer<typeof contextualSchema>;
248
+ export type ContextualDisplay = z.infer<typeof contextualSchema>['display'];
243
249
  export type DetailedContextualHref = z.infer<typeof DetailedContextualHrefSchema>;
@@ -1,6 +1,7 @@
1
1
  import { z } from 'zod';
2
2
  import { iconSchema } from './reusable/icon.js';
3
3
  export const contextualOptions = [
4
+ 'assistant',
4
5
  'copy',
5
6
  'view',
6
7
  'chatgpt',
@@ -11,6 +12,7 @@ export const contextualOptions = [
11
12
  'cursor',
12
13
  'vscode',
13
14
  ];
15
+ export const contextualDisplayOptions = ['header', 'toc'];
14
16
  export const contextualHrefPresetValues = ['$page', '$path', '$mcp'];
15
17
  export const DetailedContextualHrefSchema = z.object({
16
18
  base: z.string(),
@@ -40,5 +42,10 @@ export const contextualSchema = z
40
42
  }, {
41
43
  message: 'Each contextual option can only appear once',
42
44
  }),
45
+ display: z
46
+ .enum(contextualDisplayOptions)
47
+ .optional()
48
+ .default('header')
49
+ .describe('Where to display the contextual options: "header" (default) shows them in the top-of-page context menu, "toc" shows them in the table of contents sidebar'),
43
50
  })
44
51
  .describe('Contextual options');
@@ -5,7 +5,7 @@ import { DecoratedGroupConfig, GroupConfig } from './groups.js';
5
5
  import { DecoratedLanguageConfig, LanguageConfig } from './languages.js';
6
6
  import { DecoratedMenuItemConfig, MenuItemConfig } from './menu.js';
7
7
  import { DecoratedProductConfig, ProductConfig } from './products.js';
8
- import { DecoratedTabConfig, TabConfig } from './tabs.js';
8
+ import { DecoratedTabConfig, TabAlign, TabConfig } from './tabs.js';
9
9
  import { DecoratedVersionConfig, VersionConfig } from './version.js';
10
10
  export declare const navigationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
11
11
  global: z.ZodOptional<z.ZodType<import("./divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./divisionNav.js").GlobalNavigation>>;
@@ -644,3 +644,4 @@ export type DecoratedNavigationConfig = z.infer<typeof decoratedNavigationSchema
644
644
  export type DivisionNavigationType = ProductConfig | AnchorConfig | TabConfig | DropdownConfig | VersionConfig | LanguageConfig | MenuItemConfig | GroupConfig;
645
645
  export type DecoratedDivisionNavigationType = DecoratedProductConfig | DecoratedAnchorConfig | DecoratedTabConfig | DecoratedDropdownConfig | DecoratedVersionConfig | DecoratedLanguageConfig | DecoratedMenuItemConfig | DecoratedGroupConfig;
646
646
  export type DecoratedDivisionConfig = DecoratedAnchorConfig | DecoratedTabConfig | DecoratedVersionConfig | DecoratedLanguageConfig | DecoratedDropdownConfig | DecoratedMenuItemConfig | DecoratedProductConfig;
647
+ export type { TabAlign };
@@ -6,7 +6,7 @@ import { decoratedGroupsSchema, groupsSchema, } from './groups.js';
6
6
  import { decoratedLanguagesSchema, languagesSchema, } from './languages.js';
7
7
  import { decoratedPagesSchema, pagesSchema } from './pages.js';
8
8
  import { decoratedProductsSchema, productsSchema, } from './products.js';
9
- import { decoratedTabsSchema, tabsSchema } from './tabs.js';
9
+ import { decoratedTabsSchema, tabsSchema, } from './tabs.js';
10
10
  import { decoratedVersionsSchema, versionsSchema, } from './version.js';
11
11
  const baseNavigationSchema = z.object({ global: globalSchema.optional() });
12
12
  export const navigationSchema = z
@@ -1,5 +1,7 @@
1
1
  import { z } from 'zod';
2
2
  import { TabNavigation } from './divisionNav.js';
3
+ export declare const tabAlignSchema: z.ZodEnum<["start", "end"]>;
4
+ export type TabAlign = z.infer<typeof tabAlignSchema>;
3
5
  export declare const baseTabSchema: z.ZodObject<{
4
6
  tab: z.ZodString;
5
7
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
@@ -16,6 +18,7 @@ export declare const baseTabSchema: z.ZodObject<{
16
18
  library?: "fontawesome" | "lucide" | undefined;
17
19
  }>]>>;
18
20
  hidden: z.ZodOptional<z.ZodBoolean>;
21
+ align: z.ZodOptional<z.ZodEnum<["start", "end"]>>;
19
22
  }, "strip", z.ZodTypeAny, {
20
23
  tab: string;
21
24
  icon?: string | {
@@ -24,6 +27,7 @@ export declare const baseTabSchema: z.ZodObject<{
24
27
  library?: "fontawesome" | "lucide" | undefined;
25
28
  } | undefined;
26
29
  hidden?: boolean | undefined;
30
+ align?: "start" | "end" | undefined;
27
31
  }, {
28
32
  tab: string;
29
33
  icon?: string | {
@@ -32,6 +36,7 @@ export declare const baseTabSchema: z.ZodObject<{
32
36
  library?: "fontawesome" | "lucide" | undefined;
33
37
  } | undefined;
34
38
  hidden?: boolean | undefined;
39
+ align?: "start" | "end" | undefined;
35
40
  }>;
36
41
  export type BaseTabSchema = z.infer<typeof baseTabSchema>;
37
42
  export declare const nonRecursiveTabSchema: z.ZodObject<z.objectUtil.extendShape<{
@@ -50,6 +55,7 @@ export declare const nonRecursiveTabSchema: z.ZodObject<z.objectUtil.extendShape
50
55
  library?: "fontawesome" | "lucide" | undefined;
51
56
  }>]>>;
52
57
  hidden: z.ZodOptional<z.ZodBoolean>;
58
+ align: z.ZodOptional<z.ZodEnum<["start", "end"]>>;
53
59
  }, {
54
60
  href: z.ZodEffects<z.ZodString, string, string>;
55
61
  }>, "strip", z.ZodTypeAny, {
@@ -61,6 +67,7 @@ export declare const nonRecursiveTabSchema: z.ZodObject<z.objectUtil.extendShape
61
67
  library?: "fontawesome" | "lucide" | undefined;
62
68
  } | undefined;
63
69
  hidden?: boolean | undefined;
70
+ align?: "start" | "end" | undefined;
64
71
  }, {
65
72
  href: string;
66
73
  tab: string;
@@ -70,6 +77,7 @@ export declare const nonRecursiveTabSchema: z.ZodObject<z.objectUtil.extendShape
70
77
  library?: "fontawesome" | "lucide" | undefined;
71
78
  } | undefined;
72
79
  hidden?: boolean | undefined;
80
+ align?: "start" | "end" | undefined;
73
81
  }>;
74
82
  export declare const tabSchema: z.ZodType<TabNavigation<'default'>>;
75
83
  export declare const decoratedTabSchema: z.ZodType<TabNavigation<'decorated'>>;
@@ -13,10 +13,12 @@ import { decoratedMenuSchema, menuSchema } from './menu.js';
13
13
  import { decoratedPagesSchema, pagesSchema } from './pages.js';
14
14
  import { decoratedProductsSchema, productsSchema } from './products.js';
15
15
  import { decoratedVersionsSchema, versionsSchema } from './version.js';
16
+ export const tabAlignSchema = z.enum(['start', 'end']).describe('Tab alignment in the navigation');
16
17
  export const baseTabSchema = z.object({
17
18
  tab: z.string().nonempty().describe('The name of the tab'),
18
19
  icon: iconSchema.optional(),
19
20
  hidden: hiddenSchema.optional(),
21
+ align: tabAlignSchema.optional(),
20
22
  });
21
23
  export const nonRecursiveTabSchema = baseTabSchema.extend({ href: hrefSchema });
22
24
  export const tabSchema = z.union([
@@ -1314,7 +1314,7 @@ export declare const almondConfigSchema: z.ZodObject<{
1314
1314
  };
1315
1315
  }>>;
1316
1316
  contextual: z.ZodOptional<z.ZodObject<{
1317
- options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
1317
+ options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
1318
1318
  title: z.ZodString;
1319
1319
  description: z.ZodString;
1320
1320
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
@@ -1385,7 +1385,7 @@ export declare const almondConfigSchema: z.ZodObject<{
1385
1385
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1386
1386
  library?: "fontawesome" | "lucide" | undefined;
1387
1387
  } | undefined;
1388
- }>]>, "many">, ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1388
+ }>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1389
1389
  href: string | {
1390
1390
  base: string;
1391
1391
  query?: {
@@ -1400,7 +1400,7 @@ export declare const almondConfigSchema: z.ZodObject<{
1400
1400
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1401
1401
  library?: "fontawesome" | "lucide" | undefined;
1402
1402
  } | undefined;
1403
- })[], ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1403
+ })[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1404
1404
  href: string | {
1405
1405
  base: string;
1406
1406
  query?: {
@@ -1416,8 +1416,9 @@ export declare const almondConfigSchema: z.ZodObject<{
1416
1416
  library?: "fontawesome" | "lucide" | undefined;
1417
1417
  } | undefined;
1418
1418
  })[]>;
1419
+ display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
1419
1420
  }, "strip", z.ZodTypeAny, {
1420
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1421
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1421
1422
  href: string | {
1422
1423
  base: string;
1423
1424
  query?: {
@@ -1433,8 +1434,9 @@ export declare const almondConfigSchema: z.ZodObject<{
1433
1434
  library?: "fontawesome" | "lucide" | undefined;
1434
1435
  } | undefined;
1435
1436
  })[];
1437
+ display: "header" | "toc";
1436
1438
  }, {
1437
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1439
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1438
1440
  href: string | {
1439
1441
  base: string;
1440
1442
  query?: {
@@ -1450,6 +1452,7 @@ export declare const almondConfigSchema: z.ZodObject<{
1450
1452
  library?: "fontawesome" | "lucide" | undefined;
1451
1453
  } | undefined;
1452
1454
  })[];
1455
+ display?: "header" | "toc" | undefined;
1453
1456
  }>>;
1454
1457
  thumbnails: z.ZodOptional<z.ZodObject<{
1455
1458
  appearance: z.ZodOptional<z.ZodEnum<[import("../properties/thumbnails.js").ThumbnailAppearance.Light, import("../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
@@ -1807,7 +1810,7 @@ export declare const almondConfigSchema: z.ZodObject<{
1807
1810
  };
1808
1811
  } | undefined;
1809
1812
  contextual?: {
1810
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1813
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1811
1814
  href: string | {
1812
1815
  base: string;
1813
1816
  query?: {
@@ -1823,6 +1826,7 @@ export declare const almondConfigSchema: z.ZodObject<{
1823
1826
  library?: "fontawesome" | "lucide" | undefined;
1824
1827
  } | undefined;
1825
1828
  })[];
1829
+ display: "header" | "toc";
1826
1830
  } | undefined;
1827
1831
  thumbnails?: {
1828
1832
  background?: string | undefined;
@@ -2152,7 +2156,7 @@ export declare const almondConfigSchema: z.ZodObject<{
2152
2156
  };
2153
2157
  } | undefined;
2154
2158
  contextual?: {
2155
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
2159
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
2156
2160
  href: string | {
2157
2161
  base: string;
2158
2162
  query?: {
@@ -2168,6 +2172,7 @@ export declare const almondConfigSchema: z.ZodObject<{
2168
2172
  library?: "fontawesome" | "lucide" | undefined;
2169
2173
  } | undefined;
2170
2174
  })[];
2175
+ display?: "header" | "toc" | undefined;
2171
2176
  } | undefined;
2172
2177
  thumbnails?: {
2173
2178
  background?: string | undefined;
@@ -1314,7 +1314,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
1314
1314
  };
1315
1315
  }>>;
1316
1316
  contextual: z.ZodOptional<z.ZodObject<{
1317
- options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
1317
+ options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
1318
1318
  title: z.ZodString;
1319
1319
  description: z.ZodString;
1320
1320
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
@@ -1385,7 +1385,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
1385
1385
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1386
1386
  library?: "fontawesome" | "lucide" | undefined;
1387
1387
  } | undefined;
1388
- }>]>, "many">, ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1388
+ }>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1389
1389
  href: string | {
1390
1390
  base: string;
1391
1391
  query?: {
@@ -1400,7 +1400,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
1400
1400
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1401
1401
  library?: "fontawesome" | "lucide" | undefined;
1402
1402
  } | undefined;
1403
- })[], ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1403
+ })[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1404
1404
  href: string | {
1405
1405
  base: string;
1406
1406
  query?: {
@@ -1416,8 +1416,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
1416
1416
  library?: "fontawesome" | "lucide" | undefined;
1417
1417
  } | undefined;
1418
1418
  })[]>;
1419
+ display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
1419
1420
  }, "strip", z.ZodTypeAny, {
1420
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1421
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1421
1422
  href: string | {
1422
1423
  base: string;
1423
1424
  query?: {
@@ -1433,8 +1434,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
1433
1434
  library?: "fontawesome" | "lucide" | undefined;
1434
1435
  } | undefined;
1435
1436
  })[];
1437
+ display: "header" | "toc";
1436
1438
  }, {
1437
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1439
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1438
1440
  href: string | {
1439
1441
  base: string;
1440
1442
  query?: {
@@ -1450,6 +1452,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
1450
1452
  library?: "fontawesome" | "lucide" | undefined;
1451
1453
  } | undefined;
1452
1454
  })[];
1455
+ display?: "header" | "toc" | undefined;
1453
1456
  }>>;
1454
1457
  thumbnails: z.ZodOptional<z.ZodObject<{
1455
1458
  appearance: z.ZodOptional<z.ZodEnum<[import("../properties/thumbnails.js").ThumbnailAppearance.Light, import("../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
@@ -1807,7 +1810,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
1807
1810
  };
1808
1811
  } | undefined;
1809
1812
  contextual?: {
1810
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1813
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1811
1814
  href: string | {
1812
1815
  base: string;
1813
1816
  query?: {
@@ -1823,6 +1826,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
1823
1826
  library?: "fontawesome" | "lucide" | undefined;
1824
1827
  } | undefined;
1825
1828
  })[];
1829
+ display: "header" | "toc";
1826
1830
  } | undefined;
1827
1831
  thumbnails?: {
1828
1832
  background?: string | undefined;
@@ -2152,7 +2156,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
2152
2156
  };
2153
2157
  } | undefined;
2154
2158
  contextual?: {
2155
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
2159
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
2156
2160
  href: string | {
2157
2161
  base: string;
2158
2162
  query?: {
@@ -2168,6 +2172,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
2168
2172
  library?: "fontawesome" | "lucide" | undefined;
2169
2173
  } | undefined;
2170
2174
  })[];
2175
+ display?: "header" | "toc" | undefined;
2171
2176
  } | undefined;
2172
2177
  thumbnails?: {
2173
2178
  background?: string | undefined;
@@ -1314,7 +1314,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
1314
1314
  };
1315
1315
  }>>;
1316
1316
  contextual: z.ZodOptional<z.ZodObject<{
1317
- options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
1317
+ options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
1318
1318
  title: z.ZodString;
1319
1319
  description: z.ZodString;
1320
1320
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
@@ -1385,7 +1385,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
1385
1385
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1386
1386
  library?: "fontawesome" | "lucide" | undefined;
1387
1387
  } | undefined;
1388
- }>]>, "many">, ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1388
+ }>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1389
1389
  href: string | {
1390
1390
  base: string;
1391
1391
  query?: {
@@ -1400,7 +1400,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
1400
1400
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1401
1401
  library?: "fontawesome" | "lucide" | undefined;
1402
1402
  } | undefined;
1403
- })[], ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1403
+ })[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1404
1404
  href: string | {
1405
1405
  base: string;
1406
1406
  query?: {
@@ -1416,8 +1416,9 @@ export declare const lindenConfigSchema: z.ZodObject<{
1416
1416
  library?: "fontawesome" | "lucide" | undefined;
1417
1417
  } | undefined;
1418
1418
  })[]>;
1419
+ display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
1419
1420
  }, "strip", z.ZodTypeAny, {
1420
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1421
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1421
1422
  href: string | {
1422
1423
  base: string;
1423
1424
  query?: {
@@ -1433,8 +1434,9 @@ export declare const lindenConfigSchema: z.ZodObject<{
1433
1434
  library?: "fontawesome" | "lucide" | undefined;
1434
1435
  } | undefined;
1435
1436
  })[];
1437
+ display: "header" | "toc";
1436
1438
  }, {
1437
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1439
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1438
1440
  href: string | {
1439
1441
  base: string;
1440
1442
  query?: {
@@ -1450,6 +1452,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
1450
1452
  library?: "fontawesome" | "lucide" | undefined;
1451
1453
  } | undefined;
1452
1454
  })[];
1455
+ display?: "header" | "toc" | undefined;
1453
1456
  }>>;
1454
1457
  thumbnails: z.ZodOptional<z.ZodObject<{
1455
1458
  appearance: z.ZodOptional<z.ZodEnum<[import("../properties/thumbnails.js").ThumbnailAppearance.Light, import("../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
@@ -1807,7 +1810,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
1807
1810
  };
1808
1811
  } | undefined;
1809
1812
  contextual?: {
1810
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1813
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1811
1814
  href: string | {
1812
1815
  base: string;
1813
1816
  query?: {
@@ -1823,6 +1826,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
1823
1826
  library?: "fontawesome" | "lucide" | undefined;
1824
1827
  } | undefined;
1825
1828
  })[];
1829
+ display: "header" | "toc";
1826
1830
  } | undefined;
1827
1831
  thumbnails?: {
1828
1832
  background?: string | undefined;
@@ -2152,7 +2156,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
2152
2156
  };
2153
2157
  } | undefined;
2154
2158
  contextual?: {
2155
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
2159
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
2156
2160
  href: string | {
2157
2161
  base: string;
2158
2162
  query?: {
@@ -2168,6 +2172,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
2168
2172
  library?: "fontawesome" | "lucide" | undefined;
2169
2173
  } | undefined;
2170
2174
  })[];
2175
+ display?: "header" | "toc" | undefined;
2171
2176
  } | undefined;
2172
2177
  thumbnails?: {
2173
2178
  background?: string | undefined;
@@ -1314,7 +1314,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
1314
1314
  };
1315
1315
  }>>;
1316
1316
  contextual: z.ZodOptional<z.ZodObject<{
1317
- options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
1317
+ options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
1318
1318
  title: z.ZodString;
1319
1319
  description: z.ZodString;
1320
1320
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
@@ -1385,7 +1385,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
1385
1385
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1386
1386
  library?: "fontawesome" | "lucide" | undefined;
1387
1387
  } | undefined;
1388
- }>]>, "many">, ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1388
+ }>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1389
1389
  href: string | {
1390
1390
  base: string;
1391
1391
  query?: {
@@ -1400,7 +1400,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
1400
1400
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1401
1401
  library?: "fontawesome" | "lucide" | undefined;
1402
1402
  } | undefined;
1403
- })[], ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1403
+ })[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1404
1404
  href: string | {
1405
1405
  base: string;
1406
1406
  query?: {
@@ -1416,8 +1416,9 @@ export declare const mapleConfigSchema: z.ZodObject<{
1416
1416
  library?: "fontawesome" | "lucide" | undefined;
1417
1417
  } | undefined;
1418
1418
  })[]>;
1419
+ display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
1419
1420
  }, "strip", z.ZodTypeAny, {
1420
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1421
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1421
1422
  href: string | {
1422
1423
  base: string;
1423
1424
  query?: {
@@ -1433,8 +1434,9 @@ export declare const mapleConfigSchema: z.ZodObject<{
1433
1434
  library?: "fontawesome" | "lucide" | undefined;
1434
1435
  } | undefined;
1435
1436
  })[];
1437
+ display: "header" | "toc";
1436
1438
  }, {
1437
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1439
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1438
1440
  href: string | {
1439
1441
  base: string;
1440
1442
  query?: {
@@ -1450,6 +1452,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
1450
1452
  library?: "fontawesome" | "lucide" | undefined;
1451
1453
  } | undefined;
1452
1454
  })[];
1455
+ display?: "header" | "toc" | undefined;
1453
1456
  }>>;
1454
1457
  thumbnails: z.ZodOptional<z.ZodObject<{
1455
1458
  appearance: z.ZodOptional<z.ZodEnum<[import("../properties/thumbnails.js").ThumbnailAppearance.Light, import("../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
@@ -1807,7 +1810,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
1807
1810
  };
1808
1811
  } | undefined;
1809
1812
  contextual?: {
1810
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1813
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1811
1814
  href: string | {
1812
1815
  base: string;
1813
1816
  query?: {
@@ -1823,6 +1826,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
1823
1826
  library?: "fontawesome" | "lucide" | undefined;
1824
1827
  } | undefined;
1825
1828
  })[];
1829
+ display: "header" | "toc";
1826
1830
  } | undefined;
1827
1831
  thumbnails?: {
1828
1832
  background?: string | undefined;
@@ -2152,7 +2156,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
2152
2156
  };
2153
2157
  } | undefined;
2154
2158
  contextual?: {
2155
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
2159
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
2156
2160
  href: string | {
2157
2161
  base: string;
2158
2162
  query?: {
@@ -2168,6 +2172,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
2168
2172
  library?: "fontawesome" | "lucide" | undefined;
2169
2173
  } | undefined;
2170
2174
  })[];
2175
+ display?: "header" | "toc" | undefined;
2171
2176
  } | undefined;
2172
2177
  thumbnails?: {
2173
2178
  background?: string | undefined;