zudoku 0.23.3 → 0.23.5
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/config/validators/common.d.ts +82 -48
- package/dist/config/validators/common.js +6 -2
- package/dist/config/validators/common.js.map +1 -1
- package/dist/config/validators/validate.d.ts +33 -19
- package/dist/lib/authentication/providers/openid.d.ts +7 -0
- package/dist/lib/authentication/providers/openid.js +1 -0
- package/dist/lib/authentication/providers/openid.js.map +1 -1
- package/dist/lib/plugins/api-catalog/Catalog.d.ts +2 -6
- package/dist/lib/plugins/api-catalog/Catalog.js +22 -15
- package/dist/lib/plugins/api-catalog/Catalog.js.map +1 -1
- package/dist/lib/plugins/api-catalog/index.d.ts +8 -1
- package/dist/lib/plugins/api-catalog/index.js +2 -2
- package/dist/lib/plugins/api-catalog/index.js.map +1 -1
- package/dist/lib/plugins/openapi/OperationList.js +7 -33
- package/dist/lib/plugins/openapi/OperationList.js.map +1 -1
- package/dist/lib/plugins/openapi/Route.d.ts +4 -2
- package/dist/lib/plugins/openapi/Route.js +25 -2
- package/dist/lib/plugins/openapi/Route.js.map +1 -1
- package/dist/lib/plugins/openapi/context.d.ts +3 -3
- package/dist/lib/plugins/openapi/index.js +12 -12
- package/dist/lib/plugins/openapi/index.js.map +1 -1
- package/dist/lib/plugins/openapi/interfaces.d.ts +19 -0
- package/dist/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.d.ts +1 -0
- package/dist/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.js +27 -0
- package/dist/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.js.map +1 -0
- package/dist/lib/plugins/search-inkeep/index.js +21 -7
- package/dist/lib/plugins/search-inkeep/index.js.map +1 -1
- package/dist/vite/config.js +2 -1
- package/dist/vite/config.js.map +1 -1
- package/dist/vite/plugin-api.js +45 -19
- package/dist/vite/plugin-api.js.map +1 -1
- package/lib/{AuthenticationPlugin-DQy635W9.js → AuthenticationPlugin-fB7viE7A.js} +2 -2
- package/lib/{AuthenticationPlugin-DQy635W9.js.map → AuthenticationPlugin-fB7viE7A.js.map} +1 -1
- package/lib/{MdxPage-CBa4X6L5.js → MdxPage-CPBw4_lf.js} +18 -18
- package/lib/{MdxPage-CBa4X6L5.js.map → MdxPage-CPBw4_lf.js.map} +1 -1
- package/lib/OperationList-wvY-BrxS.js +5030 -0
- package/lib/OperationList-wvY-BrxS.js.map +1 -0
- package/lib/Route-C8nwd9A2.js +37 -0
- package/lib/Route-C8nwd9A2.js.map +1 -0
- package/lib/{Select-Bb_Hqc70.js → Select-D3XuKKuH.js} +3 -3
- package/lib/{Select-Bb_Hqc70.js.map → Select-D3XuKKuH.js.map} +1 -1
- package/lib/assets/{worker-BmEAZjUP.js → worker-D2kRl-cG.js} +1487 -1436
- package/lib/assets/worker-D2kRl-cG.js.map +1 -0
- package/lib/cn-qaFjX9_3.js.map +1 -1
- package/lib/context-h_UkBLvr.js.map +1 -1
- package/lib/{createServer-BVFp6Bl3.js → createServer-69sLlmQA.js} +1968 -1917
- package/lib/createServer-69sLlmQA.js.map +1 -0
- package/lib/{hook-DMHiUaIV.js → hook-DgGeo5iL.js} +2 -2
- package/lib/{hook-DMHiUaIV.js.map → hook-DgGeo5iL.js.map} +1 -1
- package/lib/{index-B6rTMjdI.js → index-C_ul-2fb.js} +444 -439
- package/lib/{index-B6rTMjdI.js.map → index-C_ul-2fb.js.map} +1 -1
- package/lib/{utils-R0j3Raw1.js → utils-B4O1uet5.js} +8 -8
- package/lib/{utils-R0j3Raw1.js.map → utils-B4O1uet5.js.map} +1 -1
- package/lib/zudoku.auth-clerk.js +1 -1
- package/lib/zudoku.auth-openid.js +70 -69
- package/lib/zudoku.auth-openid.js.map +1 -1
- package/lib/zudoku.components.js +2 -2
- package/lib/zudoku.openapi-worker.js +1 -1
- package/lib/zudoku.plugin-api-catalog.js +80 -78
- package/lib/zudoku.plugin-api-catalog.js.map +1 -1
- package/lib/zudoku.plugin-api-keys.js +3 -3
- package/lib/zudoku.plugin-markdown.js +1 -1
- package/lib/zudoku.plugin-openapi.js +3 -3
- package/lib/zudoku.plugin-search-inkeep.js +34 -26
- package/lib/zudoku.plugin-search-inkeep.js.map +1 -1
- package/package.json +5 -5
- package/src/lib/authentication/providers/openid.tsx +5 -3
- package/src/lib/plugins/api-catalog/Catalog.tsx +59 -60
- package/src/lib/plugins/api-catalog/index.tsx +14 -0
- package/src/lib/plugins/openapi/OperationList.tsx +42 -50
- package/src/lib/plugins/openapi/Route.tsx +45 -9
- package/src/lib/plugins/openapi/context.tsx +2 -2
- package/src/lib/plugins/openapi/index.tsx +35 -28
- package/src/lib/plugins/openapi/interfaces.ts +22 -1
- package/src/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.tsx +32 -0
- package/src/lib/plugins/search-inkeep/index.tsx +27 -8
- package/lib/OperationList-Bj-6EKhp.js +0 -4889
- package/lib/OperationList-Bj-6EKhp.js.map +0 -1
- package/lib/Route-C9cYcP-j.js +0 -11
- package/lib/Route-C9cYcP-j.js.map +0 -1
- package/lib/assets/worker-BmEAZjUP.js.map +0 -1
- package/lib/createServer-BVFp6Bl3.js.map +0 -1
|
@@ -41,7 +41,7 @@ declare const ApiSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
|
41
41
|
}[] | undefined;
|
|
42
42
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
43
43
|
type: z.ZodLiteral<"file">;
|
|
44
|
-
input: z.ZodString
|
|
44
|
+
input: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
45
45
|
}, {
|
|
46
46
|
id: z.ZodOptional<z.ZodString>;
|
|
47
47
|
server: z.ZodOptional<z.ZodString>;
|
|
@@ -60,7 +60,7 @@ declare const ApiSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
|
60
60
|
postProcessors: z.ZodOptional<z.ZodArray<z.ZodFunction<z.ZodTuple<[z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>], z.ZodUnknown>, z.ZodUnion<[z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, z.ZodPromise<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>]>>, "many">>;
|
|
61
61
|
}>, "strip", z.ZodTypeAny, {
|
|
62
62
|
type: "file";
|
|
63
|
-
input: string;
|
|
63
|
+
input: string | string[];
|
|
64
64
|
server?: string | undefined;
|
|
65
65
|
id?: string | undefined;
|
|
66
66
|
navigationId?: string | undefined;
|
|
@@ -71,7 +71,7 @@ declare const ApiSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
|
71
71
|
postProcessors?: ((args_0: z.objectInputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectOutputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
72
72
|
}, {
|
|
73
73
|
type: "file";
|
|
74
|
-
input: string;
|
|
74
|
+
input: string | string[];
|
|
75
75
|
server?: string | undefined;
|
|
76
76
|
id?: string | undefined;
|
|
77
77
|
navigationId?: string | undefined;
|
|
@@ -811,7 +811,7 @@ export declare const CommonConfigSchema: z.ZodObject<{
|
|
|
811
811
|
}[] | undefined;
|
|
812
812
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
813
813
|
type: z.ZodLiteral<"file">;
|
|
814
|
-
input: z.ZodString
|
|
814
|
+
input: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
815
815
|
}, {
|
|
816
816
|
id: z.ZodOptional<z.ZodString>;
|
|
817
817
|
server: z.ZodOptional<z.ZodString>;
|
|
@@ -830,7 +830,7 @@ export declare const CommonConfigSchema: z.ZodObject<{
|
|
|
830
830
|
postProcessors: z.ZodOptional<z.ZodArray<z.ZodFunction<z.ZodTuple<[z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>], z.ZodUnknown>, z.ZodUnion<[z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, z.ZodPromise<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>]>>, "many">>;
|
|
831
831
|
}>, "strip", z.ZodTypeAny, {
|
|
832
832
|
type: "file";
|
|
833
|
-
input: string;
|
|
833
|
+
input: string | string[];
|
|
834
834
|
server?: string | undefined;
|
|
835
835
|
id?: string | undefined;
|
|
836
836
|
navigationId?: string | undefined;
|
|
@@ -841,7 +841,7 @@ export declare const CommonConfigSchema: z.ZodObject<{
|
|
|
841
841
|
postProcessors?: ((args_0: z.objectInputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectOutputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
842
842
|
}, {
|
|
843
843
|
type: "file";
|
|
844
|
-
input: string;
|
|
844
|
+
input: string | string[];
|
|
845
845
|
server?: string | undefined;
|
|
846
846
|
id?: string | undefined;
|
|
847
847
|
navigationId?: string | undefined;
|
|
@@ -926,7 +926,7 @@ export declare const CommonConfigSchema: z.ZodObject<{
|
|
|
926
926
|
}[] | undefined;
|
|
927
927
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
928
928
|
type: z.ZodLiteral<"file">;
|
|
929
|
-
input: z.ZodString
|
|
929
|
+
input: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
930
930
|
}, {
|
|
931
931
|
id: z.ZodOptional<z.ZodString>;
|
|
932
932
|
server: z.ZodOptional<z.ZodString>;
|
|
@@ -945,7 +945,7 @@ export declare const CommonConfigSchema: z.ZodObject<{
|
|
|
945
945
|
postProcessors: z.ZodOptional<z.ZodArray<z.ZodFunction<z.ZodTuple<[z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>], z.ZodUnknown>, z.ZodUnion<[z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, z.ZodPromise<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>]>>, "many">>;
|
|
946
946
|
}>, "strip", z.ZodTypeAny, {
|
|
947
947
|
type: "file";
|
|
948
|
-
input: string;
|
|
948
|
+
input: string | string[];
|
|
949
949
|
server?: string | undefined;
|
|
950
950
|
id?: string | undefined;
|
|
951
951
|
navigationId?: string | undefined;
|
|
@@ -956,7 +956,7 @@ export declare const CommonConfigSchema: z.ZodObject<{
|
|
|
956
956
|
postProcessors?: ((args_0: z.objectInputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectOutputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
957
957
|
}, {
|
|
958
958
|
type: "file";
|
|
959
|
-
input: string;
|
|
959
|
+
input: string | string[];
|
|
960
960
|
server?: string | undefined;
|
|
961
961
|
id?: string | undefined;
|
|
962
962
|
navigationId?: string | undefined;
|
|
@@ -1003,29 +1003,35 @@ export declare const CommonConfigSchema: z.ZodObject<{
|
|
|
1003
1003
|
label: string;
|
|
1004
1004
|
}[] | undefined;
|
|
1005
1005
|
}>]>, "many">]>;
|
|
1006
|
-
|
|
1006
|
+
catalogs: z.ZodUnion<[z.ZodObject<{
|
|
1007
1007
|
navigationId: z.ZodString;
|
|
1008
1008
|
label: z.ZodString;
|
|
1009
1009
|
items: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1010
|
+
filterItems: z.ZodFunction<z.ZodTuple<[z.ZodAny], z.ZodUnknown>, z.ZodAny>;
|
|
1010
1011
|
}, "strip", z.ZodTypeAny, {
|
|
1011
1012
|
label: string;
|
|
1012
1013
|
navigationId: string;
|
|
1014
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
1013
1015
|
items?: string[] | undefined;
|
|
1014
1016
|
}, {
|
|
1015
1017
|
label: string;
|
|
1016
1018
|
navigationId: string;
|
|
1019
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
1017
1020
|
items?: string[] | undefined;
|
|
1018
1021
|
}>, z.ZodArray<z.ZodObject<{
|
|
1019
1022
|
navigationId: z.ZodString;
|
|
1020
1023
|
label: z.ZodString;
|
|
1021
1024
|
items: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1025
|
+
filterItems: z.ZodFunction<z.ZodTuple<[z.ZodAny], z.ZodUnknown>, z.ZodAny>;
|
|
1022
1026
|
}, "strip", z.ZodTypeAny, {
|
|
1023
1027
|
label: string;
|
|
1024
1028
|
navigationId: string;
|
|
1029
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
1025
1030
|
items?: string[] | undefined;
|
|
1026
1031
|
}, {
|
|
1027
1032
|
label: string;
|
|
1028
1033
|
navigationId: string;
|
|
1034
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
1029
1035
|
items?: string[] | undefined;
|
|
1030
1036
|
}>, "many">]>;
|
|
1031
1037
|
apiKeys: z.ZodUnion<[z.ZodObject<{
|
|
@@ -1277,7 +1283,7 @@ export declare const CommonConfigSchema: z.ZodObject<{
|
|
|
1277
1283
|
}[] | undefined;
|
|
1278
1284
|
} | {
|
|
1279
1285
|
type: "file";
|
|
1280
|
-
input: string;
|
|
1286
|
+
input: string | string[];
|
|
1281
1287
|
server?: string | undefined;
|
|
1282
1288
|
id?: string | undefined;
|
|
1283
1289
|
navigationId?: string | undefined;
|
|
@@ -1308,7 +1314,7 @@ export declare const CommonConfigSchema: z.ZodObject<{
|
|
|
1308
1314
|
}[] | undefined;
|
|
1309
1315
|
} | {
|
|
1310
1316
|
type: "file";
|
|
1311
|
-
input: string;
|
|
1317
|
+
input: string | string[];
|
|
1312
1318
|
server?: string | undefined;
|
|
1313
1319
|
id?: string | undefined;
|
|
1314
1320
|
navigationId?: string | undefined;
|
|
@@ -1328,13 +1334,15 @@ export declare const CommonConfigSchema: z.ZodObject<{
|
|
|
1328
1334
|
label: string;
|
|
1329
1335
|
}[] | undefined;
|
|
1330
1336
|
})[];
|
|
1331
|
-
|
|
1337
|
+
catalogs: {
|
|
1332
1338
|
label: string;
|
|
1333
1339
|
navigationId: string;
|
|
1340
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
1334
1341
|
items?: string[] | undefined;
|
|
1335
1342
|
} | {
|
|
1336
1343
|
label: string;
|
|
1337
1344
|
navigationId: string;
|
|
1345
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
1338
1346
|
items?: string[] | undefined;
|
|
1339
1347
|
}[];
|
|
1340
1348
|
apiKeys: {
|
|
@@ -1518,7 +1526,7 @@ export declare const CommonConfigSchema: z.ZodObject<{
|
|
|
1518
1526
|
}[] | undefined;
|
|
1519
1527
|
} | {
|
|
1520
1528
|
type: "file";
|
|
1521
|
-
input: string;
|
|
1529
|
+
input: string | string[];
|
|
1522
1530
|
server?: string | undefined;
|
|
1523
1531
|
id?: string | undefined;
|
|
1524
1532
|
navigationId?: string | undefined;
|
|
@@ -1549,7 +1557,7 @@ export declare const CommonConfigSchema: z.ZodObject<{
|
|
|
1549
1557
|
}[] | undefined;
|
|
1550
1558
|
} | {
|
|
1551
1559
|
type: "file";
|
|
1552
|
-
input: string;
|
|
1560
|
+
input: string | string[];
|
|
1553
1561
|
server?: string | undefined;
|
|
1554
1562
|
id?: string | undefined;
|
|
1555
1563
|
navigationId?: string | undefined;
|
|
@@ -1569,13 +1577,15 @@ export declare const CommonConfigSchema: z.ZodObject<{
|
|
|
1569
1577
|
label: string;
|
|
1570
1578
|
}[] | undefined;
|
|
1571
1579
|
})[];
|
|
1572
|
-
|
|
1580
|
+
catalogs: {
|
|
1573
1581
|
label: string;
|
|
1574
1582
|
navigationId: string;
|
|
1583
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
1575
1584
|
items?: string[] | undefined;
|
|
1576
1585
|
} | {
|
|
1577
1586
|
label: string;
|
|
1578
1587
|
navigationId: string;
|
|
1588
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
1579
1589
|
items?: string[] | undefined;
|
|
1580
1590
|
}[];
|
|
1581
1591
|
apiKeys: {
|
|
@@ -2211,7 +2221,7 @@ declare const CommonConfigSchemaPartial: z.ZodObject<{
|
|
|
2211
2221
|
}[] | undefined;
|
|
2212
2222
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
2213
2223
|
type: z.ZodLiteral<"file">;
|
|
2214
|
-
input: z.ZodString
|
|
2224
|
+
input: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
2215
2225
|
}, {
|
|
2216
2226
|
id: z.ZodOptional<z.ZodString>;
|
|
2217
2227
|
server: z.ZodOptional<z.ZodString>;
|
|
@@ -2230,7 +2240,7 @@ declare const CommonConfigSchemaPartial: z.ZodObject<{
|
|
|
2230
2240
|
postProcessors: z.ZodOptional<z.ZodArray<z.ZodFunction<z.ZodTuple<[z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>], z.ZodUnknown>, z.ZodUnion<[z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, z.ZodPromise<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>]>>, "many">>;
|
|
2231
2241
|
}>, "strip", z.ZodTypeAny, {
|
|
2232
2242
|
type: "file";
|
|
2233
|
-
input: string;
|
|
2243
|
+
input: string | string[];
|
|
2234
2244
|
server?: string | undefined;
|
|
2235
2245
|
id?: string | undefined;
|
|
2236
2246
|
navigationId?: string | undefined;
|
|
@@ -2241,7 +2251,7 @@ declare const CommonConfigSchemaPartial: z.ZodObject<{
|
|
|
2241
2251
|
postProcessors?: ((args_0: z.objectInputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectOutputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
2242
2252
|
}, {
|
|
2243
2253
|
type: "file";
|
|
2244
|
-
input: string;
|
|
2254
|
+
input: string | string[];
|
|
2245
2255
|
server?: string | undefined;
|
|
2246
2256
|
id?: string | undefined;
|
|
2247
2257
|
navigationId?: string | undefined;
|
|
@@ -2326,7 +2336,7 @@ declare const CommonConfigSchemaPartial: z.ZodObject<{
|
|
|
2326
2336
|
}[] | undefined;
|
|
2327
2337
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
2328
2338
|
type: z.ZodLiteral<"file">;
|
|
2329
|
-
input: z.ZodString
|
|
2339
|
+
input: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
2330
2340
|
}, {
|
|
2331
2341
|
id: z.ZodOptional<z.ZodString>;
|
|
2332
2342
|
server: z.ZodOptional<z.ZodString>;
|
|
@@ -2345,7 +2355,7 @@ declare const CommonConfigSchemaPartial: z.ZodObject<{
|
|
|
2345
2355
|
postProcessors: z.ZodOptional<z.ZodArray<z.ZodFunction<z.ZodTuple<[z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>], z.ZodUnknown>, z.ZodUnion<[z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, z.ZodPromise<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>]>>, "many">>;
|
|
2346
2356
|
}>, "strip", z.ZodTypeAny, {
|
|
2347
2357
|
type: "file";
|
|
2348
|
-
input: string;
|
|
2358
|
+
input: string | string[];
|
|
2349
2359
|
server?: string | undefined;
|
|
2350
2360
|
id?: string | undefined;
|
|
2351
2361
|
navigationId?: string | undefined;
|
|
@@ -2356,7 +2366,7 @@ declare const CommonConfigSchemaPartial: z.ZodObject<{
|
|
|
2356
2366
|
postProcessors?: ((args_0: z.objectInputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectOutputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
2357
2367
|
}, {
|
|
2358
2368
|
type: "file";
|
|
2359
|
-
input: string;
|
|
2369
|
+
input: string | string[];
|
|
2360
2370
|
server?: string | undefined;
|
|
2361
2371
|
id?: string | undefined;
|
|
2362
2372
|
navigationId?: string | undefined;
|
|
@@ -2403,29 +2413,35 @@ declare const CommonConfigSchemaPartial: z.ZodObject<{
|
|
|
2403
2413
|
label: string;
|
|
2404
2414
|
}[] | undefined;
|
|
2405
2415
|
}>]>, "many">]>>;
|
|
2406
|
-
|
|
2416
|
+
catalogs: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2407
2417
|
navigationId: z.ZodString;
|
|
2408
2418
|
label: z.ZodString;
|
|
2409
2419
|
items: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2420
|
+
filterItems: z.ZodFunction<z.ZodTuple<[z.ZodAny], z.ZodUnknown>, z.ZodAny>;
|
|
2410
2421
|
}, "strip", z.ZodTypeAny, {
|
|
2411
2422
|
label: string;
|
|
2412
2423
|
navigationId: string;
|
|
2424
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
2413
2425
|
items?: string[] | undefined;
|
|
2414
2426
|
}, {
|
|
2415
2427
|
label: string;
|
|
2416
2428
|
navigationId: string;
|
|
2429
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
2417
2430
|
items?: string[] | undefined;
|
|
2418
2431
|
}>, z.ZodArray<z.ZodObject<{
|
|
2419
2432
|
navigationId: z.ZodString;
|
|
2420
2433
|
label: z.ZodString;
|
|
2421
2434
|
items: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2435
|
+
filterItems: z.ZodFunction<z.ZodTuple<[z.ZodAny], z.ZodUnknown>, z.ZodAny>;
|
|
2422
2436
|
}, "strip", z.ZodTypeAny, {
|
|
2423
2437
|
label: string;
|
|
2424
2438
|
navigationId: string;
|
|
2439
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
2425
2440
|
items?: string[] | undefined;
|
|
2426
2441
|
}, {
|
|
2427
2442
|
label: string;
|
|
2428
2443
|
navigationId: string;
|
|
2444
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
2429
2445
|
items?: string[] | undefined;
|
|
2430
2446
|
}>, "many">]>>;
|
|
2431
2447
|
apiKeys: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -2686,7 +2702,7 @@ declare const CommonConfigSchemaPartial: z.ZodObject<{
|
|
|
2686
2702
|
}[] | undefined;
|
|
2687
2703
|
} | {
|
|
2688
2704
|
type: "file";
|
|
2689
|
-
input: string;
|
|
2705
|
+
input: string | string[];
|
|
2690
2706
|
server?: string | undefined;
|
|
2691
2707
|
id?: string | undefined;
|
|
2692
2708
|
navigationId?: string | undefined;
|
|
@@ -2717,7 +2733,7 @@ declare const CommonConfigSchemaPartial: z.ZodObject<{
|
|
|
2717
2733
|
}[] | undefined;
|
|
2718
2734
|
} | {
|
|
2719
2735
|
type: "file";
|
|
2720
|
-
input: string;
|
|
2736
|
+
input: string | string[];
|
|
2721
2737
|
server?: string | undefined;
|
|
2722
2738
|
id?: string | undefined;
|
|
2723
2739
|
navigationId?: string | undefined;
|
|
@@ -2737,13 +2753,15 @@ declare const CommonConfigSchemaPartial: z.ZodObject<{
|
|
|
2737
2753
|
label: string;
|
|
2738
2754
|
}[] | undefined;
|
|
2739
2755
|
})[] | undefined;
|
|
2740
|
-
|
|
2756
|
+
catalogs?: {
|
|
2741
2757
|
label: string;
|
|
2742
2758
|
navigationId: string;
|
|
2759
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
2743
2760
|
items?: string[] | undefined;
|
|
2744
2761
|
} | {
|
|
2745
2762
|
label: string;
|
|
2746
2763
|
navigationId: string;
|
|
2764
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
2747
2765
|
items?: string[] | undefined;
|
|
2748
2766
|
}[] | undefined;
|
|
2749
2767
|
apiKeys?: {
|
|
@@ -2927,7 +2945,7 @@ declare const CommonConfigSchemaPartial: z.ZodObject<{
|
|
|
2927
2945
|
}[] | undefined;
|
|
2928
2946
|
} | {
|
|
2929
2947
|
type: "file";
|
|
2930
|
-
input: string;
|
|
2948
|
+
input: string | string[];
|
|
2931
2949
|
server?: string | undefined;
|
|
2932
2950
|
id?: string | undefined;
|
|
2933
2951
|
navigationId?: string | undefined;
|
|
@@ -2958,7 +2976,7 @@ declare const CommonConfigSchemaPartial: z.ZodObject<{
|
|
|
2958
2976
|
}[] | undefined;
|
|
2959
2977
|
} | {
|
|
2960
2978
|
type: "file";
|
|
2961
|
-
input: string;
|
|
2979
|
+
input: string | string[];
|
|
2962
2980
|
server?: string | undefined;
|
|
2963
2981
|
id?: string | undefined;
|
|
2964
2982
|
navigationId?: string | undefined;
|
|
@@ -2978,13 +2996,15 @@ declare const CommonConfigSchemaPartial: z.ZodObject<{
|
|
|
2978
2996
|
label: string;
|
|
2979
2997
|
}[] | undefined;
|
|
2980
2998
|
})[] | undefined;
|
|
2981
|
-
|
|
2999
|
+
catalogs?: {
|
|
2982
3000
|
label: string;
|
|
2983
3001
|
navigationId: string;
|
|
3002
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
2984
3003
|
items?: string[] | undefined;
|
|
2985
3004
|
} | {
|
|
2986
3005
|
label: string;
|
|
2987
3006
|
navigationId: string;
|
|
3007
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
2988
3008
|
items?: string[] | undefined;
|
|
2989
3009
|
}[] | undefined;
|
|
2990
3010
|
apiKeys?: {
|
|
@@ -3610,7 +3630,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3610
3630
|
}[] | undefined;
|
|
3611
3631
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
3612
3632
|
type: z.ZodLiteral<"file">;
|
|
3613
|
-
input: z.ZodString
|
|
3633
|
+
input: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
3614
3634
|
}, {
|
|
3615
3635
|
id: z.ZodOptional<z.ZodString>;
|
|
3616
3636
|
server: z.ZodOptional<z.ZodString>;
|
|
@@ -3629,7 +3649,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3629
3649
|
postProcessors: z.ZodOptional<z.ZodArray<z.ZodFunction<z.ZodTuple<[z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>], z.ZodUnknown>, z.ZodUnion<[z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, z.ZodPromise<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>]>>, "many">>;
|
|
3630
3650
|
}>, "strip", z.ZodTypeAny, {
|
|
3631
3651
|
type: "file";
|
|
3632
|
-
input: string;
|
|
3652
|
+
input: string | string[];
|
|
3633
3653
|
server?: string | undefined;
|
|
3634
3654
|
id?: string | undefined;
|
|
3635
3655
|
navigationId?: string | undefined;
|
|
@@ -3640,7 +3660,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3640
3660
|
postProcessors?: ((args_0: z.objectInputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectOutputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
3641
3661
|
}, {
|
|
3642
3662
|
type: "file";
|
|
3643
|
-
input: string;
|
|
3663
|
+
input: string | string[];
|
|
3644
3664
|
server?: string | undefined;
|
|
3645
3665
|
id?: string | undefined;
|
|
3646
3666
|
navigationId?: string | undefined;
|
|
@@ -3725,7 +3745,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3725
3745
|
}[] | undefined;
|
|
3726
3746
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
3727
3747
|
type: z.ZodLiteral<"file">;
|
|
3728
|
-
input: z.ZodString
|
|
3748
|
+
input: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
3729
3749
|
}, {
|
|
3730
3750
|
id: z.ZodOptional<z.ZodString>;
|
|
3731
3751
|
server: z.ZodOptional<z.ZodString>;
|
|
@@ -3744,7 +3764,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3744
3764
|
postProcessors: z.ZodOptional<z.ZodArray<z.ZodFunction<z.ZodTuple<[z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>], z.ZodUnknown>, z.ZodUnion<[z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, z.ZodPromise<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>]>>, "many">>;
|
|
3745
3765
|
}>, "strip", z.ZodTypeAny, {
|
|
3746
3766
|
type: "file";
|
|
3747
|
-
input: string;
|
|
3767
|
+
input: string | string[];
|
|
3748
3768
|
server?: string | undefined;
|
|
3749
3769
|
id?: string | undefined;
|
|
3750
3770
|
navigationId?: string | undefined;
|
|
@@ -3755,7 +3775,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3755
3775
|
postProcessors?: ((args_0: z.objectInputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectOutputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
3756
3776
|
}, {
|
|
3757
3777
|
type: "file";
|
|
3758
|
-
input: string;
|
|
3778
|
+
input: string | string[];
|
|
3759
3779
|
server?: string | undefined;
|
|
3760
3780
|
id?: string | undefined;
|
|
3761
3781
|
navigationId?: string | undefined;
|
|
@@ -3802,29 +3822,35 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3802
3822
|
label: string;
|
|
3803
3823
|
}[] | undefined;
|
|
3804
3824
|
}>]>, "many">]>>;
|
|
3805
|
-
|
|
3825
|
+
catalogs: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
3806
3826
|
navigationId: z.ZodString;
|
|
3807
3827
|
label: z.ZodString;
|
|
3808
3828
|
items: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3829
|
+
filterItems: z.ZodFunction<z.ZodTuple<[z.ZodAny], z.ZodUnknown>, z.ZodAny>;
|
|
3809
3830
|
}, "strip", z.ZodTypeAny, {
|
|
3810
3831
|
label: string;
|
|
3811
3832
|
navigationId: string;
|
|
3833
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
3812
3834
|
items?: string[] | undefined;
|
|
3813
3835
|
}, {
|
|
3814
3836
|
label: string;
|
|
3815
3837
|
navigationId: string;
|
|
3838
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
3816
3839
|
items?: string[] | undefined;
|
|
3817
3840
|
}>, z.ZodArray<z.ZodObject<{
|
|
3818
3841
|
navigationId: z.ZodString;
|
|
3819
3842
|
label: z.ZodString;
|
|
3820
3843
|
items: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3844
|
+
filterItems: z.ZodFunction<z.ZodTuple<[z.ZodAny], z.ZodUnknown>, z.ZodAny>;
|
|
3821
3845
|
}, "strip", z.ZodTypeAny, {
|
|
3822
3846
|
label: string;
|
|
3823
3847
|
navigationId: string;
|
|
3848
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
3824
3849
|
items?: string[] | undefined;
|
|
3825
3850
|
}, {
|
|
3826
3851
|
label: string;
|
|
3827
3852
|
navigationId: string;
|
|
3853
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
3828
3854
|
items?: string[] | undefined;
|
|
3829
3855
|
}>, "many">]>>;
|
|
3830
3856
|
apiKeys: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -4085,7 +4111,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
4085
4111
|
}[] | undefined;
|
|
4086
4112
|
} | {
|
|
4087
4113
|
type: "file";
|
|
4088
|
-
input: string;
|
|
4114
|
+
input: string | string[];
|
|
4089
4115
|
server?: string | undefined;
|
|
4090
4116
|
id?: string | undefined;
|
|
4091
4117
|
navigationId?: string | undefined;
|
|
@@ -4116,7 +4142,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
4116
4142
|
}[] | undefined;
|
|
4117
4143
|
} | {
|
|
4118
4144
|
type: "file";
|
|
4119
|
-
input: string;
|
|
4145
|
+
input: string | string[];
|
|
4120
4146
|
server?: string | undefined;
|
|
4121
4147
|
id?: string | undefined;
|
|
4122
4148
|
navigationId?: string | undefined;
|
|
@@ -4136,13 +4162,15 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
4136
4162
|
label: string;
|
|
4137
4163
|
}[] | undefined;
|
|
4138
4164
|
})[] | undefined;
|
|
4139
|
-
|
|
4165
|
+
catalogs?: {
|
|
4140
4166
|
label: string;
|
|
4141
4167
|
navigationId: string;
|
|
4168
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
4142
4169
|
items?: string[] | undefined;
|
|
4143
4170
|
} | {
|
|
4144
4171
|
label: string;
|
|
4145
4172
|
navigationId: string;
|
|
4173
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
4146
4174
|
items?: string[] | undefined;
|
|
4147
4175
|
}[] | undefined;
|
|
4148
4176
|
apiKeys?: {
|
|
@@ -4326,7 +4354,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
4326
4354
|
}[] | undefined;
|
|
4327
4355
|
} | {
|
|
4328
4356
|
type: "file";
|
|
4329
|
-
input: string;
|
|
4357
|
+
input: string | string[];
|
|
4330
4358
|
server?: string | undefined;
|
|
4331
4359
|
id?: string | undefined;
|
|
4332
4360
|
navigationId?: string | undefined;
|
|
@@ -4357,7 +4385,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
4357
4385
|
}[] | undefined;
|
|
4358
4386
|
} | {
|
|
4359
4387
|
type: "file";
|
|
4360
|
-
input: string;
|
|
4388
|
+
input: string | string[];
|
|
4361
4389
|
server?: string | undefined;
|
|
4362
4390
|
id?: string | undefined;
|
|
4363
4391
|
navigationId?: string | undefined;
|
|
@@ -4377,13 +4405,15 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
4377
4405
|
label: string;
|
|
4378
4406
|
}[] | undefined;
|
|
4379
4407
|
})[] | undefined;
|
|
4380
|
-
|
|
4408
|
+
catalogs?: {
|
|
4381
4409
|
label: string;
|
|
4382
4410
|
navigationId: string;
|
|
4411
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
4383
4412
|
items?: string[] | undefined;
|
|
4384
4413
|
} | {
|
|
4385
4414
|
label: string;
|
|
4386
4415
|
navigationId: string;
|
|
4416
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
4387
4417
|
items?: string[] | undefined;
|
|
4388
4418
|
}[] | undefined;
|
|
4389
4419
|
apiKeys?: {
|
|
@@ -4567,7 +4597,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
4567
4597
|
}[] | undefined;
|
|
4568
4598
|
} | {
|
|
4569
4599
|
type: "file";
|
|
4570
|
-
input: string;
|
|
4600
|
+
input: string | string[];
|
|
4571
4601
|
server?: string | undefined;
|
|
4572
4602
|
id?: string | undefined;
|
|
4573
4603
|
navigationId?: string | undefined;
|
|
@@ -4598,7 +4628,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
4598
4628
|
}[] | undefined;
|
|
4599
4629
|
} | {
|
|
4600
4630
|
type: "file";
|
|
4601
|
-
input: string;
|
|
4631
|
+
input: string | string[];
|
|
4602
4632
|
server?: string | undefined;
|
|
4603
4633
|
id?: string | undefined;
|
|
4604
4634
|
navigationId?: string | undefined;
|
|
@@ -4618,13 +4648,15 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
4618
4648
|
label: string;
|
|
4619
4649
|
}[] | undefined;
|
|
4620
4650
|
})[] | undefined;
|
|
4621
|
-
|
|
4651
|
+
catalogs?: {
|
|
4622
4652
|
label: string;
|
|
4623
4653
|
navigationId: string;
|
|
4654
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
4624
4655
|
items?: string[] | undefined;
|
|
4625
4656
|
} | {
|
|
4626
4657
|
label: string;
|
|
4627
4658
|
navigationId: string;
|
|
4659
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
4628
4660
|
items?: string[] | undefined;
|
|
4629
4661
|
}[] | undefined;
|
|
4630
4662
|
apiKeys?: {
|
|
@@ -4808,7 +4840,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
4808
4840
|
}[] | undefined;
|
|
4809
4841
|
} | {
|
|
4810
4842
|
type: "file";
|
|
4811
|
-
input: string;
|
|
4843
|
+
input: string | string[];
|
|
4812
4844
|
server?: string | undefined;
|
|
4813
4845
|
id?: string | undefined;
|
|
4814
4846
|
navigationId?: string | undefined;
|
|
@@ -4839,7 +4871,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
4839
4871
|
}[] | undefined;
|
|
4840
4872
|
} | {
|
|
4841
4873
|
type: "file";
|
|
4842
|
-
input: string;
|
|
4874
|
+
input: string | string[];
|
|
4843
4875
|
server?: string | undefined;
|
|
4844
4876
|
id?: string | undefined;
|
|
4845
4877
|
navigationId?: string | undefined;
|
|
@@ -4859,13 +4891,15 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
4859
4891
|
label: string;
|
|
4860
4892
|
}[] | undefined;
|
|
4861
4893
|
})[] | undefined;
|
|
4862
|
-
|
|
4894
|
+
catalogs?: {
|
|
4863
4895
|
label: string;
|
|
4864
4896
|
navigationId: string;
|
|
4897
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
4865
4898
|
items?: string[] | undefined;
|
|
4866
4899
|
} | {
|
|
4867
4900
|
label: string;
|
|
4868
4901
|
navigationId: string;
|
|
4902
|
+
filterItems: (args_0: any, ...args: unknown[]) => any;
|
|
4869
4903
|
items?: string[] | undefined;
|
|
4870
4904
|
}[] | undefined;
|
|
4871
4905
|
apiKeys?: {
|
|
@@ -45,7 +45,10 @@ const ApiSchema = z.union([
|
|
|
45
45
|
.object({ type: z.literal("url"), input: z.string() })
|
|
46
46
|
.merge(ApiConfigSchema),
|
|
47
47
|
z
|
|
48
|
-
.object({
|
|
48
|
+
.object({
|
|
49
|
+
type: z.literal("file"),
|
|
50
|
+
input: z.union([z.string(), z.array(z.string())]),
|
|
51
|
+
})
|
|
49
52
|
.merge(ApiConfigSchema)
|
|
50
53
|
.merge(z.object({ postProcessors: ApiPostProcessorSchema.array().optional() })),
|
|
51
54
|
z
|
|
@@ -221,6 +224,7 @@ const ApiCatalogSchema = z.object({
|
|
|
221
224
|
navigationId: z.string(),
|
|
222
225
|
label: z.string(),
|
|
223
226
|
items: z.array(z.string()).optional(),
|
|
227
|
+
filterItems: z.function().args(z.any()).returns(z.any()),
|
|
224
228
|
});
|
|
225
229
|
/**
|
|
226
230
|
* These are the config settings that are available in all configuration
|
|
@@ -243,7 +247,7 @@ export const CommonConfigSchema = z.object({
|
|
|
243
247
|
search: SearchSchema,
|
|
244
248
|
docs: z.union([DocsConfigSchema, z.array(DocsConfigSchema)]),
|
|
245
249
|
apis: z.union([ApiSchema, z.array(ApiSchema)]),
|
|
246
|
-
|
|
250
|
+
catalogs: z.union([ApiCatalogSchema, z.array(ApiCatalogSchema)]),
|
|
247
251
|
apiKeys: ApiKeysSchema,
|
|
248
252
|
redirects: z.array(Redirect),
|
|
249
253
|
sitemap: SiteMapSchema,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common.js","sourceRoot":"","sources":["../../../src/config/validators/common.ts"],"names":[],"mappings":"AACA,OAAO,CAON,MAAM,KAAK,CAAC;AACb,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAGjD,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAE7D,MAAM,SAAS,GAAG,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,WAAW,EAAE,CAAC;AAE7C,MAAM,WAAW,GAAG,CAAC;KAClB,MAAM,CAAC;IACN,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE;IAC1B,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC7B,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC7B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC/B,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE;IAC3B,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5B,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;IACvB,qBAAqB,EAAE,CAAC,CAAC,MAAM,EAAE;IACjC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;CACnB,CAAC;KACD,OAAO,EAAE,CAAC;AAEb,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IACxC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;CAC1B,CAAC,CAAC;AAEH,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/B,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACzB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnC,UAAU,EAAE,CAAC,CAAC,KAAK,CAAC,wBAAwB,CAAC,CAAC,QAAQ,EAAE;CACzD,CAAC,CAAC;AAEH,MAAM,sBAAsB,GAAG,CAAC;KAC7B,QAAQ,EAAE;KACV,IAAI,CAAC,SAAS,CAAC;KACf,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,SAAS,EAAE,CAAC,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;AAEvD,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC;IACxB,CAAC;SACE,MAAM,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC;SACrD,KAAK,CAAC,eAAe,CAAC;IACzB,CAAC;SACE,MAAM,CAAC,
|
|
1
|
+
{"version":3,"file":"common.js","sourceRoot":"","sources":["../../../src/config/validators/common.ts"],"names":[],"mappings":"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"}
|