@dakkitor/api-contracts 1.1.131 → 1.1.133

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 (63) hide show
  1. package/dist/abilities/abilities.contract.d.ts +19 -13
  2. package/dist/abilities/abilities.contract.js +33 -18
  3. package/dist/abilities/first-agent.abilities.json +68 -56
  4. package/dist/abilities/second-agent.abilities.json +3 -3
  5. package/dist/abilities/team-leads.json +3 -6
  6. package/dist/actives/actives.contract.d.ts +6313 -6313
  7. package/dist/actives/actives.contract.js +92 -92
  8. package/dist/agent-client-links/agent-client-links.contract.d.ts +511 -511
  9. package/dist/auth/auth.contract.d.ts +16 -16
  10. package/dist/bookings/bookings.contract.d.ts +23378 -23378
  11. package/dist/call-history/call-history.contract.d.ts +366 -366
  12. package/dist/call-history/call-history.contract.js +67 -67
  13. package/dist/client-contacts/client-contacts.contract.d.ts +159 -159
  14. package/dist/clients/clients.contract.d.ts +72 -72
  15. package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +1330 -1330
  16. package/dist/collaborations/collaborations.contract.d.ts +1198 -1198
  17. package/dist/common/call-rating.schema.d.ts +12 -12
  18. package/dist/common/call-rating.schema.js +48 -40
  19. package/dist/common/common-schemas.d.ts +4 -4
  20. package/dist/common/common-schemas.d.ts.map +1 -1
  21. package/dist/common/common-schemas.js +1 -2
  22. package/dist/common/error-schemas.d.ts +11 -5
  23. package/dist/common/error-schemas.js +11 -8
  24. package/dist/common/openapi-metadata.d.ts +54 -44
  25. package/dist/common/openapi-metadata.js +135 -129
  26. package/dist/common/pagination-query.schema.d.ts +11 -5
  27. package/dist/common/pagination-query.schema.js +11 -8
  28. package/dist/companies/companies.contract.d.ts +40 -40
  29. package/dist/cron-executions/cron-executions.contract.d.ts +14 -14
  30. package/dist/curated-workers/curated-workers.contract.d.ts +211 -211
  31. package/dist/dashboards/agent-daily-metrics.contract.d.ts +798 -616
  32. package/dist/dashboards/agent-daily-metrics.contract.js +100 -89
  33. package/dist/dashboards/dashboard-widgets.contract.d.ts +75 -75
  34. package/dist/dashboards/dashboard-widgets.contract.js +89 -89
  35. package/dist/dashboards/dashboard.contract.d.ts +305 -215
  36. package/dist/files/files.contract.d.ts +1544 -1177
  37. package/dist/files/files.contract.js +177 -162
  38. package/dist/health/health.contract.d.ts +191 -144
  39. package/dist/health/health.contract.js +53 -40
  40. package/dist/index.d.ts +67 -67
  41. package/dist/jobs/jobs.contract.d.ts +2553 -2553
  42. package/dist/jobs/jobs.contract.js +150 -150
  43. package/dist/lead-assignments/lead-assignments.contract.d.ts +587 -587
  44. package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +239 -239
  45. package/dist/lead-distribution/lead-distribution-config.contract.d.ts +25 -25
  46. package/dist/leads/leads.contract.d.ts +108 -108
  47. package/dist/leads/leads.contract.js +119 -119
  48. package/dist/locations/locations.contract.d.ts +7 -7
  49. package/dist/monitoring/monitoring.contract.d.ts +13 -13
  50. package/dist/monitoring/monitoring.contract.js +37 -37
  51. package/dist/own-research/own-research.contract.d.ts +535 -134
  52. package/dist/own-research/own-research.contract.d.ts.map +1 -1
  53. package/dist/own-research/own-research.contract.js +88 -56
  54. package/dist/postcodes/postcodes.contract.d.ts +24 -24
  55. package/dist/qualifications/qualifications.contract.d.ts +1898 -1387
  56. package/dist/qualifications/qualifications.contract.js +193 -171
  57. package/dist/trades/trades.contract.d.ts +991 -763
  58. package/dist/trades/trades.contract.js +111 -89
  59. package/dist/users/users.contract.d.ts +202 -202
  60. package/dist/users/users.contract.js +121 -121
  61. package/dist/workers/workers.contract.d.ts +710 -710
  62. package/dist/workers/workers.contract.js +150 -150
  63. package/package.json +1 -1
@@ -1,639 +1,821 @@
1
1
  import { z } from 'zod';
