@dakkitor/api-contracts 1.1.26 → 1.1.28
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.
- package/dist/actives/actives.contract.d.ts +4899 -597
- package/dist/actives/actives.contract.d.ts.map +1 -1
- package/dist/actives/actives.contract.js +0 -1
- package/dist/agent-client-links/agent-client-links.contract.d.ts +487 -487
- package/dist/agent-client-links/agent-client-links.contract.d.ts.map +1 -1
- package/dist/agent-client-links/agent-client-links.contract.js +2 -0
- package/dist/auth/auth.contract.d.ts +4 -4
- package/dist/bookings/bookings.contract.d.ts +5657 -1430
- package/dist/bookings/bookings.contract.d.ts.map +1 -1
- package/dist/bookings/bookings.contract.js +6 -6
- package/dist/call-history/call-history.contract.d.ts +1188 -262
- package/dist/call-history/call-history.contract.d.ts.map +1 -1
- package/dist/call-history/call-history.contract.js +3 -4
- package/dist/client-contacts/client-contacts.contract.d.ts +515 -515
- package/dist/clients/clients.contract.d.ts +380 -380
- package/dist/clients/clients.contract.d.ts.map +1 -1
- package/dist/clients/clients.contract.js +8 -2
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +3349 -1023
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts.map +1 -1
- package/dist/collaboration-checkings/collaboration-checkings.contract.js +3 -10
- package/dist/collaborations/collaborations.contract.d.ts +2934 -219
- package/dist/collaborations/collaborations.contract.d.ts.map +1 -1
- package/dist/collaborations/collaborations.contract.js +19 -33
- package/dist/common/common-schemas.d.ts +6 -6
- package/dist/common/common-schemas.d.ts.map +1 -1
- package/dist/common/common-schemas.js +3 -5
- package/dist/common/error-schemas.d.ts +6 -6
- package/dist/companies/companies.contract.d.ts +212 -212
- package/dist/cron-executions/cron-executions.contract.d.ts +228 -228
- package/dist/curated-workers/curated-workers.contract.d.ts +366 -366
- package/dist/curated-workers/curated-workers.contract.d.ts.map +1 -1
- package/dist/curated-workers/curated-workers.contract.js +4 -10
- package/dist/dashboards/agent-daily-metrics.contract.d.ts +120 -120
- package/dist/files/files.contract.d.ts +228 -228
- package/dist/health/health.contract.d.ts +22 -22
- package/dist/jobs/jobs.contract.d.ts +3517 -511
- package/dist/jobs/jobs.contract.d.ts.map +1 -1
- package/dist/jobs/jobs.contract.js +36 -17
- package/dist/lead-assignments/lead-assignments.contract.d.ts +272 -272
- package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +63 -63
- package/dist/lead-distribution/lead-distribution-config.contract.d.ts +146 -146
- package/dist/leads/leads.contract.d.ts +316 -316
- package/dist/locations/locations.contract.d.ts +161 -161
- package/dist/postcodes/postcodes.contract.d.ts +66 -66
- package/dist/qualifications/qualifications.contract.d.ts +256 -256
- package/dist/trades/trades.contract.d.ts +160 -160
- package/dist/users/users.contract.d.ts +100 -100
- package/dist/workers/workers.contract.d.ts +129 -75
- package/dist/workers/workers.contract.d.ts.map +1 -1
- package/dist/workers/workers.contract.js +20 -13
- package/package.json +1 -1
- package/dist/common/api-responses.d.ts +0 -105
- package/dist/common/api-responses.d.ts.map +0 -1
- package/dist/common/api-responses.js +0 -107
|
@@ -15,8 +15,8 @@ export declare const CronExecutionHistorySchema: z.ZodObject<{
|
|
|
15
15
|
}, "strip", z.ZodTypeAny, {
|
|
16
16
|
status: string;
|
|
17
17
|
id: string;
|
|
18
|
-
startedAt: string;
|
|
19
18
|
jobName: string;
|
|
19
|
+
startedAt: string;
|
|
20
20
|
completedAt?: string | null | undefined;
|
|
21
21
|
durationMs?: number | null | undefined;
|
|
22
22
|
recordsProcessed?: number | null | undefined;
|
|
@@ -26,8 +26,8 @@ export declare const CronExecutionHistorySchema: z.ZodObject<{
|
|
|
26
26
|
}, {
|
|
27
27
|
status: string;
|
|
28
28
|
id: string;
|
|
29
|
-
startedAt: string;
|
|
30
29
|
jobName: string;
|
|
30
|
+
startedAt: string;
|
|
31
31
|
completedAt?: string | null | undefined;
|
|
32
32
|
durationMs?: number | null | undefined;
|
|
33
33
|
recordsProcessed?: number | null | undefined;
|
|
@@ -170,7 +170,7 @@ export declare const CronExecutionFilterSchema: z.ZodObject<{
|
|
|
170
170
|
}, "strip", z.ZodTypeAny, {
|
|
171
171
|
limit: number;
|
|
172
172
|
page: number;
|
|
173
|
-
sortBy?: "status" | "createdAt" | "
|
|
173
|
+
sortBy?: "status" | "createdAt" | "jobName" | "startedAt" | "completedAt" | "durationMs" | undefined;
|
|
174
174
|
sortOrder?: "ASC" | "DESC" | undefined;
|
|
175
175
|
jobNames?: ("GENERATE_DAILY_ACTIVES" | "CLEANUP_ORPHANED_FILES" | "CLEANUP_ARCHIVED_FILES" | "UPDATE_AGENT_PERFORMANCE")[] | undefined;
|
|
176
176
|
statuses?: ("SUCCESS" | "FAILED" | "PARTIAL")[] | undefined;
|
|
@@ -179,7 +179,7 @@ export declare const CronExecutionFilterSchema: z.ZodObject<{
|
|
|
179
179
|
}, {
|
|
180
180
|
limit?: number | undefined;
|
|
181
181
|
page?: number | undefined;
|
|
182
|
-
sortBy?: "status" | "createdAt" | "
|
|
182
|
+
sortBy?: "status" | "createdAt" | "jobName" | "startedAt" | "completedAt" | "durationMs" | undefined;
|
|
183
183
|
sortOrder?: "ASC" | "DESC" | undefined;
|
|
184
184
|
jobNames?: "GENERATE_DAILY_ACTIVES" | "CLEANUP_ORPHANED_FILES" | "CLEANUP_ARCHIVED_FILES" | "UPDATE_AGENT_PERFORMANCE" | ("GENERATE_DAILY_ACTIVES" | "CLEANUP_ORPHANED_FILES" | "CLEANUP_ARCHIVED_FILES" | "UPDATE_AGENT_PERFORMANCE")[] | undefined;
|
|
185
185
|
statuses?: "SUCCESS" | "FAILED" | "PARTIAL" | ("SUCCESS" | "FAILED" | "PARTIAL")[] | undefined;
|
|
@@ -201,8 +201,8 @@ export declare const PaginatedCronExecutionHistorySchema: z.ZodObject<{
|
|
|
201
201
|
}, "strip", z.ZodTypeAny, {
|
|
202
202
|
status: string;
|
|
203
203
|
id: string;
|
|
204
|
-
startedAt: string;
|
|
205
204
|
jobName: string;
|
|
205
|
+
startedAt: string;
|
|
206
206
|
completedAt?: string | null | undefined;
|
|
207
207
|
durationMs?: number | null | undefined;
|
|
208
208
|
recordsProcessed?: number | null | undefined;
|
|
@@ -212,8 +212,8 @@ export declare const PaginatedCronExecutionHistorySchema: z.ZodObject<{
|
|
|
212
212
|
}, {
|
|
213
213
|
status: string;
|
|
214
214
|
id: string;
|
|
215
|
-
startedAt: string;
|
|
216
215
|
jobName: string;
|
|
216
|
+
startedAt: string;
|
|
217
217
|
completedAt?: string | null | undefined;
|
|
218
218
|
durationMs?: number | null | undefined;
|
|
219
219
|
recordsProcessed?: number | null | undefined;
|
|
@@ -227,11 +227,12 @@ export declare const PaginatedCronExecutionHistorySchema: z.ZodObject<{
|
|
|
227
227
|
currentPage: z.ZodNumber;
|
|
228
228
|
totalPages: z.ZodNumber;
|
|
229
229
|
}, "strip", z.ZodTypeAny, {
|
|
230
|
+
limit: number;
|
|
230
231
|
items: {
|
|
231
232
|
status: string;
|
|
232
233
|
id: string;
|
|
233
|
-
startedAt: string;
|
|
234
234
|
jobName: string;
|
|
235
|
+
startedAt: string;
|
|
235
236
|
completedAt?: string | null | undefined;
|
|
236
237
|
durationMs?: number | null | undefined;
|
|
237
238
|
recordsProcessed?: number | null | undefined;
|
|
@@ -240,16 +241,16 @@ export declare const PaginatedCronExecutionHistorySchema: z.ZodObject<{
|
|
|
240
241
|
errorMessage?: string | null | undefined;
|
|
241
242
|
}[];
|
|
242
243
|
totalCount: number;
|
|
243
|
-
limit: number;
|
|
244
244
|
skip: number;
|
|
245
245
|
currentPage: number;
|
|
246
246
|
totalPages: number;
|
|
247
247
|
}, {
|
|
248
|
+
limit: number;
|
|
248
249
|
items: {
|
|
249
250
|
status: string;
|
|
250
251
|
id: string;
|
|
251
|
-
startedAt: string;
|
|
252
252
|
jobName: string;
|
|
253
|
+
startedAt: string;
|
|
253
254
|
completedAt?: string | null | undefined;
|
|
254
255
|
durationMs?: number | null | undefined;
|
|
255
256
|
recordsProcessed?: number | null | undefined;
|
|
@@ -258,7 +259,6 @@ export declare const PaginatedCronExecutionHistorySchema: z.ZodObject<{
|
|
|
258
259
|
errorMessage?: string | null | undefined;
|
|
259
260
|
}[];
|
|
260
261
|
totalCount: number;
|
|
261
|
-
limit: number;
|
|
262
262
|
skip: number;
|
|
263
263
|
currentPage: number;
|
|
264
264
|
totalPages: number;
|
|
@@ -332,6 +332,7 @@ export declare const PaginatedCronJobHealthSchema: z.ZodObject<{
|
|
|
332
332
|
currentPage: z.ZodNumber;
|
|
333
333
|
totalPages: z.ZodNumber;
|
|
334
334
|
}, "strip", z.ZodTypeAny, {
|
|
335
|
+
limit: number;
|
|
335
336
|
items: {
|
|
336
337
|
jobName: string;
|
|
337
338
|
lastExecutionAt: string;
|
|
@@ -349,11 +350,11 @@ export declare const PaginatedCronJobHealthSchema: z.ZodObject<{
|
|
|
349
350
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
350
351
|
}[];
|
|
351
352
|
totalCount: number;
|
|
352
|
-
limit: number;
|
|
353
353
|
skip: number;
|
|
354
354
|
currentPage: number;
|
|
355
355
|
totalPages: number;
|
|
356
356
|
}, {
|
|
357
|
+
limit: number;
|
|
357
358
|
items: {
|
|
358
359
|
jobName: string;
|
|
359
360
|
lastExecutionAt: string;
|
|
@@ -371,7 +372,6 @@ export declare const PaginatedCronJobHealthSchema: z.ZodObject<{
|
|
|
371
372
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
372
373
|
}[];
|
|
373
374
|
totalCount: number;
|
|
374
|
-
limit: number;
|
|
375
375
|
skip: number;
|
|
376
376
|
currentPage: number;
|
|
377
377
|
totalPages: number;
|
|
@@ -387,9 +387,6 @@ export type PaginatedCronExecutionHistory = z.infer<typeof PaginatedCronExecutio
|
|
|
387
387
|
export type PaginatedCronJobHealth = z.infer<typeof PaginatedCronJobHealthSchema>;
|
|
388
388
|
export declare const cronExecutionsContract: {
|
|
389
389
|
findAll: {
|
|
390
|
-
metadata: {
|
|
391
|
-
tags: string[];
|
|
392
|
-
};
|
|
393
390
|
query: z.ZodObject<{
|
|
394
391
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
395
392
|
page: z.ZodDefault<z.ZodNumber>;
|
|
@@ -403,7 +400,7 @@ export declare const cronExecutionsContract: {
|
|
|
403
400
|
}, "strip", z.ZodTypeAny, {
|
|
404
401
|
limit: number;
|
|
405
402
|
page: number;
|
|
406
|
-
sortBy?: "status" | "createdAt" | "
|
|
403
|
+
sortBy?: "status" | "createdAt" | "jobName" | "startedAt" | "completedAt" | "durationMs" | undefined;
|
|
407
404
|
sortOrder?: "ASC" | "DESC" | undefined;
|
|
408
405
|
jobNames?: ("GENERATE_DAILY_ACTIVES" | "CLEANUP_ORPHANED_FILES" | "CLEANUP_ARCHIVED_FILES" | "UPDATE_AGENT_PERFORMANCE")[] | undefined;
|
|
409
406
|
statuses?: ("SUCCESS" | "FAILED" | "PARTIAL")[] | undefined;
|
|
@@ -412,13 +409,16 @@ export declare const cronExecutionsContract: {
|
|
|
412
409
|
}, {
|
|
413
410
|
limit?: number | undefined;
|
|
414
411
|
page?: number | undefined;
|
|
415
|
-
sortBy?: "status" | "createdAt" | "
|
|
412
|
+
sortBy?: "status" | "createdAt" | "jobName" | "startedAt" | "completedAt" | "durationMs" | undefined;
|
|
416
413
|
sortOrder?: "ASC" | "DESC" | undefined;
|
|
417
414
|
jobNames?: "GENERATE_DAILY_ACTIVES" | "CLEANUP_ORPHANED_FILES" | "CLEANUP_ARCHIVED_FILES" | "UPDATE_AGENT_PERFORMANCE" | ("GENERATE_DAILY_ACTIVES" | "CLEANUP_ORPHANED_FILES" | "CLEANUP_ARCHIVED_FILES" | "UPDATE_AGENT_PERFORMANCE")[] | undefined;
|
|
418
415
|
statuses?: "SUCCESS" | "FAILED" | "PARTIAL" | ("SUCCESS" | "FAILED" | "PARTIAL")[] | undefined;
|
|
419
416
|
startedAfter?: string | undefined;
|
|
420
417
|
startedBefore?: string | undefined;
|
|
421
418
|
}>;
|
|
419
|
+
metadata: {
|
|
420
|
+
tags: string[];
|
|
421
|
+
};
|
|
422
422
|
summary: "List all cron executions";
|
|
423
423
|
method: "GET";
|
|
424
424
|
path: "/v2/cron-executions";
|
|
@@ -432,19 +432,19 @@ export declare const cronExecutionsContract: {
|
|
|
432
432
|
path: z.ZodString;
|
|
433
433
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
434
434
|
}, "strip", z.ZodTypeAny, {
|
|
435
|
-
statusCode: number;
|
|
436
|
-
message: string;
|
|
437
435
|
code: string;
|
|
438
|
-
timestamp: string;
|
|
439
436
|
path: string;
|
|
437
|
+
message: string;
|
|
438
|
+
statusCode: number;
|
|
439
|
+
timestamp: string;
|
|
440
440
|
details?: unknown;
|
|
441
441
|
correlationId?: string | undefined;
|
|
442
442
|
}, {
|
|
443
|
-
statusCode: number;
|
|
444
|
-
message: string;
|
|
445
443
|
code: string;
|
|
446
|
-
timestamp: string;
|
|
447
444
|
path: string;
|
|
445
|
+
message: string;
|
|
446
|
+
statusCode: number;
|
|
447
|
+
timestamp: string;
|
|
448
448
|
details?: unknown;
|
|
449
449
|
correlationId?: string | undefined;
|
|
450
450
|
}>;
|
|
@@ -457,19 +457,19 @@ export declare const cronExecutionsContract: {
|
|
|
457
457
|
path: z.ZodString;
|
|
458
458
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
459
459
|
}, "strip", z.ZodTypeAny, {
|
|
460
|
-
statusCode: number;
|
|
461
|
-
message: string;
|
|
462
460
|
code: string;
|
|
463
|
-
timestamp: string;
|
|
464
461
|
path: string;
|
|
462
|
+
message: string;
|
|
463
|
+
statusCode: number;
|
|
464
|
+
timestamp: string;
|
|
465
465
|
details?: unknown;
|
|
466
466
|
correlationId?: string | undefined;
|
|
467
467
|
}, {
|
|
468
|
-
statusCode: number;
|
|
469
|
-
message: string;
|
|
470
468
|
code: string;
|
|
471
|
-
timestamp: string;
|
|
472
469
|
path: string;
|
|
470
|
+
message: string;
|
|
471
|
+
statusCode: number;
|
|
472
|
+
timestamp: string;
|
|
473
473
|
details?: unknown;
|
|
474
474
|
correlationId?: string | undefined;
|
|
475
475
|
}>;
|
|
@@ -482,19 +482,19 @@ export declare const cronExecutionsContract: {
|
|
|
482
482
|
path: z.ZodString;
|
|
483
483
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
484
484
|
}, "strip", z.ZodTypeAny, {
|
|
485
|
-
statusCode: number;
|
|
486
|
-
message: string;
|
|
487
485
|
code: string;
|
|
488
|
-
timestamp: string;
|
|
489
486
|
path: string;
|
|
487
|
+
message: string;
|
|
488
|
+
statusCode: number;
|
|
489
|
+
timestamp: string;
|
|
490
490
|
details?: unknown;
|
|
491
491
|
correlationId?: string | undefined;
|
|
492
492
|
}, {
|
|
493
|
-
statusCode: number;
|
|
494
|
-
message: string;
|
|
495
493
|
code: string;
|
|
496
|
-
timestamp: string;
|
|
497
494
|
path: string;
|
|
495
|
+
message: string;
|
|
496
|
+
statusCode: number;
|
|
497
|
+
timestamp: string;
|
|
498
498
|
details?: unknown;
|
|
499
499
|
correlationId?: string | undefined;
|
|
500
500
|
}>;
|
|
@@ -513,8 +513,8 @@ export declare const cronExecutionsContract: {
|
|
|
513
513
|
}, "strip", z.ZodTypeAny, {
|
|
514
514
|
status: string;
|
|
515
515
|
id: string;
|
|
516
|
-
startedAt: string;
|
|
517
516
|
jobName: string;
|
|
517
|
+
startedAt: string;
|
|
518
518
|
completedAt?: string | null | undefined;
|
|
519
519
|
durationMs?: number | null | undefined;
|
|
520
520
|
recordsProcessed?: number | null | undefined;
|
|
@@ -524,8 +524,8 @@ export declare const cronExecutionsContract: {
|
|
|
524
524
|
}, {
|
|
525
525
|
status: string;
|
|
526
526
|
id: string;
|
|
527
|
-
startedAt: string;
|
|
528
527
|
jobName: string;
|
|
528
|
+
startedAt: string;
|
|
529
529
|
completedAt?: string | null | undefined;
|
|
530
530
|
durationMs?: number | null | undefined;
|
|
531
531
|
recordsProcessed?: number | null | undefined;
|
|
@@ -539,11 +539,12 @@ export declare const cronExecutionsContract: {
|
|
|
539
539
|
currentPage: z.ZodNumber;
|
|
540
540
|
totalPages: z.ZodNumber;
|
|
541
541
|
}, "strip", z.ZodTypeAny, {
|
|
542
|
+
limit: number;
|
|
542
543
|
items: {
|
|
543
544
|
status: string;
|
|
544
545
|
id: string;
|
|
545
|
-
startedAt: string;
|
|
546
546
|
jobName: string;
|
|
547
|
+
startedAt: string;
|
|
547
548
|
completedAt?: string | null | undefined;
|
|
548
549
|
durationMs?: number | null | undefined;
|
|
549
550
|
recordsProcessed?: number | null | undefined;
|
|
@@ -552,16 +553,16 @@ export declare const cronExecutionsContract: {
|
|
|
552
553
|
errorMessage?: string | null | undefined;
|
|
553
554
|
}[];
|
|
554
555
|
totalCount: number;
|
|
555
|
-
limit: number;
|
|
556
556
|
skip: number;
|
|
557
557
|
currentPage: number;
|
|
558
558
|
totalPages: number;
|
|
559
559
|
}, {
|
|
560
|
+
limit: number;
|
|
560
561
|
items: {
|
|
561
562
|
status: string;
|
|
562
563
|
id: string;
|
|
563
|
-
startedAt: string;
|
|
564
564
|
jobName: string;
|
|
565
|
+
startedAt: string;
|
|
565
566
|
completedAt?: string | null | undefined;
|
|
566
567
|
durationMs?: number | null | undefined;
|
|
567
568
|
recordsProcessed?: number | null | undefined;
|
|
@@ -570,7 +571,6 @@ export declare const cronExecutionsContract: {
|
|
|
570
571
|
errorMessage?: string | null | undefined;
|
|
571
572
|
}[];
|
|
572
573
|
totalCount: number;
|
|
573
|
-
limit: number;
|
|
574
574
|
skip: number;
|
|
575
575
|
currentPage: number;
|
|
576
576
|
totalPages: number;
|
|
@@ -584,19 +584,19 @@ export declare const cronExecutionsContract: {
|
|
|
584
584
|
path: z.ZodString;
|
|
585
585
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
586
586
|
}, "strip", z.ZodTypeAny, {
|
|
587
|
-
statusCode: number;
|
|
588
|
-
message: string;
|
|
589
587
|
code: string;
|
|
590
|
-
timestamp: string;
|
|
591
588
|
path: string;
|
|
589
|
+
message: string;
|
|
590
|
+
statusCode: number;
|
|
591
|
+
timestamp: string;
|
|
592
592
|
details?: unknown;
|
|
593
593
|
correlationId?: string | undefined;
|
|
594
594
|
}, {
|
|
595
|
-
statusCode: number;
|
|
596
|
-
message: string;
|
|
597
595
|
code: string;
|
|
598
|
-
timestamp: string;
|
|
599
596
|
path: string;
|
|
597
|
+
message: string;
|
|
598
|
+
statusCode: number;
|
|
599
|
+
timestamp: string;
|
|
600
600
|
details?: unknown;
|
|
601
601
|
correlationId?: string | undefined;
|
|
602
602
|
}>;
|
|
@@ -619,19 +619,19 @@ export declare const cronExecutionsContract: {
|
|
|
619
619
|
path: z.ZodString;
|
|
620
620
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
621
621
|
}, "strip", z.ZodTypeAny, {
|
|
622
|
-
statusCode: number;
|
|
623
|
-
message: string;
|
|
624
622
|
code: string;
|
|
625
|
-
timestamp: string;
|
|
626
623
|
path: string;
|
|
624
|
+
message: string;
|
|
625
|
+
statusCode: number;
|
|
626
|
+
timestamp: string;
|
|
627
627
|
details?: unknown;
|
|
628
628
|
correlationId?: string | undefined;
|
|
629
629
|
}, {
|
|
630
|
-
statusCode: number;
|
|
631
|
-
message: string;
|
|
632
630
|
code: string;
|
|
633
|
-
timestamp: string;
|
|
634
631
|
path: string;
|
|
632
|
+
message: string;
|
|
633
|
+
statusCode: number;
|
|
634
|
+
timestamp: string;
|
|
635
635
|
details?: unknown;
|
|
636
636
|
correlationId?: string | undefined;
|
|
637
637
|
}>;
|
|
@@ -644,19 +644,19 @@ export declare const cronExecutionsContract: {
|
|
|
644
644
|
path: z.ZodString;
|
|
645
645
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
646
646
|
}, "strip", z.ZodTypeAny, {
|
|
647
|
-
statusCode: number;
|
|
648
|
-
message: string;
|
|
649
647
|
code: string;
|
|
650
|
-
timestamp: string;
|
|
651
648
|
path: string;
|
|
649
|
+
message: string;
|
|
650
|
+
statusCode: number;
|
|
651
|
+
timestamp: string;
|
|
652
652
|
details?: unknown;
|
|
653
653
|
correlationId?: string | undefined;
|
|
654
654
|
}, {
|
|
655
|
-
statusCode: number;
|
|
656
|
-
message: string;
|
|
657
655
|
code: string;
|
|
658
|
-
timestamp: string;
|
|
659
656
|
path: string;
|
|
657
|
+
message: string;
|
|
658
|
+
statusCode: number;
|
|
659
|
+
timestamp: string;
|
|
660
660
|
details?: unknown;
|
|
661
661
|
correlationId?: string | undefined;
|
|
662
662
|
}>;
|
|
@@ -669,19 +669,19 @@ export declare const cronExecutionsContract: {
|
|
|
669
669
|
path: z.ZodString;
|
|
670
670
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
671
671
|
}, "strip", z.ZodTypeAny, {
|
|
672
|
-
statusCode: number;
|
|
673
|
-
message: string;
|
|
674
672
|
code: string;
|
|
675
|
-
timestamp: string;
|
|
676
673
|
path: string;
|
|
674
|
+
message: string;
|
|
675
|
+
statusCode: number;
|
|
676
|
+
timestamp: string;
|
|
677
677
|
details?: unknown;
|
|
678
678
|
correlationId?: string | undefined;
|
|
679
679
|
}, {
|
|
680
|
-
statusCode: number;
|
|
681
|
-
message: string;
|
|
682
680
|
code: string;
|
|
683
|
-
timestamp: string;
|
|
684
681
|
path: string;
|
|
682
|
+
message: string;
|
|
683
|
+
statusCode: number;
|
|
684
|
+
timestamp: string;
|
|
685
685
|
details?: unknown;
|
|
686
686
|
correlationId?: string | undefined;
|
|
687
687
|
}>;
|
|
@@ -716,28 +716,25 @@ export declare const cronExecutionsContract: {
|
|
|
716
716
|
path: z.ZodString;
|
|
717
717
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
718
718
|
}, "strip", z.ZodTypeAny, {
|
|
719
|
-
statusCode: number;
|
|
720
|
-
message: string;
|
|
721
719
|
code: string;
|
|
722
|
-
timestamp: string;
|
|
723
720
|
path: string;
|
|
721
|
+
message: string;
|
|
722
|
+
statusCode: number;
|
|
723
|
+
timestamp: string;
|
|
724
724
|
details?: unknown;
|
|
725
725
|
correlationId?: string | undefined;
|
|
726
726
|
}, {
|
|
727
|
-
statusCode: number;
|
|
728
|
-
message: string;
|
|
729
727
|
code: string;
|
|
730
|
-
timestamp: string;
|
|
731
728
|
path: string;
|
|
729
|
+
message: string;
|
|
730
|
+
statusCode: number;
|
|
731
|
+
timestamp: string;
|
|
732
732
|
details?: unknown;
|
|
733
733
|
correlationId?: string | undefined;
|
|
734
734
|
}>;
|
|
735
735
|
};
|
|
736
736
|
};
|
|
737
737
|
getHealthStatus: {
|
|
738
|
-
metadata: {
|
|
739
|
-
tags: string[];
|
|
740
|
-
};
|
|
741
738
|
query: z.ZodObject<{
|
|
742
739
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
743
740
|
page: z.ZodDefault<z.ZodNumber>;
|
|
@@ -748,6 +745,9 @@ export declare const cronExecutionsContract: {
|
|
|
748
745
|
limit?: number | undefined;
|
|
749
746
|
page?: number | undefined;
|
|
750
747
|
}>;
|
|
748
|
+
metadata: {
|
|
749
|
+
tags: string[];
|
|
750
|
+
};
|
|
751
751
|
summary: "Get health status for all cron jobs";
|
|
752
752
|
method: "GET";
|
|
753
753
|
path: "/v2/cron-executions/health";
|
|
@@ -761,19 +761,19 @@ export declare const cronExecutionsContract: {
|
|
|
761
761
|
path: z.ZodString;
|
|
762
762
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
763
763
|
}, "strip", z.ZodTypeAny, {
|
|
764
|
-
statusCode: number;
|
|
765
|
-
message: string;
|
|
766
764
|
code: string;
|
|
767
|
-
timestamp: string;
|
|
768
765
|
path: string;
|
|
766
|
+
message: string;
|
|
767
|
+
statusCode: number;
|
|
768
|
+
timestamp: string;
|
|
769
769
|
details?: unknown;
|
|
770
770
|
correlationId?: string | undefined;
|
|
771
771
|
}, {
|
|
772
|
-
statusCode: number;
|
|
773
|
-
message: string;
|
|
774
772
|
code: string;
|
|
775
|
-
timestamp: string;
|
|
776
773
|
path: string;
|
|
774
|
+
message: string;
|
|
775
|
+
statusCode: number;
|
|
776
|
+
timestamp: string;
|
|
777
777
|
details?: unknown;
|
|
778
778
|
correlationId?: string | undefined;
|
|
779
779
|
}>;
|
|
@@ -786,19 +786,19 @@ export declare const cronExecutionsContract: {
|
|
|
786
786
|
path: z.ZodString;
|
|
787
787
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
788
788
|
}, "strip", z.ZodTypeAny, {
|
|
789
|
-
statusCode: number;
|
|
790
|
-
message: string;
|
|
791
789
|
code: string;
|
|
792
|
-
timestamp: string;
|
|
793
790
|
path: string;
|
|
791
|
+
message: string;
|
|
792
|
+
statusCode: number;
|
|
793
|
+
timestamp: string;
|
|
794
794
|
details?: unknown;
|
|
795
795
|
correlationId?: string | undefined;
|
|
796
796
|
}, {
|
|
797
|
-
statusCode: number;
|
|
798
|
-
message: string;
|
|
799
797
|
code: string;
|
|
800
|
-
timestamp: string;
|
|
801
798
|
path: string;
|
|
799
|
+
message: string;
|
|
800
|
+
statusCode: number;
|
|
801
|
+
timestamp: string;
|
|
802
802
|
details?: unknown;
|
|
803
803
|
correlationId?: string | undefined;
|
|
804
804
|
}>;
|
|
@@ -811,19 +811,19 @@ export declare const cronExecutionsContract: {
|
|
|
811
811
|
path: z.ZodString;
|
|
812
812
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
813
813
|
}, "strip", z.ZodTypeAny, {
|
|
814
|
-
statusCode: number;
|
|
815
|
-
message: string;
|
|
816
814
|
code: string;
|
|
817
|
-
timestamp: string;
|
|
818
815
|
path: string;
|
|
816
|
+
message: string;
|
|
817
|
+
statusCode: number;
|
|
818
|
+
timestamp: string;
|
|
819
819
|
details?: unknown;
|
|
820
820
|
correlationId?: string | undefined;
|
|
821
821
|
}, {
|
|
822
|
-
statusCode: number;
|
|
823
|
-
message: string;
|
|
824
822
|
code: string;
|
|
825
|
-
timestamp: string;
|
|
826
823
|
path: string;
|
|
824
|
+
message: string;
|
|
825
|
+
statusCode: number;
|
|
826
|
+
timestamp: string;
|
|
827
827
|
details?: unknown;
|
|
828
828
|
correlationId?: string | undefined;
|
|
829
829
|
}>;
|
|
@@ -896,6 +896,7 @@ export declare const cronExecutionsContract: {
|
|
|
896
896
|
currentPage: z.ZodNumber;
|
|
897
897
|
totalPages: z.ZodNumber;
|
|
898
898
|
}, "strip", z.ZodTypeAny, {
|
|
899
|
+
limit: number;
|
|
899
900
|
items: {
|
|
900
901
|
jobName: string;
|
|
901
902
|
lastExecutionAt: string;
|
|
@@ -913,11 +914,11 @@ export declare const cronExecutionsContract: {
|
|
|
913
914
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
914
915
|
}[];
|
|
915
916
|
totalCount: number;
|
|
916
|
-
limit: number;
|
|
917
917
|
skip: number;
|
|
918
918
|
currentPage: number;
|
|
919
919
|
totalPages: number;
|
|
920
920
|
}, {
|
|
921
|
+
limit: number;
|
|
921
922
|
items: {
|
|
922
923
|
jobName: string;
|
|
923
924
|
lastExecutionAt: string;
|
|
@@ -935,7 +936,6 @@ export declare const cronExecutionsContract: {
|
|
|
935
936
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
936
937
|
}[];
|
|
937
938
|
totalCount: number;
|
|
938
|
-
limit: number;
|
|
939
939
|
skip: number;
|
|
940
940
|
currentPage: number;
|
|
941
941
|
totalPages: number;
|
|
@@ -949,19 +949,19 @@ export declare const cronExecutionsContract: {
|
|
|
949
949
|
path: z.ZodString;
|
|
950
950
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
951
951
|
}, "strip", z.ZodTypeAny, {
|
|
952
|
-
statusCode: number;
|
|
953
|
-
message: string;
|
|
954
952
|
code: string;
|
|
955
|
-
timestamp: string;
|
|
956
953
|
path: string;
|
|
954
|
+
message: string;
|
|
955
|
+
statusCode: number;
|
|
956
|
+
timestamp: string;
|
|
957
957
|
details?: unknown;
|
|
958
958
|
correlationId?: string | undefined;
|
|
959
959
|
}, {
|
|
960
|
-
statusCode: number;
|
|
961
|
-
message: string;
|
|
962
960
|
code: string;
|
|
963
|
-
timestamp: string;
|
|
964
961
|
path: string;
|
|
962
|
+
message: string;
|
|
963
|
+
statusCode: number;
|
|
964
|
+
timestamp: string;
|
|
965
965
|
details?: unknown;
|
|
966
966
|
correlationId?: string | undefined;
|
|
967
967
|
}>;
|
|
@@ -991,19 +991,19 @@ export declare const cronExecutionsContract: {
|
|
|
991
991
|
path: z.ZodString;
|
|
992
992
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
993
993
|
}, "strip", z.ZodTypeAny, {
|
|
994
|
-
statusCode: number;
|
|
995
|
-
message: string;
|
|
996
994
|
code: string;
|
|
997
|
-
timestamp: string;
|
|
998
995
|
path: string;
|
|
996
|
+
message: string;
|
|
997
|
+
statusCode: number;
|
|
998
|
+
timestamp: string;
|
|
999
999
|
details?: unknown;
|
|
1000
1000
|
correlationId?: string | undefined;
|
|
1001
1001
|
}, {
|
|
1002
|
-
statusCode: number;
|
|
1003
|
-
message: string;
|
|
1004
1002
|
code: string;
|
|
1005
|
-
timestamp: string;
|
|
1006
1003
|
path: string;
|
|
1004
|
+
message: string;
|
|
1005
|
+
statusCode: number;
|
|
1006
|
+
timestamp: string;
|
|
1007
1007
|
details?: unknown;
|
|
1008
1008
|
correlationId?: string | undefined;
|
|
1009
1009
|
}>;
|
|
@@ -1016,19 +1016,19 @@ export declare const cronExecutionsContract: {
|
|
|
1016
1016
|
path: z.ZodString;
|
|
1017
1017
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1018
1018
|
}, "strip", z.ZodTypeAny, {
|
|
1019
|
-
statusCode: number;
|
|
1020
|
-
message: string;
|
|
1021
1019
|
code: string;
|
|
1022
|
-
timestamp: string;
|
|
1023
1020
|
path: string;
|
|
1021
|
+
message: string;
|
|
1022
|
+
statusCode: number;
|
|
1023
|
+
timestamp: string;
|
|
1024
1024
|
details?: unknown;
|
|
1025
1025
|
correlationId?: string | undefined;
|
|
1026
1026
|
}, {
|
|
1027
|
-
statusCode: number;
|
|
1028
|
-
message: string;
|
|
1029
1027
|
code: string;
|
|
1030
|
-
timestamp: string;
|
|
1031
1028
|
path: string;
|
|
1029
|
+
message: string;
|
|
1030
|
+
statusCode: number;
|
|
1031
|
+
timestamp: string;
|
|
1032
1032
|
details?: unknown;
|
|
1033
1033
|
correlationId?: string | undefined;
|
|
1034
1034
|
}>;
|
|
@@ -1041,19 +1041,19 @@ export declare const cronExecutionsContract: {
|
|
|
1041
1041
|
path: z.ZodString;
|
|
1042
1042
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1043
1043
|
}, "strip", z.ZodTypeAny, {
|
|
1044
|
-
statusCode: number;
|
|
1045
|
-
message: string;
|
|
1046
1044
|
code: string;
|
|
1047
|
-
timestamp: string;
|
|
1048
1045
|
path: string;
|
|
1046
|
+
message: string;
|
|
1047
|
+
statusCode: number;
|
|
1048
|
+
timestamp: string;
|
|
1049
1049
|
details?: unknown;
|
|
1050
1050
|
correlationId?: string | undefined;
|
|
1051
1051
|
}, {
|
|
1052
|
-
statusCode: number;
|
|
1053
|
-
message: string;
|
|
1054
1052
|
code: string;
|
|
1055
|
-
timestamp: string;
|
|
1056
1053
|
path: string;
|
|
1054
|
+
message: string;
|
|
1055
|
+
statusCode: number;
|
|
1056
|
+
timestamp: string;
|
|
1057
1057
|
details?: unknown;
|
|
1058
1058
|
correlationId?: string | undefined;
|
|
1059
1059
|
}>;
|
|
@@ -1071,8 +1071,8 @@ export declare const cronExecutionsContract: {
|
|
|
1071
1071
|
}, "strip", z.ZodTypeAny, {
|
|
1072
1072
|
status: string;
|
|
1073
1073
|
id: string;
|
|
1074
|
-
startedAt: string;
|
|
1075
1074
|
jobName: string;
|
|
1075
|
+
startedAt: string;
|
|
1076
1076
|
completedAt?: string | null | undefined;
|
|
1077
1077
|
durationMs?: number | null | undefined;
|
|
1078
1078
|
recordsProcessed?: number | null | undefined;
|
|
@@ -1082,8 +1082,8 @@ export declare const cronExecutionsContract: {
|
|
|
1082
1082
|
}, {
|
|
1083
1083
|
status: string;
|
|
1084
1084
|
id: string;
|
|
1085
|
-
startedAt: string;
|
|
1086
1085
|
jobName: string;
|
|
1086
|
+
startedAt: string;
|
|
1087
1087
|
completedAt?: string | null | undefined;
|
|
1088
1088
|
durationMs?: number | null | undefined;
|
|
1089
1089
|
recordsProcessed?: number | null | undefined;
|
|
@@ -1100,19 +1100,19 @@ export declare const cronExecutionsContract: {
|
|
|
1100
1100
|
path: z.ZodString;
|
|
1101
1101
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1102
1102
|
}, "strip", z.ZodTypeAny, {
|
|
1103
|
-
statusCode: number;
|
|
1104
|
-
message: string;
|
|
1105
1103
|
code: string;
|
|
1106
|
-
timestamp: string;
|
|
1107
1104
|
path: string;
|
|
1105
|
+
message: string;
|
|
1106
|
+
statusCode: number;
|
|
1107
|
+
timestamp: string;
|
|
1108
1108
|
details?: unknown;
|
|
1109
1109
|
correlationId?: string | undefined;
|
|
1110
1110
|
}, {
|
|
1111
|
-
statusCode: number;
|
|
1112
|
-
message: string;
|
|
1113
1111
|
code: string;
|
|
1114
|
-
timestamp: string;
|
|
1115
1112
|
path: string;
|
|
1113
|
+
message: string;
|
|
1114
|
+
statusCode: number;
|
|
1115
|
+
timestamp: string;
|
|
1116
1116
|
details?: unknown;
|
|
1117
1117
|
correlationId?: string | undefined;
|
|
1118
1118
|
}>;
|
|
@@ -1125,19 +1125,19 @@ export declare const cronExecutionsContract: {
|
|
|
1125
1125
|
path: z.ZodString;
|
|
1126
1126
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1127
1127
|
}, "strip", z.ZodTypeAny, {
|
|
1128
|
-
statusCode: number;
|
|
1129
|
-
message: string;
|
|
1130
1128
|
code: string;
|
|
1131
|
-
timestamp: string;
|
|
1132
1129
|
path: string;
|
|
1130
|
+
message: string;
|
|
1131
|
+
statusCode: number;
|
|
1132
|
+
timestamp: string;
|
|
1133
1133
|
details?: unknown;
|
|
1134
1134
|
correlationId?: string | undefined;
|
|
1135
1135
|
}, {
|
|
1136
|
-
statusCode: number;
|
|
1137
|
-
message: string;
|
|
1138
1136
|
code: string;
|
|
1139
|
-
timestamp: string;
|
|
1140
1137
|
path: string;
|
|
1138
|
+
message: string;
|
|
1139
|
+
statusCode: number;
|
|
1140
|
+
timestamp: string;
|
|
1141
1141
|
details?: unknown;
|
|
1142
1142
|
correlationId?: string | undefined;
|
|
1143
1143
|
}>;
|
|
@@ -1161,19 +1161,19 @@ export declare const cronExecutionsContract: {
|
|
|
1161
1161
|
path: z.ZodString;
|
|
1162
1162
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1163
1163
|
}, "strip", z.ZodTypeAny, {
|
|
1164
|
-
statusCode: number;
|
|
1165
|
-
message: string;
|
|
1166
1164
|
code: string;
|
|
1167
|
-
timestamp: string;
|
|
1168
1165
|
path: string;
|
|
1166
|
+
message: string;
|
|
1167
|
+
statusCode: number;
|
|
1168
|
+
timestamp: string;
|
|
1169
1169
|
details?: unknown;
|
|
1170
1170
|
correlationId?: string | undefined;
|
|
1171
1171
|
}, {
|
|
1172
|
-
statusCode: number;
|
|
1173
|
-
message: string;
|
|
1174
1172
|
code: string;
|
|
1175
|
-
timestamp: string;
|
|
1176
1173
|
path: string;
|
|
1174
|
+
message: string;
|
|
1175
|
+
statusCode: number;
|
|
1176
|
+
timestamp: string;
|
|
1177
1177
|
details?: unknown;
|
|
1178
1178
|
correlationId?: string | undefined;
|
|
1179
1179
|
}>;
|
|
@@ -1186,19 +1186,19 @@ export declare const cronExecutionsContract: {
|
|
|
1186
1186
|
path: z.ZodString;
|
|
1187
1187
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1188
1188
|
}, "strip", z.ZodTypeAny, {
|
|
1189
|
-
statusCode: number;
|
|
1190
|
-
message: string;
|
|
1191
1189
|
code: string;
|
|
1192
|
-
timestamp: string;
|
|
1193
1190
|
path: string;
|
|
1191
|
+
message: string;
|
|
1192
|
+
statusCode: number;
|
|
1193
|
+
timestamp: string;
|
|
1194
1194
|
details?: unknown;
|
|
1195
1195
|
correlationId?: string | undefined;
|
|
1196
1196
|
}, {
|
|
1197
|
-
statusCode: number;
|
|
1198
|
-
message: string;
|
|
1199
1197
|
code: string;
|
|
1200
|
-
timestamp: string;
|
|
1201
1198
|
path: string;
|
|
1199
|
+
message: string;
|
|
1200
|
+
statusCode: number;
|
|
1201
|
+
timestamp: string;
|
|
1202
1202
|
details?: unknown;
|
|
1203
1203
|
correlationId?: string | undefined;
|
|
1204
1204
|
}>;
|
|
@@ -1211,19 +1211,19 @@ export declare const cronExecutionsContract: {
|
|
|
1211
1211
|
path: z.ZodString;
|
|
1212
1212
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1213
1213
|
}, "strip", z.ZodTypeAny, {
|
|
1214
|
-
statusCode: number;
|
|
1215
|
-
message: string;
|
|
1216
1214
|
code: string;
|
|
1217
|
-
timestamp: string;
|
|
1218
1215
|
path: string;
|
|
1216
|
+
message: string;
|
|
1217
|
+
statusCode: number;
|
|
1218
|
+
timestamp: string;
|
|
1219
1219
|
details?: unknown;
|
|
1220
1220
|
correlationId?: string | undefined;
|
|
1221
1221
|
}, {
|
|
1222
|
-
statusCode: number;
|
|
1223
|
-
message: string;
|
|
1224
1222
|
code: string;
|
|
1225
|
-
timestamp: string;
|
|
1226
1223
|
path: string;
|
|
1224
|
+
message: string;
|
|
1225
|
+
statusCode: number;
|
|
1226
|
+
timestamp: string;
|
|
1227
1227
|
details?: unknown;
|
|
1228
1228
|
correlationId?: string | undefined;
|
|
1229
1229
|
}>;
|
|
@@ -1249,19 +1249,19 @@ export declare const cronExecutionsContract: {
|
|
|
1249
1249
|
path: z.ZodString;
|
|
1250
1250
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1251
1251
|
}, "strip", z.ZodTypeAny, {
|
|
1252
|
-
statusCode: number;
|
|
1253
|
-
message: string;
|
|
1254
1252
|
code: string;
|
|
1255
|
-
timestamp: string;
|
|
1256
1253
|
path: string;
|
|
1254
|
+
message: string;
|
|
1255
|
+
statusCode: number;
|
|
1256
|
+
timestamp: string;
|
|
1257
1257
|
details?: unknown;
|
|
1258
1258
|
correlationId?: string | undefined;
|
|
1259
1259
|
}, {
|
|
1260
|
-
statusCode: number;
|
|
1261
|
-
message: string;
|
|
1262
1260
|
code: string;
|
|
1263
|
-
timestamp: string;
|
|
1264
1261
|
path: string;
|
|
1262
|
+
message: string;
|
|
1263
|
+
statusCode: number;
|
|
1264
|
+
timestamp: string;
|
|
1265
1265
|
details?: unknown;
|
|
1266
1266
|
correlationId?: string | undefined;
|
|
1267
1267
|
}>;
|
|
@@ -1285,19 +1285,19 @@ export declare const cronExecutionsContract: {
|
|
|
1285
1285
|
path: z.ZodString;
|
|
1286
1286
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1287
1287
|
}, "strip", z.ZodTypeAny, {
|
|
1288
|
-
statusCode: number;
|
|
1289
|
-
message: string;
|
|
1290
1288
|
code: string;
|
|
1291
|
-
timestamp: string;
|
|
1292
1289
|
path: string;
|
|
1290
|
+
message: string;
|
|
1291
|
+
statusCode: number;
|
|
1292
|
+
timestamp: string;
|
|
1293
1293
|
details?: unknown;
|
|
1294
1294
|
correlationId?: string | undefined;
|
|
1295
1295
|
}, {
|
|
1296
|
-
statusCode: number;
|
|
1297
|
-
message: string;
|
|
1298
1296
|
code: string;
|
|
1299
|
-
timestamp: string;
|
|
1300
1297
|
path: string;
|
|
1298
|
+
message: string;
|
|
1299
|
+
statusCode: number;
|
|
1300
|
+
timestamp: string;
|
|
1301
1301
|
details?: unknown;
|
|
1302
1302
|
correlationId?: string | undefined;
|
|
1303
1303
|
}>;
|
|
@@ -1310,19 +1310,19 @@ export declare const cronExecutionsContract: {
|
|
|
1310
1310
|
path: z.ZodString;
|
|
1311
1311
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1312
1312
|
}, "strip", z.ZodTypeAny, {
|
|
1313
|
-
statusCode: number;
|
|
1314
|
-
message: string;
|
|
1315
1313
|
code: string;
|
|
1316
|
-
timestamp: string;
|
|
1317
1314
|
path: string;
|
|
1315
|
+
message: string;
|
|
1316
|
+
statusCode: number;
|
|
1317
|
+
timestamp: string;
|
|
1318
1318
|
details?: unknown;
|
|
1319
1319
|
correlationId?: string | undefined;
|
|
1320
1320
|
}, {
|
|
1321
|
-
statusCode: number;
|
|
1322
|
-
message: string;
|
|
1323
1321
|
code: string;
|
|
1324
|
-
timestamp: string;
|
|
1325
1322
|
path: string;
|
|
1323
|
+
message: string;
|
|
1324
|
+
statusCode: number;
|
|
1325
|
+
timestamp: string;
|
|
1326
1326
|
details?: unknown;
|
|
1327
1327
|
correlationId?: string | undefined;
|
|
1328
1328
|
}>;
|
|
@@ -1335,19 +1335,19 @@ export declare const cronExecutionsContract: {
|
|
|
1335
1335
|
path: z.ZodString;
|
|
1336
1336
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1337
1337
|
}, "strip", z.ZodTypeAny, {
|
|
1338
|
-
statusCode: number;
|
|
1339
|
-
message: string;
|
|
1340
1338
|
code: string;
|
|
1341
|
-
timestamp: string;
|
|
1342
1339
|
path: string;
|
|
1340
|
+
message: string;
|
|
1341
|
+
statusCode: number;
|
|
1342
|
+
timestamp: string;
|
|
1343
1343
|
details?: unknown;
|
|
1344
1344
|
correlationId?: string | undefined;
|
|
1345
1345
|
}, {
|
|
1346
|
-
statusCode: number;
|
|
1347
|
-
message: string;
|
|
1348
1346
|
code: string;
|
|
1349
|
-
timestamp: string;
|
|
1350
1347
|
path: string;
|
|
1348
|
+
message: string;
|
|
1349
|
+
statusCode: number;
|
|
1350
|
+
timestamp: string;
|
|
1351
1351
|
details?: unknown;
|
|
1352
1352
|
correlationId?: string | undefined;
|
|
1353
1353
|
}>;
|
|
@@ -1373,19 +1373,19 @@ export declare const cronExecutionsContract: {
|
|
|
1373
1373
|
path: z.ZodString;
|
|
1374
1374
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1375
1375
|
}, "strip", z.ZodTypeAny, {
|
|
1376
|
-
statusCode: number;
|
|
1377
|
-
message: string;
|
|
1378
1376
|
code: string;
|
|
1379
|
-
timestamp: string;
|
|
1380
1377
|
path: string;
|
|
1378
|
+
message: string;
|
|
1379
|
+
statusCode: number;
|
|
1380
|
+
timestamp: string;
|
|
1381
1381
|
details?: unknown;
|
|
1382
1382
|
correlationId?: string | undefined;
|
|
1383
1383
|
}, {
|
|
1384
|
-
statusCode: number;
|
|
1385
|
-
message: string;
|
|
1386
1384
|
code: string;
|
|
1387
|
-
timestamp: string;
|
|
1388
1385
|
path: string;
|
|
1386
|
+
message: string;
|
|
1387
|
+
statusCode: number;
|
|
1388
|
+
timestamp: string;
|
|
1389
1389
|
details?: unknown;
|
|
1390
1390
|
correlationId?: string | undefined;
|
|
1391
1391
|
}>;
|
|
@@ -1409,19 +1409,19 @@ export declare const cronExecutionsContract: {
|
|
|
1409
1409
|
path: z.ZodString;
|
|
1410
1410
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1411
1411
|
}, "strip", z.ZodTypeAny, {
|
|
1412
|
-
statusCode: number;
|
|
1413
|
-
message: string;
|
|
1414
1412
|
code: string;
|
|
1415
|
-
timestamp: string;
|
|
1416
1413
|
path: string;
|
|
1414
|
+
message: string;
|
|
1415
|
+
statusCode: number;
|
|
1416
|
+
timestamp: string;
|
|
1417
1417
|
details?: unknown;
|
|
1418
1418
|
correlationId?: string | undefined;
|
|
1419
1419
|
}, {
|
|
1420
|
-
statusCode: number;
|
|
1421
|
-
message: string;
|
|
1422
1420
|
code: string;
|
|
1423
|
-
timestamp: string;
|
|
1424
1421
|
path: string;
|
|
1422
|
+
message: string;
|
|
1423
|
+
statusCode: number;
|
|
1424
|
+
timestamp: string;
|
|
1425
1425
|
details?: unknown;
|
|
1426
1426
|
correlationId?: string | undefined;
|
|
1427
1427
|
}>;
|
|
@@ -1434,19 +1434,19 @@ export declare const cronExecutionsContract: {
|
|
|
1434
1434
|
path: z.ZodString;
|
|
1435
1435
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1436
1436
|
}, "strip", z.ZodTypeAny, {
|
|
1437
|
-
statusCode: number;
|
|
1438
|
-
message: string;
|
|
1439
1437
|
code: string;
|
|
1440
|
-
timestamp: string;
|
|
1441
1438
|
path: string;
|
|
1439
|
+
message: string;
|
|
1440
|
+
statusCode: number;
|
|
1441
|
+
timestamp: string;
|
|
1442
1442
|
details?: unknown;
|
|
1443
1443
|
correlationId?: string | undefined;
|
|
1444
1444
|
}, {
|
|
1445
|
-
statusCode: number;
|
|
1446
|
-
message: string;
|
|
1447
1445
|
code: string;
|
|
1448
|
-
timestamp: string;
|
|
1449
1446
|
path: string;
|
|
1447
|
+
message: string;
|
|
1448
|
+
statusCode: number;
|
|
1449
|
+
timestamp: string;
|
|
1450
1450
|
details?: unknown;
|
|
1451
1451
|
correlationId?: string | undefined;
|
|
1452
1452
|
}>;
|
|
@@ -1459,19 +1459,19 @@ export declare const cronExecutionsContract: {
|
|
|
1459
1459
|
path: z.ZodString;
|
|
1460
1460
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1461
1461
|
}, "strip", z.ZodTypeAny, {
|
|
1462
|
-
statusCode: number;
|
|
1463
|
-
message: string;
|
|
1464
1462
|
code: string;
|
|
1465
|
-
timestamp: string;
|
|
1466
1463
|
path: string;
|
|
1464
|
+
message: string;
|
|
1465
|
+
statusCode: number;
|
|
1466
|
+
timestamp: string;
|
|
1467
1467
|
details?: unknown;
|
|
1468
1468
|
correlationId?: string | undefined;
|
|
1469
1469
|
}, {
|
|
1470
|
-
statusCode: number;
|
|
1471
|
-
message: string;
|
|
1472
1470
|
code: string;
|
|
1473
|
-
timestamp: string;
|
|
1474
1471
|
path: string;
|
|
1472
|
+
message: string;
|
|
1473
|
+
statusCode: number;
|
|
1474
|
+
timestamp: string;
|
|
1475
1475
|
details?: unknown;
|
|
1476
1476
|
correlationId?: string | undefined;
|
|
1477
1477
|
}>;
|
|
@@ -1497,19 +1497,19 @@ export declare const cronExecutionsContract: {
|
|
|
1497
1497
|
path: z.ZodString;
|
|
1498
1498
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1499
1499
|
}, "strip", z.ZodTypeAny, {
|
|
1500
|
-
statusCode: number;
|
|
1501
|
-
message: string;
|
|
1502
1500
|
code: string;
|
|
1503
|
-
timestamp: string;
|
|
1504
1501
|
path: string;
|
|
1502
|
+
message: string;
|
|
1503
|
+
statusCode: number;
|
|
1504
|
+
timestamp: string;
|
|
1505
1505
|
details?: unknown;
|
|
1506
1506
|
correlationId?: string | undefined;
|
|
1507
1507
|
}, {
|
|
1508
|
-
statusCode: number;
|
|
1509
|
-
message: string;
|
|
1510
1508
|
code: string;
|
|
1511
|
-
timestamp: string;
|
|
1512
1509
|
path: string;
|
|
1510
|
+
message: string;
|
|
1511
|
+
statusCode: number;
|
|
1512
|
+
timestamp: string;
|
|
1513
1513
|
details?: unknown;
|
|
1514
1514
|
correlationId?: string | undefined;
|
|
1515
1515
|
}>;
|
|
@@ -1533,19 +1533,19 @@ export declare const cronExecutionsContract: {
|
|
|
1533
1533
|
path: z.ZodString;
|
|
1534
1534
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1535
1535
|
}, "strip", z.ZodTypeAny, {
|
|
1536
|
-
statusCode: number;
|
|
1537
|
-
message: string;
|
|
1538
1536
|
code: string;
|
|
1539
|
-
timestamp: string;
|
|
1540
1537
|
path: string;
|
|
1538
|
+
message: string;
|
|
1539
|
+
statusCode: number;
|
|
1540
|
+
timestamp: string;
|
|
1541
1541
|
details?: unknown;
|
|
1542
1542
|
correlationId?: string | undefined;
|
|
1543
1543
|
}, {
|
|
1544
|
-
statusCode: number;
|
|
1545
|
-
message: string;
|
|
1546
1544
|
code: string;
|
|
1547
|
-
timestamp: string;
|
|
1548
1545
|
path: string;
|
|
1546
|
+
message: string;
|
|
1547
|
+
statusCode: number;
|
|
1548
|
+
timestamp: string;
|
|
1549
1549
|
details?: unknown;
|
|
1550
1550
|
correlationId?: string | undefined;
|
|
1551
1551
|
}>;
|
|
@@ -1558,19 +1558,19 @@ export declare const cronExecutionsContract: {
|
|
|
1558
1558
|
path: z.ZodString;
|
|
1559
1559
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1560
1560
|
}, "strip", z.ZodTypeAny, {
|
|
1561
|
-
statusCode: number;
|
|
1562
|
-
message: string;
|
|
1563
1561
|
code: string;
|
|
1564
|
-
timestamp: string;
|
|
1565
1562
|
path: string;
|
|
1563
|
+
message: string;
|
|
1564
|
+
statusCode: number;
|
|
1565
|
+
timestamp: string;
|
|
1566
1566
|
details?: unknown;
|
|
1567
1567
|
correlationId?: string | undefined;
|
|
1568
1568
|
}, {
|
|
1569
|
-
statusCode: number;
|
|
1570
|
-
message: string;
|
|
1571
1569
|
code: string;
|
|
1572
|
-
timestamp: string;
|
|
1573
1570
|
path: string;
|
|
1571
|
+
message: string;
|
|
1572
|
+
statusCode: number;
|
|
1573
|
+
timestamp: string;
|
|
1574
1574
|
details?: unknown;
|
|
1575
1575
|
correlationId?: string | undefined;
|
|
1576
1576
|
}>;
|
|
@@ -1583,19 +1583,19 @@ export declare const cronExecutionsContract: {
|
|
|
1583
1583
|
path: z.ZodString;
|
|
1584
1584
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1585
1585
|
}, "strip", z.ZodTypeAny, {
|
|
1586
|
-
statusCode: number;
|
|
1587
|
-
message: string;
|
|
1588
1586
|
code: string;
|
|
1589
|
-
timestamp: string;
|
|
1590
1587
|
path: string;
|
|
1588
|
+
message: string;
|
|
1589
|
+
statusCode: number;
|
|
1590
|
+
timestamp: string;
|
|
1591
1591
|
details?: unknown;
|
|
1592
1592
|
correlationId?: string | undefined;
|
|
1593
1593
|
}, {
|
|
1594
|
-
statusCode: number;
|
|
1595
|
-
message: string;
|
|
1596
1594
|
code: string;
|
|
1597
|
-
timestamp: string;
|
|
1598
1595
|
path: string;
|
|
1596
|
+
message: string;
|
|
1597
|
+
statusCode: number;
|
|
1598
|
+
timestamp: string;
|
|
1599
1599
|
details?: unknown;
|
|
1600
1600
|
correlationId?: string | undefined;
|
|
1601
1601
|
}>;
|
|
@@ -1621,19 +1621,19 @@ export declare const cronExecutionsContract: {
|
|
|
1621
1621
|
path: z.ZodString;
|
|
1622
1622
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1623
1623
|
}, "strip", z.ZodTypeAny, {
|
|
1624
|
-
statusCode: number;
|
|
1625
|
-
message: string;
|
|
1626
1624
|
code: string;
|
|
1627
|
-
timestamp: string;
|
|
1628
1625
|
path: string;
|
|
1626
|
+
message: string;
|
|
1627
|
+
statusCode: number;
|
|
1628
|
+
timestamp: string;
|
|
1629
1629
|
details?: unknown;
|
|
1630
1630
|
correlationId?: string | undefined;
|
|
1631
1631
|
}, {
|
|
1632
|
-
statusCode: number;
|
|
1633
|
-
message: string;
|
|
1634
1632
|
code: string;
|
|
1635
|
-
timestamp: string;
|
|
1636
1633
|
path: string;
|
|
1634
|
+
message: string;
|
|
1635
|
+
statusCode: number;
|
|
1636
|
+
timestamp: string;
|
|
1637
1637
|
details?: unknown;
|
|
1638
1638
|
correlationId?: string | undefined;
|
|
1639
1639
|
}>;
|