@emeryld/rrroutes-openapi 2.4.3 → 2.4.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.
@@ -100,30 +100,389 @@ export declare const endpointFilterSchema: z.ZodObject<{
100
100
  }>>>;
101
101
  }, z.core.$strip>;
102
102
  export type RoutesFilter = z.infer<typeof endpointFilterSchema> & z.infer<typeof paginationSchema>;
103
+ export declare const endpointSchemaWithStats: z.ZodObject<{
104
+ id: z.ZodString;
105
+ name: z.ZodString;
106
+ description: z.ZodOptional<z.ZodString>;
107
+ groupId: z.ZodOptional<z.ZodString>;
108
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
109
+ createdAt: z.ZodNumber;
110
+ updatedAt: z.ZodNumber;
111
+ method: z.ZodEnum<{
112
+ get: "get";
113
+ post: "post";
114
+ put: "put";
115
+ patch: "patch";
116
+ delete: "delete";
117
+ }>;
118
+ path: z.ZodString;
119
+ contract: z.ZodObject<{
120
+ body: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
121
+ query: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
122
+ output: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
123
+ params: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
124
+ bodyFiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
125
+ name: z.ZodString;
126
+ maxCount: z.ZodNumber;
127
+ }, z.core.$strip>>>;
128
+ }, z.core.$strip>;
129
+ feed: z.ZodOptional<z.ZodBoolean>;
130
+ summary: z.ZodOptional<z.ZodString>;
131
+ stability: z.ZodEnum<{
132
+ deprecated: "deprecated";
133
+ experimental: "experimental";
134
+ beta: "beta";
135
+ stable: "stable";
136
+ }>;
137
+ hidden: z.ZodOptional<z.ZodBoolean>;
138
+ meta: z.ZodRecord<z.ZodString, z.ZodString>;
139
+ implemented: z.ZodOptional<z.ZodBoolean>;
140
+ requests: z.ZodArray<z.ZodObject<{
141
+ id: z.ZodString;
142
+ name: z.ZodString;
143
+ description: z.ZodOptional<z.ZodString>;
144
+ groupId: z.ZodOptional<z.ZodString>;
145
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
146
+ createdAt: z.ZodNumber;
147
+ updatedAt: z.ZodNumber;
148
+ status: z.ZodNumber;
149
+ body: z.ZodOptional<z.ZodAny>;
150
+ fullUrl: z.ZodString;
151
+ path: z.ZodString;
152
+ method: z.ZodEnum<{
153
+ get: "get";
154
+ post: "post";
155
+ put: "put";
156
+ patch: "patch";
157
+ delete: "delete";
158
+ }>;
159
+ query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
160
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
161
+ output: z.ZodOptional<z.ZodAny>;
162
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
163
+ error: z.ZodOptional<z.ZodString>;
164
+ durationMs: z.ZodNumber;
165
+ ip: z.ZodOptional<z.ZodString>;
166
+ userAgent: z.ZodOptional<z.ZodString>;
167
+ }, z.core.$strip>>;
168
+ volumeTS: z.ZodArray<z.ZodObject<{
169
+ timestamp: z.ZodNumber;
170
+ count: z.ZodNumber;
171
+ }, z.core.$strip>>;
172
+ averageDurationMs: z.ZodNumber;
173
+ successRate: z.ZodNumber;
174
+ latestErrors: z.ZodOptional<z.ZodArray<z.ZodObject<{
175
+ id: z.ZodString;
176
+ name: z.ZodString;
177
+ description: z.ZodOptional<z.ZodString>;
178
+ groupId: z.ZodOptional<z.ZodString>;
179
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
180
+ createdAt: z.ZodNumber;
181
+ updatedAt: z.ZodNumber;
182
+ status: z.ZodNumber;
183
+ body: z.ZodOptional<z.ZodAny>;
184
+ fullUrl: z.ZodString;
185
+ path: z.ZodString;
186
+ method: z.ZodEnum<{
187
+ get: "get";
188
+ post: "post";
189
+ put: "put";
190
+ patch: "patch";
191
+ delete: "delete";
192
+ }>;
193
+ query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
194
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
195
+ output: z.ZodOptional<z.ZodAny>;
196
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
197
+ error: z.ZodOptional<z.ZodString>;
198
+ durationMs: z.ZodNumber;
199
+ ip: z.ZodOptional<z.ZodString>;
200
+ userAgent: z.ZodOptional<z.ZodString>;
201
+ }, z.core.$strip>>>;
202
+ }, z.core.$strip>;
203
+ export type EndpointDetailData = z.infer<typeof endpointSchemaWithStats>;
103
204
  export declare const endpointLeaves: readonly [{
104
205
  readonly method: "get";
105
206
  readonly path: "endpoints";
106
- readonly cfg: Readonly<{
107
- description?: string | undefined;
108
- tags?: string[] | undefined;
207
+ 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"> & {
208
+ queryExtensionSchema: C["queryExtensionSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C["queryExtensionSchema"] : undefined;
209
+ outputMetaSchema: C["outputMetaSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? C["outputMetaSchema"] : undefined;
210
+ }> 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 ? {
211
+ feed: true;
212
+ } : {
213
+ feed?: boolean;
214
+ }) & import("@emeryld/rrroutes-contract").FeedQueryField<WithDefaults> & import("@emeryld/rrroutes-contract").OutputField<WithDefaults> & (WithDefaults["paramsSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? {
215
+ paramsSchema: WithDefaults["paramsSchema"];
216
+ } : {
217
+ paramsSchema: undefined;
218
+ }) : (WithDefaults["feed"] extends true ? {
219
+ feed: true;
220
+ } : {
221
+ feed?: boolean;
222
+ }) & (WithDefaults["querySchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? {
223
+ querySchema: WithDefaults["querySchema"];
224
+ } : {
225
+ querySchema?: undefined;
226
+ }) & import("@emeryld/rrroutes-contract").OutputField<WithDefaults> & (WithDefaults["paramsSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? {
227
+ paramsSchema: WithDefaults["paramsSchema"];
228
+ } : {
229
+ paramsSchema: undefined;
230
+ }))> : 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<{
231
+ feed: true;
232
+ querySchema: z.ZodObject<{
233
+ beforeDate: z.ZodOptional<z.ZodString>;
234
+ afterDate: z.ZodOptional<z.ZodString>;
235
+ orderBy: z.ZodOptional<z.ZodEnum<{
236
+ timestamp: "timestamp";
237
+ duration: "duration";
238
+ level: "level";
239
+ path: "path";
240
+ }>>;
241
+ orderDirection: z.ZodOptional<z.ZodEnum<{
242
+ asc: "asc";
243
+ desc: "desc";
244
+ }>>;
245
+ searchQuery: z.ZodOptional<z.ZodString>;
246
+ groupsInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
247
+ groupsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
248
+ tagsInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
249
+ tagsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
250
+ methodsInclude: z.ZodOptional<z.ZodArray<z.ZodEnum<{
251
+ get: "get";
252
+ post: "post";
253
+ put: "put";
254
+ patch: "patch";
255
+ delete: "delete";
256
+ }>>>;
257
+ methodsExclude: z.ZodOptional<z.ZodArray<z.ZodEnum<{
258
+ get: "get";
259
+ post: "post";
260
+ put: "put";
261
+ patch: "patch";
262
+ delete: "delete";
263
+ }>>>;
264
+ path: z.ZodOptional<z.ZodString>;
265
+ stabilityInclude: z.ZodOptional<z.ZodArray<z.ZodEnum<{
266
+ deprecated: "deprecated";
267
+ experimental: "experimental";
268
+ beta: "beta";
269
+ stable: "stable";
270
+ }>>>;
271
+ stabilityExclude: z.ZodOptional<z.ZodArray<z.ZodEnum<{
272
+ deprecated: "deprecated";
273
+ experimental: "experimental";
274
+ beta: "beta";
275
+ stable: "stable";
276
+ }>>>;
277
+ }, z.core.$strip>;
278
+ outputSchema: z.ZodArray<z.ZodObject<{
279
+ id: z.ZodString;
280
+ name: z.ZodString;
281
+ description: z.ZodOptional<z.ZodString>;
282
+ groupId: z.ZodOptional<z.ZodString>;
283
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
284
+ createdAt: z.ZodNumber;
285
+ updatedAt: z.ZodNumber;
286
+ method: z.ZodEnum<{
287
+ get: "get";
288
+ post: "post";
289
+ put: "put";
290
+ patch: "patch";
291
+ delete: "delete";
292
+ }>;
293
+ path: z.ZodString;
294
+ contract: z.ZodObject<{
295
+ body: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
296
+ query: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
297
+ output: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
298
+ params: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
299
+ bodyFiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
300
+ name: z.ZodString;
301
+ maxCount: z.ZodNumber;
302
+ }, z.core.$strip>>>;
303
+ }, z.core.$strip>;
304
+ feed: z.ZodOptional<z.ZodBoolean>;
305
+ summary: z.ZodOptional<z.ZodString>;
306
+ stability: z.ZodEnum<{
307
+ deprecated: "deprecated";
308
+ experimental: "experimental";
309
+ beta: "beta";
310
+ stable: "stable";
311
+ }>;
312
+ hidden: z.ZodOptional<z.ZodBoolean>;
313
+ meta: z.ZodRecord<z.ZodString, z.ZodString>;
314
+ implemented: z.ZodOptional<z.ZodBoolean>;
315
+ }, z.core.$strip>>;
316
+ outputMetaSchema: z.ZodObject<{
317
+ totalCount: z.ZodOptional<z.ZodNumber>;
318
+ nextCursor: z.ZodOptional<z.ZodString>;
319
+ }, z.core.$strip>;
109
320
  queryExtensionSchema: z.ZodObject<{
110
321
  cursor: z.ZodOptional<z.ZodString>;
111
322
  pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
112
- }, z.core.$strip> & import("@emeryld/rrroutes-contract").RouteSchema<{
113
- cursor?: string | undefined;
114
- pageSize?: number | undefined;
115
- }, {
116
- cursor?: string | undefined;
117
- pageSize?: unknown;
118
- }>;
119
- bodyFiles?: import("@emeryld/rrroutes-contract").FileField[] | undefined;
323
+ }, z.core.$strip>;
324
+ }, "queryExtensionSchema" | "outputMetaSchema"> & {
325
+ queryExtensionSchema: z.ZodObject<{
326
+ cursor: z.ZodOptional<z.ZodString>;
327
+ pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
328
+ }, z.core.$strip>;
329
+ outputMetaSchema: z.ZodObject<{
330
+ totalCount: z.ZodOptional<z.ZodNumber>;
331
+ nextCursor: z.ZodOptional<z.ZodString>;
332
+ }, z.core.$strip>;
333
+ }>, "querySchema" | "outputSchema" | "feed">> & {
120
334
  feed: true;
121
- summary?: string | undefined;
122
- docsGroup?: string | undefined;
123
- deprecated?: boolean | undefined;
124
- stability?: "experimental" | "beta" | "stable" | "deprecated" | undefined;
125
- docsHidden?: boolean | undefined;
126
- docsMeta?: Record<string, unknown> | undefined;
335
+ } & import("@emeryld/rrroutes-contract").FeedQueryField<import("@emeryld/rrroutes-contract").Prettify<Omit<{
336
+ feed: true;
337
+ querySchema: z.ZodObject<{
338
+ beforeDate: z.ZodOptional<z.ZodString>;
339
+ afterDate: z.ZodOptional<z.ZodString>;
340
+ orderBy: z.ZodOptional<z.ZodEnum<{
341
+ timestamp: "timestamp";
342
+ duration: "duration";
343
+ level: "level";
344
+ path: "path";
345
+ }>>;
346
+ orderDirection: z.ZodOptional<z.ZodEnum<{
347
+ asc: "asc";
348
+ desc: "desc";
349
+ }>>;
350
+ searchQuery: z.ZodOptional<z.ZodString>;
351
+ groupsInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
352
+ groupsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
353
+ tagsInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
354
+ tagsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
355
+ methodsInclude: z.ZodOptional<z.ZodArray<z.ZodEnum<{
356
+ get: "get";
357
+ post: "post";
358
+ put: "put";
359
+ patch: "patch";
360
+ delete: "delete";
361
+ }>>>;
362
+ methodsExclude: z.ZodOptional<z.ZodArray<z.ZodEnum<{
363
+ get: "get";
364
+ post: "post";
365
+ put: "put";
366
+ patch: "patch";
367
+ delete: "delete";
368
+ }>>>;
369
+ path: z.ZodOptional<z.ZodString>;
370
+ stabilityInclude: z.ZodOptional<z.ZodArray<z.ZodEnum<{
371
+ deprecated: "deprecated";
372
+ experimental: "experimental";
373
+ beta: "beta";
374
+ stable: "stable";
375
+ }>>>;
376
+ stabilityExclude: z.ZodOptional<z.ZodArray<z.ZodEnum<{
377
+ deprecated: "deprecated";
378
+ experimental: "experimental";
379
+ beta: "beta";
380
+ stable: "stable";
381
+ }>>>;
382
+ }, z.core.$strip>;
383
+ outputSchema: z.ZodArray<z.ZodObject<{
384
+ id: z.ZodString;
385
+ name: z.ZodString;
386
+ description: z.ZodOptional<z.ZodString>;
387
+ groupId: z.ZodOptional<z.ZodString>;
388
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
389
+ createdAt: z.ZodNumber;
390
+ updatedAt: z.ZodNumber;
391
+ method: z.ZodEnum<{
392
+ get: "get";
393
+ post: "post";
394
+ put: "put";
395
+ patch: "patch";
396
+ delete: "delete";
397
+ }>;
398
+ path: z.ZodString;
399
+ contract: z.ZodObject<{
400
+ body: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
401
+ query: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
402
+ output: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
403
+ params: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
404
+ bodyFiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
405
+ name: z.ZodString;
406
+ maxCount: z.ZodNumber;
407
+ }, z.core.$strip>>>;
408
+ }, z.core.$strip>;
409
+ feed: z.ZodOptional<z.ZodBoolean>;
410
+ summary: z.ZodOptional<z.ZodString>;
411
+ stability: z.ZodEnum<{
412
+ deprecated: "deprecated";
413
+ experimental: "experimental";
414
+ beta: "beta";
415
+ stable: "stable";
416
+ }>;
417
+ hidden: z.ZodOptional<z.ZodBoolean>;
418
+ meta: z.ZodRecord<z.ZodString, z.ZodString>;
419
+ implemented: z.ZodOptional<z.ZodBoolean>;
420
+ }, z.core.$strip>>;
421
+ outputMetaSchema: z.ZodObject<{
422
+ totalCount: z.ZodOptional<z.ZodNumber>;
423
+ nextCursor: z.ZodOptional<z.ZodString>;
424
+ }, z.core.$strip>;
425
+ queryExtensionSchema: z.ZodObject<{
426
+ cursor: z.ZodOptional<z.ZodString>;
427
+ pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
428
+ }, z.core.$strip>;
429
+ }, "queryExtensionSchema" | "outputMetaSchema"> & {
430
+ queryExtensionSchema: z.ZodObject<{
431
+ cursor: z.ZodOptional<z.ZodString>;
432
+ pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
433
+ }, z.core.$strip>;
434
+ outputMetaSchema: z.ZodObject<{
435
+ totalCount: z.ZodOptional<z.ZodNumber>;
436
+ nextCursor: z.ZodOptional<z.ZodString>;
437
+ }, z.core.$strip>;
438
+ }>> & {
439
+ outputSchema: z.ZodObject<{
440
+ out: z.ZodArray<z.ZodObject<{
441
+ id: z.ZodString;
442
+ name: z.ZodString;
443
+ description: z.ZodOptional<z.ZodString>;
444
+ groupId: z.ZodOptional<z.ZodString>;
445
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
446
+ createdAt: z.ZodNumber;
447
+ updatedAt: z.ZodNumber;
448
+ method: z.ZodEnum<{
449
+ get: "get";
450
+ post: "post";
451
+ put: "put";
452
+ patch: "patch";
453
+ delete: "delete";
454
+ }>;
455
+ path: z.ZodString;
456
+ contract: z.ZodObject<{
457
+ body: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
458
+ query: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
459
+ output: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
460
+ params: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
461
+ bodyFiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
462
+ name: z.ZodString;
463
+ maxCount: z.ZodNumber;
464
+ }, z.core.$strip>>>;
465
+ }, z.core.$strip>;
466
+ feed: z.ZodOptional<z.ZodBoolean>;
467
+ summary: z.ZodOptional<z.ZodString>;
468
+ stability: z.ZodEnum<{
469
+ deprecated: "deprecated";
470
+ experimental: "experimental";
471
+ beta: "beta";
472
+ stable: "stable";
473
+ }>;
474
+ hidden: z.ZodOptional<z.ZodBoolean>;
475
+ meta: z.ZodRecord<z.ZodString, z.ZodString>;
476
+ implemented: z.ZodOptional<z.ZodBoolean>;
477
+ }, z.core.$strip>>;
478
+ meta: z.ZodObject<{
479
+ totalCount: z.ZodOptional<z.ZodNumber>;
480
+ nextCursor: z.ZodOptional<z.ZodString>;
481
+ }, z.core.$strip>;
482
+ }, z.core.$strip>;
483
+ } & {
484
+ paramsSchema: undefined;
485
+ }>, "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema"> & {
127
486
  bodySchema: import("@emeryld/rrroutes-contract").RouteSchema<unknown, unknown> | undefined;
128
487
  querySchema: import("@emeryld/rrroutes-contract").RouteSchema<{
129
488
  beforeDate?: string | undefined;
@@ -235,142 +594,434 @@ export declare const endpointLeaves: readonly [{
235
594
  totalCount?: number | undefined;
236
595
  nextCursor?: string | undefined;
237
596
  }>;
238
- }>;
239
- }, import("@emeryld/rrroutes-contract").LeafLowProfile<"get", "endpoints/:endpointId", {
240
- readonly description?: string | undefined;
241
- readonly tags?: string[] | undefined;
242
- readonly queryExtensionSchema: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> & import("@emeryld/rrroutes-contract").RouteSchema<unknown, unknown>;
243
- readonly outputMetaSchema: import("@emeryld/rrroutes-contract").RouteSchema<unknown, unknown>;
244
- readonly bodySchema: import("@emeryld/rrroutes-contract").RouteSchema<unknown, unknown> | undefined;
245
- readonly querySchema: undefined;
246
- readonly outputSchema: import("@emeryld/rrroutes-contract").RouteSchema<{
247
- out: {
248
- id: string;
249
- name: string;
250
- createdAt: number;
251
- updatedAt: number;
252
- method: "get" | "post" | "put" | "patch" | "delete";
253
- path: string;
254
- contract: {
255
- body?: SerializableSchema | undefined;
256
- query?: SerializableSchema | undefined;
257
- output?: SerializableSchema | undefined;
258
- params?: SerializableSchema | undefined;
259
- bodyFiles?: {
260
- name: string;
261
- maxCount: number;
262
- }[] | undefined;
263
- };
264
- stability: "deprecated" | "experimental" | "beta" | "stable";
265
- meta: Record<string, string>;
266
- requests: {
597
+ queryExtensionSchema: import("@emeryld/rrroutes-contract").RouteSchema<{
598
+ cursor?: string | undefined;
599
+ pageSize?: number | undefined;
600
+ }, {
601
+ cursor?: string | undefined;
602
+ pageSize?: unknown;
603
+ }>;
604
+ }>>>;
605
+ }, {
606
+ readonly method: "get";
607
+ readonly path: "endpoints/:endpointId";
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
+ 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
+ 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>>;
611
+ }> 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 ? {
612
+ feed: true;
613
+ } : {
614
+ feed?: boolean;
615
+ }) & import("@emeryld/rrroutes-contract").FeedQueryField<WithDefaults> & import("@emeryld/rrroutes-contract").OutputField<WithDefaults> & (WithDefaults["paramsSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? {
616
+ paramsSchema: WithDefaults["paramsSchema"];
617
+ } : {
618
+ paramsSchema: z.ZodObject<{
619
+ endpointId: z.ZodString;
620
+ }, z.core.$strip>;
621
+ }) : (WithDefaults["feed"] extends true ? {
622
+ feed: true;
623
+ } : {
624
+ feed?: boolean;
625
+ }) & (WithDefaults["querySchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? {
626
+ querySchema: WithDefaults["querySchema"];
627
+ } : {
628
+ querySchema?: undefined;
629
+ }) & import("@emeryld/rrroutes-contract").OutputField<WithDefaults> & (WithDefaults["paramsSchema"] extends z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> ? {
630
+ paramsSchema: WithDefaults["paramsSchema"];
631
+ } : {
632
+ paramsSchema: z.ZodObject<{
633
+ endpointId: z.ZodString;
634
+ }, z.core.$strip>;
635
+ }))> : 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<{
636
+ outputSchema: z.ZodObject<{
637
+ id: z.ZodString;
638
+ name: z.ZodString;
639
+ description: z.ZodOptional<z.ZodString>;
640
+ groupId: z.ZodOptional<z.ZodString>;
641
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
642
+ createdAt: z.ZodNumber;
643
+ updatedAt: z.ZodNumber;
644
+ method: z.ZodEnum<{
645
+ get: "get";
646
+ post: "post";
647
+ put: "put";
648
+ patch: "patch";
649
+ delete: "delete";
650
+ }>;
651
+ path: z.ZodString;
652
+ contract: z.ZodObject<{
653
+ body: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
654
+ query: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
655
+ output: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
656
+ params: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
657
+ bodyFiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
658
+ name: z.ZodString;
659
+ maxCount: z.ZodNumber;
660
+ }, z.core.$strip>>>;
661
+ }, z.core.$strip>;
662
+ feed: z.ZodOptional<z.ZodBoolean>;
663
+ summary: z.ZodOptional<z.ZodString>;
664
+ stability: z.ZodEnum<{
665
+ deprecated: "deprecated";
666
+ experimental: "experimental";
667
+ beta: "beta";
668
+ stable: "stable";
669
+ }>;
670
+ hidden: z.ZodOptional<z.ZodBoolean>;
671
+ meta: z.ZodRecord<z.ZodString, z.ZodString>;
672
+ implemented: z.ZodOptional<z.ZodBoolean>;
673
+ requests: z.ZodArray<z.ZodObject<{
674
+ id: z.ZodString;
675
+ name: z.ZodString;
676
+ description: z.ZodOptional<z.ZodString>;
677
+ groupId: z.ZodOptional<z.ZodString>;
678
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
679
+ createdAt: z.ZodNumber;
680
+ updatedAt: z.ZodNumber;
681
+ status: z.ZodNumber;
682
+ body: z.ZodOptional<z.ZodAny>;
683
+ fullUrl: z.ZodString;
684
+ path: z.ZodString;
685
+ method: z.ZodEnum<{
686
+ get: "get";
687
+ post: "post";
688
+ put: "put";
689
+ patch: "patch";
690
+ delete: "delete";
691
+ }>;
692
+ query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
693
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
694
+ output: z.ZodOptional<z.ZodAny>;
695
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
696
+ error: z.ZodOptional<z.ZodString>;
697
+ durationMs: z.ZodNumber;
698
+ ip: z.ZodOptional<z.ZodString>;
699
+ userAgent: z.ZodOptional<z.ZodString>;
700
+ }, z.core.$strip>>;
701
+ volumeTS: z.ZodArray<z.ZodObject<{
702
+ timestamp: z.ZodNumber;
703
+ count: z.ZodNumber;
704
+ }, z.core.$strip>>;
705
+ averageDurationMs: z.ZodNumber;
706
+ successRate: z.ZodNumber;
707
+ latestErrors: z.ZodOptional<z.ZodArray<z.ZodObject<{
708
+ id: z.ZodString;
709
+ name: z.ZodString;
710
+ description: z.ZodOptional<z.ZodString>;
711
+ groupId: z.ZodOptional<z.ZodString>;
712
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
713
+ createdAt: z.ZodNumber;
714
+ updatedAt: z.ZodNumber;
715
+ status: z.ZodNumber;
716
+ body: z.ZodOptional<z.ZodAny>;
717
+ fullUrl: z.ZodString;
718
+ path: z.ZodString;
719
+ method: z.ZodEnum<{
720
+ get: "get";
721
+ post: "post";
722
+ put: "put";
723
+ patch: "patch";
724
+ delete: "delete";
725
+ }>;
726
+ query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
727
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
728
+ output: z.ZodOptional<z.ZodAny>;
729
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
730
+ error: z.ZodOptional<z.ZodString>;
731
+ durationMs: z.ZodNumber;
732
+ ip: z.ZodOptional<z.ZodString>;
733
+ userAgent: z.ZodOptional<z.ZodString>;
734
+ }, z.core.$strip>>>;
735
+ }, z.core.$strip>;
736
+ }, "queryExtensionSchema" | "outputMetaSchema"> & {
737
+ queryExtensionSchema: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
738
+ outputMetaSchema: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
739
+ }>, "querySchema" | "outputSchema" | "feed">> & {
740
+ feed?: boolean;
741
+ } & {
742
+ querySchema?: undefined;
743
+ } & {
744
+ outputSchema: z.ZodObject<{
745
+ out: z.ZodObject<{
746
+ id: z.ZodString;
747
+ name: z.ZodString;
748
+ description: z.ZodOptional<z.ZodString>;
749
+ groupId: z.ZodOptional<z.ZodString>;
750
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
751
+ createdAt: z.ZodNumber;
752
+ updatedAt: z.ZodNumber;
753
+ method: z.ZodEnum<{
754
+ get: "get";
755
+ post: "post";
756
+ put: "put";
757
+ patch: "patch";
758
+ delete: "delete";
759
+ }>;
760
+ path: z.ZodString;
761
+ contract: z.ZodObject<{
762
+ body: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
763
+ query: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
764
+ output: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
765
+ params: z.ZodOptional<z.ZodType<SerializableSchema, SerializableSchema, z.core.$ZodTypeInternals<SerializableSchema, SerializableSchema>>>;
766
+ bodyFiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
767
+ name: z.ZodString;
768
+ maxCount: z.ZodNumber;
769
+ }, z.core.$strip>>>;
770
+ }, z.core.$strip>;
771
+ feed: z.ZodOptional<z.ZodBoolean>;
772
+ summary: z.ZodOptional<z.ZodString>;
773
+ stability: z.ZodEnum<{
774
+ deprecated: "deprecated";
775
+ experimental: "experimental";
776
+ beta: "beta";
777
+ stable: "stable";
778
+ }>;
779
+ hidden: z.ZodOptional<z.ZodBoolean>;
780
+ meta: z.ZodRecord<z.ZodString, z.ZodString>;
781
+ implemented: z.ZodOptional<z.ZodBoolean>;
782
+ requests: z.ZodArray<z.ZodObject<{
783
+ id: z.ZodString;
784
+ name: z.ZodString;
785
+ description: z.ZodOptional<z.ZodString>;
786
+ groupId: z.ZodOptional<z.ZodString>;
787
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
788
+ createdAt: z.ZodNumber;
789
+ updatedAt: z.ZodNumber;
790
+ status: z.ZodNumber;
791
+ body: z.ZodOptional<z.ZodAny>;
792
+ fullUrl: z.ZodString;
793
+ path: z.ZodString;
794
+ method: z.ZodEnum<{
795
+ get: "get";
796
+ post: "post";
797
+ put: "put";
798
+ patch: "patch";
799
+ delete: "delete";
800
+ }>;
801
+ query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
802
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
803
+ output: z.ZodOptional<z.ZodAny>;
804
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
805
+ error: z.ZodOptional<z.ZodString>;
806
+ durationMs: z.ZodNumber;
807
+ ip: z.ZodOptional<z.ZodString>;
808
+ userAgent: z.ZodOptional<z.ZodString>;
809
+ }, z.core.$strip>>;
810
+ volumeTS: z.ZodArray<z.ZodObject<{
811
+ timestamp: z.ZodNumber;
812
+ count: z.ZodNumber;
813
+ }, z.core.$strip>>;
814
+ averageDurationMs: z.ZodNumber;
815
+ successRate: z.ZodNumber;
816
+ latestErrors: z.ZodOptional<z.ZodArray<z.ZodObject<{
817
+ id: z.ZodString;
818
+ name: z.ZodString;
819
+ description: z.ZodOptional<z.ZodString>;
820
+ groupId: z.ZodOptional<z.ZodString>;
821
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
822
+ createdAt: z.ZodNumber;
823
+ updatedAt: z.ZodNumber;
824
+ status: z.ZodNumber;
825
+ body: z.ZodOptional<z.ZodAny>;
826
+ fullUrl: z.ZodString;
827
+ path: z.ZodString;
828
+ method: z.ZodEnum<{
829
+ get: "get";
830
+ post: "post";
831
+ put: "put";
832
+ patch: "patch";
833
+ delete: "delete";
834
+ }>;
835
+ query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
836
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
837
+ output: z.ZodOptional<z.ZodAny>;
838
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
839
+ error: z.ZodOptional<z.ZodString>;
840
+ durationMs: z.ZodNumber;
841
+ ip: z.ZodOptional<z.ZodString>;
842
+ userAgent: z.ZodOptional<z.ZodString>;
843
+ }, z.core.$strip>>>;
844
+ }, z.core.$strip>;
845
+ meta: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
846
+ }, z.core.$strip>;
847
+ } & {
848
+ paramsSchema: z.ZodObject<{
849
+ endpointId: z.ZodString;
850
+ }, z.core.$strip>;
851
+ }>, "outputMetaSchema" | "bodySchema" | "querySchema" | "paramsSchema" | "outputSchema"> & {
852
+ bodySchema: import("@emeryld/rrroutes-contract").RouteSchema<unknown, unknown> | undefined;
853
+ querySchema: undefined;
854
+ paramsSchema: import("@emeryld/rrroutes-contract").RouteSchema<{
855
+ endpointId: string;
856
+ }, {
857
+ endpointId: string;
858
+ }>;
859
+ outputSchema: import("@emeryld/rrroutes-contract").RouteSchema<{
860
+ out: {
267
861
  id: string;
268
862
  name: string;
269
863
  createdAt: number;
270
864
  updatedAt: number;
271
- status: number;
272
- fullUrl: string;
273
- path: string;
274
865
  method: "get" | "post" | "put" | "patch" | "delete";
275
- durationMs: number;
866
+ path: string;
867
+ contract: {
868
+ body?: SerializableSchema | undefined;
869
+ query?: SerializableSchema | undefined;
870
+ output?: SerializableSchema | undefined;
871
+ params?: SerializableSchema | undefined;
872
+ bodyFiles?: {
873
+ name: string;
874
+ maxCount: number;
875
+ }[] | undefined;
876
+ };
877
+ stability: "deprecated" | "experimental" | "beta" | "stable";
878
+ meta: Record<string, string>;
879
+ requests: {
880
+ id: string;
881
+ name: string;
882
+ createdAt: number;
883
+ updatedAt: number;
884
+ status: number;
885
+ fullUrl: string;
886
+ path: string;
887
+ method: "get" | "post" | "put" | "patch" | "delete";
888
+ durationMs: number;
889
+ description?: string | undefined;
890
+ groupId?: string | undefined;
891
+ tags?: string[] | undefined;
892
+ body?: any;
893
+ query?: Record<string, any> | undefined;
894
+ params?: Record<string, any> | undefined;
895
+ output?: any;
896
+ headers?: Record<string, any> | undefined;
897
+ error?: string | undefined;
898
+ ip?: string | undefined;
899
+ userAgent?: string | undefined;
900
+ }[];
901
+ volumeTS: {
902
+ timestamp: number;
903
+ count: number;
904
+ }[];
905
+ averageDurationMs: number;
906
+ successRate: number;
276
907
  description?: string | undefined;
277
908
  groupId?: string | undefined;
278
909
  tags?: string[] | undefined;
279
- body?: any;
280
- query?: Record<string, any> | undefined;
281
- params?: Record<string, any> | undefined;
282
- output?: any;
283
- headers?: Record<string, any> | undefined;
284
- error?: string | undefined;
285
- ip?: string | undefined;
286
- userAgent?: string | undefined;
287
- }[];
288
- volumeTS: {
289
- timestamp: number;
290
- count: number;
291
- }[];
292
- averageDurationMs: number;
293
- successRate: number;
294
- latestErrorRequestIds: string[];
295
- description?: string | undefined;
296
- groupId?: string | undefined;
297
- tags?: string[] | undefined;
298
- feed?: boolean | undefined;
299
- summary?: string | undefined;
300
- hidden?: boolean | undefined;
301
- implemented?: boolean | undefined;
302
- };
303
- meta: unknown;
304
- }, {
305
- out: {
306
- id: string;
307
- name: string;
308
- createdAt: number;
309
- updatedAt: number;
310
- method: "get" | "post" | "put" | "patch" | "delete";
311
- path: string;
312
- contract: {
313
- body?: SerializableSchema | undefined;
314
- query?: SerializableSchema | undefined;
315
- output?: SerializableSchema | undefined;
316
- params?: SerializableSchema | undefined;
317
- bodyFiles?: {
910
+ feed?: boolean | undefined;
911
+ summary?: string | undefined;
912
+ hidden?: boolean | undefined;
913
+ implemented?: boolean | undefined;
914
+ latestErrors?: {
915
+ id: string;
318
916
  name: string;
319
- maxCount: number;
917
+ createdAt: number;
918
+ updatedAt: number;
919
+ status: number;
920
+ fullUrl: string;
921
+ path: string;
922
+ method: "get" | "post" | "put" | "patch" | "delete";
923
+ durationMs: number;
924
+ description?: string | undefined;
925
+ groupId?: string | undefined;
926
+ tags?: string[] | undefined;
927
+ body?: any;
928
+ query?: Record<string, any> | undefined;
929
+ params?: Record<string, any> | undefined;
930
+ output?: any;
931
+ headers?: Record<string, any> | undefined;
932
+ error?: string | undefined;
933
+ ip?: string | undefined;
934
+ userAgent?: string | undefined;
320
935
  }[] | undefined;
321
936
  };
322
- stability: "deprecated" | "experimental" | "beta" | "stable";
323
- meta: Record<string, string>;
324
- requests: {
937
+ meta: unknown;
938
+ }, {
939
+ out: {
325
940
  id: string;
326
941
  name: string;
327
942
  createdAt: number;
328
943
  updatedAt: number;
329
- status: number;
330
- fullUrl: string;
331
- path: string;
332
944
  method: "get" | "post" | "put" | "patch" | "delete";
333
- durationMs: number;
945
+ path: string;
946
+ contract: {
947
+ body?: SerializableSchema | undefined;
948
+ query?: SerializableSchema | undefined;
949
+ output?: SerializableSchema | undefined;
950
+ params?: SerializableSchema | undefined;
951
+ bodyFiles?: {
952
+ name: string;
953
+ maxCount: number;
954
+ }[] | undefined;
955
+ };
956
+ stability: "deprecated" | "experimental" | "beta" | "stable";
957
+ meta: Record<string, string>;
958
+ requests: {
959
+ id: string;
960
+ name: string;
961
+ createdAt: number;
962
+ updatedAt: number;
963
+ status: number;
964
+ fullUrl: string;
965
+ path: string;
966
+ method: "get" | "post" | "put" | "patch" | "delete";
967
+ durationMs: number;
968
+ description?: string | undefined;
969
+ groupId?: string | undefined;
970
+ tags?: string[] | undefined;
971
+ body?: any;
972
+ query?: Record<string, any> | undefined;
973
+ params?: Record<string, any> | undefined;
974
+ output?: any;
975
+ headers?: Record<string, any> | undefined;
976
+ error?: string | undefined;
977
+ ip?: string | undefined;
978
+ userAgent?: string | undefined;
979
+ }[];
980
+ volumeTS: {
981
+ timestamp: number;
982
+ count: number;
983
+ }[];
984
+ averageDurationMs: number;
985
+ successRate: number;
334
986
  description?: string | undefined;
335
987
  groupId?: string | undefined;
336
988
  tags?: string[] | undefined;
337
- body?: any;
338
- query?: Record<string, any> | undefined;
339
- params?: Record<string, any> | undefined;
340
- output?: any;
341
- headers?: Record<string, any> | undefined;
342
- error?: string | undefined;
343
- ip?: string | undefined;
344
- userAgent?: string | undefined;
345
- }[];
346
- volumeTS: {
347
- timestamp: number;
348
- count: number;
349
- }[];
350
- averageDurationMs: number;
351
- successRate: number;
352
- latestErrorRequestIds: string[];
353
- description?: string | undefined;
354
- groupId?: string | undefined;
355
- tags?: string[] | undefined;
356
- feed?: boolean | undefined;
357
- summary?: string | undefined;
358
- hidden?: boolean | undefined;
359
- implemented?: boolean | undefined;
360
- };
361
- meta: unknown;
362
- }>;
363
- readonly bodyFiles?: import("@emeryld/rrroutes-contract").FileField[] | undefined;
364
- readonly feed?: boolean | undefined;
365
- readonly summary?: string | undefined;
366
- readonly docsGroup?: string | undefined;
367
- readonly deprecated?: boolean | undefined;
368
- readonly stability?: "experimental" | "beta" | "stable" | "deprecated" | undefined;
369
- readonly docsHidden?: boolean | undefined;
370
- readonly docsMeta?: Record<string, unknown> | undefined;
371
- paramsSchema: import("@emeryld/rrroutes-contract").RouteSchema<{
372
- endpointId: string;
373
- }, {
374
- endpointId: string;
375
- }>;
376
- }>];
989
+ feed?: boolean | undefined;
990
+ summary?: string | undefined;
991
+ hidden?: boolean | undefined;
992
+ implemented?: boolean | undefined;
993
+ latestErrors?: {
994
+ id: string;
995
+ name: string;
996
+ createdAt: number;
997
+ updatedAt: number;
998
+ status: number;
999
+ fullUrl: string;
1000
+ path: string;
1001
+ method: "get" | "post" | "put" | "patch" | "delete";
1002
+ durationMs: number;
1003
+ description?: string | undefined;
1004
+ groupId?: string | undefined;
1005
+ tags?: string[] | undefined;
1006
+ body?: any;
1007
+ query?: Record<string, any> | undefined;
1008
+ params?: Record<string, any> | undefined;
1009
+ output?: any;
1010
+ headers?: Record<string, any> | undefined;
1011
+ error?: string | undefined;
1012
+ ip?: string | undefined;
1013
+ userAgent?: string | undefined;
1014
+ }[] | undefined;
1015
+ };
1016
+ meta: unknown;
1017
+ }>;
1018
+ outputMetaSchema: import("@emeryld/rrroutes-contract").RouteSchema<unknown, unknown>;
1019
+ queryExtensionSchema: import("@emeryld/rrroutes-contract").RouteSchema<unknown, unknown>;
1020
+ }>>>, "paramsSchema"> & {
1021
+ paramsSchema: import("@emeryld/rrroutes-contract").RouteSchema<{
1022
+ endpointId: string;
1023
+ }, {
1024
+ endpointId: string;
1025
+ }>;
1026
+ }>>;
1027
+ }];