@emeryld/rrroutes-openapi 2.5.15 → 2.5.17

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.
@@ -6,7 +6,6 @@ export declare const cacheLogSchema: z.ZodObject<{
6
6
  id: z.ZodString;
7
7
  name: z.ZodString;
8
8
  description: z.ZodOptional<z.ZodString>;
9
- groupId: z.ZodOptional<z.ZodString>;
10
9
  tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
11
10
  createdAt: z.ZodNumber;
12
11
  updatedAt: z.ZodNumber;
@@ -46,6 +45,7 @@ export declare const cacheTraceSchema: z.ZodObject<{
46
45
  size: z.ZodOptional<z.ZodNumber>;
47
46
  durationMs: z.ZodOptional<z.ZodNumber>;
48
47
  groupId: z.ZodOptional<z.ZodString>;
48
+ ttlMs: z.ZodOptional<z.ZodNumber>;
49
49
  type: z.ZodOptional<z.ZodString>;
50
50
  }, z.core.$strip>;
51
51
  export type CacheTraceType = z.infer<typeof cacheTraceSchema>;
@@ -77,7 +77,7 @@ export declare const cacheTraceQuerySchema: z.ZodObject<{
77
77
  set: "set";
78
78
  }>>>;
79
79
  }, z.core.$strip>;
