@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
|
@@ -63,10 +63,13 @@ export declare const mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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?: {
|
|
@@ -62,10 +62,13 @@ export declare const standardConfigSchema: {
|
|
|
62
62
|
}>]>>;
|
|
63
63
|
params: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
64
64
|
expanded: import("zod").ZodOptional<import("zod").ZodEnum<["all", "closed"]>>;
|
|
65
|
+
post: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
65
66
|
}, "strip", import("zod").ZodTypeAny, {
|
|
66
67
|
expanded?: "all" | "closed" | undefined;
|
|
68
|
+
post?: string[] | undefined;
|
|
67
69
|
}, {
|
|
68
70
|
expanded?: "all" | "closed" | undefined;
|
|
71
|
+
post?: string[] | undefined;
|
|
69
72
|
}>>;
|
|
70
73
|
playground: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
71
74
|
display: import("zod").ZodOptional<import("zod").ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -125,6 +128,7 @@ export declare const standardConfigSchema: {
|
|
|
125
128
|
}, "strip", import("zod").ZodTypeAny, {
|
|
126
129
|
params?: {
|
|
127
130
|
expanded?: "all" | "closed" | undefined;
|
|
131
|
+
post?: string[] | undefined;
|
|
128
132
|
} | undefined;
|
|
129
133
|
url?: "full" | undefined;
|
|
130
134
|
openapi?: string | string[] | {
|
|
@@ -156,6 +160,7 @@ export declare const standardConfigSchema: {
|
|
|
156
160
|
}, {
|
|
157
161
|
params?: {
|
|
158
162
|
expanded?: "all" | "closed" | undefined;
|
|
163
|
+
post?: string[] | undefined;
|
|
159
164
|
} | undefined;
|
|
160
165
|
url?: "full" | undefined;
|
|
161
166
|
openapi?: string | string[] | {
|
|
@@ -1336,11 +1341,32 @@ export declare const standardConfigSchema: {
|
|
|
1336
1341
|
banner: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1337
1342
|
content: import("zod").ZodString;
|
|
1338
1343
|
dismissible: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1344
|
+
type: import("zod").ZodOptional<import("zod").ZodEnum<["info", "warning", "critical"]>>;
|
|
1345
|
+
color: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1346
|
+
light: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1347
|
+
dark: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1348
|
+
}, "strict", import("zod").ZodTypeAny, {
|
|
1349
|
+
light?: string | undefined;
|
|
1350
|
+
dark?: string | undefined;
|
|
1351
|
+
}, {
|
|
1352
|
+
light?: string | undefined;
|
|
1353
|
+
dark?: string | undefined;
|
|
1354
|
+
}>>;
|
|
1339
1355
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1340
1356
|
content: string;
|
|
1357
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
1358
|
+
color?: {
|
|
1359
|
+
light?: string | undefined;
|
|
1360
|
+
dark?: string | undefined;
|
|
1361
|
+
} | undefined;
|
|
1341
1362
|
dismissible?: boolean | undefined;
|
|
1342
1363
|
}, {
|
|
1343
1364
|
content: string;
|
|
1365
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
1366
|
+
color?: {
|
|
1367
|
+
light?: string | undefined;
|
|
1368
|
+
dark?: string | undefined;
|
|
1369
|
+
} | undefined;
|
|
1344
1370
|
dismissible?: boolean | undefined;
|
|
1345
1371
|
}>>;
|
|
1346
1372
|
errors: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
@@ -63,10 +63,13 @@ export declare const sequoiaConfigSchema: 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 sequoiaConfigSchema: 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 sequoiaConfigSchema: 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 sequoiaConfigSchema: 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 sequoiaConfigSchema: 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 sequoiaConfigSchema: 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 sequoiaConfigSchema: 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 sequoiaConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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?: {
|