@dakkitor/api-contracts 1.1.37 → 1.1.38

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.
@@ -20,15 +20,15 @@ export declare const CollaborationSchema: z.ZodObject<{
20
20
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
21
21
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
22
22
  }, "strip", z.ZodTypeAny, {
23
- id: string;
24
- name: string;
25
23
  createdAt: string;
26
24
  updatedAt: string;
27
- }, {
28
25
  id: string;
29
26
  name: string;
27
+ }, {
30
28
  createdAt: string | Date;
31
29
  updatedAt: string | Date;
30
+ id: string;
31
+ name: string;
32
32
  }>>>;
33
33
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
34
34
  id: z.ZodString;
@@ -64,11 +64,11 @@ export declare const CollaborationSchema: z.ZodObject<{
64
64
  agentId: string;
65
65
  }>>>;
66
66
  }, "strip", z.ZodTypeAny, {
67
- id: string;
68
- name: string;
69
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
70
67
  createdAt: string;
71
68
  updatedAt: string;
69
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
70
+ id: string;
71
+ name: string;
72
72
  crn: string;
73
73
  govLink: string;
74
74
  director: string;
@@ -83,11 +83,11 @@ export declare const CollaborationSchema: z.ZodObject<{
83
83
  agentId: string;
84
84
  } | null | undefined;
85
85
  }, {
86
- id: string;
87
- name: string;
88
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
89
86
  createdAt: string | Date;
90
87
  updatedAt: string | Date;
88
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
89
+ id: string;
90
+ name: string;
91
91
  crn: string;
92
92
  govLink: string;
93
93
  director: string;
@@ -131,15 +131,15 @@ export declare const CollaborationSchema: z.ZodObject<{
131
131
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
132
132
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
133
133
  }, "strip", z.ZodTypeAny, {
134
- id: string;
135
- name: string;
136
134
  createdAt: string;
137
135
  updatedAt: string;
138
- }, {
139
136
  id: string;
140
137
  name: string;
138
+ }, {
141
139
  createdAt: string | Date;
142
140
  updatedAt: string | Date;
141
+ id: string;
142
+ name: string;
143
143
  }>>>;
144
144
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
145
145
  id: z.ZodString;
@@ -175,11 +175,11 @@ export declare const CollaborationSchema: z.ZodObject<{
175
175
  agentId: string;
176
176
  }>>>;
177
177
  }, "strip", z.ZodTypeAny, {
178
- id: string;
179
- name: string;
180
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
181
178
  createdAt: string;
182
179
  updatedAt: string;
180
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
181
+ id: string;
182
+ name: string;
183
183
  crn: string;
184
184
  govLink: string;
185
185
  director: string;
@@ -194,11 +194,11 @@ export declare const CollaborationSchema: z.ZodObject<{
194
194
  agentId: string;
195
195
  } | null | undefined;
196
196
  }, {
197
- id: string;
198
- name: string;
199
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
200
197
  createdAt: string | Date;
201
198
  updatedAt: string | Date;
199
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
200
+ id: string;
201
+ name: string;
202
202
  crn: string;
203
203
  govLink: string;
204
204
  director: string;
@@ -234,23 +234,23 @@ export declare const CollaborationSchema: z.ZodObject<{
234
234
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
235
235
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
236
236
  }, "strip", z.ZodTypeAny, {
237
- id: string;
238
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
239
237
  createdAt: string;
240
238
  updatedAt: string;
239
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
240
+ id: string;
241
241
  userId: string;
242
242
  company?: {
243
- id: string;
244
- name: string;
245
243
  createdAt: string;
246
244
  updatedAt: string;
247
- } | null | undefined;
248
- client?: {
249
245
  id: string;
250
246
  name: string;
251
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
247
+ } | null | undefined;
248
+ client?: {
252
249
  createdAt: string;
253
250
  updatedAt: string;
251
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
252
+ id: string;
253
+ name: string;
254
254
  crn: string;
255
255
  govLink: string;
256
256
  director: string;
@@ -272,23 +272,23 @@ export declare const CollaborationSchema: z.ZodObject<{
272
272
  email: string;
273
273
  } | null | undefined;
274
274
  }, {
275
- id: string;
276
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
277
275
  createdAt: string | Date;
278
276
  updatedAt: string | Date;
277
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
278
+ id: string;
279
279
  userId: string;
280
280
  company?: {
281
- id: string;
282
- name: string;
283
281
  createdAt: string | Date;
284
282
  updatedAt: string | Date;
285
- } | null | undefined;
286
- client?: {
287
283
  id: string;
288
284
  name: string;
289
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
285
+ } | null | undefined;
286
+ client?: {
290
287
  createdAt: string | Date;
291
288
  updatedAt: string | Date;
289
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
290
+ id: string;
291
+ name: string;
292
292
  crn: string;
293
293
  govLink: string;
294
294
  director: string;
@@ -311,23 +311,23 @@ export declare const CollaborationSchema: z.ZodObject<{
311
311
  } | null | undefined;
312
312
  }>>>;
313
313
  }, "strip", z.ZodTypeAny, {
314
- id: string;
315
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
316
314
  createdAt: string;
317
315
  updatedAt: string;
316
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
317
+ id: string;
318
318
  userId: string;
319
319
  company?: {
320
- id: string;
321
- name: string;
322
320
  createdAt: string;
323
321
  updatedAt: string;
324
- } | null | undefined;
325
- client?: {
326
322
  id: string;
327
323
  name: string;
328
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
324
+ } | null | undefined;
325
+ client?: {
329
326
  createdAt: string;
330
327
  updatedAt: string;
328
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
329
+ id: string;
330
+ name: string;
331
331
  crn: string;
332
332
  govLink: string;
333
333
  director: string;
@@ -349,23 +349,23 @@ export declare const CollaborationSchema: z.ZodObject<{
349
349
  email: string;
350
350
  } | null | undefined;
351
351
  newCollaboration?: {
352
- id: string;
353
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
354
352
  createdAt: string;
355
353
  updatedAt: string;
354
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
355
+ id: string;
356
356
  userId: string;
357
357
  company?: {
358
- id: string;
359
- name: string;
360
358
  createdAt: string;
361
359
  updatedAt: string;
362
- } | null | undefined;
363
- client?: {
364
360
  id: string;
365
361
  name: string;
366
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
362
+ } | null | undefined;
363
+ client?: {
367
364
  createdAt: string;
368
365
  updatedAt: string;
366
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
367
+ id: string;
368
+ name: string;
369
369
  crn: string;
370
370
  govLink: string;
371
371
  director: string;
@@ -388,23 +388,23 @@ export declare const CollaborationSchema: z.ZodObject<{
388
388
  } | null | undefined;
389
389
  } | null | undefined;
390
390
  }, {
391
- id: string;
392
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
393
391
  createdAt: string | Date;
394
392
  updatedAt: string | Date;
393
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
394
+ id: string;
395
395
  userId: string;
396
396
  company?: {
397
- id: string;
398
- name: string;
399
397
  createdAt: string | Date;
400
398
  updatedAt: string | Date;
401
- } | null | undefined;
402
- client?: {
403
399
  id: string;
404
400
  name: string;
405
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
401
+ } | null | undefined;
402
+ client?: {
406
403
  createdAt: string | Date;
407
404
  updatedAt: string | Date;
405
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
406
+ id: string;
407
+ name: string;
408
408
  crn: string;
409
409
  govLink: string;
410
410
  director: string;
@@ -426,23 +426,23 @@ export declare const CollaborationSchema: z.ZodObject<{
426
426
  email: string;
427
427
  } | null | undefined;
428
428
  newCollaboration?: {
429
- id: string;
430
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
431
429
  createdAt: string | Date;
432
430
  updatedAt: string | Date;
431
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
432
+ id: string;
433
433
  userId: string;
434
434
  company?: {
435
- id: string;
436
- name: string;
437
435
  createdAt: string | Date;
438
436
  updatedAt: string | Date;
439
- } | null | undefined;
440
- client?: {
441
437
  id: string;
442
438
  name: string;
443
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
439
+ } | null | undefined;
440
+ client?: {
444
441
  createdAt: string | Date;
445
442
  updatedAt: string | Date;
443
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
444
+ id: string;
445
+ name: string;
446
446
  crn: string;
447
447
  govLink: string;
448
448
  director: string;
@@ -590,20 +590,20 @@ export declare const FilterCollaborationSchema: z.ZodObject<{
590
590
  limit: number;
591
591
  page: number;
592
592
  status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | null | undefined;
593
- sortBy?: "status" | "createdAt" | "updatedAt" | null | undefined;
594
- sortOrder?: "ASC" | "DESC" | null | undefined;
595
- companyId?: string | null | undefined;
596
593
  userId?: string | null | undefined;
594
+ companyId?: string | null | undefined;
597
595
  clientId?: string | null | undefined;
596
+ sortBy?: "createdAt" | "updatedAt" | "status" | null | undefined;
597
+ sortOrder?: "ASC" | "DESC" | null | undefined;
598
598
  }, {
599
599
  status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | null | undefined;
600
+ userId?: string | null | undefined;
600
601
  limit?: number | undefined;
601
602
  page?: number | undefined;
602
- sortBy?: "status" | "createdAt" | "updatedAt" | null | undefined;
603
- sortOrder?: "ASC" | "DESC" | null | undefined;
604
603
  companyId?: string | null | undefined;
605
- userId?: string | null | undefined;
606
604
  clientId?: string | null | undefined;
605
+ sortBy?: "createdAt" | "updatedAt" | "status" | null | undefined;
606
+ sortOrder?: "ASC" | "DESC" | null | undefined;
607
607
  }>;
608
608
  /**
609
609
  * Collaboration Autocomplete Response Schema
@@ -719,15 +719,15 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
719
719
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
720
720
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
721
721
  }, "strip", z.ZodTypeAny, {
722
- id: string;
723
- name: string;
724
722
  createdAt: string;
725
723
  updatedAt: string;
726
- }, {
727
724
  id: string;
728
725
  name: string;
726
+ }, {
729
727
  createdAt: string | Date;
730
728
  updatedAt: string | Date;
729
+ id: string;
730
+ name: string;
731
731
  }>>>;
732
732
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
733
733
  id: z.ZodString;
@@ -763,11 +763,11 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
763
763
  agentId: string;
764
764
  }>>>;
765
765
  }, "strip", z.ZodTypeAny, {
766
- id: string;
767
- name: string;
768
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
769
766
  createdAt: string;
770
767
  updatedAt: string;
768
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
769
+ id: string;
770
+ name: string;
771
771
  crn: string;
772
772
  govLink: string;
773
773
  director: string;
@@ -782,11 +782,11 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
782
782
  agentId: string;
783
783
  } | null | undefined;
784
784
  }, {
785
- id: string;
786
- name: string;
787
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
788
785
  createdAt: string | Date;
789
786
  updatedAt: string | Date;
787
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
788
+ id: string;
789
+ name: string;
790
790
  crn: string;
791
791
  govLink: string;
792
792
  director: string;
@@ -830,15 +830,15 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
830
830
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
831
831
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
832
832
  }, "strip", z.ZodTypeAny, {
833
- id: string;
834
- name: string;
835
833
  createdAt: string;
836
834
  updatedAt: string;
837
- }, {
838
835
  id: string;
839
836
  name: string;
837
+ }, {
840
838
  createdAt: string | Date;
841
839
  updatedAt: string | Date;
840
+ id: string;
841
+ name: string;
842
842
  }>>>;
843
843
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
844
844
  id: z.ZodString;
@@ -874,11 +874,11 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
874
874
  agentId: string;
875
875
  }>>>;
876
876
  }, "strip", z.ZodTypeAny, {
877
- id: string;
878
- name: string;
879
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
880
877
  createdAt: string;
881
878
  updatedAt: string;
879
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
880
+ id: string;
881
+ name: string;
882
882
  crn: string;
883
883
  govLink: string;
884
884
  director: string;
@@ -893,11 +893,11 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
893
893
  agentId: string;
894
894
  } | null | undefined;
895
895
  }, {
896
- id: string;
897
- name: string;
898
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
899
896
  createdAt: string | Date;
900
897
  updatedAt: string | Date;
898
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
899
+ id: string;
900
+ name: string;
901
901
  crn: string;
902
902
  govLink: string;
903
903
  director: string;
@@ -933,23 +933,23 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
933
933
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
934
934
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
935
935
  }, "strip", z.ZodTypeAny, {
936
- id: string;
937
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
938
936
  createdAt: string;
939
937
  updatedAt: string;
938
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
939
+ id: string;
940
940
  userId: string;
941
941
  company?: {
942
- id: string;
943
- name: string;
944
942
  createdAt: string;
945
943
  updatedAt: string;
946
- } | null | undefined;
947
- client?: {
948
944
  id: string;
949
945
  name: string;
950
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
946
+ } | null | undefined;
947
+ client?: {
951
948
  createdAt: string;
952
949
  updatedAt: string;
950
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
951
+ id: string;
952
+ name: string;
953
953
  crn: string;
954
954
  govLink: string;
955
955
  director: string;
@@ -971,23 +971,23 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
971
971
  email: string;
972
972
  } | null | undefined;
973
973
  }, {
974
- id: string;
975
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
976
974
  createdAt: string | Date;
977
975
  updatedAt: string | Date;
976
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
977
+ id: string;
978
978
  userId: string;
979
979
  company?: {
980
- id: string;
981
- name: string;
982
980
  createdAt: string | Date;
983
981
  updatedAt: string | Date;
984
- } | null | undefined;
985
- client?: {
986
982
  id: string;
987
983
  name: string;
988
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
984
+ } | null | undefined;
985
+ client?: {
989
986
  createdAt: string | Date;
990
987
  updatedAt: string | Date;
988
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
989
+ id: string;
990
+ name: string;
991
991
  crn: string;
992
992
  govLink: string;
993
993
  director: string;
@@ -1010,23 +1010,23 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1010
1010
  } | null | undefined;
1011
1011
  }>>>;
1012
1012
  }, "strip", z.ZodTypeAny, {
1013
- id: string;
1014
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1015
1013
  createdAt: string;
1016
1014
  updatedAt: string;
1015
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1016
+ id: string;
1017
1017
  userId: string;
1018
1018
  company?: {
1019
- id: string;
1020
- name: string;
1021
1019
  createdAt: string;
1022
1020
  updatedAt: string;
1023
- } | null | undefined;
1024
- client?: {
1025
1021
  id: string;
1026
1022
  name: string;
1027
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1023
+ } | null | undefined;
1024
+ client?: {
1028
1025
  createdAt: string;
1029
1026
  updatedAt: string;
1027
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1028
+ id: string;
1029
+ name: string;
1030
1030
  crn: string;
1031
1031
  govLink: string;
1032
1032
  director: string;
@@ -1048,23 +1048,23 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1048
1048
  email: string;
1049
1049
  } | null | undefined;
1050
1050
  newCollaboration?: {
1051
- id: string;
1052
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1053
1051
  createdAt: string;
1054
1052
  updatedAt: string;
1053
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1054
+ id: string;
1055
1055
  userId: string;
1056
1056
  company?: {
1057
- id: string;
1058
- name: string;
1059
1057
  createdAt: string;
1060
1058
  updatedAt: string;
1061
- } | null | undefined;
1062
- client?: {
1063
1059
  id: string;
1064
1060
  name: string;
1065
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1061
+ } | null | undefined;
1062
+ client?: {
1066
1063
  createdAt: string;
1067
1064
  updatedAt: string;
1065
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1066
+ id: string;
1067
+ name: string;
1068
1068
  crn: string;
1069
1069
  govLink: string;
1070
1070
  director: string;
@@ -1087,23 +1087,23 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1087
1087
  } | null | undefined;
1088
1088
  } | null | undefined;
1089
1089
  }, {
1090
- id: string;
1091
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1092
1090
  createdAt: string | Date;
1093
1091
  updatedAt: string | Date;
1092
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1093
+ id: string;
1094
1094
  userId: string;
1095
1095
  company?: {
1096
- id: string;
1097
- name: string;
1098
1096
  createdAt: string | Date;
1099
1097
  updatedAt: string | Date;
1100
- } | null | undefined;
1101
- client?: {
1102
1098
  id: string;
1103
1099
  name: string;
1104
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1100
+ } | null | undefined;
1101
+ client?: {
1105
1102
  createdAt: string | Date;
1106
1103
  updatedAt: string | Date;
1104
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1105
+ id: string;
1106
+ name: string;
1107
1107
  crn: string;
1108
1108
  govLink: string;
1109
1109
  director: string;
@@ -1125,23 +1125,23 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1125
1125
  email: string;
1126
1126
  } | null | undefined;
1127
1127
  newCollaboration?: {
1128
- id: string;
1129
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1130
1128
  createdAt: string | Date;
1131
1129
  updatedAt: string | Date;
1130
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1131
+ id: string;
1132
1132
  userId: string;
1133
1133
  company?: {
1134
- id: string;
1135
- name: string;
1136
1134
  createdAt: string | Date;
1137
1135
  updatedAt: string | Date;
1138
- } | null | undefined;
1139
- client?: {
1140
1136
  id: string;
1141
1137
  name: string;
1142
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1138
+ } | null | undefined;
1139
+ client?: {
1143
1140
  createdAt: string | Date;
1144
1141
  updatedAt: string | Date;
1142
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1143
+ id: string;
1144
+ name: string;
1145
1145
  crn: string;
1146
1146
  govLink: string;
1147
1147
  director: string;
@@ -1172,23 +1172,23 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1172
1172
  }, "strip", z.ZodTypeAny, {
1173
1173
  limit: number;
1174
1174
  items: {
1175
- id: string;
1176
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1177
1175
  createdAt: string;
1178
1176
  updatedAt: string;
1177
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1178
+ id: string;
1179
1179
  userId: string;
1180
1180
  company?: {
1181
- id: string;
1182
- name: string;
1183
1181
  createdAt: string;
1184
1182
  updatedAt: string;
1185
- } | null | undefined;
1186
- client?: {
1187
1183
  id: string;
1188
1184
  name: string;
1189
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1185
+ } | null | undefined;
1186
+ client?: {
1190
1187
  createdAt: string;
1191
1188
  updatedAt: string;
1189
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1190
+ id: string;
1191
+ name: string;
1192
1192
  crn: string;
1193
1193
  govLink: string;
1194
1194
  director: string;
@@ -1210,23 +1210,23 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1210
1210
  email: string;
1211
1211
  } | null | undefined;
1212
1212
  newCollaboration?: {
1213
- id: string;
1214
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1215
1213
  createdAt: string;
1216
1214
  updatedAt: string;
1215
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1216
+ id: string;
1217
1217
  userId: string;
1218
1218
  company?: {
1219
- id: string;
1220
- name: string;
1221
1219
  createdAt: string;
1222
1220
  updatedAt: string;
1223
- } | null | undefined;
1224
- client?: {
1225
1221
  id: string;
1226
1222
  name: string;
1227
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1223
+ } | null | undefined;
1224
+ client?: {
1228
1225
  createdAt: string;
1229
1226
  updatedAt: string;
1227
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1228
+ id: string;
1229
+ name: string;
1230
1230
  crn: string;
1231
1231
  govLink: string;
1232
1232
  director: string;
@@ -1256,23 +1256,23 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1256
1256
  }, {
1257
1257
  limit: number;
1258
1258
  items: {
1259
- id: string;
1260
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1261
1259
  createdAt: string | Date;
1262
1260
  updatedAt: string | Date;
1261
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1262
+ id: string;
1263
1263
  userId: string;
1264
1264
  company?: {
1265
- id: string;
1266
- name: string;
1267
1265
  createdAt: string | Date;
1268
1266
  updatedAt: string | Date;
1269
- } | null | undefined;
1270
- client?: {
1271
1267
  id: string;
1272
1268
  name: string;
1273
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1269
+ } | null | undefined;
1270
+ client?: {
1274
1271
  createdAt: string | Date;
1275
1272
  updatedAt: string | Date;
1273
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1274
+ id: string;
1275
+ name: string;
1276
1276
  crn: string;
1277
1277
  govLink: string;
1278
1278
  director: string;
@@ -1294,23 +1294,23 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1294
1294
  email: string;
1295
1295
  } | null | undefined;
1296
1296
  newCollaboration?: {
1297
- id: string;
1298
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1299
1297
  createdAt: string | Date;
1300
1298
  updatedAt: string | Date;
1299
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1300
+ id: string;
1301
1301
  userId: string;
1302
1302
  company?: {
1303
- id: string;
1304
- name: string;
1305
1303
  createdAt: string | Date;
1306
1304
  updatedAt: string | Date;
1307
- } | null | undefined;
1308
- client?: {
1309
1305
  id: string;
1310
1306
  name: string;
1311
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1307
+ } | null | undefined;
1308
+ client?: {
1312
1309
  createdAt: string | Date;
1313
1310
  updatedAt: string | Date;
1311
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1312
+ id: string;
1313
+ name: string;
1314
1314
  crn: string;
1315
1315
  govLink: string;
1316
1316
  director: string;
@@ -1512,15 +1512,15 @@ export declare const collaborationsContractRouter: {
1512
1512
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1513
1513
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1514
1514
  }, "strip", z.ZodTypeAny, {
1515
- id: string;
1516
- name: string;
1517
1515
  createdAt: string;
1518
1516
  updatedAt: string;
1519
- }, {
1520
1517
  id: string;
1521
1518
  name: string;
1519
+ }, {
1522
1520
  createdAt: string | Date;
1523
1521
  updatedAt: string | Date;
1522
+ id: string;
1523
+ name: string;
1524
1524
  }>>>;
1525
1525
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1526
1526
  id: z.ZodString;
@@ -1556,11 +1556,11 @@ export declare const collaborationsContractRouter: {
1556
1556
  agentId: string;
1557
1557
  }>>>;
1558
1558
  }, "strip", z.ZodTypeAny, {
1559
- id: string;
1560
- name: string;
1561
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1562
1559
  createdAt: string;
1563
1560
  updatedAt: string;
1561
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1562
+ id: string;
1563
+ name: string;
1564
1564
  crn: string;
1565
1565
  govLink: string;
1566
1566
  director: string;
@@ -1575,11 +1575,11 @@ export declare const collaborationsContractRouter: {
1575
1575
  agentId: string;
1576
1576
  } | null | undefined;
1577
1577
  }, {
1578
- id: string;
1579
- name: string;
1580
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1581
1578
  createdAt: string | Date;
1582
1579
  updatedAt: string | Date;
1580
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1581
+ id: string;
1582
+ name: string;
1583
1583
  crn: string;
1584
1584
  govLink: string;
1585
1585
  director: string;
@@ -1623,15 +1623,15 @@ export declare const collaborationsContractRouter: {
1623
1623
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1624
1624
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1625
1625
  }, "strip", z.ZodTypeAny, {
1626
- id: string;
1627
- name: string;
1628
1626
  createdAt: string;
1629
1627
  updatedAt: string;
1630
- }, {
1631
1628
  id: string;
1632
1629
  name: string;
1630
+ }, {
1633
1631
  createdAt: string | Date;
1634
1632
  updatedAt: string | Date;
1633
+ id: string;
1634
+ name: string;
1635
1635
  }>>>;
1636
1636
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1637
1637
  id: z.ZodString;
@@ -1667,11 +1667,11 @@ export declare const collaborationsContractRouter: {
1667
1667
  agentId: string;
1668
1668
  }>>>;
1669
1669
  }, "strip", z.ZodTypeAny, {
1670
- id: string;
1671
- name: string;
1672
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1673
1670
  createdAt: string;
1674
1671
  updatedAt: string;
1672
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1673
+ id: string;
1674
+ name: string;
1675
1675
  crn: string;
1676
1676
  govLink: string;
1677
1677
  director: string;
@@ -1686,11 +1686,11 @@ export declare const collaborationsContractRouter: {
1686
1686
  agentId: string;
1687
1687
  } | null | undefined;
1688
1688
  }, {
1689
- id: string;
1690
- name: string;
1691
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1692
1689
  createdAt: string | Date;
1693
1690
  updatedAt: string | Date;
1691
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1692
+ id: string;
1693
+ name: string;
1694
1694
  crn: string;
1695
1695
  govLink: string;
1696
1696
  director: string;
@@ -1726,23 +1726,23 @@ export declare const collaborationsContractRouter: {
1726
1726
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1727
1727
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1728
1728
  }, "strip", z.ZodTypeAny, {
1729
- id: string;
1730
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1731
1729
  createdAt: string;
1732
1730
  updatedAt: string;
1731
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1732
+ id: string;
1733
1733
  userId: string;
1734
1734
  company?: {
1735
- id: string;
1736
- name: string;
1737
1735
  createdAt: string;
1738
1736
  updatedAt: string;
1739
- } | null | undefined;
1740
- client?: {
1741
1737
  id: string;
1742
1738
  name: string;
1743
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1739
+ } | null | undefined;
1740
+ client?: {
1744
1741
  createdAt: string;
1745
1742
  updatedAt: string;
1743
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1744
+ id: string;
1745
+ name: string;
1746
1746
  crn: string;
1747
1747
  govLink: string;
1748
1748
  director: string;
@@ -1764,23 +1764,23 @@ export declare const collaborationsContractRouter: {
1764
1764
  email: string;
1765
1765
  } | null | undefined;
1766
1766
  }, {
1767
- id: string;
1768
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1769
1767
  createdAt: string | Date;
1770
1768
  updatedAt: string | Date;
1769
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1770
+ id: string;
1771
1771
  userId: string;
1772
1772
  company?: {
1773
- id: string;
1774
- name: string;
1775
1773
  createdAt: string | Date;
1776
1774
  updatedAt: string | Date;
1777
- } | null | undefined;
1778
- client?: {
1779
1775
  id: string;
1780
1776
  name: string;
1781
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1777
+ } | null | undefined;
1778
+ client?: {
1782
1779
  createdAt: string | Date;
1783
1780
  updatedAt: string | Date;
1781
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1782
+ id: string;
1783
+ name: string;
1784
1784
  crn: string;
1785
1785
  govLink: string;
1786
1786
  director: string;
@@ -1803,23 +1803,23 @@ export declare const collaborationsContractRouter: {
1803
1803
  } | null | undefined;
1804
1804
  }>>>;
1805
1805
  }, "strip", z.ZodTypeAny, {
1806
- id: string;
1807
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1808
1806
  createdAt: string;
1809
1807
  updatedAt: string;
1808
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1809
+ id: string;
1810
1810
  userId: string;
1811
1811
  company?: {
1812
- id: string;
1813
- name: string;
1814
1812
  createdAt: string;
1815
1813
  updatedAt: string;
1816
- } | null | undefined;
1817
- client?: {
1818
1814
  id: string;
1819
1815
  name: string;
1820
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1816
+ } | null | undefined;
1817
+ client?: {
1821
1818
  createdAt: string;
1822
1819
  updatedAt: string;
1820
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1821
+ id: string;
1822
+ name: string;
1823
1823
  crn: string;
1824
1824
  govLink: string;
1825
1825
  director: string;
@@ -1841,23 +1841,23 @@ export declare const collaborationsContractRouter: {
1841
1841
  email: string;
1842
1842
  } | null | undefined;
1843
1843
  newCollaboration?: {
1844
- id: string;
1845
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1846
1844
  createdAt: string;
1847
1845
  updatedAt: string;
1846
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1847
+ id: string;
1848
1848
  userId: string;
1849
1849
  company?: {
1850
- id: string;
1851
- name: string;
1852
1850
  createdAt: string;
1853
1851
  updatedAt: string;
1854
- } | null | undefined;
1855
- client?: {
1856
1852
  id: string;
1857
1853
  name: string;
1858
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1854
+ } | null | undefined;
1855
+ client?: {
1859
1856
  createdAt: string;
1860
1857
  updatedAt: string;
1858
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1859
+ id: string;
1860
+ name: string;
1861
1861
  crn: string;
1862
1862
  govLink: string;
1863
1863
  director: string;
@@ -1880,23 +1880,23 @@ export declare const collaborationsContractRouter: {
1880
1880
  } | null | undefined;
1881
1881
  } | null | undefined;
1882
1882
  }, {
1883
- id: string;
1884
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1885
1883
  createdAt: string | Date;
1886
1884
  updatedAt: string | Date;
1885
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1886
+ id: string;
1887
1887
  userId: string;
1888
1888
  company?: {
1889
- id: string;
1890
- name: string;
1891
1889
  createdAt: string | Date;
1892
1890
  updatedAt: string | Date;
1893
- } | null | undefined;
1894
- client?: {
1895
1891
  id: string;
1896
1892
  name: string;
1897
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1893
+ } | null | undefined;
1894
+ client?: {
1898
1895
  createdAt: string | Date;
1899
1896
  updatedAt: string | Date;
1897
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1898
+ id: string;
1899
+ name: string;
1900
1900
  crn: string;
1901
1901
  govLink: string;
1902
1902
  director: string;
@@ -1918,23 +1918,23 @@ export declare const collaborationsContractRouter: {
1918
1918
  email: string;
1919
1919
  } | null | undefined;
1920
1920
  newCollaboration?: {
1921
- id: string;
1922
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1923
1921
  createdAt: string | Date;
1924
1922
  updatedAt: string | Date;
1923
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1924
+ id: string;
1925
1925
  userId: string;
1926
1926
  company?: {
1927
- id: string;
1928
- name: string;
1929
1927
  createdAt: string | Date;
1930
1928
  updatedAt: string | Date;
1931
- } | null | undefined;
1932
- client?: {
1933
1929
  id: string;
1934
1930
  name: string;
1935
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1931
+ } | null | undefined;
1932
+ client?: {
1936
1933
  createdAt: string | Date;
1937
1934
  updatedAt: string | Date;
1935
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1936
+ id: string;
1937
+ name: string;
1938
1938
  crn: string;
1939
1939
  govLink: string;
1940
1940
  director: string;
@@ -2005,20 +2005,20 @@ export declare const collaborationsContractRouter: {
2005
2005
  limit: number;
2006
2006
  page: number;
2007
2007
  status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | null | undefined;
2008
- sortBy?: "status" | "createdAt" | "updatedAt" | null | undefined;
2009
- sortOrder?: "ASC" | "DESC" | null | undefined;
2010
- companyId?: string | null | undefined;
2011
2008
  userId?: string | null | undefined;
2009
+ companyId?: string | null | undefined;
2012
2010
  clientId?: string | null | undefined;
2011
+ sortBy?: "createdAt" | "updatedAt" | "status" | null | undefined;
2012
+ sortOrder?: "ASC" | "DESC" | null | undefined;
2013
2013
  }, {
2014
2014
  status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | null | undefined;
2015
+ userId?: string | null | undefined;
2015
2016
  limit?: number | undefined;
2016
2017
  page?: number | undefined;
2017
- sortBy?: "status" | "createdAt" | "updatedAt" | null | undefined;
2018
- sortOrder?: "ASC" | "DESC" | null | undefined;
2019
2018
  companyId?: string | null | undefined;
2020
- userId?: string | null | undefined;
2021
2019
  clientId?: string | null | undefined;
2020
+ sortBy?: "createdAt" | "updatedAt" | "status" | null | undefined;
2021
+ sortOrder?: "ASC" | "DESC" | null | undefined;
2022
2022
  }>;
2023
2023
  summary: "Get all collaborations";
2024
2024
  method: "GET";
@@ -2133,15 +2133,15 @@ export declare const collaborationsContractRouter: {
2133
2133
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2134
2134
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2135
2135
  }, "strip", z.ZodTypeAny, {
2136
- id: string;
2137
- name: string;
2138
2136
  createdAt: string;
2139
2137
  updatedAt: string;
2140
- }, {
2141
2138
  id: string;
2142
2139
  name: string;
2140
+ }, {
2143
2141
  createdAt: string | Date;
2144
2142
  updatedAt: string | Date;
2143
+ id: string;
2144
+ name: string;
2145
2145
  }>>>;
2146
2146
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2147
2147
  id: z.ZodString;
@@ -2177,11 +2177,11 @@ export declare const collaborationsContractRouter: {
2177
2177
  agentId: string;
2178
2178
  }>>>;
2179
2179
  }, "strip", z.ZodTypeAny, {
2180
- id: string;
2181
- name: string;
2182
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2183
2180
  createdAt: string;
2184
2181
  updatedAt: string;
2182
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2183
+ id: string;
2184
+ name: string;
2185
2185
  crn: string;
2186
2186
  govLink: string;
2187
2187
  director: string;
@@ -2196,11 +2196,11 @@ export declare const collaborationsContractRouter: {
2196
2196
  agentId: string;
2197
2197
  } | null | undefined;
2198
2198
  }, {
2199
- id: string;
2200
- name: string;
2201
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2202
2199
  createdAt: string | Date;
2203
2200
  updatedAt: string | Date;
2201
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2202
+ id: string;
2203
+ name: string;
2204
2204
  crn: string;
2205
2205
  govLink: string;
2206
2206
  director: string;
@@ -2244,15 +2244,15 @@ export declare const collaborationsContractRouter: {
2244
2244
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2245
2245
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2246
2246
  }, "strip", z.ZodTypeAny, {
2247
- id: string;
2248
- name: string;
2249
2247
  createdAt: string;
2250
2248
  updatedAt: string;
2251
- }, {
2252
2249
  id: string;
2253
2250
  name: string;
2251
+ }, {
2254
2252
  createdAt: string | Date;
2255
2253
  updatedAt: string | Date;
2254
+ id: string;
2255
+ name: string;
2256
2256
  }>>>;
2257
2257
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2258
2258
  id: z.ZodString;
@@ -2288,11 +2288,11 @@ export declare const collaborationsContractRouter: {
2288
2288
  agentId: string;
2289
2289
  }>>>;
2290
2290
  }, "strip", z.ZodTypeAny, {
2291
- id: string;
2292
- name: string;
2293
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2294
2291
  createdAt: string;
2295
2292
  updatedAt: string;
2293
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2294
+ id: string;
2295
+ name: string;
2296
2296
  crn: string;
2297
2297
  govLink: string;
2298
2298
  director: string;
@@ -2307,11 +2307,11 @@ export declare const collaborationsContractRouter: {
2307
2307
  agentId: string;
2308
2308
  } | null | undefined;
2309
2309
  }, {
2310
- id: string;
2311
- name: string;
2312
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2313
2310
  createdAt: string | Date;
2314
2311
  updatedAt: string | Date;
2312
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2313
+ id: string;
2314
+ name: string;
2315
2315
  crn: string;
2316
2316
  govLink: string;
2317
2317
  director: string;
@@ -2347,23 +2347,23 @@ export declare const collaborationsContractRouter: {
2347
2347
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2348
2348
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2349
2349
  }, "strip", z.ZodTypeAny, {
2350
- id: string;
2351
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2352
2350
  createdAt: string;
2353
2351
  updatedAt: string;
2352
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2353
+ id: string;
2354
2354
  userId: string;
2355
2355
  company?: {
2356
- id: string;
2357
- name: string;
2358
2356
  createdAt: string;
2359
2357
  updatedAt: string;
2360
- } | null | undefined;
2361
- client?: {
2362
2358
  id: string;
2363
2359
  name: string;
2364
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2360
+ } | null | undefined;
2361
+ client?: {
2365
2362
  createdAt: string;
2366
2363
  updatedAt: string;
2364
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2365
+ id: string;
2366
+ name: string;
2367
2367
  crn: string;
2368
2368
  govLink: string;
2369
2369
  director: string;
@@ -2385,23 +2385,23 @@ export declare const collaborationsContractRouter: {
2385
2385
  email: string;
2386
2386
  } | null | undefined;
2387
2387
  }, {
2388
- id: string;
2389
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2390
2388
  createdAt: string | Date;
2391
2389
  updatedAt: string | Date;
2390
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2391
+ id: string;
2392
2392
  userId: string;
2393
2393
  company?: {
2394
- id: string;
2395
- name: string;
2396
2394
  createdAt: string | Date;
2397
2395
  updatedAt: string | Date;
2398
- } | null | undefined;
2399
- client?: {
2400
2396
  id: string;
2401
2397
  name: string;
2402
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2398
+ } | null | undefined;
2399
+ client?: {
2403
2400
  createdAt: string | Date;
2404
2401
  updatedAt: string | Date;
2402
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2403
+ id: string;
2404
+ name: string;
2405
2405
  crn: string;
2406
2406
  govLink: string;
2407
2407
  director: string;
@@ -2424,23 +2424,23 @@ export declare const collaborationsContractRouter: {
2424
2424
  } | null | undefined;
2425
2425
  }>>>;
2426
2426
  }, "strip", z.ZodTypeAny, {
2427
- id: string;
2428
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2429
2427
  createdAt: string;
2430
2428
  updatedAt: string;
2429
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2430
+ id: string;
2431
2431
  userId: string;
2432
2432
  company?: {
2433
- id: string;
2434
- name: string;
2435
2433
  createdAt: string;
2436
2434
  updatedAt: string;
2437
- } | null | undefined;
2438
- client?: {
2439
2435
  id: string;
2440
2436
  name: string;
2441
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2437
+ } | null | undefined;
2438
+ client?: {
2442
2439
  createdAt: string;
2443
2440
  updatedAt: string;
2441
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2442
+ id: string;
2443
+ name: string;
2444
2444
  crn: string;
2445
2445
  govLink: string;
2446
2446
  director: string;
@@ -2462,23 +2462,23 @@ export declare const collaborationsContractRouter: {
2462
2462
  email: string;
2463
2463
  } | null | undefined;
2464
2464
  newCollaboration?: {
2465
- id: string;
2466
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2467
2465
  createdAt: string;
2468
2466
  updatedAt: string;
2467
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2468
+ id: string;
2469
2469
  userId: string;
2470
2470
  company?: {
2471
- id: string;
2472
- name: string;
2473
2471
  createdAt: string;
2474
2472
  updatedAt: string;
2475
- } | null | undefined;
2476
- client?: {
2477
2473
  id: string;
2478
2474
  name: string;
2479
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2475
+ } | null | undefined;
2476
+ client?: {
2480
2477
  createdAt: string;
2481
2478
  updatedAt: string;
2479
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2480
+ id: string;
2481
+ name: string;
2482
2482
  crn: string;
2483
2483
  govLink: string;
2484
2484
  director: string;
@@ -2501,23 +2501,23 @@ export declare const collaborationsContractRouter: {
2501
2501
  } | null | undefined;
2502
2502
  } | null | undefined;
2503
2503
  }, {
2504
- id: string;
2505
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2506
2504
  createdAt: string | Date;
2507
2505
  updatedAt: string | Date;
2506
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2507
+ id: string;
2508
2508
  userId: string;
2509
2509
  company?: {
2510
- id: string;
2511
- name: string;
2512
2510
  createdAt: string | Date;
2513
2511
  updatedAt: string | Date;
2514
- } | null | undefined;
2515
- client?: {
2516
2512
  id: string;
2517
2513
  name: string;
2518
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2514
+ } | null | undefined;
2515
+ client?: {
2519
2516
  createdAt: string | Date;
2520
2517
  updatedAt: string | Date;
2518
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2519
+ id: string;
2520
+ name: string;
2521
2521
  crn: string;
2522
2522
  govLink: string;
2523
2523
  director: string;
@@ -2539,23 +2539,23 @@ export declare const collaborationsContractRouter: {
2539
2539
  email: string;
2540
2540
  } | null | undefined;
2541
2541
  newCollaboration?: {
2542
- id: string;
2543
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2544
2542
  createdAt: string | Date;
2545
2543
  updatedAt: string | Date;
2544
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2545
+ id: string;
2546
2546
  userId: string;
2547
2547
  company?: {
2548
- id: string;
2549
- name: string;
2550
2548
  createdAt: string | Date;
2551
2549
  updatedAt: string | Date;
2552
- } | null | undefined;
2553
- client?: {
2554
2550
  id: string;
2555
2551
  name: string;
2556
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2552
+ } | null | undefined;
2553
+ client?: {
2557
2554
  createdAt: string | Date;
2558
2555
  updatedAt: string | Date;
2556
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2557
+ id: string;
2558
+ name: string;
2559
2559
  crn: string;
2560
2560
  govLink: string;
2561
2561
  director: string;
@@ -2586,23 +2586,23 @@ export declare const collaborationsContractRouter: {
2586
2586
  }, "strip", z.ZodTypeAny, {
2587
2587
  limit: number;
2588
2588
  items: {
2589
- id: string;
2590
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2591
2589
  createdAt: string;
2592
2590
  updatedAt: string;
2591
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2592
+ id: string;
2593
2593
  userId: string;
2594
2594
  company?: {
2595
- id: string;
2596
- name: string;
2597
2595
  createdAt: string;
2598
2596
  updatedAt: string;
2599
- } | null | undefined;
2600
- client?: {
2601
2597
  id: string;
2602
2598
  name: string;
2603
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2599
+ } | null | undefined;
2600
+ client?: {
2604
2601
  createdAt: string;
2605
2602
  updatedAt: string;
2603
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2604
+ id: string;
2605
+ name: string;
2606
2606
  crn: string;
2607
2607
  govLink: string;
2608
2608
  director: string;
@@ -2624,23 +2624,23 @@ export declare const collaborationsContractRouter: {
2624
2624
  email: string;
2625
2625
  } | null | undefined;
2626
2626
  newCollaboration?: {
2627
- id: string;
2628
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2629
2627
  createdAt: string;
2630
2628
  updatedAt: string;
2629
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2630
+ id: string;
2631
2631
  userId: string;
2632
2632
  company?: {
2633
- id: string;
2634
- name: string;
2635
2633
  createdAt: string;
2636
2634
  updatedAt: string;
2637
- } | null | undefined;
2638
- client?: {
2639
2635
  id: string;
2640
2636
  name: string;
2641
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2637
+ } | null | undefined;
2638
+ client?: {
2642
2639
  createdAt: string;
2643
2640
  updatedAt: string;
2641
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2642
+ id: string;
2643
+ name: string;
2644
2644
  crn: string;
2645
2645
  govLink: string;
2646
2646
  director: string;
@@ -2670,23 +2670,23 @@ export declare const collaborationsContractRouter: {
2670
2670
  }, {
2671
2671
  limit: number;
2672
2672
  items: {
2673
- id: string;
2674
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2675
2673
  createdAt: string | Date;
2676
2674
  updatedAt: string | Date;
2675
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2676
+ id: string;
2677
2677
  userId: string;
2678
2678
  company?: {
2679
- id: string;
2680
- name: string;
2681
2679
  createdAt: string | Date;
2682
2680
  updatedAt: string | Date;
2683
- } | null | undefined;
2684
- client?: {
2685
2681
  id: string;
2686
2682
  name: string;
2687
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2683
+ } | null | undefined;
2684
+ client?: {
2688
2685
  createdAt: string | Date;
2689
2686
  updatedAt: string | Date;
2687
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2688
+ id: string;
2689
+ name: string;
2690
2690
  crn: string;
2691
2691
  govLink: string;
2692
2692
  director: string;
@@ -2708,23 +2708,23 @@ export declare const collaborationsContractRouter: {
2708
2708
  email: string;
2709
2709
  } | null | undefined;
2710
2710
  newCollaboration?: {
2711
- id: string;
2712
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2713
2711
  createdAt: string | Date;
2714
2712
  updatedAt: string | Date;
2713
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2714
+ id: string;
2715
2715
  userId: string;
2716
2716
  company?: {
2717
- id: string;
2718
- name: string;
2719
2717
  createdAt: string | Date;
2720
2718
  updatedAt: string | Date;
2721
- } | null | undefined;
2722
- client?: {
2723
2719
  id: string;
2724
2720
  name: string;
2725
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2721
+ } | null | undefined;
2722
+ client?: {
2726
2723
  createdAt: string | Date;
2727
2724
  updatedAt: string | Date;
2725
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2726
+ id: string;
2727
+ name: string;
2728
2728
  crn: string;
2729
2729
  govLink: string;
2730
2730
  director: string;
@@ -3054,15 +3054,15 @@ export declare const collaborationsContractRouter: {
3054
3054
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3055
3055
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3056
3056
  }, "strip", z.ZodTypeAny, {
3057
- id: string;
3058
- name: string;
3059
3057
  createdAt: string;
3060
3058
  updatedAt: string;
3061
- }, {
3062
3059
  id: string;
3063
3060
  name: string;
3061
+ }, {
3064
3062
  createdAt: string | Date;
3065
3063
  updatedAt: string | Date;
3064
+ id: string;
3065
+ name: string;
3066
3066
  }>>>;
3067
3067
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3068
3068
  id: z.ZodString;
@@ -3098,11 +3098,11 @@ export declare const collaborationsContractRouter: {
3098
3098
  agentId: string;
3099
3099
  }>>>;
3100
3100
  }, "strip", z.ZodTypeAny, {
3101
- id: string;
3102
- name: string;
3103
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3104
3101
  createdAt: string;
3105
3102
  updatedAt: string;
3103
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3104
+ id: string;
3105
+ name: string;
3106
3106
  crn: string;
3107
3107
  govLink: string;
3108
3108
  director: string;
@@ -3117,11 +3117,11 @@ export declare const collaborationsContractRouter: {
3117
3117
  agentId: string;
3118
3118
  } | null | undefined;
3119
3119
  }, {
3120
- id: string;
3121
- name: string;
3122
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3123
3120
  createdAt: string | Date;
3124
3121
  updatedAt: string | Date;
3122
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3123
+ id: string;
3124
+ name: string;
3125
3125
  crn: string;
3126
3126
  govLink: string;
3127
3127
  director: string;
@@ -3165,15 +3165,15 @@ export declare const collaborationsContractRouter: {
3165
3165
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3166
3166
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3167
3167
  }, "strip", z.ZodTypeAny, {
3168
- id: string;
3169
- name: string;
3170
3168
  createdAt: string;
3171
3169
  updatedAt: string;
3172
- }, {
3173
3170
  id: string;
3174
3171
  name: string;
3172
+ }, {
3175
3173
  createdAt: string | Date;
3176
3174
  updatedAt: string | Date;
3175
+ id: string;
3176
+ name: string;
3177
3177
  }>>>;
3178
3178
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3179
3179
  id: z.ZodString;
@@ -3209,11 +3209,11 @@ export declare const collaborationsContractRouter: {
3209
3209
  agentId: string;
3210
3210
  }>>>;
3211
3211
  }, "strip", z.ZodTypeAny, {
3212
- id: string;
3213
- name: string;
3214
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3215
3212
  createdAt: string;
3216
3213
  updatedAt: string;
3214
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3215
+ id: string;
3216
+ name: string;
3217
3217
  crn: string;
3218
3218
  govLink: string;
3219
3219
  director: string;
@@ -3228,11 +3228,11 @@ export declare const collaborationsContractRouter: {
3228
3228
  agentId: string;
3229
3229
  } | null | undefined;
3230
3230
  }, {
3231
- id: string;
3232
- name: string;
3233
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3234
3231
  createdAt: string | Date;
3235
3232
  updatedAt: string | Date;
3233
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3234
+ id: string;
3235
+ name: string;
3236
3236
  crn: string;
3237
3237
  govLink: string;
3238
3238
  director: string;
@@ -3268,23 +3268,23 @@ export declare const collaborationsContractRouter: {
3268
3268
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3269
3269
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3270
3270
  }, "strip", z.ZodTypeAny, {
3271
- id: string;
3272
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3273
3271
  createdAt: string;
3274
3272
  updatedAt: string;
3273
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3274
+ id: string;
3275
3275
  userId: string;
3276
3276
  company?: {
3277
- id: string;
3278
- name: string;
3279
3277
  createdAt: string;
3280
3278
  updatedAt: string;
3281
- } | null | undefined;
3282
- client?: {
3283
3279
  id: string;
3284
3280
  name: string;
3285
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3281
+ } | null | undefined;
3282
+ client?: {
3286
3283
  createdAt: string;
3287
3284
  updatedAt: string;
3285
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3286
+ id: string;
3287
+ name: string;
3288
3288
  crn: string;
3289
3289
  govLink: string;
3290
3290
  director: string;
@@ -3306,23 +3306,23 @@ export declare const collaborationsContractRouter: {
3306
3306
  email: string;
3307
3307
  } | null | undefined;
3308
3308
  }, {
3309
- id: string;
3310
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3311
3309
  createdAt: string | Date;
3312
3310
  updatedAt: string | Date;
3311
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3312
+ id: string;
3313
3313
  userId: string;
3314
3314
  company?: {
3315
- id: string;
3316
- name: string;
3317
3315
  createdAt: string | Date;
3318
3316
  updatedAt: string | Date;
3319
- } | null | undefined;
3320
- client?: {
3321
3317
  id: string;
3322
3318
  name: string;
3323
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3319
+ } | null | undefined;
3320
+ client?: {
3324
3321
  createdAt: string | Date;
3325
3322
  updatedAt: string | Date;
3323
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3324
+ id: string;
3325
+ name: string;
3326
3326
  crn: string;
3327
3327
  govLink: string;
3328
3328
  director: string;
@@ -3345,23 +3345,23 @@ export declare const collaborationsContractRouter: {
3345
3345
  } | null | undefined;
3346
3346
  }>>>;
3347
3347
  }, "strip", z.ZodTypeAny, {
3348
- id: string;
3349
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3350
3348
  createdAt: string;
3351
3349
  updatedAt: string;
3350
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3351
+ id: string;
3352
3352
  userId: string;
3353
3353
  company?: {
3354
- id: string;
3355
- name: string;
3356
3354
  createdAt: string;
3357
3355
  updatedAt: string;
3358
- } | null | undefined;
3359
- client?: {
3360
3356
  id: string;
3361
3357
  name: string;
3362
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3358
+ } | null | undefined;
3359
+ client?: {
3363
3360
  createdAt: string;
3364
3361
  updatedAt: string;
3362
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3363
+ id: string;
3364
+ name: string;
3365
3365
  crn: string;
3366
3366
  govLink: string;
3367
3367
  director: string;
@@ -3383,23 +3383,23 @@ export declare const collaborationsContractRouter: {
3383
3383
  email: string;
3384
3384
  } | null | undefined;
3385
3385
  newCollaboration?: {
3386
- id: string;
3387
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3388
3386
  createdAt: string;
3389
3387
  updatedAt: string;
3388
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3389
+ id: string;
3390
3390
  userId: string;
3391
3391
  company?: {
3392
- id: string;
3393
- name: string;
3394
3392
  createdAt: string;
3395
3393
  updatedAt: string;
3396
- } | null | undefined;
3397
- client?: {
3398
3394
  id: string;
3399
3395
  name: string;
3400
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3396
+ } | null | undefined;
3397
+ client?: {
3401
3398
  createdAt: string;
3402
3399
  updatedAt: string;
3400
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3401
+ id: string;
3402
+ name: string;
3403
3403
  crn: string;
3404
3404
  govLink: string;
3405
3405
  director: string;
@@ -3422,23 +3422,23 @@ export declare const collaborationsContractRouter: {
3422
3422
  } | null | undefined;
3423
3423
  } | null | undefined;
3424
3424
  }, {
3425
- id: string;
3426
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3427
3425
  createdAt: string | Date;
3428
3426
  updatedAt: string | Date;
3427
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3428
+ id: string;
3429
3429
  userId: string;
3430
3430
  company?: {
3431
- id: string;
3432
- name: string;
3433
3431
  createdAt: string | Date;
3434
3432
  updatedAt: string | Date;
3435
- } | null | undefined;
3436
- client?: {
3437
3433
  id: string;
3438
3434
  name: string;
3439
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3435
+ } | null | undefined;
3436
+ client?: {
3440
3437
  createdAt: string | Date;
3441
3438
  updatedAt: string | Date;
3439
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3440
+ id: string;
3441
+ name: string;
3442
3442
  crn: string;
3443
3443
  govLink: string;
3444
3444
  director: string;
@@ -3460,23 +3460,23 @@ export declare const collaborationsContractRouter: {
3460
3460
  email: string;
3461
3461
  } | null | undefined;
3462
3462
  newCollaboration?: {
3463
- id: string;
3464
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3465
3463
  createdAt: string | Date;
3466
3464
  updatedAt: string | Date;
3465
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3466
+ id: string;
3467
3467
  userId: string;
3468
3468
  company?: {
3469
- id: string;
3470
- name: string;
3471
3469
  createdAt: string | Date;
3472
3470
  updatedAt: string | Date;
3473
- } | null | undefined;
3474
- client?: {
3475
3471
  id: string;
3476
3472
  name: string;
3477
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3473
+ } | null | undefined;
3474
+ client?: {
3478
3475
  createdAt: string | Date;
3479
3476
  updatedAt: string | Date;
3477
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3478
+ id: string;
3479
+ name: string;
3480
3480
  crn: string;
3481
3481
  govLink: string;
3482
3482
  director: string;
@@ -3659,15 +3659,15 @@ export declare const collaborationsContractRouter: {
3659
3659
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3660
3660
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3661
3661
  }, "strip", z.ZodTypeAny, {
3662
- id: string;
3663
- name: string;
3664
3662
  createdAt: string;
3665
3663
  updatedAt: string;
3666
- }, {
3667
3664
  id: string;
3668
3665
  name: string;
3666
+ }, {
3669
3667
  createdAt: string | Date;
3670
3668
  updatedAt: string | Date;
3669
+ id: string;
3670
+ name: string;
3671
3671
  }>>>;
3672
3672
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3673
3673
  id: z.ZodString;
@@ -3703,11 +3703,11 @@ export declare const collaborationsContractRouter: {
3703
3703
  agentId: string;
3704
3704
  }>>>;
3705
3705
  }, "strip", z.ZodTypeAny, {
3706
- id: string;
3707
- name: string;
3708
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3709
3706
  createdAt: string;
3710
3707
  updatedAt: string;
3708
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3709
+ id: string;
3710
+ name: string;
3711
3711
  crn: string;
3712
3712
  govLink: string;
3713
3713
  director: string;
@@ -3722,11 +3722,11 @@ export declare const collaborationsContractRouter: {
3722
3722
  agentId: string;
3723
3723
  } | null | undefined;
3724
3724
  }, {
3725
- id: string;
3726
- name: string;
3727
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3728
3725
  createdAt: string | Date;
3729
3726
  updatedAt: string | Date;
3727
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3728
+ id: string;
3729
+ name: string;
3730
3730
  crn: string;
3731
3731
  govLink: string;
3732
3732
  director: string;
@@ -3770,15 +3770,15 @@ export declare const collaborationsContractRouter: {
3770
3770
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3771
3771
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3772
3772
  }, "strip", z.ZodTypeAny, {
3773
- id: string;
3774
- name: string;
3775
3773
  createdAt: string;
3776
3774
  updatedAt: string;
3777
- }, {
3778
3775
  id: string;
3779
3776
  name: string;
3777
+ }, {
3780
3778
  createdAt: string | Date;
3781
3779
  updatedAt: string | Date;
3780
+ id: string;
3781
+ name: string;
3782
3782
  }>>>;
3783
3783
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3784
3784
  id: z.ZodString;
@@ -3814,11 +3814,11 @@ export declare const collaborationsContractRouter: {
3814
3814
  agentId: string;
3815
3815
  }>>>;
3816
3816
  }, "strip", z.ZodTypeAny, {
3817
- id: string;
3818
- name: string;
3819
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3820
3817
  createdAt: string;
3821
3818
  updatedAt: string;
3819
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3820
+ id: string;
3821
+ name: string;
3822
3822
  crn: string;
3823
3823
  govLink: string;
3824
3824
  director: string;
@@ -3833,11 +3833,11 @@ export declare const collaborationsContractRouter: {
3833
3833
  agentId: string;
3834
3834
  } | null | undefined;
3835
3835
  }, {
3836
- id: string;
3837
- name: string;
3838
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3839
3836
  createdAt: string | Date;
3840
3837
  updatedAt: string | Date;
3838
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3839
+ id: string;
3840
+ name: string;
3841
3841
  crn: string;
3842
3842
  govLink: string;
3843
3843
  director: string;
@@ -3873,23 +3873,23 @@ export declare const collaborationsContractRouter: {
3873
3873
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3874
3874
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3875
3875
  }, "strip", z.ZodTypeAny, {
3876
- id: string;
3877
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3878
3876
  createdAt: string;
3879
3877
  updatedAt: string;
3878
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3879
+ id: string;
3880
3880
  userId: string;
3881
3881
  company?: {
3882
- id: string;
3883
- name: string;
3884
3882
  createdAt: string;
3885
3883
  updatedAt: string;
3886
- } | null | undefined;
3887
- client?: {
3888
3884
  id: string;
3889
3885
  name: string;
3890
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3886
+ } | null | undefined;
3887
+ client?: {
3891
3888
  createdAt: string;
3892
3889
  updatedAt: string;
3890
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3891
+ id: string;
3892
+ name: string;
3893
3893
  crn: string;
3894
3894
  govLink: string;
3895
3895
  director: string;
@@ -3911,23 +3911,23 @@ export declare const collaborationsContractRouter: {
3911
3911
  email: string;
3912
3912
  } | null | undefined;
3913
3913
  }, {
3914
- id: string;
3915
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3916
3914
  createdAt: string | Date;
3917
3915
  updatedAt: string | Date;
3916
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3917
+ id: string;
3918
3918
  userId: string;
3919
3919
  company?: {
3920
- id: string;
3921
- name: string;
3922
3920
  createdAt: string | Date;
3923
3921
  updatedAt: string | Date;
3924
- } | null | undefined;
3925
- client?: {
3926
3922
  id: string;
3927
3923
  name: string;
3928
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3924
+ } | null | undefined;
3925
+ client?: {
3929
3926
  createdAt: string | Date;
3930
3927
  updatedAt: string | Date;
3928
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3929
+ id: string;
3930
+ name: string;
3931
3931
  crn: string;
3932
3932
  govLink: string;
3933
3933
  director: string;
@@ -3950,23 +3950,23 @@ export declare const collaborationsContractRouter: {
3950
3950
  } | null | undefined;
3951
3951
  }>>>;
3952
3952
  }, "strip", z.ZodTypeAny, {
3953
- id: string;
3954
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3955
3953
  createdAt: string;
3956
3954
  updatedAt: string;
3955
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3956
+ id: string;
3957
3957
  userId: string;
3958
3958
  company?: {
3959
- id: string;
3960
- name: string;
3961
3959
  createdAt: string;
3962
3960
  updatedAt: string;
3963
- } | null | undefined;
3964
- client?: {
3965
3961
  id: string;
3966
3962
  name: string;
3967
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3963
+ } | null | undefined;
3964
+ client?: {
3968
3965
  createdAt: string;
3969
3966
  updatedAt: string;
3967
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3968
+ id: string;
3969
+ name: string;
3970
3970
  crn: string;
3971
3971
  govLink: string;
3972
3972
  director: string;
@@ -3988,23 +3988,23 @@ export declare const collaborationsContractRouter: {
3988
3988
  email: string;
3989
3989
  } | null | undefined;
3990
3990
  newCollaboration?: {
3991
- id: string;
3992
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3993
3991
  createdAt: string;
3994
3992
  updatedAt: string;
3993
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3994
+ id: string;
3995
3995
  userId: string;
3996
3996
  company?: {
3997
- id: string;
3998
- name: string;
3999
3997
  createdAt: string;
4000
3998
  updatedAt: string;
4001
- } | null | undefined;
4002
- client?: {
4003
3999
  id: string;
4004
4000
  name: string;
4005
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4001
+ } | null | undefined;
4002
+ client?: {
4006
4003
  createdAt: string;
4007
4004
  updatedAt: string;
4005
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4006
+ id: string;
4007
+ name: string;
4008
4008
  crn: string;
4009
4009
  govLink: string;
4010
4010
  director: string;
@@ -4027,23 +4027,23 @@ export declare const collaborationsContractRouter: {
4027
4027
  } | null | undefined;
4028
4028
  } | null | undefined;
4029
4029
  }, {
4030
- id: string;
4031
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
4032
4030
  createdAt: string | Date;
4033
4031
  updatedAt: string | Date;
4032
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
4033
+ id: string;
4034
4034
  userId: string;
4035
4035
  company?: {
4036
- id: string;
4037
- name: string;
4038
4036
  createdAt: string | Date;
4039
4037
  updatedAt: string | Date;
4040
- } | null | undefined;
4041
- client?: {
4042
4038
  id: string;
4043
4039
  name: string;
4044
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4040
+ } | null | undefined;
4041
+ client?: {
4045
4042
  createdAt: string | Date;
4046
4043
  updatedAt: string | Date;
4044
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4045
+ id: string;
4046
+ name: string;
4047
4047
  crn: string;
4048
4048
  govLink: string;
4049
4049
  director: string;
@@ -4065,23 +4065,23 @@ export declare const collaborationsContractRouter: {
4065
4065
  email: string;
4066
4066
  } | null | undefined;
4067
4067
  newCollaboration?: {
4068
- id: string;
4069
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
4070
4068
  createdAt: string | Date;
4071
4069
  updatedAt: string | Date;
4070
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
4071
+ id: string;
4072
4072
  userId: string;
4073
4073
  company?: {
4074
- id: string;
4075
- name: string;
4076
4074
  createdAt: string | Date;
4077
4075
  updatedAt: string | Date;
4078
- } | null | undefined;
4079
- client?: {
4080
4076
  id: string;
4081
4077
  name: string;
4082
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4078
+ } | null | undefined;
4079
+ client?: {
4083
4080
  createdAt: string | Date;
4084
4081
  updatedAt: string | Date;
4082
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4083
+ id: string;
4084
+ name: string;
4085
4085
  crn: string;
4086
4086
  govLink: string;
4087
4087
  director: string;
@@ -4468,15 +4468,15 @@ export declare const collaborationsContractRouter: {
4468
4468
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4469
4469
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4470
4470
  }, "strip", z.ZodTypeAny, {
4471
- id: string;
4472
- name: string;
4473
4471
  createdAt: string;
4474
4472
  updatedAt: string;
4475
- }, {
4476
4473
  id: string;
4477
4474
  name: string;
4475
+ }, {
4478
4476
  createdAt: string | Date;
4479
4477
  updatedAt: string | Date;
4478
+ id: string;
4479
+ name: string;
4480
4480
  }>>>;
4481
4481
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
4482
4482
  id: z.ZodString;
@@ -4512,11 +4512,11 @@ export declare const collaborationsContractRouter: {
4512
4512
  agentId: string;
4513
4513
  }>>>;
4514
4514
  }, "strip", z.ZodTypeAny, {
4515
- id: string;
4516
- name: string;
4517
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4518
4515
  createdAt: string;
4519
4516
  updatedAt: string;
4517
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4518
+ id: string;
4519
+ name: string;
4520
4520
  crn: string;
4521
4521
  govLink: string;
4522
4522
  director: string;
@@ -4531,11 +4531,11 @@ export declare const collaborationsContractRouter: {
4531
4531
  agentId: string;
4532
4532
  } | null | undefined;
4533
4533
  }, {
4534
- id: string;
4535
- name: string;
4536
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4537
4534
  createdAt: string | Date;
4538
4535
  updatedAt: string | Date;
4536
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4537
+ id: string;
4538
+ name: string;
4539
4539
  crn: string;
4540
4540
  govLink: string;
4541
4541
  director: string;
@@ -4579,15 +4579,15 @@ export declare const collaborationsContractRouter: {
4579
4579
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4580
4580
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4581
4581
  }, "strip", z.ZodTypeAny, {
4582
- id: string;
4583
- name: string;
4584
4582
  createdAt: string;
4585
4583
  updatedAt: string;
4586
- }, {
4587
4584
  id: string;
4588
4585
  name: string;
4586
+ }, {
4589
4587
  createdAt: string | Date;
4590
4588
  updatedAt: string | Date;
4589
+ id: string;
4590
+ name: string;
4591
4591
  }>>>;
4592
4592
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
4593
4593
  id: z.ZodString;
@@ -4623,11 +4623,11 @@ export declare const collaborationsContractRouter: {
4623
4623
  agentId: string;
4624
4624
  }>>>;
4625
4625
  }, "strip", z.ZodTypeAny, {
4626
- id: string;
4627
- name: string;
4628
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4629
4626
  createdAt: string;
4630
4627
  updatedAt: string;
4628
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4629
+ id: string;
4630
+ name: string;
4631
4631
  crn: string;
4632
4632
  govLink: string;
4633
4633
  director: string;
@@ -4642,11 +4642,11 @@ export declare const collaborationsContractRouter: {
4642
4642
  agentId: string;
4643
4643
  } | null | undefined;
4644
4644
  }, {
4645
- id: string;
4646
- name: string;
4647
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4648
4645
  createdAt: string | Date;
4649
4646
  updatedAt: string | Date;
4647
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4648
+ id: string;
4649
+ name: string;
4650
4650
  crn: string;
4651
4651
  govLink: string;
4652
4652
  director: string;
@@ -4682,23 +4682,23 @@ export declare const collaborationsContractRouter: {
4682
4682
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4683
4683
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4684
4684
  }, "strip", z.ZodTypeAny, {
4685
- id: string;
4686
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
4687
4685
  createdAt: string;
4688
4686
  updatedAt: string;
4687
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
4688
+ id: string;
4689
4689
  userId: string;
4690
4690
  company?: {
4691
- id: string;
4692
- name: string;
4693
4691
  createdAt: string;
4694
4692
  updatedAt: string;
4695
- } | null | undefined;
4696
- client?: {
4697
4693
  id: string;
4698
4694
  name: string;
4699
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4695
+ } | null | undefined;
4696
+ client?: {
4700
4697
  createdAt: string;
4701
4698
  updatedAt: string;
4699
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4700
+ id: string;
4701
+ name: string;
4702
4702
  crn: string;
4703
4703
  govLink: string;
4704
4704
  director: string;
@@ -4720,23 +4720,23 @@ export declare const collaborationsContractRouter: {
4720
4720
  email: string;
4721
4721
  } | null | undefined;
4722
4722
  }, {
4723
- id: string;
4724
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
4725
4723
  createdAt: string | Date;
4726
4724
  updatedAt: string | Date;
4725
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
4726
+ id: string;
4727
4727
  userId: string;
4728
4728
  company?: {
4729
- id: string;
4730
- name: string;
4731
4729
  createdAt: string | Date;
4732
4730
  updatedAt: string | Date;
4733
- } | null | undefined;
4734
- client?: {
4735
4731
  id: string;
4736
4732
  name: string;
4737
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4733
+ } | null | undefined;
4734
+ client?: {
4738
4735
  createdAt: string | Date;
4739
4736
  updatedAt: string | Date;
4737
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4738
+ id: string;
4739
+ name: string;
4740
4740
  crn: string;
4741
4741
  govLink: string;
4742
4742
  director: string;
@@ -4759,23 +4759,23 @@ export declare const collaborationsContractRouter: {
4759
4759
  } | null | undefined;
4760
4760
  }>>>;
4761
4761
  }, "strip", z.ZodTypeAny, {
4762
- id: string;
4763
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
4764
4762
  createdAt: string;
4765
4763
  updatedAt: string;
4764
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
4765
+ id: string;
4766
4766
  userId: string;
4767
4767
  company?: {
4768
- id: string;
4769
- name: string;
4770
4768
  createdAt: string;
4771
4769
  updatedAt: string;
4772
- } | null | undefined;
4773
- client?: {
4774
4770
  id: string;
4775
4771
  name: string;
4776
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4772
+ } | null | undefined;
4773
+ client?: {
4777
4774
  createdAt: string;
4778
4775
  updatedAt: string;
4776
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4777
+ id: string;
4778
+ name: string;
4779
4779
  crn: string;
4780
4780
  govLink: string;
4781
4781
  director: string;
@@ -4797,23 +4797,23 @@ export declare const collaborationsContractRouter: {
4797
4797
  email: string;
4798
4798
  } | null | undefined;
4799
4799
  newCollaboration?: {
4800
- id: string;
4801
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
4802
4800
  createdAt: string;
4803
4801
  updatedAt: string;
4802
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
4803
+ id: string;
4804
4804
  userId: string;
4805
4805
  company?: {
4806
- id: string;
4807
- name: string;
4808
4806
  createdAt: string;
4809
4807
  updatedAt: string;
4810
- } | null | undefined;
4811
- client?: {
4812
4808
  id: string;
4813
4809
  name: string;
4814
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4810
+ } | null | undefined;
4811
+ client?: {
4815
4812
  createdAt: string;
4816
4813
  updatedAt: string;
4814
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4815
+ id: string;
4816
+ name: string;
4817
4817
  crn: string;
4818
4818
  govLink: string;
4819
4819
  director: string;
@@ -4836,23 +4836,23 @@ export declare const collaborationsContractRouter: {
4836
4836
  } | null | undefined;
4837
4837
  } | null | undefined;
4838
4838
  }, {
4839
- id: string;
4840
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
4841
4839
  createdAt: string | Date;
4842
4840
  updatedAt: string | Date;
4841
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
4842
+ id: string;
4843
4843
  userId: string;
4844
4844
  company?: {
4845
- id: string;
4846
- name: string;
4847
4845
  createdAt: string | Date;
4848
4846
  updatedAt: string | Date;
4849
- } | null | undefined;
4850
- client?: {
4851
4847
  id: string;
4852
4848
  name: string;
4853
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4849
+ } | null | undefined;
4850
+ client?: {
4854
4851
  createdAt: string | Date;
4855
4852
  updatedAt: string | Date;
4853
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4854
+ id: string;
4855
+ name: string;
4856
4856
  crn: string;
4857
4857
  govLink: string;
4858
4858
  director: string;
@@ -4874,23 +4874,23 @@ export declare const collaborationsContractRouter: {
4874
4874
  email: string;
4875
4875
  } | null | undefined;
4876
4876
  newCollaboration?: {
4877
- id: string;
4878
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
4879
4877
  createdAt: string | Date;
4880
4878
  updatedAt: string | Date;
4879
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
4880
+ id: string;
4881
4881
  userId: string;
4882
4882
  company?: {
4883
- id: string;
4884
- name: string;
4885
4883
  createdAt: string | Date;
4886
4884
  updatedAt: string | Date;
4887
- } | null | undefined;
4888
- client?: {
4889
4885
  id: string;
4890
4886
  name: string;
4891
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4887
+ } | null | undefined;
4888
+ client?: {
4892
4889
  createdAt: string | Date;
4893
4890
  updatedAt: string | Date;
4891
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4892
+ id: string;
4893
+ name: string;
4894
4894
  crn: string;
4895
4895
  govLink: string;
4896
4896
  director: string;