@emeryld/rrroutes-openapi 2.5.7 → 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.
Files changed (101) hide show
  1. package/README.md +6 -0
  2. package/dist/docs/LeafDocsPage.d.ts +17 -1
  3. package/dist/index.cjs +98 -49
  4. package/dist/index.cjs.map +1 -1
  5. package/dist/index.d.ts +14 -26
  6. package/dist/index.mjs +97 -48
  7. package/dist/index.mjs.map +1 -1
  8. package/dist/public/assets/docs.js +120 -115
  9. package/dist/web/app.d.ts +4 -1
  10. package/dist/web/v2/AppShell.d.ts +3 -1
  11. package/dist/web/v2/components/endpoints/EndpointPlayground.d.ts +1 -3
  12. package/dist/web/v2/components/endpoints/KeyValueEditor.d.ts +2 -1
  13. package/dist/web/v2/components/endpoints/PlaygroundEditor.d.ts +1 -2
  14. package/dist/web/v2/components/feeds/FeedPagination.d.ts +1 -2
  15. package/dist/web/v2/components/history/RequestDetailContent.d.ts +2 -18
  16. package/dist/web/v2/components/inputs/JsonInputWithTools.d.ts +3 -1
  17. package/dist/web/v2/components/json/JsonTree.d.ts +11 -0
  18. package/dist/web/v2/components/json/JsonTreeRow.d.ts +14 -0
  19. package/dist/web/v2/components/json/JsonViewer.d.ts +13 -1
  20. package/dist/web/v2/components/json/jsonViewerUtils.d.ts +3 -0
  21. package/dist/web/v2/components/{playgroundOverlay/PlaygroundOverlayLayout.d.ts → layout/OverlayLayout.d.ts} +3 -3
  22. package/dist/web/v2/components/logs/cache/common/CacheSummaryStat.d.ts +7 -0
  23. package/dist/web/v2/components/logs/cache/common/CacheTraceDialog.d.ts +8 -0
  24. package/dist/web/v2/components/logs/cache/common/CacheValueDialog.d.ts +8 -0
  25. package/dist/web/v2/components/logs/cache/common/DetailField.d.ts +7 -0
  26. package/dist/web/v2/components/logs/cache/common/MutedText.d.ts +4 -0
  27. package/dist/web/v2/components/logs/cache/insights/CacheInsights.d.ts +10 -0
  28. package/dist/web/v2/components/logs/cache/insights/CacheInsightsKeySection.d.ts +7 -0
  29. package/dist/web/v2/components/logs/cache/insights/CacheInsightsKpiRow.d.ts +8 -0
  30. package/dist/web/v2/components/logs/cache/insights/CacheInsightsOverview.d.ts +8 -0
  31. package/dist/web/v2/components/logs/cache/insights/CacheInsightsTagSection.d.ts +7 -0
  32. package/dist/web/v2/components/logs/cache/insights/CacheProblemPanels.d.ts +7 -0
  33. package/dist/web/v2/components/logs/cache/insights/CacheTagInsights.d.ts +20 -0
  34. package/dist/web/v2/components/logs/cache/key-detail/CacheKeyDetailActions.d.ts +12 -0
  35. package/dist/web/v2/components/logs/cache/key-detail/CacheKeyDetailLogsTab.d.ts +3 -0
  36. package/dist/web/v2/components/logs/cache/{CacheKeyDetailModal.d.ts → key-detail/CacheKeyDetailModal.d.ts} +7 -2
  37. package/dist/web/v2/components/logs/cache/key-detail/CacheKeyDetailSummary.d.ts +17 -0
  38. package/dist/web/v2/components/logs/cache/key-detail/CacheKeyDetailTimelineTab.d.ts +7 -0
  39. package/dist/web/v2/components/logs/cache/key-detail/CacheKeyDetailTracesTab.d.ts +3 -0
  40. package/dist/web/v2/components/logs/cache/logs/CacheDataCard.d.ts +30 -0
  41. package/dist/web/v2/components/logs/cache/logs/CacheFiltersCard.d.ts +15 -0
  42. package/dist/web/v2/components/logs/cache/logs/CacheLogsTable.d.ts +7 -0
  43. package/dist/web/v2/components/logs/cache/{CacheSummaryTable.d.ts → logs/CacheSummaryTable.d.ts} +1 -1
  44. package/dist/web/v2/components/logs/cache/modals/CacheTagDetailModal.d.ts +11 -0
  45. package/dist/web/v2/components/performance/PerformanceMonitor.d.ts +207 -0
  46. package/dist/web/v2/components/presets/PresetForm.d.ts +2 -1
  47. package/dist/web/v2/components/presets/PresetOperationsTabsEditor.d.ts +17 -0
  48. package/dist/web/v2/components/presets/PresetsCsvActions.d.ts +7 -0
  49. package/dist/web/v2/components/presets/presetOperationAdapters.d.ts +11 -0
  50. package/dist/web/v2/components/presets/presetOperationRun.d.ts +35 -0
  51. package/dist/web/v2/components/presets/presetOperationUtils.d.ts +2 -0
  52. package/dist/web/v2/components/primitives/HoverRow.d.ts +6 -0
  53. package/dist/web/v2/components/primitives/InlineActionButton.d.ts +7 -0
  54. package/dist/web/v2/components/primitives/SurfaceActionArea.d.ts +8 -0
  55. package/dist/web/v2/components/request/LastRunPanel.d.ts +17 -0
  56. package/dist/web/v2/components/request/RequestInputsEditor.d.ts +38 -0
  57. package/dist/web/v2/components/request/RequestUrlSelector.d.ts +15 -0
  58. package/dist/web/v2/components/requests/timeline/RequestTimeline.d.ts +13 -0
  59. package/dist/web/v2/components/requests/timeline/RequestTimelineEventMiniCard.d.ts +13 -0
  60. package/dist/web/v2/components/requests/timeline/RequestTimelineFilters.d.ts +20 -0
  61. package/dist/web/v2/components/requests/timeline/RequestTimelineRow.d.ts +15 -0
  62. package/dist/web/v2/components/requests/timeline/types.d.ts +19 -0
  63. package/dist/web/v2/components/tabs/StickyIconTabs.d.ts +17 -0
  64. package/dist/web/v2/components/tags/DurationChip.d.ts +16 -0
  65. package/dist/web/v2/components/tags/LogLevelChip.d.ts +1 -2
  66. package/dist/web/v2/hooks/useCacheTrace.d.ts +21 -0
  67. package/dist/web/v2/registries/logLevelRegistry.d.ts +27 -0
  68. package/dist/web/v2/stores/playgroundStore.d.ts +3 -9
  69. package/dist/web/v2/theme.d.ts +21 -0
  70. package/dist/web/v2/types/types.cacheLog.d.ts +271 -32
  71. package/dist/web/v2/types/types.d.ts +3 -1
  72. package/dist/web/v2/types/types.endpoint.d.ts +20 -0
  73. package/dist/web/v2/types/types.kvRow.d.ts +8 -0
  74. package/dist/web/v2/types/types.log.d.ts +25 -78
  75. package/dist/web/v2/types/types.requestLog.d.ts +40 -44
  76. package/dist/web/v2/types/types.scheduling.d.ts +423 -0
  77. package/dist/web/v2/utils/cache/cacheInsightsMappers.d.ts +6 -0
  78. package/dist/web/v2/utils/cache/cacheInsightsMetrics.d.ts +24 -0
  79. package/dist/web/v2/utils/cache/cacheTraceInsights.d.ts +35 -0
  80. package/dist/web/v2/utils/cacheFormat.d.ts +7 -0
  81. package/dist/web/v2/utils/cacheUtils.d.ts +2 -0
  82. package/dist/web/v2/utils/colorScale.d.ts +14 -0
  83. package/dist/web/v2/utils/downloadTextFile.d.ts +1 -0
  84. package/dist/web/v2/utils/kvRow.d.ts +4 -4
  85. package/dist/web/v2/utils/kvRowAdapters.d.ts +14 -0
  86. package/dist/web/v2/utils/presetCsv.d.ts +22 -0
  87. package/dist/web/v2/utils/presetsCsv.d.ts +6 -0
  88. package/dist/web/v2/utils/sizeFormat.d.ts +2 -0
  89. package/package.json +3 -3
  90. package/dist/web/v2/components/endpoints/PlaygroundRunPanel.d.ts +0 -12
  91. package/dist/web/v2/components/endpoints/PlaygroundTopTabs.d.ts +0 -11
  92. package/dist/web/v2/components/history/RequestTimeline.d.ts +0 -10
  93. package/dist/web/v2/components/logs/cache/CacheInsightsKeySection.d.ts +0 -6
  94. package/dist/web/v2/components/logs/cache/CacheInsightsOverview.d.ts +0 -6
  95. package/dist/web/v2/components/logs/cache/CacheInsightsTagSection.d.ts +0 -6
  96. package/dist/web/v2/components/logs/cache/CacheLogsTable.d.ts +0 -6
  97. package/dist/web/v2/components/logs/cache/CacheTagInsights.d.ts +0 -43
  98. package/dist/web/v2/components/logs/cache/CacheValueDialog.d.ts +0 -7
  99. package/dist/web/v2/components/presets/PresetOperationsEditor.d.ts +0 -7
  100. /package/dist/web/v2/components/{playgroundOverlay → layout}/useMeasuredElement.d.ts +0 -0
  101. /package/dist/web/v2/components/logs/cache/{CacheLogsSection.d.ts → logs/CacheLogsSection.d.ts} +0 -0
