@mintlify/validation 0.1.571 → 0.1.573

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.
@@ -28,13 +28,13 @@ export declare const apiSchema: z.ZodObject<{
28
28
  expanded?: "all" | "closed" | undefined;
29
29
  }>>;
30
30
  playground: z.ZodOptional<z.ZodObject<{
31
- display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
31
+ display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
32
32
  proxy: z.ZodOptional<z.ZodBoolean>;
33
33
  }, "strip", z.ZodTypeAny, {
34
- display?: "simple" | "none" | "interactive" | undefined;
34
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
35
35
  proxy?: boolean | undefined;
36
36
  }, {
37
- display?: "simple" | "none" | "interactive" | undefined;
37
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
38
38
  proxy?: boolean | undefined;
39
39
  }>>;
40
40
  examples: z.ZodOptional<z.ZodObject<{
@@ -87,7 +87,7 @@ export declare const apiSchema: z.ZodObject<{
87
87
  directory?: string | undefined;
88
88
  } | undefined;
89
89
  playground?: {
90
- display?: "simple" | "none" | "interactive" | undefined;
90
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
91
91
  proxy?: boolean | undefined;
92
92
  } | undefined;
93
93
  asyncapi?: string | string[] | {
@@ -116,7 +116,7 @@ export declare const apiSchema: z.ZodObject<{
116
116
  directory?: string | undefined;
117
117
  } | undefined;
118
118
  playground?: {
119
- display?: "simple" | "none" | "interactive" | undefined;
119
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
120
120
  proxy?: boolean | undefined;
121
121
  } | undefined;
122
122
  asyncapi?: string | string[] | {
@@ -17,9 +17,9 @@ export const apiSchema = z
17
17
  playground: z
18
18
  .object({
19
19
  display: z
20
- .enum(['interactive', 'simple', 'none'])
20
+ .enum(['interactive', 'simple', 'none', 'auth'])
21
21
  .optional()
22
- .describe('The display mode of the API playground. Defaults to `interactive`.'),
22
+ .describe('The display mode of the API playground. Defaults to `interactive`. Use `auth` to show the playground only to authenticated users.'),
23
23
  proxy: z
24
24
  .boolean()
25
25
  .optional()
@@ -1,5 +1,5 @@
1
1
  import { z } from 'zod';
2
- export declare const contextualOptions: readonly ["copy", "view", "chatgpt", "claude", "perplexity", "mcp", "cursor", "vscode"];
2
+ export declare const contextualOptions: readonly ["copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"];
3
3
  export type ContextualOption = (typeof contextualOptions)[number];
4
4
  export declare const contextualHrefPresetValues: readonly ["$page", "$path", "$mcp"];
5
5
  export type ContextualHrefPresetValue = (typeof contextualHrefPresetValues)[number];
@@ -101,7 +101,7 @@ export declare const customContextualOption: z.ZodObject<{
101
101
  } | undefined;
102
102
  }>;
103
103
  export declare const contextualSchema: z.ZodObject<{
104
- options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["copy", "view", "chatgpt", "claude", "perplexity", "mcp", "cursor", "vscode"]>, z.ZodObject<{
104
+ options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
105
105
  title: z.ZodString;
106
106
  description: z.ZodString;
107
107
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
@@ -172,7 +172,7 @@ export declare const contextualSchema: z.ZodObject<{
172
172
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
173
173
  library?: "fontawesome" | "lucide" | undefined;
174
174
  } | undefined;
175
- }>]>, "many">, ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
175
+ }>]>, "many">, ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
176
176
  href: string | {
177
177
  base: string;
178
178
  query?: {
@@ -187,7 +187,7 @@ export declare const contextualSchema: z.ZodObject<{
187
187
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
188
188
  library?: "fontawesome" | "lucide" | undefined;
189
189
  } | undefined;
190
- })[], ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
190
+ })[], ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
191
191
  href: string | {
192
192
  base: string;
193
193
  query?: {
@@ -204,7 +204,7 @@ export declare const contextualSchema: z.ZodObject<{
204
204
  } | undefined;
205
205
  })[]>;
