@mintlify/validation 0.1.606 → 0.1.607
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 +190 -0
- package/dist/mint-config/schemas/v2/properties/api.d.ts +13 -0
- package/dist/mint-config/schemas/v2/properties/api.js +9 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +19 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +19 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +19 -0
- package/dist/mint-config/schemas/v2/themes/luma.d.ts +19 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +19 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +19 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +19 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +13 -0
- package/dist/mint-config/schemas/v2/themes/sequoia.d.ts +19 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +19 -0
- package/dist/mint-config/validateConfig.d.ts +54 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -94,6 +94,13 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
94
94
|
prefill?: boolean | undefined;
|
|
95
95
|
autogenerate?: boolean | undefined;
|
|
96
96
|
}>>;
|
|
97
|
+
spec: z.ZodOptional<z.ZodObject<{
|
|
98
|
+
download: z.ZodOptional<z.ZodBoolean>;
|
|
99
|
+
}, "strip", z.ZodTypeAny, {
|
|
100
|
+
download?: boolean | undefined;
|
|
101
|
+
}, {
|
|
102
|
+
download?: boolean | undefined;
|
|
103
|
+
}>>;
|
|
97
104
|
mdx: z.ZodOptional<z.ZodObject<{
|
|
98
105
|
auth: z.ZodOptional<z.ZodObject<{
|
|
99
106
|
method: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
|
|
@@ -141,6 +148,9 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
141
148
|
prefill?: boolean | undefined;
|
|
142
149
|
autogenerate?: boolean | undefined;
|
|
143
150
|
} | undefined;
|
|
151
|
+
spec?: {
|
|
152
|
+
download?: boolean | undefined;
|
|
153
|
+
} | undefined;
|
|
144
154
|
mdx?: {
|
|
145
155
|
server?: string | string[] | undefined;
|
|
146
156
|
auth?: {
|
|
@@ -170,6 +180,9 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
170
180
|
prefill?: boolean | undefined;
|
|
171
181
|
autogenerate?: boolean | undefined;
|
|
172
182
|
} | undefined;
|
|
183
|
+
spec?: {
|
|
184
|
+
download?: boolean | undefined;
|
|
185
|
+
} | undefined;
|
|
173
186
|
mdx?: {
|
|
174
187
|
server?: string | string[] | undefined;
|
|
175
188
|
auth?: {
|
|
@@ -1621,6 +1634,9 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1621
1634
|
prefill?: boolean | undefined;
|
|
1622
1635
|
autogenerate?: boolean | undefined;
|
|
1623
1636
|
} | undefined;
|
|
1637
|
+
spec?: {
|
|
1638
|
+
download?: boolean | undefined;
|
|
1639
|
+
} | undefined;
|
|
1624
1640
|
mdx?: {
|
|
1625
1641
|
server?: string | string[] | undefined;
|
|
1626
1642
|
auth?: {
|
|
@@ -1969,6 +1985,9 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1969
1985
|
prefill?: boolean | undefined;
|
|
1970
1986
|
autogenerate?: boolean | undefined;
|
|
1971
1987
|
} | undefined;
|
|
1988
|
+
spec?: {
|
|
1989
|
+
download?: boolean | undefined;
|
|
1990
|
+
} | undefined;
|
|
1972
1991
|
mdx?: {
|
|
1973
1992
|
server?: string | string[] | undefined;
|
|
1974
1993
|
auth?: {
|
|
@@ -94,6 +94,13 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
94
94
|
prefill?: boolean | undefined;
|
|
95
95
|
autogenerate?: boolean | undefined;
|
|
96
96
|
}>>;
|
|
97
|
+
spec: z.ZodOptional<z.ZodObject<{
|
|
98
|
+
download: z.ZodOptional<z.ZodBoolean>;
|
|
99
|
+
}, "strip", z.ZodTypeAny, {
|
|
100
|
+
download?: boolean | undefined;
|
|
101
|
+
}, {
|
|
102
|
+
download?: boolean | undefined;
|
|
103
|
+
}>>;
|
|
97
104
|
mdx: z.ZodOptional<z.ZodObject<{
|
|
98
105
|
auth: z.ZodOptional<z.ZodObject<{
|
|
99
106
|
method: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
|
|
@@ -141,6 +148,9 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
141
148
|
prefill?: boolean | undefined;
|
|
142
149
|
autogenerate?: boolean | undefined;
|
|
143
150
|
} | undefined;
|
|
151
|
+
spec?: {
|
|
152
|
+
download?: boolean | undefined;
|
|
153
|
+
} | undefined;
|
|
144
154
|
mdx?: {
|
|
145
155
|
server?: string | string[] | undefined;
|
|
146
156
|
auth?: {
|
|
@@ -170,6 +180,9 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
170
180
|
prefill?: boolean | undefined;
|
|
171
181
|
autogenerate?: boolean | undefined;
|
|
172
182
|
} | undefined;
|
|
183
|
+
spec?: {
|
|
184
|
+
download?: boolean | undefined;
|
|
185
|
+
} | undefined;
|
|
173
186
|
mdx?: {
|
|
174
187
|
server?: string | string[] | undefined;
|
|
175
188
|
auth?: {
|
|
@@ -1621,6 +1634,9 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
1621
1634
|
prefill?: boolean | undefined;
|
|
1622
1635
|
autogenerate?: boolean | undefined;
|
|
1623
1636
|
} | undefined;
|
|
1637
|
+
spec?: {
|
|
1638
|
+
download?: boolean | undefined;
|
|
1639
|
+
} | undefined;
|
|
1624
1640
|
mdx?: {
|
|
1625
1641
|
server?: string | string[] | undefined;
|
|
1626
1642
|
auth?: {
|
|
@@ -1969,6 +1985,9 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
1969
1985
|
prefill?: boolean | undefined;
|
|
1970
1986
|
autogenerate?: boolean | undefined;
|
|
1971
1987
|
} | undefined;
|
|
1988
|
+
spec?: {
|
|
1989
|
+
download?: boolean | undefined;
|
|
1990
|
+
} | undefined;
|
|
1972
1991
|
mdx?: {
|
|
1973
1992
|
server?: string | string[] | undefined;
|
|
1974
1993
|
auth?: {
|
|
@@ -94,6 +94,13 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
94
94
|
prefill?: boolean | undefined;
|
|
95
95
|
autogenerate?: boolean | undefined;
|
|
96
96
|
}>>;
|
|
97
|
+
spec: z.ZodOptional<z.ZodObject<{
|
|
98
|
+
download: z.ZodOptional<z.ZodBoolean>;
|
|
99
|
+
}, "strip", z.ZodTypeAny, {
|
|
100
|
+
download?: boolean | undefined;
|
|
101
|
+
}, {
|
|
102
|
+
download?: boolean | undefined;
|
|
103
|
+
}>>;
|
|
97
104
|
mdx: z.ZodOptional<z.ZodObject<{
|
|
98
105
|
auth: z.ZodOptional<z.ZodObject<{
|
|
99
106
|
method: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
|
|
@@ -141,6 +148,9 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
141
148
|
prefill?: boolean | undefined;
|
|
142
149
|
autogenerate?: boolean | undefined;
|
|
143
150
|
} | undefined;
|
|
151
|
+
spec?: {
|
|
152
|
+
download?: boolean | undefined;
|
|
153
|
+
} | undefined;
|
|
144
154
|
mdx?: {
|
|
145
155
|
server?: string | string[] | undefined;
|
|
146
156
|
auth?: {
|
|
@@ -170,6 +180,9 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
170
180
|
prefill?: boolean | undefined;
|
|
171
181
|
autogenerate?: boolean | undefined;
|
|
172
182
|
} | undefined;
|
|
183
|
+
spec?: {
|
|
184
|
+
download?: boolean | undefined;
|
|
185
|
+
} | undefined;
|
|
173
186
|
mdx?: {
|
|
174
187
|
server?: string | string[] | undefined;
|
|
175
188
|
auth?: {
|
|
@@ -1621,6 +1634,9 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1621
1634
|
prefill?: boolean | undefined;
|
|
1622
1635
|
autogenerate?: boolean | undefined;
|
|
1623
1636
|
} | undefined;
|
|
1637
|
+
spec?: {
|
|
1638
|
+
download?: boolean | undefined;
|
|
1639
|
+
} | undefined;
|
|
1624
1640
|
mdx?: {
|
|
1625
1641
|
server?: string | string[] | undefined;
|
|
1626
1642
|
auth?: {
|
|
@@ -1969,6 +1985,9 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1969
1985
|
prefill?: boolean | undefined;
|
|
1970
1986
|
autogenerate?: boolean | undefined;
|
|
1971
1987
|
} | undefined;
|
|
1988
|
+
spec?: {
|
|
1989
|
+
download?: boolean | undefined;
|
|
1990
|
+
} | undefined;
|
|
1972
1991
|
mdx?: {
|
|
1973
1992
|
server?: string | string[] | undefined;
|
|
1974
1993
|
auth?: {
|
|
@@ -94,6 +94,13 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
94
94
|
prefill?: boolean | undefined;
|
|
95
95
|
autogenerate?: boolean | undefined;
|
|
96
96
|
}>>;
|
|
97
|
+
spec: z.ZodOptional<z.ZodObject<{
|
|
98
|
+
download: z.ZodOptional<z.ZodBoolean>;
|
|
99
|
+
}, "strip", z.ZodTypeAny, {
|
|
100
|
+
download?: boolean | undefined;
|
|
101
|
+
}, {
|
|
102
|
+
download?: boolean | undefined;
|
|
103
|
+
}>>;
|
|
97
104
|
mdx: z.ZodOptional<z.ZodObject<{
|
|
98
105
|
auth: z.ZodOptional<z.ZodObject<{
|
|
99
106
|
method: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
|
|
@@ -141,6 +148,9 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
141
148
|
prefill?: boolean | undefined;
|
|
142
149
|
autogenerate?: boolean | undefined;
|
|
143
150
|
} | undefined;
|
|
151
|
+
spec?: {
|
|
152
|
+
download?: boolean | undefined;
|
|
153
|
+
} | undefined;
|
|
144
154
|
mdx?: {
|
|
145
155
|
server?: string | string[] | undefined;
|
|
146
156
|
auth?: {
|
|
@@ -170,6 +180,9 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
170
180
|
prefill?: boolean | undefined;
|
|
171
181
|
autogenerate?: boolean | undefined;
|
|
172
182
|
} | undefined;
|
|
183
|
+
spec?: {
|
|
184
|
+
download?: boolean | undefined;
|
|
185
|
+
} | undefined;
|
|
173
186
|
mdx?: {
|
|
174
187
|
server?: string | string[] | undefined;
|
|
175
188
|
auth?: {
|
|
@@ -1621,6 +1634,9 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1621
1634
|
prefill?: boolean | undefined;
|
|
1622
1635
|
autogenerate?: boolean | undefined;
|
|
1623
1636
|
} | undefined;
|
|
1637
|
+
spec?: {
|
|
1638
|
+
download?: boolean | undefined;
|
|
1639
|
+
} | undefined;
|
|
1624
1640
|
mdx?: {
|
|
1625
1641
|
server?: string | string[] | undefined;
|
|
1626
1642
|
auth?: {
|
|
@@ -1969,6 +1985,9 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1969
1985
|
prefill?: boolean | undefined;
|
|
1970
1986
|
autogenerate?: boolean | undefined;
|
|
1971
1987
|
} | undefined;
|
|
1988
|
+
spec?: {
|
|
1989
|
+
download?: boolean | undefined;
|
|
1990
|
+
} | undefined;
|
|
1972
1991
|
mdx?: {
|
|
1973
1992
|
server?: string | string[] | undefined;
|
|
1974
1993
|
auth?: {
|
|
@@ -94,6 +94,13 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
94
94
|
prefill?: boolean | undefined;
|
|
95
95
|
autogenerate?: boolean | undefined;
|
|
96
96
|
}>>;
|
|
97
|
+
spec: z.ZodOptional<z.ZodObject<{
|
|
98
|
+
download: z.ZodOptional<z.ZodBoolean>;
|
|
99
|
+
}, "strip", z.ZodTypeAny, {
|
|
100
|
+
download?: boolean | undefined;
|
|
101
|
+
}, {
|
|
102
|
+
download?: boolean | undefined;
|
|
103
|
+
}>>;
|
|
97
104
|
mdx: z.ZodOptional<z.ZodObject<{
|
|
98
105
|
auth: z.ZodOptional<z.ZodObject<{
|
|
99
106
|
method: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
|
|
@@ -141,6 +148,9 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
141
148
|
prefill?: boolean | undefined;
|
|
142
149
|
autogenerate?: boolean | undefined;
|
|
143
150
|
} | undefined;
|
|
151
|
+
spec?: {
|
|
152
|
+
download?: boolean | undefined;
|
|
153
|
+
} | undefined;
|
|
144
154
|
mdx?: {
|
|
145
155
|
server?: string | string[] | undefined;
|
|
146
156
|
auth?: {
|
|
@@ -170,6 +180,9 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
170
180
|
prefill?: boolean | undefined;
|
|
171
181
|
autogenerate?: boolean | undefined;
|
|
172
182
|
} | undefined;
|
|
183
|
+
spec?: {
|
|
184
|
+
download?: boolean | undefined;
|
|
185
|
+
} | undefined;
|
|
173
186
|
mdx?: {
|
|
174
187
|
server?: string | string[] | undefined;
|
|
175
188
|
auth?: {
|
|
@@ -1621,6 +1634,9 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1621
1634
|
prefill?: boolean | undefined;
|
|
1622
1635
|
autogenerate?: boolean | undefined;
|
|
1623
1636
|
} | undefined;
|
|
1637
|
+
spec?: {
|
|
1638
|
+
download?: boolean | undefined;
|
|
1639
|
+
} | undefined;
|
|
1624
1640
|
mdx?: {
|
|
1625
1641
|
server?: string | string[] | undefined;
|
|
1626
1642
|
auth?: {
|
|
@@ -1969,6 +1985,9 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1969
1985
|
prefill?: boolean | undefined;
|
|
1970
1986
|
autogenerate?: boolean | undefined;
|
|
1971
1987
|
} | undefined;
|
|
1988
|
+
spec?: {
|
|
1989
|
+
download?: boolean | undefined;
|
|
1990
|
+
} | undefined;
|
|
1972
1991
|
mdx?: {
|
|
1973
1992
|
server?: string | string[] | undefined;
|
|
1974
1993
|
auth?: {
|
|
@@ -93,6 +93,13 @@ export declare const standardConfigSchema: {
|
|
|
93
93
|
prefill?: boolean | undefined;
|
|
94
94
|
autogenerate?: boolean | undefined;
|
|
95
95
|
}>>;
|
|
96
|
+
spec: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
97
|
+
download: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
98
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
99
|
+
download?: boolean | undefined;
|
|
100
|
+
}, {
|
|
101
|
+
download?: boolean | undefined;
|
|
102
|
+
}>>;
|
|
96
103
|
mdx: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
97
104
|
auth: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
98
105
|
method: import("zod").ZodOptional<import("zod").ZodEnum<["bearer", "basic", "key", "cobo"]>>;
|
|
@@ -140,6 +147,9 @@ export declare const standardConfigSchema: {
|
|
|
140
147
|
prefill?: boolean | undefined;
|
|
141
148
|
autogenerate?: boolean | undefined;
|
|
142
149
|
} | undefined;
|
|
150
|
+
spec?: {
|
|
151
|
+
download?: boolean | undefined;
|
|
152
|
+
} | undefined;
|
|
143
153
|
mdx?: {
|
|
144
154
|
server?: string | string[] | undefined;
|
|
145
155
|
auth?: {
|
|
@@ -169,6 +179,9 @@ export declare const standardConfigSchema: {
|
|
|
169
179
|
prefill?: boolean | undefined;
|
|
170
180
|
autogenerate?: boolean | undefined;
|
|
171
181
|
} | undefined;
|
|
182
|
+
spec?: {
|
|
183
|
+
download?: boolean | undefined;
|
|
184
|
+
} | undefined;
|
|
172
185
|
mdx?: {
|
|
173
186
|
server?: string | string[] | undefined;
|
|
174
187
|
auth?: {
|
|
@@ -94,6 +94,13 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
94
94
|
prefill?: boolean | undefined;
|
|
95
95
|
autogenerate?: boolean | undefined;
|
|
96
96
|
}>>;
|
|
97
|
+
spec: z.ZodOptional<z.ZodObject<{
|
|
98
|
+
download: z.ZodOptional<z.ZodBoolean>;
|
|
99
|
+
}, "strip", z.ZodTypeAny, {
|
|
100
|
+
download?: boolean | undefined;
|
|
101
|
+
}, {
|
|
102
|
+
download?: boolean | undefined;
|
|
103
|
+
}>>;
|
|
97
104
|
mdx: z.ZodOptional<z.ZodObject<{
|
|
98
105
|
auth: z.ZodOptional<z.ZodObject<{
|
|
99
106
|
method: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
|
|
@@ -141,6 +148,9 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
141
148
|
prefill?: boolean | undefined;
|
|
142
149
|
autogenerate?: boolean | undefined;
|
|
143
150
|
} | undefined;
|
|
151
|
+
spec?: {
|
|
152
|
+
download?: boolean | undefined;
|
|
153
|
+
} | undefined;
|
|
144
154
|
mdx?: {
|
|
145
155
|
server?: string | string[] | undefined;
|
|
146
156
|
auth?: {
|
|
@@ -170,6 +180,9 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
170
180
|
prefill?: boolean | undefined;
|
|
171
181
|
autogenerate?: boolean | undefined;
|
|
172
182
|
} | undefined;
|
|
183
|
+
spec?: {
|
|
184
|
+
download?: boolean | undefined;
|
|
185
|
+
} | undefined;
|
|
173
186
|
mdx?: {
|
|
174
187
|
server?: string | string[] | undefined;
|
|
175
188
|
auth?: {
|
|
@@ -1621,6 +1634,9 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
1621
1634
|
prefill?: boolean | undefined;
|
|
1622
1635
|
autogenerate?: boolean | undefined;
|
|
1623
1636
|
} | undefined;
|
|
1637
|
+
spec?: {
|
|
1638
|
+
download?: boolean | undefined;
|
|
1639
|
+
} | undefined;
|
|
1624
1640
|
mdx?: {
|
|
1625
1641
|
server?: string | string[] | undefined;
|
|
1626
1642
|
auth?: {
|
|
@@ -1969,6 +1985,9 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
1969
1985
|
prefill?: boolean | undefined;
|
|
1970
1986
|
autogenerate?: boolean | undefined;
|
|
1971
1987
|
} | undefined;
|
|
1988
|
+
spec?: {
|
|
1989
|
+
download?: boolean | undefined;
|
|
1990
|
+
} | undefined;
|
|
1972
1991
|
mdx?: {
|
|
1973
1992
|
server?: string | string[] | undefined;
|
|
1974
1993
|
auth?: {
|
|
@@ -94,6 +94,13 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
94
94
|
prefill?: boolean | undefined;
|
|
95
95
|
autogenerate?: boolean | undefined;
|
|
96
96
|
}>>;
|
|
97
|
+
spec: z.ZodOptional<z.ZodObject<{
|
|
98
|
+
download: z.ZodOptional<z.ZodBoolean>;
|
|
99
|
+
}, "strip", z.ZodTypeAny, {
|
|
100
|
+
download?: boolean | undefined;
|
|
101
|
+
}, {
|
|
102
|
+
download?: boolean | undefined;
|
|
103
|
+
}>>;
|
|
97
104
|
mdx: z.ZodOptional<z.ZodObject<{
|
|
98
105
|
auth: z.ZodOptional<z.ZodObject<{
|
|
99
106
|
method: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
|
|
@@ -141,6 +148,9 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
141
148
|
prefill?: boolean | undefined;
|
|
142
149
|
autogenerate?: boolean | undefined;
|
|
143
150
|
} | undefined;
|
|
151
|
+
spec?: {
|
|
152
|
+
download?: boolean | undefined;
|
|
153
|
+
} | undefined;
|
|
144
154
|
mdx?: {
|
|
145
155
|
server?: string | string[] | undefined;
|
|
146
156
|
auth?: {
|
|
@@ -170,6 +180,9 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
170
180
|
prefill?: boolean | undefined;
|
|
171
181
|
autogenerate?: boolean | undefined;
|
|
172
182
|
} | undefined;
|
|
183
|
+
spec?: {
|
|
184
|
+
download?: boolean | undefined;
|
|
185
|
+
} | undefined;
|
|
173
186
|
mdx?: {
|
|
174
187
|
server?: string | string[] | undefined;
|
|
175
188
|
auth?: {
|
|
@@ -1621,6 +1634,9 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1621
1634
|
prefill?: boolean | undefined;
|
|
1622
1635
|
autogenerate?: boolean | undefined;
|
|
1623
1636
|
} | undefined;
|
|
1637
|
+
spec?: {
|
|
1638
|
+
download?: boolean | undefined;
|
|
1639
|
+
} | undefined;
|
|
1624
1640
|
mdx?: {
|
|
1625
1641
|
server?: string | string[] | undefined;
|
|
1626
1642
|
auth?: {
|
|
@@ -1969,6 +1985,9 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1969
1985
|
prefill?: boolean | undefined;
|
|
1970
1986
|
autogenerate?: boolean | undefined;
|
|
1971
1987
|
} | undefined;
|
|
1988
|
+
spec?: {
|
|
1989
|
+
download?: boolean | undefined;
|
|
1990
|
+
} | undefined;
|
|
1972
1991
|
mdx?: {
|
|
1973
1992
|
server?: string | string[] | undefined;
|
|
1974
1993
|
auth?: {
|
|
@@ -614,6 +614,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
614
614
|
prefill?: boolean | undefined;
|
|
615
615
|
autogenerate?: boolean | undefined;
|
|
616
616
|
} | undefined;
|
|
617
|
+
spec?: {
|
|
618
|
+
download?: boolean | undefined;
|
|
619
|
+
} | undefined;
|
|
617
620
|
mdx?: {
|
|
618
621
|
server?: string | string[] | undefined;
|
|
619
622
|
auth?: {
|
|
@@ -962,6 +965,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
962
965
|
prefill?: boolean | undefined;
|
|
963
966
|
autogenerate?: boolean | undefined;
|
|
964
967
|
} | undefined;
|
|
968
|
+
spec?: {
|
|
969
|
+
download?: boolean | undefined;
|
|
970
|
+
} | undefined;
|
|
965
971
|
mdx?: {
|
|
966
972
|
server?: string | string[] | undefined;
|
|
967
973
|
auth?: {
|
|
@@ -1310,6 +1316,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1310
1316
|
prefill?: boolean | undefined;
|
|
1311
1317
|
autogenerate?: boolean | undefined;
|
|
1312
1318
|
} | undefined;
|
|
1319
|
+
spec?: {
|
|
1320
|
+
download?: boolean | undefined;
|
|
1321
|
+
} | undefined;
|
|
1313
1322
|
mdx?: {
|
|
1314
1323
|
server?: string | string[] | undefined;
|
|
1315
1324
|
auth?: {
|
|
@@ -1658,6 +1667,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1658
1667
|
prefill?: boolean | undefined;
|
|
1659
1668
|
autogenerate?: boolean | undefined;
|
|
1660
1669
|
} | undefined;
|
|
1670
|
+
spec?: {
|
|
1671
|
+
download?: boolean | undefined;
|
|
1672
|
+
} | undefined;
|
|
1661
1673
|
mdx?: {
|
|
1662
1674
|
server?: string | string[] | undefined;
|
|
1663
1675
|
auth?: {
|
|
@@ -2006,6 +2018,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2006
2018
|
prefill?: boolean | undefined;
|
|
2007
2019
|
autogenerate?: boolean | undefined;
|
|
2008
2020
|
} | undefined;
|
|
2021
|
+
spec?: {
|
|
2022
|
+
download?: boolean | undefined;
|
|
2023
|
+
} | undefined;
|
|
2009
2024
|
mdx?: {
|
|
2010
2025
|
server?: string | string[] | undefined;
|
|
2011
2026
|
auth?: {
|
|
@@ -2354,6 +2369,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2354
2369
|
prefill?: boolean | undefined;
|
|
2355
2370
|
autogenerate?: boolean | undefined;
|
|
2356
2371
|
} | undefined;
|
|
2372
|
+
spec?: {
|
|
2373
|
+
download?: boolean | undefined;
|
|
2374
|
+
} | undefined;
|
|
2357
2375
|
mdx?: {
|
|
2358
2376
|
server?: string | string[] | undefined;
|
|
2359
2377
|
auth?: {
|
|
@@ -2702,6 +2720,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2702
2720
|
prefill?: boolean | undefined;
|
|
2703
2721
|
autogenerate?: boolean | undefined;
|
|
2704
2722
|
} | undefined;
|
|
2723
|
+
spec?: {
|
|
2724
|
+
download?: boolean | undefined;
|
|
2725
|
+
} | undefined;
|
|
2705
2726
|
mdx?: {
|
|
2706
2727
|
server?: string | string[] | undefined;
|
|
2707
2728
|
auth?: {
|
|
@@ -3050,6 +3071,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3050
3071
|
prefill?: boolean | undefined;
|
|
3051
3072
|
autogenerate?: boolean | undefined;
|
|
3052
3073
|
} | undefined;
|
|
3074
|
+
spec?: {
|
|
3075
|
+
download?: boolean | undefined;
|
|
3076
|
+
} | undefined;
|
|
3053
3077
|
mdx?: {
|
|
3054
3078
|
server?: string | string[] | undefined;
|
|
3055
3079
|
auth?: {
|
|
@@ -3398,6 +3422,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3398
3422
|
prefill?: boolean | undefined;
|
|
3399
3423
|
autogenerate?: boolean | undefined;
|
|
3400
3424
|
} | undefined;
|
|
3425
|
+
spec?: {
|
|
3426
|
+
download?: boolean | undefined;
|
|
3427
|
+
} | undefined;
|
|
3401
3428
|
mdx?: {
|
|
3402
3429
|
server?: string | string[] | undefined;
|
|
3403
3430
|
auth?: {
|
|
@@ -3749,6 +3776,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3749
3776
|
prefill?: boolean | undefined;
|
|
3750
3777
|
autogenerate?: boolean | undefined;
|
|
3751
3778
|
} | undefined;
|
|
3779
|
+
spec?: {
|
|
3780
|
+
download?: boolean | undefined;
|
|
3781
|
+
} | undefined;
|
|
3752
3782
|
mdx?: {
|
|
3753
3783
|
server?: string | string[] | undefined;
|
|
3754
3784
|
auth?: {
|
|
@@ -4097,6 +4127,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4097
4127
|
prefill?: boolean | undefined;
|
|
4098
4128
|
autogenerate?: boolean | undefined;
|
|
4099
4129
|
} | undefined;
|
|
4130
|
+
spec?: {
|
|
4131
|
+
download?: boolean | undefined;
|
|
4132
|
+
} | undefined;
|
|
4100
4133
|
mdx?: {
|
|
4101
4134
|
server?: string | string[] | undefined;
|
|
4102
4135
|
auth?: {
|
|
@@ -4445,6 +4478,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4445
4478
|
prefill?: boolean | undefined;
|
|
4446
4479
|
autogenerate?: boolean | undefined;
|
|
4447
4480
|
} | undefined;
|
|
4481
|
+
spec?: {
|
|
4482
|
+
download?: boolean | undefined;
|
|
4483
|
+
} | undefined;
|
|
4448
4484
|
mdx?: {
|
|
4449
4485
|
server?: string | string[] | undefined;
|
|
4450
4486
|
auth?: {
|
|
@@ -4793,6 +4829,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4793
4829
|
prefill?: boolean | undefined;
|
|
4794
4830
|
autogenerate?: boolean | undefined;
|
|
4795
4831
|
} | undefined;
|
|
4832
|
+
spec?: {
|
|
4833
|
+
download?: boolean | undefined;
|
|
4834
|
+
} | undefined;
|
|
4796
4835
|
mdx?: {
|
|
4797
4836
|
server?: string | string[] | undefined;
|
|
4798
4837
|
auth?: {
|
|
@@ -5141,6 +5180,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5141
5180
|
prefill?: boolean | undefined;
|
|
5142
5181
|
autogenerate?: boolean | undefined;
|
|
5143
5182
|
} | undefined;
|
|
5183
|
+
spec?: {
|
|
5184
|
+
download?: boolean | undefined;
|
|
5185
|
+
} | undefined;
|
|
5144
5186
|
mdx?: {
|
|
5145
5187
|
server?: string | string[] | undefined;
|
|
5146
5188
|
auth?: {
|
|
@@ -5489,6 +5531,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5489
5531
|
prefill?: boolean | undefined;
|
|
5490
5532
|
autogenerate?: boolean | undefined;
|
|
5491
5533
|
} | undefined;
|
|
5534
|
+
spec?: {
|
|
5535
|
+
download?: boolean | undefined;
|
|
5536
|
+
} | undefined;
|
|
5492
5537
|
mdx?: {
|
|
5493
5538
|
server?: string | string[] | undefined;
|
|
5494
5539
|
auth?: {
|
|
@@ -5837,6 +5882,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5837
5882
|
prefill?: boolean | undefined;
|
|
5838
5883
|
autogenerate?: boolean | undefined;
|
|
5839
5884
|
} | undefined;
|
|
5885
|
+
spec?: {
|
|
5886
|
+
download?: boolean | undefined;
|
|
5887
|
+
} | undefined;
|
|
5840
5888
|
mdx?: {
|
|
5841
5889
|
server?: string | string[] | undefined;
|
|
5842
5890
|
auth?: {
|
|
@@ -6185,6 +6233,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6185
6233
|
prefill?: boolean | undefined;
|
|
6186
6234
|
autogenerate?: boolean | undefined;
|
|
6187
6235
|
} | undefined;
|
|
6236
|
+
spec?: {
|
|
6237
|
+
download?: boolean | undefined;
|
|
6238
|
+
} | undefined;
|
|
6188
6239
|
mdx?: {
|
|
6189
6240
|
server?: string | string[] | undefined;
|
|
6190
6241
|
auth?: {
|
|
@@ -6533,6 +6584,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6533
6584
|
prefill?: boolean | undefined;
|
|
6534
6585
|
autogenerate?: boolean | undefined;
|
|
6535
6586
|
} | undefined;
|
|
6587
|
+
spec?: {
|
|
6588
|
+
download?: boolean | undefined;
|
|
6589
|
+
} | undefined;
|
|
6536
6590
|
mdx?: {
|
|
6537
6591
|
server?: string | string[] | undefined;
|
|
6538
6592
|
auth?: {
|