@mintlify/validation 0.1.253 → 0.1.254
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 +55 -0
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +20 -0
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +14 -0
- package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +3 -0
- package/dist/mint-config/schemas/v2/properties/reusable/page.js +1 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +11 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +11 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +11 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +11 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +7 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +11 -0
- package/dist/mint-config/validateConfig.d.ts +20 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -32,6 +32,7 @@ export declare const decoratedPageSchema: z.ZodObject<{
|
|
|
32
32
|
hideApiMarker: z.ZodOptional<z.ZodBoolean>;
|
|
33
33
|
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
34
34
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
35
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
35
36
|
}, "strip", z.ZodTypeAny, {
|
|
36
37
|
href: string;
|
|
37
38
|
title: string;
|
|
@@ -58,6 +59,7 @@ export declare const decoratedPageSchema: z.ZodObject<{
|
|
|
58
59
|
hideApiMarker?: boolean | undefined;
|
|
59
60
|
noindex?: boolean | undefined;
|
|
60
61
|
isPublic?: boolean | undefined;
|
|
62
|
+
public?: boolean | undefined;
|
|
61
63
|
}, {
|
|
62
64
|
href: string;
|
|
63
65
|
title: string;
|
|
@@ -84,5 +86,6 @@ export declare const decoratedPageSchema: z.ZodObject<{
|
|
|
84
86
|
hideApiMarker?: boolean | undefined;
|
|
85
87
|
noindex?: boolean | undefined;
|
|
86
88
|
isPublic?: boolean | undefined;
|
|
89
|
+
public?: boolean | undefined;
|
|
87
90
|
}>;
|
|
88
91
|
export type DecoratedPageConfig = z.infer<typeof decoratedPageSchema>;
|
|
@@ -1045,6 +1045,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1045
1045
|
hideApiMarker: z.ZodOptional<z.ZodBoolean>;
|
|
1046
1046
|
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
1047
1047
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
1048
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
1048
1049
|
}, "strip", z.ZodTypeAny, {
|
|
1049
1050
|
href: string;
|
|
1050
1051
|
title: string;
|
|
@@ -1071,6 +1072,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1071
1072
|
hideApiMarker?: boolean | undefined;
|
|
1072
1073
|
noindex?: boolean | undefined;
|
|
1073
1074
|
isPublic?: boolean | undefined;
|
|
1075
|
+
public?: boolean | undefined;
|
|
1074
1076
|
}, {
|
|
1075
1077
|
href: string;
|
|
1076
1078
|
title: string;
|
|
@@ -1097,6 +1099,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1097
1099
|
hideApiMarker?: boolean | undefined;
|
|
1098
1100
|
noindex?: boolean | undefined;
|
|
1099
1101
|
isPublic?: boolean | undefined;
|
|
1102
|
+
public?: boolean | undefined;
|
|
1100
1103
|
}>>;
|
|
1101
1104
|
}, "strip", z.ZodTypeAny, {
|
|
1102
1105
|
group: string;
|
|
@@ -1131,6 +1134,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1131
1134
|
hideApiMarker?: boolean | undefined;
|
|
1132
1135
|
noindex?: boolean | undefined;
|
|
1133
1136
|
isPublic?: boolean | undefined;
|
|
1137
|
+
public?: boolean | undefined;
|
|
1134
1138
|
} | undefined;
|
|
1135
1139
|
}, {
|
|
1136
1140
|
group: string;
|
|
@@ -1165,6 +1169,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1165
1169
|
hideApiMarker?: boolean | undefined;
|
|
1166
1170
|
noindex?: boolean | undefined;
|
|
1167
1171
|
isPublic?: boolean | undefined;
|
|
1172
|
+
public?: boolean | undefined;
|
|
1168
1173
|
} | undefined;
|
|
1169
1174
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
1170
1175
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -1234,6 +1239,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1234
1239
|
hideApiMarker?: boolean | undefined;
|
|
1235
1240
|
noindex?: boolean | undefined;
|
|
1236
1241
|
isPublic?: boolean | undefined;
|
|
1242
|
+
public?: boolean | undefined;
|
|
1237
1243
|
} | undefined;
|
|
1238
1244
|
} & ({
|
|
1239
1245
|
openapi: (string | string[] | {
|
|
@@ -1280,6 +1286,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1280
1286
|
hideApiMarker?: boolean | undefined;
|
|
1281
1287
|
noindex?: boolean | undefined;
|
|
1282
1288
|
isPublic?: boolean | undefined;
|
|
1289
|
+
public?: boolean | undefined;
|
|
1283
1290
|
} | undefined;
|
|
1284
1291
|
} & ({
|
|
1285
1292
|
openapi: (string | string[] | {
|
|
@@ -1851,6 +1858,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1851
1858
|
hideApiMarker?: boolean | undefined;
|
|
1852
1859
|
noindex?: boolean | undefined;
|
|
1853
1860
|
isPublic?: boolean | undefined;
|
|
1861
|
+
public?: boolean | undefined;
|
|
1854
1862
|
} | undefined;
|
|
1855
1863
|
} & ({
|
|
1856
1864
|
openapi: (string | string[] | {
|
|
@@ -1958,6 +1966,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1958
1966
|
hideApiMarker?: boolean | undefined;
|
|
1959
1967
|
noindex?: boolean | undefined;
|
|
1960
1968
|
isPublic?: boolean | undefined;
|
|
1969
|
+
public?: boolean | undefined;
|
|
1961
1970
|
} | undefined;
|
|
1962
1971
|
} & ({
|
|
1963
1972
|
openapi: (string | string[] | {
|
|
@@ -2235,6 +2244,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
2235
2244
|
hideApiMarker?: boolean | undefined;
|
|
2236
2245
|
noindex?: boolean | undefined;
|
|
2237
2246
|
isPublic?: boolean | undefined;
|
|
2247
|
+
public?: boolean | undefined;
|
|
2238
2248
|
} | undefined;
|
|
2239
2249
|
} & ({
|
|
2240
2250
|
openapi: (string | string[] | {
|
|
@@ -2342,6 +2352,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
2342
2352
|
hideApiMarker?: boolean | undefined;
|
|
2343
2353
|
noindex?: boolean | undefined;
|
|
2344
2354
|
isPublic?: boolean | undefined;
|
|
2355
|
+
public?: boolean | undefined;
|
|
2345
2356
|
} | undefined;
|
|
2346
2357
|
} & ({
|
|
2347
2358
|
openapi: (string | string[] | {
|
|
@@ -1045,6 +1045,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1045
1045
|
hideApiMarker: z.ZodOptional<z.ZodBoolean>;
|
|
1046
1046
|
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
1047
1047
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
1048
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
1048
1049
|
}, "strip", z.ZodTypeAny, {
|
|
1049
1050
|
href: string;
|
|
1050
1051
|
title: string;
|
|
@@ -1071,6 +1072,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1071
1072
|
hideApiMarker?: boolean | undefined;
|
|
1072
1073
|
noindex?: boolean | undefined;
|
|
1073
1074
|
isPublic?: boolean | undefined;
|
|
1075
|
+
public?: boolean | undefined;
|
|
1074
1076
|
}, {
|
|
1075
1077
|
href: string;
|
|
1076
1078
|
title: string;
|
|
@@ -1097,6 +1099,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1097
1099
|
hideApiMarker?: boolean | undefined;
|
|
1098
1100
|
noindex?: boolean | undefined;
|
|
1099
1101
|
isPublic?: boolean | undefined;
|
|
1102
|
+
public?: boolean | undefined;
|
|
1100
1103
|
}>>;
|
|
1101
1104
|
}, "strip", z.ZodTypeAny, {
|
|
1102
1105
|
group: string;
|
|
@@ -1131,6 +1134,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1131
1134
|
hideApiMarker?: boolean | undefined;
|
|
1132
1135
|
noindex?: boolean | undefined;
|
|
1133
1136
|
isPublic?: boolean | undefined;
|
|
1137
|
+
public?: boolean | undefined;
|
|
1134
1138
|
} | undefined;
|
|
1135
1139
|
}, {
|
|
1136
1140
|
group: string;
|
|
@@ -1165,6 +1169,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1165
1169
|
hideApiMarker?: boolean | undefined;
|
|
1166
1170
|
noindex?: boolean | undefined;
|
|
1167
1171
|
isPublic?: boolean | undefined;
|
|
1172
|
+
public?: boolean | undefined;
|
|
1168
1173
|
} | undefined;
|
|
1169
1174
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
1170
1175
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -1234,6 +1239,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1234
1239
|
hideApiMarker?: boolean | undefined;
|
|
1235
1240
|
noindex?: boolean | undefined;
|
|
1236
1241
|
isPublic?: boolean | undefined;
|
|
1242
|
+
public?: boolean | undefined;
|
|
1237
1243
|
} | undefined;
|
|
1238
1244
|
} & ({
|
|
1239
1245
|
openapi: (string | string[] | {
|
|
@@ -1280,6 +1286,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1280
1286
|
hideApiMarker?: boolean | undefined;
|
|
1281
1287
|
noindex?: boolean | undefined;
|
|
1282
1288
|
isPublic?: boolean | undefined;
|
|
1289
|
+
public?: boolean | undefined;
|
|
1283
1290
|
} | undefined;
|
|
1284
1291
|
} & ({
|
|
1285
1292
|
openapi: (string | string[] | {
|
|
@@ -1851,6 +1858,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1851
1858
|
hideApiMarker?: boolean | undefined;
|
|
1852
1859
|
noindex?: boolean | undefined;
|
|
1853
1860
|
isPublic?: boolean | undefined;
|
|
1861
|
+
public?: boolean | undefined;
|
|
1854
1862
|
} | undefined;
|
|
1855
1863
|
} & ({
|
|
1856
1864
|
openapi: (string | string[] | {
|
|
@@ -1958,6 +1966,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1958
1966
|
hideApiMarker?: boolean | undefined;
|
|
1959
1967
|
noindex?: boolean | undefined;
|
|
1960
1968
|
isPublic?: boolean | undefined;
|
|
1969
|
+
public?: boolean | undefined;
|
|
1961
1970
|
} | undefined;
|
|
1962
1971
|
} & ({
|
|
1963
1972
|
openapi: (string | string[] | {
|
|
@@ -2235,6 +2244,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
2235
2244
|
hideApiMarker?: boolean | undefined;
|
|
2236
2245
|
noindex?: boolean | undefined;
|
|
2237
2246
|
isPublic?: boolean | undefined;
|
|
2247
|
+
public?: boolean | undefined;
|
|
2238
2248
|
} | undefined;
|
|
2239
2249
|
} & ({
|
|
2240
2250
|
openapi: (string | string[] | {
|
|
@@ -2342,6 +2352,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
2342
2352
|
hideApiMarker?: boolean | undefined;
|
|
2343
2353
|
noindex?: boolean | undefined;
|
|
2344
2354
|
isPublic?: boolean | undefined;
|
|
2355
|
+
public?: boolean | undefined;
|
|
2345
2356
|
} | undefined;
|
|
2346
2357
|
} & ({
|
|
2347
2358
|
openapi: (string | string[] | {
|
|
@@ -1045,6 +1045,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1045
1045
|
hideApiMarker: z.ZodOptional<z.ZodBoolean>;
|
|
1046
1046
|
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
1047
1047
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
1048
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
1048
1049
|
}, "strip", z.ZodTypeAny, {
|
|
1049
1050
|
href: string;
|
|
1050
1051
|
title: string;
|
|
@@ -1071,6 +1072,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1071
1072
|
hideApiMarker?: boolean | undefined;
|
|
1072
1073
|
noindex?: boolean | undefined;
|
|
1073
1074
|
isPublic?: boolean | undefined;
|
|
1075
|
+
public?: boolean | undefined;
|
|
1074
1076
|
}, {
|
|
1075
1077
|
href: string;
|
|
1076
1078
|
title: string;
|
|
@@ -1097,6 +1099,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1097
1099
|
hideApiMarker?: boolean | undefined;
|
|
1098
1100
|
noindex?: boolean | undefined;
|
|
1099
1101
|
isPublic?: boolean | undefined;
|
|
1102
|
+
public?: boolean | undefined;
|
|
1100
1103
|
}>>;
|
|
1101
1104
|
}, "strip", z.ZodTypeAny, {
|
|
1102
1105
|
group: string;
|
|
@@ -1131,6 +1134,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1131
1134
|
hideApiMarker?: boolean | undefined;
|
|
1132
1135
|
noindex?: boolean | undefined;
|
|
1133
1136
|
isPublic?: boolean | undefined;
|
|
1137
|
+
public?: boolean | undefined;
|
|
1134
1138
|
} | undefined;
|
|
1135
1139
|
}, {
|
|
1136
1140
|
group: string;
|
|
@@ -1165,6 +1169,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1165
1169
|
hideApiMarker?: boolean | undefined;
|
|
1166
1170
|
noindex?: boolean | undefined;
|
|
1167
1171
|
isPublic?: boolean | undefined;
|
|
1172
|
+
public?: boolean | undefined;
|
|
1168
1173
|
} | undefined;
|
|
1169
1174
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
1170
1175
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -1234,6 +1239,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1234
1239
|
hideApiMarker?: boolean | undefined;
|
|
1235
1240
|
noindex?: boolean | undefined;
|
|
1236
1241
|
isPublic?: boolean | undefined;
|
|
1242
|
+
public?: boolean | undefined;
|
|
1237
1243
|
} | undefined;
|
|
1238
1244
|
} & ({
|
|
1239
1245
|
openapi: (string | string[] | {
|
|
@@ -1280,6 +1286,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1280
1286
|
hideApiMarker?: boolean | undefined;
|
|
1281
1287
|
noindex?: boolean | undefined;
|
|
1282
1288
|
isPublic?: boolean | undefined;
|
|
1289
|
+
public?: boolean | undefined;
|
|
1283
1290
|
} | undefined;
|
|
1284
1291
|
} & ({
|
|
1285
1292
|
openapi: (string | string[] | {
|
|
@@ -1851,6 +1858,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1851
1858
|
hideApiMarker?: boolean | undefined;
|
|
1852
1859
|
noindex?: boolean | undefined;
|
|
1853
1860
|
isPublic?: boolean | undefined;
|
|
1861
|
+
public?: boolean | undefined;
|
|
1854
1862
|
} | undefined;
|
|
1855
1863
|
} & ({
|
|
1856
1864
|
openapi: (string | string[] | {
|
|
@@ -1958,6 +1966,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1958
1966
|
hideApiMarker?: boolean | undefined;
|
|
1959
1967
|
noindex?: boolean | undefined;
|
|
1960
1968
|
isPublic?: boolean | undefined;
|
|
1969
|
+
public?: boolean | undefined;
|
|
1961
1970
|
} | undefined;
|
|
1962
1971
|
} & ({
|
|
1963
1972
|
openapi: (string | string[] | {
|
|
@@ -2235,6 +2244,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
2235
2244
|
hideApiMarker?: boolean | undefined;
|
|
2236
2245
|
noindex?: boolean | undefined;
|
|
2237
2246
|
isPublic?: boolean | undefined;
|
|
2247
|
+
public?: boolean | undefined;
|
|
2238
2248
|
} | undefined;
|
|
2239
2249
|
} & ({
|
|
2240
2250
|
openapi: (string | string[] | {
|
|
@@ -2342,6 +2352,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
2342
2352
|
hideApiMarker?: boolean | undefined;
|
|
2343
2353
|
noindex?: boolean | undefined;
|
|
2344
2354
|
isPublic?: boolean | undefined;
|
|
2355
|
+
public?: boolean | undefined;
|
|
2345
2356
|
} | undefined;
|
|
2346
2357
|
} & ({
|
|
2347
2358
|
openapi: (string | string[] | {
|
|
@@ -1045,6 +1045,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1045
1045
|
hideApiMarker: z.ZodOptional<z.ZodBoolean>;
|
|
1046
1046
|
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
1047
1047
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
1048
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
1048
1049
|
}, "strip", z.ZodTypeAny, {
|
|
1049
1050
|
href: string;
|
|
1050
1051
|
title: string;
|
|
@@ -1071,6 +1072,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1071
1072
|
hideApiMarker?: boolean | undefined;
|
|
1072
1073
|
noindex?: boolean | undefined;
|
|
1073
1074
|
isPublic?: boolean | undefined;
|
|
1075
|
+
public?: boolean | undefined;
|
|
1074
1076
|
}, {
|
|
1075
1077
|
href: string;
|
|
1076
1078
|
title: string;
|
|
@@ -1097,6 +1099,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1097
1099
|
hideApiMarker?: boolean | undefined;
|
|
1098
1100
|
noindex?: boolean | undefined;
|
|
1099
1101
|
isPublic?: boolean | undefined;
|
|
1102
|
+
public?: boolean | undefined;
|
|
1100
1103
|
}>>;
|
|
1101
1104
|
}, "strip", z.ZodTypeAny, {
|
|
1102
1105
|
group: string;
|
|
@@ -1131,6 +1134,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1131
1134
|
hideApiMarker?: boolean | undefined;
|
|
1132
1135
|
noindex?: boolean | undefined;
|
|
1133
1136
|
isPublic?: boolean | undefined;
|
|
1137
|
+
public?: boolean | undefined;
|
|
1134
1138
|
} | undefined;
|
|
1135
1139
|
}, {
|
|
1136
1140
|
group: string;
|
|
@@ -1165,6 +1169,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1165
1169
|
hideApiMarker?: boolean | undefined;
|
|
1166
1170
|
noindex?: boolean | undefined;
|
|
1167
1171
|
isPublic?: boolean | undefined;
|
|
1172
|
+
public?: boolean | undefined;
|
|
1168
1173
|
} | undefined;
|
|
1169
1174
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
1170
1175
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -1234,6 +1239,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1234
1239
|
hideApiMarker?: boolean | undefined;
|
|
1235
1240
|
noindex?: boolean | undefined;
|
|
1236
1241
|
isPublic?: boolean | undefined;
|
|
1242
|
+
public?: boolean | undefined;
|
|
1237
1243
|
} | undefined;
|
|
1238
1244
|
} & ({
|
|
1239
1245
|
openapi: (string | string[] | {
|
|
@@ -1280,6 +1286,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1280
1286
|
hideApiMarker?: boolean | undefined;
|
|
1281
1287
|
noindex?: boolean | undefined;
|
|
1282
1288
|
isPublic?: boolean | undefined;
|
|
1289
|
+
public?: boolean | undefined;
|
|
1283
1290
|
} | undefined;
|
|
1284
1291
|
} & ({
|
|
1285
1292
|
openapi: (string | string[] | {
|
|
@@ -1851,6 +1858,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1851
1858
|
hideApiMarker?: boolean | undefined;
|
|
1852
1859
|
noindex?: boolean | undefined;
|
|
1853
1860
|
isPublic?: boolean | undefined;
|
|
1861
|
+
public?: boolean | undefined;
|
|
1854
1862
|
} | undefined;
|
|
1855
1863
|
} & ({
|
|
1856
1864
|
openapi: (string | string[] | {
|
|
@@ -1958,6 +1966,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1958
1966
|
hideApiMarker?: boolean | undefined;
|
|
1959
1967
|
noindex?: boolean | undefined;
|
|
1960
1968
|
isPublic?: boolean | undefined;
|
|
1969
|
+
public?: boolean | undefined;
|
|
1961
1970
|
} | undefined;
|
|
1962
1971
|
} & ({
|
|
1963
1972
|
openapi: (string | string[] | {
|
|
@@ -2235,6 +2244,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
2235
2244
|
hideApiMarker?: boolean | undefined;
|
|
2236
2245
|
noindex?: boolean | undefined;
|
|
2237
2246
|
isPublic?: boolean | undefined;
|
|
2247
|
+
public?: boolean | undefined;
|
|
2238
2248
|
} | undefined;
|
|
2239
2249
|
} & ({
|
|
2240
2250
|
openapi: (string | string[] | {
|
|
@@ -2342,6 +2352,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
2342
2352
|
hideApiMarker?: boolean | undefined;
|
|
2343
2353
|
noindex?: boolean | undefined;
|
|
2344
2354
|
isPublic?: boolean | undefined;
|
|
2355
|
+
public?: boolean | undefined;
|
|
2345
2356
|
} | undefined;
|
|
2346
2357
|
} & ({
|
|
2347
2358
|
openapi: (string | string[] | {
|
|
@@ -1044,6 +1044,7 @@ export declare const standardConfigSchema: {
|
|
|
1044
1044
|
hideApiMarker: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1045
1045
|
noindex: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1046
1046
|
isPublic: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1047
|
+
public: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1047
1048
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1048
1049
|
href: string;
|
|
1049
1050
|
title: string;
|
|
@@ -1070,6 +1071,7 @@ export declare const standardConfigSchema: {
|
|
|
1070
1071
|
hideApiMarker?: boolean | undefined;
|
|
1071
1072
|
noindex?: boolean | undefined;
|
|
1072
1073
|
isPublic?: boolean | undefined;
|
|
1074
|
+
public?: boolean | undefined;
|
|
1073
1075
|
}, {
|
|
1074
1076
|
href: string;
|
|
1075
1077
|
title: string;
|
|
@@ -1096,6 +1098,7 @@ export declare const standardConfigSchema: {
|
|
|
1096
1098
|
hideApiMarker?: boolean | undefined;
|
|
1097
1099
|
noindex?: boolean | undefined;
|
|
1098
1100
|
isPublic?: boolean | undefined;
|
|
1101
|
+
public?: boolean | undefined;
|
|
1099
1102
|
}>>;
|
|
1100
1103
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1101
1104
|
group: string;
|
|
@@ -1130,6 +1133,7 @@ export declare const standardConfigSchema: {
|
|
|
1130
1133
|
hideApiMarker?: boolean | undefined;
|
|
1131
1134
|
noindex?: boolean | undefined;
|
|
1132
1135
|
isPublic?: boolean | undefined;
|
|
1136
|
+
public?: boolean | undefined;
|
|
1133
1137
|
} | undefined;
|
|
1134
1138
|
}, {
|
|
1135
1139
|
group: string;
|
|
@@ -1164,6 +1168,7 @@ export declare const standardConfigSchema: {
|
|
|
1164
1168
|
hideApiMarker?: boolean | undefined;
|
|
1165
1169
|
noindex?: boolean | undefined;
|
|
1166
1170
|
isPublic?: boolean | undefined;
|
|
1171
|
+
public?: boolean | undefined;
|
|
1167
1172
|
} | undefined;
|
|
1168
1173
|
}>, import("zod").ZodUnion<[import("zod").ZodObject<{
|
|
1169
1174
|
openapi: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">, import("zod").ZodObject<{
|
|
@@ -1233,6 +1238,7 @@ export declare const standardConfigSchema: {
|
|
|
1233
1238
|
hideApiMarker?: boolean | undefined;
|
|
1234
1239
|
noindex?: boolean | undefined;
|
|
1235
1240
|
isPublic?: boolean | undefined;
|
|
1241
|
+
public?: boolean | undefined;
|
|
1236
1242
|
} | undefined;
|
|
1237
1243
|
} & ({
|
|
1238
1244
|
openapi: (string | string[] | {
|
|
@@ -1279,6 +1285,7 @@ export declare const standardConfigSchema: {
|
|
|
1279
1285
|
hideApiMarker?: boolean | undefined;
|
|
1280
1286
|
noindex?: boolean | undefined;
|
|
1281
1287
|
isPublic?: boolean | undefined;
|
|
1288
|
+
public?: boolean | undefined;
|
|
1282
1289
|
} | undefined;
|
|
1283
1290
|
} & ({
|
|
1284
1291
|
openapi: (string | string[] | {
|
|
@@ -1045,6 +1045,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1045
1045
|
hideApiMarker: z.ZodOptional<z.ZodBoolean>;
|
|
1046
1046
|
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
1047
1047
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
1048
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
1048
1049
|
}, "strip", z.ZodTypeAny, {
|
|
1049
1050
|
href: string;
|
|
1050
1051
|
title: string;
|
|
@@ -1071,6 +1072,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1071
1072
|
hideApiMarker?: boolean | undefined;
|
|
1072
1073
|
noindex?: boolean | undefined;
|
|
1073
1074
|
isPublic?: boolean | undefined;
|
|
1075
|
+
public?: boolean | undefined;
|
|
1074
1076
|
}, {
|
|
1075
1077
|
href: string;
|
|
1076
1078
|
title: string;
|
|
@@ -1097,6 +1099,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1097
1099
|
hideApiMarker?: boolean | undefined;
|
|
1098
1100
|
noindex?: boolean | undefined;
|
|
1099
1101
|
isPublic?: boolean | undefined;
|
|
1102
|
+
public?: boolean | undefined;
|
|
1100
1103
|
}>>;
|
|
1101
1104
|
}, "strip", z.ZodTypeAny, {
|
|
1102
1105
|
group: string;
|
|
@@ -1131,6 +1134,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1131
1134
|
hideApiMarker?: boolean | undefined;
|
|
1132
1135
|
noindex?: boolean | undefined;
|
|
1133
1136
|
isPublic?: boolean | undefined;
|
|
1137
|
+
public?: boolean | undefined;
|
|
1134
1138
|
} | undefined;
|
|
1135
1139
|
}, {
|
|
1136
1140
|
group: string;
|
|
@@ -1165,6 +1169,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1165
1169
|
hideApiMarker?: boolean | undefined;
|
|
1166
1170
|
noindex?: boolean | undefined;
|
|
1167
1171
|
isPublic?: boolean | undefined;
|
|
1172
|
+
public?: boolean | undefined;
|
|
1168
1173
|
} | undefined;
|
|
1169
1174
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
1170
1175
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -1234,6 +1239,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1234
1239
|
hideApiMarker?: boolean | undefined;
|
|
1235
1240
|
noindex?: boolean | undefined;
|
|
1236
1241
|
isPublic?: boolean | undefined;
|
|
1242
|
+
public?: boolean | undefined;
|
|
1237
1243
|
} | undefined;
|
|
1238
1244
|
} & ({
|
|
1239
1245
|
openapi: (string | string[] | {
|
|
@@ -1280,6 +1286,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1280
1286
|
hideApiMarker?: boolean | undefined;
|
|
1281
1287
|
noindex?: boolean | undefined;
|
|
1282
1288
|
isPublic?: boolean | undefined;
|
|
1289
|
+
public?: boolean | undefined;
|
|
1283
1290
|
} | undefined;
|
|
1284
1291
|
} & ({
|
|
1285
1292
|
openapi: (string | string[] | {
|
|
@@ -1851,6 +1858,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1851
1858
|
hideApiMarker?: boolean | undefined;
|
|
1852
1859
|
noindex?: boolean | undefined;
|
|
1853
1860
|
isPublic?: boolean | undefined;
|
|
1861
|
+
public?: boolean | undefined;
|
|
1854
1862
|
} | undefined;
|
|
1855
1863
|
} & ({
|
|
1856
1864
|
openapi: (string | string[] | {
|
|
@@ -1958,6 +1966,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1958
1966
|
hideApiMarker?: boolean | undefined;
|
|
1959
1967
|
noindex?: boolean | undefined;
|
|
1960
1968
|
isPublic?: boolean | undefined;
|
|
1969
|
+
public?: boolean | undefined;
|
|
1961
1970
|
} | undefined;
|
|
1962
1971
|
} & ({
|
|
1963
1972
|
openapi: (string | string[] | {
|
|
@@ -2235,6 +2244,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
2235
2244
|
hideApiMarker?: boolean | undefined;
|
|
2236
2245
|
noindex?: boolean | undefined;
|
|
2237
2246
|
isPublic?: boolean | undefined;
|
|
2247
|
+
public?: boolean | undefined;
|
|
2238
2248
|
} | undefined;
|
|
2239
2249
|
} & ({
|
|
2240
2250
|
openapi: (string | string[] | {
|
|
@@ -2342,6 +2352,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
2342
2352
|
hideApiMarker?: boolean | undefined;
|
|
2343
2353
|
noindex?: boolean | undefined;
|
|
2344
2354
|
isPublic?: boolean | undefined;
|
|
2355
|
+
public?: boolean | undefined;
|
|
2345
2356
|
} | undefined;
|
|
2346
2357
|
} & ({
|
|
2347
2358
|
openapi: (string | string[] | {
|
|
@@ -577,6 +577,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
577
577
|
hideApiMarker?: boolean | undefined;
|
|
578
578
|
noindex?: boolean | undefined;
|
|
579
579
|
isPublic?: boolean | undefined;
|
|
580
|
+
public?: boolean | undefined;
|
|
580
581
|
} | undefined;
|
|
581
582
|
} & ({
|
|
582
583
|
openapi: (string | string[] | {
|
|
@@ -684,6 +685,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
684
685
|
hideApiMarker?: boolean | undefined;
|
|
685
686
|
noindex?: boolean | undefined;
|
|
686
687
|
isPublic?: boolean | undefined;
|
|
688
|
+
public?: boolean | undefined;
|
|
687
689
|
} | undefined;
|
|
688
690
|
} & ({
|
|
689
691
|
openapi: (string | string[] | {
|
|
@@ -962,6 +964,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
962
964
|
hideApiMarker?: boolean | undefined;
|
|
963
965
|
noindex?: boolean | undefined;
|
|
964
966
|
isPublic?: boolean | undefined;
|
|
967
|
+
public?: boolean | undefined;
|
|
965
968
|
} | undefined;
|
|
966
969
|
} & ({
|
|
967
970
|
openapi: (string | string[] | {
|
|
@@ -1069,6 +1072,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1069
1072
|
hideApiMarker?: boolean | undefined;
|
|
1070
1073
|
noindex?: boolean | undefined;
|
|
1071
1074
|
isPublic?: boolean | undefined;
|
|
1075
|
+
public?: boolean | undefined;
|
|
1072
1076
|
} | undefined;
|
|
1073
1077
|
} & ({
|
|
1074
1078
|
openapi: (string | string[] | {
|
|
@@ -1347,6 +1351,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1347
1351
|
hideApiMarker?: boolean | undefined;
|
|
1348
1352
|
noindex?: boolean | undefined;
|
|
1349
1353
|
isPublic?: boolean | undefined;
|
|
1354
|
+
public?: boolean | undefined;
|
|
1350
1355
|
} | undefined;
|
|
1351
1356
|
} & ({
|
|
1352
1357
|
openapi: (string | string[] | {
|
|
@@ -1454,6 +1459,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1454
1459
|
hideApiMarker?: boolean | undefined;
|
|
1455
1460
|
noindex?: boolean | undefined;
|
|
1456
1461
|
isPublic?: boolean | undefined;
|
|
1462
|
+
public?: boolean | undefined;
|
|
1457
1463
|
} | undefined;
|
|
1458
1464
|
} & ({
|
|
1459
1465
|
openapi: (string | string[] | {
|
|
@@ -1732,6 +1738,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1732
1738
|
hideApiMarker?: boolean | undefined;
|
|
1733
1739
|
noindex?: boolean | undefined;
|
|
1734
1740
|
isPublic?: boolean | undefined;
|
|
1741
|
+
public?: boolean | undefined;
|
|
1735
1742
|
} | undefined;
|
|
1736
1743
|
} & ({
|
|
1737
1744
|
openapi: (string | string[] | {
|
|
@@ -1839,6 +1846,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1839
1846
|
hideApiMarker?: boolean | undefined;
|
|
1840
1847
|
noindex?: boolean | undefined;
|
|
1841
1848
|
isPublic?: boolean | undefined;
|
|
1849
|
+
public?: boolean | undefined;
|
|
1842
1850
|
} | undefined;
|
|
1843
1851
|
} & ({
|
|
1844
1852
|
openapi: (string | string[] | {
|
|
@@ -2117,6 +2125,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2117
2125
|
hideApiMarker?: boolean | undefined;
|
|
2118
2126
|
noindex?: boolean | undefined;
|
|
2119
2127
|
isPublic?: boolean | undefined;
|
|
2128
|
+
public?: boolean | undefined;
|
|
2120
2129
|
} | undefined;
|
|
2121
2130
|
} & ({
|
|
2122
2131
|
openapi: (string | string[] | {
|
|
@@ -2224,6 +2233,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2224
2233
|
hideApiMarker?: boolean | undefined;
|
|
2225
2234
|
noindex?: boolean | undefined;
|
|
2226
2235
|
isPublic?: boolean | undefined;
|
|
2236
|
+
public?: boolean | undefined;
|
|
2227
2237
|
} | undefined;
|
|
2228
2238
|
} & ({
|
|
2229
2239
|
openapi: (string | string[] | {
|
|
@@ -2506,6 +2516,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2506
2516
|
hideApiMarker?: boolean | undefined;
|
|
2507
2517
|
noindex?: boolean | undefined;
|
|
2508
2518
|
isPublic?: boolean | undefined;
|
|
2519
|
+
public?: boolean | undefined;
|
|
2509
2520
|
} | undefined;
|
|
2510
2521
|
} & ({
|
|
2511
2522
|
openapi: (string | string[] | {
|
|
@@ -2613,6 +2624,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2613
2624
|
hideApiMarker?: boolean | undefined;
|
|
2614
2625
|
noindex?: boolean | undefined;
|
|
2615
2626
|
isPublic?: boolean | undefined;
|
|
2627
|
+
public?: boolean | undefined;
|
|
2616
2628
|
} | undefined;
|
|
2617
2629
|
} & ({
|
|
2618
2630
|
openapi: (string | string[] | {
|
|
@@ -2891,6 +2903,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2891
2903
|
hideApiMarker?: boolean | undefined;
|
|
2892
2904
|
noindex?: boolean | undefined;
|
|
2893
2905
|
isPublic?: boolean | undefined;
|
|
2906
|
+
public?: boolean | undefined;
|
|
2894
2907
|
} | undefined;
|
|
2895
2908
|
} & ({
|
|
2896
2909
|
openapi: (string | string[] | {
|
|
@@ -2998,6 +3011,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2998
3011
|
hideApiMarker?: boolean | undefined;
|
|
2999
3012
|
noindex?: boolean | undefined;
|
|
3000
3013
|
isPublic?: boolean | undefined;
|
|
3014
|
+
public?: boolean | undefined;
|
|
3001
3015
|
} | undefined;
|
|
3002
3016
|
} & ({
|
|
3003
3017
|
openapi: (string | string[] | {
|
|
@@ -3276,6 +3290,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3276
3290
|
hideApiMarker?: boolean | undefined;
|
|
3277
3291
|
noindex?: boolean | undefined;
|
|
3278
3292
|
isPublic?: boolean | undefined;
|
|
3293
|
+
public?: boolean | undefined;
|
|
3279
3294
|
} | undefined;
|
|
3280
3295
|
} & ({
|
|
3281
3296
|
openapi: (string | string[] | {
|
|
@@ -3383,6 +3398,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3383
3398
|
hideApiMarker?: boolean | undefined;
|
|
3384
3399
|
noindex?: boolean | undefined;
|
|
3385
3400
|
isPublic?: boolean | undefined;
|
|
3401
|
+
public?: boolean | undefined;
|
|
3386
3402
|
} | undefined;
|
|
3387
3403
|
} & ({
|
|
3388
3404
|
openapi: (string | string[] | {
|
|
@@ -3661,6 +3677,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3661
3677
|
hideApiMarker?: boolean | undefined;
|
|
3662
3678
|
noindex?: boolean | undefined;
|
|
3663
3679
|
isPublic?: boolean | undefined;
|
|
3680
|
+
public?: boolean | undefined;
|
|
3664
3681
|
} | undefined;
|
|
3665
3682
|
} & ({
|
|
3666
3683
|
openapi: (string | string[] | {
|
|
@@ -3768,6 +3785,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3768
3785
|
hideApiMarker?: boolean | undefined;
|
|
3769
3786
|
noindex?: boolean | undefined;
|
|
3770
3787
|
isPublic?: boolean | undefined;
|
|
3788
|
+
public?: boolean | undefined;
|
|
3771
3789
|
} | undefined;
|
|
3772
3790
|
} & ({
|
|
3773
3791
|
openapi: (string | string[] | {
|
|
@@ -4046,6 +4064,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4046
4064
|
hideApiMarker?: boolean | undefined;
|
|
4047
4065
|
noindex?: boolean | undefined;
|
|
4048
4066
|
isPublic?: boolean | undefined;
|
|
4067
|
+
public?: boolean | undefined;
|
|
4049
4068
|
} | undefined;
|
|
4050
4069
|
} & ({
|
|
4051
4070
|
openapi: (string | string[] | {
|
|
@@ -4153,6 +4172,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4153
4172
|
hideApiMarker?: boolean | undefined;
|
|
4154
4173
|
noindex?: boolean | undefined;
|
|
4155
4174
|
isPublic?: boolean | undefined;
|
|
4175
|
+
public?: boolean | undefined;
|
|
4156
4176
|
} | undefined;
|
|
4157
4177
|
} & ({
|
|
4158
4178
|
openapi: (string | string[] | {
|