206
206
  }, "strip", z.ZodTypeAny, {
207
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
207
+ options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
208
208
  href: string | {
209
209
  base: string;
210
210
  query?: {
@@ -221,7 +221,7 @@ export declare const contextualSchema: z.ZodObject<{
221
221
  } | undefined;
222
222
  })[];
223
223
  }, {
224
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
224
+ options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
225
225
  href: string | {
226
226
  base: string;
227
227
  query?: {
@@ -6,6 +6,7 @@ export const contextualOptions = [
6
6
  'chatgpt',
7
7
  'claude',
8
8
  'perplexity',
9
+ 'grok',
9
10
  'mcp',
10
11
  'cursor',
11
12
  'vscode',
@@ -69,13 +69,13 @@ export declare const almondConfigSchema: z.ZodObject<{
69
69
  expanded?: "all" | "closed" | undefined;
70
70
  }>>;
71
71
  playground: z.ZodOptional<z.ZodObject<{
72
- display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
72
+ display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
73
73
  proxy: z.ZodOptional<z.ZodBoolean>;
74
74
  }, "strip", z.ZodTypeAny, {
75
- display?: "simple" | "none" | "interactive" | undefined;
75
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
76
76
  proxy?: boolean | undefined;
77
77
  }, {
78
- display?: "simple" | "none" | "interactive" | undefined;
78
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
79
79
  proxy?: boolean | undefined;
80
80
  }>>;
81
81
  examples: z.ZodOptional<z.ZodObject<{
@@ -128,7 +128,7 @@ export declare const almondConfigSchema: z.ZodObject<{
128
128
  directory?: string | undefined;
129
129
  } | undefined;
130
130
  playground?: {
131
- display?: "simple" | "none" | "interactive" | undefined;
131
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
132
132
  proxy?: boolean | undefined;
133
133
  } | undefined;
134
134
  asyncapi?: string | string[] | {
@@ -157,7 +157,7 @@ export declare const almondConfigSchema: z.ZodObject<{
157
157
  directory?: string | undefined;
158
158
  } | undefined;
159
159
  playground?: {
160
- display?: "simple" | "none" | "interactive" | undefined;
160
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
161
161
  proxy?: boolean | undefined;
162
162
  } | undefined;
163
163
  asyncapi?: string | string[] | {
@@ -1278,7 +1278,7 @@ export declare const almondConfigSchema: z.ZodObject<{
1278
1278
  };
1279
1279
  }>>;
1280
1280
  contextual: z.ZodOptional<z.ZodObject<{
1281
- options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["copy", "view", "chatgpt", "claude", "perplexity", "mcp", "cursor", "vscode"]>, z.ZodObject<{
1281
+ options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
1282
1282
  title: z.ZodString;
1283
1283
  description: z.ZodString;
1284
1284
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
@@ -1349,7 +1349,7 @@ export declare const almondConfigSchema: z.ZodObject<{
1349
1349
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1350
1350
  library?: "fontawesome" | "lucide" | undefined;
1351
1351
  } | undefined;
1352
- }>]>, "many">, ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1352
+ }>]>, "many">, ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1353
1353
  href: string | {
1354
1354
  base: string;
1355
1355
  query?: {
@@ -1364,7 +1364,7 @@ export declare const almondConfigSchema: z.ZodObject<{
1364
1364
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1365
1365
  library?: "fontawesome" | "lucide" | undefined;
1366
1366
  } | undefined;
1367
- })[], ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1367
+ })[], ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1368
1368
  href: string | {
1369
1369
  base: string;
1370
1370
  query?: {
@@ -1381,7 +1381,7 @@ export declare const almondConfigSchema: z.ZodObject<{
1381
1381
  } | undefined;
1382
1382
  })[]>;
1383
1383
  }, "strip", z.ZodTypeAny, {
1384
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1384
+ options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1385
1385
  href: string | {
1386
1386
  base: string;
1387
1387
  query?: {
@@ -1398,7 +1398,7 @@ export declare const almondConfigSchema: z.ZodObject<{
1398
1398
  } | undefined;
1399
1399
  })[];
1400
1400
  }, {
1401
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1401
+ options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1402
1402
  href: string | {
1403
1403
  base: string;
1404
1404
  query?: {
@@ -1564,7 +1564,7 @@ export declare const almondConfigSchema: z.ZodObject<{
1564
1564
  directory?: string | undefined;
1565
1565
  } | undefined;
1566
1566
  playground?: {
1567
- display?: "simple" | "none" | "interactive" | undefined;
1567
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
1568
1568
  proxy?: boolean | undefined;
1569
1569
  } | undefined;
1570
1570
  asyncapi?: string | string[] | {
@@ -1751,7 +1751,7 @@ export declare const almondConfigSchema: z.ZodObject<{
1751
1751
  };
1752
1752
  } | undefined;
1753
1753
  contextual?: {
1754
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1754
+ options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1755
1755
  href: string | {
1756
1756
  base: string;
1757
1757
  query?: {
@@ -1889,7 +1889,7 @@ export declare const almondConfigSchema: z.ZodObject<{
1889
1889
  directory?: string | undefined;
1890
1890
  } | undefined;
1891
1891
  playground?: {
1892
- display?: "simple" | "none" | "interactive" | undefined;
1892
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
1893
1893
  proxy?: boolean | undefined;
1894
1894
  } | undefined;
1895
1895
  asyncapi?: string | string[] | {
@@ -2076,7 +2076,7 @@ export declare const almondConfigSchema: z.ZodObject<{
2076
2076
  };
2077
2077
  } | undefined;
2078
2078
  contextual?: {
2079
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
2079
+ options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
2080
2080
  href: string | {
2081
2081
  base: string;
2082
2082
  query?: {
@@ -69,13 +69,13 @@ export declare const aspenConfigSchema: z.ZodObject<{
69
69
  expanded?: "all" | "closed" | undefined;
70
70
  }>>;
71
71
  playground: z.ZodOptional<z.ZodObject<{
72
- display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
72
+ display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
73
73
  proxy: z.ZodOptional<z.ZodBoolean>;
74
74
  }, "strip", z.ZodTypeAny, {
75
- display?: "simple" | "none" | "interactive" | undefined;
75
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
76
76
  proxy?: boolean | undefined;
77
77
  }, {
78
- display?: "simple" | "none" | "interactive" | undefined;
78
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
79
79
  proxy?: boolean | undefined;
80
80
  }>>;
81
81
  examples: z.ZodOptional<z.ZodObject<{
@@ -128,7 +128,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
128
128
  directory?: string | undefined;
129
129
  } | undefined;
130
130
  playground?: {
131
- display?: "simple" | "none" | "interactive" | undefined;
131
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
132
132
  proxy?: boolean | undefined;
133
133
  } | undefined;
134
134
  asyncapi?: string | string[] | {
@@ -157,7 +157,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
157
157
  directory?: string | undefined;
158
158
  } | undefined;
159
159
  playground?: {
160
- display?: "simple" | "none" | "interactive" | undefined;
160
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
161
161
  proxy?: boolean | undefined;
162
162
  } | undefined;
163
163
  asyncapi?: string | string[] | {
@@ -1278,7 +1278,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
1278
1278
  };
1279
1279
  }>>;
1280
1280
  contextual: z.ZodOptional<z.ZodObject<{
1281
- options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["copy", "view", "chatgpt", "claude", "perplexity", "mcp", "cursor", "vscode"]>, z.ZodObject<{
1281
+ options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
1282
1282
  title: z.ZodString;
1283
1283
  description: z.ZodString;
1284
1284
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
@@ -1349,7 +1349,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
1349
1349
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1350
1350
  library?: "fontawesome" | "lucide" | undefined;
1351
1351
  } | undefined;
1352
- }>]>, "many">, ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1352
+ }>]>, "many">, ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1353
1353
  href: string | {
1354
1354
  base: string;
1355
1355
  query?: {
@@ -1364,7 +1364,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
1364
1364
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1365
1365
  library?: "fontawesome" | "lucide" | undefined;
1366
1366
  } | undefined;
1367
- })[], ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1367
+ })[], ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1368
1368
  href: string | {
1369
1369
  base: string;
1370
1370
  query?: {
@@ -1381,7 +1381,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
1381
1381
  } | undefined;
1382
1382
  })[]>;
1383
1383
  }, "strip", z.ZodTypeAny, {
1384
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1384
+ options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1385
1385
  href: string | {
1386
1386
  base: string;
1387
1387
  query?: {
@@ -1398,7 +1398,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
1398
1398
  } | undefined;
1399
1399
  })[];
1400
1400
  }, {
1401
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1401
+ options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1402
1402
  href: string | {
1403
1403
  base: string;
1404
1404
  query?: {
@@ -1564,7 +1564,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
1564
1564
  directory?: string | undefined;
1565
1565
  } | undefined;
1566
1566
  playground?: {
1567
- display?: "simple" | "none" | "interactive" | undefined;
1567
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
1568
1568
  proxy?: boolean | undefined;
1569
1569
  } | undefined;
1570
1570
  asyncapi?: string | string[] | {
@@ -1751,7 +1751,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
1751
1751
  };
1752
1752
  } | undefined;
1753
1753
  contextual?: {
1754
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1754
+ options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1755
1755
  href: string | {
1756
1756
  base: string;
1757
1757
  query?: {
@@ -1889,7 +1889,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
1889
1889
  directory?: string | undefined;
1890
1890
  } | undefined;
1891
1891
  playground?: {
1892
- display?: "simple" | "none" | "interactive" | undefined;
1892
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
1893
1893
  proxy?: boolean | undefined;
1894
1894
  } | undefined;
1895
1895
  asyncapi?: string | string[] | {
@@ -2076,7 +2076,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
2076
2076
  };
2077
2077
  } | undefined;
2078
2078
  contextual?: {
2079
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
2079
+ options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
2080
2080
  href: string | {
2081
2081
  base: string;
2082
2082
  query?: {
@@ -69,13 +69,13 @@ export declare const lindenConfigSchema: z.ZodObject<{
69
69
  expanded?: "all" | "closed" | undefined;
70
70
  }>>;
71
71
  playground: z.ZodOptional<z.ZodObject<{
72
- display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
72
+ display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
73
73
  proxy: z.ZodOptional<z.ZodBoolean>;
74
74
  }, "strip", z.ZodTypeAny, {
75
- display?: "simple" | "none" | "interactive" | undefined;
75
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
76
76
  proxy?: boolean | undefined;
77
77
  }, {
78
- display?: "simple" | "none" | "interactive" | undefined;
78
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
79
79
  proxy?: boolean | undefined;
80
80
  }>>;
81
81
  examples: z.ZodOptional<z.ZodObject<{
@@ -128,7 +128,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
128
128
  directory?: string | undefined;
129
129
  } | undefined;
130
130
  playground?: {
131
- display?: "simple" | "none" | "interactive" | undefined;
131
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
132
132
  proxy?: boolean | undefined;
133
133
  } | undefined;
134
134
  asyncapi?: string | string[] | {
@@ -157,7 +157,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
157
157
  directory?: string | undefined;
158
158
  } | undefined;
159
159
  playground?: {
160
- display?: "simple" | "none" | "interactive" | undefined;
160
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
161
161
  proxy?: boolean | undefined;
162
162
  } | undefined;
163
163
  asyncapi?: string | string[] | {
@@ -1278,7 +1278,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
1278
1278
  };
1279
1279
  }>>;
1280
1280
  contextual: z.ZodOptional<z.ZodObject<{
1281
- options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["copy", "view", "chatgpt", "claude", "perplexity", "mcp", "cursor", "vscode"]>, z.ZodObject<{
1281
+ options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
1282
1282
  title: z.ZodString;
1283
1283
  description: z.ZodString;
1284
1284
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
@@ -1349,7 +1349,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
1349
1349
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1350
1350
  library?: "fontawesome" | "lucide" | undefined;
1351
1351
  } | undefined;
1352
- }>]>, "many">, ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1352
+ }>]>, "many">, ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1353
1353
  href: string | {
1354
1354
  base: string;
1355
1355
  query?: {
@@ -1364,7 +1364,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
1364
1364
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1365
1365
  library?: "fontawesome" | "lucide" | undefined;
1366
1366
  } | undefined;
1367
- })[], ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1367
+ })[], ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1368
1368
  href: string | {
1369
1369
  base: string;
1370
1370
  query?: {
@@ -1381,7 +1381,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
1381
1381
  } | undefined;
1382
1382
  })[]>;
