@dakkitor/api-contracts 1.1.5 → 1.1.6

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.
@@ -42,8 +42,8 @@ export declare const ClientContactSchema: z.ZodObject<{
42
42
  lastName: string;
43
43
  email: string;
44
44
  }>;
45
- createdAt: z.ZodString;
46
- updatedAt: z.ZodString;
45
+ createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
46
+ updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
47
47
  version: z.ZodNumber;
48
48
  agentClientLinks: z.ZodObject<{
49
49
  agentId: z.ZodString;
@@ -54,11 +54,11 @@ export declare const ClientContactSchema: z.ZodObject<{
54
54
  }>;
55
55
  }, "strip", z.ZodTypeAny, {
56
56
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
57
- name: string;
58
- director: string;
59
57
  createdAt: string;
60
58
  updatedAt: string;
61
59
  id: string;
60
+ name: string;
61
+ director: string;
62
62
  crn: string;
63
63
  govLink: string;
64
64
  lastUpdatedBy: {
@@ -74,11 +74,11 @@ export declare const ClientContactSchema: z.ZodObject<{
74
74
  blacklistReason?: string | null | undefined;
75
75
  }, {
76
76
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
77
+ createdAt: string | Date;
78
+ updatedAt: string | Date;
79
+ id: string;
77
80
  name: string;
78
81
  director: string;
79
- createdAt: string;
80
- updatedAt: string;
81
- id: string;
82
82
  crn: string;
83
83
  govLink: string;
84
84
  lastUpdatedBy: {
@@ -114,24 +114,24 @@ export declare const ClientContactSchema: z.ZodObject<{
114
114
  lastName: string;
115
115
  email: string;
116
116
  }>;
117
- createdAt: z.ZodString;
118
- updatedAt: z.ZodString;
117
+ createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
118
+ updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
119
119
  version: z.ZodNumber;
120
120
  }, "strip", z.ZodTypeAny, {
121
- name: string;
122
121
  createdAt: string;
123
122
  updatedAt: string;
124
123
  id: string;
124
+ name: string;
125
125
  email: string;
126
126
  version: number;
127
127
  clientId: string;
128
128
  client: {
129
129
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
130
- name: string;
131
- director: string;
132
130
  createdAt: string;
133
131
  updatedAt: string;
134
132
  id: string;
133
+ name: string;
134
+ director: string;
135
135
  crn: string;
136
136
  govLink: string;
137
137
  lastUpdatedBy: {
@@ -156,20 +156,20 @@ export declare const ClientContactSchema: z.ZodObject<{
156
156
  position?: string | undefined;
157
157
  source?: string | undefined;
158
158
  }, {
159
- name: string;
160
- createdAt: string;
161
- updatedAt: string;
159
+ createdAt: string | Date;
160
+ updatedAt: string | Date;
162
161
  id: string;
162
+ name: string;
163
163
  email: string;
164
164
  version: number;
165
165
  clientId: string;
166
166
  client: {
167
167
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
168
+ createdAt: string | Date;
169
+ updatedAt: string | Date;
170
+ id: string;
168
171
  name: string;
169
172
  director: string;
170
- createdAt: string;
171
- updatedAt: string;
172
- id: string;
173
173
  crn: string;
174
174
  govLink: string;
175
175
  lastUpdatedBy: {
@@ -295,7 +295,7 @@ export declare const FilterClientContactSchema: z.ZodObject<{
295
295
  }, "strip", z.ZodTypeAny, {
296
296
  limit: number;
297
297
  page: number;
298
- sortBy: "name" | "createdAt" | "updatedAt" | "email" | "position";
298
+ sortBy: "createdAt" | "updatedAt" | "name" | "email" | "position";
299
299
  sortOrder: "ASC" | "DESC";
300
300
  name?: string | undefined;
301
301
  email?: string | undefined;
@@ -304,11 +304,11 @@ export declare const FilterClientContactSchema: z.ZodObject<{
304
304
  createdById?: string | undefined;
305
305
  }, {
306
306
  limit?: number | undefined;
307
- name?: string | undefined;
308
- email?: string | undefined;
309
307
  page?: number | undefined;
310
- sortBy?: "name" | "createdAt" | "updatedAt" | "email" | "position" | undefined;
308
+ sortBy?: "createdAt" | "updatedAt" | "name" | "email" | "position" | undefined;
311
309
  sortOrder?: "ASC" | "DESC" | undefined;
310
+ name?: string | undefined;
311
+ email?: string | undefined;
312
312
  clientId?: string | undefined;
313
313
  phone?: string | undefined;
314
314
  createdById?: string | undefined;
@@ -341,8 +341,8 @@ export declare const ClientContactPaginatedResponseSchema: z.ZodObject<{
341
341
  lastName: string;
342
342
  email: string;
343
343
  }>;
344
- createdAt: z.ZodString;
345
- updatedAt: z.ZodString;
344
+ createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
345
+ updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
346
346
  version: z.ZodNumber;
347
347
  agentClientLinks: z.ZodObject<{
348
348
  agentId: z.ZodString;
@@ -353,11 +353,11 @@ export declare const ClientContactPaginatedResponseSchema: z.ZodObject<{
353
353
  }>;
354
354
  }, "strip", z.ZodTypeAny, {
355
355
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
356
- name: string;
357
- director: string;
358
356
  createdAt: string;
359
357
  updatedAt: string;
360
358
  id: string;
359
+ name: string;
360
+ director: string;
361
361
  crn: string;
362
362
  govLink: string;
363
363
  lastUpdatedBy: {
@@ -373,11 +373,11 @@ export declare const ClientContactPaginatedResponseSchema: z.ZodObject<{
373
373
  blacklistReason?: string | null | undefined;
374
374
  }, {
375
375
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
376
+ createdAt: string | Date;
377
+ updatedAt: string | Date;
378
+ id: string;
376
379
  name: string;
377
380
  director: string;
378
- createdAt: string;
379
- updatedAt: string;
380
- id: string;
381
381
  crn: string;
382
382
  govLink: string;
383
383
  lastUpdatedBy: {
@@ -413,24 +413,24 @@ export declare const ClientContactPaginatedResponseSchema: z.ZodObject<{
413
413
  lastName: string;
414
414
  email: string;
415
415
  }>;
416
- createdAt: z.ZodString;
417
- updatedAt: z.ZodString;
416
+ createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
417
+ updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
418
418
  version: z.ZodNumber;
419
419
  }, "strip", z.ZodTypeAny, {
420
- name: string;
421
420
  createdAt: string;
422
421
  updatedAt: string;
423
422
  id: string;
423
+ name: string;
424
424
  email: string;
425
425
  version: number;
426
426
  clientId: string;
427
427
  client: {
428
428
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
429
- name: string;
430
- director: string;
431
429
  createdAt: string;
432
430
  updatedAt: string;
433
431
  id: string;
432
+ name: string;
433
+ director: string;
434
434
  crn: string;
435
435
  govLink: string;
436
436
  lastUpdatedBy: {
@@ -455,20 +455,20 @@ export declare const ClientContactPaginatedResponseSchema: z.ZodObject<{
455
455
  position?: string | undefined;
456
456
  source?: string | undefined;
457
457
  }, {
458
- name: string;
459
- createdAt: string;
460
- updatedAt: string;
458
+ createdAt: string | Date;
459
+ updatedAt: string | Date;
461
460
  id: string;
461
+ name: string;
462
462
  email: string;
463
463
  version: number;
464
464
  clientId: string;
465
465
  client: {
466
466
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
467
+ createdAt: string | Date;
468
+ updatedAt: string | Date;
469
+ id: string;
467
470
  name: string;
468
471
  director: string;
469
- createdAt: string;
470
- updatedAt: string;
471
- id: string;
472
472
  crn: string;
473
473
  govLink: string;
474
474
  lastUpdatedBy: {
@@ -500,20 +500,20 @@ export declare const ClientContactPaginatedResponseSchema: z.ZodObject<{
500
500
  totalPages: z.ZodNumber;
501
501
  }, "strip", z.ZodTypeAny, {
502
502
  items: {
503
- name: string;
504
503
  createdAt: string;
505
504
  updatedAt: string;
506
505
  id: string;
506
+ name: string;
507
507
  email: string;
508
508
  version: number;
509
509
  clientId: string;
510
510
  client: {
511
511
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
512
- name: string;
513
- director: string;
514
512
  createdAt: string;
515
513
  updatedAt: string;
516
514
  id: string;
515
+ name: string;
516
+ director: string;
517
517
  crn: string;
518
518
  govLink: string;
519
519
  lastUpdatedBy: {
@@ -545,20 +545,20 @@ export declare const ClientContactPaginatedResponseSchema: z.ZodObject<{
545
545
  totalPages: number;
546
546
  }, {
547
547
  items: {
548
- name: string;
549
- createdAt: string;
550
- updatedAt: string;
548
+ createdAt: string | Date;
549
+ updatedAt: string | Date;
551
550
  id: string;
551
+ name: string;
552
552
  email: string;
553
553
  version: number;
554
554
  clientId: string;
555
555
  client: {
556
556
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
557
+ createdAt: string | Date;
558
+ updatedAt: string | Date;
559
+ id: string;
557
560
  name: string;
558
561
  director: string;
559
- createdAt: string;
560
- updatedAt: string;
561
- id: string;
562
562
  crn: string;
563
563
  govLink: string;
564
564
  lastUpdatedBy: {
@@ -760,8 +760,8 @@ export declare const clientContactsContractRouter: {
760
760
  lastName: string;
761
761
  email: string;
762
762
  }>;
763
- createdAt: z.ZodString;
764
- updatedAt: z.ZodString;
763
+ createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
764
+ updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
765
765
  version: z.ZodNumber;
766
766
  agentClientLinks: z.ZodObject<{
767
767
  agentId: z.ZodString;
@@ -772,11 +772,11 @@ export declare const clientContactsContractRouter: {
772
772
  }>;
773
773
  }, "strip", z.ZodTypeAny, {
774
774
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
775
- name: string;
776
- director: string;
777
775
  createdAt: string;
778
776
  updatedAt: string;
779
777
  id: string;
778
+ name: string;
779
+ director: string;
780
780
  crn: string;
781
781
  govLink: string;
782
782
  lastUpdatedBy: {
@@ -792,11 +792,11 @@ export declare const clientContactsContractRouter: {
792
792
  blacklistReason?: string | null | undefined;
793
793
  }, {
794
794
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
795
+ createdAt: string | Date;
796
+ updatedAt: string | Date;
797
+ id: string;
795
798
  name: string;
796
799
  director: string;
797
- createdAt: string;
798
- updatedAt: string;
799
- id: string;
800
800
  crn: string;
801
801
  govLink: string;
802
802
  lastUpdatedBy: {
@@ -832,24 +832,24 @@ export declare const clientContactsContractRouter: {
832
832
  lastName: string;
833
833
  email: string;
834
834
  }>;
835
- createdAt: z.ZodString;
836
- updatedAt: z.ZodString;
835
+ createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
836
+ updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
837
837
  version: z.ZodNumber;
838
838
  }, "strip", z.ZodTypeAny, {
839
- name: string;
840
839
  createdAt: string;
841
840
  updatedAt: string;
842
841
  id: string;
842
+ name: string;
843
843
  email: string;
844
844
  version: number;
845
845
  clientId: string;
846
846
  client: {
847
847
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
848
- name: string;
849
- director: string;
850
848
  createdAt: string;
851
849
  updatedAt: string;
852
850
  id: string;
851
+ name: string;
852
+ director: string;
853
853
  crn: string;
854
854
  govLink: string;
855
855
  lastUpdatedBy: {
@@ -874,20 +874,20 @@ export declare const clientContactsContractRouter: {
874
874
  position?: string | undefined;
875
875
  source?: string | undefined;
876
876
  }, {
877
- name: string;
878
- createdAt: string;
879
- updatedAt: string;
877
+ createdAt: string | Date;
878
+ updatedAt: string | Date;
880
879
  id: string;
880
+ name: string;
881
881
  email: string;
882
882
  version: number;
883
883
  clientId: string;
884
884
  client: {
885
885
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
886
+ createdAt: string | Date;
887
+ updatedAt: string | Date;
888
+ id: string;
886
889
  name: string;
887
890
  director: string;
888
- createdAt: string;
889
- updatedAt: string;
890
- id: string;
891
891
  crn: string;
892
892
  govLink: string;
893
893
  lastUpdatedBy: {
@@ -1104,8 +1104,8 @@ export declare const clientContactsContractRouter: {
1104
1104
  lastName: string;
1105
1105
  email: string;
1106
1106
  }>;
1107
- createdAt: z.ZodString;
1108
- updatedAt: z.ZodString;
1107
+ createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1108
+ updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1109
1109
  version: z.ZodNumber;
1110
1110
  agentClientLinks: z.ZodObject<{
1111
1111
  agentId: z.ZodString;
@@ -1116,11 +1116,11 @@ export declare const clientContactsContractRouter: {
1116
1116
  }>;
1117
1117
  }, "strip", z.ZodTypeAny, {
1118
1118
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1119
- name: string;
1120
- director: string;
1121
1119
  createdAt: string;
1122
1120
  updatedAt: string;
1123
1121
  id: string;
1122
+ name: string;
1123
+ director: string;
1124
1124
  crn: string;
1125
1125
  govLink: string;
1126
1126
  lastUpdatedBy: {
@@ -1136,11 +1136,11 @@ export declare const clientContactsContractRouter: {
1136
1136
  blacklistReason?: string | null | undefined;
1137
1137
  }, {
1138
1138
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1139
+ createdAt: string | Date;
1140
+ updatedAt: string | Date;
1141
+ id: string;
1139
1142
  name: string;
1140
1143
  director: string;
1141
- createdAt: string;
1142
- updatedAt: string;
1143
- id: string;
1144
1144
  crn: string;
1145
1145
  govLink: string;
1146
1146
  lastUpdatedBy: {
@@ -1176,24 +1176,24 @@ export declare const clientContactsContractRouter: {
1176
1176
  lastName: string;
1177
1177
  email: string;
1178
1178
  }>;
1179
- createdAt: z.ZodString;
1180
- updatedAt: z.ZodString;
1179
+ createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1180
+ updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1181
1181
  version: z.ZodNumber;
1182
1182
  }, "strip", z.ZodTypeAny, {
1183
- name: string;
1184
1183
  createdAt: string;
1185
1184
  updatedAt: string;
1186
1185
  id: string;
1186
+ name: string;
1187
1187
  email: string;
1188
1188
  version: number;
1189
1189
  clientId: string;
1190
1190
  client: {
1191
1191
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1192
- name: string;
1193
- director: string;
1194
1192
  createdAt: string;
1195
1193
  updatedAt: string;
1196
1194
  id: string;
1195
+ name: string;
1196
+ director: string;
1197
1197
  crn: string;
1198
1198
  govLink: string;
1199
1199
  lastUpdatedBy: {
@@ -1218,20 +1218,20 @@ export declare const clientContactsContractRouter: {
1218
1218
  position?: string | undefined;
1219
1219
  source?: string | undefined;
1220
1220
  }, {
1221
- name: string;
1222
- createdAt: string;
1223
- updatedAt: string;
1221
+ createdAt: string | Date;
1222
+ updatedAt: string | Date;
1224
1223
  id: string;
1224
+ name: string;
1225
1225
  email: string;
1226
1226
  version: number;
1227
1227
  clientId: string;
1228
1228
  client: {
1229
1229
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1230
+ createdAt: string | Date;
1231
+ updatedAt: string | Date;
1232
+ id: string;
1230
1233
  name: string;
1231
1234
  director: string;
1232
- createdAt: string;
1233
- updatedAt: string;
1234
- id: string;
1235
1235
  crn: string;
1236
1236
  govLink: string;
1237
1237
  lastUpdatedBy: {
@@ -1297,7 +1297,7 @@ export declare const clientContactsContractRouter: {
1297
1297
  }, "strip", z.ZodTypeAny, {
1298
1298
  limit: number;
1299
1299
  page: number;
1300
- sortBy: "name" | "createdAt" | "updatedAt" | "email" | "position";
1300
+ sortBy: "createdAt" | "updatedAt" | "name" | "email" | "position";
1301
1301
  sortOrder: "ASC" | "DESC";
1302
1302
  name?: string | undefined;
1303
1303
  email?: string | undefined;
@@ -1306,11 +1306,11 @@ export declare const clientContactsContractRouter: {
1306
1306
  createdById?: string | undefined;
1307
1307
  }, {
1308
1308
  limit?: number | undefined;
1309
- name?: string | undefined;
1310
- email?: string | undefined;
1311
1309
  page?: number | undefined;
1312
- sortBy?: "name" | "createdAt" | "updatedAt" | "email" | "position" | undefined;
1310
+ sortBy?: "createdAt" | "updatedAt" | "name" | "email" | "position" | undefined;
1313
1311
  sortOrder?: "ASC" | "DESC" | undefined;
1312
+ name?: string | undefined;
1313
+ email?: string | undefined;
1314
1314
  clientId?: string | undefined;
1315
1315
  phone?: string | undefined;
1316
1316
  createdById?: string | undefined;
@@ -1447,8 +1447,8 @@ export declare const clientContactsContractRouter: {
1447
1447
  lastName: string;
1448
1448
  email: string;
1449
1449
  }>;
1450
- createdAt: z.ZodString;
1451
- updatedAt: z.ZodString;
1450
+ createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1451
+ updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1452
1452
  version: z.ZodNumber;
1453
1453
  agentClientLinks: z.ZodObject<{
1454
1454
  agentId: z.ZodString;
@@ -1459,11 +1459,11 @@ export declare const clientContactsContractRouter: {
1459
1459
  }>;
1460
1460
  }, "strip", z.ZodTypeAny, {
1461
1461
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1462
- name: string;
1463
- director: string;
1464
1462
  createdAt: string;
1465
1463
  updatedAt: string;
1466
1464
  id: string;
1465
+ name: string;
1466
+ director: string;
1467
1467
  crn: string;
1468
1468
  govLink: string;
1469
1469
  lastUpdatedBy: {
@@ -1479,11 +1479,11 @@ export declare const clientContactsContractRouter: {
1479
1479
  blacklistReason?: string | null | undefined;
1480
1480
  }, {
1481
1481
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1482
+ createdAt: string | Date;
1483
+ updatedAt: string | Date;
1484
+ id: string;
1482
1485
  name: string;
1483
1486
  director: string;
1484
- createdAt: string;
1485
- updatedAt: string;
1486
- id: string;
1487
1487
  crn: string;
1488
1488
  govLink: string;
1489
1489
  lastUpdatedBy: {
@@ -1519,24 +1519,24 @@ export declare const clientContactsContractRouter: {
1519
1519
  lastName: string;
1520
1520
  email: string;
1521
1521
  }>;
1522
- createdAt: z.ZodString;
1523
- updatedAt: z.ZodString;
1522
+ createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1523
+ updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1524
1524
  version: z.ZodNumber;
1525
1525
  }, "strip", z.ZodTypeAny, {
1526
- name: string;
1527
1526
  createdAt: string;
1528
1527
  updatedAt: string;
1529
1528
  id: string;
1529
+ name: string;
1530
1530
  email: string;
1531
1531
  version: number;
1532
1532
  clientId: string;
1533
1533
  client: {
1534
1534
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1535
- name: string;
1536
- director: string;
1537
1535
  createdAt: string;
1538
1536
  updatedAt: string;
1539
1537
  id: string;
1538
+ name: string;
1539
+ director: string;
1540
1540
  crn: string;
1541
1541
  govLink: string;
1542
1542
  lastUpdatedBy: {
@@ -1561,20 +1561,20 @@ export declare const clientContactsContractRouter: {
1561
1561
  position?: string | undefined;
1562
1562
  source?: string | undefined;
1563
1563
  }, {
1564
- name: string;
1565
- createdAt: string;
1566
- updatedAt: string;
1564
+ createdAt: string | Date;
1565
+ updatedAt: string | Date;
1567
1566
  id: string;
1567
+ name: string;
1568
1568
  email: string;
1569
1569
  version: number;
1570
1570
  clientId: string;
1571
1571
  client: {
1572
1572
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1573
+ createdAt: string | Date;
1574
+ updatedAt: string | Date;
1575
+ id: string;
1573
1576
  name: string;
1574
1577
  director: string;
1575
- createdAt: string;
1576
- updatedAt: string;
1577
- id: string;
1578
1578
  crn: string;
1579
1579
  govLink: string;
1580
1580
  lastUpdatedBy: {
@@ -1606,20 +1606,20 @@ export declare const clientContactsContractRouter: {
1606
1606
  totalPages: z.ZodNumber;
1607
1607
  }, "strip", z.ZodTypeAny, {
1608
1608
  items: {
1609
- name: string;
1610
1609
  createdAt: string;
1611
1610
  updatedAt: string;
1612
1611
  id: string;
1612
+ name: string;
1613
1613
  email: string;
1614
1614
  version: number;
1615
1615
  clientId: string;
1616
1616
  client: {
1617
1617
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1618
- name: string;
1619
- director: string;
1620
1618
  createdAt: string;
1621
1619
  updatedAt: string;
1622
1620
  id: string;
1621
+ name: string;
1622
+ director: string;
1623
1623
  crn: string;
1624
1624
  govLink: string;
1625
1625
  lastUpdatedBy: {
@@ -1651,20 +1651,20 @@ export declare const clientContactsContractRouter: {
1651
1651
  totalPages: number;
1652
1652
  }, {
1653
1653
  items: {
1654
- name: string;
1655
- createdAt: string;
1656
- updatedAt: string;
1654
+ createdAt: string | Date;
1655
+ updatedAt: string | Date;
1657
1656
  id: string;
1657
+ name: string;
1658
1658
  email: string;
1659
1659
  version: number;
1660
1660
  clientId: string;
1661
1661
  client: {
1662
1662
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1663
+ createdAt: string | Date;
1664
+ updatedAt: string | Date;
1665
+ id: string;
1663
1666
  name: string;
1664
1667
  director: string;
1665
- createdAt: string;
1666
- updatedAt: string;
1667
- id: string;
1668
1668
  crn: string;
1669
1669
  govLink: string;
1670
1670
  lastUpdatedBy: {
@@ -1836,8 +1836,8 @@ export declare const clientContactsContractRouter: {
1836
1836
  lastName: string;
1837
1837
  email: string;
1838
1838
  }>;
1839
- createdAt: z.ZodString;
1840
- updatedAt: z.ZodString;
1839
+ createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1840
+ updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1841
1841
  version: z.ZodNumber;
1842
1842
  agentClientLinks: z.ZodObject<{
1843
1843
  agentId: z.ZodString;
@@ -1848,11 +1848,11 @@ export declare const clientContactsContractRouter: {
1848
1848
  }>;
1849
1849
  }, "strip", z.ZodTypeAny, {
1850
1850
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1851
- name: string;
1852
- director: string;
1853
1851
  createdAt: string;
1854
1852
  updatedAt: string;
1855
1853
  id: string;
1854
+ name: string;
1855
+ director: string;
1856
1856
  crn: string;
1857
1857
  govLink: string;
1858
1858
  lastUpdatedBy: {
@@ -1868,11 +1868,11 @@ export declare const clientContactsContractRouter: {
1868
1868
  blacklistReason?: string | null | undefined;
1869
1869
  }, {
1870
1870
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1871
+ createdAt: string | Date;
1872
+ updatedAt: string | Date;
1873
+ id: string;
1871
1874
  name: string;
1872
1875
  director: string;
1873
- createdAt: string;
1874
- updatedAt: string;
1875
- id: string;
1876
1876
  crn: string;
1877
1877
  govLink: string;
1878
1878
  lastUpdatedBy: {
@@ -1908,24 +1908,24 @@ export declare const clientContactsContractRouter: {
1908
1908
  lastName: string;
1909
1909
  email: string;
1910
1910
  }>;
1911
- createdAt: z.ZodString;
1912
- updatedAt: z.ZodString;
1911
+ createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1912
+ updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1913
1913
  version: z.ZodNumber;
1914
1914
  }, "strip", z.ZodTypeAny, {
1915
- name: string;
1916
1915
  createdAt: string;
1917
1916
  updatedAt: string;
1918
1917
  id: string;
1918
+ name: string;
1919
1919
  email: string;
1920
1920
  version: number;
1921
1921
  clientId: string;
1922
1922
  client: {
1923
1923
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1924
- name: string;
1925
- director: string;
1926
1924
  createdAt: string;
1927
1925
  updatedAt: string;
1928
1926
  id: string;
1927
+ name: string;
1928
+ director: string;
1929
1929
  crn: string;
1930
1930
  govLink: string;
1931
1931
  lastUpdatedBy: {
@@ -1950,20 +1950,20 @@ export declare const clientContactsContractRouter: {
1950
1950
  position?: string | undefined;
1951
1951
  source?: string | undefined;
1952
1952
  }, {
1953
- name: string;
1954
- createdAt: string;
1955
- updatedAt: string;
1953
+ createdAt: string | Date;
1954
+ updatedAt: string | Date;
1956
1955
  id: string;
1956
+ name: string;
1957
1957
  email: string;
1958
1958
  version: number;
1959
1959
  clientId: string;
1960
1960
  client: {
1961
1961
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1962
+ createdAt: string | Date;
1963
+ updatedAt: string | Date;
1964
+ id: string;
1962
1965
  name: string;
1963
1966
  director: string;
1964
- createdAt: string;
1965
- updatedAt: string;
1966
- id: string;
1967
1967
  crn: string;
1968
1968
  govLink: string;
1969
1969
  lastUpdatedBy: {
@@ -2184,8 +2184,8 @@ export declare const clientContactsContractRouter: {
2184
2184
  lastName: string;
2185
2185
  email: string;
2186
2186
  }>;
2187
- createdAt: z.ZodString;
2188
- updatedAt: z.ZodString;
2187
+ createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2188
+ updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2189
2189
  version: z.ZodNumber;
2190
2190
  agentClientLinks: z.ZodObject<{
2191
2191
  agentId: z.ZodString;
@@ -2196,11 +2196,11 @@ export declare const clientContactsContractRouter: {
2196
2196
  }>;
2197
2197
  }, "strip", z.ZodTypeAny, {
2198
2198
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2199
- name: string;
2200
- director: string;
2201
2199
  createdAt: string;
2202
2200
  updatedAt: string;
2203
2201
  id: string;
2202
+ name: string;
2203
+ director: string;
2204
2204
  crn: string;
2205
2205
  govLink: string;
2206
2206
  lastUpdatedBy: {
@@ -2216,11 +2216,11 @@ export declare const clientContactsContractRouter: {
2216
2216
  blacklistReason?: string | null | undefined;
2217
2217
  }, {
2218
2218
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2219
+ createdAt: string | Date;
2220
+ updatedAt: string | Date;
2221
+ id: string;
2219
2222
  name: string;
2220
2223
  director: string;
2221
- createdAt: string;
2222
- updatedAt: string;
2223
- id: string;
2224
2224
  crn: string;
2225
2225
  govLink: string;
2226
2226
  lastUpdatedBy: {
@@ -2256,24 +2256,24 @@ export declare const clientContactsContractRouter: {
2256
2256
  lastName: string;
2257
2257
  email: string;
2258
2258
  }>;
2259
- createdAt: z.ZodString;
2260
- updatedAt: z.ZodString;
2259
+ createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2260
+ updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2261
2261
  version: z.ZodNumber;
2262
2262
  }, "strip", z.ZodTypeAny, {
2263
- name: string;
2264
2263
  createdAt: string;
2265
2264
  updatedAt: string;
2266
2265
  id: string;
2266
+ name: string;
2267
2267
  email: string;
2268
2268
  version: number;
2269
2269
  clientId: string;
2270
2270
  client: {
2271
2271
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2272
- name: string;
2273
- director: string;
2274
2272
  createdAt: string;
2275
2273
  updatedAt: string;
2276
2274
  id: string;
2275
+ name: string;
2276
+ director: string;
2277
2277
  crn: string;
2278
2278
  govLink: string;
2279
2279
  lastUpdatedBy: {
@@ -2298,20 +2298,20 @@ export declare const clientContactsContractRouter: {
2298
2298
  position?: string | undefined;
2299
2299
  source?: string | undefined;
2300
2300
  }, {
2301
- name: string;
2302
- createdAt: string;
2303
- updatedAt: string;
2301
+ createdAt: string | Date;
2302
+ updatedAt: string | Date;
2304
2303
  id: string;
2304
+ name: string;
2305
2305
  email: string;
2306
2306
  version: number;
2307
2307
  clientId: string;
2308
2308
  client: {
2309
2309
  status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2310
+ createdAt: string | Date;
2311
+ updatedAt: string | Date;
2312
+ id: string;
2310
2313
  name: string;
2311
2314
  director: string;
2312
- createdAt: string;
2313
- updatedAt: string;
2314
- id: string;
2315
2315
  crn: string;
2316
2316
  govLink: string;
2317
2317
  lastUpdatedBy: {