2
- export declare const GetHistoryQuerySchema: z.ZodObject<{
2
+ export declare const GetHistoryQuerySchema: z.ZodObject<
3
+ {
3
4
  startDate: z.ZodOptional<z.ZodString>;
4
5
  endDate: z.ZodOptional<z.ZodString>;
5
6
  agentId: z.ZodOptional<z.ZodString>;
6
- }, "strip", z.ZodTypeAny, {
7
+ },
8
+ 'strip',
9
+ z.ZodTypeAny,
10
+ {
7
11
  agentId?: string | undefined;
8
12
  startDate?: string | undefined;
9
13
  endDate?: string | undefined;
10
- }, {
14
+ },
15
+ {
11
16
  agentId?: string | undefined;
12
17
  startDate?: string | undefined;
13
18
  endDate?: string | undefined;
14
- }>;
15
- export declare const AgentDailyMetricsSchema: z.ZodObject<{
19
+ }
20
+ >;
21
+ export declare const AgentDailyMetricsSchema: z.ZodObject<
22
+ {
16
23
  date: z.ZodString;
17
24
  agentId: z.ZodString;
18
25
  totalActives: z.ZodNumber;
19
26
  totalBookings: z.ZodNumber;
20
- }, "strip", z.ZodAny, z.objectOutputType<{
21
- date: z.ZodString;
22
- agentId: z.ZodString;
23
- totalActives: z.ZodNumber;
24
- totalBookings: z.ZodNumber;
25
- }, z.ZodAny, "strip">, z.objectInputType<{
26
- date: z.ZodString;
27
- agentId: z.ZodString;
28
- totalActives: z.ZodNumber;
29
- totalBookings: z.ZodNumber;
30
- }, z.ZodAny, "strip">>;
31
- export declare const AgentDailyMetricsArraySchema: z.ZodArray<z.ZodObject<{
32
- date: z.ZodString;
33
- agentId: z.ZodString;
34
- totalActives: z.ZodNumber;
35
- totalBookings: z.ZodNumber;
36
- }, "strip", z.ZodAny, z.objectOutputType<{
37
- date: z.ZodString;
38
- agentId: z.ZodString;
39
- totalActives: z.ZodNumber;
40
- totalBookings: z.ZodNumber;
41
- }, z.ZodAny, "strip">, z.objectInputType<{
42
- date: z.ZodString;
43
- agentId: z.ZodString;
44
- totalActives: z.ZodNumber;
45
- totalBookings: z.ZodNumber;
46
- }, z.ZodAny, "strip">>, "many">;
27
+ },
28
+ 'strip',
29
+ z.ZodAny,
30
+ z.objectOutputType<
31
+ {
32
+ date: z.ZodString;
33
+ agentId: z.ZodString;
34
+ totalActives: z.ZodNumber;
35
+ totalBookings: z.ZodNumber;
36
+ },
37
+ z.ZodAny,
38
+ 'strip'
39
+ >,
40
+ z.objectInputType<
41
+ {
42
+ date: z.ZodString;
43
+ agentId: z.ZodString;
44
+ totalActives: z.ZodNumber;
45
+ totalBookings: z.ZodNumber;
46
+ },
47
+ z.ZodAny,
48
+ 'strip'
49
+ >
50
+ >;
51
+ export declare const AgentDailyMetricsArraySchema: z.ZodArray<
52
+ z.ZodObject<
53
+ {
54
+ date: z.ZodString;
55
+ agentId: z.ZodString;
56
+ totalActives: z.ZodNumber;
57
+ totalBookings: z.ZodNumber;
58
+ },
59
+ 'strip',
60
+ z.ZodAny,
61
+ z.objectOutputType<
62
+ {
63
+ date: z.ZodString;
64
+ agentId: z.ZodString;
65
+ totalActives: z.ZodNumber;
66
+ totalBookings: z.ZodNumber;
67
+ },
68
+ z.ZodAny,
69
+ 'strip'
70
+ >,
71
+ z.objectInputType<
72
+ {
73
+ date: z.ZodString;
74
+ agentId: z.ZodString;
75
+ totalActives: z.ZodNumber;
76
+ totalBookings: z.ZodNumber;
77
+ },
78
+ z.ZodAny,
79
+ 'strip'
80
+ >
81
+ >,
82
+ 'many'
83
+ >;
47
84
  export type GetHistoryQuery = z.infer<typeof GetHistoryQuerySchema>;
48
85
  export type AgentDailyMetrics = z.infer<typeof AgentDailyMetricsSchema>;
