@mintlify/validation 0.1.676 → 0.1.678
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/v1/apiReference.d.ts +5 -0
- package/dist/mint-config/schemas/v1/apiReference.js +1 -0
- package/dist/mint-config/schemas/v1/config.d.ts +7 -0
- package/dist/mint-config/schemas/v2/index.d.ts +380 -0
- package/dist/mint-config/schemas/v2/properties/api.d.ts +5 -0
- package/dist/mint-config/schemas/v2/properties/api.js +4 -0
- package/dist/mint-config/schemas/v2/properties/banner.d.ts +21 -0
- package/dist/mint-config/schemas/v2/properties/banner.js +8 -0
- package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +62 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +38 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +38 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +38 -0
- package/dist/mint-config/schemas/v2/themes/luma.d.ts +38 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +38 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +38 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +38 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +26 -0
- package/dist/mint-config/schemas/v2/themes/sequoia.d.ts +38 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +38 -0
- package/dist/mint-config/validateConfig.d.ts +110 -0
- package/dist/openapi/types/endpoint.d.ts +4 -0
- package/dist/openapi/types/endpoint.js +2 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/deployment/index.d.ts +5 -0
- package/package.json +3 -3
|
@@ -22,10 +22,13 @@ export declare const apiSchema: z.ZodObject<{
|
|
|
22
22
|
}>]>>;
|
|
23
23
|
params: z.ZodOptional<z.ZodObject<{
|
|
24
24
|
expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
|
|
25
|
+
post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
25
26
|
}, "strip", z.ZodTypeAny, {
|
|
26
27
|
expanded?: "all" | "closed" | undefined;
|
|
28
|
+
post?: string[] | undefined;
|
|
27
29
|
}, {
|
|
28
30
|
expanded?: "all" | "closed" | undefined;
|
|
31
|
+
post?: string[] | undefined;
|
|
29
32
|
}>>;
|
|
30
33
|
playground: z.ZodOptional<z.ZodObject<{
|
|
31
34
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -85,6 +88,7 @@ export declare const apiSchema: z.ZodObject<{
|
|
|
85
88
|
}, "strip", z.ZodTypeAny, {
|
|
86
89
|
params?: {
|
|
87
90
|
expanded?: "all" | "closed" | undefined;
|
|
91
|
+
post?: string[] | undefined;
|
|
88
92
|
} | undefined;
|
|
89
93
|
url?: "full" | undefined;
|
|
90
94
|
openapi?: string | string[] | {
|
|
@@ -116,6 +120,7 @@ export declare const apiSchema: z.ZodObject<{
|
|
|
116
120
|
}, {
|
|
117
121
|
params?: {
|
|
118
122
|
expanded?: "all" | "closed" | undefined;
|
|
123
|
+
post?: string[] | undefined;
|
|
119
124
|
} | undefined;
|
|
120
125
|
url?: "full" | undefined;
|
|
121
126
|
openapi?: string | string[] | {
|
|
@@ -11,6 +11,10 @@ export const apiSchema = z
|
|
|
11
11
|
.enum(['all', 'closed'])
|
|
12
12
|
.optional()
|
|
13
13
|
.describe('The view mode of the API parameters. Defaults to `closed`.'),
|
|
14
|
+
post: z
|
|
15
|
+
.array(z.string())
|
|
16
|
+
.optional()
|
|
17
|
+
.describe('OpenAPI spec field keys to render as post pills on every ParamField. For each key, the field value on the schema is surfaced as a pill (string → verbatim, boolean true → key name, array → one pill per element, object → skipped).'),
|
|
14
18
|
})
|
|
15
19
|
.optional()
|
|
16
20
|
.describe('Configurations for the API parameters'),
|
|
@@ -2,10 +2,31 @@ import { z } from 'zod';
|
|
|
2
2
|
export declare const bannerSchema: z.ZodObject<{
|
|
3
3
|
content: z.ZodString;
|
|
4
4
|
dismissible: z.ZodOptional<z.ZodBoolean>;
|
|
5
|
+
type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
|
|
6
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
7
|
+
light: z.ZodOptional<z.ZodString>;
|
|
8
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
9
|
+
}, "strict", z.ZodTypeAny, {
|
|
10
|
+
light?: string | undefined;
|
|
11
|
+
dark?: string | undefined;
|
|
12
|
+
}, {
|
|
13
|
+
light?: string | undefined;
|
|
14
|
+
dark?: string | undefined;
|
|
15
|
+
}>>;
|
|
5
16
|
}, "strip", z.ZodTypeAny, {
|
|
6
17
|
content: string;
|
|
18
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
19
|
+
color?: {
|
|
20
|
+
light?: string | undefined;
|
|
21
|
+
dark?: string | undefined;
|
|
22
|
+
} | undefined;
|
|
7
23
|
dismissible?: boolean | undefined;
|
|
8
24
|
}, {
|
|
9
25
|
content: string;
|
|
26
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
27
|
+
color?: {
|
|
28
|
+
light?: string | undefined;
|
|
29
|
+
dark?: string | undefined;
|
|
30
|
+
} | undefined;
|
|
10
31
|
dismissible?: boolean | undefined;
|
|
11
32
|
}>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
import { colorSchemaWithOptionalLightAndDark } from './reusable/color.js';
|
|
2
3
|
export const bannerSchema = z.object({
|
|
3
4
|
content: z
|
|
4
5
|
.string()
|
|
@@ -8,4 +9,11 @@ export const bannerSchema = z.object({
|
|
|
8
9
|
.boolean()
|
|
9
10
|
.optional()
|
|
10
11
|
.describe('Whether to show the dismiss button on the right side of the banner'),
|
|
12
|
+
type: z
|
|
13
|
+
.enum(['info', 'warning', 'critical'])
|
|
14
|
+
.optional()
|
|
15
|
+
.describe('The visual style of the banner. `info` uses the primary brand color for general announcements. `warning` uses an amber background for cautionary notices (maintenance, deprecations). `critical` uses a red background for urgent notices. Defaults to `info`.'),
|
|
16
|
+
color: colorSchemaWithOptionalLightAndDark
|
|
17
|
+
.optional()
|
|
18
|
+
.describe('Override the banner background color with a custom hex color. Accepts `{ light, dark }` for theme-aware colors. When set, takes precedence over the color implied by `type`. Banner text is white, so choose a dark enough background for legibility.'),
|
|
11
19
|
});
|
|
@@ -7,11 +7,32 @@ export declare const baseLanguageSchema: z.ZodObject<{
|
|
|
7
7
|
banner: z.ZodOptional<z.ZodObject<{
|
|
8
8
|
content: z.ZodString;
|
|
9
9
|
dismissible: z.ZodOptional<z.ZodBoolean>;
|
|
10
|
+
type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
|
|
11
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
12
|
+
light: z.ZodOptional<z.ZodString>;
|
|
13
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
14
|
+
}, "strict", z.ZodTypeAny, {
|
|
15
|
+
light?: string | undefined;
|
|
16
|
+
dark?: string | undefined;
|
|
17
|
+
}, {
|
|
18
|
+
light?: string | undefined;
|
|
19
|
+
dark?: string | undefined;
|
|
20
|
+
}>>;
|
|
10
21
|
}, "strip", z.ZodTypeAny, {
|
|
11
22
|
content: string;
|
|
23
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
24
|
+
color?: {
|
|
25
|
+
light?: string | undefined;
|
|
26
|
+
dark?: string | undefined;
|
|
27
|
+
} | undefined;
|
|
12
28
|
dismissible?: boolean | undefined;
|
|
13
29
|
}, {
|
|
14
30
|
content: string;
|
|
31
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
32
|
+
color?: {
|
|
33
|
+
light?: string | undefined;
|
|
34
|
+
dark?: string | undefined;
|
|
35
|
+
} | undefined;
|
|
15
36
|
dismissible?: boolean | undefined;
|
|
16
37
|
}>>;
|
|
17
38
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -310,6 +331,11 @@ export declare const baseLanguageSchema: z.ZodObject<{
|
|
|
310
331
|
hidden?: boolean | undefined;
|
|
311
332
|
banner?: {
|
|
312
333
|
content: string;
|
|
334
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
335
|
+
color?: {
|
|
336
|
+
light?: string | undefined;
|
|
337
|
+
dark?: string | undefined;
|
|
338
|
+
} | undefined;
|
|
313
339
|
dismissible?: boolean | undefined;
|
|
314
340
|
} | undefined;
|
|
315
341
|
navbar?: {
|
|
@@ -372,6 +398,11 @@ export declare const baseLanguageSchema: z.ZodObject<{
|
|
|
372
398
|
hidden?: boolean | undefined;
|
|
373
399
|
banner?: {
|
|
374
400
|
content: string;
|
|
401
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
402
|
+
color?: {
|
|
403
|
+
light?: string | undefined;
|
|
404
|
+
dark?: string | undefined;
|
|
405
|
+
} | undefined;
|
|
375
406
|
dismissible?: boolean | undefined;
|
|
376
407
|
} | undefined;
|
|
377
408
|
navbar?: {
|
|
@@ -426,11 +457,32 @@ export declare const nonRecursiveLanguageSchema: z.ZodObject<{
|
|
|
426
457
|
banner: z.ZodOptional<z.ZodObject<{
|
|
427
458
|
content: z.ZodString;
|
|
428
459
|
dismissible: z.ZodOptional<z.ZodBoolean>;
|
|
460
|
+
type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
|
|
461
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
462
|
+
light: z.ZodOptional<z.ZodString>;
|
|
463
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
464
|
+
}, "strict", z.ZodTypeAny, {
|
|
465
|
+
light?: string | undefined;
|
|
466
|
+
dark?: string | undefined;
|
|
467
|
+
}, {
|
|
468
|
+
light?: string | undefined;
|
|
469
|
+
dark?: string | undefined;
|
|
470
|
+
}>>;
|
|
429
471
|
}, "strip", z.ZodTypeAny, {
|
|
430
472
|
content: string;
|
|
473
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
474
|
+
color?: {
|
|
475
|
+
light?: string | undefined;
|
|
476
|
+
dark?: string | undefined;
|
|
477
|
+
} | undefined;
|
|
431
478
|
dismissible?: boolean | undefined;
|
|
432
479
|
}, {
|
|
433
480
|
content: string;
|
|
481
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
482
|
+
color?: {
|
|
483
|
+
light?: string | undefined;
|
|
484
|
+
dark?: string | undefined;
|
|
485
|
+
} | undefined;
|
|
434
486
|
dismissible?: boolean | undefined;
|
|
435
487
|
}>>;
|
|
436
488
|
footer: z.ZodOptional<z.ZodObject<{
|
|
@@ -732,6 +784,11 @@ export declare const nonRecursiveLanguageSchema: z.ZodObject<{
|
|
|
732
784
|
hidden?: boolean | undefined;
|
|
733
785
|
banner?: {
|
|
734
786
|
content: string;
|
|
787
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
788
|
+
color?: {
|
|
789
|
+
light?: string | undefined;
|
|
790
|
+
dark?: string | undefined;
|
|
791
|
+
} | undefined;
|
|
735
792
|
dismissible?: boolean | undefined;
|
|
736
793
|
} | undefined;
|
|
737
794
|
navbar?: {
|
|
@@ -795,6 +852,11 @@ export declare const nonRecursiveLanguageSchema: z.ZodObject<{
|
|
|
795
852
|
hidden?: boolean | undefined;
|
|
796
853
|
banner?: {
|
|
797
854
|
content: string;
|
|
855
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
856
|
+
color?: {
|
|
857
|
+
light?: string | undefined;
|
|
858
|
+
dark?: string | undefined;
|
|
859
|
+
} | undefined;
|
|
798
860
|
dismissible?: boolean | undefined;
|
|
799
861
|
} | undefined;
|
|
800
862
|
navbar?: {
|
|
@@ -63,10 +63,13 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
63
63
|
}>]>>;
|
|
64
64
|
params: z.ZodOptional<z.ZodObject<{
|
|
65
65
|
expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
|
|
66
|
+
post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
66
67
|
}, "strip", z.ZodTypeAny, {
|
|
67
68
|
expanded?: "all" | "closed" | undefined;
|
|
69
|
+
post?: string[] | undefined;
|
|
68
70
|
}, {
|
|
69
71
|
expanded?: "all" | "closed" | undefined;
|
|
72
|
+
post?: string[] | undefined;
|
|
70
73
|
}>>;
|
|
71
74
|
playground: z.ZodOptional<z.ZodObject<{
|
|
72
75
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -126,6 +129,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
126
129
|
}, "strip", z.ZodTypeAny, {
|
|
127
130
|
params?: {
|
|
128
131
|
expanded?: "all" | "closed" | undefined;
|
|
132
|
+
post?: string[] | undefined;
|
|
129
133
|
} | undefined;
|
|
130
134
|
url?: "full" | undefined;
|
|
131
135
|
openapi?: string | string[] | {
|
|
@@ -157,6 +161,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
157
161
|
}, {
|
|
158
162
|
params?: {
|
|
159
163
|
expanded?: "all" | "closed" | undefined;
|
|
164
|
+
post?: string[] | undefined;
|
|
160
165
|
} | undefined;
|
|
161
166
|
url?: "full" | undefined;
|
|
162
167
|
openapi?: string | string[] | {
|
|
@@ -1337,11 +1342,32 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1337
1342
|
banner: z.ZodOptional<z.ZodObject<{
|
|
1338
1343
|
content: z.ZodString;
|
|
1339
1344
|
dismissible: z.ZodOptional<z.ZodBoolean>;
|
|
1345
|
+
type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
|
|
1346
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
1347
|
+
light: z.ZodOptional<z.ZodString>;
|
|
1348
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
1349
|
+
}, "strict", z.ZodTypeAny, {
|
|
1350
|
+
light?: string | undefined;
|
|
1351
|
+
dark?: string | undefined;
|
|
1352
|
+
}, {
|
|
1353
|
+
light?: string | undefined;
|
|
1354
|
+
dark?: string | undefined;
|
|
1355
|
+
}>>;
|
|
1340
1356
|
}, "strip", z.ZodTypeAny, {
|
|
1341
1357
|
content: string;
|
|
1358
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
1359
|
+
color?: {
|
|
1360
|
+
light?: string | undefined;
|
|
1361
|
+
dark?: string | undefined;
|
|
1362
|
+
} | undefined;
|
|
1342
1363
|
dismissible?: boolean | undefined;
|
|
1343
1364
|
}, {
|
|
1344
1365
|
content: string;
|
|
1366
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
1367
|
+
color?: {
|
|
1368
|
+
light?: string | undefined;
|
|
1369
|
+
dark?: string | undefined;
|
|
1370
|
+
} | undefined;
|
|
1345
1371
|
dismissible?: boolean | undefined;
|
|
1346
1372
|
}>>;
|
|
1347
1373
|
errors: z.ZodOptional<z.ZodObject<{
|
|
@@ -1665,6 +1691,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1665
1691
|
api?: {
|
|
1666
1692
|
params?: {
|
|
1667
1693
|
expanded?: "all" | "closed" | undefined;
|
|
1694
|
+
post?: string[] | undefined;
|
|
1668
1695
|
} | undefined;
|
|
1669
1696
|
url?: "full" | undefined;
|
|
1670
1697
|
openapi?: string | string[] | {
|
|
@@ -1793,6 +1820,11 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1793
1820
|
description?: string | undefined;
|
|
1794
1821
|
banner?: {
|
|
1795
1822
|
content: string;
|
|
1823
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
1824
|
+
color?: {
|
|
1825
|
+
light?: string | undefined;
|
|
1826
|
+
dark?: string | undefined;
|
|
1827
|
+
} | undefined;
|
|
1796
1828
|
dismissible?: boolean | undefined;
|
|
1797
1829
|
} | undefined;
|
|
1798
1830
|
navbar?: {
|
|
@@ -2028,6 +2060,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
2028
2060
|
api?: {
|
|
2029
2061
|
params?: {
|
|
2030
2062
|
expanded?: "all" | "closed" | undefined;
|
|
2063
|
+
post?: string[] | undefined;
|
|
2031
2064
|
} | undefined;
|
|
2032
2065
|
url?: "full" | undefined;
|
|
2033
2066
|
openapi?: string | string[] | {
|
|
@@ -2156,6 +2189,11 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
2156
2189
|
description?: string | undefined;
|
|
2157
2190
|
banner?: {
|
|
2158
2191
|
content: string;
|
|
2192
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
2193
|
+
color?: {
|
|
2194
|
+
light?: string | undefined;
|
|
2195
|
+
dark?: string | undefined;
|
|
2196
|
+
} | undefined;
|
|
2159
2197
|
dismissible?: boolean | undefined;
|
|
2160
2198
|
} | undefined;
|
|
2161
2199
|
navbar?: {
|
|
@@ -63,10 +63,13 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
63
63
|
}>]>>;
|
|
64
64
|
params: z.ZodOptional<z.ZodObject<{
|
|
65
65
|
expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
|
|
66
|
+
post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
66
67
|
}, "strip", z.ZodTypeAny, {
|
|
67
68
|
expanded?: "all" | "closed" | undefined;
|
|
69
|
+
post?: string[] | undefined;
|
|
68
70
|
}, {
|
|
69
71
|
expanded?: "all" | "closed" | undefined;
|
|
72
|
+
post?: string[] | undefined;
|
|
70
73
|
}>>;
|
|
71
74
|
playground: z.ZodOptional<z.ZodObject<{
|
|
72
75
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -126,6 +129,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
126
129
|
}, "strip", z.ZodTypeAny, {
|
|
127
130
|
params?: {
|
|
128
131
|
expanded?: "all" | "closed" | undefined;
|
|
132
|
+
post?: string[] | undefined;
|
|
129
133
|
} | undefined;
|
|
130
134
|
url?: "full" | undefined;
|
|
131
135
|
openapi?: string | string[] | {
|
|
@@ -157,6 +161,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
157
161
|
}, {
|
|
158
162
|
params?: {
|
|
159
163
|
expanded?: "all" | "closed" | undefined;
|
|
164
|
+
post?: string[] | undefined;
|
|
160
165
|
} | undefined;
|
|
161
166
|
url?: "full" | undefined;
|
|
162
167
|
openapi?: string | string[] | {
|
|
@@ -1337,11 +1342,32 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1337
1342
|
banner: z.ZodOptional<z.ZodObject<{
|
|
1338
1343
|
content: z.ZodString;
|
|
1339
1344
|
dismissible: z.ZodOptional<z.ZodBoolean>;
|
|
1345
|
+
type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
|
|
1346
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
1347
|
+
light: z.ZodOptional<z.ZodString>;
|
|
1348
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
1349
|
+
}, "strict", z.ZodTypeAny, {
|
|
1350
|
+
light?: string | undefined;
|
|
1351
|
+
dark?: string | undefined;
|
|
1352
|
+
}, {
|
|
1353
|
+
light?: string | undefined;
|
|
1354
|
+
dark?: string | undefined;
|
|
1355
|
+
}>>;
|
|
1340
1356
|
}, "strip", z.ZodTypeAny, {
|
|
1341
1357
|
content: string;
|
|
1358
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
1359
|
+
color?: {
|
|
1360
|
+
light?: string | undefined;
|
|
1361
|
+
dark?: string | undefined;
|
|
1362
|
+
} | undefined;
|
|
1342
1363
|
dismissible?: boolean | undefined;
|
|
1343
1364
|
}, {
|
|
1344
1365
|
content: string;
|
|
1366
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
1367
|
+
color?: {
|
|
1368
|
+
light?: string | undefined;
|
|
1369
|
+
dark?: string | undefined;
|
|
1370
|
+
} | undefined;
|
|
1345
1371
|
dismissible?: boolean | undefined;
|
|
1346
1372
|
}>>;
|
|
1347
1373
|
errors: z.ZodOptional<z.ZodObject<{
|
|
@@ -1665,6 +1691,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1665
1691
|
api?: {
|
|
1666
1692
|
params?: {
|
|
1667
1693
|
expanded?: "all" | "closed" | undefined;
|
|
1694
|
+
post?: string[] | undefined;
|
|
1668
1695
|
} | undefined;
|
|
1669
1696
|
url?: "full" | undefined;
|
|
1670
1697
|
openapi?: string | string[] | {
|
|
@@ -1793,6 +1820,11 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1793
1820
|
description?: string | undefined;
|
|
1794
1821
|
banner?: {
|
|
1795
1822
|
content: string;
|
|
1823
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
1824
|
+
color?: {
|
|
1825
|
+
light?: string | undefined;
|
|
1826
|
+
dark?: string | undefined;
|
|
1827
|
+
} | undefined;
|
|
1796
1828
|
dismissible?: boolean | undefined;
|
|
1797
1829
|
} | undefined;
|
|
1798
1830
|
navbar?: {
|
|
@@ -2028,6 +2060,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
2028
2060
|
api?: {
|
|
2029
2061
|
params?: {
|
|
2030
2062
|
expanded?: "all" | "closed" | undefined;
|
|
2063
|
+
post?: string[] | undefined;
|
|
2031
2064
|
} | undefined;
|
|
2032
2065
|
url?: "full" | undefined;
|
|
2033
2066
|
openapi?: string | string[] | {
|
|
@@ -2156,6 +2189,11 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
2156
2189
|
description?: string | undefined;
|
|
2157
2190
|
banner?: {
|
|
2158
2191
|
content: string;
|
|
2192
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
2193
|
+
color?: {
|
|
2194
|
+
light?: string | undefined;
|
|
2195
|
+
dark?: string | undefined;
|
|
2196
|
+
} | undefined;
|
|
2159
2197
|
dismissible?: boolean | undefined;
|
|
2160
2198
|
} | undefined;
|
|
2161
2199
|
navbar?: {
|
|
@@ -63,10 +63,13 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
63
63
|
}>]>>;
|
|
64
64
|
params: z.ZodOptional<z.ZodObject<{
|
|
65
65
|
expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
|
|
66
|
+
post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
66
67
|
}, "strip", z.ZodTypeAny, {
|
|
67
68
|
expanded?: "all" | "closed" | undefined;
|
|
69
|
+
post?: string[] | undefined;
|
|
68
70
|
}, {
|
|
69
71
|
expanded?: "all" | "closed" | undefined;
|
|
72
|
+
post?: string[] | undefined;
|
|
70
73
|
}>>;
|
|
71
74
|
playground: z.ZodOptional<z.ZodObject<{
|
|
72
75
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -126,6 +129,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
126
129
|
}, "strip", z.ZodTypeAny, {
|
|
127
130
|
params?: {
|
|
128
131
|
expanded?: "all" | "closed" | undefined;
|
|
132
|
+
post?: string[] | undefined;
|
|
129
133
|
} | undefined;
|
|
130
134
|
url?: "full" | undefined;
|
|
131
135
|
openapi?: string | string[] | {
|
|
@@ -157,6 +161,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
157
161
|
}, {
|
|
158
162
|
params?: {
|
|
159
163
|
expanded?: "all" | "closed" | undefined;
|
|
164
|
+
post?: string[] | undefined;
|
|
160
165
|
} | undefined;
|
|
161
166
|
url?: "full" | undefined;
|
|
162
167
|
openapi?: string | string[] | {
|
|
@@ -1337,11 +1342,32 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1337
1342
|
banner: z.ZodOptional<z.ZodObject<{
|
|
1338
1343
|
content: z.ZodString;
|
|
1339
1344
|
dismissible: z.ZodOptional<z.ZodBoolean>;
|
|
1345
|
+
type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
|
|
1346
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
1347
|
+
light: z.ZodOptional<z.ZodString>;
|
|
1348
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
1349
|
+
}, "strict", z.ZodTypeAny, {
|
|
1350
|
+
light?: string | undefined;
|
|
1351
|
+
dark?: string | undefined;
|
|
1352
|
+
}, {
|
|
1353
|
+
light?: string | undefined;
|
|
1354
|
+
dark?: string | undefined;
|
|
1355
|
+
}>>;
|
|
1340
1356
|
}, "strip", z.ZodTypeAny, {
|
|
1341
1357
|
content: string;
|
|
1358
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
1359
|
+
color?: {
|
|
1360
|
+
light?: string | undefined;
|
|
1361
|
+
dark?: string | undefined;
|
|
1362
|
+
} | undefined;
|
|
1342
1363
|
dismissible?: boolean | undefined;
|
|
1343
1364
|
}, {
|
|
1344
1365
|
content: string;
|
|
1366
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
1367
|
+
color?: {
|
|
1368
|
+
light?: string | undefined;
|
|
1369
|
+
dark?: string | undefined;
|
|
1370
|
+
} | undefined;
|
|
1345
1371
|
dismissible?: boolean | undefined;
|
|
1346
1372
|
}>>;
|
|
1347
1373
|
errors: z.ZodOptional<z.ZodObject<{
|
|
@@ -1665,6 +1691,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1665
1691
|
api?: {
|
|
1666
1692
|
params?: {
|
|
1667
1693
|
expanded?: "all" | "closed" | undefined;
|
|
1694
|
+
post?: string[] | undefined;
|
|
1668
1695
|
} | undefined;
|
|
1669
1696
|
url?: "full" | undefined;
|
|
1670
1697
|
openapi?: string | string[] | {
|
|
@@ -1793,6 +1820,11 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1793
1820
|
description?: string | undefined;
|
|
1794
1821
|
banner?: {
|
|
1795
1822
|
content: string;
|
|
1823
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
1824
|
+
color?: {
|
|
1825
|
+
light?: string | undefined;
|
|
1826
|
+
dark?: string | undefined;
|
|
1827
|
+
} | undefined;
|
|
1796
1828
|
dismissible?: boolean | undefined;
|
|
1797
1829
|
} | undefined;
|
|
1798
1830
|
navbar?: {
|
|
@@ -2028,6 +2060,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
2028
2060
|
api?: {
|
|
2029
2061
|
params?: {
|
|
2030
2062
|
expanded?: "all" | "closed" | undefined;
|
|
2063
|
+
post?: string[] | undefined;
|
|
2031
2064
|
} | undefined;
|
|
2032
2065
|
url?: "full" | undefined;
|
|
2033
2066
|
openapi?: string | string[] | {
|
|
@@ -2156,6 +2189,11 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
2156
2189
|
description?: string | undefined;
|
|
2157
2190
|
banner?: {
|
|
2158
2191
|
content: string;
|
|
2192
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
2193
|
+
color?: {
|
|
2194
|
+
light?: string | undefined;
|
|
2195
|
+
dark?: string | undefined;
|
|
2196
|
+
} | undefined;
|
|
2159
2197
|
dismissible?: boolean | undefined;
|
|
2160
2198
|
} | undefined;
|
|
2161
2199
|
navbar?: {
|
|
@@ -63,10 +63,13 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
63
63
|
}>]>>;
|
|
64
64
|
params: z.ZodOptional<z.ZodObject<{
|
|
65
65
|
expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
|
|
66
|
+
post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
66
67
|
}, "strip", z.ZodTypeAny, {
|
|
67
68
|
expanded?: "all" | "closed" | undefined;
|
|
69
|
+
post?: string[] | undefined;
|
|
68
70
|
}, {
|
|
69
71
|
expanded?: "all" | "closed" | undefined;
|
|
72
|
+
post?: string[] | undefined;
|
|
70
73
|
}>>;
|
|
71
74
|
playground: z.ZodOptional<z.ZodObject<{
|
|
72
75
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -126,6 +129,7 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
126
129
|
}, "strip", z.ZodTypeAny, {
|
|
127
130
|
params?: {
|
|
128
131
|
expanded?: "all" | "closed" | undefined;
|
|
132
|
+
post?: string[] | undefined;
|
|
129
133
|
} | undefined;
|
|
130
134
|
url?: "full" | undefined;
|
|
131
135
|
openapi?: string | string[] | {
|
|
@@ -157,6 +161,7 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
157
161
|
}, {
|
|
158
162
|
params?: {
|
|
159
163
|
expanded?: "all" | "closed" | undefined;
|
|
164
|
+
post?: string[] | undefined;
|
|
160
165
|
} | undefined;
|
|
161
166
|
url?: "full" | undefined;
|
|
162
167
|
openapi?: string | string[] | {
|
|
@@ -1337,11 +1342,32 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
1337
1342
|
banner: z.ZodOptional<z.ZodObject<{
|
|
1338
1343
|
content: z.ZodString;
|
|
1339
1344
|
dismissible: z.ZodOptional<z.ZodBoolean>;
|
|
1345
|
+
type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
|
|
1346
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
1347
|
+
light: z.ZodOptional<z.ZodString>;
|
|
1348
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
1349
|
+
}, "strict", z.ZodTypeAny, {
|
|
1350
|
+
light?: string | undefined;
|
|
1351
|
+
dark?: string | undefined;
|
|
1352
|
+
}, {
|
|
1353
|
+
light?: string | undefined;
|
|
1354
|
+
dark?: string | undefined;
|
|
1355
|
+
}>>;
|
|
1340
1356
|
}, "strip", z.ZodTypeAny, {
|
|
1341
1357
|
content: string;
|
|
1358
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
1359
|
+
color?: {
|
|
1360
|
+
light?: string | undefined;
|
|
1361
|
+
dark?: string | undefined;
|
|
1362
|
+
} | undefined;
|
|
1342
1363
|
dismissible?: boolean | undefined;
|
|
1343
1364
|
}, {
|
|
1344
1365
|
content: string;
|
|
1366
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
1367
|
+
color?: {
|
|
1368
|
+
light?: string | undefined;
|
|
1369
|
+
dark?: string | undefined;
|
|
1370
|
+
} | undefined;
|
|
1345
1371
|
dismissible?: boolean | undefined;
|
|
1346
1372
|
}>>;
|
|
1347
1373
|
errors: z.ZodOptional<z.ZodObject<{
|
|
@@ -1665,6 +1691,7 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
1665
1691
|
api?: {
|
|
1666
1692
|
params?: {
|
|
1667
1693
|
expanded?: "all" | "closed" | undefined;
|
|
1694
|
+
post?: string[] | undefined;
|
|
1668
1695
|
} | undefined;
|
|
1669
1696
|
url?: "full" | undefined;
|
|
1670
1697
|
openapi?: string | string[] | {
|
|
@@ -1793,6 +1820,11 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
1793
1820
|
description?: string | undefined;
|
|
1794
1821
|
banner?: {
|
|
1795
1822
|
content: string;
|
|
1823
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
1824
|
+
color?: {
|
|
1825
|
+
light?: string | undefined;
|
|
1826
|
+
dark?: string | undefined;
|
|
1827
|
+
} | undefined;
|
|
1796
1828
|
dismissible?: boolean | undefined;
|
|
1797
1829
|
} | undefined;
|
|
1798
1830
|
navbar?: {
|
|
@@ -2028,6 +2060,7 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
2028
2060
|
api?: {
|
|
2029
2061
|
params?: {
|
|
2030
2062
|
expanded?: "all" | "closed" | undefined;
|
|
2063
|
+
post?: string[] | undefined;
|
|
2031
2064
|
} | undefined;
|
|
2032
2065
|
url?: "full" | undefined;
|
|
2033
2066
|
openapi?: string | string[] | {
|
|
@@ -2156,6 +2189,11 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
2156
2189
|
description?: string | undefined;
|
|
2157
2190
|
banner?: {
|
|
2158
2191
|
content: string;
|
|
2192
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
2193
|
+
color?: {
|
|
2194
|
+
light?: string | undefined;
|
|
2195
|
+
dark?: string | undefined;
|
|
2196
|
+
} | undefined;
|
|
2159
2197
|
dismissible?: boolean | undefined;
|
|
2160
2198
|
} | undefined;
|
|
2161
2199
|
navbar?: {
|