@@ -1,7 +1,5 @@
1
1
  import z from 'zod';
2
2
  import { paginationSchema } from './types.base';
3
- export declare const LOG_LEVELS: readonly ["info", "warning", "error", "debug", "trace"];
4
- export type LogLevel = (typeof LOG_LEVELS)[number];
5
3
  export declare const logSchema: z.ZodObject<{
6
4
  id: z.ZodString;
7
5
  name: z.ZodString;
@@ -10,13 +8,7 @@ export declare const logSchema: z.ZodObject<{
10
8
  tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
11
9
  createdAt: z.ZodNumber;
12
10
  updatedAt: z.ZodNumber;
13
- level: z.ZodEnum<{
14
- error: "error";
15
- info: "info";
16
- warning: "warning";
17
- debug: "debug";
18
- trace: "trace";
19
- }>;
11
+ level: z.ZodString;
20
12
  meta: z.ZodOptional<z.ZodAny>;
21
13
  }, z.core.$strip>;
22
14
  export type LogType = z.infer<typeof logSchema>;
@@ -38,20 +30,8 @@ export declare const logQuerySchema: z.ZodObject<{
38
30
  groupsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
39
31
  tagsInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
40
32
  tagsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
41
- levelsInclude: z.ZodOptional<z.ZodArray<z.ZodEnum<{
42
- error: "error";
43
- info: "info";
44
- warning: "warning";
45
- debug: "debug";
46
- trace: "trace";
47
- }>>>;
48
- levelsExclude: z.ZodOptional<z.ZodArray<z.ZodEnum<{
49
- error: "error";
50
- info: "info";
51
- warning: "warning";
52
- debug: "debug";
53
- trace: "trace";
54
- }>>>;
33
+ levelsInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
34
+ levelsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
55
35
  }, z.core.$strip>;
56
36
  export type ApplicationLogsFilter = z.infer<typeof logQuerySchema> & z.infer<typeof paginationSchema>;
57
37
  export declare const logLeaves: readonly [{
@@ -90,13 +70,7 @@ export declare const logLeaves: readonly [{
90
70
  tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
91
71
  createdAt: z.ZodNumber;
92
72
  updatedAt: z.ZodNumber;
93
- level: z.ZodEnum<{
94
- error: "error";
95
- info: "info";
96
- warning: "warning";
97
- debug: "debug";
98
- trace: "trace";
99
- }>;
73
+ level: z.ZodString;
100
74
  meta: z.ZodOptional<z.ZodAny>;
101
75
  }, z.core.$strip>>;
102
76
  querySchema: z.ZodObject<{
@@ -117,24 +91,13 @@ export declare const logLeaves: readonly [{
117
91
  groupsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
118
92
  tagsInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
119
93
  tagsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
120
- levelsInclude: z.ZodOptional<z.ZodArray<z.ZodEnum<{
121
- error: "error";
122
- info: "info";
123
- warning: "warning";
124
- debug: "debug";
125
- trace: "trace";
126
- }>>>;
127
- levelsExclude: z.ZodOptional<z.ZodArray<z.ZodEnum<{
128
- error: "error";
129
- info: "info";
130
- warning: "warning";
131
- debug: "debug";
132
- trace: "trace";
133
- }>>>;
94
+ levelsInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
95
+ levelsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
134
96
  }, z.core.$strip>;
135
97
  outputMetaSchema: z.ZodObject<{
136
98
  totalCount: z.ZodOptional<z.ZodNumber>;
137
99
  nextCursor: z.ZodOptional<z.ZodString>;
100
+ levels: z.ZodOptional<z.ZodArray<z.ZodString>>;
138
101
  }, z.core.$strip>;
139
102
  queryExtensionSchema: z.ZodObject<{
140
103
  cursor: z.ZodOptional<z.ZodString>;
@@ -148,6 +111,7 @@ export declare const logLeaves: readonly [{
148
111
  outputMetaSchema: z.ZodObject<{
149
112
  totalCount: z.ZodOptional<z.ZodNumber>;
150
113
  nextCursor: z.ZodOptional<z.ZodString>;
114
+ levels: z.ZodOptional<z.ZodArray<z.ZodString>>;
151
115
  }, z.core.$strip>;
152
116
  }>, "querySchema" | "outputSchema" | "feed">> & {
153
117
  feed: true;
@@ -161,13 +125,7 @@ export declare const logLeaves: readonly [{
161
125
  tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
162
126
  createdAt: z.ZodNumber;
163
127
  updatedAt: z.ZodNumber;
164
- level: z.ZodEnum<{
165
- error: "error";
166
- info: "info";
167
- warning: "warning";
168
- debug: "debug";
169
- trace: "trace";
170
- }>;
128
+ level: z.ZodString;
171
129
  meta: z.ZodOptional<z.ZodAny>;
172
130
  }, z.core.$strip>>;
173
131
  querySchema: z.ZodObject<{
@@ -188,24 +146,13 @@ export declare const logLeaves: readonly [{
188
146
  groupsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
189
147
  tagsInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
190
148
  tagsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
191
- levelsInclude: z.ZodOptional<z.ZodArray<z.ZodEnum<{
192
- error: "error";
193
- info: "info";
194
- warning: "warning";
195
- debug: "debug";
196
- trace: "trace";
197
- }>>>;
198
- levelsExclude: z.ZodOptional<z.ZodArray<z.ZodEnum<{
199
- error: "error";
200
- info: "info";
201
- warning: "warning";
202
- debug: "debug";
203
- trace: "trace";
204
- }>>>;
149
+ levelsInclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
150
+ levelsExclude: z.ZodOptional<z.ZodArray<z.ZodString>>;
205
151
  }, z.core.$strip>;
206
152
  outputMetaSchema: z.ZodObject<{
207
153
  totalCount: z.ZodOptional<z.ZodNumber>;
208
154
  nextCursor: z.ZodOptional<z.ZodString>;
155
+ levels: z.ZodOptional<z.ZodArray<z.ZodString>>;
209
156
  }, z.core.$strip>;
210
157
  queryExtensionSchema: z.ZodObject<{
211
158
  cursor: z.ZodOptional<z.ZodString>;
@@ -219,6 +166,7 @@ export declare const logLeaves: readonly [{
219
166
  outputMetaSchema: z.ZodObject<{
220
167
  totalCount: z.ZodOptional<z.ZodNumber>;
221
168
  nextCursor: z.ZodOptional<z.ZodString>;
169
+ levels: z.ZodOptional<z.ZodArray<z.ZodString>>;
222
170
  }, z.core.$strip>;
223
171
  }>> & {
224
172
  outputSchema: z.ZodObject<{
@@ -230,18 +178,13 @@ export declare const logLeaves: readonly [{
230
178
  tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
231
179
  createdAt: z.ZodNumber;
232
180
  updatedAt: z.ZodNumber;
233
- level: z.ZodEnum<{
234
- error: "error";
235
- info: "info";
236
- warning: "warning";
237
- debug: "debug";
238
- trace: "trace";
239
- }>;
181
+ level: z.ZodString;
240
182
  meta: z.ZodOptional<z.ZodAny>;
241
183
  }, z.core.$strip>>;
242
184
  meta: z.ZodObject<{
243
185
  totalCount: z.ZodOptional<z.ZodNumber>;
244
186
  nextCursor: z.ZodOptional<z.ZodString>;
187
+ levels: z.ZodOptional<z.ZodArray<z.ZodString>>;
245
188
  }, z.core.$strip>;
246
189
  }, z.core.$strip>;
247
190
  } & {
@@ -258,8 +201,8 @@ export declare const logLeaves: readonly [{
258
201
  groupsExclude?: string[] | undefined;
259
202
  tagsInclude?: string[] | undefined;
260
203
  tagsExclude?: string[] | undefined;
261
- levelsInclude?: ("error" | "info" | "warning" | "debug" | "trace")[] | undefined;
262
- levelsExclude?: ("error" | "info" | "warning" | "debug" | "trace")[] | undefined;
204
+ levelsInclude?: string[] | undefined;
205
+ levelsExclude?: string[] | undefined;
263
206
  } & {
264
207
  cursor?: string | undefined;
265
208
  pageSize?: number | undefined;
@@ -273,8 +216,8 @@ export declare const logLeaves: readonly [{
273
216
  groupsExclude?: string[] | undefined;
274
217
  tagsInclude?: string[] | undefined;
275
218
  tagsExclude?: string[] | undefined;
276
- levelsInclude?: ("error" | "info" | "warning" | "debug" | "trace")[] | undefined;
277
- levelsExclude?: ("error" | "info" | "warning" | "debug" | "trace")[] | undefined;
219
+ levelsInclude?: string[] | undefined;
220
+ levelsExclude?: string[] | undefined;
278
221
  } & {
279
222
  cursor?: string | undefined;
280
223
  pageSize?: unknown;
@@ -286,7 +229,7 @@ export declare const logLeaves: readonly [{
286
229
  name: string;
287
230
  createdAt: number;
288
231
  updatedAt: number;
289
- level: "error" | "info" | "warning" | "debug" | "trace";
232
+ level: string;
290
233
  description?: string | undefined;
291
234
  groupId?: string | undefined;
292
235
  tags?: string[] | undefined;
@@ -295,6 +238,7 @@ export declare const logLeaves: readonly [{
295
238
  meta: {
296
239
  totalCount?: number | undefined;
297
240
  nextCursor?: string | undefined;
241
+ levels?: string[] | undefined;
298
242
  };
299
243
  }, {
300
244
  out: {
@@ -302,7 +246,7 @@ export declare const logLeaves: readonly [{
302
246
  name: string;
303
247
  createdAt: number;
304
248
  updatedAt: number;
305
- level: "error" | "info" | "warning" | "debug" | "trace";
249
+ level: string;
306
250
  description?: string | undefined;
307
251
  groupId?: string | undefined;
308
252
  tags?: string[] | undefined;
@@ -311,14 +255,17 @@ export declare const logLeaves: readonly [{
311
255
  meta: {
312
256
  totalCount?: number | undefined;
313
257
  nextCursor?: string | undefined;
258
+ levels?: string[] | undefined;
314
259
  };
315
260
  }>;
316
261
  outputMetaSchema: import("@emeryld/rrroutes-contract").RouteSchema<{
317
262
  totalCount?: number | undefined;
318
263
  nextCursor?: string | undefined;
264
+ levels?: string[] | undefined;
319
265
  }, {
320
266
  totalCount?: number | undefined;
321
267
  nextCursor?: string | undefined;
268
+ levels?: string[] | undefined;
322
269
  }>;
323
270
  queryExtensionSchema: import("@emeryld/rrroutes-contract").RouteSchema<{
324
271
  cursor?: string | undefined;
@@ -27,6 +27,8 @@ export declare const requestSchema: z.ZodObject<{
27
27
  durationMs: z.ZodNumber;
28
28
  ip: z.ZodOptional<z.ZodString>;
29
29
  userAgent: z.ZodOptional<z.ZodString>;
30
+ requestSize: z.ZodOptional<z.ZodNumber>;
31
+ responseSize: z.ZodOptional<z.ZodNumber>;
30
32
  }, z.core.$strip>;
31
33
  export type RequestLogType = z.infer<typeof requestSchema>;
32
34
  export declare const requestQuerySchema: z.ZodObject<{
@@ -123,6 +125,8 @@ export declare const requestLogLeaves: readonly [{
123
125
  durationMs: z.ZodNumber;
124
126
  ip: z.ZodOptional<z.ZodString>;
125
127
  userAgent: z.ZodOptional<z.ZodString>;
128
+ requestSize: z.ZodOptional<z.ZodNumber>;
129
+ responseSize: z.ZodOptional<z.ZodNumber>;
126
130
  }, z.core.$strip>>;
127
131
  querySchema: z.ZodObject<{
128
132
  beforeDate: z.ZodOptional<z.ZodString>;
@@ -210,6 +214,8 @@ export declare const requestLogLeaves: readonly [{
210
214
  durationMs: z.ZodNumber;
211
215
  ip: z.ZodOptional<z.ZodString>;
212
216
  userAgent: z.ZodOptional<z.ZodString>;
217
+ requestSize: z.ZodOptional<z.ZodNumber>;
218
+ responseSize: z.ZodOptional<z.ZodNumber>;
213
219
  }, z.core.$strip>>;
214
220
  querySchema: z.ZodObject<{
215
221
  beforeDate: z.ZodOptional<z.ZodString>;
@@ -295,6 +301,8 @@ export declare const requestLogLeaves: readonly [{
295
301
  durationMs: z.ZodNumber;
296
302
  ip: z.ZodOptional<z.ZodString>;
297
303
  userAgent: z.ZodOptional<z.ZodString>;
304
+ requestSize: z.ZodOptional<z.ZodNumber>;
305
+ responseSize: z.ZodOptional<z.ZodNumber>;
298
306
  }, z.core.$strip>>;
299
307
  meta: z.ZodObject<{
300
308
  totalCount: z.ZodOptional<z.ZodNumber>;
@@ -369,6 +377,8 @@ export declare const requestLogLeaves: readonly [{
369
377
  error?: string | undefined;
370
378
  ip?: string | undefined;
371
379
  userAgent?: string | undefined;
380
+ requestSize?: number | undefined;
381
+ responseSize?: number | undefined;
372
382
  }[];
373
383
  meta: {
374
384
  totalCount?: number | undefined;
@@ -396,6 +406,8 @@ export declare const requestLogLeaves: readonly [{
396
406
  error?: string | undefined;
397
407
  ip?: string | undefined;
398
408
  userAgent?: string | undefined;
409
+ requestSize?: number | undefined;
410
+ responseSize?: number | undefined;
399
411
  }[];
400
412
  meta: {
401
413
  totalCount?: number | undefined;
@@ -475,6 +487,8 @@ export declare const requestLogLeaves: readonly [{
475
487
  durationMs: z.ZodNumber;
476
488
  ip: z.ZodOptional<z.ZodString>;
477
489
  userAgent: z.ZodOptional<z.ZodString>;
490
+ requestSize: z.ZodOptional<z.ZodNumber>;
491
+ responseSize: z.ZodOptional<z.ZodNumber>;
478
492
  logs: z.ZodArray<z.ZodObject<{
479
493
  id: z.ZodString;
480
494
  name: z.ZodString;
@@ -483,32 +497,23 @@ export declare const requestLogLeaves: readonly [{
483
497
  tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
484
498
  createdAt: z.ZodNumber;
485
499
  updatedAt: z.ZodNumber;
486
- level: z.ZodEnum<{
487
- error: "error";
488
- info: "info";
489
- warning: "warning";
490
- debug: "debug";
491
- trace: "trace";
492
- }>;
500
+ level: z.ZodString;
493
501
  meta: z.ZodOptional<z.ZodAny>;
494
502
  }, z.core.$strip>>;
495
503
  caches: z.ZodArray<z.ZodObject<{
496
504
  id: z.ZodString;
497
- name: z.ZodString;
498
- description: z.ZodOptional<z.ZodString>;
499
- groupId: z.ZodOptional<z.ZodString>;
500
- tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
501
- createdAt: z.ZodNumber;
502
- updatedAt: z.ZodNumber;
505
+ timestamp: z.ZodNumber;
503
506
  operation: z.ZodEnum<{
504
507
  delete: "delete";
505
508
  hit: "hit";
506
509
  miss: "miss";
507
510
  set: "set";
508
511
  }>;
509
- value: z.ZodNullable<z.ZodAny>;
512
+ key: z.ZodString;
510
513
  size: z.ZodOptional<z.ZodNumber>;
511
514
  durationMs: z.ZodOptional<z.ZodNumber>;
515
+ groupId: z.ZodOptional<z.ZodString>;
516
+ type: z.ZodOptional<z.ZodString>;
512
517
  }, z.core.$strip>>;
513
518
  }, z.core.$strip>;
514
519
  }, "queryExtensionSchema" | "outputMetaSchema"> & {
@@ -547,6 +552,8 @@ export declare const requestLogLeaves: readonly [{
547
552
  durationMs: z.ZodNumber;
548
553
  ip: z.ZodOptional<z.ZodString>;
549
554
  userAgent: z.ZodOptional<z.ZodString>;
555
+ requestSize: z.ZodOptional<z.ZodNumber>;
556
+ responseSize: z.ZodOptional<z.ZodNumber>;
550
557
  logs: z.ZodArray<z.ZodObject<{
551
558
  id: z.ZodString;
552
559
  name: z.ZodString;
@@ -555,32 +562,23 @@ export declare const requestLogLeaves: readonly [{
555
562
  tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
556
563
  createdAt: z.ZodNumber;
557
564
  updatedAt: z.ZodNumber;
558
- level: z.ZodEnum<{
559
- error: "error";
560
- info: "info";
561
- warning: "warning";
562
- debug: "debug";
563
- trace: "trace";
564
- }>;
565
+ level: z.ZodString;
565
566
  meta: z.ZodOptional<z.ZodAny>;
566
567
  }, z.core.$strip>>;
567
568
  caches: z.ZodArray<z.ZodObject<{
568
569
  id: z.ZodString;
569
- name: z.ZodString;
570
- description: z.ZodOptional<z.ZodString>;
571
- groupId: z.ZodOptional<z.ZodString>;
572
- tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
573
- createdAt: z.ZodNumber;
574
- updatedAt: z.ZodNumber;
570
+ timestamp: z.ZodNumber;
575
571
  operation: z.ZodEnum<{
576
572
  delete: "delete";
577
573
  hit: "hit";
578
574
  miss: "miss";
579
575
  set: "set";
580
576
  }>;
581
- value: z.ZodNullable<z.ZodAny>;
577
+ key: z.ZodString;
582
578
  size: z.ZodOptional<z.ZodNumber>;
583
579
  durationMs: z.ZodOptional<z.ZodNumber>;
580
+ groupId: z.ZodOptional<z.ZodString>;
581
+ type: z.ZodOptional<z.ZodString>;
584
582
  }, z.core.$strip>>;
585
583
  }, z.core.$strip>;
586
584
  meta: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
@@ -613,7 +611,7 @@ export declare const requestLogLeaves: readonly [{
613
611
  name: string;
614
612
  createdAt: number;
615
613
  updatedAt: number;
616
- level: "error" | "info" | "warning" | "debug" | "trace";
614
+ level: string;
617
615
  description?: string | undefined;
618
616
  groupId?: string | undefined;
619
617
  tags?: string[] | undefined;
@@ -621,16 +619,13 @@ export declare const requestLogLeaves: readonly [{
621
619
  }[];
622
620
  caches: {
623
621
  id: string;
624
- name: string;
625
- createdAt: number;
626
- updatedAt: number;
622
+ timestamp: number;
627
623
  operation: "delete" | "hit" | "miss" | "set";
628
- value: any;
629
- description?: string | undefined;
630
- groupId?: string | undefined;
631
- tags?: string[] | undefined;
624
+ key: string;
632
625
  size?: number | undefined;
633
626
  durationMs?: number | undefined;
627
+ groupId?: string | undefined;
628
+ type?: string | undefined;
634
629
  }[];
635
630
  description?: string | undefined;
636
631
  groupId?: string | undefined;
@@ -643,6 +638,8 @@ export declare const requestLogLeaves: readonly [{
643
638
  error?: string | undefined;
644
639
  ip?: string | undefined;
645
640
  userAgent?: string | undefined;
641
+ requestSize?: number | undefined;
642
+ responseSize?: number | undefined;
646
643
  };
647
644
  meta: unknown;
648
645
  }, {
@@ -661,7 +658,7 @@ export declare const requestLogLeaves: readonly [{
661
658
  name: string;
662
659
  createdAt: number;
663
660
  updatedAt: number;
664
- level: "error" | "info" | "warning" | "debug" | "trace";
661
+ level: string;
665
662
  description?: string | undefined;
666
663
  groupId?: string | undefined;
667
664
  tags?: string[] | undefined;
@@ -669,16 +666,13 @@ export declare const requestLogLeaves: readonly [{
669
666
  }[];
670
667
  caches: {
671
668
  id: string;
672
- name: string;
673
- createdAt: number;
674
- updatedAt: number;
669
+ timestamp: number;
675
670
  operation: "delete" | "hit" | "miss" | "set";
676
- value: any;
677
- description?: string | undefined;
678
- groupId?: string | undefined;
679
- tags?: string[] | undefined;
671
+ key: string;
680
672
  size?: number | undefined;
681
673
  durationMs?: number | undefined;
674
+ groupId?: string | undefined;
675
+ type?: string | undefined;
682
676
  }[];
683
677
  description?: string | undefined;
684
678
  groupId?: string | undefined;
@@ -691,6 +685,8 @@ export declare const requestLogLeaves: readonly [{
691
685
  error?: string | undefined;
692
686
  ip?: string | undefined;
693
687
  userAgent?: string | undefined;
688
+ requestSize?: number | undefined;
689
+ responseSize?: number | undefined;
694
690
  };
695
691
  meta: unknown;
696
692
  }>;