@dakkitor/api-contracts 1.1.11 → 1.1.13

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 (38) hide show
  1. package/dist/actives/actives.contract.d.ts +75 -76
  2. package/dist/actives/actives.contract.d.ts.map +1 -1
  3. package/dist/actives/actives.contract.js +15 -15
  4. package/dist/agent-client-links/agent-client-links.contract.d.ts +320 -316
  5. package/dist/agent-client-links/agent-client-links.contract.d.ts.map +1 -1
  6. package/dist/agent-client-links/agent-client-links.contract.js +6 -6
  7. package/dist/auth/auth.contract.d.ts +2 -2
  8. package/dist/bookings/bookings.contract.d.ts +328 -328
  9. package/dist/call-history/call-history.contract.d.ts +205 -205
  10. package/dist/client-contacts/client-contacts.contract.d.ts +334 -332
  11. package/dist/client-contacts/client-contacts.contract.d.ts.map +1 -1
  12. package/dist/client-contacts/client-contacts.contract.js +3 -3
  13. package/dist/clients/clients.contract.d.ts +196 -196
  14. package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +404 -404
  15. package/dist/collaborations/collaborations.contract.d.ts +379 -379
  16. package/dist/common/error-schemas.d.ts +7 -7
  17. package/dist/common/error-schemas.d.ts.map +1 -1
  18. package/dist/companies/companies.contract.d.ts +214 -214
  19. package/dist/cron-executions/cron-executions.contract.d.ts +206 -206
  20. package/dist/curated-workers/curated-workers.contract.d.ts +213 -213
  21. package/dist/dashboards/agent-daily-metrics.contract.d.ts +124 -124
  22. package/dist/files/files.contract.d.ts +216 -216
  23. package/dist/health/health.contract.d.ts +22 -22
  24. package/dist/index.d.ts +971 -971
  25. package/dist/jobs/jobs.contract.d.ts +210 -210
  26. package/dist/lead-assignments/lead-assignments.contract.d.ts +248 -248
  27. package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +40 -40
  28. package/dist/lead-distribution/lead-distribution-config.contract.d.ts +153 -153
  29. package/dist/leads/leads.contract.d.ts +246 -246
  30. package/dist/locations/locations.contract.d.ts +143 -143
  31. package/dist/postcodes/postcodes.contract.d.ts +56 -56
  32. package/dist/qualifications/qualifications.contract.d.ts +248 -248
  33. package/dist/trades/trades.contract.d.ts +156 -156
  34. package/dist/users/users.contract.d.ts +68 -64
  35. package/dist/users/users.contract.d.ts.map +1 -1
  36. package/dist/users/users.contract.js +8 -8
  37. package/dist/workers/workers.contract.d.ts +226 -226
  38. package/package.json +1 -1
