@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.
- package/dist/mint-config/schemas/v2/index.d.ts +112 -112
- package/dist/mint-config/schemas/v2/properties/api.d.ts +5 -5
- package/dist/mint-config/schemas/v2/properties/api.js +2 -2
- package/dist/mint-config/schemas/v2/properties/contextual.d.ts +6 -6
- package/dist/mint-config/schemas/v2/properties/contextual.js +1 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +14 -14
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +14 -14
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +14 -14
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +14 -14
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +14 -14
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +14 -14
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +10 -10
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +14 -14
- package/dist/mint-config/validateConfig.d.ts +28 -28
- package/dist/openapi/types/endpoint.d.ts +1 -1
- package/dist/openapi/types/endpoint.js +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -69,13 +69,13 @@ export declare const mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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?: {
|
|
@@ -68,13 +68,13 @@ export declare const standardConfigSchema: {
|
|
|
68
68
|
expanded?: "all" | "closed" | undefined;
|
|
69
69
|
}>>;
|
|
70
70
|
playground: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
71
|
-
display: import("zod").ZodOptional<import("zod").ZodEnum<["interactive", "simple", "none"]>>;
|
|
71
|
+
display: import("zod").ZodOptional<import("zod").ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
72
72
|
proxy: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
73
73
|
}, "strip", import("zod").ZodTypeAny, {
|
|
74
|
-
display?: "simple" | "none" | "interactive" | undefined;
|
|
74
|
+
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
75
75
|
proxy?: boolean | undefined;
|
|
76
76
|
}, {
|
|
77
|
-
display?: "simple" | "none" | "interactive" | undefined;
|
|
77
|
+
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
78
78
|
proxy?: boolean | undefined;
|
|
79
79
|
}>>;
|
|
80
80
|
examples: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
@@ -127,7 +127,7 @@ export declare const standardConfigSchema: {
|
|
|
127
127
|
directory?: string | undefined;
|
|
128
128
|
} | undefined;
|
|
129
129
|
playground?: {
|
|
130
|
-
display?: "simple" | "none" | "interactive" | undefined;
|
|
130
|
+
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
131
131
|
proxy?: boolean | undefined;
|
|
132
132
|
} | undefined;
|
|
133
133
|
asyncapi?: string | string[] | {
|
|
@@ -156,7 +156,7 @@ export declare const standardConfigSchema: {
|
|
|
156
156
|
directory?: string | undefined;
|
|
157
157
|
} | undefined;
|
|
158
158
|
playground?: {
|
|
159
|
-
display?: "simple" | "none" | "interactive" | undefined;
|
|
159
|
+
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
160
160
|
proxy?: boolean | undefined;
|
|
161
161
|
} | undefined;
|
|
162
162
|
asyncapi?: string | string[] | {
|
|
@@ -1277,7 +1277,7 @@ export declare const standardConfigSchema: {
|
|
|
1277
1277
|
};
|
|
1278
1278
|
}>>;
|
|
1279
1279
|
contextual: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1280
|
-
options: import("zod").ZodEffects<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodEnum<["copy", "view", "chatgpt", "claude", "perplexity", "mcp", "cursor", "vscode"]>, import("zod").ZodObject<{
|
|
1280
|
+
options: import("zod").ZodEffects<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodEnum<["copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, import("zod").ZodObject<{
|
|
1281
1281
|
title: import("zod").ZodString;
|
|
1282
1282
|
description: import("zod").ZodString;
|
|
1283
1283
|
icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
|
|
@@ -1348,7 +1348,7 @@ export declare const standardConfigSchema: {
|
|
|
1348
1348
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1349
1349
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1350
1350
|
} | undefined;
|
|
1351
|
-
}>]>, "many">, ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
|
|
1351
|
+
}>]>, "many">, ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1352
1352
|
href: string | {
|
|
1353
1353
|
base: string;
|
|
1354
1354
|
query?: {
|
|
@@ -1363,7 +1363,7 @@ export declare const standardConfigSchema: {
|
|
|
1363
1363
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1364
1364
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1365
1365
|
} | undefined;
|
|
1366
|
-
})[], ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
|
|
1366
|
+
})[], ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1367
1367
|
href: string | {
|
|
1368
1368
|
base: string;
|
|
1369
1369
|
query?: {
|
|
@@ -1380,7 +1380,7 @@ export declare const standardConfigSchema: {
|
|
|
1380
1380
|
} | undefined;
|
|
1381
1381
|
})[]>;
|
|
1382
1382
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1383
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
|
|
1383
|
+
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1384
1384
|
href: string | {
|
|
1385
1385
|
base: string;
|
|
1386
1386
|
query?: {
|
|
@@ -1397,7 +1397,7 @@ export declare const standardConfigSchema: {
|
|
|
1397
1397
|
} | undefined;
|
|
1398
1398
|
})[];
|
|
1399
1399
|
}, {
|
|
1400
|
-
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
|
|
1400
|
+
options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1401
1401
|
href: string | {
|
|
1402
1402
|
base: string;
|
|
1403
1403
|
query?: {
|
|
@@ -69,13 +69,13 @@ export declare const willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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?: {
|