@mintlify/validation 0.1.640 → 0.1.641
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mint-config/schemas/v2/index.d.ts +70 -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/themes/almond.d.ts +7 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +7 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +7 -0
- package/dist/mint-config/schemas/v2/themes/luma.d.ts +7 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +7 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +7 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +7 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +5 -0
- package/dist/mint-config/schemas/v2/themes/sequoia.d.ts +7 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +7 -0
- package/dist/mint-config/validateConfig.d.ts +18 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -74,12 +74,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
74
74
|
playground: z.ZodOptional<z.ZodObject<{
|
|
75
75
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
76
76
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
77
|
+
credentials: z.ZodOptional<z.ZodBoolean>;
|
|
77
78
|
}, "strip", z.ZodTypeAny, {
|
|
78
79
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
79
80
|
proxy?: boolean | undefined;
|
|
81
|
+
credentials?: boolean | undefined;
|
|
80
82
|
}, {
|
|
81
83
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
82
84
|
proxy?: boolean | undefined;
|
|
85
|
+
credentials?: boolean | undefined;
|
|
83
86
|
}>>;
|
|
84
87
|
examples: z.ZodOptional<z.ZodObject<{
|
|
85
88
|
defaults: z.ZodOptional<z.ZodEnum<["required", "all"]>>;
|
|
@@ -135,6 +138,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
135
138
|
playground?: {
|
|
136
139
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
137
140
|
proxy?: boolean | undefined;
|
|
141
|
+
credentials?: boolean | undefined;
|
|
138
142
|
} | undefined;
|
|
139
143
|
asyncapi?: string | string[] | {
|
|
140
144
|
source: string;
|
|
@@ -165,6 +169,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
165
169
|
playground?: {
|
|
166
170
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
167
171
|
proxy?: boolean | undefined;
|
|
172
|
+
credentials?: boolean | undefined;
|
|
168
173
|
} | undefined;
|
|
169
174
|
asyncapi?: string | string[] | {
|
|
170
175
|
source: string;
|
|
@@ -1630,6 +1635,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1630
1635
|
playground?: {
|
|
1631
1636
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
1632
1637
|
proxy?: boolean | undefined;
|
|
1638
|
+
credentials?: boolean | undefined;
|
|
1633
1639
|
} | undefined;
|
|
1634
1640
|
asyncapi?: string | string[] | {
|
|
1635
1641
|
source: string;
|
|
@@ -1982,6 +1988,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1982
1988
|
playground?: {
|
|
1983
1989
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
1984
1990
|
proxy?: boolean | undefined;
|
|
1991
|
+
credentials?: boolean | undefined;
|
|
1985
1992
|
} | undefined;
|
|
1986
1993
|
asyncapi?: string | string[] | {
|
|
1987
1994
|
source: string;
|
|
@@ -2293,12 +2300,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2293
2300
|
playground: z.ZodOptional<z.ZodObject<{
|
|
2294
2301
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
2295
2302
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
2303
|
+
credentials: z.ZodOptional<z.ZodBoolean>;
|
|
2296
2304
|
}, "strip", z.ZodTypeAny, {
|
|
2297
2305
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
2298
2306
|
proxy?: boolean | undefined;
|
|
2307
|
+
credentials?: boolean | undefined;
|
|
2299
2308
|
}, {
|
|
2300
2309
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
2301
2310
|
proxy?: boolean | undefined;
|
|
2311
|
+
credentials?: boolean | undefined;
|
|
2302
2312
|
}>>;
|
|
2303
2313
|
examples: z.ZodOptional<z.ZodObject<{
|
|
2304
2314
|
defaults: z.ZodOptional<z.ZodEnum<["required", "all"]>>;
|
|
@@ -2354,6 +2364,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2354
2364
|
playground?: {
|
|
2355
2365
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
2356
2366
|
proxy?: boolean | undefined;
|
|
2367
|
+
credentials?: boolean | undefined;
|
|
2357
2368
|
} | undefined;
|
|
2358
2369
|
asyncapi?: string | string[] | {
|
|
2359
2370
|
source: string;
|
|
@@ -2384,6 +2395,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2384
2395
|
playground?: {
|
|
2385
2396
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
2386
2397
|
proxy?: boolean | undefined;
|
|
2398
|
+
credentials?: boolean | undefined;
|
|
2387
2399
|
} | undefined;
|
|
2388
2400
|
asyncapi?: string | string[] | {
|
|
2389
2401
|
source: string;
|
|
@@ -3849,6 +3861,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3849
3861
|
playground?: {
|
|
3850
3862
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
3851
3863
|
proxy?: boolean | undefined;
|
|
3864
|
+
credentials?: boolean | undefined;
|
|
3852
3865
|
} | undefined;
|
|
3853
3866
|
asyncapi?: string | string[] | {
|
|
3854
3867
|
source: string;
|
|
@@ -4201,6 +4214,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4201
4214
|
playground?: {
|
|
4202
4215
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
4203
4216
|
proxy?: boolean | undefined;
|
|
4217
|
+
credentials?: boolean | undefined;
|
|
4204
4218
|
} | undefined;
|
|
4205
4219
|
asyncapi?: string | string[] | {
|
|
4206
4220
|
source: string;
|
|
@@ -4512,12 +4526,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4512
4526
|
playground: z.ZodOptional<z.ZodObject<{
|
|
4513
4527
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
4514
4528
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
4529
|
+
credentials: z.ZodOptional<z.ZodBoolean>;
|
|
4515
4530
|
}, "strip", z.ZodTypeAny, {
|
|
4516
4531
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
4517
4532
|
proxy?: boolean | undefined;
|
|
4533
|
+
credentials?: boolean | undefined;
|
|
4518
4534
|
}, {
|
|
4519
4535
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
4520
4536
|
proxy?: boolean | undefined;
|
|
4537
|
+
credentials?: boolean | undefined;
|
|
4521
4538
|
}>>;
|
|
4522
4539
|
examples: z.ZodOptional<z.ZodObject<{
|
|
4523
4540
|
defaults: z.ZodOptional<z.ZodEnum<["required", "all"]>>;
|
|
@@ -4573,6 +4590,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4573
4590
|
playground?: {
|
|
4574
4591
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
4575
4592
|
proxy?: boolean | undefined;
|
|
4593
|
+
credentials?: boolean | undefined;
|
|
4576
4594
|
} | undefined;
|
|
4577
4595
|
asyncapi?: string | string[] | {
|
|
4578
4596
|
source: string;
|
|
@@ -4603,6 +4621,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4603
4621
|
playground?: {
|
|
4604
4622
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
4605
4623
|
proxy?: boolean | undefined;
|
|
4624
|
+
credentials?: boolean | undefined;
|
|
4606
4625
|
} | undefined;
|
|
4607
4626
|
asyncapi?: string | string[] | {
|
|
4608
4627
|
source: string;
|
|
@@ -6068,6 +6087,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6068
6087
|
playground?: {
|
|
6069
6088
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
6070
6089
|
proxy?: boolean | undefined;
|
|
6090
|
+
credentials?: boolean | undefined;
|
|
6071
6091
|
} | undefined;
|
|
6072
6092
|
asyncapi?: string | string[] | {
|
|
6073
6093
|
source: string;
|
|
@@ -6420,6 +6440,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6420
6440
|
playground?: {
|
|
6421
6441
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
6422
6442
|
proxy?: boolean | undefined;
|
|
6443
|
+
credentials?: boolean | undefined;
|
|
6423
6444
|
} | undefined;
|
|
6424
6445
|
asyncapi?: string | string[] | {
|
|
6425
6446
|
source: string;
|
|
@@ -6731,12 +6752,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6731
6752
|
playground: z.ZodOptional<z.ZodObject<{
|
|
6732
6753
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
6733
6754
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
6755
|
+
credentials: z.ZodOptional<z.ZodBoolean>;
|
|
6734
6756
|
}, "strip", z.ZodTypeAny, {
|
|
6735
6757
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
6736
6758
|
proxy?: boolean | undefined;
|
|
6759
|
+
credentials?: boolean | undefined;
|
|
6737
6760
|
}, {
|
|
6738
6761
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
6739
6762
|
proxy?: boolean | undefined;
|
|
6763
|
+
credentials?: boolean | undefined;
|
|
6740
6764
|
}>>;
|
|
6741
6765
|
examples: z.ZodOptional<z.ZodObject<{
|
|
6742
6766
|
defaults: z.ZodOptional<z.ZodEnum<["required", "all"]>>;
|
|
@@ -6792,6 +6816,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6792
6816
|
playground?: {
|
|
6793
6817
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
6794
6818
|
proxy?: boolean | undefined;
|
|
6819
|
+
credentials?: boolean | undefined;
|
|
6795
6820
|
} | undefined;
|
|
6796
6821
|
asyncapi?: string | string[] | {
|
|
6797
6822
|
source: string;
|
|
@@ -6822,6 +6847,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6822
6847
|
playground?: {
|
|
6823
6848
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
6824
6849
|
proxy?: boolean | undefined;
|
|
6850
|
+
credentials?: boolean | undefined;
|
|
6825
6851
|
} | undefined;
|
|
6826
6852
|
asyncapi?: string | string[] | {
|
|
6827
6853
|
source: string;
|
|
@@ -8287,6 +8313,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8287
8313
|
playground?: {
|
|
8288
8314
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
8289
8315
|
proxy?: boolean | undefined;
|
|
8316
|
+
credentials?: boolean | undefined;
|
|
8290
8317
|
} | undefined;
|
|
8291
8318
|
asyncapi?: string | string[] | {
|
|
8292
8319
|
source: string;
|
|
@@ -8639,6 +8666,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8639
8666
|
playground?: {
|
|
8640
8667
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
8641
8668
|
proxy?: boolean | undefined;
|
|
8669
|
+
credentials?: boolean | undefined;
|
|
8642
8670
|
} | undefined;
|
|
8643
8671
|
asyncapi?: string | string[] | {
|
|
8644
8672
|
source: string;
|
|
@@ -8950,12 +8978,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8950
8978
|
playground: z.ZodOptional<z.ZodObject<{
|
|
8951
8979
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
8952
8980
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
8981
|
+
credentials: z.ZodOptional<z.ZodBoolean>;
|
|
8953
8982
|
}, "strip", z.ZodTypeAny, {
|
|
8954
8983
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
8955
8984
|
proxy?: boolean | undefined;
|
|
8985
|
+
credentials?: boolean | undefined;
|
|
8956
8986
|
}, {
|
|
8957
8987
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
8958
8988
|
proxy?: boolean | undefined;
|
|
8989
|
+
credentials?: boolean | undefined;
|
|
8959
8990
|
}>>;
|
|
8960
8991
|
examples: z.ZodOptional<z.ZodObject<{
|
|
8961
8992
|
defaults: z.ZodOptional<z.ZodEnum<["required", "all"]>>;
|
|
@@ -9011,6 +9042,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9011
9042
|
playground?: {
|
|
9012
9043
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
9013
9044
|
proxy?: boolean | undefined;
|
|
9045
|
+
credentials?: boolean | undefined;
|
|
9014
9046
|
} | undefined;
|
|
9015
9047
|
asyncapi?: string | string[] | {
|
|
9016
9048
|
source: string;
|
|
@@ -9041,6 +9073,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9041
9073
|
playground?: {
|
|
9042
9074
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
9043
9075
|
proxy?: boolean | undefined;
|
|
9076
|
+
credentials?: boolean | undefined;
|
|
9044
9077
|
} | undefined;
|
|
9045
9078
|
asyncapi?: string | string[] | {
|
|
9046
9079
|
source: string;
|
|
@@ -10506,6 +10539,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10506
10539
|
playground?: {
|
|
10507
10540
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
10508
10541
|
proxy?: boolean | undefined;
|
|
10542
|
+
credentials?: boolean | undefined;
|
|
10509
10543
|
} | undefined;
|
|
10510
10544
|
asyncapi?: string | string[] | {
|
|
10511
10545
|
source: string;
|
|
@@ -10858,6 +10892,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10858
10892
|
playground?: {
|
|
10859
10893
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
10860
10894
|
proxy?: boolean | undefined;
|
|
10895
|
+
credentials?: boolean | undefined;
|
|
10861
10896
|
} | undefined;
|
|
10862
10897
|
asyncapi?: string | string[] | {
|
|
10863
10898
|
source: string;
|
|
@@ -11169,12 +11204,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11169
11204
|
playground: z.ZodOptional<z.ZodObject<{
|
|
11170
11205
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
11171
11206
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
11207
|
+
credentials: z.ZodOptional<z.ZodBoolean>;
|
|
11172
11208
|
}, "strip", z.ZodTypeAny, {
|
|
11173
11209
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
11174
11210
|
proxy?: boolean | undefined;
|
|
11211
|
+
credentials?: boolean | undefined;
|
|
11175
11212
|
}, {
|
|
11176
11213
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
11177
11214
|
proxy?: boolean | undefined;
|
|
11215
|
+
credentials?: boolean | undefined;
|
|
11178
11216
|
}>>;
|
|
11179
11217
|
examples: z.ZodOptional<z.ZodObject<{
|
|
11180
11218
|
defaults: z.ZodOptional<z.ZodEnum<["required", "all"]>>;
|
|
@@ -11230,6 +11268,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11230
11268
|
playground?: {
|
|
11231
11269
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
11232
11270
|
proxy?: boolean | undefined;
|
|
11271
|
+
credentials?: boolean | undefined;
|
|
11233
11272
|
} | undefined;
|
|
11234
11273
|
asyncapi?: string | string[] | {
|
|
11235
11274
|
source: string;
|
|
@@ -11260,6 +11299,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11260
11299
|
playground?: {
|
|
11261
11300
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
11262
11301
|
proxy?: boolean | undefined;
|
|
11302
|
+
credentials?: boolean | undefined;
|
|
11263
11303
|
} | undefined;
|
|
11264
11304
|
asyncapi?: string | string[] | {
|
|
11265
11305
|
source: string;
|
|
@@ -12725,6 +12765,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12725
12765
|
playground?: {
|
|
12726
12766
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
12727
12767
|
proxy?: boolean | undefined;
|
|
12768
|
+
credentials?: boolean | undefined;
|
|
12728
12769
|
} | undefined;
|
|
12729
12770
|
asyncapi?: string | string[] | {
|
|
12730
12771
|
source: string;
|
|
@@ -13077,6 +13118,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13077
13118
|
playground?: {
|
|
13078
13119
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
13079
13120
|
proxy?: boolean | undefined;
|
|
13121
|
+
credentials?: boolean | undefined;
|
|
13080
13122
|
} | undefined;
|
|
13081
13123
|
asyncapi?: string | string[] | {
|
|
13082
13124
|
source: string;
|
|
@@ -13388,12 +13430,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13388
13430
|
playground: z.ZodOptional<z.ZodObject<{
|
|
13389
13431
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
13390
13432
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
13433
|
+
credentials: z.ZodOptional<z.ZodBoolean>;
|
|
13391
13434
|
}, "strip", z.ZodTypeAny, {
|
|
13392
13435
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
13393
13436
|
proxy?: boolean | undefined;
|
|
13437
|
+
credentials?: boolean | undefined;
|
|
13394
13438
|
}, {
|
|
13395
13439
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
13396
13440
|
proxy?: boolean | undefined;
|
|
13441
|
+
credentials?: boolean | undefined;
|
|
13397
13442
|
}>>;
|
|
13398
13443
|
examples: z.ZodOptional<z.ZodObject<{
|
|
13399
13444
|
defaults: z.ZodOptional<z.ZodEnum<["required", "all"]>>;
|
|
@@ -13449,6 +13494,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13449
13494
|
playground?: {
|
|
13450
13495
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
13451
13496
|
proxy?: boolean | undefined;
|
|
13497
|
+
credentials?: boolean | undefined;
|
|
13452
13498
|
} | undefined;
|
|
13453
13499
|
asyncapi?: string | string[] | {
|
|
13454
13500
|
source: string;
|
|
@@ -13479,6 +13525,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13479
13525
|
playground?: {
|
|
13480
13526
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
13481
13527
|
proxy?: boolean | undefined;
|
|
13528
|
+
credentials?: boolean | undefined;
|
|
13482
13529
|
} | undefined;
|
|
13483
13530
|
asyncapi?: string | string[] | {
|
|
13484
13531
|
source: string;
|
|
@@ -14944,6 +14991,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14944
14991
|
playground?: {
|
|
14945
14992
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
14946
14993
|
proxy?: boolean | undefined;
|
|
14994
|
+
credentials?: boolean | undefined;
|
|
14947
14995
|
} | undefined;
|
|
14948
14996
|
asyncapi?: string | string[] | {
|
|
14949
14997
|
source: string;
|
|
@@ -15296,6 +15344,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15296
15344
|
playground?: {
|
|
15297
15345
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
15298
15346
|
proxy?: boolean | undefined;
|
|
15347
|
+
credentials?: boolean | undefined;
|
|
15299
15348
|
} | undefined;
|
|
15300
15349
|
asyncapi?: string | string[] | {
|
|
15301
15350
|
source: string;
|
|
@@ -15607,12 +15656,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15607
15656
|
playground: z.ZodOptional<z.ZodObject<{
|
|
15608
15657
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
15609
15658
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
15659
|
+
credentials: z.ZodOptional<z.ZodBoolean>;
|
|
15610
15660
|
}, "strip", z.ZodTypeAny, {
|
|
15611
15661
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
15612
15662
|
proxy?: boolean | undefined;
|
|
15663
|
+
credentials?: boolean | undefined;
|
|
15613
15664
|
}, {
|
|
15614
15665
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
15615
15666
|
proxy?: boolean | undefined;
|
|
15667
|
+
credentials?: boolean | undefined;
|
|
15616
15668
|
}>>;
|
|
15617
15669
|
examples: z.ZodOptional<z.ZodObject<{
|
|
15618
15670
|
defaults: z.ZodOptional<z.ZodEnum<["required", "all"]>>;
|
|
@@ -15668,6 +15720,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15668
15720
|
playground?: {
|
|
15669
15721
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
15670
15722
|
proxy?: boolean | undefined;
|
|
15723
|
+
credentials?: boolean | undefined;
|
|
15671
15724
|
} | undefined;
|
|
15672
15725
|
asyncapi?: string | string[] | {
|
|
15673
15726
|
source: string;
|
|
@@ -15698,6 +15751,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15698
15751
|
playground?: {
|
|
15699
15752
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
15700
15753
|
proxy?: boolean | undefined;
|
|
15754
|
+
credentials?: boolean | undefined;
|
|
15701
15755
|
} | undefined;
|
|
15702
15756
|
asyncapi?: string | string[] | {
|
|
15703
15757
|
source: string;
|
|
@@ -17163,6 +17217,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17163
17217
|
playground?: {
|
|
17164
17218
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
17165
17219
|
proxy?: boolean | undefined;
|
|
17220
|
+
credentials?: boolean | undefined;
|
|
17166
17221
|
} | undefined;
|
|
17167
17222
|
asyncapi?: string | string[] | {
|
|
17168
17223
|
source: string;
|
|
@@ -17515,6 +17570,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17515
17570
|
playground?: {
|
|
17516
17571
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
17517
17572
|
proxy?: boolean | undefined;
|
|
17573
|
+
credentials?: boolean | undefined;
|
|
17518
17574
|
} | undefined;
|
|
17519
17575
|
asyncapi?: string | string[] | {
|
|
17520
17576
|
source: string;
|
|
@@ -17826,12 +17882,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17826
17882
|
playground: z.ZodOptional<z.ZodObject<{
|
|
17827
17883
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
17828
17884
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
17885
|
+
credentials: z.ZodOptional<z.ZodBoolean>;
|
|
17829
17886
|
}, "strip", z.ZodTypeAny, {
|
|
17830
17887
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
17831
17888
|
proxy?: boolean | undefined;
|
|
17889
|
+
credentials?: boolean | undefined;
|
|
17832
17890
|
}, {
|
|
17833
17891
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
17834
17892
|
proxy?: boolean | undefined;
|
|
17893
|
+
credentials?: boolean | undefined;
|
|
17835
17894
|
}>>;
|
|
17836
17895
|
examples: z.ZodOptional<z.ZodObject<{
|
|
17837
17896
|
defaults: z.ZodOptional<z.ZodEnum<["required", "all"]>>;
|
|
@@ -17887,6 +17946,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17887
17946
|
playground?: {
|
|
17888
17947
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
17889
17948
|
proxy?: boolean | undefined;
|
|
17949
|
+
credentials?: boolean | undefined;
|
|
17890
17950
|
} | undefined;
|
|
17891
17951
|
asyncapi?: string | string[] | {
|
|
17892
17952
|
source: string;
|
|
@@ -17917,6 +17977,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17917
17977
|
playground?: {
|
|
17918
17978
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
17919
17979
|
proxy?: boolean | undefined;
|
|
17980
|
+
credentials?: boolean | undefined;
|
|
17920
17981
|
} | undefined;
|
|
17921
17982
|
asyncapi?: string | string[] | {
|
|
17922
17983
|
source: string;
|
|
@@ -19382,6 +19443,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19382
19443
|
playground?: {
|
|
19383
19444
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
19384
19445
|
proxy?: boolean | undefined;
|
|
19446
|
+
credentials?: boolean | undefined;
|
|
19385
19447
|
} | undefined;
|
|
19386
19448
|
asyncapi?: string | string[] | {
|
|
19387
19449
|
source: string;
|
|
@@ -19734,6 +19796,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19734
19796
|
playground?: {
|
|
19735
19797
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
19736
19798
|
proxy?: boolean | undefined;
|
|
19799
|
+
credentials?: boolean | undefined;
|
|
19737
19800
|
} | undefined;
|
|
19738
19801
|
asyncapi?: string | string[] | {
|
|
19739
19802
|
source: string;
|
|
@@ -20046,12 +20109,15 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
20046
20109
|
playground: z.ZodOptional<z.ZodObject<{
|
|
20047
20110
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
20048
20111
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
20112
|
+
credentials: z.ZodOptional<z.ZodBoolean>;
|
|
20049
20113
|
}, "strip", z.ZodTypeAny, {
|
|
20050
20114
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
20051
20115
|
proxy?: boolean | undefined;
|
|
20116
|
+
credentials?: boolean | undefined;
|
|
20052
20117
|
}, {
|
|
20053
20118
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
20054
20119
|
proxy?: boolean | undefined;
|
|
20120
|
+
credentials?: boolean | undefined;
|
|
20055
20121
|
}>>;
|
|
20056
20122
|
examples: z.ZodOptional<z.ZodObject<{
|
|
20057
20123
|
defaults: z.ZodOptional<z.ZodEnum<["required", "all"]>>;
|
|
@@ -20107,6 +20173,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
20107
20173
|
playground?: {
|
|
20108
20174
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
20109
20175
|
proxy?: boolean | undefined;
|
|
20176
|
+
credentials?: boolean | undefined;
|
|
20110
20177
|
} | undefined;
|
|
20111
20178
|
asyncapi?: string | string[] | {
|
|
20112
20179
|
source: string;
|
|
@@ -20137,6 +20204,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
20137
20204
|
playground?: {
|
|
20138
20205
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
20139
20206
|
proxy?: boolean | undefined;
|
|
20207
|
+
credentials?: boolean | undefined;
|
|
20140
20208
|
} | undefined;
|
|
20141
20209
|
asyncapi?: string | string[] | {
|
|
20142
20210
|
source: string;
|
|
@@ -21602,6 +21670,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
21602
21670
|
playground?: {
|
|
21603
21671
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
21604
21672
|
proxy?: boolean | undefined;
|
|
21673
|
+
credentials?: boolean | undefined;
|
|
21605
21674
|
} | undefined;
|
|
21606
21675
|
asyncapi?: string | string[] | {
|
|
21607
21676
|
source: string;
|
|
@@ -21954,6 +22023,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
21954
22023
|
playground?: {
|
|
21955
22024
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
21956
22025
|
proxy?: boolean | undefined;
|
|
22026
|
+
credentials?: boolean | undefined;
|
|
21957
22027
|
} | undefined;
|
|
21958
22028
|
asyncapi?: string | string[] | {
|
|
21959
22029
|
source: string;
|
|
@@ -30,12 +30,15 @@ export declare const apiSchema: z.ZodObject<{
|
|
|
30
30
|
playground: z.ZodOptional<z.ZodObject<{
|
|
31
31
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
32
32
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
33
|
+
credentials: z.ZodOptional<z.ZodBoolean>;
|
|
33
34
|
}, "strip", z.ZodTypeAny, {
|
|
34
35
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
35
36
|
proxy?: boolean | undefined;
|
|
37
|
+
credentials?: boolean | undefined;
|
|
36
38
|
}, {
|
|
37
39
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
38
40
|
proxy?: boolean | undefined;
|
|
41
|
+
credentials?: boolean | undefined;
|
|
39
42
|
}>>;
|
|
40
43
|
examples: z.ZodOptional<z.ZodObject<{
|
|
41
44
|
defaults: z.ZodOptional<z.ZodEnum<["required", "all"]>>;
|
|
@@ -91,6 +94,7 @@ export declare const apiSchema: z.ZodObject<{
|
|
|
91
94
|
playground?: {
|
|
92
95
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
93
96
|
proxy?: boolean | undefined;
|
|
97
|
+
credentials?: boolean | undefined;
|
|
94
98
|
} | undefined;
|
|
95
99
|
asyncapi?: string | string[] | {
|
|
96
100
|
source: string;
|
|
@@ -121,6 +125,7 @@ export declare const apiSchema: z.ZodObject<{
|
|
|
121
125
|
playground?: {
|
|
122
126
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
123
127
|
proxy?: boolean | undefined;
|
|
128
|
+
credentials?: boolean | undefined;
|
|
124
129
|
} | undefined;
|
|
125
130
|
asyncapi?: string | string[] | {
|
|
126
131
|
source: string;
|
|
@@ -24,6 +24,10 @@ export const apiSchema = z
|
|
|
24
24
|
.boolean()
|
|
25
25
|
.optional()
|
|
26
26
|
.describe('Whether to pass API requests through a proxy server. Defaults to `true`.'),
|
|
27
|
+
credentials: z
|
|
28
|
+
.boolean()
|
|
29
|
+
.optional()
|
|
30
|
+
.describe('Whether to include cookies/auth for cross-origin requests when proxy is disabled. Defaults to `false`.'),
|
|
27
31
|
})
|
|
28
32
|
.optional()
|
|
29
33
|
.describe('Configurations for the API playground'),
|
|
@@ -71,12 +71,15 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
71
71
|
playground: z.ZodOptional<z.ZodObject<{
|
|
72
72
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
73
73
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
74
|
+
credentials: z.ZodOptional<z.ZodBoolean>;
|
|
74
75
|
}, "strip", z.ZodTypeAny, {
|
|
75
76
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
76
77
|
proxy?: boolean | undefined;
|
|
78
|
+
credentials?: boolean | undefined;
|
|
77
79
|
}, {
|
|
78
80
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
79
81
|
proxy?: boolean | undefined;
|
|
82
|
+
credentials?: boolean | undefined;
|
|
80
83
|
}>>;
|
|
81
84
|
examples: z.ZodOptional<z.ZodObject<{
|
|
82
85
|
defaults: z.ZodOptional<z.ZodEnum<["required", "all"]>>;
|
|
@@ -132,6 +135,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
132
135
|
playground?: {
|
|
133
136
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
134
137
|
proxy?: boolean | undefined;
|
|
138
|
+
credentials?: boolean | undefined;
|
|
135
139
|
} | undefined;
|
|
136
140
|
asyncapi?: string | string[] | {
|
|
137
141
|
source: string;
|
|
@@ -162,6 +166,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
162
166
|
playground?: {
|
|
163
167
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
164
168
|
proxy?: boolean | undefined;
|
|
169
|
+
credentials?: boolean | undefined;
|
|
165
170
|
} | undefined;
|
|
166
171
|
asyncapi?: string | string[] | {
|
|
167
172
|
source: string;
|
|
@@ -1627,6 +1632,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1627
1632
|
playground?: {
|
|
1628
1633
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
1629
1634
|
proxy?: boolean | undefined;
|
|
1635
|
+
credentials?: boolean | undefined;
|
|
1630
1636
|
} | undefined;
|
|
1631
1637
|
asyncapi?: string | string[] | {
|
|
1632
1638
|
source: string;
|
|
@@ -1979,6 +1985,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1979
1985
|
playground?: {
|
|
1980
1986
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
1981
1987
|
proxy?: boolean | undefined;
|
|
1988
|
+
credentials?: boolean | undefined;
|
|
1982
1989
|
} | undefined;
|
|
1983
1990
|
asyncapi?: string | string[] | {
|
|
1984
1991
|
source: string;
|
|
@@ -71,12 +71,15 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
71
71
|
playground: z.ZodOptional<z.ZodObject<{
|
|
72
72
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
73
73
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
74
|
+
credentials: z.ZodOptional<z.ZodBoolean>;
|
|
74
75
|
}, "strip", z.ZodTypeAny, {
|
|
75
76
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
76
77
|
proxy?: boolean | undefined;
|
|
78
|
+
credentials?: boolean | undefined;
|
|
77
79
|
}, {
|
|
78
80
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
79
81
|
proxy?: boolean | undefined;
|
|
82
|
+
credentials?: boolean | undefined;
|
|
80
83
|
}>>;
|
|
81
84
|
examples: z.ZodOptional<z.ZodObject<{
|
|
82
85
|
defaults: z.ZodOptional<z.ZodEnum<["required", "all"]>>;
|
|
@@ -132,6 +135,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
132
135
|
playground?: {
|
|
133
136
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
134
137
|
proxy?: boolean | undefined;
|
|
138
|
+
credentials?: boolean | undefined;
|
|
135
139
|
} | undefined;
|
|
136
140
|
asyncapi?: string | string[] | {
|
|
137
141
|
source: string;
|
|
@@ -162,6 +166,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
162
166
|
playground?: {
|
|
163
167
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
164
168
|
proxy?: boolean | undefined;
|
|
169
|
+
credentials?: boolean | undefined;
|
|
165
170
|
} | undefined;
|
|
166
171
|
asyncapi?: string | string[] | {
|
|
167
172
|
source: string;
|
|
@@ -1627,6 +1632,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1627
1632
|
playground?: {
|
|
1628
1633
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
1629
1634
|
proxy?: boolean | undefined;
|
|
1635
|
+
credentials?: boolean | undefined;
|
|
1630
1636
|
} | undefined;
|
|
1631
1637
|
asyncapi?: string | string[] | {
|
|
1632
1638
|
source: string;
|
|
@@ -1979,6 +1985,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1979
1985
|
playground?: {
|
|
1980
1986
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
1981
1987
|
proxy?: boolean | undefined;
|
|
1988
|
+
credentials?: boolean | undefined;
|
|
1982
1989
|
} | undefined;
|
|
1983
1990
|
asyncapi?: string | string[] | {
|
|
1984
1991
|
source: string;
|
|
@@ -71,12 +71,15 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
71
71
|
playground: z.ZodOptional<z.ZodObject<{
|
|
72
72
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
73
73
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
74
|
+
credentials: z.ZodOptional<z.ZodBoolean>;
|
|
74
75
|
}, "strip", z.ZodTypeAny, {
|
|
75
76
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
76
77
|
proxy?: boolean | undefined;
|
|
78
|
+
credentials?: boolean | undefined;
|
|
77
79
|
}, {
|
|
78
80
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
79
81
|
proxy?: boolean | undefined;
|
|
82
|
+
credentials?: boolean | undefined;
|
|
80
83
|
}>>;
|
|
81
84
|
examples: z.ZodOptional<z.ZodObject<{
|
|
82
85
|
defaults: z.ZodOptional<z.ZodEnum<["required", "all"]>>;
|
|
@@ -132,6 +135,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
132
135
|
playground?: {
|
|
133
136
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
134
137
|
proxy?: boolean | undefined;
|
|
138
|
+
credentials?: boolean | undefined;
|
|
135
139
|
} | undefined;
|
|
136
140
|
asyncapi?: string | string[] | {
|
|
137
141
|
source: string;
|
|
@@ -162,6 +166,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
162
166
|
playground?: {
|
|
163
167
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
164
168
|
proxy?: boolean | undefined;
|
|
169
|
+
credentials?: boolean | undefined;
|
|
165
170
|
} | undefined;
|
|
166
171
|
asyncapi?: string | string[] | {
|
|
167
172
|
source: string;
|
|
@@ -1627,6 +1632,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1627
1632
|
playground?: {
|
|
1628
1633
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
1629
1634
|
proxy?: boolean | undefined;
|
|
1635
|
+
credentials?: boolean | undefined;
|
|
1630
1636
|
} | undefined;
|
|
1631
1637
|
asyncapi?: string | string[] | {
|
|
1632
1638
|
source: string;
|
|
@@ -1979,6 +1985,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1979
1985
|
playground?: {
|
|
1980
1986
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
1981
1987
|
proxy?: boolean | undefined;
|
|
1988
|
+
credentials?: boolean | undefined;
|
|
1982
1989
|
} | undefined;
|
|
1983
1990
|
asyncapi?: string | string[] | {
|
|
1984
1991
|
source: string;
|