@@ -148,11 +148,11 @@ export declare const JobSchema: z.ZodObject<{
148
148
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
149
149
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
150
150
  }, "strip", z.ZodTypeAny, {
151
- createdAt: string;
152
- updatedAt: string;
153
151
  status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
154
- id: string;
155
152
  description: string;
153
+ id: string;
154
+ createdAt: string;
155
+ updatedAt: string;
156
156
  pay: {
157
157
  rate: number;
158
158
  rateUnit: "DAILY" | "HOURLY";
@@ -180,11 +180,11 @@ export declare const JobSchema: z.ZodObject<{
180
180
  id: string;
181
181
  } | null | undefined;
182
182
  }, {
183
- createdAt: string | Date;
184
- updatedAt: string | Date;
185
183
  status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
186
- id: string;
187
184
  description: string;
185
+ id: string;
186
+ createdAt: string | Date;
187
+ updatedAt: string | Date;
188
188
  pay: {
189
189
  rate: number;
190
190
  rateUnit: "DAILY" | "HOURLY";
@@ -446,12 +446,12 @@ export declare const FilterJobSchema: z.ZodObject<{
446
446
  }, "strip", z.ZodTypeAny, {
447
447
  limit: number;
448
448
  page: number;
449
+ status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | null | undefined;
449
450
  createdAt?: {
450
451
  from?: string | null | undefined;
451
452
  to?: string | null | undefined;
452
453
  } | null | undefined;
453
- status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | null | undefined;
454
- sortBy?: "createdAt" | "updatedAt" | "status" | "description" | "numberOfPositions" | null | undefined;
454
+ sortBy?: "status" | "description" | "createdAt" | "updatedAt" | "numberOfPositions" | null | undefined;
455
455
  sortOrder?: "ASC" | "DESC" | null | undefined;
456
456
  pay?: {
457
457
  minRate?: number | null | undefined;
@@ -461,14 +461,14 @@ export declare const FilterJobSchema: z.ZodObject<{
461
461
  postcode?: string | null | undefined;
462
462
  distance?: number | null | undefined;
463
463
  }, {
464
+ status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | null | undefined;
464
465
  createdAt?: {
465
466
  from?: string | null | undefined;
466
467
  to?: string | null | undefined;
467
468
  } | null | undefined;
468
- status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | null | undefined;
469
469
  limit?: number | undefined;
470
470
  page?: number | undefined;
471
- sortBy?: "createdAt" | "updatedAt" | "status" | "description" | "numberOfPositions" | null | undefined;
471
+ sortBy?: "status" | "description" | "createdAt" | "updatedAt" | "numberOfPositions" | null | undefined;
472
472
  sortOrder?: "ASC" | "DESC" | null | undefined;
473
473
  pay?: {
474
474
  minRate?: number | null | undefined;
@@ -550,11 +550,11 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
550
550
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
551
551
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
552
552
  }, "strip", z.ZodTypeAny, {
553
- createdAt: string;
554
- updatedAt: string;
555
553
  status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
556
- id: string;
557
554
  description: string;
555
+ id: string;
556
+ createdAt: string;
557
+ updatedAt: string;
558
558
  pay: {
559
559
  rate: number;
560
560
  rateUnit: "DAILY" | "HOURLY";
@@ -582,11 +582,11 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
582
582
  id: string;
583
583
  } | null | undefined;
584
584
  }, {
585
- createdAt: string | Date;
586
- updatedAt: string | Date;
587
585
  status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
588
- id: string;
589
586
  description: string;
587
+ id: string;
588
+ createdAt: string | Date;
589
+ updatedAt: string | Date;
590
590
  pay: {
591
591
  rate: number;
592
592
  rateUnit: "DAILY" | "HOURLY";
@@ -620,13 +620,12 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
620
620
  currentPage: z.ZodNumber;
621
621
  totalPages: z.ZodNumber;
622
622
  }, "strip", z.ZodTypeAny, {
623
- limit: number;
624
623
  items: {
625
- createdAt: string;
626
- updatedAt: string;
627
624
  status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
628
- id: string;
629
625
  description: string;
626
+ id: string;
627
+ createdAt: string;
628
+ updatedAt: string;
630
629
  pay: {
631
630
  rate: number;
632
631
  rateUnit: "DAILY" | "HOURLY";
@@ -655,17 +654,17 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
655
654
  } | null | undefined;
656
655
  }[];
657
656
  totalCount: number;
657
+ limit: number;
658
658
  skip: number;
659
659
  currentPage: number;
660
660
  totalPages: number;
661
661
  }, {
662
- limit: number;
663
662
  items: {
664
- createdAt: string | Date;
665
- updatedAt: string | Date;
666
663
  status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
667
- id: string;
668
664
  description: string;
665
+ id: string;
666
+ createdAt: string | Date;
667
+ updatedAt: string | Date;
669
668
  pay: {
670
669
  rate: number;
671
670
  rateUnit: "DAILY" | "HOURLY";
@@ -694,6 +693,7 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
694
693
  } | null | undefined;
695
694
  }[];
696
695
  totalCount: number;
696
+ limit: number;
697
697
  skip: number;
698
698
  currentPage: number;
699
699
  totalPages: number;
@@ -820,19 +820,19 @@ export declare const jobsContractRouter: {
820
820
  path: z.ZodString;
821
821
  correlationId: z.ZodOptional<z.ZodString>;
822
822
  }, "strip", z.ZodTypeAny, {
823
- code: string;
824
- path: string;
825
- message: string;
826
823
  statusCode: number;
824
+ message: string;
825
+ code: string;
827
826
  timestamp: string;
827
+ path: string;
828
828
  details?: unknown;
829
829
  correlationId?: string | undefined;
830
830
  }, {
831
- code: string;
832
- path: string;
833
- message: string;
834
831
  statusCode: number;
832
+ message: string;
833
+ code: string;
835
834
  timestamp: string;
835
+ path: string;
836
836
  details?: unknown;
837
837
  correlationId?: string | undefined;
838
838
  }>;
@@ -845,19 +845,19 @@ export declare const jobsContractRouter: {
845
845
  path: z.ZodString;
846
846
  correlationId: z.ZodOptional<z.ZodString>;
847
847
  }, "strip", z.ZodTypeAny, {
848
- code: string;
849
- path: string;
850
- message: string;
851
848
  statusCode: number;
849
+ message: string;
850
+ code: string;
852
851
  timestamp: string;
852
+ path: string;
853
853
  details?: unknown;
854
854
  correlationId?: string | undefined;
855
855
  }, {
856
- code: string;
857
- path: string;
858
- message: string;
859
856
  statusCode: number;
857
+ message: string;
858
+ code: string;
860
859
  timestamp: string;
860
+ path: string;
861
861
  details?: unknown;
862
862
  correlationId?: string | undefined;
863
863
  }>;
@@ -870,19 +870,19 @@ export declare const jobsContractRouter: {
870
870
  path: z.ZodString;
871
871
  correlationId: z.ZodOptional<z.ZodString>;
872
872
  }, "strip", z.ZodTypeAny, {
873
- code: string;
874
- path: string;
875
- message: string;
876
873
  statusCode: number;
874
+ message: string;
875
+ code: string;
877
876
  timestamp: string;
877
+ path: string;
878
878
  details?: unknown;
879
879
  correlationId?: string | undefined;
880
880
  }, {
881
- code: string;
882
- path: string;
883
- message: string;
884
881
  statusCode: number;
882
+ message: string;
883
+ code: string;
885
884
  timestamp: string;
885
+ path: string;
886
886
  details?: unknown;
887
887
  correlationId?: string | undefined;
888
888
  }>;
@@ -895,19 +895,19 @@ export declare const jobsContractRouter: {
895
895
  path: z.ZodString;
896
896
  correlationId: z.ZodOptional<z.ZodString>;
897
897
  }, "strip", z.ZodTypeAny, {
898
- code: string;
899
- path: string;
900
- message: string;
901
898
  statusCode: number;
899
+ message: string;
900
+ code: string;
902
901
  timestamp: string;
902
+ path: string;
903
903
  details?: unknown;
904
904
  correlationId?: string | undefined;
905
905
  }, {
906
- code: string;
907
- path: string;
908
- message: string;
909
906
  statusCode: number;
907
+ message: string;
908
+ code: string;
910
909
  timestamp: string;
910
+ path: string;
911
911
  details?: unknown;
912
912
  correlationId?: string | undefined;
913
913
  }>;
@@ -982,11 +982,11 @@ export declare const jobsContractRouter: {
982
982
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
983
983
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
984
984
  }, "strip", z.ZodTypeAny, {
985
- createdAt: string;
986
- updatedAt: string;
987
985
  status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
988
- id: string;
989
986
  description: string;
987
+ id: string;
988
+ createdAt: string;
989
+ updatedAt: string;
990
990
  pay: {
991
991
  rate: number;
992
992
  rateUnit: "DAILY" | "HOURLY";
@@ -1014,11 +1014,11 @@ export declare const jobsContractRouter: {
1014
1014
  id: string;
1015
1015
  } | null | undefined;
1016
1016
  }, {
1017
- createdAt: string | Date;
1018
- updatedAt: string | Date;
1019
1017
  status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
1020
- id: string;
1021
1018
  description: string;
1019
+ id: string;
1020
+ createdAt: string | Date;
1021
+ updatedAt: string | Date;
1022
1022
  pay: {
1023
1023
  rate: number;
1024
1024
  rateUnit: "DAILY" | "HOURLY";
@@ -1055,19 +1055,19 @@ export declare const jobsContractRouter: {
1055
1055
  path: z.ZodString;
1056
1056
  correlationId: z.ZodOptional<z.ZodString>;
1057
1057
  }, "strip", z.ZodTypeAny, {
1058
- code: string;
1059
- path: string;
1060
- message: string;
1061
1058
  statusCode: number;
1059
+ message: string;
1060
+ code: string;
1062
1061
  timestamp: string;
1062
+ path: string;
1063
1063
  details?: unknown;
1064
1064
  correlationId?: string | undefined;
1065
1065
  }, {
1066
- code: string;
1067
- path: string;
1068
- message: string;
1069
1066
  statusCode: number;
1067
+ message: string;
1068
+ code: string;
1070
1069
  timestamp: string;
1070
+ path: string;
1071
1071
  details?: unknown;
1072
1072
  correlationId?: string | undefined;
1073
1073
  }>;
@@ -1113,12 +1113,12 @@ export declare const jobsContractRouter: {
1113
1113
  }, "strip", z.ZodTypeAny, {
1114
1114
  limit: number;
1115
1115
  page: number;
1116
+ status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | null | undefined;
1116
1117
  createdAt?: {
1117
1118
  from?: string | null | undefined;
1118
1119
  to?: string | null | undefined;
1119
1120
  } | null | undefined;
1120
- status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | null | undefined;
1121
- sortBy?: "createdAt" | "updatedAt" | "status" | "description" | "numberOfPositions" | null | undefined;
1121
+ sortBy?: "status" | "description" | "createdAt" | "updatedAt" | "numberOfPositions" | null | undefined;
1122
1122
  sortOrder?: "ASC" | "DESC" | null | undefined;
1123
1123
  pay?: {
1124
1124
  minRate?: number | null | undefined;
@@ -1128,14 +1128,14 @@ export declare const jobsContractRouter: {
1128
1128
  postcode?: string | null | undefined;
1129
1129
  distance?: number | null | undefined;
1130
1130
  }, {
1131
+ status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | null | undefined;
1131
1132
  createdAt?: {
1132
1133
  from?: string | null | undefined;
1133
1134
  to?: string | null | undefined;
1134
1135
  } | null | undefined;
1135
- status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | null | undefined;
1136
1136
  limit?: number | undefined;
1137
1137
  page?: number | undefined;
1138
- sortBy?: "createdAt" | "updatedAt" | "status" | "description" | "numberOfPositions" | null | undefined;
1138
+ sortBy?: "status" | "description" | "createdAt" | "updatedAt" | "numberOfPositions" | null | undefined;
1139
1139
  sortOrder?: "ASC" | "DESC" | null | undefined;
1140
1140
  pay?: {
1141
1141
  minRate?: number | null | undefined;
@@ -1158,19 +1158,19 @@ export declare const jobsContractRouter: {
1158
1158
  path: z.ZodString;
1159
1159
  correlationId: z.ZodOptional<z.ZodString>;
1160
1160
  }, "strip", z.ZodTypeAny, {
1161
- code: string;
1162
- path: string;
1163
- message: string;
1164
1161
  statusCode: number;
1162
+ message: string;
1163
+ code: string;
1165
1164
  timestamp: string;
1165
+ path: string;
1166
1166
  details?: unknown;
1167
1167
  correlationId?: string | undefined;
1168
1168
  }, {
1169
- code: string;
1170
- path: string;
1171
- message: string;
1172
1169
  statusCode: number;
1170
+ message: string;
1171
+ code: string;
1173
1172
  timestamp: string;
1173
+ path: string;
1174
1174
  details?: unknown;
1175
1175
  correlationId?: string | undefined;
1176
1176
  }>;
@@ -1183,19 +1183,19 @@ export declare const jobsContractRouter: {
1183
1183
  path: z.ZodString;
1184
1184
  correlationId: z.ZodOptional<z.ZodString>;
1185
1185
  }, "strip", z.ZodTypeAny, {
1186
- code: string;
1187
- path: string;
1188
- message: string;
1189
1186
  statusCode: number;
1187
+ message: string;
1188
+ code: string;
1190
1189
  timestamp: string;
1190
+ path: string;
1191
1191
  details?: unknown;
1192
1192
  correlationId?: string | undefined;
1193
1193
  }, {
1194
- code: string;
1195
- path: string;
1196
- message: string;
1197
1194
  statusCode: number;
1195
+ message: string;
1196
+ code: string;
1198
1197
  timestamp: string;
1198
+ path: string;
1199
1199
  details?: unknown;
1200
1200
  correlationId?: string | undefined;
1201
1201
  }>;
@@ -1208,19 +1208,19 @@ export declare const jobsContractRouter: {
1208
1208
  path: z.ZodString;
1209
1209
  correlationId: z.ZodOptional<z.ZodString>;
1210
1210
  }, "strip", z.ZodTypeAny, {
1211
- code: string;
1212
- path: string;
1213
- message: string;
1214
1211
  statusCode: number;
1212
+ message: string;
1213
+ code: string;
1215
1214
  timestamp: string;
1215
+ path: string;
1216
1216
  details?: unknown;
1217
1217
  correlationId?: string | undefined;
1218
1218
  }, {
1219
- code: string;
1220
- path: string;
1221
- message: string;
1222
1219
  statusCode: number;
1220
+ message: string;
1221
+ code: string;
1223
1222
  timestamp: string;
1223
+ path: string;
1224
1224
  details?: unknown;
1225
1225
  correlationId?: string | undefined;
1226
1226
  }>;
@@ -1233,19 +1233,19 @@ export declare const jobsContractRouter: {
1233
1233
  path: z.ZodString;
1234
1234
  correlationId: z.ZodOptional<z.ZodString>;
1235
1235
  }, "strip", z.ZodTypeAny, {
1236
- code: string;
1237
- path: string;
1238
- message: string;
1239
1236
  statusCode: number;
1237
+ message: string;
1238
+ code: string;
1240
1239
  timestamp: string;
1240
+ path: string;
1241
1241
  details?: unknown;
1242
1242
  correlationId?: string | undefined;
1243
1243
  }, {
1244
- code: string;
1245
- path: string;
1246
- message: string;
1247
1244
  statusCode: number;
1245
+ message: string;
1246
+ code: string;
1248
1247
  timestamp: string;
1248
+ path: string;
1249
1249
  details?: unknown;
1250
1250
  correlationId?: string | undefined;
1251
1251
  }>;
@@ -1321,11 +1321,11 @@ export declare const jobsContractRouter: {
1321
1321
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1322
1322
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1323
1323
  }, "strip", z.ZodTypeAny, {
1324
- createdAt: string;
1325
- updatedAt: string;
1326
1324
  status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
1327
- id: string;
1328
1325
  description: string;
1326
+ id: string;
1327
+ createdAt: string;
1328
+ updatedAt: string;
1329
1329
  pay: {
1330
1330
  rate: number;
1331
1331
  rateUnit: "DAILY" | "HOURLY";
@@ -1353,11 +1353,11 @@ export declare const jobsContractRouter: {
1353
1353
  id: string;
1354
1354
  } | null | undefined;
1355
1355
  }, {
1356
- createdAt: string | Date;
1357
- updatedAt: string | Date;
1358
1356
  status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
1359
- id: string;
1360
1357
  description: string;
1358
+ id: string;
1359
+ createdAt: string | Date;
1360
+ updatedAt: string | Date;
1361
1361
  pay: {
1362
1362
  rate: number;
1363
1363
  rateUnit: "DAILY" | "HOURLY";
@@ -1391,13 +1391,12 @@ export declare const jobsContractRouter: {
1391
1391
  currentPage: z.ZodNumber;
1392
1392
  totalPages: z.ZodNumber;
1393
1393
  }, "strip", z.ZodTypeAny, {
1394
- limit: number;
1395
1394
  items: {
1396
- createdAt: string;
1397
- updatedAt: string;
1398
1395
  status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
1399
- id: string;
1400
1396
  description: string;
1397
+ id: string;
1398
+ createdAt: string;
1399
+ updatedAt: string;
1401
1400
  pay: {
1402
1401
  rate: number;
1403
1402
  rateUnit: "DAILY" | "HOURLY";
@@ -1426,17 +1425,17 @@ export declare const jobsContractRouter: {
1426
1425
  } | null | undefined;
1427
1426
  }[];
1428
1427
  totalCount: number;
1428
+ limit: number;
1429
1429
  skip: number;
1430
1430
  currentPage: number;
1431
1431
  totalPages: number;
1432
1432
  }, {
1433
- limit: number;
1434
1433
  items: {
1435
- createdAt: string | Date;
1436
- updatedAt: string | Date;
1437
1434
  status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
1438
- id: string;
1439
1435
  description: string;
1436
+ id: string;
1437
+ createdAt: string | Date;
1438
+ updatedAt: string | Date;
1440
1439
  pay: {
1441
1440
  rate: number;
1442
1441
  rateUnit: "DAILY" | "HOURLY";
@@ -1465,6 +1464,7 @@ export declare const jobsContractRouter: {
1465
1464
  } | null | undefined;
1466
1465
  }[];
1467
1466
  totalCount: number;
1467
+ limit: number;
1468
1468
  skip: number;
1469
1469
  currentPage: number;
1470
1470
  totalPages: number;
@@ -1498,19 +1498,19 @@ export declare const jobsContractRouter: {
1498
1498
  path: z.ZodString;
1499
1499
  correlationId: z.ZodOptional<z.ZodString>;
1500
1500
  }, "strip", z.ZodTypeAny, {
1501
- code: string;
1502
- path: string;
1503
- message: string;
1504
1501
  statusCode: number;
1502
+ message: string;
1503
+ code: string;
1505
1504
  timestamp: string;
1505
+ path: string;
1506
1506
  details?: unknown;
1507
1507
  correlationId?: string | undefined;
1508
1508
  }, {
1509
- code: string;
1510
- path: string;
1511
- message: string;
1512
1509
  statusCode: number;
1510
+ message: string;
1511
+ code: string;
1513
1512
  timestamp: string;
1513
+ path: string;
1514
1514
  details?: unknown;
1515
1515
  correlationId?: string | undefined;
1516
1516
  }>;
@@ -1523,19 +1523,19 @@ export declare const jobsContractRouter: {
1523
1523
  path: z.ZodString;
1524
1524
  correlationId: z.ZodOptional<z.ZodString>;
1525
1525
  }, "strip", z.ZodTypeAny, {
1526
- code: string;
1527
- path: string;
1528
- message: string;
1529
1526
  statusCode: number;
1527
+ message: string;
1528
+ code: string;
1530
1529
  timestamp: string;
1530
+ path: string;
1531
1531
  details?: unknown;
1532
1532
  correlationId?: string | undefined;
1533
1533
  }, {
1534
- code: string;
1535
- path: string;
1536
- message: string;
1537
1534
  statusCode: number;
1535
+ message: string;
1536
+ code: string;
1538
1537
  timestamp: string;
1538
+ path: string;
1539
1539
  details?: unknown;
1540
1540
  correlationId?: string | undefined;
1541
1541
  }>;
@@ -1548,19 +1548,19 @@ export declare const jobsContractRouter: {
1548
1548
  path: z.ZodString;
1549
1549
  correlationId: z.ZodOptional<z.ZodString>;
1550
1550
  }, "strip", z.ZodTypeAny, {
1551
- code: string;
1552
- path: string;
1553
- message: string;
1554
1551
  statusCode: number;
1552
+ message: string;
1553
+ code: string;
1555
1554
  timestamp: string;
1555
+ path: string;
1556
1556
  details?: unknown;
1557
1557
  correlationId?: string | undefined;
1558
1558
  }, {
1559
- code: string;
1560
- path: string;
1561
- message: string;
1562
1559
  statusCode: number;
1560
+ message: string;
1561
+ code: string;
1563
1562
  timestamp: string;
1563
+ path: string;
1564
1564
  details?: unknown;
1565
1565
  correlationId?: string | undefined;
1566
1566
  }>;
@@ -1573,19 +1573,19 @@ export declare const jobsContractRouter: {
1573
1573
  path: z.ZodString;
1574
1574
  correlationId: z.ZodOptional<z.ZodString>;
1575
1575
  }, "strip", z.ZodTypeAny, {
1576
- code: string;
1577
- path: string;
1578
- message: string;
1579
1576
  statusCode: number;
1577
+ message: string;
1578
+ code: string;
1580
1579
  timestamp: string;
1580
+ path: string;
1581
1581
  details?: unknown;
1582
1582
  correlationId?: string | undefined;
1583
1583
  }, {
1584
- code: string;
1585
- path: string;
1586
- message: string;
1587
1584
  statusCode: number;
1585
+ message: string;
1586
+ code: string;
1588
1587
  timestamp: string;
1588
+ path: string;
1589
1589
  details?: unknown;
1590
1590
  correlationId?: string | undefined;
1591
1591
  }>;
@@ -1660,11 +1660,11 @@ export declare const jobsContractRouter: {
1660
1660
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1661
1661
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1662
1662
  }, "strip", z.ZodTypeAny, {
1663
- createdAt: string;
1664
- updatedAt: string;
1665
1663
  status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
1666
- id: string;
1667
1664
  description: string;
1665
+ id: string;
1666
+ createdAt: string;
1667
+ updatedAt: string;
1668
1668
  pay: {
1669
1669
  rate: number;
1670
1670
  rateUnit: "DAILY" | "HOURLY";
@@ -1692,11 +1692,11 @@ export declare const jobsContractRouter: {
1692
1692
  id: string;
1693
1693
  } | null | undefined;
1694
1694
  }, {
1695
- createdAt: string | Date;
1696
- updatedAt: string | Date;
1697
1695
  status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
1698
- id: string;
1699
1696
  description: string;
1697
+ id: string;
1698
+ createdAt: string | Date;
1699
+ updatedAt: string | Date;
1700
1700
  pay: {
1701
1701
  rate: number;
1702
1702
  rateUnit: "DAILY" | "HOURLY";
@@ -1733,19 +1733,19 @@ export declare const jobsContractRouter: {
1733
1733
  path: z.ZodString;
1734
1734
  correlationId: z.ZodOptional<z.ZodString>;
1735
1735
  }, "strip", z.ZodTypeAny, {
1736
- code: string;
1737
- path: string;
1738
- message: string;
1739
1736
  statusCode: number;
1737
+ message: string;
1738
+ code: string;
1740
1739
  timestamp: string;
1740
+ path: string;
1741
1741
  details?: unknown;
1742
1742
  correlationId?: string | undefined;
1743
1743
  }, {
1744
- code: string;
1745
- path: string;
1746
- message: string;
1747
1744
  statusCode: number;
1745
+ message: string;
1746
+ code: string;
1748
1747
  timestamp: string;
1748
+ path: string;
1749
1749
  details?: unknown;
1750
1750
  correlationId?: string | undefined;
1751
1751
  }>;
@@ -1874,19 +1874,19 @@ export declare const jobsContractRouter: {
1874
1874
  path: z.ZodString;
1875
1875
  correlationId: z.ZodOptional<z.ZodString>;
1876
1876
  }, "strip", z.ZodTypeAny, {
1877
- code: string;
1878
- path: string;
1879
- message: string;
1880
1877
  statusCode: number;
1878
+ message: string;
1879
+ code: string;
1881
1880
  timestamp: string;
1881
+ path: string;
1882
1882
  details?: unknown;
1883
1883
  correlationId?: string | undefined;
1884
1884
  }, {
1885
- code: string;
1886
- path: string;
1887
- message: string;
1888
1885
  statusCode: number;
1886
+ message: string;
1887
+ code: string;
1889
1888
  timestamp: string;
1889
+ path: string;
1890
1890
  details?: unknown;
1891
1891
  correlationId?: string | undefined;
1892
1892
  }>;
@@ -1899,19 +1899,19 @@ export declare const jobsContractRouter: {
1899
1899
  path: z.ZodString;
1900
1900
  correlationId: z.ZodOptional<z.ZodString>;
1901
1901
  }, "strip", z.ZodTypeAny, {
1902
- code: string;
1903
- path: string;
1904
- message: string;
1905
1902
  statusCode: number;
1903
+ message: string;
1904
+ code: string;
1906
1905
  timestamp: string;
1906
+ path: string;
1907
1907
  details?: unknown;
1908
1908
  correlationId?: string | undefined;
1909
1909
  }, {
1910
- code: string;
1911
- path: string;
1912
- message: string;
1913
1910
  statusCode: number;
1911
+ message: string;
1912
+ code: string;
1914
1913
  timestamp: string;
1914
+ path: string;
1915
1915
  details?: unknown;
1916
1916
  correlationId?: string | undefined;
1917
1917
  }>;
@@ -1924,19 +1924,19 @@ export declare const jobsContractRouter: {
1924
1924
  path: z.ZodString;
1925
1925
  correlationId: z.ZodOptional<z.ZodString>;
1926
1926
  }, "strip", z.ZodTypeAny, {
1927
- code: string;
1928
- path: string;
1929
- message: string;
1930
1927
  statusCode: number;
1928
+ message: string;
1929
+ code: string;
1931
1930
  timestamp: string;
1931
+ path: string;
1932
1932
  details?: unknown;
1933
1933
  correlationId?: string | undefined;
1934
1934
  }, {
1935
- code: string;
1936
- path: string;
1937
- message: string;
1938
1935
  statusCode: number;
1936
+ message: string;
1937
+ code: string;
1939
1938
  timestamp: string;
1939
+ path: string;
1940
1940
  details?: unknown;
1941
1941
  correlationId?: string | undefined;
1942
1942
  }>;
@@ -1949,19 +1949,19 @@ export declare const jobsContractRouter: {
1949
1949
  path: z.ZodString;
1950
1950
  correlationId: z.ZodOptional<z.ZodString>;
1951
1951
  }, "strip", z.ZodTypeAny, {
1952
- code: string;
1953
- path: string;
1954
- message: string;
1955
1952
  statusCode: number;
1953
+ message: string;
1954
+ code: string;
1956
1955
  timestamp: string;
1956
+ path: string;
1957
1957
  details?: unknown;
1958
1958
  correlationId?: string | undefined;
1959
1959
  }, {
1960
- code: string;
1961
- path: string;
1962
- message: string;
1963
1960
  statusCode: number;
1961
+ message: string;
1962
+ code: string;
1964
1963
  timestamp: string;
1964
+ path: string;
1965
1965
  details?: unknown;
1966
1966
  correlationId?: string | undefined;
1967
1967
  }>;
@@ -2036,11 +2036,11 @@ export declare const jobsContractRouter: {
2036
2036
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2037
2037
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2038
2038
  }, "strip", z.ZodTypeAny, {
2039
- createdAt: string;
2040
- updatedAt: string;
2041
2039
  status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
2042
- id: string;
2043
2040
  description: string;
2041
+ id: string;
2042
+ createdAt: string;
2043
+ updatedAt: string;
2044
2044
  pay: {
2045
2045
  rate: number;
2046
2046
  rateUnit: "DAILY" | "HOURLY";
@@ -2068,11 +2068,11 @@ export declare const jobsContractRouter: {
2068
2068
  id: string;
2069
2069
  } | null | undefined;
2070
2070
  }, {
2071
- createdAt: string | Date;
2072
- updatedAt: string | Date;
2073
2071
  status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
2074
- id: string;
2075
2072
  description: string;
2073
+ id: string;
2074
+ createdAt: string | Date;
2075
+ updatedAt: string | Date;
2076
2076
  pay: {
2077
2077
  rate: number;
2078
2078
  rateUnit: "DAILY" | "HOURLY";
@@ -2109,19 +2109,19 @@ export declare const jobsContractRouter: {
2109
2109
  path: z.ZodString;
2110
2110
  correlationId: z.ZodOptional<z.ZodString>;
2111
2111
  }, "strip", z.ZodTypeAny, {
2112
- code: string;
2113
- path: string;
2114
- message: string;
2115
2112
  statusCode: number;
2113
+ message: string;
2114
+ code: string;
2116
2115
  timestamp: string;
2116
+ path: string;
2117
2117
  details?: unknown;
2118
2118
  correlationId?: string | undefined;
2119
2119
  }, {
2120
- code: string;
2121
- path: string;
2122
- message: string;
2123
2120
  statusCode: number;
2121
+ message: string;
2122
+ code: string;
2124
2123
  timestamp: string;
2124
+ path: string;
2125
2125
  details?: unknown;
2126
2126
  correlationId?: string | undefined;
2127
2127
  }>;
@@ -2134,19 +2134,19 @@ export declare const jobsContractRouter: {
2134
2134
  path: z.ZodString;
2135
2135
  correlationId: z.ZodOptional<z.ZodString>;
2136
2136
  }, "strip", z.ZodTypeAny, {
2137
- code: string;
2138
- path: string;
2139
- message: string;
2140
2137
  statusCode: number;
2138
+ message: string;
2139
+ code: string;
2141
2140
  timestamp: string;
2141
+ path: string;
2142
2142
  details?: unknown;
2143
2143
  correlationId?: string | undefined;
2144
2144
  }, {
2145
- code: string;
2146
- path: string;
2147
- message: string;
2148
2145
  statusCode: number;
2146
+ message: string;
2147
+ code: string;
2149
2148
  timestamp: string;
2149
+ path: string;
2150
2150
  details?: unknown;
2151
2151
  correlationId?: string | undefined;
2152
2152
  }>;
@@ -2180,19 +2180,19 @@ export declare const jobsContractRouter: {
2180
2180
  path: z.ZodString;
2181
2181
  correlationId: z.ZodOptional<z.ZodString>;
2182
2182
  }, "strip", z.ZodTypeAny, {
2183
- code: string;
2184
- path: string;
2185
- message: string;
2186
2183
  statusCode: number;
2184
+ message: string;
2185
+ code: string;
2187
2186
  timestamp: string;
2187
+ path: string;
2188
2188
  details?: unknown;
2189
2189
  correlationId?: string | undefined;
2190
2190
  }, {
2191
- code: string;
2192
- path: string;
2193
- message: string;
2194
2191
  statusCode: number;
2192
+ message: string;
2193
+ code: string;
2195
2194
  timestamp: string;
2195
+ path: string;
2196
2196
  details?: unknown;
2197
2197
  correlationId?: string | undefined;
2198
2198
  }>;
@@ -2205,19 +2205,19 @@ export declare const jobsContractRouter: {
2205
2205
  path: z.ZodString;
2206
2206
  correlationId: z.ZodOptional<z.ZodString>;
2207
2207
  }, "strip", z.ZodTypeAny, {
2208
- code: string;
2209
- path: string;
2210
- message: string;
2211
2208
  statusCode: number;
2209
+ message: string;
2210
+ code: string;
2212
2211
  timestamp: string;
2212
+ path: string;
2213
2213
  details?: unknown;
2214
2214
  correlationId?: string | undefined;
2215
2215
  }, {
2216
- code: string;
2217
- path: string;
2218
- message: string;
2219
2216
  statusCode: number;
2217
+ message: string;
2218
+ code: string;
2220
2219
  timestamp: string;
2220
+ path: string;
2221
2221
  details?: unknown;
2222
2222
  correlationId?: string | undefined;
2223
2223
  }>;
@@ -2230,19 +2230,19 @@ export declare const jobsContractRouter: {
2230
2230
  path: z.ZodString;
2231
2231
  correlationId: z.ZodOptional<z.ZodString>;
2232
2232
  }, "strip", z.ZodTypeAny, {
2233
- code: string;
2234
- path: string;
2235
- message: string;
2236
2233
  statusCode: number;
2234
+ message: string;
2235
+ code: string;
2237
2236
  timestamp: string;
2237
+ path: string;
2238
2238
  details?: unknown;
2239
2239
  correlationId?: string | undefined;
2240
2240
  }, {
2241
- code: string;
2242
- path: string;
2243
- message: string;
2244
2241
  statusCode: number;
2242
+ message: string;
2243
+ code: string;
2245
2244
  timestamp: string;
2245
+ path: string;
2246
2246
  details?: unknown;
2247
2247
  correlationId?: string | undefined;
2248
2248
  }>;
@@ -2255,19 +2255,19 @@ export declare const jobsContractRouter: {
2255
2255
  path: z.ZodString;
2256
2256
  correlationId: z.ZodOptional<z.ZodString>;
2257
2257
  }, "strip", z.ZodTypeAny, {
2258
- code: string;
2259
- path: string;
2260
- message: string;
2261
2258
  statusCode: number;
2259
+ message: string;
2260
+ code: string;
2262
2261
  timestamp: string;
2262
+ path: string;
2263
2263
  details?: unknown;
2264
2264
  correlationId?: string | undefined;
2265
2265
  }, {
2266
- code: string;
2267
- path: string;
2268
- message: string;
2269
2266
  statusCode: number;
2267
+ message: string;
2268
+ code: string;
2270
2269
  timestamp: string;
2270
+ path: string;
2271
2271
  details?: unknown;
2272
2272
  correlationId?: string | undefined;
2273
2273
  }>;
@@ -2281,19 +2281,19 @@ export declare const jobsContractRouter: {
2281
2281
  path: z.ZodString;
2282
2282
  correlationId: z.ZodOptional<z.ZodString>;
2283
2283
  }, "strip", z.ZodTypeAny, {
2284
- code: string;
2285
- path: string;
2286
- message: string;
2287
2284
  statusCode: number;
2285
+ message: string;
2286
+ code: string;
2288
2287
  timestamp: string;
2288
+ path: string;
2289
2289
  details?: unknown;
2290
2290
  correlationId?: string | undefined;
2291
2291
  }, {
2292
- code: string;
2293
- path: string;
2294
- message: string;
2295
2292
  statusCode: number;
2293
+ message: string;
2294
+ code: string;
2296
2295
  timestamp: string;
2296
+ path: string;
2297
2297
  details?: unknown;
2298
2298
  correlationId?: string | undefined;
2299
2299
  }>;