@emeryld/rrroutes-openapi 2.5.10 → 2.5.12

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.
@@ -0,0 +1,423 @@
1
+ import z from 'zod';
2
+ export declare const schedulingSchema: z.ZodObject<{
3
+ id: z.ZodString;
4
+ name: z.ZodString;
5
+ description: z.ZodOptional<z.ZodString>;
6
+ groupId: z.ZodOptional<z.ZodString>;
7
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
8
+ createdAt: z.ZodNumber;
9
+ updatedAt: z.ZodNumber;
10
+ scheduledAt: z.ZodOptional<z.ZodNumber>;
11
+ startedAt: z.ZodOptional<z.ZodNumber>;
12
+ completedAt: z.ZodOptional<z.ZodNumber>;
13
+ status: z.ZodString;
14
+ }, z.core.$strip>;
15
+ export declare const schedulingQuerySchema: z.ZodObject<{
16
+ beforeDate: z.ZodOptional<z.ZodString>;
17
+ afterDate: z.ZodOptional<z.ZodString>;
18
+ orderBy: z.ZodOptional<z.ZodEnum<{
19
+ timestamp: "timestamp";
20
+ duration: "duration";
21
+ level: "level";
22
+ path: "path";
23
+ }>>;
24
+ orderDirection: z.ZodOptional<z.ZodEnum<{
25
+ asc: "asc";
26
+ desc: "desc";
27
+ }>>;
28
+ searchQuery: z.ZodOptional<z.ZodString>;
29
+ groupsInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
30
+ groupsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
31
+ tagsInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
32
+ tagsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
33
+ status: z.ZodOptional<z.ZodArray<z.ZodString>>;
34
+ }, z.core.$strip>;
35
+ export type SchedulingType = z.infer<typeof schedulingSchema>;
36
+ export type SchedulingFilter = z.infer<typeof schedulingQuerySchema>;
37
+ export declare const schedulableHandler: z.ZodObject<{
38
+ name: z.ZodString;
39
+ payload: z.ZodString;
40
+ }, z.core.$strip>;
41
+ export type SchedulableHandlerType = z.infer<typeof schedulableHandler>;
42
+ export declare const schedulingLeaves: readonly [{
43
+ readonly method: "get";
44
+ readonly path: "schedulings";
45
+ 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"> & {
46
+ queryExtensionSchema: C["queryExtensionSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C["queryExtensionSchema"] : undefined;
47
+ outputMetaSchema: C["outputMetaSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C["outputMetaSchema"] : undefined;
48
+ }> extends infer WithDefaults extends import("@emeryld/rrroutes-contract").MethodCfg ? import("@emeryld/rrroutes-contract").Prettify<import("@emeryld/rrroutes-contract").Prettify<Omit<Omit<import("@emeryld/rrroutes-contract").MethodCfg, "querySchema" | "outputSchema" | "feed">, Exclude<keyof WithDefaults, "querySchema" | "outputSchema" | "feed">> & Omit<WithDefaults, "querySchema" | "outputSchema" | "feed">> & (WithDefaults["feed"] extends true ? (WithDefaults["feed"] extends true ? {
49
+ feed: true;
50
+ } : {
51
+ feed?: boolean;
52
+ }) & import("@emeryld/rrroutes-contract").FeedQueryField<WithDefaults> & import("@emeryld/rrroutes-contract").OutputField<WithDefaults> & (WithDefaults["paramsSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? {
53
+ paramsSchema: WithDefaults["paramsSchema"];
54
+ } : {
55
+ paramsSchema: undefined;
56
+ }) : (WithDefaults["feed"] extends true ? {
57
+ feed: true;
58
+ } : {
59
+ feed?: boolean;
60
+ }) & (WithDefaults["querySchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? {
61
+ querySchema: WithDefaults["querySchema"];
62
+ } : {
63
+ querySchema?: undefined;
64
+ }) & import("@emeryld/rrroutes-contract").OutputField<WithDefaults> & (WithDefaults["paramsSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? {
65
+ paramsSchema: WithDefaults["paramsSchema"];
66
+ } : {
67
+ paramsSchema: undefined;
68
+ }))> : never), "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema">> & import("@emeryld/rrroutes-contract").Prettify<Omit<import("@emeryld/rrroutes-contract").Prettify<import("@emeryld/rrroutes-contract").Prettify<Omit<Omit<import("@emeryld/rrroutes-contract").MethodCfg, "querySchema" | "outputSchema" | "feed">, "queryExtensionSchema" | "outputMetaSchema"> & Omit<import("@emeryld/rrroutes-contract").Prettify<Omit<{
69
+ feed: true;
70
+ outputSchema: z.ZodArray<z.ZodObject<{
71
+ id: z.ZodString;
72
+ name: z.ZodString;
73
+ description: z.ZodOptional<z.ZodString>;
74
+ groupId: z.ZodOptional<z.ZodString>;
75
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
76
+ createdAt: z.ZodNumber;
77
+ updatedAt: z.ZodNumber;
78
+ scheduledAt: z.ZodOptional<z.ZodNumber>;
79
+ startedAt: z.ZodOptional<z.ZodNumber>;
80
+ completedAt: z.ZodOptional<z.ZodNumber>;
81
+ status: z.ZodString;
82
+ }, z.core.$strip>>;
83
+ querySchema: z.ZodObject<{
84
+ beforeDate: z.ZodOptional<z.ZodString>;
85
+ afterDate: z.ZodOptional<z.ZodString>;
86
+ orderBy: z.ZodOptional<z.ZodEnum<{
87
+ timestamp: "timestamp";
88
+ duration: "duration";
89
+ level: "level";
90
+ path: "path";
91
+ }>>;
92
+ orderDirection: z.ZodOptional<z.ZodEnum<{
93
+ asc: "asc";
94
+ desc: "desc";
95
+ }>>;
96
+ searchQuery: z.ZodOptional<z.ZodString>;
97
+ groupsInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
98
+ groupsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
99
+ tagsInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
100
+ tagsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
101
+ status: z.ZodOptional<z.ZodArray<z.ZodString>>;
102
+ }, z.core.$strip>;
103
+ outputMetaSchema: z.ZodObject<{
104
+ totalCount: z.ZodOptional<z.ZodNumber>;
105
+ nextCursor: z.ZodOptional<z.ZodString>;
106
+ }, z.core.$strip>;
107
+ queryExtensionSchema: z.ZodObject<{
108
+ cursor: z.ZodOptional<z.ZodString>;
109
+ pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
110
+ }, z.core.$strip>;
111
+ }, "queryExtensionSchema" | "outputMetaSchema"> & {
112
+ queryExtensionSchema: z.ZodObject<{
113
+ cursor: z.ZodOptional<z.ZodString>;
114
+ pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
115
+ }, z.core.$strip>;
116
+ outputMetaSchema: z.ZodObject<{
117
+ totalCount: z.ZodOptional<z.ZodNumber>;
118
+ nextCursor: z.ZodOptional<z.ZodString>;
119
+ }, z.core.$strip>;
120
+ }>, "querySchema" | "outputSchema" | "feed">> & {
121
+ feed: true;
122
+ } & import("@emeryld/rrroutes-contract").FeedQueryField<import("@emeryld/rrroutes-contract").Prettify<Omit<{
123
+ feed: true;
124
+ outputSchema: z.ZodArray<z.ZodObject<{
125
+ id: z.ZodString;
126
+ name: z.ZodString;
127
+ description: z.ZodOptional<z.ZodString>;
128
+ groupId: z.ZodOptional<z.ZodString>;
129
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
130
+ createdAt: z.ZodNumber;
131
+ updatedAt: z.ZodNumber;
132
+ scheduledAt: z.ZodOptional<z.ZodNumber>;
133
+ startedAt: z.ZodOptional<z.ZodNumber>;
134
+ completedAt: z.ZodOptional<z.ZodNumber>;
135
+ status: z.ZodString;
136
+ }, z.core.$strip>>;
137
+ querySchema: z.ZodObject<{
138
+ beforeDate: z.ZodOptional<z.ZodString>;
139
+ afterDate: z.ZodOptional<z.ZodString>;
140
+ orderBy: z.ZodOptional<z.ZodEnum<{
141
+ timestamp: "timestamp";
142
+ duration: "duration";
143
+ level: "level";
144
+ path: "path";
145
+ }>>;
146
+ orderDirection: z.ZodOptional<z.ZodEnum<{
147
+ asc: "asc";
148
+ desc: "desc";
149
+ }>>;
150
+ searchQuery: z.ZodOptional<z.ZodString>;
151
+ groupsInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
152
+ groupsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
153
+ tagsInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
154
+ tagsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
155
+ status: z.ZodOptional<z.ZodArray<z.ZodString>>;
156
+ }, z.core.$strip>;
157
+ outputMetaSchema: z.ZodObject<{
158
+ totalCount: z.ZodOptional<z.ZodNumber>;
159
+ nextCursor: z.ZodOptional<z.ZodString>;
160
+ }, z.core.$strip>;
161
+ queryExtensionSchema: z.ZodObject<{
162
+ cursor: z.ZodOptional<z.ZodString>;
163
+ pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
164
+ }, z.core.$strip>;
165
+ }, "queryExtensionSchema" | "outputMetaSchema"> & {
166
+ queryExtensionSchema: z.ZodObject<{
167
+ cursor: z.ZodOptional<z.ZodString>;
168
+ pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
169
+ }, z.core.$strip>;
170
+ outputMetaSchema: z.ZodObject<{
171
+ totalCount: z.ZodOptional<z.ZodNumber>;
172
+ nextCursor: z.ZodOptional<z.ZodString>;
173
+ }, z.core.$strip>;
174
+ }>> & {
175
+ outputSchema: z.ZodObject<{
176
+ out: z.ZodArray<z.ZodObject<{
177
+ id: z.ZodString;
178
+ name: z.ZodString;
179
+ description: z.ZodOptional<z.ZodString>;
180
+ groupId: z.ZodOptional<z.ZodString>;
181
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
182
+ createdAt: z.ZodNumber;
183
+ updatedAt: z.ZodNumber;
184
+ scheduledAt: z.ZodOptional<z.ZodNumber>;
185
+ startedAt: z.ZodOptional<z.ZodNumber>;
186
+ completedAt: z.ZodOptional<z.ZodNumber>;
187
+ status: z.ZodString;
188
+ }, z.core.$strip>>;
189
+ meta: z.ZodObject<{
190
+ totalCount: z.ZodOptional<z.ZodNumber>;
191
+ nextCursor: z.ZodOptional<z.ZodString>;
192
+ }, z.core.$strip>;
193
+ }, z.core.$strip>;
194
+ } & {
195
+ paramsSchema: undefined;
196
+ }>, "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema"> & {
197
+ bodySchema: import("@emeryld/rrroutes-contract").RouteSchema<unknown, unknown> | undefined;
198
+ querySchema: import("@emeryld/rrroutes-contract").RouteSchema<{
199
+ beforeDate?: string | undefined;
200
+ afterDate?: string | undefined;
201
+ orderBy?: "timestamp" | "duration" | "level" | "path" | undefined;
202
+ orderDirection?: "asc" | "desc" | undefined;
203
+ searchQuery?: string | undefined;
204
+ groupsInclude?: string[] | undefined;
205
+ groupsExclude?: string[] | undefined;
206
+ tagsInclude?: string[] | undefined;
207
+ tagsExclude?: string[] | undefined;
208
+ status?: string[] | undefined;
209
+ } & {
210
+ cursor?: string | undefined;
211
+ pageSize?: number | undefined;
212
+ }, {
213
+ beforeDate?: string | undefined;
214
+ afterDate?: string | undefined;
215
+ orderBy?: "timestamp" | "duration" | "level" | "path" | undefined;
216
+ orderDirection?: "asc" | "desc" | undefined;
217
+ searchQuery?: string | undefined;
218
+ groupsInclude?: string[] | undefined;
219
+ groupsExclude?: string[] | undefined;
220
+ tagsInclude?: string[] | undefined;
221
+ tagsExclude?: string[] | undefined;
222
+ status?: string[] | undefined;
223
+ } & {
224
+ cursor?: string | undefined;
225
+ pageSize?: unknown;
226
+ }>;
227
+ paramsSchema: undefined;
228
+ outputSchema: import("@emeryld/rrroutes-contract").RouteSchema<{
229
+ out: {
230
+ id: string;
231
+ name: string;
232
+ createdAt: number;
233
+ updatedAt: number;
234
+ status: string;
235
+ description?: string | undefined;
236
+ groupId?: string | undefined;
237
+ tags?: string[] | undefined;
238
+ scheduledAt?: number | undefined;
239
+ startedAt?: number | undefined;
240
+ completedAt?: number | undefined;
241
+ }[];
242
+ meta: {
243
+ totalCount?: number | undefined;
244
+ nextCursor?: string | undefined;
245
+ };
246
+ }, {
247
+ out: {
248
+ id: string;
249
+ name: string;
250
+ createdAt: number;
251
+ updatedAt: number;
252
+ status: string;
253
+ description?: string | undefined;
254
+ groupId?: string | undefined;
255
+ tags?: string[] | undefined;
256
+ scheduledAt?: number | undefined;
257
+ startedAt?: number | undefined;
258
+ completedAt?: number | undefined;
259
+ }[];
260
+ meta: {
261
+ totalCount?: number | undefined;
262
+ nextCursor?: string | undefined;
263
+ };
264
+ }>;
265
+ outputMetaSchema: import("@emeryld/rrroutes-contract").RouteSchema<{
266
+ totalCount?: number | undefined;
267
+ nextCursor?: string | undefined;
268
+ }, {
269
+ totalCount?: number | undefined;
270
+ nextCursor?: string | undefined;
271
+ }>;
272
+ queryExtensionSchema: import("@emeryld/rrroutes-contract").RouteSchema<{
273
+ cursor?: string | undefined;
274
+ pageSize?: number | undefined;
275
+ }, {
276
+ cursor?: string | undefined;
277
+ pageSize?: unknown;
278
+ }>;
279
+ }>>>;
280
+ }, {
281
+ readonly method: "get";
282
+ readonly path: "schedulings/handlers";
283
+ 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"> & {
284
+ queryExtensionSchema: C_1["queryExtensionSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C_1["queryExtensionSchema"] : undefined;
285
+ outputMetaSchema: C_1["outputMetaSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C_1["outputMetaSchema"] : undefined;
286
+ }> extends infer WithDefaults extends import("@emeryld/rrroutes-contract").MethodCfg ? import("@emeryld/rrroutes-contract").Prettify<import("@emeryld/rrroutes-contract").Prettify<Omit<Omit<import("@emeryld/rrroutes-contract").MethodCfg, "querySchema" | "outputSchema" | "feed">, Exclude<keyof WithDefaults, "querySchema" | "outputSchema" | "feed">> & Omit<WithDefaults, "querySchema" | "outputSchema" | "feed">> & (WithDefaults["feed"] extends true ? (WithDefaults["feed"] extends true ? {
287
+ feed: true;
288
+ } : {
289
+ feed?: boolean;
290
+ }) & import("@emeryld/rrroutes-contract").FeedQueryField<WithDefaults> & import("@emeryld/rrroutes-contract").OutputField<WithDefaults> & (WithDefaults["paramsSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? {
291
+ paramsSchema: WithDefaults["paramsSchema"];
292
+ } : {
293
+ paramsSchema: undefined;
294
+ }) : (WithDefaults["feed"] extends true ? {
295
+ feed: true;
296
+ } : {
297
+ feed?: boolean;
298
+ }) & (WithDefaults["querySchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? {
299
+ querySchema: WithDefaults["querySchema"];
300
+ } : {
301
+ querySchema?: undefined;
302
+ }) & import("@emeryld/rrroutes-contract").OutputField<WithDefaults> & (WithDefaults["paramsSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? {
303
+ paramsSchema: WithDefaults["paramsSchema"];
304
+ } : {
305
+ paramsSchema: undefined;
306
+ }))> : never), "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema">> & import("@emeryld/rrroutes-contract").Prettify<Omit<import("@emeryld/rrroutes-contract").Prettify<import("@emeryld/rrroutes-contract").Prettify<Omit<Omit<import("@emeryld/rrroutes-contract").MethodCfg, "querySchema" | "outputSchema" | "feed">, "queryExtensionSchema" | "outputMetaSchema"> & Omit<import("@emeryld/rrroutes-contract").Prettify<Omit<{
307
+ feed: true;
308
+ outputSchema: z.ZodArray<z.ZodObject<{
309
+ name: z.ZodString;
310
+ payload: z.ZodString;
311
+ }, z.core.$strip>>;
312
+ querySchema: z.ZodObject<{
313
+ name: z.ZodOptional<z.ZodString>;
314
+ }, z.core.$strip>;
315
+ outputMetaSchema: z.ZodObject<{
316
+ totalCount: z.ZodOptional<z.ZodNumber>;
317
+ nextCursor: z.ZodOptional<z.ZodString>;
318
+ }, z.core.$strip>;
319
+ queryExtensionSchema: z.ZodObject<{
320
+ cursor: z.ZodOptional<z.ZodString>;
321
+ pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
322
+ }, z.core.$strip>;
323
+ }, "queryExtensionSchema" | "outputMetaSchema"> & {
324
+ queryExtensionSchema: z.ZodObject<{
325
+ cursor: z.ZodOptional<z.ZodString>;
326
+ pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
327
+ }, z.core.$strip>;
328
+ outputMetaSchema: z.ZodObject<{
329
+ totalCount: z.ZodOptional<z.ZodNumber>;
330
+ nextCursor: z.ZodOptional<z.ZodString>;
331
+ }, z.core.$strip>;
332
+ }>, "querySchema" | "outputSchema" | "feed">> & {
333
+ feed: true;
334
+ } & import("@emeryld/rrroutes-contract").FeedQueryField<import("@emeryld/rrroutes-contract").Prettify<Omit<{
335
+ feed: true;
336
+ outputSchema: z.ZodArray<z.ZodObject<{
337
+ name: z.ZodString;
338
+ payload: z.ZodString;
339
+ }, z.core.$strip>>;
340
+ querySchema: z.ZodObject<{
341
+ name: z.ZodOptional<z.ZodString>;
342
+ }, z.core.$strip>;
343
+ outputMetaSchema: z.ZodObject<{
344
+ totalCount: z.ZodOptional<z.ZodNumber>;
345
+ nextCursor: z.ZodOptional<z.ZodString>;
346
+ }, z.core.$strip>;
347
+ queryExtensionSchema: z.ZodObject<{
348
+ cursor: z.ZodOptional<z.ZodString>;
349
+ pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
350
+ }, z.core.$strip>;
351
+ }, "queryExtensionSchema" | "outputMetaSchema"> & {
352
+ queryExtensionSchema: z.ZodObject<{
353
+ cursor: z.ZodOptional<z.ZodString>;
354
+ pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
355
+ }, z.core.$strip>;
356
+ outputMetaSchema: z.ZodObject<{
357
+ totalCount: z.ZodOptional<z.ZodNumber>;
358
+ nextCursor: z.ZodOptional<z.ZodString>;
359
+ }, z.core.$strip>;
360
+ }>> & {
361
+ outputSchema: z.ZodObject<{
362
+ out: z.ZodArray<z.ZodObject<{
363
+ name: z.ZodString;
364
+ payload: z.ZodString;
365
+ }, z.core.$strip>>;
366
+ meta: z.ZodObject<{
367
+ totalCount: z.ZodOptional<z.ZodNumber>;
368
+ nextCursor: z.ZodOptional<z.ZodString>;
369
+ }, z.core.$strip>;
370
+ }, z.core.$strip>;
371
+ } & {
372
+ paramsSchema: undefined;
373
+ }>, "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema"> & {
374
+ bodySchema: import("@emeryld/rrroutes-contract").RouteSchema<unknown, unknown> | undefined;
375
+ querySchema: import("@emeryld/rrroutes-contract").RouteSchema<{
376
+ name?: string | undefined;
377
+ } & {
378
+ cursor?: string | undefined;
379
+ pageSize?: number | undefined;
380
+ }, {
381
+ name?: string | undefined;
382
+ } & {
383
+ cursor?: string | undefined;
384
+ pageSize?: unknown;
385
+ }>;
386
+ paramsSchema: undefined;
387
+ outputSchema: import("@emeryld/rrroutes-contract").RouteSchema<{
388
+ out: {
389
+ name: string;
390
+ payload: string;
391
+ }[];
392
+ meta: {
393
+ totalCount?: number | undefined;
394
+ nextCursor?: string | undefined;
395
+ };
396
+ }, {
397
+ out: {
398
+ name: string;
399
+ payload: string;
400
+ }[];
401
+ meta: {
402
+ totalCount?: number | undefined;
403
+ nextCursor?: string | undefined;
404
+ };
405
+ }>;
406
+ outputMetaSchema: import("@emeryld/rrroutes-contract").RouteSchema<{
407
+ totalCount?: number | undefined;
408
+ nextCursor?: string | undefined;
409
+ }, {
410
+ totalCount?: number | undefined;
411
+ nextCursor?: string | undefined;
412
+ }>;
413
+ queryExtensionSchema: import("@emeryld/rrroutes-contract").RouteSchema<{
414
+ cursor?: string | undefined;
415
+ pageSize?: number | undefined;
416
+ }, {
417
+ cursor?: string | undefined;
418
+ pageSize?: unknown;
419
+ }>;
420
+ }>>>, "paramsSchema"> & {
421
+ paramsSchema: undefined;
422
+ }>>;
423
+ }];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emeryld/rrroutes-openapi",
3
- "version": "2.5.10",
3
+ "version": "2.5.12",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -28,9 +28,9 @@
28
28
  "react": "^18.3.1",
29
29
  "react-dom": "^18.3.1",
30
30
  "react-router-dom": "^7.10.1",
31
- "recharts": "^3.5.1",
31
+ "recharts": "^3.6.0",
32
32
  "socket.io-client": "^4.8.1",
33
- "zod": "^4.1.13"
33
+ "zod": "^4.2.0"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "express": "^5.1.0"