1383
1383
  }, "strip", z.ZodTypeAny, {
1384
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1384
+ options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1385
1385
  href: string | {
1386
1386
  base: string;
1387
1387
  query?: {
@@ -1398,7 +1398,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
1398
1398
  } | undefined;
1399
1399
  })[];
1400
1400
  }, {
1401
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1401
+ options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1402
1402
  href: string | {
1403
1403
  base: string;
1404
1404
  query?: {
@@ -1564,7 +1564,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
1564
1564
  directory?: string | undefined;
1565
1565
  } | undefined;
1566
1566
  playground?: {
1567
- display?: "simple" | "none" | "interactive" | undefined;
1567
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
1568
1568
  proxy?: boolean | undefined;
1569
1569
  } | undefined;
1570
1570
  asyncapi?: string | string[] | {
@@ -1751,7 +1751,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
1751
1751
  };
1752
1752
  } | undefined;
1753
1753
  contextual?: {
1754
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1754
+ options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1755
1755
  href: string | {
1756
1756
  base: string;
1757
1757
  query?: {
@@ -1889,7 +1889,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
1889
1889
  directory?: string | undefined;
1890
1890
  } | undefined;
1891
1891
  playground?: {
1892
- display?: "simple" | "none" | "interactive" | undefined;
1892
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
1893
1893
  proxy?: boolean | undefined;
1894
1894
  } | undefined;
1895
1895
  asyncapi?: string | string[] | {
@@ -2076,7 +2076,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
2076
2076
  };
2077
2077
  } | undefined;
2078
2078
  contextual?: {
2079
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
2079
+ options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
2080
2080
  href: string | {
2081
2081
  base: string;
2082
2082
  query?: {
@@ -69,13 +69,13 @@ export declare const mapleConfigSchema: z.ZodObject<{
69
69
  expanded?: "all" | "closed" | undefined;
70
70
  }>>;
71
71
  playground: z.ZodOptional<z.ZodObject<{
72
- display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
72
+ display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
73
73
  proxy: z.ZodOptional<z.ZodBoolean>;
74
74
  }, "strip", z.ZodTypeAny, {
75
- display?: "simple" | "none" | "interactive" | undefined;
75
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
76
76
  proxy?: boolean | undefined;
77
77
  }, {
78
- display?: "simple" | "none" | "interactive" | undefined;
78
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
79
79
  proxy?: boolean | undefined;
80
80
  }>>;
81
81
  examples: z.ZodOptional<z.ZodObject<{
@@ -128,7 +128,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
128
128
  directory?: string | undefined;
129
129
  } | undefined;
130
130
  playground?: {
131
- display?: "simple" | "none" | "interactive" | undefined;
131
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
132
132
  proxy?: boolean | undefined;
133
133
  } | undefined;
134
134
  asyncapi?: string | string[] | {
@@ -157,7 +157,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
157
157
  directory?: string | undefined;
158
158
  } | undefined;
159
159
  playground?: {
160
- display?: "simple" | "none" | "interactive" | undefined;
160
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
161
161
  proxy?: boolean | undefined;
162
162
  } | undefined;
163
163
  asyncapi?: string | string[] | {
@@ -1278,7 +1278,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
1278
1278
  };
1279
1279
  }>>;
1280
1280
  contextual: z.ZodOptional<z.ZodObject<{
1281
- options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["copy", "view", "chatgpt", "claude", "perplexity", "mcp", "cursor", "vscode"]>, z.ZodObject<{
1281
+ options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
1282
1282
  title: z.ZodString;
1283
1283
  description: z.ZodString;
1284
1284
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
@@ -1349,7 +1349,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
1349
1349
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1350
1350
  library?: "fontawesome" | "lucide" | undefined;
1351
1351
  } | undefined;
1352
- }>]>, "many">, ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1352
+ }>]>, "many">, ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1353
1353
  href: string | {
1354
1354
  base: string;
1355
1355
  query?: {
@@ -1364,7 +1364,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
1364
1364
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1365
1365
  library?: "fontawesome" | "lucide" | undefined;
1366
1366
  } | undefined;
1367
- })[], ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1367
+ })[], ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1368
1368
  href: string | {
1369
1369
  base: string;
1370
1370
  query?: {
@@ -1381,7 +1381,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
1381
1381
  } | undefined;
1382
1382
  })[]>;