49
- export type AgentDailyMetricsArray = z.infer<typeof AgentDailyMetricsArraySchema>;
86
+ export type AgentDailyMetricsArray = z.infer<
87
+ typeof AgentDailyMetricsArraySchema
88
+ >;
50
89
  export declare const agentDailyMetricsContract: {
51
- getHistory: {
52
- metadata: {
53
- tags: string[];
54
- };
55
- query: z.ZodObject<{
56
- startDate: z.ZodOptional<z.ZodString>;
57
- endDate: z.ZodOptional<z.ZodString>;
58
- agentId: z.ZodOptional<z.ZodString>;
59
- }, "strip", z.ZodTypeAny, {
60
- agentId?: string | undefined;
61
- startDate?: string | undefined;
62
- endDate?: string | undefined;
63
- }, {
64
- agentId?: string | undefined;
65
- startDate?: string | undefined;
66
- endDate?: string | undefined;
67
- }>;
68
- summary: "Retrieve agent daily metrics history";
69
- method: "GET";
70
- path: "/v2/dashboard/history";
71
- responses: {
72
- 400: z.ZodObject<{
73
- statusCode: z.ZodNumber;
74
- message: z.ZodString;
75
- code: z.ZodString;
76
- details: z.ZodOptional<z.ZodUnknown>;
77
- timestamp: z.ZodString;
78
- path: z.ZodString;
79
- correlationId: z.ZodOptional<z.ZodString>;
80
- }, "strip", z.ZodTypeAny, {
81
- code: string;
82
- path: string;
83
- message: string;
84
- statusCode: number;
85
- timestamp: string;
86
- details?: unknown;
87
- correlationId?: string | undefined;
88
- }, {
89
- code: string;
90
- path: string;
91
- message: string;
92
- statusCode: number;
93
- timestamp: string;
94
- details?: unknown;
95
- correlationId?: string | undefined;
96
- }>;
97
- 401: z.ZodObject<{
98
- statusCode: z.ZodNumber;
99
- message: z.ZodString;
100
- code: z.ZodString;
101
- details: z.ZodOptional<z.ZodUnknown>;
102
- timestamp: z.ZodString;
103
- path: z.ZodString;
104
- correlationId: z.ZodOptional<z.ZodString>;
105
- }, "strip", z.ZodTypeAny, {
106
- code: string;
107
- path: string;
108
- message: string;
109
- statusCode: number;
110
- timestamp: string;
111
- details?: unknown;
112
- correlationId?: string | undefined;
113
- }, {
114
- code: string;
115
- path: string;
116
- message: string;
117
- statusCode: number;
118
- timestamp: string;
119
- details?: unknown;
120
- correlationId?: string | undefined;
121
- }>;
122
- 403: z.ZodObject<{
123
- statusCode: z.ZodNumber;
124
- message: z.ZodString;
125
- code: z.ZodString;
126
- details: z.ZodOptional<z.ZodUnknown>;
127
- timestamp: z.ZodString;
128
- path: z.ZodString;
129
- correlationId: z.ZodOptional<z.ZodString>;
130
- }, "strip", z.ZodTypeAny, {
131
- code: string;
132
- path: string;
133
- message: string;
134
- statusCode: number;
135
- timestamp: string;
136
- details?: unknown;
137
- correlationId?: string | undefined;
138
- }, {
139
- code: string;
140
- path: string;
141
- message: string;
142
- statusCode: number;
143
- timestamp: string;
144
- details?: unknown;
145
- correlationId?: string | undefined;
146
- }>;
147
- 500: z.ZodObject<{
148
- statusCode: z.ZodNumber;
149
- message: z.ZodString;
150
- code: z.ZodString;
151
- details: z.ZodOptional<z.ZodUnknown>;
152
- timestamp: z.ZodString;
153
- path: z.ZodString;
154
- correlationId: z.ZodOptional<z.ZodString>;
155
- }, "strip", z.ZodTypeAny, {
156
- code: string;
157
- path: string;
158
- message: string;
159
- statusCode: number;
160
- timestamp: string;
161
- details?: unknown;
162
- correlationId?: string | undefined;
163
- }, {
164
- code: string;
165
- path: string;
166
- message: string;
167
- statusCode: number;
168
- timestamp: string;
169
- details?: unknown;
170
- correlationId?: string | undefined;
171
- }>;
172
- 200: z.ZodArray<z.ZodObject<{
173
- date: z.ZodString;
174
- agentId: z.ZodString;
175
- totalActives: z.ZodNumber;
176
- totalBookings: z.ZodNumber;
177
- }, "strip", z.ZodAny, z.objectOutputType<{
178
- date: z.ZodString;
179
- agentId: z.ZodString;
180
- totalActives: z.ZodNumber;
181
- totalBookings: z.ZodNumber;
182
- }, z.ZodAny, "strip">, z.objectInputType<{
183
- date: z.ZodString;
184
- agentId: z.ZodString;
185
- totalActives: z.ZodNumber;
186
- totalBookings: z.ZodNumber;
187
- }, z.ZodAny, "strip">>, "many">;
188
- };
90
+ getHistory: {
91
+ metadata: {
92
+ tags: string[];
93
+ };
94
+ query: z.ZodObject<
95
+ {
96
+ startDate: z.ZodOptional<z.ZodString>;
97
+ endDate: z.ZodOptional<z.ZodString>;
98
+ agentId: z.ZodOptional<z.ZodString>;
99
+ },
100
+ 'strip',
101
+ z.ZodTypeAny,
102
+ {
103
+ agentId?: string | undefined;
104
+ startDate?: string | undefined;
105
+ endDate?: string | undefined;
106
+ },
107
+ {
108
+ agentId?: string | undefined;
109
+ startDate?: string | undefined;
110
+ endDate?: string | undefined;
111
+ }
112
+ >;
113
+ summary: 'Retrieve agent daily metrics history';
114
+ method: 'GET';
115
+ path: '/v2/dashboard/history';
116
+ responses: {
117
+ 400: z.ZodObject<
118
+ {
119
+ statusCode: z.ZodNumber;
120
+ message: z.ZodString;
121
+ code: z.ZodString;
122
+ details: z.ZodOptional<z.ZodUnknown>;
123
+ timestamp: z.ZodString;
124
+ path: z.ZodString;
125
+ correlationId: z.ZodOptional<z.ZodString>;
126
+ },
127
+ 'strip',
128
+ z.ZodTypeAny,
129
+ {
130
+ code: string;
131
+ path: string;
132
+ message: string;
133
+ statusCode: number;
134
+ timestamp: string;
135
+ details?: unknown;
136
+ correlationId?: string | undefined;
137
+ },
138
+ {
139
+ code: string;
140
+ path: string;
141
+ message: string;
142
+ statusCode: number;
143
+ timestamp: string;
144
+ details?: unknown;
145
+ correlationId?: string | undefined;
146
+ }
147
+ >;
148
+ 401: z.ZodObject<
149
+ {
150
+ statusCode: z.ZodNumber;
151
+ message: z.ZodString;
152
+ code: z.ZodString;
153
+ details: z.ZodOptional<z.ZodUnknown>;
154
+ timestamp: z.ZodString;
155
+ path: z.ZodString;
156
+ correlationId: z.ZodOptional<z.ZodString>;
157
+ },
158
+ 'strip',
159
+ z.ZodTypeAny,
160
+ {
161
+ code: string;
162
+ path: string;
163
+ message: string;
164
+ statusCode: number;
165
+ timestamp: string;
166
+ details?: unknown;
167
+ correlationId?: string | undefined;
168
+ },
169
+ {
170
+ code: string;
171
+ path: string;
172
+ message: string;
173
+ statusCode: number;
174
+ timestamp: string;
175
+ details?: unknown;
176
+ correlationId?: string | undefined;
177
+ }
178
+ >;
179
+ 403: z.ZodObject<
180
+ {
181
+ statusCode: z.ZodNumber;
182
+ message: z.ZodString;
183
+ code: z.ZodString;
184
+ details: z.ZodOptional<z.ZodUnknown>;
185
+ timestamp: z.ZodString;
186
+ path: z.ZodString;
187
+ correlationId: z.ZodOptional<z.ZodString>;
188
+ },
189
+ 'strip',
190
+ z.ZodTypeAny,
191
+ {
192
+ code: string;
193
+ path: string;
194
+ message: string;
195
+ statusCode: number;
196
+ timestamp: string;
197
+ details?: unknown;
198
+ correlationId?: string | undefined;
199
+ },
200
+ {
201
+ code: string;
202
+ path: string;
203
+ message: string;
204
+ statusCode: number;
205
+ timestamp: string;
206
+ details?: unknown;
207
+ correlationId?: string | undefined;
208
+ }
209
+ >;
210
+ 500: z.ZodObject<
211
+ {
212
+ statusCode: z.ZodNumber;
213
+ message: z.ZodString;
214
+ code: z.ZodString;
215
+ details: z.ZodOptional<z.ZodUnknown>;
216
+ timestamp: z.ZodString;
217
+ path: z.ZodString;
218
+ correlationId: z.ZodOptional<z.ZodString>;
219
+ },
220
+ 'strip',
221
+ z.ZodTypeAny,
222
+ {
223
+ code: string;
224
+ path: string;
225
+ message: string;
226
+ statusCode: number;
227
+ timestamp: string;
228
+ details?: unknown;
229
+ correlationId?: string | undefined;
230
+ },
231
+ {
232
+ code: string;
233
+ path: string;
234
+ message: string;
235
+ statusCode: number;
236
+ timestamp: string;
237
+ details?: unknown;
238
+ correlationId?: string | undefined;
239
+ }
240
+ >;
241
+ 200: z.ZodArray<
242
+ z.ZodObject<
243
+ {
244
+ date: z.ZodString;
245
+ agentId: z.ZodString;
246
+ totalActives: z.ZodNumber;
247
+ totalBookings: z.ZodNumber;
248
+ },
249
+ 'strip',
250
+ z.ZodAny,
251
+ z.objectOutputType<
252
+ {
253
+ date: z.ZodString;
254
+ agentId: z.ZodString;
255
+ totalActives: z.ZodNumber;
256
+ totalBookings: z.ZodNumber;
257
+ },
258
+ z.ZodAny,
259
+ 'strip'
260
+ >,
261
+ z.objectInputType<
262
+ {
263
+ date: z.ZodString;
264
+ agentId: z.ZodString;
265
+ totalActives: z.ZodNumber;
266
+ totalBookings: z.ZodNumber;
267
+ },
268
+ z.ZodAny,
269
+ 'strip'
270
+ >
271
+ >,
272
+ 'many'
273
+ >;
274
+ };
275
+ };
276
+ backfill: {
277
+ metadata: {
278
+ tags: string[];
279
+ };
280
+ summary: 'Backfill historical metrics data (Admin only)';
281
+ method: 'POST';
282
+ body: z.ZodObject<{}, 'strip', z.ZodTypeAny, {}, {}>;
283
+ path: '/v2/dashboard/history/backfill';
284
+ responses: {
285
+ 400: z.ZodObject<
286
+ {
287
+ statusCode: z.ZodNumber;
288
+ message: z.ZodString;
289
+ code: z.ZodString;
290
+ details: z.ZodOptional<z.ZodUnknown>;
291
+ timestamp: z.ZodString;
292
+ path: z.ZodString;
293
+ correlationId: z.ZodOptional<z.ZodString>;
294
+ },
295
+ 'strip',
296
+ z.ZodTypeAny,
297
+ {
298
+ code: string;
299
+ path: string;
300
+ message: string;
301
+ statusCode: number;
302
+ timestamp: string;
303
+ details?: unknown;
304
+ correlationId?: string | undefined;
305
+ },
306
+ {
307
+ code: string;
308
+ path: string;
309
+ message: string;
310
+ statusCode: number;
311
+ timestamp: string;
312
+ details?: unknown;
313
+ correlationId?: string | undefined;
314
+ }
315
+ >;
316
+ 401: z.ZodObject<
317
+ {
318
+ statusCode: z.ZodNumber;
319
+ message: z.ZodString;
320
+ code: z.ZodString;
321
+ details: z.ZodOptional<z.ZodUnknown>;
322
+ timestamp: z.ZodString;
323
+ path: z.ZodString;
324
+ correlationId: z.ZodOptional<z.ZodString>;
325
+ },
326
+ 'strip',
327
+ z.ZodTypeAny,
328
+ {
329
+ code: string;
330
+ path: string;
331
+ message: string;
332
+ statusCode: number;
333
+ timestamp: string;
334
+ details?: unknown;
335
+ correlationId?: string | undefined;
336
+ },
337
+ {
338
+ code: string;
339
+ path: string;
340
+ message: string;
341
+ statusCode: number;
342
+ timestamp: string;
343
+ details?: unknown;
344
+ correlationId?: string | undefined;
345
+ }
346
+ >;
347
+ 500: z.ZodObject<
348
+ {
349
+ statusCode: z.ZodNumber;
350
+ message: z.ZodString;
351
+ code: z.ZodString;
352
+ details: z.ZodOptional<z.ZodUnknown>;
353
+ timestamp: z.ZodString;
354
+ path: z.ZodString;
355
+ correlationId: z.ZodOptional<z.ZodString>;
356
+ },
357
+ 'strip',
358
+ z.ZodTypeAny,
359
+ {
360
+ code: string;
361
+ path: string;
362
+ message: string;
363
+ statusCode: number;
364
+ timestamp: string;
365
+ details?: unknown;
366
+ correlationId?: string | undefined;
367
+ },
368
+ {
369
+ code: string;
370
+ path: string;
371
+ message: string;
372
+ statusCode: number;
373
+ timestamp: string;
374
+ details?: unknown;
375
+ correlationId?: string | undefined;
376
+ }
377
+ >;
378
+ 201: z.ZodUndefined;
379
+ 403: z.ZodObject<
380
+ {
381
+ statusCode: z.ZodNumber;
382
+ message: z.ZodString;
383
+ code: z.ZodString;
384
+ details: z.ZodOptional<z.ZodUnknown>;
385
+ timestamp: z.ZodString;
386
+ path: z.ZodString;
387
+ correlationId: z.ZodOptional<z.ZodString>;
388
+ },
389
+ 'strip',
390
+ z.ZodTypeAny,
391
+ {
392
+ code: string;
393
+ path: string;
394
+ message: string;
395
+ statusCode: number;
396
+ timestamp: string;
397
+ details?: unknown;
398
+ correlationId?: string | undefined;
399
+ },
400
+ {
401
+ code: string;
402
+ path: string;
403
+ message: string;
404
+ statusCode: number;
405
+ timestamp: string;
406
+ details?: unknown;
407
+ correlationId?: string | undefined;
408
+ }
409
+ >;
410
+ };
411
+ };
412
+ backfillActives: {
413
+ metadata: {
414
+ tags: string[];
415
+ };
416
+ summary: 'Backfill historical actives data (Admin only)';
417
+ method: 'POST';
418
+ body: z.ZodObject<{}, 'strip', z.ZodTypeAny, {}, {}>;
419
+ path: '/v2/dashboard/history/backfill/actives';
420
+ responses: {
421
+ 400: z.ZodObject<
422
+ {
423
+ statusCode: z.ZodNumber;
424
+ message: z.ZodString;
425
+ code: z.ZodString;
426
+ details: z.ZodOptional<z.ZodUnknown>;
427
+ timestamp: z.ZodString;
428
+ path: z.ZodString;
429
+ correlationId: z.ZodOptional<z.ZodString>;
430
+ },
431
+ 'strip',
432
+ z.ZodTypeAny,
433
+ {
434
+ code: string;
435
+ path: string;
436
+ message: string;
437
+ statusCode: number;
438
+ timestamp: string;
439
+ details?: unknown;
440
+ correlationId?: string | undefined;
441
+ },
442
+ {
443
+ code: string;
444
+ path: string;
445
+ message: string;
446
+ statusCode: number;
447
+ timestamp: string;
448
+ details?: unknown;
449
+ correlationId?: string | undefined;
450
+ }
451
+ >;
452
+ 401: z.ZodObject<
453
+ {
454
+ statusCode: z.ZodNumber;
455
+ message: z.ZodString;
456
+ code: z.ZodString;
457
+ details: z.ZodOptional<z.ZodUnknown>;
458
+ timestamp: z.ZodString;
459
+ path: z.ZodString;
460
+ correlationId: z.ZodOptional<z.ZodString>;
461
+ },
462
+ 'strip',
463
+ z.ZodTypeAny,
464
+ {
465
+ code: string;
466
+ path: string;
467
+ message: string;
468
+ statusCode: number;
469
+ timestamp: string;
470
+ details?: unknown;
471
+ correlationId?: string | undefined;
472
+ },
473
+ {
474
+ code: string;
475
+ path: string;
476
+ message: string;
477
+ statusCode: number;
478
+ timestamp: string;
479
+ details?: unknown;
480
+ correlationId?: string | undefined;
481
+ }
482
+ >;
483
+ 500: z.ZodObject<
484
+ {
485
+ statusCode: z.ZodNumber;
486
+ message: z.ZodString;
487
+ code: z.ZodString;
488
+ details: z.ZodOptional<z.ZodUnknown>;
489
+ timestamp: z.ZodString;
490
+ path: z.ZodString;
491
+ correlationId: z.ZodOptional<z.ZodString>;
492
+ },
493
+ 'strip',
494
+ z.ZodTypeAny,
495
+ {
496
+ code: string;
497
+ path: string;
498
+ message: string;
499
+ statusCode: number;
500
+ timestamp: string;
501
+ details?: unknown;
502
+ correlationId?: string | undefined;
503
+ },
504
+ {
505
+ code: string;
506
+ path: string;
507
+ message: string;
508
+ statusCode: number;
509
+ timestamp: string;
510
+ details?: unknown;
511
+ correlationId?: string | undefined;
512
+ }
513
+ >;
514
+ 201: z.ZodUndefined;
515
+ 403: z.ZodObject<
516
+ {
517
+ statusCode: z.ZodNumber;
518
+ message: z.ZodString;
519
+ code: z.ZodString;
520
+ details: z.ZodOptional<z.ZodUnknown>;
521
+ timestamp: z.ZodString;
522
+ path: z.ZodString;
523
+ correlationId: z.ZodOptional<z.ZodString>;
524
+ },
525
+ 'strip',
526
+ z.ZodTypeAny,
527
+ {
528
+ code: string;
529
+ path: string;
530
+ message: string;
531
+ statusCode: number;
532
+ timestamp: string;
533
+ details?: unknown;
534
+ correlationId?: string | undefined;
535
+ },
536
+ {
537
+ code: string;
538
+ path: string;
539
+ message: string;
540
+ statusCode: number;
541
+ timestamp: string;
542
+ details?: unknown;
543
+ correlationId?: string | undefined;
544
+ }
545
+ >;
189
546
  };
190
- backfill: {
191
- metadata: {
192
- tags: string[];
193
- };
194
- summary: "Backfill historical metrics data (Admin only)";
195
- method: "POST";
196
- body: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
197
- path: "/v2/dashboard/history/backfill";
198
- responses: {
199
- 400: z.ZodObject<{
200
- statusCode: z.ZodNumber;
201
- message: z.ZodString;
202
- code: z.ZodString;
203
- details: z.ZodOptional<z.ZodUnknown>;
204
- timestamp: z.ZodString;
205
- path: z.ZodString;
206
- correlationId: z.ZodOptional<z.ZodString>;
207
- }, "strip", z.ZodTypeAny, {
208
- code: string;
209
- path: string;
210
- message: string;
211
- statusCode: number;
212
- timestamp: string;
213
- details?: unknown;
214
- correlationId?: string | undefined;
215
- }, {
216
- code: string;
217
- path: string;
218
- message: string;
219
- statusCode: number;
220
- timestamp: string;
221
- details?: unknown;
222
- correlationId?: string | undefined;
223
- }>;
224
- 401: z.ZodObject<{
225
- statusCode: z.ZodNumber;
226
- message: z.ZodString;
227
- code: z.ZodString;
228
- details: z.ZodOptional<z.ZodUnknown>;
229
- timestamp: z.ZodString;
230
- path: z.ZodString;
231
- correlationId: z.ZodOptional<z.ZodString>;
232
- }, "strip", z.ZodTypeAny, {
233
- code: string;
234
- path: string;
235
- message: string;
236
- statusCode: number;
237
- timestamp: string;
238
- details?: unknown;
239
- correlationId?: string | undefined;
240
- }, {
241
- code: string;
242
- path: string;
243
- message: string;
244
- statusCode: number;
245
- timestamp: string;
246
- details?: unknown;
247
- correlationId?: string | undefined;
248
- }>;
249
- 500: z.ZodObject<{
250
- statusCode: z.ZodNumber;
251
- message: z.ZodString;
252
- code: z.ZodString;
253
- details: z.ZodOptional<z.ZodUnknown>;
254
- timestamp: z.ZodString;
255
- path: z.ZodString;
256
- correlationId: z.ZodOptional<z.ZodString>;
257
- }, "strip", z.ZodTypeAny, {
258
- code: string;
259
- path: string;
260
- message: string;
261
- statusCode: number;
262
- timestamp: string;
263
- details?: unknown;
264
- correlationId?: string | undefined;
265
- }, {
266
- code: string;
267
- path: string;
268
- message: string;
269
- statusCode: number;
270
- timestamp: string;
271
- details?: unknown;
272
- correlationId?: string | undefined;
273
- }>;
274
- 201: z.ZodUndefined;
275
- 403: z.ZodObject<{
276
- statusCode: z.ZodNumber;
277
- message: z.ZodString;
278
- code: z.ZodString;
279
- details: z.ZodOptional<z.ZodUnknown>;
280
- timestamp: z.ZodString;
281
- path: z.ZodString;
282
- correlationId: z.ZodOptional<z.ZodString>;
283
- }, "strip", z.ZodTypeAny, {
284
- code: string;
285
- path: string;
286
- message: string;
287
- statusCode: number;
288
- timestamp: string;
289
- details?: unknown;
290
- correlationId?: string | undefined;
291
- }, {
292
- code: string;
293
- path: string;
294
- message: string;
295
- statusCode: number;
296
- timestamp: string;
297
- details?: unknown;
298
- correlationId?: string | undefined;
299
- }>;
300
- };
547
+ };
548
+ backfillBookings: {
549
+ metadata: {
550
+ tags: string[];
301
551
  };
302
- backfillActives: {
303
- metadata: {
304
- tags: string[];
305
- };
306
- summary: "Backfill historical actives data (Admin only)";
307
- method: "POST";
308
- body: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
309
- path: "/v2/dashboard/history/backfill/actives";
310
- responses: {
311
- 400: z.ZodObject<{
312
- statusCode: z.ZodNumber;
313
- message: z.ZodString;
314
- code: z.ZodString;
315
- details: z.ZodOptional<z.ZodUnknown>;
316
- timestamp: z.ZodString;
317
- path: z.ZodString;
318
- correlationId: z.ZodOptional<z.ZodString>;
319
- }, "strip", z.ZodTypeAny, {
320
- code: string;
321
- path: string;
322
- message: string;
323
- statusCode: number;
324
- timestamp: string;
325
- details?: unknown;
326
- correlationId?: string | undefined;
327
- }, {
328
- code: string;
329
- path: string;
330
- message: string;
331
- statusCode: number;
332
- timestamp: string;
333
- details?: unknown;
334
- correlationId?: string | undefined;
335
- }>;
336
- 401: z.ZodObject<{
337
- statusCode: z.ZodNumber;
338
- message: z.ZodString;
339
- code: z.ZodString;
340
- details: z.ZodOptional<z.ZodUnknown>;
341
- timestamp: z.ZodString;
342
- path: z.ZodString;
343
- correlationId: z.ZodOptional<z.ZodString>;
344
- }, "strip", z.ZodTypeAny, {
345
- code: string;
346
- path: string;
347
- message: string;
348
- statusCode: number;
349
- timestamp: string;
350
- details?: unknown;
351
- correlationId?: string | undefined;
352
- }, {
353
- code: string;
354
- path: string;
355
- message: string;
356
- statusCode: number;
357
- timestamp: string;
358
- details?: unknown;
359
- correlationId?: string | undefined;
360
- }>;
361
- 500: z.ZodObject<{
362
- statusCode: z.ZodNumber;
363
- message: z.ZodString;
364
- code: z.ZodString;
365
- details: z.ZodOptional<z.ZodUnknown>;
366
- timestamp: z.ZodString;
367
- path: z.ZodString;
368
- correlationId: z.ZodOptional<z.ZodString>;
369
- }, "strip", z.ZodTypeAny, {
370
- code: string;
371
- path: string;
372
- message: string;
373
- statusCode: number;
374
- timestamp: string;
375
- details?: unknown;
376
- correlationId?: string | undefined;
377
- }, {
378
- code: string;
379
- path: string;
380
- message: string;
381
- statusCode: number;
382
- timestamp: string;
383
- details?: unknown;
384
- correlationId?: string | undefined;
385
- }>;
386
- 201: z.ZodUndefined;
387
- 403: z.ZodObject<{
388
- statusCode: z.ZodNumber;
389
- message: z.ZodString;
390
- code: z.ZodString;
391
- details: z.ZodOptional<z.ZodUnknown>;
392
- timestamp: z.ZodString;
393
- path: z.ZodString;
394
- correlationId: z.ZodOptional<z.ZodString>;
395
- }, "strip", z.ZodTypeAny, {
396
- code: string;
397
- path: string;
398
- message: string;
399
- statusCode: number;
400
- timestamp: string;
401
- details?: unknown;
402
- correlationId?: string | undefined;
403
- }, {
404
- code: string;
405
- path: string;
406
- message: string;
407
- statusCode: number;
408
- timestamp: string;
409
- details?: unknown;
410
- correlationId?: string | undefined;
411
- }>;
412
- };
552
+ summary: 'Backfill historical bookings data (Admin only)';
553
+ method: 'POST';
554
+ body: z.ZodObject<{}, 'strip', z.ZodTypeAny, {}, {}>;
555
+ path: '/v2/dashboard/history/backfill/bookings';
556
+ responses: {
557
+ 400: z.ZodObject<
558
+ {
559
+ statusCode: z.ZodNumber;
560
+ message: z.ZodString;
561
+ code: z.ZodString;
562
+ details: z.ZodOptional<z.ZodUnknown>;
563
+ timestamp: z.ZodString;
564
+ path: z.ZodString;
565
+ correlationId: z.ZodOptional<z.ZodString>;
566
+ },
567
+ 'strip',
568
+ z.ZodTypeAny,
569
+ {
570
+ code: string;
571
+ path: string;
572
+ message: string;
573
+ statusCode: number;
574
+ timestamp: string;
575
+ details?: unknown;
576
+ correlationId?: string | undefined;
577
+ },
578
+ {
579
+ code: string;
580
+ path: string;
581
+ message: string;
582
+ statusCode: number;
583
+ timestamp: string;
584
+ details?: unknown;
585
+ correlationId?: string | undefined;
586
+ }
587
+ >;
588
+ 401: z.ZodObject<
589
+ {
590
+ statusCode: z.ZodNumber;
591
+ message: z.ZodString;
592
+ code: z.ZodString;
593
+ details: z.ZodOptional<z.ZodUnknown>;
594
+ timestamp: z.ZodString;
595
+ path: z.ZodString;
596
+ correlationId: z.ZodOptional<z.ZodString>;
597
+ },
598
+ 'strip',
599
+ z.ZodTypeAny,
600
+ {
601
+ code: string;
602
+ path: string;
603
+ message: string;
604
+ statusCode: number;
605
+ timestamp: string;
606
+ details?: unknown;
607
+ correlationId?: string | undefined;
608
+ },
609
+ {
610
+ code: string;
611
+ path: string;
612
+ message: string;
613
+ statusCode: number;
614
+ timestamp: string;
615
+ details?: unknown;
616
+ correlationId?: string | undefined;
617
+ }
618
+ >;
619
+ 500: z.ZodObject<
620
+ {
621
+ statusCode: z.ZodNumber;
622
+ message: z.ZodString;
623
+ code: z.ZodString;
624
+ details: z.ZodOptional<z.ZodUnknown>;
625
+ timestamp: z.ZodString;
626
+ path: z.ZodString;
627
+ correlationId: z.ZodOptional<z.ZodString>;
628
+ },
629
+ 'strip',
630
+ z.ZodTypeAny,
631
+ {
632
+ code: string;
633
+ path: string;
634
+ message: string;
635
+ statusCode: number;
636
+ timestamp: string;
637
+ details?: unknown;
638
+ correlationId?: string | undefined;
639
+ },
640
+ {
641
+ code: string;
642
+ path: string;
643
+ message: string;
644
+ statusCode: number;
645
+ timestamp: string;
646
+ details?: unknown;
647
+ correlationId?: string | undefined;
648
+ }
649
+ >;
650
+ 201: z.ZodUndefined;
651
+ 403: z.ZodObject<
652
+ {
653
+ statusCode: z.ZodNumber;
654
+ message: z.ZodString;
655
+ code: z.ZodString;
656
+ details: z.ZodOptional<z.ZodUnknown>;
657
+ timestamp: z.ZodString;
658
+ path: z.ZodString;
659
+ correlationId: z.ZodOptional<z.ZodString>;
660
+ },
661
+ 'strip',
662
+ z.ZodTypeAny,
663
+ {
664
+ code: string;
665
+ path: string;
666
+ message: string;
667
+ statusCode: number;
668
+ timestamp: string;
669
+ details?: unknown;
670
+ correlationId?: string | undefined;
671
+ },
672
+ {
673
+ code: string;
674
+ path: string;
675
+ message: string;
676
+ statusCode: number;
677
+ timestamp: string;
678
+ details?: unknown;
679
+ correlationId?: string | undefined;
680
+ }
681
+ >;
413
682
  };
414
- backfillBookings: {
415
- metadata: {
416
- tags: string[];
417
- };
418
- summary: "Backfill historical bookings data (Admin only)";
419
- method: "POST";
420
- body: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
421
- path: "/v2/dashboard/history/backfill/bookings";
422
- responses: {
423
- 400: z.ZodObject<{
424
- statusCode: z.ZodNumber;
425
- message: z.ZodString;
426
- code: z.ZodString;
427
- details: z.ZodOptional<z.ZodUnknown>;
428
- timestamp: z.ZodString;
429
- path: z.ZodString;
430
- correlationId: z.ZodOptional<z.ZodString>;
431
- }, "strip", z.ZodTypeAny, {
432
- code: string;
433
- path: string;
434
- message: string;
435
- statusCode: number;
436
- timestamp: string;
437
- details?: unknown;
438
- correlationId?: string | undefined;
439
- }, {
440
- code: string;
441
- path: string;
442
- message: string;
443
- statusCode: number;
444
- timestamp: string;
445
- details?: unknown;
446
- correlationId?: string | undefined;
447
- }>;
448
- 401: z.ZodObject<{
449
- statusCode: z.ZodNumber;
450
- message: z.ZodString;
451
- code: z.ZodString;
452
- details: z.ZodOptional<z.ZodUnknown>;
453
- timestamp: z.ZodString;
454
- path: z.ZodString;
455
- correlationId: z.ZodOptional<z.ZodString>;
456
- }, "strip", z.ZodTypeAny, {
457
- code: string;
458
- path: string;
459
- message: string;
460
- statusCode: number;
461
- timestamp: string;
462
- details?: unknown;
463
- correlationId?: string | undefined;
464
- }, {
465
- code: string;
466
- path: string;
467
- message: string;
468
- statusCode: number;
469
- timestamp: string;
470
- details?: unknown;
471
- correlationId?: string | undefined;
472
- }>;
473
- 500: z.ZodObject<{
474
- statusCode: z.ZodNumber;
475
- message: z.ZodString;
476
- code: z.ZodString;
477
- details: z.ZodOptional<z.ZodUnknown>;
478
- timestamp: z.ZodString;
479
- path: z.ZodString;
480
- correlationId: z.ZodOptional<z.ZodString>;
481
- }, "strip", z.ZodTypeAny, {
482
- code: string;
483
- path: string;
484
- message: string;
485
- statusCode: number;
486
- timestamp: string;
487
- details?: unknown;
488
- correlationId?: string | undefined;
489
- }, {
490
- code: string;
491
- path: string;
492
- message: string;
493
- statusCode: number;
494
- timestamp: string;
495
- details?: unknown;
496
- correlationId?: string | undefined;
497
- }>;
498
- 201: z.ZodUndefined;
499
- 403: z.ZodObject<{
500
- statusCode: z.ZodNumber;
501
- message: z.ZodString;
502
- code: z.ZodString;
503
- details: z.ZodOptional<z.ZodUnknown>;
504
- timestamp: z.ZodString;
505
- path: z.ZodString;
506
- correlationId: z.ZodOptional<z.ZodString>;
507
- }, "strip", z.ZodTypeAny, {
508
- code: string;
509
- path: string;
510
- message: string;
511
- statusCode: number;
512
- timestamp: string;
513
- details?: unknown;
514
- correlationId?: string | undefined;
515
- }, {
516
- code: string;
517
- path: string;
518
- message: string;
519
- statusCode: number;
520
- timestamp: string;
521
- details?: unknown;
522
- correlationId?: string | undefined;
523
- }>;
524
- };
683
+ };
684
+ backfillPerformance: {
685
+ metadata: {
686
+ tags: string[];
525
687
  };
526
- backfillPerformance: {
527
- metadata: {
528
- tags: string[];
529
- };
530
- summary: "Backfill historical performance data (Admin only)";
531
- method: "POST";
532
- body: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
533
- path: "/v2/dashboard/history/backfill/performance";
534
- responses: {
535
- 400: z.ZodObject<{
536
- statusCode: z.ZodNumber;
537
- message: z.ZodString;
538
- code: z.ZodString;
539
- details: z.ZodOptional<z.ZodUnknown>;
540
- timestamp: z.ZodString;
541
- path: z.ZodString;
542
- correlationId: z.ZodOptional<z.ZodString>;
543
- }, "strip", z.ZodTypeAny, {
544
- code: string;
545
- path: string;
546
- message: string;
547
- statusCode: number;
548
- timestamp: string;
549
- details?: unknown;
550
- correlationId?: string | undefined;
551
- }, {
552
- code: string;
553
- path: string;
554
- message: string;
555
- statusCode: number;
556
- timestamp: string;
557
- details?: unknown;
558
- correlationId?: string | undefined;
559
- }>;
560
- 401: z.ZodObject<{
561
- statusCode: z.ZodNumber;
562
- message: z.ZodString;
563
- code: z.ZodString;
564
- details: z.ZodOptional<z.ZodUnknown>;
565
- timestamp: z.ZodString;
566
- path: z.ZodString;
567
- correlationId: z.ZodOptional<z.ZodString>;
568
- }, "strip", z.ZodTypeAny, {
569
- code: string;
570
- path: string;
571
- message: string;
572
- statusCode: number;
573
- timestamp: string;
574
- details?: unknown;
575
- correlationId?: string | undefined;
576
- }, {
577
- code: string;
578
- path: string;
579
- message: string;
580
- statusCode: number;
581
- timestamp: string;
582
- details?: unknown;
583
- correlationId?: string | undefined;
584
- }>;
585
- 500: z.ZodObject<{
586
- statusCode: z.ZodNumber;
587
- message: z.ZodString;
588
- code: z.ZodString;
589
- details: z.ZodOptional<z.ZodUnknown>;
590
- timestamp: z.ZodString;
591
- path: z.ZodString;
592
- correlationId: z.ZodOptional<z.ZodString>;
593
- }, "strip", z.ZodTypeAny, {
594
- code: string;
595
- path: string;
596
- message: string;
597
- statusCode: number;
598
- timestamp: string;
599
- details?: unknown;
600
- correlationId?: string | undefined;
601
- }, {
602
- code: string;
603
- path: string;
604
- message: string;
605
- statusCode: number;
606
- timestamp: string;
607
- details?: unknown;
608
- correlationId?: string | undefined;
609
- }>;
610
- 201: z.ZodUndefined;
611
- 403: z.ZodObject<{
612
- statusCode: z.ZodNumber;
613
- message: z.ZodString;
614
- code: z.ZodString;
615
- details: z.ZodOptional<z.ZodUnknown>;
616
- timestamp: z.ZodString;
617
- path: z.ZodString;
618
- correlationId: z.ZodOptional<z.ZodString>;
619
- }, "strip", z.ZodTypeAny, {
620
- code: string;
621
- path: string;
622
- message: string;
623
- statusCode: number;
624
- timestamp: string;
625
- details?: unknown;
626
- correlationId?: string | undefined;
627
- }, {
628
- code: string;
629
- path: string;
630
- message: string;
631
- statusCode: number;
632
- timestamp: string;
633
- details?: unknown;
634
- correlationId?: string | undefined;
635
- }>;
636
- };
688
+ summary: 'Backfill historical performance data (Admin only)';
689
+ method: 'POST';
690
+ body: z.ZodObject<{}, 'strip', z.ZodTypeAny, {}, {}>;
691
+ path: '/v2/dashboard/history/backfill/performance';
692
+ responses: {
693
+ 400: z.ZodObject<
694
+ {
695
+ statusCode: z.ZodNumber;
696
+ message: z.ZodString;
697
+ code: z.ZodString;
698
+ details: z.ZodOptional<z.ZodUnknown>;
699
+ timestamp: z.ZodString;
700
+ path: z.ZodString;
701
+ correlationId: z.ZodOptional<z.ZodString>;
702
+ },
703
+ 'strip',
704
+ z.ZodTypeAny,
705
+ {
706
+ code: string;
707
+ path: string;
708
+ message: string;
709
+ statusCode: number;
710
+ timestamp: string;
711
+ details?: unknown;
712
+ correlationId?: string | undefined;
713
+ },
714
+ {
715
+ code: string;
716
+ path: string;
717
+ message: string;
718
+ statusCode: number;
719
+ timestamp: string;
720
+ details?: unknown;
721
+ correlationId?: string | undefined;
722
+ }
723
+ >;
724
+ 401: z.ZodObject<
725
+ {
726
+ statusCode: z.ZodNumber;
727
+ message: z.ZodString;
728
+ code: z.ZodString;
729
+ details: z.ZodOptional<z.ZodUnknown>;
730
+ timestamp: z.ZodString;
731
+ path: z.ZodString;
732
+ correlationId: z.ZodOptional<z.ZodString>;
733
+ },
734
+ 'strip',
735
+ z.ZodTypeAny,
736
+ {
737
+ code: string;
738
+ path: string;
739
+ message: string;
740
+ statusCode: number;
741
+ timestamp: string;
742
+ details?: unknown;
743
+ correlationId?: string | undefined;
744
+ },
745
+ {
746
+ code: string;
747
+ path: string;
748
+ message: string;
749
+ statusCode: number;
750
+ timestamp: string;
751
+ details?: unknown;
752
+ correlationId?: string | undefined;
753
+ }
754
+ >;
755
+ 500: z.ZodObject<
756
+ {
757
+ statusCode: z.ZodNumber;
758
+ message: z.ZodString;
759
+ code: z.ZodString;
760
+ details: z.ZodOptional<z.ZodUnknown>;
761
+ timestamp: z.ZodString;
762
+ path: z.ZodString;
763
+ correlationId: z.ZodOptional<z.ZodString>;
764
+ },
765
+ 'strip',
766
+ z.ZodTypeAny,
767
+ {
768
+ code: string;
769
+ path: string;
770
+ message: string;
771
+ statusCode: number;
772
+ timestamp: string;
773
+ details?: unknown;
774
+ correlationId?: string | undefined;
775
+ },
776
+ {
777
+ code: string;
778
+ path: string;
779
+ message: string;
780
+ statusCode: number;
781
+ timestamp: string;
782
+ details?: unknown;
783
+ correlationId?: string | undefined;
784
+ }
785
+ >;
786
+ 201: z.ZodUndefined;
787
+ 403: z.ZodObject<
788
+ {
789
+ statusCode: z.ZodNumber;
790
+ message: z.ZodString;
791
+ code: z.ZodString;
792
+ details: z.ZodOptional<z.ZodUnknown>;
793
+ timestamp: z.ZodString;
794
+ path: z.ZodString;
795
+ correlationId: z.ZodOptional<z.ZodString>;
796
+ },
797
+ 'strip',
798
+ z.ZodTypeAny,
799
+ {
800
+ code: string;
801
+ path: string;
802
+ message: string;
803
+ statusCode: number;
804
+ timestamp: string;
805
+ details?: unknown;
806
+ correlationId?: string | undefined;
807
+ },
808
+ {
809
+ code: string;
810
+ path: string;
811
+ message: string;
812
+ statusCode: number;
813
+ timestamp: string;
814
+ details?: unknown;
815
+ correlationId?: string | undefined;
816
+ }
817
+ >;
637
818
  };
819
+ };
638
820
  };
639
- //# sourceMappingURL=agent-daily-metrics.contract.d.ts.map
821
+ //# sourceMappingURL=agent-daily-metrics.contract.d.ts.map