@mintlify/validation 0.1.639 → 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/properties/reusable/href.js +6 -1
- 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
|
@@ -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;
|
|
@@ -71,12 +71,15 @@ export declare const lumaConfigSchema: 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 lumaConfigSchema: 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 lumaConfigSchema: 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 lumaConfigSchema: 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 lumaConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mapleConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 mintConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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 palmConfigSchema: 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;
|
|
@@ -70,12 +70,15 @@ export declare const standardConfigSchema: {
|
|
|
70
70
|
playground: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
71
71
|
display: import("zod").ZodOptional<import("zod").ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
72
72
|
proxy: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
73
|
+
credentials: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
73
74
|
}, "strip", import("zod").ZodTypeAny, {
|
|
74
75
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
75
76
|
proxy?: boolean | undefined;
|
|
77
|
+
credentials?: boolean | undefined;
|
|
76
78
|
}, {
|
|
77
79
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
78
80
|
proxy?: boolean | undefined;
|
|
81
|
+
credentials?: boolean | undefined;
|
|
79
82
|
}>>;
|
|
80
83
|
examples: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
81
84
|
defaults: import("zod").ZodOptional<import("zod").ZodEnum<["required", "all"]>>;
|
|
@@ -131,6 +134,7 @@ export declare const standardConfigSchema: {
|
|
|
131
134
|
playground?: {
|
|
132
135
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
133
136
|
proxy?: boolean | undefined;
|
|
137
|
+
credentials?: boolean | undefined;
|
|
134
138
|
} | undefined;
|
|
135
139
|
asyncapi?: string | string[] | {
|
|
136
140
|
source: string;
|
|
@@ -161,6 +165,7 @@ export declare const standardConfigSchema: {
|
|
|
161
165
|
playground?: {
|
|
162
166
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
163
167
|
proxy?: boolean | undefined;
|
|
168
|
+
credentials?: boolean | undefined;
|
|
164
169
|
} | undefined;
|
|
165
170
|
asyncapi?: string | string[] | {
|
|
166
171
|
source: string;
|
|
@@ -71,12 +71,15 @@ export declare const sequoiaConfigSchema: 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 sequoiaConfigSchema: 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 sequoiaConfigSchema: 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 sequoiaConfigSchema: 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 sequoiaConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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;
|
|
@@ -610,6 +610,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
610
610
|
playground?: {
|
|
611
611
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
612
612
|
proxy?: boolean | undefined;
|
|
613
|
+
credentials?: boolean | undefined;
|
|
613
614
|
} | undefined;
|
|
614
615
|
asyncapi?: string | string[] | {
|
|
615
616
|
source: string;
|
|
@@ -962,6 +963,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
962
963
|
playground?: {
|
|
963
964
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
964
965
|
proxy?: boolean | undefined;
|
|
966
|
+
credentials?: boolean | undefined;
|
|
965
967
|
} | undefined;
|
|
966
968
|
asyncapi?: string | string[] | {
|
|
967
969
|
source: string;
|
|
@@ -1314,6 +1316,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1314
1316
|
playground?: {
|
|
1315
1317
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
1316
1318
|
proxy?: boolean | undefined;
|
|
1319
|
+
credentials?: boolean | undefined;
|
|
1317
1320
|
} | undefined;
|
|
1318
1321
|
asyncapi?: string | string[] | {
|
|
1319
1322
|
source: string;
|
|
@@ -1666,6 +1669,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1666
1669
|
playground?: {
|
|
1667
1670
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
1668
1671
|
proxy?: boolean | undefined;
|
|
1672
|
+
credentials?: boolean | undefined;
|
|
1669
1673
|
} | undefined;
|
|
1670
1674
|
asyncapi?: string | string[] | {
|
|
1671
1675
|
source: string;
|
|
@@ -2018,6 +2022,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2018
2022
|
playground?: {
|
|
2019
2023
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
2020
2024
|
proxy?: boolean | undefined;
|
|
2025
|
+
credentials?: boolean | undefined;
|
|
2021
2026
|
} | undefined;
|
|
2022
2027
|
asyncapi?: string | string[] | {
|
|
2023
2028
|
source: string;
|
|
@@ -2370,6 +2375,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2370
2375
|
playground?: {
|
|
2371
2376
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
2372
2377
|
proxy?: boolean | undefined;
|
|
2378
|
+
credentials?: boolean | undefined;
|
|
2373
2379
|
} | undefined;
|
|
2374
2380
|
asyncapi?: string | string[] | {
|
|
2375
2381
|
source: string;
|
|
@@ -2722,6 +2728,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2722
2728
|
playground?: {
|
|
2723
2729
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
2724
2730
|
proxy?: boolean | undefined;
|
|
2731
|
+
credentials?: boolean | undefined;
|
|
2725
2732
|
} | undefined;
|
|
2726
2733
|
asyncapi?: string | string[] | {
|
|
2727
2734
|
source: string;
|
|
@@ -3074,6 +3081,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3074
3081
|
playground?: {
|
|
3075
3082
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
3076
3083
|
proxy?: boolean | undefined;
|
|
3084
|
+
credentials?: boolean | undefined;
|
|
3077
3085
|
} | undefined;
|
|
3078
3086
|
asyncapi?: string | string[] | {
|
|
3079
3087
|
source: string;
|
|
@@ -3426,6 +3434,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3426
3434
|
playground?: {
|
|
3427
3435
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
3428
3436
|
proxy?: boolean | undefined;
|
|
3437
|
+
credentials?: boolean | undefined;
|
|
3429
3438
|
} | undefined;
|
|
3430
3439
|
asyncapi?: string | string[] | {
|
|
3431
3440
|
source: string;
|
|
@@ -3781,6 +3790,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3781
3790
|
playground?: {
|
|
3782
3791
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
3783
3792
|
proxy?: boolean | undefined;
|
|
3793
|
+
credentials?: boolean | undefined;
|
|
3784
3794
|
} | undefined;
|
|
3785
3795
|
asyncapi?: string | string[] | {
|
|
3786
3796
|
source: string;
|
|
@@ -4133,6 +4143,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4133
4143
|
playground?: {
|
|
4134
4144
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
4135
4145
|
proxy?: boolean | undefined;
|
|
4146
|
+
credentials?: boolean | undefined;
|
|
4136
4147
|
} | undefined;
|
|
4137
4148
|
asyncapi?: string | string[] | {
|
|
4138
4149
|
source: string;
|
|
@@ -4485,6 +4496,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4485
4496
|
playground?: {
|
|
4486
4497
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
4487
4498
|
proxy?: boolean | undefined;
|
|
4499
|
+
credentials?: boolean | undefined;
|
|
4488
4500
|
} | undefined;
|
|
4489
4501
|
asyncapi?: string | string[] | {
|
|
4490
4502
|
source: string;
|
|
@@ -4837,6 +4849,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4837
4849
|
playground?: {
|
|
4838
4850
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
4839
4851
|
proxy?: boolean | undefined;
|
|
4852
|
+
credentials?: boolean | undefined;
|
|
4840
4853
|
} | undefined;
|
|
4841
4854
|
asyncapi?: string | string[] | {
|
|
4842
4855
|
source: string;
|
|
@@ -5189,6 +5202,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5189
5202
|
playground?: {
|
|
5190
5203
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
5191
5204
|
proxy?: boolean | undefined;
|
|
5205
|
+
credentials?: boolean | undefined;
|
|
5192
5206
|
} | undefined;
|
|
5193
5207
|
asyncapi?: string | string[] | {
|
|
5194
5208
|
source: string;
|
|
@@ -5541,6 +5555,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5541
5555
|
playground?: {
|
|
5542
5556
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
5543
5557
|
proxy?: boolean | undefined;
|
|
5558
|
+
credentials?: boolean | undefined;
|
|
5544
5559
|
} | undefined;
|
|
5545
5560
|
asyncapi?: string | string[] | {
|
|
5546
5561
|
source: string;
|
|
@@ -5893,6 +5908,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5893
5908
|
playground?: {
|
|
5894
5909
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
5895
5910
|
proxy?: boolean | undefined;
|
|
5911
|
+
credentials?: boolean | undefined;
|
|
5896
5912
|
} | undefined;
|
|
5897
5913
|
asyncapi?: string | string[] | {
|
|
5898
5914
|
source: string;
|
|
@@ -6245,6 +6261,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6245
6261
|
playground?: {
|
|
6246
6262
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
6247
6263
|
proxy?: boolean | undefined;
|
|
6264
|
+
credentials?: boolean | undefined;
|
|
6248
6265
|
} | undefined;
|
|
6249
6266
|
asyncapi?: string | string[] | {
|
|
6250
6267
|
source: string;
|
|
@@ -6597,6 +6614,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6597
6614
|
playground?: {
|
|
6598
6615
|
display?: "auth" | "simple" | "none" | "interactive" | undefined;
|
|
6599
6616
|
proxy?: boolean | undefined;
|
|
6617
|
+
credentials?: boolean | undefined;
|
|
6600
6618
|
} | undefined;
|
|
6601
6619
|
asyncapi?: string | string[] | {
|
|
6602
6620
|
source: string;
|