1383
1383
  }, "strip", z.ZodTypeAny, {
1384
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1384
+ options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1385
1385
  href: string | {
1386
1386
  base: string;
1387
1387
  query?: {
@@ -1398,7 +1398,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
1398
1398
  } | undefined;
1399
1399
  })[];
1400
1400
  }, {
1401
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1401
+ options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1402
1402
  href: string | {
1403
1403
  base: string;
1404
1404
  query?: {
@@ -1564,7 +1564,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
1564
1564
  directory?: string | undefined;
1565
1565
  } | undefined;
1566
1566
  playground?: {
1567
- display?: "simple" | "none" | "interactive" | undefined;
1567
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
1568
1568
  proxy?: boolean | undefined;
1569
1569
  } | undefined;
1570
1570
  asyncapi?: string | string[] | {
@@ -1751,7 +1751,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
1751
1751
  };
1752
1752
  } | undefined;
1753
1753
  contextual?: {
1754
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
1754
+ options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1755
1755
  href: string | {
1756
1756
  base: string;
1757
1757
  query?: {
@@ -1889,7 +1889,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
1889
1889
  directory?: string | undefined;
1890
1890
  } | undefined;
1891
1891
  playground?: {
1892
- display?: "simple" | "none" | "interactive" | undefined;
1892
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
1893
1893
  proxy?: boolean | undefined;
1894
1894
  } | undefined;
1895
1895
  asyncapi?: string | string[] | {
@@ -2076,7 +2076,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
2076
2076
  };
2077
2077
  } | undefined;
2078
2078
  contextual?: {
2079
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
2079
+ options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
2080
2080
  href: string | {
2081
2081
  base: string;
2082
2082
  query?: {