80
- export type CacheTraceQuery = z.infer<typeof cacheTraceQuerySchema>;
80
+ export type CacheTraceQuery = z.infer<typeof cacheTraceQuerySchema> & z.infer<typeof paginationSchema>;
81
81
  export declare const cacheLeaves: readonly [{
82
82
  readonly method: "get";
83
83
  readonly path: "cache";
@@ -110,7 +110,6 @@ export declare const cacheLeaves: readonly [{
110
110
  id: z.ZodString;
111
111
  name: z.ZodString;
112
112
  description: z.ZodOptional<z.ZodString>;
113
- groupId: z.ZodOptional<z.ZodString>;
114
113
  tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
115
114
  createdAt: z.ZodNumber;
116
115
  updatedAt: z.ZodNumber;
@@ -160,7 +159,6 @@ export declare const cacheLeaves: readonly [{
160
159
  id: z.ZodString;
161
160
  name: z.ZodString;
162
161
  description: z.ZodOptional<z.ZodString>;
163
- groupId: z.ZodOptional<z.ZodString>;
164
162
  tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
165
163
  createdAt: z.ZodNumber;
166
164
  updatedAt: z.ZodNumber;
@@ -208,7 +206,6 @@ export declare const cacheLeaves: readonly [{
208
206
  id: z.ZodString;
209
207
  name: z.ZodString;
210
208
  description: z.ZodOptional<z.ZodString>;
211
- groupId: z.ZodOptional<z.ZodString>;
212
209
  tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
213
210
  createdAt: z.ZodNumber;
214
211
  updatedAt: z.ZodNumber;
@@ -266,7 +263,6 @@ export declare const cacheLeaves: readonly [{
266
263
  updatedAt: number;
267
264
  value: any;
268
265
  description?: string | undefined;
269
- groupId?: string | undefined;
270
266
  tags?: string[] | undefined;
271
267
  size?: number | undefined;
272
268
  setAt?: number | undefined;
@@ -284,7 +280,6 @@ export declare const cacheLeaves: readonly [{
284
280
  updatedAt: number;
285
281
  value: any;
286
282
  description?: string | undefined;
287
- groupId?: string | undefined;
288
283
  tags?: string[] | undefined;
289
284
  size?: number | undefined;
290
285
  setAt?: number | undefined;
@@ -484,6 +479,7 @@ export declare const cacheLeaves: readonly [{
484
479
  size: z.ZodOptional<z.ZodNumber>;
485
480
  durationMs: z.ZodOptional<z.ZodNumber>;
486
481
  groupId: z.ZodOptional<z.ZodString>;
482
+ ttlMs: z.ZodOptional<z.ZodNumber>;
487
483
  type: z.ZodOptional<z.ZodString>;
488
484
  }, z.core.$strip>>;
489
485
  querySchema: z.ZodObject<{
@@ -548,6 +544,7 @@ export declare const cacheLeaves: readonly [{
548
544
  size: z.ZodOptional<z.ZodNumber>;
549
545
  durationMs: z.ZodOptional<z.ZodNumber>;
550
546
  groupId: z.ZodOptional<z.ZodString>;
547
+ ttlMs: z.ZodOptional<z.ZodNumber>;
551
548
  type: z.ZodOptional<z.ZodString>;
552
549
  }, z.core.$strip>>;
553
550
  querySchema: z.ZodObject<{
@@ -610,6 +607,7 @@ export declare const cacheLeaves: readonly [{
610
607
  size: z.ZodOptional<z.ZodNumber>;
611
608
  durationMs: z.ZodOptional<z.ZodNumber>;
612
609
  groupId: z.ZodOptional<z.ZodString>;
610
+ ttlMs: z.ZodOptional<z.ZodNumber>;
613
611
  type: z.ZodOptional<z.ZodString>;
614
612
  }, z.core.$strip>>;
615
613
  meta: z.ZodObject<{
@@ -666,6 +664,7 @@ export declare const cacheLeaves: readonly [{
666
664
  size?: number | undefined;
667
665
  durationMs?: number | undefined;
668
666
  groupId?: string | undefined;
667
+ ttlMs?: number | undefined;
669
668
  type?: string | undefined;
670
669
  }[];
671
670
  meta: {
@@ -681,6 +680,7 @@ export declare const cacheLeaves: readonly [{
681
680
  size?: number | undefined;
682
681
  durationMs?: number | undefined;
683
682
  groupId?: string | undefined;
683
+ ttlMs?: number | undefined;
684
684
  type?: string | undefined;
685
685
  }[];
686
686
  meta: {
@@ -498,6 +498,7 @@ export declare const requestLogLeaves: readonly [{
498
498
  size: z.ZodOptional<z.ZodNumber>;
499
499
  durationMs: z.ZodOptional<z.ZodNumber>;
500
500
  groupId: z.ZodOptional<z.ZodString>;
501
+ ttlMs: z.ZodOptional<z.ZodNumber>;
501
502
  type: z.ZodOptional<z.ZodString>;
502
503
  }, z.core.$strip>>;
503
504
  }, z.core.$strip>;
@@ -563,6 +564,7 @@ export declare const requestLogLeaves: readonly [{
563
564
  size: z.ZodOptional<z.ZodNumber>;
564
565
  durationMs: z.ZodOptional<z.ZodNumber>;
565
566
  groupId: z.ZodOptional<z.ZodString>;
567
+ ttlMs: z.ZodOptional<z.ZodNumber>;
566
568
  type: z.ZodOptional<z.ZodString>;
567
569
  }, z.core.$strip>>;
568
570
  }, z.core.$strip>;
@@ -610,6 +612,7 @@ export declare const requestLogLeaves: readonly [{
610
612
  size?: number | undefined;
611
613
  durationMs?: number | undefined;
612
614
  groupId?: string | undefined;
615
+ ttlMs?: number | undefined;
613
616
  type?: string | undefined;
614
617
  }[];
615
618
  description?: string | undefined;
@@ -657,6 +660,7 @@ export declare const requestLogLeaves: readonly [{
657
660
  size?: number | undefined;
658
661
  durationMs?: number | undefined;
659
662
  groupId?: string | undefined;
663
+ ttlMs?: number | undefined;
660
664
  type?: string | undefined;
661
665
  }[];
662
666
  description?: string | undefined;
@@ -1,4 +1,5 @@
1
1
  import z from 'zod';
2
+ import { paginationSchema } from './types.base';
2
3
  export declare const schedulingSchema: z.ZodObject<{
3
4
  id: z.ZodString;
4
5
  name: z.ZodString;
@@ -7,7 +8,7 @@ export declare const schedulingSchema: z.ZodObject<{
7
8
  tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
8
9
  createdAt: z.ZodNumber;
9
10
  updatedAt: z.ZodNumber;
10
- scheduledAt: z.ZodOptional<z.ZodNumber>;
11
+ scheduledAt: z.ZodNumber;
11
12
  startedAt: z.ZodOptional<z.ZodNumber>;
12
13
  completedAt: z.ZodOptional<z.ZodNumber>;
13
14
  status: z.ZodString;
@@ -25,10 +26,11 @@ export declare const schedulingQuerySchema: z.ZodObject<{
25
26
  groupsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
26
27
  tagsInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
27
28
  tagsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
28
- status: z.ZodOptional<z.ZodArray<z.ZodString>>;
29
+ statusesInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
30
+ statusesExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
29
31
  }, z.core.$strip>;
30
32
  export type SchedulingType = z.infer<typeof schedulingSchema>;
31
- export type SchedulingFilter = z.infer<typeof schedulingQuerySchema>;
33
+ export type SchedulingFilter = z.infer<typeof schedulingQuerySchema> & z.infer<typeof paginationSchema>;
32
34
  export declare const schedulableHandler: z.ZodObject<{
33
35
  name: z.ZodString;
34
36
  payload: z.ZodString;
@@ -70,7 +72,7 @@ export declare const schedulingLeaves: readonly [{
70
72
  tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
71
73
  createdAt: z.ZodNumber;
72
74
  updatedAt: z.ZodNumber;
73
- scheduledAt: z.ZodOptional<z.ZodNumber>;
75
+ scheduledAt: z.ZodNumber;
74
76
  startedAt: z.ZodOptional<z.ZodNumber>;
75
77
  completedAt: z.ZodOptional<z.ZodNumber>;
76
78
  status: z.ZodString;
@@ -88,7 +90,8 @@ export declare const schedulingLeaves: readonly [{
88
90
  groupsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
89
91
  tagsInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
90
92
  tagsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
91
- status: z.ZodOptional<z.ZodArray<z.ZodString>>;
93
+ statusesInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
94
+ statusesExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
92
95
  }, z.core.$strip>;
93
96
  outputMetaSchema: z.ZodObject<{
94
97
  totalCount: z.ZodOptional<z.ZodNumber>;
@@ -119,7 +122,7 @@ export declare const schedulingLeaves: readonly [{
119
122
  tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
120
123
  createdAt: z.ZodNumber;
121
124
  updatedAt: z.ZodNumber;
122
- scheduledAt: z.ZodOptional<z.ZodNumber>;
125
+ scheduledAt: z.ZodNumber;
123
126
  startedAt: z.ZodOptional<z.ZodNumber>;
124
127
  completedAt: z.ZodOptional<z.ZodNumber>;
125
128
  status: z.ZodString;
@@ -137,7 +140,8 @@ export declare const schedulingLeaves: readonly [{
137
140
  groupsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
138
141
  tagsInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
139
142
  tagsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
140
- status: z.ZodOptional<z.ZodArray<z.ZodString>>;
143
+ statusesInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
144
+ statusesExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
141
145
  }, z.core.$strip>;
142
146
  outputMetaSchema: z.ZodObject<{
143
147
  totalCount: z.ZodOptional<z.ZodNumber>;
@@ -166,7 +170,7 @@ export declare const schedulingLeaves: readonly [{
166
170
  tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
167
171
  createdAt: z.ZodNumber;
168
172
  updatedAt: z.ZodNumber;
169
- scheduledAt: z.ZodOptional<z.ZodNumber>;
173
+ scheduledAt: z.ZodNumber;
170
174
  startedAt: z.ZodOptional<z.ZodNumber>;
171
175
  completedAt: z.ZodOptional<z.ZodNumber>;
172
176
  status: z.ZodString;
@@ -190,7 +194,8 @@ export declare const schedulingLeaves: readonly [{
190
194
  groupsExclude?: string[] | undefined;
191
195
  tagsInclude?: string[] | undefined;
192
196
  tagsExclude?: string[] | undefined;
193
- status?: string[] | undefined;
197
+ statusesInclude?: string[] | undefined;
198
+ statusesExclude?: string[] | undefined;
194
199
  } & {
195
200
  cursor?: string | undefined;
196
201
  pageSize?: number | undefined;
@@ -204,7 +209,8 @@ export declare const schedulingLeaves: readonly [{
204
209
  groupsExclude?: string[] | undefined;
205
210
  tagsInclude?: string[] | undefined;
206
211
  tagsExclude?: string[] | undefined;
207
- status?: string[] | undefined;
212
+ statusesInclude?: string[] | undefined;
213
+ statusesExclude?: string[] | undefined;
208
214
  } & {
209
215
  cursor?: string | undefined;
210
216
  pageSize?: unknown;
@@ -216,11 +222,11 @@ export declare const schedulingLeaves: readonly [{
216
222
  name: string;
217
223
  createdAt: number;
218
224
  updatedAt: number;
225
+ scheduledAt: number;
219
226
  status: string;
220
227
  description?: string | undefined;
221
228
  groupId?: string | undefined;
222
229
  tags?: string[] | undefined;
223
- scheduledAt?: number | undefined;
224
230
  startedAt?: number | undefined;
225
231
  completedAt?: number | undefined;
226
232
  }[];
@@ -234,11 +240,11 @@ export declare const schedulingLeaves: readonly [{
234
240
  name: string;
235
241
  createdAt: number;
236
242
  updatedAt: number;
243
+ scheduledAt: number;
237
244
  status: string;
238
245
  description?: string | undefined;
239
246
  groupId?: string | undefined;
240
247
  tags?: string[] | undefined;
241
- scheduledAt?: number | undefined;
242
248
  startedAt?: number | undefined;
243
249
  completedAt?: number | undefined;
244
250
  }[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emeryld/rrroutes-openapi",
3
- "version": "2.5.15",
3
+ "version": "2.5.17",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",