zudoku 0.23.4 → 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 +37 -37
- package/dist/config/validators/common.js +4 -1
- package/dist/config/validators/common.js.map +1 -1
- package/dist/config/validators/validate.d.ts +14 -14
- 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/vite/config.js +2 -1
- package/dist/vite/config.js.map +1 -1
- package/dist/vite/plugin-api.js +35 -14
- package/dist/vite/plugin-api.js.map +1 -1
- package/lib/{OperationList-C7ac3kR5.js → OperationList-wvY-BrxS.js} +1173 -1157
- 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/context-h_UkBLvr.js.map +1 -1
- package/lib/{index-C8ubT49C.js → index-C_ul-2fb.js} +442 -437
- package/lib/{index-C8ubT49C.js.map → index-C_ul-2fb.js.map} +1 -1
- package/lib/zudoku.plugin-openapi.js +1 -1
- package/package.json +1 -1
- 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/lib/OperationList-C7ac3kR5.js.map +0 -1
- package/lib/Route-C9cYcP-j.js +0 -11
- package/lib/Route-C9cYcP-j.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;
|
|
@@ -1283,7 +1283,7 @@ export declare const CommonConfigSchema: z.ZodObject<{
|
|
|
1283
1283
|
}[] | undefined;
|
|
1284
1284
|
} | {
|
|
1285
1285
|
type: "file";
|
|
1286
|
-
input: string;
|
|
1286
|
+
input: string | string[];
|
|
1287
1287
|
server?: string | undefined;
|
|
1288
1288
|
id?: string | undefined;
|
|
1289
1289
|
navigationId?: string | undefined;
|
|
@@ -1314,7 +1314,7 @@ export declare const CommonConfigSchema: z.ZodObject<{
|
|
|
1314
1314
|
}[] | undefined;
|
|
1315
1315
|
} | {
|
|
1316
1316
|
type: "file";
|
|
1317
|
-
input: string;
|
|
1317
|
+
input: string | string[];
|
|
1318
1318
|
server?: string | undefined;
|
|
1319
1319
|
id?: string | undefined;
|
|
1320
1320
|
navigationId?: string | undefined;
|
|
@@ -1526,7 +1526,7 @@ export declare const CommonConfigSchema: z.ZodObject<{
|
|
|
1526
1526
|
}[] | undefined;
|
|
1527
1527
|
} | {
|
|
1528
1528
|
type: "file";
|
|
1529
|
-
input: string;
|
|
1529
|
+
input: string | string[];
|
|
1530
1530
|
server?: string | undefined;
|
|
1531
1531
|
id?: string | undefined;
|
|
1532
1532
|
navigationId?: string | undefined;
|
|
@@ -1557,7 +1557,7 @@ export declare const CommonConfigSchema: z.ZodObject<{
|
|
|
1557
1557
|
}[] | undefined;
|
|
1558
1558
|
} | {
|
|
1559
1559
|
type: "file";
|
|
1560
|
-
input: string;
|
|
1560
|
+
input: string | string[];
|
|
1561
1561
|
server?: string | undefined;
|
|
1562
1562
|
id?: string | undefined;
|
|
1563
1563
|
navigationId?: string | undefined;
|
|
@@ -2221,7 +2221,7 @@ declare const CommonConfigSchemaPartial: z.ZodObject<{
|
|
|
2221
2221
|
}[] | undefined;
|
|
2222
2222
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
2223
2223
|
type: z.ZodLiteral<"file">;
|
|
2224
|
-
input: z.ZodString
|
|
2224
|
+
input: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
2225
2225
|
}, {
|
|
2226
2226
|
id: z.ZodOptional<z.ZodString>;
|
|
2227
2227
|
server: z.ZodOptional<z.ZodString>;
|
|
@@ -2240,7 +2240,7 @@ declare const CommonConfigSchemaPartial: z.ZodObject<{
|
|
|
2240
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">>;
|
|
2241
2241
|
}>, "strip", z.ZodTypeAny, {
|
|
2242
2242
|
type: "file";
|
|
2243
|
-
input: string;
|
|
2243
|
+
input: string | string[];
|
|
2244
2244
|
server?: string | undefined;
|
|
2245
2245
|
id?: string | undefined;
|
|
2246
2246
|
navigationId?: string | undefined;
|
|
@@ -2251,7 +2251,7 @@ declare const CommonConfigSchemaPartial: z.ZodObject<{
|
|
|
2251
2251
|
postProcessors?: ((args_0: z.objectInputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectOutputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
2252
2252
|
}, {
|
|
2253
2253
|
type: "file";
|
|
2254
|
-
input: string;
|
|
2254
|
+
input: string | string[];
|
|
2255
2255
|
server?: string | undefined;
|
|
2256
2256
|
id?: string | undefined;
|
|
2257
2257
|
navigationId?: string | undefined;
|
|
@@ -2336,7 +2336,7 @@ declare const CommonConfigSchemaPartial: z.ZodObject<{
|
|
|
2336
2336
|
}[] | undefined;
|
|
2337
2337
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
2338
2338
|
type: z.ZodLiteral<"file">;
|
|
2339
|
-
input: z.ZodString
|
|
2339
|
+
input: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
2340
2340
|
}, {
|
|
2341
2341
|
id: z.ZodOptional<z.ZodString>;
|
|
2342
2342
|
server: z.ZodOptional<z.ZodString>;
|
|
@@ -2355,7 +2355,7 @@ declare const CommonConfigSchemaPartial: z.ZodObject<{
|
|
|
2355
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">>;
|
|
2356
2356
|
}>, "strip", z.ZodTypeAny, {
|
|
2357
2357
|
type: "file";
|
|
2358
|
-
input: string;
|
|
2358
|
+
input: string | string[];
|
|
2359
2359
|
server?: string | undefined;
|
|
2360
2360
|
id?: string | undefined;
|
|
2361
2361
|
navigationId?: string | undefined;
|
|
@@ -2366,7 +2366,7 @@ declare const CommonConfigSchemaPartial: z.ZodObject<{
|
|
|
2366
2366
|
postProcessors?: ((args_0: z.objectInputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectOutputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
2367
2367
|
}, {
|
|
2368
2368
|
type: "file";
|
|
2369
|
-
input: string;
|
|
2369
|
+
input: string | string[];
|
|
2370
2370
|
server?: string | undefined;
|
|
2371
2371
|
id?: string | undefined;
|
|
2372
2372
|
navigationId?: string | undefined;
|
|
@@ -2702,7 +2702,7 @@ declare const CommonConfigSchemaPartial: z.ZodObject<{
|
|
|
2702
2702
|
}[] | undefined;
|
|
2703
2703
|
} | {
|
|
2704
2704
|
type: "file";
|
|
2705
|
-
input: string;
|
|
2705
|
+
input: string | string[];
|
|
2706
2706
|
server?: string | undefined;
|
|
2707
2707
|
id?: string | undefined;
|
|
2708
2708
|
navigationId?: string | undefined;
|
|
@@ -2733,7 +2733,7 @@ declare const CommonConfigSchemaPartial: z.ZodObject<{
|
|
|
2733
2733
|
}[] | undefined;
|
|
2734
2734
|
} | {
|
|
2735
2735
|
type: "file";
|
|
2736
|
-
input: string;
|
|
2736
|
+
input: string | string[];
|
|
2737
2737
|
server?: string | undefined;
|
|
2738
2738
|
id?: string | undefined;
|
|
2739
2739
|
navigationId?: string | undefined;
|
|
@@ -2945,7 +2945,7 @@ declare const CommonConfigSchemaPartial: z.ZodObject<{
|
|
|
2945
2945
|
}[] | undefined;
|
|
2946
2946
|
} | {
|
|
2947
2947
|
type: "file";
|
|
2948
|
-
input: string;
|
|
2948
|
+
input: string | string[];
|
|
2949
2949
|
server?: string | undefined;
|
|
2950
2950
|
id?: string | undefined;
|
|
2951
2951
|
navigationId?: string | undefined;
|
|
@@ -2976,7 +2976,7 @@ declare const CommonConfigSchemaPartial: z.ZodObject<{
|
|
|
2976
2976
|
}[] | undefined;
|
|
2977
2977
|
} | {
|
|
2978
2978
|
type: "file";
|
|
2979
|
-
input: string;
|
|
2979
|
+
input: string | string[];
|
|
2980
2980
|
server?: string | undefined;
|
|
2981
2981
|
id?: string | undefined;
|
|
2982
2982
|
navigationId?: string | undefined;
|
|
@@ -3630,7 +3630,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3630
3630
|
}[] | undefined;
|
|
3631
3631
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
3632
3632
|
type: z.ZodLiteral<"file">;
|
|
3633
|
-
input: z.ZodString
|
|
3633
|
+
input: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
3634
3634
|
}, {
|
|
3635
3635
|
id: z.ZodOptional<z.ZodString>;
|
|
3636
3636
|
server: z.ZodOptional<z.ZodString>;
|
|
@@ -3649,7 +3649,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3649
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">>;
|
|
3650
3650
|
}>, "strip", z.ZodTypeAny, {
|
|
3651
3651
|
type: "file";
|
|
3652
|
-
input: string;
|
|
3652
|
+
input: string | string[];
|
|
3653
3653
|
server?: string | undefined;
|
|
3654
3654
|
id?: string | undefined;
|
|
3655
3655
|
navigationId?: string | undefined;
|
|
@@ -3660,7 +3660,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3660
3660
|
postProcessors?: ((args_0: z.objectInputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectOutputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
3661
3661
|
}, {
|
|
3662
3662
|
type: "file";
|
|
3663
|
-
input: string;
|
|
3663
|
+
input: string | string[];
|
|
3664
3664
|
server?: string | undefined;
|
|
3665
3665
|
id?: string | undefined;
|
|
3666
3666
|
navigationId?: string | undefined;
|
|
@@ -3745,7 +3745,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3745
3745
|
}[] | undefined;
|
|
3746
3746
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
3747
3747
|
type: z.ZodLiteral<"file">;
|
|
3748
|
-
input: z.ZodString
|
|
3748
|
+
input: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
3749
3749
|
}, {
|
|
3750
3750
|
id: z.ZodOptional<z.ZodString>;
|
|
3751
3751
|
server: z.ZodOptional<z.ZodString>;
|
|
@@ -3764,7 +3764,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3764
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">>;
|
|
3765
3765
|
}>, "strip", z.ZodTypeAny, {
|
|
3766
3766
|
type: "file";
|
|
3767
|
-
input: string;
|
|
3767
|
+
input: string | string[];
|
|
3768
3768
|
server?: string | undefined;
|
|
3769
3769
|
id?: string | undefined;
|
|
3770
3770
|
navigationId?: string | undefined;
|
|
@@ -3775,7 +3775,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
3775
3775
|
postProcessors?: ((args_0: z.objectInputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectOutputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
3776
3776
|
}, {
|
|
3777
3777
|
type: "file";
|
|
3778
|
-
input: string;
|
|
3778
|
+
input: string | string[];
|
|
3779
3779
|
server?: string | undefined;
|
|
3780
3780
|
id?: string | undefined;
|
|
3781
3781
|
navigationId?: string | undefined;
|
|
@@ -4111,7 +4111,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
4111
4111
|
}[] | undefined;
|
|
4112
4112
|
} | {
|
|
4113
4113
|
type: "file";
|
|
4114
|
-
input: string;
|
|
4114
|
+
input: string | string[];
|
|
4115
4115
|
server?: string | undefined;
|
|
4116
4116
|
id?: string | undefined;
|
|
4117
4117
|
navigationId?: string | undefined;
|
|
@@ -4142,7 +4142,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
4142
4142
|
}[] | undefined;
|
|
4143
4143
|
} | {
|
|
4144
4144
|
type: "file";
|
|
4145
|
-
input: string;
|
|
4145
|
+
input: string | string[];
|
|
4146
4146
|
server?: string | undefined;
|
|
4147
4147
|
id?: string | undefined;
|
|
4148
4148
|
navigationId?: string | undefined;
|
|
@@ -4354,7 +4354,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
4354
4354
|
}[] | undefined;
|
|
4355
4355
|
} | {
|
|
4356
4356
|
type: "file";
|
|
4357
|
-
input: string;
|
|
4357
|
+
input: string | string[];
|
|
4358
4358
|
server?: string | undefined;
|
|
4359
4359
|
id?: string | undefined;
|
|
4360
4360
|
navigationId?: string | undefined;
|
|
@@ -4385,7 +4385,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
4385
4385
|
}[] | undefined;
|
|
4386
4386
|
} | {
|
|
4387
4387
|
type: "file";
|
|
4388
|
-
input: string;
|
|
4388
|
+
input: string | string[];
|
|
4389
4389
|
server?: string | undefined;
|
|
4390
4390
|
id?: string | undefined;
|
|
4391
4391
|
navigationId?: string | undefined;
|
|
@@ -4597,7 +4597,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
4597
4597
|
}[] | undefined;
|
|
4598
4598
|
} | {
|
|
4599
4599
|
type: "file";
|
|
4600
|
-
input: string;
|
|
4600
|
+
input: string | string[];
|
|
4601
4601
|
server?: string | undefined;
|
|
4602
4602
|
id?: string | undefined;
|
|
4603
4603
|
navigationId?: string | undefined;
|
|
@@ -4628,7 +4628,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
4628
4628
|
}[] | undefined;
|
|
4629
4629
|
} | {
|
|
4630
4630
|
type: "file";
|
|
4631
|
-
input: string;
|
|
4631
|
+
input: string | string[];
|
|
4632
4632
|
server?: string | undefined;
|
|
4633
4633
|
id?: string | undefined;
|
|
4634
4634
|
navigationId?: string | undefined;
|
|
@@ -4840,7 +4840,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
4840
4840
|
}[] | undefined;
|
|
4841
4841
|
} | {
|
|
4842
4842
|
type: "file";
|
|
4843
|
-
input: string;
|
|
4843
|
+
input: string | string[];
|
|
4844
4844
|
server?: string | undefined;
|
|
4845
4845
|
id?: string | undefined;
|
|
4846
4846
|
navigationId?: string | undefined;
|
|
@@ -4871,7 +4871,7 @@ export declare const CommonConfig: z.ZodEffects<z.ZodObject<{
|
|
|
4871
4871
|
}[] | undefined;
|
|
4872
4872
|
} | {
|
|
4873
4873
|
type: "file";
|
|
4874
|
-
input: string;
|
|
4874
|
+
input: string | string[];
|
|
4875
4875
|
server?: string | undefined;
|
|
4876
4876
|
id?: string | undefined;
|
|
4877
4877
|
navigationId?: string | undefined;
|
|
@@ -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
|
|
@@ -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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"}
|
|
@@ -597,7 +597,7 @@ declare const ConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
597
597
|
}[] | undefined;
|
|
598
598
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
599
599
|
type: z.ZodLiteral<"file">;
|
|
600
|
-
input: z.ZodString
|
|
600
|
+
input: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
601
601
|
}, {
|
|
602
602
|
id: z.ZodOptional<z.ZodString>;
|
|
603
603
|
server: z.ZodOptional<z.ZodString>;
|
|
@@ -616,7 +616,7 @@ declare const ConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
616
616
|
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">>;
|
|
617
617
|
}>, "strip", z.ZodTypeAny, {
|
|
618
618
|
type: "file";
|
|
619
|
-
input: string;
|
|
619
|
+
input: string | string[];
|
|
620
620
|
server?: string | undefined;
|
|
621
621
|
id?: string | undefined;
|
|
622
622
|
navigationId?: string | undefined;
|
|
@@ -627,7 +627,7 @@ declare const ConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
627
627
|
postProcessors?: ((args_0: z.objectInputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectOutputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
628
628
|
}, {
|
|
629
629
|
type: "file";
|
|
630
|
-
input: string;
|
|
630
|
+
input: string | string[];
|
|
631
631
|
server?: string | undefined;
|
|
632
632
|
id?: string | undefined;
|
|
633
633
|
navigationId?: string | undefined;
|
|
@@ -712,7 +712,7 @@ declare const ConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
712
712
|
}[] | undefined;
|
|
713
713
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
714
714
|
type: z.ZodLiteral<"file">;
|
|
715
|
-
input: z.ZodString
|
|
715
|
+
input: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
716
716
|
}, {
|
|
717
717
|
id: z.ZodOptional<z.ZodString>;
|
|
718
718
|
server: z.ZodOptional<z.ZodString>;
|
|
@@ -731,7 +731,7 @@ declare const ConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
731
731
|
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">>;
|
|
732
732
|
}>, "strip", z.ZodTypeAny, {
|
|
733
733
|
type: "file";
|
|
734
|
-
input: string;
|
|
734
|
+
input: string | string[];
|
|
735
735
|
server?: string | undefined;
|
|
736
736
|
id?: string | undefined;
|
|
737
737
|
navigationId?: string | undefined;
|
|
@@ -742,7 +742,7 @@ declare const ConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
742
742
|
postProcessors?: ((args_0: z.objectInputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectOutputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
743
743
|
}, {
|
|
744
744
|
type: "file";
|
|
745
|
-
input: string;
|
|
745
|
+
input: string | string[];
|
|
746
746
|
server?: string | undefined;
|
|
747
747
|
id?: string | undefined;
|
|
748
748
|
navigationId?: string | undefined;
|
|
@@ -1106,7 +1106,7 @@ declare const ConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1106
1106
|
}[] | undefined;
|
|
1107
1107
|
} | {
|
|
1108
1108
|
type: "file";
|
|
1109
|
-
input: string;
|
|
1109
|
+
input: string | string[];
|
|
1110
1110
|
server?: string | undefined;
|
|
1111
1111
|
id?: string | undefined;
|
|
1112
1112
|
navigationId?: string | undefined;
|
|
@@ -1137,7 +1137,7 @@ declare const ConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1137
1137
|
}[] | undefined;
|
|
1138
1138
|
} | {
|
|
1139
1139
|
type: "file";
|
|
1140
|
-
input: string;
|
|
1140
|
+
input: string | string[];
|
|
1141
1141
|
server?: string | undefined;
|
|
1142
1142
|
id?: string | undefined;
|
|
1143
1143
|
navigationId?: string | undefined;
|
|
@@ -1364,7 +1364,7 @@ declare const ConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1364
1364
|
}[] | undefined;
|
|
1365
1365
|
} | {
|
|
1366
1366
|
type: "file";
|
|
1367
|
-
input: string;
|
|
1367
|
+
input: string | string[];
|
|
1368
1368
|
server?: string | undefined;
|
|
1369
1369
|
id?: string | undefined;
|
|
1370
1370
|
navigationId?: string | undefined;
|
|
@@ -1395,7 +1395,7 @@ declare const ConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1395
1395
|
}[] | undefined;
|
|
1396
1396
|
} | {
|
|
1397
1397
|
type: "file";
|
|
1398
|
-
input: string;
|
|
1398
|
+
input: string | string[];
|
|
1399
1399
|
server?: string | undefined;
|
|
1400
1400
|
id?: string | undefined;
|
|
1401
1401
|
navigationId?: string | undefined;
|
|
@@ -1622,7 +1622,7 @@ declare const ConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1622
1622
|
}[] | undefined;
|
|
1623
1623
|
} | {
|
|
1624
1624
|
type: "file";
|
|
1625
|
-
input: string;
|
|
1625
|
+
input: string | string[];
|
|
1626
1626
|
server?: string | undefined;
|
|
1627
1627
|
id?: string | undefined;
|
|
1628
1628
|
navigationId?: string | undefined;
|
|
@@ -1653,7 +1653,7 @@ declare const ConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1653
1653
|
}[] | undefined;
|
|
1654
1654
|
} | {
|
|
1655
1655
|
type: "file";
|
|
1656
|
-
input: string;
|
|
1656
|
+
input: string | string[];
|
|
1657
1657
|
server?: string | undefined;
|
|
1658
1658
|
id?: string | undefined;
|
|
1659
1659
|
navigationId?: string | undefined;
|
|
@@ -1880,7 +1880,7 @@ declare const ConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1880
1880
|
}[] | undefined;
|
|
1881
1881
|
} | {
|
|
1882
1882
|
type: "file";
|
|
1883
|
-
input: string;
|
|
1883
|
+
input: string | string[];
|
|
1884
1884
|
server?: string | undefined;
|
|
1885
1885
|
id?: string | undefined;
|
|
1886
1886
|
navigationId?: string | undefined;
|
|
@@ -1911,7 +1911,7 @@ declare const ConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1911
1911
|
}[] | undefined;
|
|
1912
1912
|
} | {
|
|
1913
1913
|
type: "file";
|
|
1914
|
-
input: string;
|
|
1914
|
+
input: string | string[];
|
|
1915
1915
|
server?: string | undefined;
|
|
1916
1916
|
id?: string | undefined;
|
|
1917
1917
|
navigationId?: string | undefined;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { useSuspenseQuery } from "@tanstack/react-query";
|
|
3
3
|
import { Helmet } from "@zudoku/react-helmet-async";
|
|
4
|
+
import { useNavigate } from "react-router";
|
|
5
|
+
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "zudoku/ui/Select.js";
|
|
4
6
|
import { CategoryHeading } from "../../components/CategoryHeading.js";
|
|
5
7
|
import { Heading } from "../../components/Heading.js";
|
|
6
8
|
import { Markdown, ProseClasses } from "../../components/Markdown.js";
|
|
@@ -11,6 +13,7 @@ import StaggeredRender from "./StaggeredRender.js";
|
|
|
11
13
|
import { useCreateQuery } from "./client/useCreateQuery.js";
|
|
12
14
|
import { useOasConfig } from "./context.js";
|
|
13
15
|
import { graphql } from "./graphql/index.js";
|
|
16
|
+
import { sanitizeMarkdownForMetatag } from "./util/sanitizeMarkdownForMetatag.js";
|
|
14
17
|
export const OperationsFragment = graphql(/* GraphQL */ `
|
|
15
18
|
fragment OperationsFragment on OperationItem {
|
|
16
19
|
slug
|
|
@@ -93,52 +96,23 @@ const AllOperationsQuery = graphql(/* GraphQL */ `
|
|
|
93
96
|
}
|
|
94
97
|
}
|
|
95
98
|
`);
|
|
96
|
-
/**
|
|
97
|
-
* @description Clean up a commonmark formatted description for use in the meta
|
|
98
|
-
* description.
|
|
99
|
-
*/
|
|
100
|
-
function cleanDescription(description, maxLength = 160) {
|
|
101
|
-
if (!description) {
|
|
102
|
-
return "";
|
|
103
|
-
}
|
|
104
|
-
// Replace Markdown links [text](url) with just "text"
|
|
105
|
-
description = description.replace(/\[([^\]]+)\]\([^)]+\)/g, "$1");
|
|
106
|
-
// Remove Markdown image syntax: 
|
|
107
|
-
description = description.replace(/!\[.*?\]\(.*?\)/g, "");
|
|
108
|
-
// Remove other Markdown syntax (e.g., **bold**, _italic_, `code`)
|
|
109
|
-
description = description.replace(/[_*`~]/g, "");
|
|
110
|
-
// Remove headings (# Heading), blockquotes (> Quote), and horizontal rules (--- or ***)
|
|
111
|
-
description = description.replace(/^(?:>|\s*#+|-{3,}|\*{3,})/gm, "");
|
|
112
|
-
// Remove any remaining formatting characters
|
|
113
|
-
description = description.replace(/[|>{}[\]]/g, "");
|
|
114
|
-
// Collapse multiple spaces and trim the text
|
|
115
|
-
description = description.replace(/\s+/g, " ").trim();
|
|
116
|
-
// Limit to the specified maximum length
|
|
117
|
-
description = description.substring(0, maxLength);
|
|
118
|
-
// Escape for HTML safety
|
|
119
|
-
return description
|
|
120
|
-
.replace(/&/g, "&")
|
|
121
|
-
.replace(/</g, "<")
|
|
122
|
-
.replace(/>/g, ">")
|
|
123
|
-
.replace(/"/g, """)
|
|
124
|
-
.replace(/'/g, "'");
|
|
125
|
-
}
|
|
126
99
|
export const OperationList = () => {
|
|
127
|
-
const { input, type } = useOasConfig();
|
|
100
|
+
const { input, type, versions, version } = useOasConfig();
|
|
128
101
|
const query = useCreateQuery(AllOperationsQuery, { input, type });
|
|
129
102
|
const result = useSuspenseQuery(query);
|
|
130
103
|
const title = result.data.schema.title;
|
|
131
104
|
const summary = result.data.schema.summary;
|
|
132
105
|
const description = result.data.schema.description;
|
|
106
|
+
const navigate = useNavigate();
|
|
133
107
|
// The summary property is preferable here as it is a short description of
|
|
134
108
|
// the API, whereas the description property is typically longer and supports
|
|
135
109
|
// commonmark formatting, making it ill-suited for use in the meta description
|
|
136
110
|
const metaDescription = summary
|
|
137
111
|
? summary
|
|
138
112
|
: description
|
|
139
|
-
?
|
|
113
|
+
? sanitizeMarkdownForMetatag(description)
|
|
140
114
|
: undefined;
|
|
141
|
-
return (_jsxs("div", { className: "pt-[--padding-content-top]", children: [_jsxs(Helmet, { children: [_jsx("title", { children: title }), metaDescription && (_jsx("meta", { name: "description", content: metaDescription }))] }), _jsxs("div", { className: cn(ProseClasses, "mb-16 max-w-full prose-img:max-w-prose"), children: [_jsx(CategoryHeading, { children: "Overview" }), _jsx(Heading, { level: 1, id: "description", registerSidebarAnchor: true, children: title }), _jsx(Markdown, { content: result.data.schema.description ?? "" })] }), _jsx("hr", {}), _jsx("div", { className: "my-4 flex justify-end", children: _jsx(Endpoint, {}) }), result.data.schema.tags
|
|
115
|
+
return (_jsxs("div", { className: "pt-[--padding-content-top]", children: [_jsxs(Helmet, { children: [_jsx("title", { children: title }), metaDescription && (_jsx("meta", { name: "description", content: metaDescription }))] }), _jsxs("div", { className: cn(ProseClasses, "mb-16 max-w-full prose-img:max-w-prose"), children: [_jsxs("div", { className: "flex", children: [_jsxs("div", { className: "flex-1", children: [_jsx(CategoryHeading, { children: "Overview" }), _jsx(Heading, { level: 1, id: "description", registerSidebarAnchor: true, children: title })] }), _jsx("div", { children: Object.entries(versions).length > 1 && (_jsxs(Select, { onValueChange: (version) => navigate(versions[version]), defaultValue: version, children: [_jsx(SelectTrigger, { className: "w-[180px]", children: _jsx(SelectValue, { placeholder: "Select version" }) }), _jsx(SelectContent, { children: Object.entries(versions).map(([version]) => (_jsx(SelectItem, { value: version, children: version }, version))) })] })) })] }), _jsx(Markdown, { content: result.data.schema.description ?? "" })] }), _jsx("hr", {}), _jsx("div", { className: "my-4 flex items-center justify-end gap-4", children: _jsx(Endpoint, {}) }), result.data.schema.tags
|
|
142
116
|
.filter((tag) => tag.operations.length > 0)
|
|
143
117
|
.map((tag) => (
|
|
144
118
|
// px, -mx is so that `content-visibility` doesn't cut off overflown heading anchor links '#'
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OperationList.js","sourceRoot":"","sources":["../../../../src/lib/plugins/openapi/OperationList.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AACzD,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,MAAM,qCAAqC,CAAC;AACtE,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AACtD,OAAO,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AACtE,OAAO,EAAE,EAAE,EAAE,MAAM,kBAAkB,CAAC;AACtC,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,eAAe,MAAM,sBAAsB,CAAC;AACnD,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAC5D,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAC5C,OAAO,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"OperationList.js","sourceRoot":"","sources":["../../../../src/lib/plugins/openapi/OperationList.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import type { GraphQLClient } from "./client/GraphQLClient.js";
|
|
2
|
-
import { OasPluginConfig } from "./interfaces.js";
|
|
3
|
-
export declare const OpenApiRoute: ({ config, client, }: {
|
|
2
|
+
import { type OasPluginConfig } from "./interfaces.js";
|
|
3
|
+
export declare const OpenApiRoute: ({ basePath, versions, config, client, }: {
|
|
4
|
+
basePath: string;
|
|
5
|
+
versions: string[];
|
|
4
6
|
config: OasPluginConfig;
|
|
5
7
|
client: GraphQLClient;
|
|
6
8
|
}) => import("react/jsx-runtime").JSX.Element;
|