@emeryld/rrroutes-openapi 2.5.16 → 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.
@@ -45,6 +45,7 @@ export declare const cacheTraceSchema: z.ZodObject<{
45
45
  size: z.ZodOptional<z.ZodNumber>;
46
46
  durationMs: z.ZodOptional<z.ZodNumber>;
47
47
  groupId: z.ZodOptional<z.ZodString>;
48
+ ttlMs: z.ZodOptional<z.ZodNumber>;
48
49
  type: z.ZodOptional<z.ZodString>;
49
50
  }, z.core.$strip>;
50
51
  export type CacheTraceType = z.infer<typeof cacheTraceSchema>;
@@ -76,7 +77,7 @@ export declare const cacheTraceQuerySchema: z.ZodObject<{
76
77
  set: "set";
77
78
  }>>>;
78
79
  }, z.core.$strip>;
79
- export type CacheTraceQuery = z.infer<typeof cacheTraceQuerySchema>;
80
+ export type CacheTraceQuery = z.infer<typeof cacheTraceQuerySchema> & z.infer<typeof paginationSchema>;
80
81
  export declare const cacheLeaves: readonly [{
81
82
  readonly method: "get";
82
83
  readonly path: "cache";
@@ -478,6 +479,7 @@ export declare const cacheLeaves: readonly [{
478
479
  size: z.ZodOptional<z.ZodNumber>;
479
480
  durationMs: z.ZodOptional<z.ZodNumber>;
480
481
  groupId: z.ZodOptional<z.ZodString>;
482
+ ttlMs: z.ZodOptional<z.ZodNumber>;
481
483
  type: z.ZodOptional<z.ZodString>;
482
484
  }, z.core.$strip>>;
483
485
  querySchema: z.ZodObject<{
@@ -542,6 +544,7 @@ export declare const cacheLeaves: readonly [{
542
544
  size: z.ZodOptional<z.ZodNumber>;
543
545
  durationMs: z.ZodOptional<z.ZodNumber>;
544
546
  groupId: z.ZodOptional<z.ZodString>;
547
+ ttlMs: z.ZodOptional<z.ZodNumber>;
545
548
  type: z.ZodOptional<z.ZodString>;
546
549
  }, z.core.$strip>>;
547
550
  querySchema: z.ZodObject<{
@@ -604,6 +607,7 @@ export declare const cacheLeaves: readonly [{
604
607
  size: z.ZodOptional<z.ZodNumber>;
605
608
  durationMs: z.ZodOptional<z.ZodNumber>;
606
609
  groupId: z.ZodOptional<z.ZodString>;
610
+ ttlMs: z.ZodOptional<z.ZodNumber>;
607
611
  type: z.ZodOptional<z.ZodString>;
608
612
  }, z.core.$strip>>;
609
613
  meta: z.ZodObject<{
@@ -660,6 +664,7 @@ export declare const cacheLeaves: readonly [{
660
664
  size?: number | undefined;
661
665
  durationMs?: number | undefined;
662
666
  groupId?: string | undefined;
667
+ ttlMs?: number | undefined;
663
668
  type?: string | undefined;
664
669
  }[];
665
670
  meta: {
@@ -675,6 +680,7 @@ export declare const cacheLeaves: readonly [{
675
680
  size?: number | undefined;
676
681
  durationMs?: number | undefined;
677
682
  groupId?: string | undefined;
683
+ ttlMs?: number | undefined;
678
684
  type?: string | undefined;
679
685
  }[];
680
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emeryld/rrroutes-openapi",
3
- "version": "2.5.16",
3
+ "version": "2.5.17",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",