@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
|
@@ -66,10 +66,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
66
66
|
}>]>>;
|
|
67
67
|
params: z.ZodOptional<z.ZodObject<{
|
|
68
68
|
expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
|
|
69
|
+
post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
69
70
|
}, "strip", z.ZodTypeAny, {
|
|
70
71
|
expanded?: "all" | "closed" | undefined;
|
|
72
|
+
post?: string[] | undefined;
|
|
71
73
|
}, {
|
|
72
74
|
expanded?: "all" | "closed" | undefined;
|
|
75
|
+
post?: string[] | undefined;
|
|
73
76
|
}>>;
|
|
74
77
|
playground: z.ZodOptional<z.ZodObject<{
|
|
75
78
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -129,6 +132,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
129
132
|
}, "strip", z.ZodTypeAny, {
|
|
130
133
|
params?: {
|
|
131
134
|
expanded?: "all" | "closed" | undefined;
|
|
135
|
+
post?: string[] | undefined;
|
|
132
136
|
} | undefined;
|
|
133
137
|
url?: "full" | undefined;
|
|
134
138
|
openapi?: string | string[] | {
|
|
@@ -160,6 +164,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
160
164
|
}, {
|
|
161
165
|
params?: {
|
|
162
166
|
expanded?: "all" | "closed" | undefined;
|
|
167
|
+
post?: string[] | undefined;
|
|
163
168
|
} | undefined;
|
|
164
169
|
url?: "full" | undefined;
|
|
165
170
|
openapi?: string | string[] | {
|
|
@@ -1340,11 +1345,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1340
1345
|
banner: z.ZodOptional<z.ZodObject<{
|
|
1341
1346
|
content: z.ZodString;
|
|
1342
1347
|
dismissible: z.ZodOptional<z.ZodBoolean>;
|
|
1348
|
+
type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
|
|
1349
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
1350
|
+
light: z.ZodOptional<z.ZodString>;
|
|
1351
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
1352
|
+
}, "strict", z.ZodTypeAny, {
|
|
1353
|
+
light?: string | undefined;
|
|
1354
|
+
dark?: string | undefined;
|
|
1355
|
+
}, {
|
|
1356
|
+
light?: string | undefined;
|
|
1357
|
+
dark?: string | undefined;
|
|
1358
|
+
}>>;
|
|
1343
1359
|
}, "strip", z.ZodTypeAny, {
|
|
1344
1360
|
content: string;
|
|
1361
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
1362
|
+
color?: {
|
|
1363
|
+
light?: string | undefined;
|
|
1364
|
+
dark?: string | undefined;
|
|
1365
|
+
} | undefined;
|
|
1345
1366
|
dismissible?: boolean | undefined;
|
|
1346
1367
|
}, {
|
|
1347
1368
|
content: string;
|
|
1369
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
1370
|
+
color?: {
|
|
1371
|
+
light?: string | undefined;
|
|
1372
|
+
dark?: string | undefined;
|
|
1373
|
+
} | undefined;
|
|
1348
1374
|
dismissible?: boolean | undefined;
|
|
1349
1375
|
}>>;
|
|
1350
1376
|
errors: z.ZodOptional<z.ZodObject<{
|
|
@@ -1668,6 +1694,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1668
1694
|
api?: {
|
|
1669
1695
|
params?: {
|
|
1670
1696
|
expanded?: "all" | "closed" | undefined;
|
|
1697
|
+
post?: string[] | undefined;
|
|
1671
1698
|
} | undefined;
|
|
1672
1699
|
url?: "full" | undefined;
|
|
1673
1700
|
openapi?: string | string[] | {
|
|
@@ -1796,6 +1823,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1796
1823
|
description?: string | undefined;
|
|
1797
1824
|
banner?: {
|
|
1798
1825
|
content: string;
|
|
1826
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
1827
|
+
color?: {
|
|
1828
|
+
light?: string | undefined;
|
|
1829
|
+
dark?: string | undefined;
|
|
1830
|
+
} | undefined;
|
|
1799
1831
|
dismissible?: boolean | undefined;
|
|
1800
1832
|
} | undefined;
|
|
1801
1833
|
navbar?: {
|
|
@@ -2031,6 +2063,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2031
2063
|
api?: {
|
|
2032
2064
|
params?: {
|
|
2033
2065
|
expanded?: "all" | "closed" | undefined;
|
|
2066
|
+
post?: string[] | undefined;
|
|
2034
2067
|
} | undefined;
|
|
2035
2068
|
url?: "full" | undefined;
|
|
2036
2069
|
openapi?: string | string[] | {
|
|
@@ -2159,6 +2192,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2159
2192
|
description?: string | undefined;
|
|
2160
2193
|
banner?: {
|
|
2161
2194
|
content: string;
|
|
2195
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
2196
|
+
color?: {
|
|
2197
|
+
light?: string | undefined;
|
|
2198
|
+
dark?: string | undefined;
|
|
2199
|
+
} | undefined;
|
|
2162
2200
|
dismissible?: boolean | undefined;
|
|
2163
2201
|
} | undefined;
|
|
2164
2202
|
navbar?: {
|
|
@@ -2344,10 +2382,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2344
2382
|
}>]>>;
|
|
2345
2383
|
params: z.ZodOptional<z.ZodObject<{
|
|
2346
2384
|
expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
|
|
2385
|
+
post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2347
2386
|
}, "strip", z.ZodTypeAny, {
|
|
2348
2387
|
expanded?: "all" | "closed" | undefined;
|
|
2388
|
+
post?: string[] | undefined;
|
|
2349
2389
|
}, {
|
|
2350
2390
|
expanded?: "all" | "closed" | undefined;
|
|
2391
|
+
post?: string[] | undefined;
|
|
2351
2392
|
}>>;
|
|
2352
2393
|
playground: z.ZodOptional<z.ZodObject<{
|
|
2353
2394
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -2407,6 +2448,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2407
2448
|
}, "strip", z.ZodTypeAny, {
|
|
2408
2449
|
params?: {
|
|
2409
2450
|
expanded?: "all" | "closed" | undefined;
|
|
2451
|
+
post?: string[] | undefined;
|
|
2410
2452
|
} | undefined;
|
|
2411
2453
|
url?: "full" | undefined;
|
|
2412
2454
|
openapi?: string | string[] | {
|
|
@@ -2438,6 +2480,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2438
2480
|
}, {
|
|
2439
2481
|
params?: {
|
|
2440
2482
|
expanded?: "all" | "closed" | undefined;
|
|
2483
|
+
post?: string[] | undefined;
|
|
2441
2484
|
} | undefined;
|
|
2442
2485
|
url?: "full" | undefined;
|
|
2443
2486
|
openapi?: string | string[] | {
|
|
@@ -3618,11 +3661,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3618
3661
|
banner: z.ZodOptional<z.ZodObject<{
|
|
3619
3662
|
content: z.ZodString;
|
|
3620
3663
|
dismissible: z.ZodOptional<z.ZodBoolean>;
|
|
3664
|
+
type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
|
|
3665
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
3666
|
+
light: z.ZodOptional<z.ZodString>;
|
|
3667
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
3668
|
+
}, "strict", z.ZodTypeAny, {
|
|
3669
|
+
light?: string | undefined;
|
|
3670
|
+
dark?: string | undefined;
|
|
3671
|
+
}, {
|
|
3672
|
+
light?: string | undefined;
|
|
3673
|
+
dark?: string | undefined;
|
|
3674
|
+
}>>;
|
|
3621
3675
|
}, "strip", z.ZodTypeAny, {
|
|
3622
3676
|
content: string;
|
|
3677
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
3678
|
+
color?: {
|
|
3679
|
+
light?: string | undefined;
|
|
3680
|
+
dark?: string | undefined;
|
|
3681
|
+
} | undefined;
|
|
3623
3682
|
dismissible?: boolean | undefined;
|
|
3624
3683
|
}, {
|
|
3625
3684
|
content: string;
|
|
3685
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
3686
|
+
color?: {
|
|
3687
|
+
light?: string | undefined;
|
|
3688
|
+
dark?: string | undefined;
|
|
3689
|
+
} | undefined;
|
|
3626
3690
|
dismissible?: boolean | undefined;
|
|
3627
3691
|
}>>;
|
|
3628
3692
|
errors: z.ZodOptional<z.ZodObject<{
|
|
@@ -3946,6 +4010,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3946
4010
|
api?: {
|
|
3947
4011
|
params?: {
|
|
3948
4012
|
expanded?: "all" | "closed" | undefined;
|
|
4013
|
+
post?: string[] | undefined;
|
|
3949
4014
|
} | undefined;
|
|
3950
4015
|
url?: "full" | undefined;
|
|
3951
4016
|
openapi?: string | string[] | {
|
|
@@ -4074,6 +4139,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4074
4139
|
description?: string | undefined;
|
|
4075
4140
|
banner?: {
|
|
4076
4141
|
content: string;
|
|
4142
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
4143
|
+
color?: {
|
|
4144
|
+
light?: string | undefined;
|
|
4145
|
+
dark?: string | undefined;
|
|
4146
|
+
} | undefined;
|
|
4077
4147
|
dismissible?: boolean | undefined;
|
|
4078
4148
|
} | undefined;
|
|
4079
4149
|
navbar?: {
|
|
@@ -4309,6 +4379,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4309
4379
|
api?: {
|
|
4310
4380
|
params?: {
|
|
4311
4381
|
expanded?: "all" | "closed" | undefined;
|
|
4382
|
+
post?: string[] | undefined;
|
|
4312
4383
|
} | undefined;
|
|
4313
4384
|
url?: "full" | undefined;
|
|
4314
4385
|
openapi?: string | string[] | {
|
|
@@ -4437,6 +4508,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4437
4508
|
description?: string | undefined;
|
|
4438
4509
|
banner?: {
|
|
4439
4510
|
content: string;
|
|
4511
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
4512
|
+
color?: {
|
|
4513
|
+
light?: string | undefined;
|
|
4514
|
+
dark?: string | undefined;
|
|
4515
|
+
} | undefined;
|
|
4440
4516
|
dismissible?: boolean | undefined;
|
|
4441
4517
|
} | undefined;
|
|
4442
4518
|
navbar?: {
|
|
@@ -4622,10 +4698,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4622
4698
|
}>]>>;
|
|
4623
4699
|
params: z.ZodOptional<z.ZodObject<{
|
|
4624
4700
|
expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
|
|
4701
|
+
post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4625
4702
|
}, "strip", z.ZodTypeAny, {
|
|
4626
4703
|
expanded?: "all" | "closed" | undefined;
|
|
4704
|
+
post?: string[] | undefined;
|
|
4627
4705
|
}, {
|
|
4628
4706
|
expanded?: "all" | "closed" | undefined;
|
|
4707
|
+
post?: string[] | undefined;
|
|
4629
4708
|
}>>;
|
|
4630
4709
|
playground: z.ZodOptional<z.ZodObject<{
|
|
4631
4710
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -4685,6 +4764,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4685
4764
|
}, "strip", z.ZodTypeAny, {
|
|
4686
4765
|
params?: {
|
|
4687
4766
|
expanded?: "all" | "closed" | undefined;
|
|
4767
|
+
post?: string[] | undefined;
|
|
4688
4768
|
} | undefined;
|
|
4689
4769
|
url?: "full" | undefined;
|
|
4690
4770
|
openapi?: string | string[] | {
|
|
@@ -4716,6 +4796,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4716
4796
|
}, {
|
|
4717
4797
|
params?: {
|
|
4718
4798
|
expanded?: "all" | "closed" | undefined;
|
|
4799
|
+
post?: string[] | undefined;
|
|
4719
4800
|
} | undefined;
|
|
4720
4801
|
url?: "full" | undefined;
|
|
4721
4802
|
openapi?: string | string[] | {
|
|
@@ -5896,11 +5977,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5896
5977
|
banner: z.ZodOptional<z.ZodObject<{
|
|
5897
5978
|
content: z.ZodString;
|
|
5898
5979
|
dismissible: z.ZodOptional<z.ZodBoolean>;
|
|
5980
|
+
type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
|
|
5981
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
5982
|
+
light: z.ZodOptional<z.ZodString>;
|
|
5983
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
5984
|
+
}, "strict", z.ZodTypeAny, {
|
|
5985
|
+
light?: string | undefined;
|
|
5986
|
+
dark?: string | undefined;
|
|
5987
|
+
}, {
|
|
5988
|
+
light?: string | undefined;
|
|
5989
|
+
dark?: string | undefined;
|
|
5990
|
+
}>>;
|
|
5899
5991
|
}, "strip", z.ZodTypeAny, {
|
|
5900
5992
|
content: string;
|
|
5993
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
5994
|
+
color?: {
|
|
5995
|
+
light?: string | undefined;
|
|
5996
|
+
dark?: string | undefined;
|
|
5997
|
+
} | undefined;
|
|
5901
5998
|
dismissible?: boolean | undefined;
|
|
5902
5999
|
}, {
|
|
5903
6000
|
content: string;
|
|
6001
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
6002
|
+
color?: {
|
|
6003
|
+
light?: string | undefined;
|
|
6004
|
+
dark?: string | undefined;
|
|
6005
|
+
} | undefined;
|
|
5904
6006
|
dismissible?: boolean | undefined;
|
|
5905
6007
|
}>>;
|
|
5906
6008
|
errors: z.ZodOptional<z.ZodObject<{
|
|
@@ -6224,6 +6326,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6224
6326
|
api?: {
|
|
6225
6327
|
params?: {
|
|
6226
6328
|
expanded?: "all" | "closed" | undefined;
|
|
6329
|
+
post?: string[] | undefined;
|
|
6227
6330
|
} | undefined;
|
|
6228
6331
|
url?: "full" | undefined;
|
|
6229
6332
|
openapi?: string | string[] | {
|
|
@@ -6352,6 +6455,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6352
6455
|
description?: string | undefined;
|
|
6353
6456
|
banner?: {
|
|
6354
6457
|
content: string;
|
|
6458
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
6459
|
+
color?: {
|
|
6460
|
+
light?: string | undefined;
|
|
6461
|
+
dark?: string | undefined;
|
|
6462
|
+
} | undefined;
|
|
6355
6463
|
dismissible?: boolean | undefined;
|
|
6356
6464
|
} | undefined;
|
|
6357
6465
|
navbar?: {
|
|
@@ -6587,6 +6695,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6587
6695
|
api?: {
|
|
6588
6696
|
params?: {
|
|
6589
6697
|
expanded?: "all" | "closed" | undefined;
|
|
6698
|
+
post?: string[] | undefined;
|
|
6590
6699
|
} | undefined;
|
|
6591
6700
|
url?: "full" | undefined;
|
|
6592
6701
|
openapi?: string | string[] | {
|
|
@@ -6715,6 +6824,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6715
6824
|
description?: string | undefined;
|
|
6716
6825
|
banner?: {
|
|
6717
6826
|
content: string;
|
|
6827
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
6828
|
+
color?: {
|
|
6829
|
+
light?: string | undefined;
|
|
6830
|
+
dark?: string | undefined;
|
|
6831
|
+
} | undefined;
|
|
6718
6832
|
dismissible?: boolean | undefined;
|
|
6719
6833
|
} | undefined;
|
|
6720
6834
|
navbar?: {
|
|
@@ -6900,10 +7014,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6900
7014
|
}>]>>;
|
|
6901
7015
|
params: z.ZodOptional<z.ZodObject<{
|
|
6902
7016
|
expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
|
|
7017
|
+
post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6903
7018
|
}, "strip", z.ZodTypeAny, {
|
|
6904
7019
|
expanded?: "all" | "closed" | undefined;
|
|
7020
|
+
post?: string[] | undefined;
|
|
6905
7021
|
}, {
|
|
6906
7022
|
expanded?: "all" | "closed" | undefined;
|
|
7023
|
+
post?: string[] | undefined;
|
|
6907
7024
|
}>>;
|
|
6908
7025
|
playground: z.ZodOptional<z.ZodObject<{
|
|
6909
7026
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -6963,6 +7080,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6963
7080
|
}, "strip", z.ZodTypeAny, {
|
|
6964
7081
|
params?: {
|
|
6965
7082
|
expanded?: "all" | "closed" | undefined;
|
|
7083
|
+
post?: string[] | undefined;
|
|
6966
7084
|
} | undefined;
|
|
6967
7085
|
url?: "full" | undefined;
|
|
6968
7086
|
openapi?: string | string[] | {
|
|
@@ -6994,6 +7112,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6994
7112
|
}, {
|
|
6995
7113
|
params?: {
|
|
6996
7114
|
expanded?: "all" | "closed" | undefined;
|
|
7115
|
+
post?: string[] | undefined;
|
|
6997
7116
|
} | undefined;
|
|
6998
7117
|
url?: "full" | undefined;
|
|
6999
7118
|
openapi?: string | string[] | {
|
|
@@ -8174,11 +8293,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8174
8293
|
banner: z.ZodOptional<z.ZodObject<{
|
|
8175
8294
|
content: z.ZodString;
|
|
8176
8295
|
dismissible: z.ZodOptional<z.ZodBoolean>;
|
|
8296
|
+
type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
|
|
8297
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
8298
|
+
light: z.ZodOptional<z.ZodString>;
|
|
8299
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
8300
|
+
}, "strict", z.ZodTypeAny, {
|
|
8301
|
+
light?: string | undefined;
|
|
8302
|
+
dark?: string | undefined;
|
|
8303
|
+
}, {
|
|
8304
|
+
light?: string | undefined;
|
|
8305
|
+
dark?: string | undefined;
|
|
8306
|
+
}>>;
|
|
8177
8307
|
}, "strip", z.ZodTypeAny, {
|
|
8178
8308
|
content: string;
|
|
8309
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
8310
|
+
color?: {
|
|
8311
|
+
light?: string | undefined;
|
|
8312
|
+
dark?: string | undefined;
|
|
8313
|
+
} | undefined;
|
|
8179
8314
|
dismissible?: boolean | undefined;
|
|
8180
8315
|
}, {
|
|
8181
8316
|
content: string;
|
|
8317
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
8318
|
+
color?: {
|
|
8319
|
+
light?: string | undefined;
|
|
8320
|
+
dark?: string | undefined;
|
|
8321
|
+
} | undefined;
|
|
8182
8322
|
dismissible?: boolean | undefined;
|
|
8183
8323
|
}>>;
|
|
8184
8324
|
errors: z.ZodOptional<z.ZodObject<{
|
|
@@ -8502,6 +8642,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8502
8642
|
api?: {
|
|
8503
8643
|
params?: {
|
|
8504
8644
|
expanded?: "all" | "closed" | undefined;
|
|
8645
|
+
post?: string[] | undefined;
|
|
8505
8646
|
} | undefined;
|
|
8506
8647
|
url?: "full" | undefined;
|
|
8507
8648
|
openapi?: string | string[] | {
|
|
@@ -8630,6 +8771,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8630
8771
|
description?: string | undefined;
|
|
8631
8772
|
banner?: {
|
|
8632
8773
|
content: string;
|
|
8774
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
8775
|
+
color?: {
|
|
8776
|
+
light?: string | undefined;
|
|
8777
|
+
dark?: string | undefined;
|
|
8778
|
+
} | undefined;
|
|
8633
8779
|
dismissible?: boolean | undefined;
|
|
8634
8780
|
} | undefined;
|
|
8635
8781
|
navbar?: {
|
|
@@ -8865,6 +9011,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8865
9011
|
api?: {
|
|
8866
9012
|
params?: {
|
|
8867
9013
|
expanded?: "all" | "closed" | undefined;
|
|
9014
|
+
post?: string[] | undefined;
|
|
8868
9015
|
} | undefined;
|
|
8869
9016
|
url?: "full" | undefined;
|
|
8870
9017
|
openapi?: string | string[] | {
|
|
@@ -8993,6 +9140,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8993
9140
|
description?: string | undefined;
|
|
8994
9141
|
banner?: {
|
|
8995
9142
|
content: string;
|
|
9143
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
9144
|
+
color?: {
|
|
9145
|
+
light?: string | undefined;
|
|
9146
|
+
dark?: string | undefined;
|
|
9147
|
+
} | undefined;
|
|
8996
9148
|
dismissible?: boolean | undefined;
|
|
8997
9149
|
} | undefined;
|
|
8998
9150
|
navbar?: {
|
|
@@ -9178,10 +9330,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9178
9330
|
}>]>>;
|
|
9179
9331
|
params: z.ZodOptional<z.ZodObject<{
|
|
9180
9332
|
expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
|
|
9333
|
+
post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9181
9334
|
}, "strip", z.ZodTypeAny, {
|
|
9182
9335
|
expanded?: "all" | "closed" | undefined;
|
|
9336
|
+
post?: string[] | undefined;
|
|
9183
9337
|
}, {
|
|
9184
9338
|
expanded?: "all" | "closed" | undefined;
|
|
9339
|
+
post?: string[] | undefined;
|
|
9185
9340
|
}>>;
|
|
9186
9341
|
playground: z.ZodOptional<z.ZodObject<{
|
|
9187
9342
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -9241,6 +9396,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9241
9396
|
}, "strip", z.ZodTypeAny, {
|
|
9242
9397
|
params?: {
|
|
9243
9398
|
expanded?: "all" | "closed" | undefined;
|
|
9399
|
+
post?: string[] | undefined;
|
|
9244
9400
|
} | undefined;
|
|
9245
9401
|
url?: "full" | undefined;
|
|
9246
9402
|
openapi?: string | string[] | {
|
|
@@ -9272,6 +9428,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9272
9428
|
}, {
|
|
9273
9429
|
params?: {
|
|
9274
9430
|
expanded?: "all" | "closed" | undefined;
|
|
9431
|
+
post?: string[] | undefined;
|
|
9275
9432
|
} | undefined;
|
|
9276
9433
|
url?: "full" | undefined;
|
|
9277
9434
|
openapi?: string | string[] | {
|
|
@@ -10452,11 +10609,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10452
10609
|
banner: z.ZodOptional<z.ZodObject<{
|
|
10453
10610
|
content: z.ZodString;
|
|
10454
10611
|
dismissible: z.ZodOptional<z.ZodBoolean>;
|
|
10612
|
+
type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
|
|
10613
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
10614
|
+
light: z.ZodOptional<z.ZodString>;
|
|
10615
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
10616
|
+
}, "strict", z.ZodTypeAny, {
|
|
10617
|
+
light?: string | undefined;
|
|
10618
|
+
dark?: string | undefined;
|
|
10619
|
+
}, {
|
|
10620
|
+
light?: string | undefined;
|
|
10621
|
+
dark?: string | undefined;
|
|
10622
|
+
}>>;
|
|
10455
10623
|
}, "strip", z.ZodTypeAny, {
|
|
10456
10624
|
content: string;
|
|
10625
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
10626
|
+
color?: {
|
|
10627
|
+
light?: string | undefined;
|
|
10628
|
+
dark?: string | undefined;
|
|
10629
|
+
} | undefined;
|
|
10457
10630
|
dismissible?: boolean | undefined;
|
|
10458
10631
|
}, {
|
|
10459
10632
|
content: string;
|
|
10633
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
10634
|
+
color?: {
|
|
10635
|
+
light?: string | undefined;
|
|
10636
|
+
dark?: string | undefined;
|
|
10637
|
+
} | undefined;
|
|
10460
10638
|
dismissible?: boolean | undefined;
|
|
10461
10639
|
}>>;
|
|
10462
10640
|
errors: z.ZodOptional<z.ZodObject<{
|
|
@@ -10780,6 +10958,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10780
10958
|
api?: {
|
|
10781
10959
|
params?: {
|
|
10782
10960
|
expanded?: "all" | "closed" | undefined;
|
|
10961
|
+
post?: string[] | undefined;
|
|
10783
10962
|
} | undefined;
|
|
10784
10963
|
url?: "full" | undefined;
|
|
10785
10964
|
openapi?: string | string[] | {
|
|
@@ -10908,6 +11087,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10908
11087
|
description?: string | undefined;
|
|
10909
11088
|
banner?: {
|
|
10910
11089
|
content: string;
|
|
11090
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
11091
|
+
color?: {
|
|
11092
|
+
light?: string | undefined;
|
|
11093
|
+
dark?: string | undefined;
|
|
11094
|
+
} | undefined;
|
|
10911
11095
|
dismissible?: boolean | undefined;
|
|
10912
11096
|
} | undefined;
|
|
10913
11097
|
navbar?: {
|
|
@@ -11143,6 +11327,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11143
11327
|
api?: {
|
|
11144
11328
|
params?: {
|
|
11145
11329
|
expanded?: "all" | "closed" | undefined;
|
|
11330
|
+
post?: string[] | undefined;
|
|
11146
11331
|
} | undefined;
|
|
11147
11332
|
url?: "full" | undefined;
|
|
11148
11333
|
openapi?: string | string[] | {
|
|
@@ -11271,6 +11456,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11271
11456
|
description?: string | undefined;
|
|
11272
11457
|
banner?: {
|
|
11273
11458
|
content: string;
|
|
11459
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
11460
|
+
color?: {
|
|
11461
|
+
light?: string | undefined;
|
|
11462
|
+
dark?: string | undefined;
|
|
11463
|
+
} | undefined;
|
|
11274
11464
|
dismissible?: boolean | undefined;
|
|
11275
11465
|
} | undefined;
|
|
11276
11466
|
navbar?: {
|
|
@@ -11456,10 +11646,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11456
11646
|
}>]>>;
|
|
11457
11647
|
params: z.ZodOptional<z.ZodObject<{
|
|
11458
11648
|
expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
|
|
11649
|
+
post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11459
11650
|
}, "strip", z.ZodTypeAny, {
|
|
11460
11651
|
expanded?: "all" | "closed" | undefined;
|
|
11652
|
+
post?: string[] | undefined;
|
|
11461
11653
|
}, {
|
|
11462
11654
|
expanded?: "all" | "closed" | undefined;
|
|
11655
|
+
post?: string[] | undefined;
|
|
11463
11656
|
}>>;
|
|
11464
11657
|
playground: z.ZodOptional<z.ZodObject<{
|
|
11465
11658
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -11519,6 +11712,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11519
11712
|
}, "strip", z.ZodTypeAny, {
|
|
11520
11713
|
params?: {
|
|
11521
11714
|
expanded?: "all" | "closed" | undefined;
|
|
11715
|
+
post?: string[] | undefined;
|
|
11522
11716
|
} | undefined;
|
|
11523
11717
|
url?: "full" | undefined;
|
|
11524
11718
|
openapi?: string | string[] | {
|
|
@@ -11550,6 +11744,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11550
11744
|
}, {
|
|
11551
11745
|
params?: {
|
|
11552
11746
|
expanded?: "all" | "closed" | undefined;
|
|
11747
|
+
post?: string[] | undefined;
|
|
11553
11748
|
} | undefined;
|
|
11554
11749
|
url?: "full" | undefined;
|
|
11555
11750
|
openapi?: string | string[] | {
|
|
@@ -12730,11 +12925,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12730
12925
|
banner: z.ZodOptional<z.ZodObject<{
|
|
12731
12926
|
content: z.ZodString;
|
|
12732
12927
|
dismissible: z.ZodOptional<z.ZodBoolean>;
|
|
12928
|
+
type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
|
|
12929
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
12930
|
+
light: z.ZodOptional<z.ZodString>;
|
|
12931
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
12932
|
+
}, "strict", z.ZodTypeAny, {
|
|
12933
|
+
light?: string | undefined;
|
|
12934
|
+
dark?: string | undefined;
|
|
12935
|
+
}, {
|
|
12936
|
+
light?: string | undefined;
|
|
12937
|
+
dark?: string | undefined;
|
|
12938
|
+
}>>;
|
|
12733
12939
|
}, "strip", z.ZodTypeAny, {
|
|
12734
12940
|
content: string;
|
|
12941
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
12942
|
+
color?: {
|
|
12943
|
+
light?: string | undefined;
|
|
12944
|
+
dark?: string | undefined;
|
|
12945
|
+
} | undefined;
|
|
12735
12946
|
dismissible?: boolean | undefined;
|
|
12736
12947
|
}, {
|
|
12737
12948
|
content: string;
|
|
12949
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
12950
|
+
color?: {
|
|
12951
|
+
light?: string | undefined;
|
|
12952
|
+
dark?: string | undefined;
|
|
12953
|
+
} | undefined;
|
|
12738
12954
|
dismissible?: boolean | undefined;
|
|
12739
12955
|
}>>;
|
|
12740
12956
|
errors: z.ZodOptional<z.ZodObject<{
|
|
@@ -13058,6 +13274,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13058
13274
|
api?: {
|
|
13059
13275
|
params?: {
|
|
13060
13276
|
expanded?: "all" | "closed" | undefined;
|
|
13277
|
+
post?: string[] | undefined;
|
|
13061
13278
|
} | undefined;
|
|
13062
13279
|
url?: "full" | undefined;
|
|
13063
13280
|
openapi?: string | string[] | {
|
|
@@ -13186,6 +13403,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13186
13403
|
description?: string | undefined;
|
|
13187
13404
|
banner?: {
|
|
13188
13405
|
content: string;
|
|
13406
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
13407
|
+
color?: {
|
|
13408
|
+
light?: string | undefined;
|
|
13409
|
+
dark?: string | undefined;
|
|
13410
|
+
} | undefined;
|
|
13189
13411
|
dismissible?: boolean | undefined;
|
|
13190
13412
|
} | undefined;
|
|
13191
13413
|
navbar?: {
|
|
@@ -13421,6 +13643,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13421
13643
|
api?: {
|
|
13422
13644
|
params?: {
|
|
13423
13645
|
expanded?: "all" | "closed" | undefined;
|
|
13646
|
+
post?: string[] | undefined;
|
|
13424
13647
|
} | undefined;
|
|
13425
13648
|
url?: "full" | undefined;
|
|
13426
13649
|
openapi?: string | string[] | {
|
|
@@ -13549,6 +13772,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13549
13772
|
description?: string | undefined;
|
|
13550
13773
|
banner?: {
|
|
13551
13774
|
content: string;
|
|
13775
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
13776
|
+
color?: {
|
|
13777
|
+
light?: string | undefined;
|
|
13778
|
+
dark?: string | undefined;
|
|
13779
|
+
} | undefined;
|
|
13552
13780
|
dismissible?: boolean | undefined;
|
|
13553
13781
|
} | undefined;
|
|
13554
13782
|
navbar?: {
|
|
@@ -13734,10 +13962,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13734
13962
|
}>]>>;
|
|
13735
13963
|
params: z.ZodOptional<z.ZodObject<{
|
|
13736
13964
|
expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
|
|
13965
|
+
post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13737
13966
|
}, "strip", z.ZodTypeAny, {
|
|
13738
13967
|
expanded?: "all" | "closed" | undefined;
|
|
13968
|
+
post?: string[] | undefined;
|
|
13739
13969
|
}, {
|
|
13740
13970
|
expanded?: "all" | "closed" | undefined;
|
|
13971
|
+
post?: string[] | undefined;
|
|
13741
13972
|
}>>;
|
|
13742
13973
|
playground: z.ZodOptional<z.ZodObject<{
|
|
13743
13974
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -13797,6 +14028,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13797
14028
|
}, "strip", z.ZodTypeAny, {
|
|
13798
14029
|
params?: {
|
|
13799
14030
|
expanded?: "all" | "closed" | undefined;
|
|
14031
|
+
post?: string[] | undefined;
|
|
13800
14032
|
} | undefined;
|
|
13801
14033
|
url?: "full" | undefined;
|
|
13802
14034
|
openapi?: string | string[] | {
|
|
@@ -13828,6 +14060,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13828
14060
|
}, {
|
|
13829
14061
|
params?: {
|
|
13830
14062
|
expanded?: "all" | "closed" | undefined;
|
|
14063
|
+
post?: string[] | undefined;
|
|
13831
14064
|
} | undefined;
|
|
13832
14065
|
url?: "full" | undefined;
|
|
13833
14066
|
openapi?: string | string[] | {
|
|
@@ -15008,11 +15241,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15008
15241
|
banner: z.ZodOptional<z.ZodObject<{
|
|
15009
15242
|
content: z.ZodString;
|
|
15010
15243
|
dismissible: z.ZodOptional<z.ZodBoolean>;
|
|
15244
|
+
type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
|
|
15245
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
15246
|
+
light: z.ZodOptional<z.ZodString>;
|
|
15247
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
15248
|
+
}, "strict", z.ZodTypeAny, {
|
|
15249
|
+
light?: string | undefined;
|
|
15250
|
+
dark?: string | undefined;
|
|
15251
|
+
}, {
|
|
15252
|
+
light?: string | undefined;
|
|
15253
|
+
dark?: string | undefined;
|
|
15254
|
+
}>>;
|
|
15011
15255
|
}, "strip", z.ZodTypeAny, {
|
|
15012
15256
|
content: string;
|
|
15257
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
15258
|
+
color?: {
|
|
15259
|
+
light?: string | undefined;
|
|
15260
|
+
dark?: string | undefined;
|
|
15261
|
+
} | undefined;
|
|
15013
15262
|
dismissible?: boolean | undefined;
|
|
15014
15263
|
}, {
|
|
15015
15264
|
content: string;
|
|
15265
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
15266
|
+
color?: {
|
|
15267
|
+
light?: string | undefined;
|
|
15268
|
+
dark?: string | undefined;
|
|
15269
|
+
} | undefined;
|
|
15016
15270
|
dismissible?: boolean | undefined;
|
|
15017
15271
|
}>>;
|
|
15018
15272
|
errors: z.ZodOptional<z.ZodObject<{
|
|
@@ -15336,6 +15590,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15336
15590
|
api?: {
|
|
15337
15591
|
params?: {
|
|
15338
15592
|
expanded?: "all" | "closed" | undefined;
|
|
15593
|
+
post?: string[] | undefined;
|
|
15339
15594
|
} | undefined;
|
|
15340
15595
|
url?: "full" | undefined;
|
|
15341
15596
|
openapi?: string | string[] | {
|
|
@@ -15464,6 +15719,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15464
15719
|
description?: string | undefined;
|
|
15465
15720
|
banner?: {
|
|
15466
15721
|
content: string;
|
|
15722
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
15723
|
+
color?: {
|
|
15724
|
+
light?: string | undefined;
|
|
15725
|
+
dark?: string | undefined;
|
|
15726
|
+
} | undefined;
|
|
15467
15727
|
dismissible?: boolean | undefined;
|
|
15468
15728
|
} | undefined;
|
|
15469
15729
|
navbar?: {
|
|
@@ -15699,6 +15959,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15699
15959
|
api?: {
|
|
15700
15960
|
params?: {
|
|
15701
15961
|
expanded?: "all" | "closed" | undefined;
|
|
15962
|
+
post?: string[] | undefined;
|
|
15702
15963
|
} | undefined;
|
|
15703
15964
|
url?: "full" | undefined;
|
|
15704
15965
|
openapi?: string | string[] | {
|
|
@@ -15827,6 +16088,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15827
16088
|
description?: string | undefined;
|
|
15828
16089
|
banner?: {
|
|
15829
16090
|
content: string;
|
|
16091
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
16092
|
+
color?: {
|
|
16093
|
+
light?: string | undefined;
|
|
16094
|
+
dark?: string | undefined;
|
|
16095
|
+
} | undefined;
|
|
15830
16096
|
dismissible?: boolean | undefined;
|
|
15831
16097
|
} | undefined;
|
|
15832
16098
|
navbar?: {
|
|
@@ -16012,10 +16278,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16012
16278
|
}>]>>;
|
|
16013
16279
|
params: z.ZodOptional<z.ZodObject<{
|
|
16014
16280
|
expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
|
|
16281
|
+
post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
16015
16282
|
}, "strip", z.ZodTypeAny, {
|
|
16016
16283
|
expanded?: "all" | "closed" | undefined;
|
|
16284
|
+
post?: string[] | undefined;
|
|
16017
16285
|
}, {
|
|
16018
16286
|
expanded?: "all" | "closed" | undefined;
|
|
16287
|
+
post?: string[] | undefined;
|
|
16019
16288
|
}>>;
|
|
16020
16289
|
playground: z.ZodOptional<z.ZodObject<{
|
|
16021
16290
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -16075,6 +16344,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16075
16344
|
}, "strip", z.ZodTypeAny, {
|
|
16076
16345
|
params?: {
|
|
16077
16346
|
expanded?: "all" | "closed" | undefined;
|
|
16347
|
+
post?: string[] | undefined;
|
|
16078
16348
|
} | undefined;
|
|
16079
16349
|
url?: "full" | undefined;
|
|
16080
16350
|
openapi?: string | string[] | {
|
|
@@ -16106,6 +16376,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16106
16376
|
}, {
|
|
16107
16377
|
params?: {
|
|
16108
16378
|
expanded?: "all" | "closed" | undefined;
|
|
16379
|
+
post?: string[] | undefined;
|
|
16109
16380
|
} | undefined;
|
|
16110
16381
|
url?: "full" | undefined;
|
|
16111
16382
|
openapi?: string | string[] | {
|
|
@@ -17286,11 +17557,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17286
17557
|
banner: z.ZodOptional<z.ZodObject<{
|
|
17287
17558
|
content: z.ZodString;
|
|
17288
17559
|
dismissible: z.ZodOptional<z.ZodBoolean>;
|
|
17560
|
+
type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
|
|
17561
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
17562
|
+
light: z.ZodOptional<z.ZodString>;
|
|
17563
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
17564
|
+
}, "strict", z.ZodTypeAny, {
|
|
17565
|
+
light?: string | undefined;
|
|
17566
|
+
dark?: string | undefined;
|
|
17567
|
+
}, {
|
|
17568
|
+
light?: string | undefined;
|
|
17569
|
+
dark?: string | undefined;
|
|
17570
|
+
}>>;
|
|
17289
17571
|
}, "strip", z.ZodTypeAny, {
|
|
17290
17572
|
content: string;
|
|
17573
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
17574
|
+
color?: {
|
|
17575
|
+
light?: string | undefined;
|
|
17576
|
+
dark?: string | undefined;
|
|
17577
|
+
} | undefined;
|
|
17291
17578
|
dismissible?: boolean | undefined;
|
|
17292
17579
|
}, {
|
|
17293
17580
|
content: string;
|
|
17581
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
17582
|
+
color?: {
|
|
17583
|
+
light?: string | undefined;
|
|
17584
|
+
dark?: string | undefined;
|
|
17585
|
+
} | undefined;
|
|
17294
17586
|
dismissible?: boolean | undefined;
|
|
17295
17587
|
}>>;
|
|
17296
17588
|
errors: z.ZodOptional<z.ZodObject<{
|
|
@@ -17614,6 +17906,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17614
17906
|
api?: {
|
|
17615
17907
|
params?: {
|
|
17616
17908
|
expanded?: "all" | "closed" | undefined;
|
|
17909
|
+
post?: string[] | undefined;
|
|
17617
17910
|
} | undefined;
|
|
17618
17911
|
url?: "full" | undefined;
|
|
17619
17912
|
openapi?: string | string[] | {
|
|
@@ -17742,6 +18035,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17742
18035
|
description?: string | undefined;
|
|
17743
18036
|
banner?: {
|
|
17744
18037
|
content: string;
|
|
18038
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
18039
|
+
color?: {
|
|
18040
|
+
light?: string | undefined;
|
|
18041
|
+
dark?: string | undefined;
|
|
18042
|
+
} | undefined;
|
|
17745
18043
|
dismissible?: boolean | undefined;
|
|
17746
18044
|
} | undefined;
|
|
17747
18045
|
navbar?: {
|
|
@@ -17977,6 +18275,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17977
18275
|
api?: {
|
|
17978
18276
|
params?: {
|
|
17979
18277
|
expanded?: "all" | "closed" | undefined;
|
|
18278
|
+
post?: string[] | undefined;
|
|
17980
18279
|
} | undefined;
|
|
17981
18280
|
url?: "full" | undefined;
|
|
17982
18281
|
openapi?: string | string[] | {
|
|
@@ -18105,6 +18404,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18105
18404
|
description?: string | undefined;
|
|
18106
18405
|
banner?: {
|
|
18107
18406
|
content: string;
|
|
18407
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
18408
|
+
color?: {
|
|
18409
|
+
light?: string | undefined;
|
|
18410
|
+
dark?: string | undefined;
|
|
18411
|
+
} | undefined;
|
|
18108
18412
|
dismissible?: boolean | undefined;
|
|
18109
18413
|
} | undefined;
|
|
18110
18414
|
navbar?: {
|
|
@@ -18290,10 +18594,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18290
18594
|
}>]>>;
|
|
18291
18595
|
params: z.ZodOptional<z.ZodObject<{
|
|
18292
18596
|
expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
|
|
18597
|
+
post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
18293
18598
|
}, "strip", z.ZodTypeAny, {
|
|
18294
18599
|
expanded?: "all" | "closed" | undefined;
|
|
18600
|
+
post?: string[] | undefined;
|
|
18295
18601
|
}, {
|
|
18296
18602
|
expanded?: "all" | "closed" | undefined;
|
|
18603
|
+
post?: string[] | undefined;
|
|
18297
18604
|
}>>;
|
|
18298
18605
|
playground: z.ZodOptional<z.ZodObject<{
|
|
18299
18606
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -18353,6 +18660,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18353
18660
|
}, "strip", z.ZodTypeAny, {
|
|
18354
18661
|
params?: {
|
|
18355
18662
|
expanded?: "all" | "closed" | undefined;
|
|
18663
|
+
post?: string[] | undefined;
|
|
18356
18664
|
} | undefined;
|
|
18357
18665
|
url?: "full" | undefined;
|
|
18358
18666
|
openapi?: string | string[] | {
|
|
@@ -18384,6 +18692,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18384
18692
|
}, {
|
|
18385
18693
|
params?: {
|
|
18386
18694
|
expanded?: "all" | "closed" | undefined;
|
|
18695
|
+
post?: string[] | undefined;
|
|
18387
18696
|
} | undefined;
|
|
18388
18697
|
url?: "full" | undefined;
|
|
18389
18698
|
openapi?: string | string[] | {
|
|
@@ -19564,11 +19873,32 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19564
19873
|
banner: z.ZodOptional<z.ZodObject<{
|
|
19565
19874
|
content: z.ZodString;
|
|
19566
19875
|
dismissible: z.ZodOptional<z.ZodBoolean>;
|
|
19876
|
+
type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
|
|
19877
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
19878
|
+
light: z.ZodOptional<z.ZodString>;
|
|
19879
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
19880
|
+
}, "strict", z.ZodTypeAny, {
|
|
19881
|
+
light?: string | undefined;
|
|
19882
|
+
dark?: string | undefined;
|
|
19883
|
+
}, {
|
|
19884
|
+
light?: string | undefined;
|
|
19885
|
+
dark?: string | undefined;
|
|
19886
|
+
}>>;
|
|
19567
19887
|
}, "strip", z.ZodTypeAny, {
|
|
19568
19888
|
content: string;
|
|
19889
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
19890
|
+
color?: {
|
|
19891
|
+
light?: string | undefined;
|
|
19892
|
+
dark?: string | undefined;
|
|
19893
|
+
} | undefined;
|
|
19569
19894
|
dismissible?: boolean | undefined;
|
|
19570
19895
|
}, {
|
|
19571
19896
|
content: string;
|
|
19897
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
19898
|
+
color?: {
|
|
19899
|
+
light?: string | undefined;
|
|
19900
|
+
dark?: string | undefined;
|
|
19901
|
+
} | undefined;
|
|
19572
19902
|
dismissible?: boolean | undefined;
|
|
19573
19903
|
}>>;
|
|
19574
19904
|
errors: z.ZodOptional<z.ZodObject<{
|
|
@@ -19892,6 +20222,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19892
20222
|
api?: {
|
|
19893
20223
|
params?: {
|
|
19894
20224
|
expanded?: "all" | "closed" | undefined;
|
|
20225
|
+
post?: string[] | undefined;
|
|
19895
20226
|
} | undefined;
|
|
19896
20227
|
url?: "full" | undefined;
|
|
19897
20228
|
openapi?: string | string[] | {
|
|
@@ -20020,6 +20351,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20020
20351
|
description?: string | undefined;
|
|
20021
20352
|
banner?: {
|
|
20022
20353
|
content: string;
|
|
20354
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
20355
|
+
color?: {
|
|
20356
|
+
light?: string | undefined;
|
|
20357
|
+
dark?: string | undefined;
|
|
20358
|
+
} | undefined;
|
|
20023
20359
|
dismissible?: boolean | undefined;
|
|
20024
20360
|
} | undefined;
|
|
20025
20361
|
navbar?: {
|
|
@@ -20255,6 +20591,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20255
20591
|
api?: {
|
|
20256
20592
|
params?: {
|
|
20257
20593
|
expanded?: "all" | "closed" | undefined;
|
|
20594
|
+
post?: string[] | undefined;
|
|
20258
20595
|
} | undefined;
|
|
20259
20596
|
url?: "full" | undefined;
|
|
20260
20597
|
openapi?: string | string[] | {
|
|
@@ -20383,6 +20720,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
20383
20720
|
description?: string | undefined;
|
|
20384
20721
|
banner?: {
|
|
20385
20722
|
content: string;
|
|
20723
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
20724
|
+
color?: {
|
|
20725
|
+
light?: string | undefined;
|
|
20726
|
+
dark?: string | undefined;
|
|
20727
|
+
} | undefined;
|
|
20386
20728
|
dismissible?: boolean | undefined;
|
|
20387
20729
|
} | undefined;
|
|
20388
20730
|
navbar?: {
|
|
@@ -20569,10 +20911,13 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
20569
20911
|
}>]>>;
|
|
20570
20912
|
params: z.ZodOptional<z.ZodObject<{
|
|
20571
20913
|
expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
|
|
20914
|
+
post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
20572
20915
|
}, "strip", z.ZodTypeAny, {
|
|
20573
20916
|
expanded?: "all" | "closed" | undefined;
|
|
20917
|
+
post?: string[] | undefined;
|
|
20574
20918
|
}, {
|
|
20575
20919
|
expanded?: "all" | "closed" | undefined;
|
|
20920
|
+
post?: string[] | undefined;
|
|
20576
20921
|
}>>;
|
|
20577
20922
|
playground: z.ZodOptional<z.ZodObject<{
|
|
20578
20923
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -20632,6 +20977,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
20632
20977
|
}, "strip", z.ZodTypeAny, {
|
|
20633
20978
|
params?: {
|
|
20634
20979
|
expanded?: "all" | "closed" | undefined;
|
|
20980
|
+
post?: string[] | undefined;
|
|
20635
20981
|
} | undefined;
|
|
20636
20982
|
url?: "full" | undefined;
|
|
20637
20983
|
openapi?: string | string[] | {
|
|
@@ -20663,6 +21009,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
20663
21009
|
}, {
|
|
20664
21010
|
params?: {
|
|
20665
21011
|
expanded?: "all" | "closed" | undefined;
|
|
21012
|
+
post?: string[] | undefined;
|
|
20666
21013
|
} | undefined;
|
|
20667
21014
|
url?: "full" | undefined;
|
|
20668
21015
|
openapi?: string | string[] | {
|
|
@@ -21843,11 +22190,32 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
21843
22190
|
banner: z.ZodOptional<z.ZodObject<{
|
|
21844
22191
|
content: z.ZodString;
|
|
21845
22192
|
dismissible: z.ZodOptional<z.ZodBoolean>;
|
|
22193
|
+
type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
|
|
22194
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
22195
|
+
light: z.ZodOptional<z.ZodString>;
|
|
22196
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
22197
|
+
}, "strict", z.ZodTypeAny, {
|
|
22198
|
+
light?: string | undefined;
|
|
22199
|
+
dark?: string | undefined;
|
|
22200
|
+
}, {
|
|
22201
|
+
light?: string | undefined;
|
|
22202
|
+
dark?: string | undefined;
|
|
22203
|
+
}>>;
|
|
21846
22204
|
}, "strip", z.ZodTypeAny, {
|
|
21847
22205
|
content: string;
|
|
22206
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
22207
|
+
color?: {
|
|
22208
|
+
light?: string | undefined;
|
|
22209
|
+
dark?: string | undefined;
|
|
22210
|
+
} | undefined;
|
|
21848
22211
|
dismissible?: boolean | undefined;
|
|
21849
22212
|
}, {
|
|
21850
22213
|
content: string;
|
|
22214
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
22215
|
+
color?: {
|
|
22216
|
+
light?: string | undefined;
|
|
22217
|
+
dark?: string | undefined;
|
|
22218
|
+
} | undefined;
|
|
21851
22219
|
dismissible?: boolean | undefined;
|
|
21852
22220
|
}>>;
|
|
21853
22221
|
errors: z.ZodOptional<z.ZodObject<{
|
|
@@ -22171,6 +22539,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
22171
22539
|
api?: {
|
|
22172
22540
|
params?: {
|
|
22173
22541
|
expanded?: "all" | "closed" | undefined;
|
|
22542
|
+
post?: string[] | undefined;
|
|
22174
22543
|
} | undefined;
|
|
22175
22544
|
url?: "full" | undefined;
|
|
22176
22545
|
openapi?: string | string[] | {
|
|
@@ -22299,6 +22668,11 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
22299
22668
|
description?: string | undefined;
|
|
22300
22669
|
banner?: {
|
|
22301
22670
|
content: string;
|
|
22671
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
22672
|
+
color?: {
|
|
22673
|
+
light?: string | undefined;
|
|
22674
|
+
dark?: string | undefined;
|
|
22675
|
+
} | undefined;
|
|
22302
22676
|
dismissible?: boolean | undefined;
|
|
22303
22677
|
} | undefined;
|
|
22304
22678
|
navbar?: {
|
|
@@ -22534,6 +22908,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
22534
22908
|
api?: {
|
|
22535
22909
|
params?: {
|
|
22536
22910
|
expanded?: "all" | "closed" | undefined;
|
|
22911
|
+
post?: string[] | undefined;
|
|
22537
22912
|
} | undefined;
|
|
22538
22913
|
url?: "full" | undefined;
|
|
22539
22914
|
openapi?: string | string[] | {
|
|
@@ -22662,6 +23037,11 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
22662
23037
|
description?: string | undefined;
|
|
22663
23038
|
banner?: {
|
|
22664
23039
|
content: string;
|
|
23040
|
+
type?: "info" | "warning" | "critical" | undefined;
|
|
23041
|
+
color?: {
|
|
23042
|
+
light?: string | undefined;
|
|
23043
|
+
dark?: string | undefined;
|
|
23044
|
+
} | undefined;
|
|
22665
23045
|
dismissible?: boolean | undefined;
|
|
22666
23046
|
} | undefined;
|
|
22667
23047
|
navbar?: {
|