@emeryld/rrroutes-openapi 2.6.1 → 2.6.2
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/index.cjs +18 -20
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +18 -20
- package/dist/index.mjs.map +1 -1
- package/dist/public/assets/docs.js +67 -67
- package/dist/web/v2/types/types.cacheLog.d.ts +3 -3
- package/dist/web/v2/types/types.d.ts +8 -10
- package/dist/web/v2/types/types.endpoint.d.ts +2 -2
- package/dist/web/v2/types/types.log.d.ts +1 -1
- package/dist/web/v2/types/types.preset.d.ts +3 -3
- package/dist/web/v2/types/types.requestLog.d.ts +2 -2
- package/dist/web/v2/types/types.scheduling.d.ts +3 -3
- package/dist/web/v2/types/types.socket.d.ts +2 -2
- package/package.json +4 -4
|
@@ -81,7 +81,7 @@ export declare const cacheTraceQuerySchema: z.ZodObject<{
|
|
|
81
81
|
export type CacheTraceQuery = z.infer<typeof cacheTraceQuerySchema> & z.infer<typeof paginationSchema>;
|
|
82
82
|
export declare const cacheLeaves: readonly [{
|
|
83
83
|
readonly method: "get";
|
|
84
|
-
readonly path: "cache";
|
|
84
|
+
readonly path: "/cache";
|
|
85
85
|
readonly cfg: Readonly<import("@emeryld/rrroutes-contract").Prettify<Omit<{}, "queryExtensionSchema" | "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema" | Exclude<keyof (import("@emeryld/rrroutes-contract").Prettify<Omit<C, "queryExtensionSchema" | "outputMetaSchema"> & {
|
|
86
86
|
queryExtensionSchema: C["queryExtensionSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C["queryExtensionSchema"] : undefined;
|
|
87
87
|
outputMetaSchema: C["outputMetaSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C["outputMetaSchema"] : undefined;
|
|
@@ -313,7 +313,7 @@ export declare const cacheLeaves: readonly [{
|
|
|
313
313
|
}>>>;
|
|
314
314
|
}, {
|
|
315
315
|
readonly method: "post";
|
|
316
|
-
readonly path: "cache/clear";
|
|
316
|
+
readonly path: "/cache/clear";
|
|
317
317
|
readonly cfg: Readonly<import("@emeryld/rrroutes-contract").Prettify<Omit<Readonly<import("@emeryld/rrroutes-contract").Prettify<Omit<{}, "queryExtensionSchema" | "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema" | Exclude<keyof (import("@emeryld/rrroutes-contract").Prettify<Omit<import("@emeryld/rrroutes-contract").Prettify<Omit<C_1, "feed"> & {
|
|
318
318
|
feed: false;
|
|
319
319
|
}>, "queryExtensionSchema" | "outputMetaSchema"> & {
|
|
@@ -446,7 +446,7 @@ export declare const cacheLeaves: readonly [{
|
|
|
446
446
|
}>>;
|
|
447
447
|
}, {
|
|
448
448
|
readonly method: "get";
|
|
449
|
-
readonly path: "cache/trace";
|
|
449
|
+
readonly path: "/cache/trace";
|
|
450
450
|
readonly cfg: Readonly<import("@emeryld/rrroutes-contract").Prettify<Omit<Readonly<import("@emeryld/rrroutes-contract").Prettify<Omit<{}, "queryExtensionSchema" | "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema" | Exclude<keyof (import("@emeryld/rrroutes-contract").Prettify<Omit<C_2, "queryExtensionSchema" | "outputMetaSchema"> & {
|
|
451
451
|
queryExtensionSchema: C_2["queryExtensionSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C_2["queryExtensionSchema"] : undefined;
|
|
452
452
|
outputMetaSchema: C_2["outputMetaSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C_2["outputMetaSchema"] : undefined;
|
|
@@ -7,16 +7,14 @@ import { requestLogLeaves } from './types.requestLog.js';
|
|
|
7
7
|
import { schedulingLeaves } from './types.scheduling.js';
|
|
8
8
|
import { socketLeaves } from './types.socket.js';
|
|
9
9
|
type AllLeaves = readonly [
|
|
10
|
-
...MergeAugmentedCollections<'', undefined, readonly [
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
typeof schedulingLeaves
|
|
19
|
-
]>
|
|
10
|
+
...MergeAugmentedCollections<'/__rrroutes', undefined, readonly [
|
|
11
|
+
typeof endpointLeaves,
|
|
12
|
+
typeof requestLogLeaves,
|
|
13
|
+
typeof logLeaves,
|
|
14
|
+
typeof cacheLeaves,
|
|
15
|
+
typeof presetLeaves,
|
|
16
|
+
typeof socketLeaves,
|
|
17
|
+
typeof schedulingLeaves
|
|
20
18
|
]>
|
|
21
19
|
];
|
|
22
20
|
declare const allLeaves: AllLeaves;
|
|
@@ -206,7 +206,7 @@ export declare const endpointSchemaWithStats: z.ZodObject<{
|
|
|
206
206
|
export type EndpointDetailData = z.infer<typeof endpointSchemaWithStats>;
|
|
207
207
|
export declare const endpointLeaves: readonly [{
|
|
208
208
|
readonly method: "get";
|
|
209
|
-
readonly path: "endpoints";
|
|
209
|
+
readonly path: "/endpoints";
|
|
210
210
|
readonly cfg: Readonly<import("@emeryld/rrroutes-contract").Prettify<Omit<{}, "queryExtensionSchema" | "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema" | Exclude<keyof (import("@emeryld/rrroutes-contract").Prettify<Omit<C, "queryExtensionSchema" | "outputMetaSchema"> & {
|
|
211
211
|
queryExtensionSchema: C["queryExtensionSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C["queryExtensionSchema"] : undefined;
|
|
212
212
|
outputMetaSchema: C["outputMetaSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C["outputMetaSchema"] : undefined;
|
|
@@ -604,7 +604,7 @@ export declare const endpointLeaves: readonly [{
|
|
|
604
604
|
}>>>;
|
|
605
605
|
}, {
|
|
606
606
|
readonly method: "get";
|
|
607
|
-
readonly path: "endpoints/:endpointId";
|
|
607
|
+
readonly path: "/endpoints/:endpointId";
|
|
608
608
|
readonly cfg: Readonly<import("@emeryld/rrroutes-contract").Prettify<Omit<Readonly<import("@emeryld/rrroutes-contract").Prettify<Omit<{}, "queryExtensionSchema" | "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema" | Exclude<keyof (import("@emeryld/rrroutes-contract").Prettify<Omit<C_1, "queryExtensionSchema" | "outputMetaSchema"> & {
|
|
609
609
|
queryExtensionSchema: C_1["queryExtensionSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C_1["queryExtensionSchema"] : z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
610
610
|
outputMetaSchema: C_1["outputMetaSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C_1["outputMetaSchema"] : z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
@@ -31,7 +31,7 @@ export declare const logQuerySchema: z.ZodObject<{
|
|
|
31
31
|
export type ApplicationLogsFilter = z.infer<typeof logQuerySchema> & z.infer<typeof paginationSchema>;
|
|
32
32
|
export declare const logLeaves: readonly [{
|
|
33
33
|
readonly method: "get";
|
|
34
|
-
readonly path: "logs";
|
|
34
|
+
readonly path: "/logs";
|
|
35
35
|
readonly cfg: Readonly<import("@emeryld/rrroutes-contract").Prettify<Omit<{}, "queryExtensionSchema" | "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema" | Exclude<keyof (import("@emeryld/rrroutes-contract").Prettify<Omit<C, "queryExtensionSchema" | "outputMetaSchema"> & {
|
|
36
36
|
queryExtensionSchema: C["queryExtensionSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C["queryExtensionSchema"] : undefined;
|
|
37
37
|
outputMetaSchema: C["outputMetaSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C["outputMetaSchema"] : undefined;
|
|
@@ -46,7 +46,7 @@ declare const presetQuerySchema: z.ZodObject<{
|
|
|
46
46
|
export type PresetsFilter = z.infer<typeof presetQuerySchema> & z.infer<typeof paginationSchema>;
|
|
47
47
|
export declare const presetLeaves: readonly [{
|
|
48
48
|
readonly method: "get";
|
|
49
|
-
readonly path: "presets";
|
|
49
|
+
readonly path: "/presets";
|
|
50
50
|
readonly cfg: Readonly<import("@emeryld/rrroutes-contract").Prettify<Omit<{}, "queryExtensionSchema" | "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema" | Exclude<keyof (import("@emeryld/rrroutes-contract").Prettify<Omit<C, "queryExtensionSchema" | "outputMetaSchema"> & {
|
|
51
51
|
queryExtensionSchema: C["queryExtensionSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C["queryExtensionSchema"] : undefined;
|
|
52
52
|
outputMetaSchema: C["outputMetaSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C["outputMetaSchema"] : undefined;
|
|
@@ -331,7 +331,7 @@ export declare const presetLeaves: readonly [{
|
|
|
331
331
|
}>>>;
|
|
332
332
|
}, {
|
|
333
333
|
readonly method: "post";
|
|
334
|
-
readonly path: "presets";
|
|
334
|
+
readonly path: "/presets";
|
|
335
335
|
readonly cfg: Readonly<import("@emeryld/rrroutes-contract").Prettify<Omit<{}, "queryExtensionSchema" | "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema" | Exclude<keyof (import("@emeryld/rrroutes-contract").Prettify<Omit<import("@emeryld/rrroutes-contract").Prettify<Omit<C_1, "feed"> & {
|
|
336
336
|
feed: false;
|
|
337
337
|
}>, "queryExtensionSchema" | "outputMetaSchema"> & {
|
|
@@ -551,7 +551,7 @@ export declare const presetLeaves: readonly [{
|
|
|
551
551
|
}>>>;
|
|
552
552
|
}, {
|
|
553
553
|
readonly method: "put";
|
|
554
|
-
readonly path: "presets";
|
|
554
|
+
readonly path: "/presets";
|
|
555
555
|
readonly cfg: Readonly<import("@emeryld/rrroutes-contract").Prettify<Omit<{}, "queryExtensionSchema" | "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema" | Exclude<keyof (import("@emeryld/rrroutes-contract").Prettify<Omit<import("@emeryld/rrroutes-contract").Prettify<Omit<C_2, "feed"> & {
|
|
556
556
|
feed: false;
|
|
557
557
|
}>, "queryExtensionSchema" | "outputMetaSchema"> & {
|
|
@@ -89,7 +89,7 @@ export declare const requestQuerySchema: z.ZodObject<{
|
|
|
89
89
|
export type HistoryFilter = z.infer<typeof requestQuerySchema> & z.infer<typeof paginationSchema>;
|
|
90
90
|
export declare const requestLogLeaves: readonly [{
|
|
91
91
|
readonly method: "get";
|
|
92
|
-
readonly path: "requests";
|
|
92
|
+
readonly path: "/requests";
|
|
93
93
|
readonly cfg: Readonly<import("@emeryld/rrroutes-contract").Prettify<Omit<{}, "queryExtensionSchema" | "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema" | Exclude<keyof (import("@emeryld/rrroutes-contract").Prettify<Omit<C, "queryExtensionSchema" | "outputMetaSchema"> & {
|
|
94
94
|
queryExtensionSchema: C["queryExtensionSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C["queryExtensionSchema"] : undefined;
|
|
95
95
|
outputMetaSchema: C["outputMetaSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C["outputMetaSchema"] : undefined;
|
|
@@ -438,7 +438,7 @@ export declare const requestLogLeaves: readonly [{
|
|
|
438
438
|
}>>>;
|
|
439
439
|
}, {
|
|
440
440
|
readonly method: "get";
|
|
441
|
-
readonly path: "requests/:requestId";
|
|
441
|
+
readonly path: "/requests/:requestId";
|
|
442
442
|
readonly cfg: Readonly<import("@emeryld/rrroutes-contract").Prettify<Omit<Readonly<import("@emeryld/rrroutes-contract").Prettify<Omit<{}, "queryExtensionSchema" | "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema" | Exclude<keyof (import("@emeryld/rrroutes-contract").Prettify<Omit<C_1, "queryExtensionSchema" | "outputMetaSchema"> & {
|
|
443
443
|
queryExtensionSchema: C_1["queryExtensionSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C_1["queryExtensionSchema"] : z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
444
444
|
outputMetaSchema: C_1["outputMetaSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C_1["outputMetaSchema"] : z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
@@ -44,7 +44,7 @@ export declare const scheduleHandlerBodySchema: z.ZodObject<{
|
|
|
44
44
|
export type ScheduleHandlerBodyType = z.infer<typeof scheduleHandlerBodySchema>;
|
|
45
45
|
export declare const schedulingLeaves: readonly [{
|
|
46
46
|
readonly method: "get";
|
|
47
|
-
readonly path: "schedulings";
|
|
47
|
+
readonly path: "/schedulings";
|
|
48
48
|
readonly cfg: Readonly<import("@emeryld/rrroutes-contract").Prettify<Omit<{}, "queryExtensionSchema" | "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema" | Exclude<keyof (import("@emeryld/rrroutes-contract").Prettify<Omit<C, "queryExtensionSchema" | "outputMetaSchema"> & {
|
|
49
49
|
queryExtensionSchema: C["queryExtensionSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C["queryExtensionSchema"] : undefined;
|
|
50
50
|
outputMetaSchema: C["outputMetaSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C["outputMetaSchema"] : undefined;
|
|
@@ -276,7 +276,7 @@ export declare const schedulingLeaves: readonly [{
|
|
|
276
276
|
}>>>;
|
|
277
277
|
}, {
|
|
278
278
|
readonly method: "get";
|
|
279
|
-
readonly path: "schedulings/handlers";
|
|
279
|
+
readonly path: "/schedulings/handlers";
|
|
280
280
|
readonly cfg: Readonly<import("@emeryld/rrroutes-contract").Prettify<Omit<Readonly<import("@emeryld/rrroutes-contract").Prettify<Omit<{}, "queryExtensionSchema" | "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema" | Exclude<keyof (import("@emeryld/rrroutes-contract").Prettify<Omit<C_1, "queryExtensionSchema" | "outputMetaSchema"> & {
|
|
281
281
|
queryExtensionSchema: C_1["queryExtensionSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C_1["queryExtensionSchema"] : undefined;
|
|
282
282
|
outputMetaSchema: C_1["outputMetaSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C_1["outputMetaSchema"] : undefined;
|
|
@@ -419,7 +419,7 @@ export declare const schedulingLeaves: readonly [{
|
|
|
419
419
|
}>>;
|
|
420
420
|
}, {
|
|
421
421
|
readonly method: "post";
|
|
422
|
-
readonly path: "schedulings/handlers";
|
|
422
|
+
readonly path: "/schedulings/handlers";
|
|
423
423
|
readonly cfg: Readonly<import("@emeryld/rrroutes-contract").Prettify<Omit<Readonly<import("@emeryld/rrroutes-contract").Prettify<Omit<{}, "queryExtensionSchema" | "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema" | Exclude<keyof (import("@emeryld/rrroutes-contract").Prettify<Omit<import("@emeryld/rrroutes-contract").Prettify<Omit<C_2, "feed"> & {
|
|
424
424
|
feed: false;
|
|
425
425
|
}>, "queryExtensionSchema" | "outputMetaSchema"> & {
|
|
@@ -56,7 +56,7 @@ export declare const socketEmitResultSchema: z.ZodObject<{
|
|
|
56
56
|
export type SocketEmitResult = z.infer<typeof socketEmitResultSchema>;
|
|
57
57
|
export declare const socketLeaves: readonly [{
|
|
58
58
|
readonly method: "get";
|
|
59
|
-
readonly path: "sockets";
|
|
59
|
+
readonly path: "/sockets";
|
|
60
60
|
readonly cfg: Readonly<import("@emeryld/rrroutes-contract").Prettify<Omit<{}, "queryExtensionSchema" | "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema" | Exclude<keyof (import("@emeryld/rrroutes-contract").Prettify<Omit<C, "queryExtensionSchema" | "outputMetaSchema"> & {
|
|
61
61
|
queryExtensionSchema: C["queryExtensionSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C["queryExtensionSchema"] : undefined;
|
|
62
62
|
outputMetaSchema: C["outputMetaSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C["outputMetaSchema"] : undefined;
|
|
@@ -314,7 +314,7 @@ export declare const socketLeaves: readonly [{
|
|
|
314
314
|
}>>>;
|
|
315
315
|
}, {
|
|
316
316
|
readonly method: "post";
|
|
317
|
-
readonly path: "sockets";
|
|
317
|
+
readonly path: "/sockets";
|
|
318
318
|
readonly cfg: Readonly<import("@emeryld/rrroutes-contract").Prettify<Omit<{}, "queryExtensionSchema" | "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema" | Exclude<keyof (import("@emeryld/rrroutes-contract").Prettify<Omit<import("@emeryld/rrroutes-contract").Prettify<Omit<C_1, "feed"> & {
|
|
319
319
|
feed: false;
|
|
320
320
|
}>, "queryExtensionSchema" | "outputMetaSchema"> & {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@emeryld/rrroutes-openapi",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -17,14 +17,14 @@
|
|
|
17
17
|
"dist"
|
|
18
18
|
],
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@emeryld/rrroutes-client": "^2.5.
|
|
21
|
-
"@emeryld/rrroutes-contract": "^2.5.
|
|
20
|
+
"@emeryld/rrroutes-client": "^2.5.4",
|
|
21
|
+
"@emeryld/rrroutes-contract": "^2.5.4",
|
|
22
22
|
"@emotion/cache": "^11.14.0",
|
|
23
23
|
"@emotion/react": "^11.14.0",
|
|
24
24
|
"@emotion/styled": "^11.14.1",
|
|
25
25
|
"@mui/icons-material": "^7.3.6",
|
|
26
26
|
"@mui/material": "^7.3.6",
|
|
27
|
-
"@tanstack/react-query": "^5.90.
|
|
27
|
+
"@tanstack/react-query": "^5.90.16",
|
|
28
28
|
"react": "^18.3.1",
|
|
29
29
|
"react-dom": "^18.3.1",
|
|
30
30
|
"react-router-dom": "^7.11.0",
|