@mintlify/validation 0.1.675 → 0.1.677
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 +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 +20 -0
- package/dist/openapi/types/endpoint.d.ts +4 -0
- package/dist/openapi/types/endpoint.js +2 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/deployment/index.d.ts +5 -0
- package/package.json +3 -3
|
@@ -63,10 +63,13 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
63
63
|
}>]>>;
|
|
64
64
|
params: z.ZodOptional<z.ZodObject<{
|
|
65
65
|
expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
|
|
66
|
+
post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
66
67
|
}, "strip", z.ZodTypeAny, {
|
|
67
68
|
expanded?: "all" | "closed" | undefined;
|
|
69
|
+
post?: string[] | undefined;
|
|
68
70
|
}, {
|
|
69
71
|
expanded?: "all" | "closed" | undefined;
|
|
72
|
+
post?: string[] | undefined;
|
|
70
73
|
}>>;
|
|
71
74
|
playground: z.ZodOptional<z.ZodObject<{
|
|
72
75
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -126,6 +129,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
126
129
|
}, "strip", z.ZodTypeAny, {
|
|
127
130
|
params?: {
|
|
128
131
|
expanded?: "all" | "closed" | undefined;
|
|
132
|
+
post?: string[] | undefined;
|
|
129
133
|
} | undefined;
|
|
130
134
|
url?: "full" | undefined;
|
|
131
135
|
openapi?: string | string[] | {
|
|
@@ -157,6 +161,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
157
161
|
}, {
|
|
158
162
|
params?: {
|
|
159
163
|
expanded?: "all" | "closed" | undefined;
|
|
164
|
+
post?: string[] | undefined;
|
|
160
165
|
} | undefined;
|
|
161
166
|
url?: "full" | undefined;
|
|
162
167
|
openapi?: string | string[] | {
|
|
@@ -1665,6 +1670,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1665
1670
|
api?: {
|
|
1666
1671
|
params?: {
|
|
1667
1672
|
expanded?: "all" | "closed" | undefined;
|
|
1673
|
+
post?: string[] | undefined;
|
|
1668
1674
|
} | undefined;
|
|
1669
1675
|
url?: "full" | undefined;
|
|
1670
1676
|
openapi?: string | string[] | {
|
|
@@ -2028,6 +2034,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
2028
2034
|
api?: {
|
|
2029
2035
|
params?: {
|
|
2030
2036
|
expanded?: "all" | "closed" | undefined;
|
|
2037
|
+
post?: string[] | undefined;
|
|
2031
2038
|
} | undefined;
|
|
2032
2039
|
url?: "full" | undefined;
|
|
2033
2040
|
openapi?: string | string[] | {
|
|
@@ -63,10 +63,13 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
63
63
|
}>]>>;
|
|
64
64
|
params: z.ZodOptional<z.ZodObject<{
|
|
65
65
|
expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
|
|
66
|
+
post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
66
67
|
}, "strip", z.ZodTypeAny, {
|
|
67
68
|
expanded?: "all" | "closed" | undefined;
|
|
69
|
+
post?: string[] | undefined;
|
|
68
70
|
}, {
|
|
69
71
|
expanded?: "all" | "closed" | undefined;
|
|
72
|
+
post?: string[] | undefined;
|
|
70
73
|
}>>;
|
|
71
74
|
playground: z.ZodOptional<z.ZodObject<{
|
|
72
75
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -126,6 +129,7 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
126
129
|
}, "strip", z.ZodTypeAny, {
|
|
127
130
|
params?: {
|
|
128
131
|
expanded?: "all" | "closed" | undefined;
|
|
132
|
+
post?: string[] | undefined;
|
|
129
133
|
} | undefined;
|
|
130
134
|
url?: "full" | undefined;
|
|
131
135
|
openapi?: string | string[] | {
|
|
@@ -157,6 +161,7 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
157
161
|
}, {
|
|
158
162
|
params?: {
|
|
159
163
|
expanded?: "all" | "closed" | undefined;
|
|
164
|
+
post?: string[] | undefined;
|
|
160
165
|
} | undefined;
|
|
161
166
|
url?: "full" | undefined;
|
|
162
167
|
openapi?: string | string[] | {
|
|
@@ -1665,6 +1670,7 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
1665
1670
|
api?: {
|
|
1666
1671
|
params?: {
|
|
1667
1672
|
expanded?: "all" | "closed" | undefined;
|
|
1673
|
+
post?: string[] | undefined;
|
|
1668
1674
|
} | undefined;
|
|
1669
1675
|
url?: "full" | undefined;
|
|
1670
1676
|
openapi?: string | string[] | {
|
|
@@ -2028,6 +2034,7 @@ export declare const lumaConfigSchema: z.ZodObject<{
|
|
|
2028
2034
|
api?: {
|
|
2029
2035
|
params?: {
|
|
2030
2036
|
expanded?: "all" | "closed" | undefined;
|
|
2037
|
+
post?: string[] | undefined;
|
|
2031
2038
|
} | undefined;
|
|
2032
2039
|
url?: "full" | undefined;
|
|
2033
2040
|
openapi?: string | string[] | {
|
|
@@ -63,10 +63,13 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
63
63
|
}>]>>;
|
|
64
64
|
params: z.ZodOptional<z.ZodObject<{
|
|
65
65
|
expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
|
|
66
|
+
post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
66
67
|
}, "strip", z.ZodTypeAny, {
|
|
67
68
|
expanded?: "all" | "closed" | undefined;
|
|
69
|
+
post?: string[] | undefined;
|
|
68
70
|
}, {
|
|
69
71
|
expanded?: "all" | "closed" | undefined;
|
|
72
|
+
post?: string[] | undefined;
|
|
70
73
|
}>>;
|
|
71
74
|
playground: z.ZodOptional<z.ZodObject<{
|
|
72
75
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -126,6 +129,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
126
129
|
}, "strip", z.ZodTypeAny, {
|
|
127
130
|
params?: {
|
|
128
131
|
expanded?: "all" | "closed" | undefined;
|
|
132
|
+
post?: string[] | undefined;
|
|
129
133
|
} | undefined;
|
|
130
134
|
url?: "full" | undefined;
|
|
131
135
|
openapi?: string | string[] | {
|
|
@@ -157,6 +161,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
157
161
|
}, {
|
|
158
162
|
params?: {
|
|
159
163
|
expanded?: "all" | "closed" | undefined;
|
|
164
|
+
post?: string[] | undefined;
|
|
160
165
|
} | undefined;
|
|
161
166
|
url?: "full" | undefined;
|
|
162
167
|
openapi?: string | string[] | {
|
|
@@ -1665,6 +1670,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1665
1670
|
api?: {
|
|
1666
1671
|
params?: {
|
|
1667
1672
|
expanded?: "all" | "closed" | undefined;
|
|
1673
|
+
post?: string[] | undefined;
|
|
1668
1674
|
} | undefined;
|
|
1669
1675
|
url?: "full" | undefined;
|
|
1670
1676
|
openapi?: string | string[] | {
|
|
@@ -2028,6 +2034,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
2028
2034
|
api?: {
|
|
2029
2035
|
params?: {
|
|
2030
2036
|
expanded?: "all" | "closed" | undefined;
|
|
2037
|
+
post?: string[] | undefined;
|
|
2031
2038
|
} | undefined;
|
|
2032
2039
|
url?: "full" | undefined;
|
|
2033
2040
|
openapi?: string | string[] | {
|
|
@@ -63,10 +63,13 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
63
63
|
}>]>>;
|
|
64
64
|
params: z.ZodOptional<z.ZodObject<{
|
|
65
65
|
expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
|
|
66
|
+
post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
66
67
|
}, "strip", z.ZodTypeAny, {
|
|
67
68
|
expanded?: "all" | "closed" | undefined;
|
|
69
|
+
post?: string[] | undefined;
|
|
68
70
|
}, {
|
|
69
71
|
expanded?: "all" | "closed" | undefined;
|
|
72
|
+
post?: string[] | undefined;
|
|
70
73
|
}>>;
|
|
71
74
|
playground: z.ZodOptional<z.ZodObject<{
|
|
72
75
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -126,6 +129,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
126
129
|
}, "strip", z.ZodTypeAny, {
|
|
127
130
|
params?: {
|
|
128
131
|
expanded?: "all" | "closed" | undefined;
|
|
132
|
+
post?: string[] | undefined;
|
|
129
133
|
} | undefined;
|
|
130
134
|
url?: "full" | undefined;
|
|
131
135
|
openapi?: string | string[] | {
|
|
@@ -157,6 +161,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
157
161
|
}, {
|
|
158
162
|
params?: {
|
|
159
163
|
expanded?: "all" | "closed" | undefined;
|
|
164
|
+
post?: string[] | undefined;
|
|
160
165
|
} | undefined;
|
|
161
166
|
url?: "full" | undefined;
|
|
162
167
|
openapi?: string | string[] | {
|
|
@@ -1665,6 +1670,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1665
1670
|
api?: {
|
|
1666
1671
|
params?: {
|
|
1667
1672
|
expanded?: "all" | "closed" | undefined;
|
|
1673
|
+
post?: string[] | undefined;
|
|
1668
1674
|
} | undefined;
|
|
1669
1675
|
url?: "full" | undefined;
|
|
1670
1676
|
openapi?: string | string[] | {
|
|
@@ -2028,6 +2034,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
2028
2034
|
api?: {
|
|
2029
2035
|
params?: {
|
|
2030
2036
|
expanded?: "all" | "closed" | undefined;
|
|
2037
|
+
post?: string[] | undefined;
|
|
2031
2038
|
} | undefined;
|
|
2032
2039
|
url?: "full" | undefined;
|
|
2033
2040
|
openapi?: string | string[] | {
|
|
@@ -63,10 +63,13 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
63
63
|
}>]>>;
|
|
64
64
|
params: z.ZodOptional<z.ZodObject<{
|
|
65
65
|
expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
|
|
66
|
+
post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
66
67
|
}, "strip", z.ZodTypeAny, {
|
|
67
68
|
expanded?: "all" | "closed" | undefined;
|
|
69
|
+
post?: string[] | undefined;
|
|
68
70
|
}, {
|
|
69
71
|
expanded?: "all" | "closed" | undefined;
|
|
72
|
+
post?: string[] | undefined;
|
|
70
73
|
}>>;
|
|
71
74
|
playground: z.ZodOptional<z.ZodObject<{
|
|
72
75
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -126,6 +129,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
126
129
|
}, "strip", z.ZodTypeAny, {
|
|
127
130
|
params?: {
|
|
128
131
|
expanded?: "all" | "closed" | undefined;
|
|
132
|
+
post?: string[] | undefined;
|
|
129
133
|
} | undefined;
|
|
130
134
|
url?: "full" | undefined;
|
|
131
135
|
openapi?: string | string[] | {
|
|
@@ -157,6 +161,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
157
161
|
}, {
|
|
158
162
|
params?: {
|
|
159
163
|
expanded?: "all" | "closed" | undefined;
|
|
164
|
+
post?: string[] | undefined;
|
|
160
165
|
} | undefined;
|
|
161
166
|
url?: "full" | undefined;
|
|
162
167
|
openapi?: string | string[] | {
|
|
@@ -1665,6 +1670,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1665
1670
|
api?: {
|
|
1666
1671
|
params?: {
|
|
1667
1672
|
expanded?: "all" | "closed" | undefined;
|
|
1673
|
+
post?: string[] | undefined;
|
|
1668
1674
|
} | undefined;
|
|
1669
1675
|
url?: "full" | undefined;
|
|
1670
1676
|
openapi?: string | string[] | {
|
|
@@ -2028,6 +2034,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
2028
2034
|
api?: {
|
|
2029
2035
|
params?: {
|
|
2030
2036
|
expanded?: "all" | "closed" | undefined;
|
|
2037
|
+
post?: string[] | undefined;
|
|
2031
2038
|
} | undefined;
|
|
2032
2039
|
url?: "full" | undefined;
|
|
2033
2040
|
openapi?: string | string[] | {
|
|
@@ -62,10 +62,13 @@ export declare const standardConfigSchema: {
|
|
|
62
62
|
}>]>>;
|
|
63
63
|
params: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
64
64
|
expanded: import("zod").ZodOptional<import("zod").ZodEnum<["all", "closed"]>>;
|
|
65
|
+
post: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
65
66
|
}, "strip", import("zod").ZodTypeAny, {
|
|
66
67
|
expanded?: "all" | "closed" | undefined;
|
|
68
|
+
post?: string[] | undefined;
|
|
67
69
|
}, {
|
|
68
70
|
expanded?: "all" | "closed" | undefined;
|
|
71
|
+
post?: string[] | undefined;
|
|
69
72
|
}>>;
|
|
70
73
|
playground: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
71
74
|
display: import("zod").ZodOptional<import("zod").ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -125,6 +128,7 @@ export declare const standardConfigSchema: {
|
|
|
125
128
|
}, "strip", import("zod").ZodTypeAny, {
|
|
126
129
|
params?: {
|
|
127
130
|
expanded?: "all" | "closed" | undefined;
|
|
131
|
+
post?: string[] | undefined;
|
|
128
132
|
} | undefined;
|
|
129
133
|
url?: "full" | undefined;
|
|
130
134
|
openapi?: string | string[] | {
|
|
@@ -156,6 +160,7 @@ export declare const standardConfigSchema: {
|
|
|
156
160
|
}, {
|
|
157
161
|
params?: {
|
|
158
162
|
expanded?: "all" | "closed" | undefined;
|
|
163
|
+
post?: string[] | undefined;
|
|
159
164
|
} | undefined;
|
|
160
165
|
url?: "full" | undefined;
|
|
161
166
|
openapi?: string | string[] | {
|
|
@@ -63,10 +63,13 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
63
63
|
}>]>>;
|
|
64
64
|
params: z.ZodOptional<z.ZodObject<{
|
|
65
65
|
expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
|
|
66
|
+
post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
66
67
|
}, "strip", z.ZodTypeAny, {
|
|
67
68
|
expanded?: "all" | "closed" | undefined;
|
|
69
|
+
post?: string[] | undefined;
|
|
68
70
|
}, {
|
|
69
71
|
expanded?: "all" | "closed" | undefined;
|
|
72
|
+
post?: string[] | undefined;
|
|
70
73
|
}>>;
|
|
71
74
|
playground: z.ZodOptional<z.ZodObject<{
|
|
72
75
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -126,6 +129,7 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
126
129
|
}, "strip", z.ZodTypeAny, {
|
|
127
130
|
params?: {
|
|
128
131
|
expanded?: "all" | "closed" | undefined;
|
|
132
|
+
post?: string[] | undefined;
|
|
129
133
|
} | undefined;
|
|
130
134
|
url?: "full" | undefined;
|
|
131
135
|
openapi?: string | string[] | {
|
|
@@ -157,6 +161,7 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
157
161
|
}, {
|
|
158
162
|
params?: {
|
|
159
163
|
expanded?: "all" | "closed" | undefined;
|
|
164
|
+
post?: string[] | undefined;
|
|
160
165
|
} | undefined;
|
|
161
166
|
url?: "full" | undefined;
|
|
162
167
|
openapi?: string | string[] | {
|
|
@@ -1665,6 +1670,7 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
1665
1670
|
api?: {
|
|
1666
1671
|
params?: {
|
|
1667
1672
|
expanded?: "all" | "closed" | undefined;
|
|
1673
|
+
post?: string[] | undefined;
|
|
1668
1674
|
} | undefined;
|
|
1669
1675
|
url?: "full" | undefined;
|
|
1670
1676
|
openapi?: string | string[] | {
|
|
@@ -2028,6 +2034,7 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
|
|
|
2028
2034
|
api?: {
|
|
2029
2035
|
params?: {
|
|
2030
2036
|
expanded?: "all" | "closed" | undefined;
|
|
2037
|
+
post?: string[] | undefined;
|
|
2031
2038
|
} | undefined;
|
|
2032
2039
|
url?: "full" | undefined;
|
|
2033
2040
|
openapi?: string | string[] | {
|
|
@@ -63,10 +63,13 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
63
63
|
}>]>>;
|
|
64
64
|
params: z.ZodOptional<z.ZodObject<{
|
|
65
65
|
expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
|
|
66
|
+
post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
66
67
|
}, "strip", z.ZodTypeAny, {
|
|
67
68
|
expanded?: "all" | "closed" | undefined;
|
|
69
|
+
post?: string[] | undefined;
|
|
68
70
|
}, {
|
|
69
71
|
expanded?: "all" | "closed" | undefined;
|
|
72
|
+
post?: string[] | undefined;
|
|
70
73
|
}>>;
|
|
71
74
|
playground: z.ZodOptional<z.ZodObject<{
|
|
72
75
|
display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
|
|
@@ -126,6 +129,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
126
129
|
}, "strip", z.ZodTypeAny, {
|
|
127
130
|
params?: {
|
|
128
131
|
expanded?: "all" | "closed" | undefined;
|
|
132
|
+
post?: string[] | undefined;
|
|
129
133
|
} | undefined;
|
|
130
134
|
url?: "full" | undefined;
|
|
131
135
|
openapi?: string | string[] | {
|
|
@@ -157,6 +161,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
157
161
|
}, {
|
|
158
162
|
params?: {
|
|
159
163
|
expanded?: "all" | "closed" | undefined;
|
|
164
|
+
post?: string[] | undefined;
|
|
160
165
|
} | undefined;
|
|
161
166
|
url?: "full" | undefined;
|
|
162
167
|
openapi?: string | string[] | {
|
|
@@ -1665,6 +1670,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1665
1670
|
api?: {
|
|
1666
1671
|
params?: {
|
|
1667
1672
|
expanded?: "all" | "closed" | undefined;
|
|
1673
|
+
post?: string[] | undefined;
|
|
1668
1674
|
} | undefined;
|
|
1669
1675
|
url?: "full" | undefined;
|
|
1670
1676
|
openapi?: string | string[] | {
|
|
@@ -2028,6 +2034,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
2028
2034
|
api?: {
|
|
2029
2035
|
params?: {
|
|
2030
2036
|
expanded?: "all" | "closed" | undefined;
|
|
2037
|
+
post?: string[] | undefined;
|
|
2031
2038
|
} | undefined;
|
|
2032
2039
|
url?: "full" | undefined;
|
|
2033
2040
|
openapi?: string | string[] | {
|
|
@@ -73,6 +73,7 @@ export declare function validateMintConfig(value: unknown): z.SafeParseError<{
|
|
|
73
73
|
maintainOrder?: boolean | undefined;
|
|
74
74
|
paramFields?: {
|
|
75
75
|
expanded?: "all" | "topLevel" | "topLevelOneOfs" | "none" | undefined;
|
|
76
|
+
post?: string[] | undefined;
|
|
76
77
|
} | undefined;
|
|
77
78
|
} | undefined;
|
|
78
79
|
modeToggle?: {
|
|
@@ -322,6 +323,7 @@ export declare function validateMintConfig(value: unknown): z.SafeParseError<{
|
|
|
322
323
|
maintainOrder?: boolean | undefined;
|
|
323
324
|
paramFields?: {
|
|
324
325
|
expanded?: "all" | "topLevel" | "topLevelOneOfs" | "none" | undefined;
|
|
326
|
+
post?: string[] | undefined;
|
|
325
327
|
} | undefined;
|
|
326
328
|
} | undefined;
|
|
327
329
|
modeToggle?: {
|
|
@@ -611,6 +613,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
611
613
|
api?: {
|
|
612
614
|
params?: {
|
|
613
615
|
expanded?: "all" | "closed" | undefined;
|
|
616
|
+
post?: string[] | undefined;
|
|
614
617
|
} | undefined;
|
|
615
618
|
url?: "full" | undefined;
|
|
616
619
|
openapi?: string | string[] | {
|
|
@@ -974,6 +977,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
974
977
|
api?: {
|
|
975
978
|
params?: {
|
|
976
979
|
expanded?: "all" | "closed" | undefined;
|
|
980
|
+
post?: string[] | undefined;
|
|
977
981
|
} | undefined;
|
|
978
982
|
url?: "full" | undefined;
|
|
979
983
|
openapi?: string | string[] | {
|
|
@@ -1337,6 +1341,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1337
1341
|
api?: {
|
|
1338
1342
|
params?: {
|
|
1339
1343
|
expanded?: "all" | "closed" | undefined;
|
|
1344
|
+
post?: string[] | undefined;
|
|
1340
1345
|
} | undefined;
|
|
1341
1346
|
url?: "full" | undefined;
|
|
1342
1347
|
openapi?: string | string[] | {
|
|
@@ -1700,6 +1705,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1700
1705
|
api?: {
|
|
1701
1706
|
params?: {
|
|
1702
1707
|
expanded?: "all" | "closed" | undefined;
|
|
1708
|
+
post?: string[] | undefined;
|
|
1703
1709
|
} | undefined;
|
|
1704
1710
|
url?: "full" | undefined;
|
|
1705
1711
|
openapi?: string | string[] | {
|
|
@@ -2063,6 +2069,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2063
2069
|
api?: {
|
|
2064
2070
|
params?: {
|
|
2065
2071
|
expanded?: "all" | "closed" | undefined;
|
|
2072
|
+
post?: string[] | undefined;
|
|
2066
2073
|
} | undefined;
|
|
2067
2074
|
url?: "full" | undefined;
|
|
2068
2075
|
openapi?: string | string[] | {
|
|
@@ -2426,6 +2433,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2426
2433
|
api?: {
|
|
2427
2434
|
params?: {
|
|
2428
2435
|
expanded?: "all" | "closed" | undefined;
|
|
2436
|
+
post?: string[] | undefined;
|
|
2429
2437
|
} | undefined;
|
|
2430
2438
|
url?: "full" | undefined;
|
|
2431
2439
|
openapi?: string | string[] | {
|
|
@@ -2789,6 +2797,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2789
2797
|
api?: {
|
|
2790
2798
|
params?: {
|
|
2791
2799
|
expanded?: "all" | "closed" | undefined;
|
|
2800
|
+
post?: string[] | undefined;
|
|
2792
2801
|
} | undefined;
|
|
2793
2802
|
url?: "full" | undefined;
|
|
2794
2803
|
openapi?: string | string[] | {
|
|
@@ -3152,6 +3161,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3152
3161
|
api?: {
|
|
3153
3162
|
params?: {
|
|
3154
3163
|
expanded?: "all" | "closed" | undefined;
|
|
3164
|
+
post?: string[] | undefined;
|
|
3155
3165
|
} | undefined;
|
|
3156
3166
|
url?: "full" | undefined;
|
|
3157
3167
|
openapi?: string | string[] | {
|
|
@@ -3515,6 +3525,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3515
3525
|
api?: {
|
|
3516
3526
|
params?: {
|
|
3517
3527
|
expanded?: "all" | "closed" | undefined;
|
|
3528
|
+
post?: string[] | undefined;
|
|
3518
3529
|
} | undefined;
|
|
3519
3530
|
url?: "full" | undefined;
|
|
3520
3531
|
openapi?: string | string[] | {
|
|
@@ -3881,6 +3892,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3881
3892
|
api?: {
|
|
3882
3893
|
params?: {
|
|
3883
3894
|
expanded?: "all" | "closed" | undefined;
|
|
3895
|
+
post?: string[] | undefined;
|
|
3884
3896
|
} | undefined;
|
|
3885
3897
|
url?: "full" | undefined;
|
|
3886
3898
|
openapi?: string | string[] | {
|
|
@@ -4244,6 +4256,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4244
4256
|
api?: {
|
|
4245
4257
|
params?: {
|
|
4246
4258
|
expanded?: "all" | "closed" | undefined;
|
|
4259
|
+
post?: string[] | undefined;
|
|
4247
4260
|
} | undefined;
|
|
4248
4261
|
url?: "full" | undefined;
|
|
4249
4262
|
openapi?: string | string[] | {
|
|
@@ -4607,6 +4620,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4607
4620
|
api?: {
|
|
4608
4621
|
params?: {
|
|
4609
4622
|
expanded?: "all" | "closed" | undefined;
|
|
4623
|
+
post?: string[] | undefined;
|
|
4610
4624
|
} | undefined;
|
|
4611
4625
|
url?: "full" | undefined;
|
|
4612
4626
|
openapi?: string | string[] | {
|
|
@@ -4970,6 +4984,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4970
4984
|
api?: {
|
|
4971
4985
|
params?: {
|
|
4972
4986
|
expanded?: "all" | "closed" | undefined;
|
|
4987
|
+
post?: string[] | undefined;
|
|
4973
4988
|
} | undefined;
|
|
4974
4989
|
url?: "full" | undefined;
|
|
4975
4990
|
openapi?: string | string[] | {
|
|
@@ -5333,6 +5348,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5333
5348
|
api?: {
|
|
5334
5349
|
params?: {
|
|
5335
5350
|
expanded?: "all" | "closed" | undefined;
|
|
5351
|
+
post?: string[] | undefined;
|
|
5336
5352
|
} | undefined;
|
|
5337
5353
|
url?: "full" | undefined;
|
|
5338
5354
|
openapi?: string | string[] | {
|
|
@@ -5696,6 +5712,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5696
5712
|
api?: {
|
|
5697
5713
|
params?: {
|
|
5698
5714
|
expanded?: "all" | "closed" | undefined;
|
|
5715
|
+
post?: string[] | undefined;
|
|
5699
5716
|
} | undefined;
|
|
5700
5717
|
url?: "full" | undefined;
|
|
5701
5718
|
openapi?: string | string[] | {
|
|
@@ -6059,6 +6076,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6059
6076
|
api?: {
|
|
6060
6077
|
params?: {
|
|
6061
6078
|
expanded?: "all" | "closed" | undefined;
|
|
6079
|
+
post?: string[] | undefined;
|
|
6062
6080
|
} | undefined;
|
|
6063
6081
|
url?: "full" | undefined;
|
|
6064
6082
|
openapi?: string | string[] | {
|
|
@@ -6422,6 +6440,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6422
6440
|
api?: {
|
|
6423
6441
|
params?: {
|
|
6424
6442
|
expanded?: "all" | "closed" | undefined;
|
|
6443
|
+
post?: string[] | undefined;
|
|
6425
6444
|
} | undefined;
|
|
6426
6445
|
url?: "full" | undefined;
|
|
6427
6446
|
openapi?: string | string[] | {
|
|
@@ -6785,6 +6804,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6785
6804
|
api?: {
|
|
6786
6805
|
params?: {
|
|
6787
6806
|
expanded?: "all" | "closed" | undefined;
|
|
6807
|
+
post?: string[] | undefined;
|
|
6788
6808
|
} | undefined;
|
|
6789
6809
|
url?: "full" | undefined;
|
|
6790
6810
|
openapi?: string | string[] | {
|
|
@@ -205,6 +205,8 @@ export type XMint = {
|
|
|
205
205
|
href?: string;
|
|
206
206
|
mcp?: XMcp;
|
|
207
207
|
groups?: string[];
|
|
208
|
+
pre?: string[];
|
|
209
|
+
post?: string[];
|
|
208
210
|
};
|
|
209
211
|
export declare const XMcpType: import("arktype/internal/variants/object.ts").ObjectType<{
|
|
210
212
|
enabled?: boolean | undefined;
|
|
@@ -250,6 +252,8 @@ export declare const XMintType: import("arktype/internal/variants/object.ts").Ob
|
|
|
250
252
|
description?: string | undefined;
|
|
251
253
|
} | undefined;
|
|
252
254
|
groups?: string[] | undefined;
|
|
255
|
+
pre?: string[] | undefined;
|
|
256
|
+
post?: string[] | undefined;
|
|
253
257
|
}, {}>;
|
|
254
258
|
export type SchemaWithXFlags = OpenAPIV3_1.SchemaObject & {
|
|
255
259
|
'x-mint'?: XMint;
|