@dakkitor/api-contracts 1.1.83 → 1.1.85

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/dist/abilities/abilities.contract.d.ts +6 -0
  2. package/dist/abilities/abilities.contract.d.ts.map +1 -1
  3. package/dist/abilities/abilities.contract.js +1 -1
  4. package/dist/abilities/first-agent.abilities.json +8 -0
  5. package/dist/abilities/second-agent.abilities.json +8 -0
  6. package/dist/actives/actives.contract.d.ts +3475 -3475
  7. package/dist/bookings/bookings.contract.d.ts +2990 -2990
  8. package/dist/call-history/call-history.contract.d.ts +432 -426
  9. package/dist/call-history/call-history.contract.d.ts.map +1 -1
  10. package/dist/call-history/call-history.contract.js +2 -5
  11. package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +576 -576
  12. package/dist/collaborations/collaborations.contract.d.ts +470 -470
  13. package/dist/common/common-schemas.d.ts +11 -0
  14. package/dist/common/common-schemas.d.ts.map +1 -1
  15. package/dist/common/common-schemas.js +13 -2
  16. package/dist/curated-workers/curated-workers.contract.d.ts +20 -20
  17. package/dist/curated-workers/curated-workers.contract.d.ts.map +1 -1
  18. package/dist/curated-workers/curated-workers.contract.js +1 -11
  19. package/dist/dashboards/dashboard-widgets.contract.d.ts +1165 -0
  20. package/dist/dashboards/dashboard-widgets.contract.d.ts.map +1 -0
  21. package/dist/dashboards/dashboard-widgets.contract.js +354 -0
  22. package/dist/dashboards/dashboard.contract.d.ts +28 -28
  23. package/dist/index.d.ts +3 -0
  24. package/dist/index.d.ts.map +1 -1
  25. package/dist/index.js +3 -0
  26. package/dist/jobs/jobs.contract.d.ts.map +1 -1
  27. package/dist/jobs/jobs.contract.js +1 -11
  28. package/dist/leads/leads.contract.d.ts +71 -71
  29. package/dist/workers/workers.contract.d.ts +227 -227
  30. package/dist/workers/workers.contract.d.ts.map +1 -1
  31. package/dist/workers/workers.contract.js +17 -15
  32. package/package.json +1 -1
@@ -21,14 +21,14 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
21
21
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
22
22
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
23
23
  }, "strip", z.ZodTypeAny, {
24
+ id: string;
24
25
  createdAt: string;
25
26
  updatedAt: string;
26
- id: string;
27
27
  name: string;
28
28
  }, {
29
+ id: string;
29
30
  createdAt: string | Date;
30
31
  updatedAt: string | Date;
31
- id: string;
32
32
  name: string;
33
33
  }>>>;
34
34
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -66,10 +66,10 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
66
66
  agentId: string;
67
67
  }>>>;
68
68
  }, "strip", z.ZodTypeAny, {
69
+ id: string;
70
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
69
71
  createdAt: string;
70
72
  updatedAt: string;
71
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
72
- id: string;
73
73
  name: string;
74
74
  crn: string | null;
75
75
  govLink: string;
@@ -86,10 +86,10 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
86
86
  agentId: string;
87
87
  } | null | undefined;
88
88
  }, {
89
+ id: string;
90
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
89
91
  createdAt: string | Date;
90
92
  updatedAt: string | Date;
91
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
92
- id: string;
93
93
  name: string;
94
94
  crn: string | null;
95
95
  govLink: string;
@@ -117,9 +117,9 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
117
117
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
118
118
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
119
119
  }, "strip", z.ZodTypeAny, {
120
+ id: string;
120
121
  createdAt: string;
121
122
  updatedAt: string;
122
- id: string;
123
123
  firstName: string;
124
124
  lastName: string;
125
125
  email: string;
@@ -127,9 +127,9 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
127
127
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
128
128
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
129
129
  }, {
130
+ id: string;
130
131
  createdAt: string | Date;
131
132
  updatedAt: string | Date;
132
- id: string;
133
133
  firstName: string;
134
134
  lastName: string;
135
135
  email: string;
@@ -142,22 +142,22 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
142
142
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
143
143
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
144
144
  }, "strip", z.ZodTypeAny, {
145
+ id: string;
146
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
145
147
  createdAt: string;
146
148
  updatedAt: string;
147
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
148
- id: string;
149
149
  userId: string;
150
150
  company?: {
151
+ id: string;
151
152
  createdAt: string;
152
153
  updatedAt: string;
153
- id: string;
154
154
  name: string;
155
155
  } | null | undefined;
156
156
  client?: {
157
+ id: string;
158
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
157
159
  createdAt: string;
158
160
  updatedAt: string;
159
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
160
- id: string;
161
161
  name: string;
162
162
  crn: string | null;
163
163
  govLink: string;
@@ -175,9 +175,9 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
175
175
  } | null | undefined;
176
176
  } | null | undefined;
177
177
  user?: {
178
+ id: string;
178
179
  createdAt: string;
179
180
  updatedAt: string;
180
- id: string;
181
181
  firstName: string;
182
182
  lastName: string;
183
183
  email: string;
@@ -186,22 +186,22 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
186
186
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
187
187
  } | null | undefined;
188
188
  }, {
189
+ id: string;
190
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
189
191
  createdAt: string | Date;
190
192
  updatedAt: string | Date;
191
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
192
- id: string;
193
193
  userId: string;
194
194
  company?: {
195
+ id: string;
195
196
  createdAt: string | Date;
196
197
  updatedAt: string | Date;
197
- id: string;
198
198
  name: string;
199
199
  } | null | undefined;
200
200
  client?: {
201
+ id: string;
202
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
201
203
  createdAt: string | Date;
202
204
  updatedAt: string | Date;
203
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
204
- id: string;
205
205
  name: string;
206
206
  crn: string | null;
207
207
  govLink: string;
@@ -219,9 +219,9 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
219
219
  } | null | undefined;
220
220
  } | null | undefined;
221
221
  user?: {
222
+ id: string;
222
223
  createdAt: string | Date;
223
224
  updatedAt: string | Date;
224
- id: string;
225
225
  firstName: string;
226
226
  lastName: string;
227
227
  email: string;
@@ -241,14 +241,14 @@ export declare const CollaborationSchema: z.ZodObject<{
241
241
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
242
242
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
243
243
  }, "strip", z.ZodTypeAny, {
244
+ id: string;
244
245
  createdAt: string;
245
246
  updatedAt: string;
246
- id: string;
247
247
  name: string;
248
248
  }, {
249
+ id: string;
249
250
  createdAt: string | Date;
250
251
  updatedAt: string | Date;
251
- id: string;
252
252
  name: string;
253
253
  }>>>;
254
254
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -286,10 +286,10 @@ export declare const CollaborationSchema: z.ZodObject<{
286
286
  agentId: string;
287
287
  }>>>;
288
288
  }, "strip", z.ZodTypeAny, {
289
+ id: string;
290
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
289
291
  createdAt: string;
290
292
  updatedAt: string;
291
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
292
- id: string;
293
293
  name: string;
294
294
  crn: string | null;
295
295
  govLink: string;
@@ -306,10 +306,10 @@ export declare const CollaborationSchema: z.ZodObject<{
306
306
  agentId: string;
307
307
  } | null | undefined;
308
308
  }, {
309
+ id: string;
310
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
309
311
  createdAt: string | Date;
310
312
  updatedAt: string | Date;
311
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
312
- id: string;
313
313
  name: string;
314
314
  crn: string | null;
315
315
  govLink: string;
@@ -337,9 +337,9 @@ export declare const CollaborationSchema: z.ZodObject<{
337
337
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
338
338
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
339
339
  }, "strip", z.ZodTypeAny, {
340
+ id: string;
340
341
  createdAt: string;
341
342
  updatedAt: string;
342
- id: string;
343
343
  firstName: string;
344
344
  lastName: string;
345
345
  email: string;
@@ -347,9 +347,9 @@ export declare const CollaborationSchema: z.ZodObject<{
347
347
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
348
348
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
349
349
  }, {
350
+ id: string;
350
351
  createdAt: string | Date;
351
352
  updatedAt: string | Date;
352
- id: string;
353
353
  firstName: string;
354
354
  lastName: string;
355
355
  email: string;
@@ -370,14 +370,14 @@ export declare const CollaborationSchema: z.ZodObject<{
370
370
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
371
371
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
372
372
  }, "strip", z.ZodTypeAny, {
373
+ id: string;
373
374
  createdAt: string;
374
375
  updatedAt: string;
375
- id: string;
376
376
  name: string;
377
377
  }, {
378
+ id: string;
378
379
  createdAt: string | Date;
379
380
  updatedAt: string | Date;
380
- id: string;
381
381
  name: string;
382
382
  }>>>;
383
383
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -415,10 +415,10 @@ export declare const CollaborationSchema: z.ZodObject<{
415
415
  agentId: string;
416
416
  }>>>;
417
417
  }, "strip", z.ZodTypeAny, {
418
+ id: string;
419
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
418
420
  createdAt: string;
419
421
  updatedAt: string;
420
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
421
- id: string;
422
422
  name: string;
423
423
  crn: string | null;
424
424
  govLink: string;
@@ -435,10 +435,10 @@ export declare const CollaborationSchema: z.ZodObject<{
435
435
  agentId: string;
436
436
  } | null | undefined;
437
437
  }, {
438
+ id: string;
439
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
438
440
  createdAt: string | Date;
439
441
  updatedAt: string | Date;
440
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
441
- id: string;
442
442
  name: string;
443
443
  crn: string | null;
444
444
  govLink: string;
@@ -466,9 +466,9 @@ export declare const CollaborationSchema: z.ZodObject<{
466
466
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
467
467
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
468
468
  }, "strip", z.ZodTypeAny, {
469
+ id: string;
469
470
  createdAt: string;
470
471
  updatedAt: string;
471
- id: string;
472
472
  firstName: string;
473
473
  lastName: string;
474
474
  email: string;
@@ -476,9 +476,9 @@ export declare const CollaborationSchema: z.ZodObject<{
476
476
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
477
477
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
478
478
  }, {
479
+ id: string;
479
480
  createdAt: string | Date;
480
481
  updatedAt: string | Date;
481
- id: string;
482
482
  firstName: string;
483
483
  lastName: string;
484
484
  email: string;
@@ -491,22 +491,22 @@ export declare const CollaborationSchema: z.ZodObject<{
491
491
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
492
492
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
493
493
  }, "strip", z.ZodTypeAny, {
494
+ id: string;
495
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
494
496
  createdAt: string;
495
497
  updatedAt: string;
496
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
497
- id: string;
498
498
  userId: string;
499
499
  company?: {
500
+ id: string;
500
501
  createdAt: string;
501
502
  updatedAt: string;
502
- id: string;
503
503
  name: string;
504
504
  } | null | undefined;
505
505
  client?: {
506
+ id: string;
507
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
506
508
  createdAt: string;
507
509
  updatedAt: string;
508
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
509
- id: string;
510
510
  name: string;
511
511
  crn: string | null;
512
512
  govLink: string;
@@ -524,9 +524,9 @@ export declare const CollaborationSchema: z.ZodObject<{
524
524
  } | null | undefined;
525
525
  } | null | undefined;
526
526
  user?: {
527
+ id: string;
527
528
  createdAt: string;
528
529
  updatedAt: string;
529
- id: string;
530
530
  firstName: string;
531
531
  lastName: string;
532
532
  email: string;
@@ -535,22 +535,22 @@ export declare const CollaborationSchema: z.ZodObject<{
535
535
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
536
536
  } | null | undefined;
537
537
  }, {
538
+ id: string;
539
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
538
540
  createdAt: string | Date;
539
541
  updatedAt: string | Date;
540
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
541
- id: string;
542
542
  userId: string;
543
543
  company?: {
544
+ id: string;
544
545
  createdAt: string | Date;
545
546
  updatedAt: string | Date;
546
- id: string;
547
547
  name: string;
548
548
  } | null | undefined;
549
549
  client?: {
550
+ id: string;
551
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
550
552
  createdAt: string | Date;
551
553
  updatedAt: string | Date;
552
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
553
- id: string;
554
554
  name: string;
555
555
  crn: string | null;
556
556
  govLink: string;
@@ -568,9 +568,9 @@ export declare const CollaborationSchema: z.ZodObject<{
568
568
  } | null | undefined;
569
569
  } | null | undefined;
570
570
  user?: {
571
+ id: string;
571
572
  createdAt: string | Date;
572
573
  updatedAt: string | Date;
573
- id: string;
574
574
  firstName: string;
575
575
  lastName: string;
576
576
  email: string;
@@ -580,22 +580,22 @@ export declare const CollaborationSchema: z.ZodObject<{
580
580
  } | null | undefined;
581
581
  }>>>;
582
582
  }, "strip", z.ZodTypeAny, {
583
+ id: string;
584
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
583
585
  createdAt: string;
584
586
  updatedAt: string;
585
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
586
- id: string;
587
587
  userId: string;
588
588
  company?: {
589
+ id: string;
589
590
  createdAt: string;
590
591
  updatedAt: string;
591
- id: string;
592
592
  name: string;
593
593
  } | null | undefined;
594
594
  client?: {
595
+ id: string;
596
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
595
597
  createdAt: string;
596
598
  updatedAt: string;
597
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
598
- id: string;
599
599
  name: string;
600
600
  crn: string | null;
601
601
  govLink: string;
@@ -613,9 +613,9 @@ export declare const CollaborationSchema: z.ZodObject<{
613
613
  } | null | undefined;
614
614
  } | null | undefined;
615
615
  user?: {
616
+ id: string;
616
617
  createdAt: string;
617
618
  updatedAt: string;
618
- id: string;
619
619
  firstName: string;
620
620
  lastName: string;
621
621
  email: string;
@@ -624,22 +624,22 @@ export declare const CollaborationSchema: z.ZodObject<{
624
624
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
625
625
  } | null | undefined;
626
626
  newCollaboration?: {
627
+ id: string;
628
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
627
629
  createdAt: string;
628
630
  updatedAt: string;
629
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
630
- id: string;
631
631
  userId: string;
632
632
  company?: {
633
+ id: string;
633
634
  createdAt: string;
634
635
  updatedAt: string;
635
- id: string;
636
636
  name: string;
637
637
  } | null | undefined;
638
638
  client?: {
639
+ id: string;
640
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
639
641
  createdAt: string;
640
642
  updatedAt: string;
641
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
642
- id: string;
643
643
  name: string;
644
644
  crn: string | null;
645
645
  govLink: string;
@@ -657,9 +657,9 @@ export declare const CollaborationSchema: z.ZodObject<{
657
657
  } | null | undefined;
658
658
  } | null | undefined;
659
659
  user?: {
660
+ id: string;
660
661
  createdAt: string;
661
662
  updatedAt: string;
662
- id: string;
663
663
  firstName: string;
664
664
  lastName: string;
665
665
  email: string;
@@ -669,22 +669,22 @@ export declare const CollaborationSchema: z.ZodObject<{
669
669
  } | null | undefined;
670
670
  } | null | undefined;
671
671
  }, {
672
+ id: string;
673
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
672
674
  createdAt: string | Date;
673
675
  updatedAt: string | Date;
674
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
675
- id: string;
676
676
  userId: string;
677
677
  company?: {
678
+ id: string;
678
679
  createdAt: string | Date;
679
680
  updatedAt: string | Date;
680
- id: string;
681
681
  name: string;
682
682
  } | null | undefined;
683
683
  client?: {
684
+ id: string;
685
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
684
686
  createdAt: string | Date;
685
687
  updatedAt: string | Date;
686
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
687
- id: string;
688
688
  name: string;
689
689
  crn: string | null;
690
690
  govLink: string;
@@ -702,9 +702,9 @@ export declare const CollaborationSchema: z.ZodObject<{
702
702
  } | null | undefined;
703
703
  } | null | undefined;
704
704
  user?: {
705
+ id: string;
705
706
  createdAt: string | Date;
706
707
  updatedAt: string | Date;
707
- id: string;
708
708
  firstName: string;
709
709
  lastName: string;
710
710
  email: string;
@@ -713,22 +713,22 @@ export declare const CollaborationSchema: z.ZodObject<{
713
713
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
714
714
  } | null | undefined;
715
715
  newCollaboration?: {
716
+ id: string;
717
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
716
718
  createdAt: string | Date;
717
719
  updatedAt: string | Date;
718
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
719
- id: string;
720
720
  userId: string;
721
721
  company?: {
722
+ id: string;
722
723
  createdAt: string | Date;
723
724
  updatedAt: string | Date;
724
- id: string;
725
725
  name: string;
726
726
  } | null | undefined;
727
727
  client?: {
728
+ id: string;
729
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
728
730
  createdAt: string | Date;
729
731
  updatedAt: string | Date;
730
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
731
- id: string;
732
732
  name: string;
733
733
  crn: string | null;
734
734
  govLink: string;
@@ -746,9 +746,9 @@ export declare const CollaborationSchema: z.ZodObject<{
746
746
  } | null | undefined;
747
747
  } | null | undefined;
748
748
  user?: {
749
+ id: string;
749
750
  createdAt: string | Date;
750
751
  updatedAt: string | Date;
751
- id: string;
752
752
  firstName: string;
753
753
  lastName: string;
754
754
  email: string;
@@ -791,7 +791,7 @@ export declare const CreateCollaborationSchema: z.ZodObject<{
791
791
  client: {
792
792
  id: string;
793
793
  };
794
- status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
794
+ status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
795
795
  user?: {
796
796
  id: string;
797
797
  } | undefined;
@@ -802,7 +802,7 @@ export declare const CreateCollaborationSchema: z.ZodObject<{
802
802
  client: {
803
803
  id: string;
804
804
  };
805
- status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
805
+ status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
806
806
  user?: {
807
807
  id: string;
808
808
  } | undefined;
@@ -829,7 +829,7 @@ export declare const UpdateCollaborationSchema: z.ZodObject<{
829
829
  }>>;
830
830
  status: z.ZodOptional<z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>>;
831
831
  }, "strip", z.ZodTypeAny, {
832
- status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
832
+ status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
833
833
  company?: {
834
834
  id: string;
835
835
  } | undefined;
@@ -837,7 +837,7 @@ export declare const UpdateCollaborationSchema: z.ZodObject<{
837
837
  id: string;
838
838
  } | undefined;
839
839
  }, {
840
- status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
840
+ status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
841
841
  company?: {
842
842
  id: string;
843
843
  } | undefined;
@@ -878,7 +878,7 @@ export declare const UpsertCollaborationSchema: z.ZodObject<{
878
878
  client: {
879
879
  id: string;
880
880
  };
881
- status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
881
+ status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
882
882
  user?: {
883
883
  id: string;
884
884
  } | undefined;
@@ -889,7 +889,7 @@ export declare const UpsertCollaborationSchema: z.ZodObject<{
889
889
  client: {
890
890
  id: string;
891
891
  };
892
- status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
892
+ status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
893
893
  user?: {
894
894
  id: string;
895
895
  } | undefined;
@@ -910,21 +910,21 @@ export declare const FilterCollaborationSchema: z.ZodObject<{
910
910
  }, "strip", z.ZodTypeAny, {
911
911
  limit: number;
912
912
  page: number;
913
- status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | null | undefined;
913
+ status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | null | undefined;
914
+ sortBy?: "status" | "createdAt" | "updatedAt" | null | undefined;
915
+ sortOrder?: "ASC" | "DESC" | null | undefined;
914
916
  userId?: string | null | undefined;
915
917
  companyId?: string | null | undefined;
916
918
  clientId?: string | null | undefined;
917
- sortBy?: "createdAt" | "updatedAt" | "status" | null | undefined;
918
- sortOrder?: "ASC" | "DESC" | null | undefined;
919
919
  }, {
920
- status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | null | undefined;
921
- userId?: string | null | undefined;
920
+ status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | null | undefined;
922
921
  limit?: number | undefined;
923
922
  page?: number | undefined;
923
+ sortBy?: "status" | "createdAt" | "updatedAt" | null | undefined;
924
+ sortOrder?: "ASC" | "DESC" | null | undefined;
925
+ userId?: string | null | undefined;
924
926
  companyId?: string | null | undefined;
925
927
  clientId?: string | null | undefined;
926
- sortBy?: "createdAt" | "updatedAt" | "status" | null | undefined;
927
- sortOrder?: "ASC" | "DESC" | null | undefined;
928
928
  }>;
929
929
  /**
930
930
  * Collaboration Autocomplete Response Schema
@@ -1040,14 +1040,14 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1040
1040
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1041
1041
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1042
1042
  }, "strip", z.ZodTypeAny, {
1043
+ id: string;
1043
1044
  createdAt: string;
1044
1045
  updatedAt: string;
1045
- id: string;
1046
1046
  name: string;
1047
1047
  }, {
1048
+ id: string;
1048
1049
  createdAt: string | Date;
1049
1050
  updatedAt: string | Date;
1050
- id: string;
1051
1051
  name: string;
1052
1052
  }>>>;
1053
1053
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -1085,10 +1085,10 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1085
1085
  agentId: string;
1086
1086
  }>>>;
1087
1087
  }, "strip", z.ZodTypeAny, {
1088
+ id: string;
1089
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1088
1090
  createdAt: string;
1089
1091
  updatedAt: string;
1090
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1091
- id: string;
1092
1092
  name: string;
1093
1093
  crn: string | null;
1094
1094
  govLink: string;
@@ -1105,10 +1105,10 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1105
1105
  agentId: string;
1106
1106
  } | null | undefined;
1107
1107
  }, {
1108
+ id: string;
1109
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1108
1110
  createdAt: string | Date;
1109
1111
  updatedAt: string | Date;
1110
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1111
- id: string;
1112
1112
  name: string;
1113
1113
  crn: string | null;
1114
1114
  govLink: string;
@@ -1136,9 +1136,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1136
1136
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1137
1137
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1138
1138
  }, "strip", z.ZodTypeAny, {
1139
+ id: string;
1139
1140
  createdAt: string;
1140
1141
  updatedAt: string;
1141
- id: string;
1142
1142
  firstName: string;
1143
1143
  lastName: string;
1144
1144
  email: string;
@@ -1146,9 +1146,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1146
1146
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
1147
1147
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1148
1148
  }, {
1149
+ id: string;
1149
1150
  createdAt: string | Date;
1150
1151
  updatedAt: string | Date;
1151
- id: string;
1152
1152
  firstName: string;
1153
1153
  lastName: string;
1154
1154
  email: string;
@@ -1169,14 +1169,14 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1169
1169
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1170
1170
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1171
1171
  }, "strip", z.ZodTypeAny, {
1172
+ id: string;
1172
1173
  createdAt: string;
1173
1174
  updatedAt: string;
1174
- id: string;
1175
1175
  name: string;
1176
1176
  }, {
1177
+ id: string;
1177
1178
  createdAt: string | Date;
1178
1179
  updatedAt: string | Date;
1179
- id: string;
1180
1180
  name: string;
1181
1181
  }>>>;
1182
1182
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -1214,10 +1214,10 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1214
1214
  agentId: string;
1215
1215
  }>>>;
1216
1216
  }, "strip", z.ZodTypeAny, {
1217
+ id: string;
1218
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1217
1219
  createdAt: string;
1218
1220
  updatedAt: string;
1219
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1220
- id: string;
1221
1221
  name: string;
1222
1222
  crn: string | null;
1223
1223
  govLink: string;
@@ -1234,10 +1234,10 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1234
1234
  agentId: string;
1235
1235
  } | null | undefined;
1236
1236
  }, {
1237
+ id: string;
1238
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1237
1239
  createdAt: string | Date;
1238
1240
  updatedAt: string | Date;
1239
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1240
- id: string;
1241
1241
  name: string;
1242
1242
  crn: string | null;
1243
1243
  govLink: string;
@@ -1265,9 +1265,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1265
1265
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1266
1266
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1267
1267
  }, "strip", z.ZodTypeAny, {
1268
+ id: string;
1268
1269
  createdAt: string;
1269
1270
  updatedAt: string;
1270
- id: string;
1271
1271
  firstName: string;
1272
1272
  lastName: string;
1273
1273
  email: string;
@@ -1275,9 +1275,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1275
1275
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
1276
1276
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1277
1277
  }, {
1278
+ id: string;
1278
1279
  createdAt: string | Date;
1279
1280
  updatedAt: string | Date;
1280
- id: string;
1281
1281
  firstName: string;
1282
1282
  lastName: string;
1283
1283
  email: string;
@@ -1290,22 +1290,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1290
1290
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1291
1291
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1292
1292
  }, "strip", z.ZodTypeAny, {
1293
+ id: string;
1294
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1293
1295
  createdAt: string;
1294
1296
  updatedAt: string;
1295
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1296
- id: string;
1297
1297
  userId: string;
1298
1298
  company?: {
1299
+ id: string;
1299
1300
  createdAt: string;
1300
1301
  updatedAt: string;
1301
- id: string;
1302
1302
  name: string;
1303
1303
  } | null | undefined;
1304
1304
  client?: {
1305
+ id: string;
1306
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1305
1307
  createdAt: string;
1306
1308
  updatedAt: string;
1307
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1308
- id: string;
1309
1309
  name: string;
1310
1310
  crn: string | null;
1311
1311
  govLink: string;
@@ -1323,9 +1323,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1323
1323
  } | null | undefined;
1324
1324
  } | null | undefined;
1325
1325
  user?: {
1326
+ id: string;
1326
1327
  createdAt: string;
1327
1328
  updatedAt: string;
1328
- id: string;
1329
1329
  firstName: string;
1330
1330
  lastName: string;
1331
1331
  email: string;
@@ -1334,22 +1334,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1334
1334
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1335
1335
  } | null | undefined;
1336
1336
  }, {
1337
+ id: string;
1338
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1337
1339
  createdAt: string | Date;
1338
1340
  updatedAt: string | Date;
1339
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1340
- id: string;
1341
1341
  userId: string;
1342
1342
  company?: {
1343
+ id: string;
1343
1344
  createdAt: string | Date;
1344
1345
  updatedAt: string | Date;
1345
- id: string;
1346
1346
  name: string;
1347
1347
  } | null | undefined;
1348
1348
  client?: {
1349
+ id: string;
1350
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1349
1351
  createdAt: string | Date;
1350
1352
  updatedAt: string | Date;
1351
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1352
- id: string;
1353
1353
  name: string;
1354
1354
  crn: string | null;
1355
1355
  govLink: string;
@@ -1367,9 +1367,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1367
1367
  } | null | undefined;
1368
1368
  } | null | undefined;
1369
1369
  user?: {
1370
+ id: string;
1370
1371
  createdAt: string | Date;
1371
1372
  updatedAt: string | Date;
1372
- id: string;
1373
1373
  firstName: string;
1374
1374
  lastName: string;
1375
1375
  email: string;
@@ -1379,22 +1379,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1379
1379
  } | null | undefined;
1380
1380
  }>>>;
1381
1381
  }, "strip", z.ZodTypeAny, {
1382
+ id: string;
1383
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1382
1384
  createdAt: string;
1383
1385
  updatedAt: string;
1384
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1385
- id: string;
1386
1386
  userId: string;
1387
1387
  company?: {
1388
+ id: string;
1388
1389
  createdAt: string;
1389
1390
  updatedAt: string;
1390
- id: string;
1391
1391
  name: string;
1392
1392
  } | null | undefined;
1393
1393
  client?: {
1394
+ id: string;
1395
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1394
1396
  createdAt: string;
1395
1397
  updatedAt: string;
1396
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1397
- id: string;
1398
1398
  name: string;
1399
1399
  crn: string | null;
1400
1400
  govLink: string;
@@ -1412,9 +1412,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1412
1412
  } | null | undefined;
1413
1413
  } | null | undefined;
1414
1414
  user?: {
1415
+ id: string;
1415
1416
  createdAt: string;
1416
1417
  updatedAt: string;
1417
- id: string;
1418
1418
  firstName: string;
1419
1419
  lastName: string;
1420
1420
  email: string;
@@ -1423,22 +1423,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1423
1423
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1424
1424
  } | null | undefined;
1425
1425
  newCollaboration?: {
1426
+ id: string;
1427
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1426
1428
  createdAt: string;
1427
1429
  updatedAt: string;
1428
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1429
- id: string;
1430
1430
  userId: string;
1431
1431
  company?: {
1432
+ id: string;
1432
1433
  createdAt: string;
1433
1434
  updatedAt: string;
1434
- id: string;
1435
1435
  name: string;
1436
1436
  } | null | undefined;
1437
1437
  client?: {
1438
+ id: string;
1439
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1438
1440
  createdAt: string;
1439
1441
  updatedAt: string;
1440
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1441
- id: string;
1442
1442
  name: string;
1443
1443
  crn: string | null;
1444
1444
  govLink: string;
@@ -1456,9 +1456,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1456
1456
  } | null | undefined;
1457
1457
  } | null | undefined;
1458
1458
  user?: {
1459
+ id: string;
1459
1460
  createdAt: string;
1460
1461
  updatedAt: string;
1461
- id: string;
1462
1462
  firstName: string;
1463
1463
  lastName: string;
1464
1464
  email: string;
@@ -1468,22 +1468,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1468
1468
  } | null | undefined;
1469
1469
  } | null | undefined;
1470
1470
  }, {
1471
+ id: string;
1472
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1471
1473
  createdAt: string | Date;
1472
1474
  updatedAt: string | Date;
1473
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1474
- id: string;
1475
1475
  userId: string;
1476
1476
  company?: {
1477
+ id: string;
1477
1478
  createdAt: string | Date;
1478
1479
  updatedAt: string | Date;
1479
- id: string;
1480
1480
  name: string;
1481
1481
  } | null | undefined;
1482
1482
  client?: {
1483
+ id: string;
1484
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1483
1485
  createdAt: string | Date;
1484
1486
  updatedAt: string | Date;
1485
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1486
- id: string;
1487
1487
  name: string;
1488
1488
  crn: string | null;
1489
1489
  govLink: string;
@@ -1501,9 +1501,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1501
1501
  } | null | undefined;
1502
1502
  } | null | undefined;
1503
1503
  user?: {
1504
+ id: string;
1504
1505
  createdAt: string | Date;
1505
1506
  updatedAt: string | Date;
1506
- id: string;
1507
1507
  firstName: string;
1508
1508
  lastName: string;
1509
1509
  email: string;
@@ -1512,22 +1512,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1512
1512
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1513
1513
  } | null | undefined;
1514
1514
  newCollaboration?: {
1515
+ id: string;
1516
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1515
1517
  createdAt: string | Date;
1516
1518
  updatedAt: string | Date;
1517
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1518
- id: string;
1519
1519
  userId: string;
1520
1520
  company?: {
1521
+ id: string;
1521
1522
  createdAt: string | Date;
1522
1523
  updatedAt: string | Date;
1523
- id: string;
1524
1524
  name: string;
1525
1525
  } | null | undefined;
1526
1526
  client?: {
1527
+ id: string;
1528
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1527
1529
  createdAt: string | Date;
1528
1530
  updatedAt: string | Date;
1529
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1530
- id: string;
1531
1531
  name: string;
1532
1532
  crn: string | null;
1533
1533
  govLink: string;
@@ -1545,9 +1545,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1545
1545
  } | null | undefined;
1546
1546
  } | null | undefined;
1547
1547
  user?: {
1548
+ id: string;
1548
1549
  createdAt: string | Date;
1549
1550
  updatedAt: string | Date;
1550
- id: string;
1551
1551
  firstName: string;
1552
1552
  lastName: string;
1553
1553
  email: string;
@@ -1565,22 +1565,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1565
1565
  }, "strip", z.ZodTypeAny, {
1566
1566
  limit: number;
1567
1567
  items: {
1568
+ id: string;
1569
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1568
1570
  createdAt: string;
1569
1571
  updatedAt: string;
1570
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1571
- id: string;
1572
1572
  userId: string;
1573
1573
  company?: {
1574
+ id: string;
1574
1575
  createdAt: string;
1575
1576
  updatedAt: string;
1576
- id: string;
1577
1577
  name: string;
1578
1578
  } | null | undefined;
1579
1579
  client?: {
1580
+ id: string;
1581
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1580
1582
  createdAt: string;
1581
1583
  updatedAt: string;
1582
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1583
- id: string;
1584
1584
  name: string;
1585
1585
  crn: string | null;
1586
1586
  govLink: string;
@@ -1598,9 +1598,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1598
1598
  } | null | undefined;
1599
1599
  } | null | undefined;
1600
1600
  user?: {
1601
+ id: string;
1601
1602
  createdAt: string;
1602
1603
  updatedAt: string;
1603
- id: string;
1604
1604
  firstName: string;
1605
1605
  lastName: string;
1606
1606
  email: string;
@@ -1609,22 +1609,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1609
1609
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1610
1610
  } | null | undefined;
1611
1611
  newCollaboration?: {
1612
+ id: string;
1613
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1612
1614
  createdAt: string;
1613
1615
  updatedAt: string;
1614
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1615
- id: string;
1616
1616
  userId: string;
1617
1617
  company?: {
1618
+ id: string;
1618
1619
  createdAt: string;
1619
1620
  updatedAt: string;
1620
- id: string;
1621
1621
  name: string;
1622
1622
  } | null | undefined;
1623
1623
  client?: {
1624
+ id: string;
1625
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1624
1626
  createdAt: string;
1625
1627
  updatedAt: string;
1626
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1627
- id: string;
1628
1628
  name: string;
1629
1629
  crn: string | null;
1630
1630
  govLink: string;
@@ -1642,9 +1642,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1642
1642
  } | null | undefined;
1643
1643
  } | null | undefined;
1644
1644
  user?: {
1645
+ id: string;
1645
1646
  createdAt: string;
1646
1647
  updatedAt: string;
1647
- id: string;
1648
1648
  firstName: string;
1649
1649
  lastName: string;
1650
1650
  email: string;
@@ -1661,22 +1661,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1661
1661
  }, {
1662
1662
  limit: number;
1663
1663
  items: {
1664
+ id: string;
1665
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1664
1666
  createdAt: string | Date;
1665
1667
  updatedAt: string | Date;
1666
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1667
- id: string;
1668
1668
  userId: string;
1669
1669
  company?: {
1670
+ id: string;
1670
1671
  createdAt: string | Date;
1671
1672
  updatedAt: string | Date;
1672
- id: string;
1673
1673
  name: string;
1674
1674
  } | null | undefined;
1675
1675
  client?: {
1676
+ id: string;
1677
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1676
1678
  createdAt: string | Date;
1677
1679
  updatedAt: string | Date;
1678
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1679
- id: string;
1680
1680
  name: string;
1681
1681
  crn: string | null;
1682
1682
  govLink: string;
@@ -1694,9 +1694,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1694
1694
  } | null | undefined;
1695
1695
  } | null | undefined;
1696
1696
  user?: {
1697
+ id: string;
1697
1698
  createdAt: string | Date;
1698
1699
  updatedAt: string | Date;
1699
- id: string;
1700
1700
  firstName: string;
1701
1701
  lastName: string;
1702
1702
  email: string;
@@ -1705,22 +1705,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1705
1705
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1706
1706
  } | null | undefined;
1707
1707
  newCollaboration?: {
1708
+ id: string;
1709
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1708
1710
  createdAt: string | Date;
1709
1711
  updatedAt: string | Date;
1710
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1711
- id: string;
1712
1712
  userId: string;
1713
1713
  company?: {
1714
+ id: string;
1714
1715
  createdAt: string | Date;
1715
1716
  updatedAt: string | Date;
1716
- id: string;
1717
1717
  name: string;
1718
1718
  } | null | undefined;
1719
1719
  client?: {
1720
+ id: string;
1721
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1720
1722
  createdAt: string | Date;
1721
1723
  updatedAt: string | Date;
1722
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1723
- id: string;
1724
1724
  name: string;
1725
1725
  crn: string | null;
1726
1726
  govLink: string;
@@ -1738,9 +1738,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1738
1738
  } | null | undefined;
1739
1739
  } | null | undefined;
1740
1740
  user?: {
1741
+ id: string;
1741
1742
  createdAt: string | Date;
1742
1743
  updatedAt: string | Date;
1743
- id: string;
1744
1744
  firstName: string;
1745
1745
  lastName: string;
1746
1746
  email: string;
@@ -1803,7 +1803,7 @@ export declare const collaborationsContractRouter: {
1803
1803
  client: {
1804
1804
  id: string;
1805
1805
  };
1806
- status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
1806
+ status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
1807
1807
  user?: {
1808
1808
  id: string;
1809
1809
  } | undefined;
@@ -1814,7 +1814,7 @@ export declare const collaborationsContractRouter: {
1814
1814
  client: {
1815
1815
  id: string;
1816
1816
  };
1817
- status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
1817
+ status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
1818
1818
  user?: {
1819
1819
  id: string;
1820
1820
  } | undefined;
@@ -1929,14 +1929,14 @@ export declare const collaborationsContractRouter: {
1929
1929
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1930
1930
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1931
1931
  }, "strip", z.ZodTypeAny, {
1932
+ id: string;
1932
1933
  createdAt: string;
1933
1934
  updatedAt: string;
1934
- id: string;
1935
1935
  name: string;
1936
1936
  }, {
1937
+ id: string;
1937
1938
  createdAt: string | Date;
1938
1939
  updatedAt: string | Date;
1939
- id: string;
1940
1940
  name: string;
1941
1941
  }>>>;
1942
1942
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -1974,10 +1974,10 @@ export declare const collaborationsContractRouter: {
1974
1974
  agentId: string;
1975
1975
  }>>>;
1976
1976
  }, "strip", z.ZodTypeAny, {
1977
+ id: string;
1978
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1977
1979
  createdAt: string;
1978
1980
  updatedAt: string;
1979
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1980
- id: string;
1981
1981
  name: string;
1982
1982
  crn: string | null;
1983
1983
  govLink: string;
@@ -1994,10 +1994,10 @@ export declare const collaborationsContractRouter: {
1994
1994
  agentId: string;
1995
1995
  } | null | undefined;
1996
1996
  }, {
1997
+ id: string;
1998
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1997
1999
  createdAt: string | Date;
1998
2000
  updatedAt: string | Date;
1999
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2000
- id: string;
2001
2001
  name: string;
2002
2002
  crn: string | null;
2003
2003
  govLink: string;
@@ -2025,9 +2025,9 @@ export declare const collaborationsContractRouter: {
2025
2025
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2026
2026
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2027
2027
  }, "strip", z.ZodTypeAny, {
2028
+ id: string;
2028
2029
  createdAt: string;
2029
2030
  updatedAt: string;
2030
- id: string;
2031
2031
  firstName: string;
2032
2032
  lastName: string;
2033
2033
  email: string;
@@ -2035,9 +2035,9 @@ export declare const collaborationsContractRouter: {
2035
2035
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
2036
2036
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
2037
2037
  }, {
2038
+ id: string;
2038
2039
  createdAt: string | Date;
2039
2040
  updatedAt: string | Date;
2040
- id: string;
2041
2041
  firstName: string;
2042
2042
  lastName: string;
2043
2043
  email: string;
@@ -2058,14 +2058,14 @@ export declare const collaborationsContractRouter: {
2058
2058
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2059
2059
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2060
2060
  }, "strip", z.ZodTypeAny, {
2061
+ id: string;
2061
2062
  createdAt: string;
2062
2063
  updatedAt: string;
2063
- id: string;
2064
2064
  name: string;
2065
2065
  }, {
2066
+ id: string;
2066
2067
  createdAt: string | Date;
2067
2068
  updatedAt: string | Date;
2068
- id: string;
2069
2069
  name: string;
2070
2070
  }>>>;
2071
2071
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -2103,10 +2103,10 @@ export declare const collaborationsContractRouter: {
2103
2103
  agentId: string;
2104
2104
  }>>>;
2105
2105
  }, "strip", z.ZodTypeAny, {
2106
+ id: string;
2107
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2106
2108
  createdAt: string;
2107
2109
  updatedAt: string;
2108
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2109
- id: string;
2110
2110
  name: string;
2111
2111
  crn: string | null;
2112
2112
  govLink: string;
@@ -2123,10 +2123,10 @@ export declare const collaborationsContractRouter: {
2123
2123
  agentId: string;
2124
2124
  } | null | undefined;
2125
2125
  }, {
2126
+ id: string;
2127
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2126
2128
  createdAt: string | Date;
2127
2129
  updatedAt: string | Date;
2128
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2129
- id: string;
2130
2130
  name: string;
2131
2131
  crn: string | null;
2132
2132
  govLink: string;
@@ -2154,9 +2154,9 @@ export declare const collaborationsContractRouter: {
2154
2154
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2155
2155
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2156
2156
  }, "strip", z.ZodTypeAny, {
2157
+ id: string;
2157
2158
  createdAt: string;
2158
2159
  updatedAt: string;
2159
- id: string;
2160
2160
  firstName: string;
2161
2161
  lastName: string;
2162
2162
  email: string;
@@ -2164,9 +2164,9 @@ export declare const collaborationsContractRouter: {
2164
2164
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
2165
2165
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
2166
2166
  }, {
2167
+ id: string;
2167
2168
  createdAt: string | Date;
2168
2169
  updatedAt: string | Date;
2169
- id: string;
2170
2170
  firstName: string;
2171
2171
  lastName: string;
2172
2172
  email: string;
@@ -2179,22 +2179,22 @@ export declare const collaborationsContractRouter: {
2179
2179
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2180
2180
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2181
2181
  }, "strip", z.ZodTypeAny, {
2182
+ id: string;
2183
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2182
2184
  createdAt: string;
2183
2185
  updatedAt: string;
2184
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2185
- id: string;
2186
2186
  userId: string;
2187
2187
  company?: {
2188
+ id: string;
2188
2189
  createdAt: string;
2189
2190
  updatedAt: string;
2190
- id: string;
2191
2191
  name: string;
2192
2192
  } | null | undefined;
2193
2193
  client?: {
2194
+ id: string;
2195
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2194
2196
  createdAt: string;
2195
2197
  updatedAt: string;
2196
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2197
- id: string;
2198
2198
  name: string;
2199
2199
  crn: string | null;
2200
2200
  govLink: string;
@@ -2212,9 +2212,9 @@ export declare const collaborationsContractRouter: {
2212
2212
  } | null | undefined;
2213
2213
  } | null | undefined;
2214
2214
  user?: {
2215
+ id: string;
2215
2216
  createdAt: string;
2216
2217
  updatedAt: string;
2217
- id: string;
2218
2218
  firstName: string;
2219
2219
  lastName: string;
2220
2220
  email: string;
@@ -2223,22 +2223,22 @@ export declare const collaborationsContractRouter: {
2223
2223
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
2224
2224
  } | null | undefined;
2225
2225
  }, {
2226
+ id: string;
2227
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2226
2228
  createdAt: string | Date;
2227
2229
  updatedAt: string | Date;
2228
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2229
- id: string;
2230
2230
  userId: string;
2231
2231
  company?: {
2232
+ id: string;
2232
2233
  createdAt: string | Date;
2233
2234
  updatedAt: string | Date;
2234
- id: string;
2235
2235
  name: string;
2236
2236
  } | null | undefined;
2237
2237
  client?: {
2238
+ id: string;
2239
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2238
2240
  createdAt: string | Date;
2239
2241
  updatedAt: string | Date;
2240
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2241
- id: string;
2242
2242
  name: string;
2243
2243
  crn: string | null;
2244
2244
  govLink: string;
@@ -2256,9 +2256,9 @@ export declare const collaborationsContractRouter: {
2256
2256
  } | null | undefined;
2257
2257
  } | null | undefined;
2258
2258
  user?: {
2259
+ id: string;
2259
2260
  createdAt: string | Date;
2260
2261
  updatedAt: string | Date;
2261
- id: string;
2262
2262
  firstName: string;
2263
2263
  lastName: string;
2264
2264
  email: string;
@@ -2268,22 +2268,22 @@ export declare const collaborationsContractRouter: {
2268
2268
  } | null | undefined;
2269
2269
  }>>>;
2270
2270
  }, "strip", z.ZodTypeAny, {
2271
+ id: string;
2272
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2271
2273
  createdAt: string;
2272
2274
  updatedAt: string;
2273
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2274
- id: string;
2275
2275
  userId: string;
2276
2276
  company?: {
2277
+ id: string;
2277
2278
  createdAt: string;
2278
2279
  updatedAt: string;
2279
- id: string;
2280
2280
  name: string;
2281
2281
  } | null | undefined;
2282
2282
  client?: {
2283
+ id: string;
2284
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2283
2285
  createdAt: string;
2284
2286
  updatedAt: string;
2285
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2286
- id: string;
2287
2287
  name: string;
2288
2288
  crn: string | null;
2289
2289
  govLink: string;
@@ -2301,9 +2301,9 @@ export declare const collaborationsContractRouter: {
2301
2301
  } | null | undefined;
2302
2302
  } | null | undefined;
2303
2303
  user?: {
2304
+ id: string;
2304
2305
  createdAt: string;
2305
2306
  updatedAt: string;
2306
- id: string;
2307
2307
  firstName: string;
2308
2308
  lastName: string;
2309
2309
  email: string;
@@ -2312,22 +2312,22 @@ export declare const collaborationsContractRouter: {
2312
2312
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
2313
2313
  } | null | undefined;
2314
2314
  newCollaboration?: {
2315
+ id: string;
2316
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2315
2317
  createdAt: string;
2316
2318
  updatedAt: string;
2317
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2318
- id: string;
2319
2319
  userId: string;
2320
2320
  company?: {
2321
+ id: string;
2321
2322
  createdAt: string;
2322
2323
  updatedAt: string;
2323
- id: string;
2324
2324
  name: string;
2325
2325
  } | null | undefined;
2326
2326
  client?: {
2327
+ id: string;
2328
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2327
2329
  createdAt: string;
2328
2330
  updatedAt: string;
2329
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2330
- id: string;
2331
2331
  name: string;
2332
2332
  crn: string | null;
2333
2333
  govLink: string;
@@ -2345,9 +2345,9 @@ export declare const collaborationsContractRouter: {
2345
2345
  } | null | undefined;
2346
2346
  } | null | undefined;
2347
2347
  user?: {
2348
+ id: string;
2348
2349
  createdAt: string;
2349
2350
  updatedAt: string;
2350
- id: string;
2351
2351
  firstName: string;
2352
2352
  lastName: string;
2353
2353
  email: string;
@@ -2357,22 +2357,22 @@ export declare const collaborationsContractRouter: {
2357
2357
  } | null | undefined;
2358
2358
  } | null | undefined;
2359
2359
  }, {
2360
+ id: string;
2361
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2360
2362
  createdAt: string | Date;
2361
2363
  updatedAt: string | Date;
2362
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2363
- id: string;
2364
2364
  userId: string;
2365
2365
  company?: {
2366
+ id: string;
2366
2367
  createdAt: string | Date;
2367
2368
  updatedAt: string | Date;
2368
- id: string;
2369
2369
  name: string;
2370
2370
  } | null | undefined;
2371
2371
  client?: {
2372
+ id: string;
2373
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2372
2374
  createdAt: string | Date;
2373
2375
  updatedAt: string | Date;
2374
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2375
- id: string;
2376
2376
  name: string;
2377
2377
  crn: string | null;
2378
2378
  govLink: string;
@@ -2390,9 +2390,9 @@ export declare const collaborationsContractRouter: {
2390
2390
  } | null | undefined;
2391
2391
  } | null | undefined;
2392
2392
  user?: {
2393
+ id: string;
2393
2394
  createdAt: string | Date;
2394
2395
  updatedAt: string | Date;
2395
- id: string;
2396
2396
  firstName: string;
2397
2397
  lastName: string;
2398
2398
  email: string;
@@ -2401,22 +2401,22 @@ export declare const collaborationsContractRouter: {
2401
2401
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
2402
2402
  } | null | undefined;
2403
2403
  newCollaboration?: {
2404
+ id: string;
2405
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2404
2406
  createdAt: string | Date;
2405
2407
  updatedAt: string | Date;
2406
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2407
- id: string;
2408
2408
  userId: string;
2409
2409
  company?: {
2410
+ id: string;
2410
2411
  createdAt: string | Date;
2411
2412
  updatedAt: string | Date;
2412
- id: string;
2413
2413
  name: string;
2414
2414
  } | null | undefined;
2415
2415
  client?: {
2416
+ id: string;
2417
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2416
2418
  createdAt: string | Date;
2417
2419
  updatedAt: string | Date;
2418
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2419
- id: string;
2420
2420
  name: string;
2421
2421
  crn: string | null;
2422
2422
  govLink: string;
@@ -2434,9 +2434,9 @@ export declare const collaborationsContractRouter: {
2434
2434
  } | null | undefined;
2435
2435
  } | null | undefined;
2436
2436
  user?: {
2437
+ id: string;
2437
2438
  createdAt: string | Date;
2438
2439
  updatedAt: string | Date;
2439
- id: string;
2440
2440
  firstName: string;
2441
2441
  lastName: string;
2442
2442
  email: string;
@@ -2474,12 +2474,6 @@ export declare const collaborationsContractRouter: {
2474
2474
  };
2475
2475
  };
2476
2476
  findAll: {
2477
- metadata: {
2478
- tags: string[];
2479
- openApi: {
2480
- operationId: string;
2481
- };
2482
- };
2483
2477
  query: z.ZodObject<{
2484
2478
  limit: z.ZodDefault<z.ZodNumber>;
2485
2479
  page: z.ZodDefault<z.ZodNumber>;
@@ -2493,22 +2487,28 @@ export declare const collaborationsContractRouter: {
2493
2487
  }, "strip", z.ZodTypeAny, {
2494
2488
  limit: number;
2495
2489
  page: number;
2496
- status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | null | undefined;
2490
+ status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | null | undefined;
2491
+ sortBy?: "status" | "createdAt" | "updatedAt" | null | undefined;
2492
+ sortOrder?: "ASC" | "DESC" | null | undefined;
2497
2493
  userId?: string | null | undefined;
2498
2494
  companyId?: string | null | undefined;
2499
2495
  clientId?: string | null | undefined;
2500
- sortBy?: "createdAt" | "updatedAt" | "status" | null | undefined;
2501
- sortOrder?: "ASC" | "DESC" | null | undefined;
2502
2496
  }, {
2503
- status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | null | undefined;
2504
- userId?: string | null | undefined;
2497
+ status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | null | undefined;
2505
2498
  limit?: number | undefined;
2506
2499
  page?: number | undefined;
2500
+ sortBy?: "status" | "createdAt" | "updatedAt" | null | undefined;
2501
+ sortOrder?: "ASC" | "DESC" | null | undefined;
2502
+ userId?: string | null | undefined;
2507
2503
  companyId?: string | null | undefined;
2508
2504
  clientId?: string | null | undefined;
2509
- sortBy?: "createdAt" | "updatedAt" | "status" | null | undefined;
2510
- sortOrder?: "ASC" | "DESC" | null | undefined;
2511
2505
  }>;
2506
+ metadata: {
2507
+ tags: string[];
2508
+ openApi: {
2509
+ operationId: string;
2510
+ };
2511
+ };
2512
2512
  summary: "Get all collaborations";
2513
2513
  method: "GET";
2514
2514
  path: "/v2/collaborations";
@@ -2622,14 +2622,14 @@ export declare const collaborationsContractRouter: {
2622
2622
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2623
2623
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2624
2624
  }, "strip", z.ZodTypeAny, {
2625
+ id: string;
2625
2626
  createdAt: string;
2626
2627
  updatedAt: string;
2627
- id: string;
2628
2628
  name: string;
2629
2629
  }, {
2630
+ id: string;
2630
2631
  createdAt: string | Date;
2631
2632
  updatedAt: string | Date;
2632
- id: string;
2633
2633
  name: string;
2634
2634
  }>>>;
2635
2635
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -2667,10 +2667,10 @@ export declare const collaborationsContractRouter: {
2667
2667
  agentId: string;
2668
2668
  }>>>;
2669
2669
  }, "strip", z.ZodTypeAny, {
2670
+ id: string;
2671
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2670
2672
  createdAt: string;
2671
2673
  updatedAt: string;
2672
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2673
- id: string;
2674
2674
  name: string;
2675
2675
  crn: string | null;
2676
2676
  govLink: string;
@@ -2687,10 +2687,10 @@ export declare const collaborationsContractRouter: {
2687
2687
  agentId: string;
2688
2688
  } | null | undefined;
2689
2689
  }, {
2690
+ id: string;
2691
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2690
2692
  createdAt: string | Date;
2691
2693
  updatedAt: string | Date;
2692
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2693
- id: string;
2694
2694
  name: string;
2695
2695
  crn: string | null;
2696
2696
  govLink: string;
@@ -2718,9 +2718,9 @@ export declare const collaborationsContractRouter: {
2718
2718
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2719
2719
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2720
2720
  }, "strip", z.ZodTypeAny, {
2721
+ id: string;
2721
2722
  createdAt: string;
2722
2723
  updatedAt: string;
2723
- id: string;
2724
2724
  firstName: string;
2725
2725
  lastName: string;
2726
2726
  email: string;
@@ -2728,9 +2728,9 @@ export declare const collaborationsContractRouter: {
2728
2728
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
2729
2729
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
2730
2730
  }, {
2731
+ id: string;
2731
2732
  createdAt: string | Date;
2732
2733
  updatedAt: string | Date;
2733
- id: string;
2734
2734
  firstName: string;
2735
2735
  lastName: string;
2736
2736
  email: string;
@@ -2751,14 +2751,14 @@ export declare const collaborationsContractRouter: {
2751
2751
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2752
2752
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2753
2753
  }, "strip", z.ZodTypeAny, {
2754
+ id: string;
2754
2755
  createdAt: string;
2755
2756
  updatedAt: string;
2756
- id: string;
2757
2757
  name: string;
2758
2758
  }, {
2759
+ id: string;
2759
2760
  createdAt: string | Date;
2760
2761
  updatedAt: string | Date;
2761
- id: string;
2762
2762
  name: string;
2763
2763
  }>>>;
2764
2764
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -2796,10 +2796,10 @@ export declare const collaborationsContractRouter: {
2796
2796
  agentId: string;
2797
2797
  }>>>;
2798
2798
  }, "strip", z.ZodTypeAny, {
2799
+ id: string;
2800
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2799
2801
  createdAt: string;
2800
2802
  updatedAt: string;
2801
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2802
- id: string;
2803
2803
  name: string;
2804
2804
  crn: string | null;
2805
2805
  govLink: string;
@@ -2816,10 +2816,10 @@ export declare const collaborationsContractRouter: {
2816
2816
  agentId: string;
2817
2817
  } | null | undefined;
2818
2818
  }, {
2819
+ id: string;
2820
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2819
2821
  createdAt: string | Date;
2820
2822
  updatedAt: string | Date;
2821
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2822
- id: string;
2823
2823
  name: string;
2824
2824
  crn: string | null;
2825
2825
  govLink: string;
@@ -2847,9 +2847,9 @@ export declare const collaborationsContractRouter: {
2847
2847
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2848
2848
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2849
2849
  }, "strip", z.ZodTypeAny, {
2850
+ id: string;
2850
2851
  createdAt: string;
2851
2852
  updatedAt: string;
2852
- id: string;
2853
2853
  firstName: string;
2854
2854
  lastName: string;
2855
2855
  email: string;
@@ -2857,9 +2857,9 @@ export declare const collaborationsContractRouter: {
2857
2857
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
2858
2858
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
2859
2859
  }, {
2860
+ id: string;
2860
2861
  createdAt: string | Date;
2861
2862
  updatedAt: string | Date;
2862
- id: string;
2863
2863
  firstName: string;
2864
2864
  lastName: string;
2865
2865
  email: string;
@@ -2872,22 +2872,22 @@ export declare const collaborationsContractRouter: {
2872
2872
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2873
2873
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2874
2874
  }, "strip", z.ZodTypeAny, {
2875
+ id: string;
2876
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2875
2877
  createdAt: string;
2876
2878
  updatedAt: string;
2877
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2878
- id: string;
2879
2879
  userId: string;
2880
2880
  company?: {
2881
+ id: string;
2881
2882
  createdAt: string;
2882
2883
  updatedAt: string;
2883
- id: string;
2884
2884
  name: string;
2885
2885
  } | null | undefined;
2886
2886
  client?: {
2887
+ id: string;
2888
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2887
2889
  createdAt: string;
2888
2890
  updatedAt: string;
2889
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2890
- id: string;
2891
2891
  name: string;
2892
2892
  crn: string | null;
2893
2893
  govLink: string;
@@ -2905,9 +2905,9 @@ export declare const collaborationsContractRouter: {
2905
2905
  } | null | undefined;
2906
2906
  } | null | undefined;
2907
2907
  user?: {
2908
+ id: string;
2908
2909
  createdAt: string;
2909
2910
  updatedAt: string;
2910
- id: string;
2911
2911
  firstName: string;
2912
2912
  lastName: string;
2913
2913
  email: string;
@@ -2916,22 +2916,22 @@ export declare const collaborationsContractRouter: {
2916
2916
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
2917
2917
  } | null | undefined;
2918
2918
  }, {
2919
+ id: string;
2920
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2919
2921
  createdAt: string | Date;
2920
2922
  updatedAt: string | Date;
2921
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2922
- id: string;
2923
2923
  userId: string;
2924
2924
  company?: {
2925
+ id: string;
2925
2926
  createdAt: string | Date;
2926
2927
  updatedAt: string | Date;
2927
- id: string;
2928
2928
  name: string;
2929
2929
  } | null | undefined;
2930
2930
  client?: {
2931
+ id: string;
2932
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2931
2933
  createdAt: string | Date;
2932
2934
  updatedAt: string | Date;
2933
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2934
- id: string;
2935
2935
  name: string;
2936
2936
  crn: string | null;
2937
2937
  govLink: string;
@@ -2949,9 +2949,9 @@ export declare const collaborationsContractRouter: {
2949
2949
  } | null | undefined;
2950
2950
  } | null | undefined;
2951
2951
  user?: {
2952
+ id: string;
2952
2953
  createdAt: string | Date;
2953
2954
  updatedAt: string | Date;
2954
- id: string;
2955
2955
  firstName: string;
2956
2956
  lastName: string;
2957
2957
  email: string;
@@ -2961,22 +2961,22 @@ export declare const collaborationsContractRouter: {
2961
2961
  } | null | undefined;
2962
2962
  }>>>;
2963
2963
  }, "strip", z.ZodTypeAny, {
2964
+ id: string;
2965
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2964
2966
  createdAt: string;
2965
2967
  updatedAt: string;
2966
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2967
- id: string;
2968
2968
  userId: string;
2969
2969
  company?: {
2970
+ id: string;
2970
2971
  createdAt: string;
2971
2972
  updatedAt: string;
2972
- id: string;
2973
2973
  name: string;
2974
2974
  } | null | undefined;
2975
2975
  client?: {
2976
+ id: string;
2977
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2976
2978
  createdAt: string;
2977
2979
  updatedAt: string;
2978
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2979
- id: string;
2980
2980
  name: string;
2981
2981
  crn: string | null;
2982
2982
  govLink: string;
@@ -2994,9 +2994,9 @@ export declare const collaborationsContractRouter: {
2994
2994
  } | null | undefined;
2995
2995
  } | null | undefined;
2996
2996
  user?: {
2997
+ id: string;
2997
2998
  createdAt: string;
2998
2999
  updatedAt: string;
2999
- id: string;
3000
3000
  firstName: string;
3001
3001
  lastName: string;
3002
3002
  email: string;
@@ -3005,22 +3005,22 @@ export declare const collaborationsContractRouter: {
3005
3005
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
3006
3006
  } | null | undefined;
3007
3007
  newCollaboration?: {
3008
+ id: string;
3009
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3008
3010
  createdAt: string;
3009
3011
  updatedAt: string;
3010
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3011
- id: string;
3012
3012
  userId: string;
3013
3013
  company?: {
3014
+ id: string;
3014
3015
  createdAt: string;
3015
3016
  updatedAt: string;
3016
- id: string;
3017
3017
  name: string;
3018
3018
  } | null | undefined;
3019
3019
  client?: {
3020
+ id: string;
3021
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3020
3022
  createdAt: string;
3021
3023
  updatedAt: string;
3022
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3023
- id: string;
3024
3024
  name: string;
3025
3025
  crn: string | null;
3026
3026
  govLink: string;
@@ -3038,9 +3038,9 @@ export declare const collaborationsContractRouter: {
3038
3038
  } | null | undefined;
3039
3039
  } | null | undefined;
3040
3040
  user?: {
3041
+ id: string;
3041
3042
  createdAt: string;
3042
3043
  updatedAt: string;
3043
- id: string;
3044
3044
  firstName: string;
3045
3045
  lastName: string;
3046
3046
  email: string;
@@ -3050,22 +3050,22 @@ export declare const collaborationsContractRouter: {
3050
3050
  } | null | undefined;
3051
3051
  } | null | undefined;
3052
3052
  }, {
3053
+ id: string;
3054
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3053
3055
  createdAt: string | Date;
3054
3056
  updatedAt: string | Date;
3055
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3056
- id: string;
3057
3057
  userId: string;
3058
3058
  company?: {
3059
+ id: string;
3059
3060
  createdAt: string | Date;
3060
3061
  updatedAt: string | Date;
3061
- id: string;
3062
3062
  name: string;
3063
3063
  } | null | undefined;
3064
3064
  client?: {
3065
+ id: string;
3066
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3065
3067
  createdAt: string | Date;
3066
3068
  updatedAt: string | Date;
3067
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3068
- id: string;
3069
3069
  name: string;
3070
3070
  crn: string | null;
3071
3071
  govLink: string;
@@ -3083,9 +3083,9 @@ export declare const collaborationsContractRouter: {
3083
3083
  } | null | undefined;
3084
3084
  } | null | undefined;
3085
3085
  user?: {
3086
+ id: string;
3086
3087
  createdAt: string | Date;
3087
3088
  updatedAt: string | Date;
3088
- id: string;
3089
3089
  firstName: string;
3090
3090
  lastName: string;
3091
3091
  email: string;
@@ -3094,22 +3094,22 @@ export declare const collaborationsContractRouter: {
3094
3094
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
3095
3095
  } | null | undefined;
3096
3096
  newCollaboration?: {
3097
+ id: string;
3098
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3097
3099
  createdAt: string | Date;
3098
3100
  updatedAt: string | Date;
3099
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3100
- id: string;
3101
3101
  userId: string;
3102
3102
  company?: {
3103
+ id: string;
3103
3104
  createdAt: string | Date;
3104
3105
  updatedAt: string | Date;
3105
- id: string;
3106
3106
  name: string;
3107
3107
  } | null | undefined;
3108
3108
  client?: {
3109
+ id: string;
3110
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3109
3111
  createdAt: string | Date;
3110
3112
  updatedAt: string | Date;
3111
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3112
- id: string;
3113
3113
  name: string;
3114
3114
  crn: string | null;
3115
3115
  govLink: string;
@@ -3127,9 +3127,9 @@ export declare const collaborationsContractRouter: {
3127
3127
  } | null | undefined;
3128
3128
  } | null | undefined;
3129
3129
  user?: {
3130
+ id: string;
3130
3131
  createdAt: string | Date;
3131
3132
  updatedAt: string | Date;
3132
- id: string;
3133
3133
  firstName: string;
3134
3134
  lastName: string;
3135
3135
  email: string;
@@ -3147,22 +3147,22 @@ export declare const collaborationsContractRouter: {
3147
3147
  }, "strip", z.ZodTypeAny, {
3148
3148
  limit: number;
3149
3149
  items: {
3150
+ id: string;
3151
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3150
3152
  createdAt: string;
3151
3153
  updatedAt: string;
3152
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3153
- id: string;
3154
3154
  userId: string;
3155
3155
  company?: {
3156
+ id: string;
3156
3157
  createdAt: string;
3157
3158
  updatedAt: string;
3158
- id: string;
3159
3159
  name: string;
3160
3160
  } | null | undefined;
3161
3161
  client?: {
3162
+ id: string;
3163
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3162
3164
  createdAt: string;
3163
3165
  updatedAt: string;
3164
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3165
- id: string;
3166
3166
  name: string;
3167
3167
  crn: string | null;
3168
3168
  govLink: string;
@@ -3180,9 +3180,9 @@ export declare const collaborationsContractRouter: {
3180
3180
  } | null | undefined;
3181
3181
  } | null | undefined;
3182
3182
  user?: {
3183
+ id: string;
3183
3184
  createdAt: string;
3184
3185
  updatedAt: string;
3185
- id: string;
3186
3186
  firstName: string;
3187
3187
  lastName: string;
3188
3188
  email: string;
@@ -3191,22 +3191,22 @@ export declare const collaborationsContractRouter: {
3191
3191
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
3192
3192
  } | null | undefined;
3193
3193
  newCollaboration?: {
3194
+ id: string;
3195
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3194
3196
  createdAt: string;
3195
3197
  updatedAt: string;
3196
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3197
- id: string;
3198
3198
  userId: string;
3199
3199
  company?: {
3200
+ id: string;
3200
3201
  createdAt: string;
3201
3202
  updatedAt: string;
3202
- id: string;
3203
3203
  name: string;
3204
3204
  } | null | undefined;
3205
3205
  client?: {
3206
+ id: string;
3207
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3206
3208
  createdAt: string;
3207
3209
  updatedAt: string;
3208
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3209
- id: string;
3210
3210
  name: string;
3211
3211
  crn: string | null;
3212
3212
  govLink: string;
@@ -3224,9 +3224,9 @@ export declare const collaborationsContractRouter: {
3224
3224
  } | null | undefined;
3225
3225
  } | null | undefined;
3226
3226
  user?: {
3227
+ id: string;
3227
3228
  createdAt: string;
3228
3229
  updatedAt: string;
3229
- id: string;
3230
3230
  firstName: string;
3231
3231
  lastName: string;
3232
3232
  email: string;
@@ -3243,22 +3243,22 @@ export declare const collaborationsContractRouter: {
3243
3243
  }, {
3244
3244
  limit: number;
3245
3245
  items: {
3246
+ id: string;
3247
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3246
3248
  createdAt: string | Date;
3247
3249
  updatedAt: string | Date;
3248
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3249
- id: string;
3250
3250
  userId: string;
3251
3251
  company?: {
3252
+ id: string;
3252
3253
  createdAt: string | Date;
3253
3254
  updatedAt: string | Date;
3254
- id: string;
3255
3255
  name: string;
3256
3256
  } | null | undefined;
3257
3257
  client?: {
3258
+ id: string;
3259
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3258
3260
  createdAt: string | Date;
3259
3261
  updatedAt: string | Date;
3260
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3261
- id: string;
3262
3262
  name: string;
3263
3263
  crn: string | null;
3264
3264
  govLink: string;
@@ -3276,9 +3276,9 @@ export declare const collaborationsContractRouter: {
3276
3276
  } | null | undefined;
3277
3277
  } | null | undefined;
3278
3278
  user?: {
3279
+ id: string;
3279
3280
  createdAt: string | Date;
3280
3281
  updatedAt: string | Date;
3281
- id: string;
3282
3282
  firstName: string;
3283
3283
  lastName: string;
3284
3284
  email: string;
@@ -3287,22 +3287,22 @@ export declare const collaborationsContractRouter: {
3287
3287
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
3288
3288
  } | null | undefined;
3289
3289
  newCollaboration?: {
3290
+ id: string;
3291
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3290
3292
  createdAt: string | Date;
3291
3293
  updatedAt: string | Date;
3292
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3293
- id: string;
3294
3294
  userId: string;
3295
3295
  company?: {
3296
+ id: string;
3296
3297
  createdAt: string | Date;
3297
3298
  updatedAt: string | Date;
3298
- id: string;
3299
3299
  name: string;
3300
3300
  } | null | undefined;
3301
3301
  client?: {
3302
+ id: string;
3303
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3302
3304
  createdAt: string | Date;
3303
3305
  updatedAt: string | Date;
3304
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3305
- id: string;
3306
3306
  name: string;
3307
3307
  crn: string | null;
3308
3308
  govLink: string;
@@ -3320,9 +3320,9 @@ export declare const collaborationsContractRouter: {
3320
3320
  } | null | undefined;
3321
3321
  } | null | undefined;
3322
3322
  user?: {
3323
+ id: string;
3323
3324
  createdAt: string | Date;
3324
3325
  updatedAt: string | Date;
3325
- id: string;
3326
3326
  firstName: string;
3327
3327
  lastName: string;
3328
3328
  email: string;
@@ -3340,12 +3340,6 @@ export declare const collaborationsContractRouter: {
3340
3340
  };
3341
3341
  };
3342
3342
  autocomplete: {
3343
- metadata: {
3344
- tags: string[];
3345
- openApi: {
3346
- operationId: string;
3347
- };
3348
- };
3349
3343
  query: z.ZodObject<{
3350
3344
  query: z.ZodOptional<z.ZodString>;
3351
3345
  id: z.ZodOptional<z.ZodString>;
@@ -3356,6 +3350,12 @@ export declare const collaborationsContractRouter: {
3356
3350
  id?: string | undefined;
3357
3351
  query?: string | undefined;
3358
3352
  }>;
3353
+ metadata: {
3354
+ tags: string[];
3355
+ openApi: {
3356
+ operationId: string;
3357
+ };
3358
+ };
3359
3359
  summary: "Get collaborations for autocomplete";
3360
3360
  method: "GET";
3361
3361
  path: "/v2/collaborations/autocomplete";
@@ -3639,14 +3639,14 @@ export declare const collaborationsContractRouter: {
3639
3639
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3640
3640
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3641
3641
  }, "strip", z.ZodTypeAny, {
3642
+ id: string;
3642
3643
  createdAt: string;
3643
3644
  updatedAt: string;
3644
- id: string;
3645
3645
  name: string;
3646
3646
  }, {
3647
+ id: string;
3647
3648
  createdAt: string | Date;
3648
3649
  updatedAt: string | Date;
3649
- id: string;
3650
3650
  name: string;
3651
3651
  }>>>;
3652
3652
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -3684,10 +3684,10 @@ export declare const collaborationsContractRouter: {
3684
3684
  agentId: string;
3685
3685
  }>>>;
3686
3686
  }, "strip", z.ZodTypeAny, {
3687
+ id: string;
3688
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3687
3689
  createdAt: string;
3688
3690
  updatedAt: string;
3689
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3690
- id: string;
3691
3691
  name: string;
3692
3692
  crn: string | null;
3693
3693
  govLink: string;
@@ -3704,10 +3704,10 @@ export declare const collaborationsContractRouter: {
3704
3704
  agentId: string;
3705
3705
  } | null | undefined;
3706
3706
  }, {
3707
+ id: string;
3708
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3707
3709
  createdAt: string | Date;
3708
3710
  updatedAt: string | Date;
3709
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3710
- id: string;
3711
3711
  name: string;
3712
3712
  crn: string | null;
3713
3713
  govLink: string;
@@ -3735,9 +3735,9 @@ export declare const collaborationsContractRouter: {
3735
3735
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3736
3736
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3737
3737
  }, "strip", z.ZodTypeAny, {
3738
+ id: string;
3738
3739
  createdAt: string;
3739
3740
  updatedAt: string;
3740
- id: string;
3741
3741
  firstName: string;
3742
3742
  lastName: string;
3743
3743
  email: string;
@@ -3745,9 +3745,9 @@ export declare const collaborationsContractRouter: {
3745
3745
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
3746
3746
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
3747
3747
  }, {
3748
+ id: string;
3748
3749
  createdAt: string | Date;
3749
3750
  updatedAt: string | Date;
3750
- id: string;
3751
3751
  firstName: string;
3752
3752
  lastName: string;
3753
3753
  email: string;
@@ -3768,14 +3768,14 @@ export declare const collaborationsContractRouter: {
3768
3768
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3769
3769
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3770
3770
  }, "strip", z.ZodTypeAny, {
3771
+ id: string;
3771
3772
  createdAt: string;
3772
3773
  updatedAt: string;
3773
- id: string;
3774
3774
  name: string;
3775
3775
  }, {
3776
+ id: string;
3776
3777
  createdAt: string | Date;
3777
3778
  updatedAt: string | Date;
3778
- id: string;
3779
3779
  name: string;
3780
3780
  }>>>;
3781
3781
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -3813,10 +3813,10 @@ export declare const collaborationsContractRouter: {
3813
3813
  agentId: string;
3814
3814
  }>>>;
3815
3815
  }, "strip", z.ZodTypeAny, {
3816
+ id: string;
3817
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3816
3818
  createdAt: string;
3817
3819
  updatedAt: string;
3818
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3819
- id: string;
3820
3820
  name: string;
3821
3821
  crn: string | null;
3822
3822
  govLink: string;
@@ -3833,10 +3833,10 @@ export declare const collaborationsContractRouter: {
3833
3833
  agentId: string;
3834
3834
  } | null | undefined;
3835
3835
  }, {
3836
+ id: string;
3837
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3836
3838
  createdAt: string | Date;
3837
3839
  updatedAt: string | Date;
3838
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3839
- id: string;
3840
3840
  name: string;
3841
3841
  crn: string | null;
3842
3842
  govLink: string;
@@ -3864,9 +3864,9 @@ export declare const collaborationsContractRouter: {
3864
3864
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3865
3865
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3866
3866
  }, "strip", z.ZodTypeAny, {
3867
+ id: string;
3867
3868
  createdAt: string;
3868
3869
  updatedAt: string;
3869
- id: string;
3870
3870
  firstName: string;
3871
3871
  lastName: string;
3872
3872
  email: string;
@@ -3874,9 +3874,9 @@ export declare const collaborationsContractRouter: {
3874
3874
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
3875
3875
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
3876
3876
  }, {
3877
+ id: string;
3877
3878
  createdAt: string | Date;
3878
3879
  updatedAt: string | Date;
3879
- id: string;
3880
3880
  firstName: string;
3881
3881
  lastName: string;
3882
3882
  email: string;
@@ -3889,22 +3889,22 @@ export declare const collaborationsContractRouter: {
3889
3889
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3890
3890
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3891
3891
  }, "strip", z.ZodTypeAny, {
3892
+ id: string;
3893
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3892
3894
  createdAt: string;
3893
3895
  updatedAt: string;
3894
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3895
- id: string;
3896
3896
  userId: string;
3897
3897
  company?: {
3898
+ id: string;
3898
3899
  createdAt: string;
3899
3900
  updatedAt: string;
3900
- id: string;
3901
3901
  name: string;
3902
3902
  } | null | undefined;
3903
3903
  client?: {
3904
+ id: string;
3905
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3904
3906
  createdAt: string;
3905
3907
  updatedAt: string;
3906
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3907
- id: string;
3908
3908
  name: string;
3909
3909
  crn: string | null;
3910
3910
  govLink: string;
@@ -3922,9 +3922,9 @@ export declare const collaborationsContractRouter: {
3922
3922
  } | null | undefined;
3923
3923
  } | null | undefined;
3924
3924
  user?: {
3925
+ id: string;
3925
3926
  createdAt: string;
3926
3927
  updatedAt: string;
3927
- id: string;
3928
3928
  firstName: string;
3929
3929
  lastName: string;
3930
3930
  email: string;
@@ -3933,22 +3933,22 @@ export declare const collaborationsContractRouter: {
3933
3933
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
3934
3934
  } | null | undefined;
3935
3935
  }, {
3936
+ id: string;
3937
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3936
3938
  createdAt: string | Date;
3937
3939
  updatedAt: string | Date;
3938
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3939
- id: string;
3940
3940
  userId: string;
3941
3941
  company?: {
3942
+ id: string;
3942
3943
  createdAt: string | Date;
3943
3944
  updatedAt: string | Date;
3944
- id: string;
3945
3945
  name: string;
3946
3946
  } | null | undefined;
3947
3947
  client?: {
3948
+ id: string;
3949
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3948
3950
  createdAt: string | Date;
3949
3951
  updatedAt: string | Date;
3950
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3951
- id: string;
3952
3952
  name: string;
3953
3953
  crn: string | null;
3954
3954
  govLink: string;
@@ -3966,9 +3966,9 @@ export declare const collaborationsContractRouter: {
3966
3966
  } | null | undefined;
3967
3967
  } | null | undefined;
3968
3968
  user?: {
3969
+ id: string;
3969
3970
  createdAt: string | Date;
3970
3971
  updatedAt: string | Date;
3971
- id: string;
3972
3972
  firstName: string;
3973
3973
  lastName: string;
3974
3974
  email: string;
@@ -3978,22 +3978,22 @@ export declare const collaborationsContractRouter: {
3978
3978
  } | null | undefined;
3979
3979
  }>>>;
3980
3980
  }, "strip", z.ZodTypeAny, {
3981
+ id: string;
3982
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3981
3983
  createdAt: string;
3982
3984
  updatedAt: string;
3983
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3984
- id: string;
3985
3985
  userId: string;
3986
3986
  company?: {
3987
+ id: string;
3987
3988
  createdAt: string;
3988
3989
  updatedAt: string;
3989
- id: string;
3990
3990
  name: string;
3991
3991
  } | null | undefined;
3992
3992
  client?: {
3993
+ id: string;
3994
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3993
3995
  createdAt: string;
3994
3996
  updatedAt: string;
3995
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3996
- id: string;
3997
3997
  name: string;
3998
3998
  crn: string | null;
3999
3999
  govLink: string;
@@ -4011,9 +4011,9 @@ export declare const collaborationsContractRouter: {
4011
4011
  } | null | undefined;
4012
4012
  } | null | undefined;
4013
4013
  user?: {
4014
+ id: string;
4014
4015
  createdAt: string;
4015
4016
  updatedAt: string;
4016
- id: string;
4017
4017
  firstName: string;
4018
4018
  lastName: string;
4019
4019
  email: string;
@@ -4022,22 +4022,22 @@ export declare const collaborationsContractRouter: {
4022
4022
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
4023
4023
  } | null | undefined;
4024
4024
  newCollaboration?: {
4025
+ id: string;
4026
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4025
4027
  createdAt: string;
4026
4028
  updatedAt: string;
4027
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4028
- id: string;
4029
4029
  userId: string;
4030
4030
  company?: {
4031
+ id: string;
4031
4032
  createdAt: string;
4032
4033
  updatedAt: string;
4033
- id: string;
4034
4034
  name: string;
4035
4035
  } | null | undefined;
4036
4036
  client?: {
4037
+ id: string;
4038
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4037
4039
  createdAt: string;
4038
4040
  updatedAt: string;
4039
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4040
- id: string;
4041
4041
  name: string;
4042
4042
  crn: string | null;
4043
4043
  govLink: string;
@@ -4055,9 +4055,9 @@ export declare const collaborationsContractRouter: {
4055
4055
  } | null | undefined;
4056
4056
  } | null | undefined;
4057
4057
  user?: {
4058
+ id: string;
4058
4059
  createdAt: string;
4059
4060
  updatedAt: string;
4060
- id: string;
4061
4061
  firstName: string;
4062
4062
  lastName: string;
4063
4063
  email: string;
@@ -4067,22 +4067,22 @@ export declare const collaborationsContractRouter: {
4067
4067
  } | null | undefined;
4068
4068
  } | null | undefined;
4069
4069
  }, {
4070
+ id: string;
4071
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4070
4072
  createdAt: string | Date;
4071
4073
  updatedAt: string | Date;
4072
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4073
- id: string;
4074
4074
  userId: string;
4075
4075
  company?: {
4076
+ id: string;
4076
4077
  createdAt: string | Date;
4077
4078
  updatedAt: string | Date;
4078
- id: string;
4079
4079
  name: string;
4080
4080
  } | null | undefined;
4081
4081
  client?: {
4082
+ id: string;
4083
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4082
4084
  createdAt: string | Date;
4083
4085
  updatedAt: string | Date;
4084
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4085
- id: string;
4086
4086
  name: string;
4087
4087
  crn: string | null;
4088
4088
  govLink: string;
@@ -4100,9 +4100,9 @@ export declare const collaborationsContractRouter: {
4100
4100
  } | null | undefined;
4101
4101
  } | null | undefined;
4102
4102
  user?: {
4103
+ id: string;
4103
4104
  createdAt: string | Date;
4104
4105
  updatedAt: string | Date;
4105
- id: string;
4106
4106
  firstName: string;
4107
4107
  lastName: string;
4108
4108
  email: string;
@@ -4111,22 +4111,22 @@ export declare const collaborationsContractRouter: {
4111
4111
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
4112
4112
  } | null | undefined;
4113
4113
  newCollaboration?: {
4114
+ id: string;
4115
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4114
4116
  createdAt: string | Date;
4115
4117
  updatedAt: string | Date;
4116
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4117
- id: string;
4118
4118
  userId: string;
4119
4119
  company?: {
4120
+ id: string;
4120
4121
  createdAt: string | Date;
4121
4122
  updatedAt: string | Date;
4122
- id: string;
4123
4123
  name: string;
4124
4124
  } | null | undefined;
4125
4125
  client?: {
4126
+ id: string;
4127
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4126
4128
  createdAt: string | Date;
4127
4129
  updatedAt: string | Date;
4128
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4129
- id: string;
4130
4130
  name: string;
4131
4131
  crn: string | null;
4132
4132
  govLink: string;
@@ -4144,9 +4144,9 @@ export declare const collaborationsContractRouter: {
4144
4144
  } | null | undefined;
4145
4145
  } | null | undefined;
4146
4146
  user?: {
4147
+ id: string;
4147
4148
  createdAt: string | Date;
4148
4149
  updatedAt: string | Date;
4149
- id: string;
4150
4150
  firstName: string;
4151
4151
  lastName: string;
4152
4152
  email: string;
@@ -4216,7 +4216,7 @@ export declare const collaborationsContractRouter: {
4216
4216
  }>>;
4217
4217
  status: z.ZodOptional<z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>>;
4218
4218
  }, "strip", z.ZodTypeAny, {
4219
- status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
4219
+ status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
4220
4220
  company?: {
4221
4221
  id: string;
4222
4222
  } | undefined;
@@ -4224,7 +4224,7 @@ export declare const collaborationsContractRouter: {
4224
4224
  id: string;
4225
4225
  } | undefined;
4226
4226
  }, {
4227
- status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
4227
+ status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
4228
4228
  company?: {
4229
4229
  id: string;
4230
4230
  } | undefined;
@@ -4342,14 +4342,14 @@ export declare const collaborationsContractRouter: {
4342
4342
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4343
4343
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4344
4344
  }, "strip", z.ZodTypeAny, {
4345
+ id: string;
4345
4346
  createdAt: string;
4346
4347
  updatedAt: string;
4347
- id: string;
4348
4348
  name: string;
4349
4349
  }, {
4350
+ id: string;
4350
4351
  createdAt: string | Date;
4351
4352
  updatedAt: string | Date;
4352
- id: string;
4353
4353
  name: string;
4354
4354
  }>>>;
4355
4355
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -4387,10 +4387,10 @@ export declare const collaborationsContractRouter: {
4387
4387
  agentId: string;
4388
4388
  }>>>;
4389
4389
  }, "strip", z.ZodTypeAny, {
4390
+ id: string;
4391
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4390
4392
  createdAt: string;
4391
4393
  updatedAt: string;
4392
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4393
- id: string;
4394
4394
  name: string;
4395
4395
  crn: string | null;
4396
4396
  govLink: string;
@@ -4407,10 +4407,10 @@ export declare const collaborationsContractRouter: {
4407
4407
  agentId: string;
4408
4408
  } | null | undefined;
4409
4409
  }, {
4410
+ id: string;
4411
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4410
4412
  createdAt: string | Date;
4411
4413
  updatedAt: string | Date;
4412
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4413
- id: string;
4414
4414
  name: string;
4415
4415
  crn: string | null;
4416
4416
  govLink: string;
@@ -4438,9 +4438,9 @@ export declare const collaborationsContractRouter: {
4438
4438
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4439
4439
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4440
4440
  }, "strip", z.ZodTypeAny, {
4441
+ id: string;
4441
4442
  createdAt: string;
4442
4443
  updatedAt: string;
4443
- id: string;
4444
4444
  firstName: string;
4445
4445
  lastName: string;
4446
4446
  email: string;
@@ -4448,9 +4448,9 @@ export declare const collaborationsContractRouter: {
4448
4448
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
4449
4449
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
4450
4450
  }, {
4451
+ id: string;
4451
4452
  createdAt: string | Date;
4452
4453
  updatedAt: string | Date;
4453
- id: string;
4454
4454
  firstName: string;
4455
4455
  lastName: string;
4456
4456
  email: string;
@@ -4471,14 +4471,14 @@ export declare const collaborationsContractRouter: {
4471
4471
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4472
4472
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4473
4473
  }, "strip", z.ZodTypeAny, {
4474
+ id: string;
4474
4475
  createdAt: string;
4475
4476
  updatedAt: string;
4476
- id: string;
4477
4477
  name: string;
4478
4478
  }, {
4479
+ id: string;
4479
4480
  createdAt: string | Date;
4480
4481
  updatedAt: string | Date;
4481
- id: string;
4482
4482
  name: string;
4483
4483
  }>>>;
4484
4484
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -4516,10 +4516,10 @@ export declare const collaborationsContractRouter: {
4516
4516
  agentId: string;
4517
4517
  }>>>;
4518
4518
  }, "strip", z.ZodTypeAny, {
4519
+ id: string;
4520
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4519
4521
  createdAt: string;
4520
4522
  updatedAt: string;
4521
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4522
- id: string;
4523
4523
  name: string;
4524
4524
  crn: string | null;
4525
4525
  govLink: string;
@@ -4536,10 +4536,10 @@ export declare const collaborationsContractRouter: {
4536
4536
  agentId: string;
4537
4537
  } | null | undefined;
4538
4538
  }, {
4539
+ id: string;
4540
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4539
4541
  createdAt: string | Date;
4540
4542
  updatedAt: string | Date;
4541
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4542
- id: string;
4543
4543
  name: string;
4544
4544
  crn: string | null;
4545
4545
  govLink: string;
@@ -4567,9 +4567,9 @@ export declare const collaborationsContractRouter: {
4567
4567
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4568
4568
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4569
4569
  }, "strip", z.ZodTypeAny, {
4570
+ id: string;
4570
4571
  createdAt: string;
4571
4572
  updatedAt: string;
4572
- id: string;
4573
4573
  firstName: string;
4574
4574
  lastName: string;
4575
4575
  email: string;
@@ -4577,9 +4577,9 @@ export declare const collaborationsContractRouter: {
4577
4577
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
4578
4578
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
4579
4579
  }, {
4580
+ id: string;
4580
4581
  createdAt: string | Date;
4581
4582
  updatedAt: string | Date;
4582
- id: string;
4583
4583
  firstName: string;
4584
4584
  lastName: string;
4585
4585
  email: string;
@@ -4592,22 +4592,22 @@ export declare const collaborationsContractRouter: {
4592
4592
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4593
4593
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4594
4594
  }, "strip", z.ZodTypeAny, {
4595
+ id: string;
4596
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4595
4597
  createdAt: string;
4596
4598
  updatedAt: string;
4597
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4598
- id: string;
4599
4599
  userId: string;
4600
4600
  company?: {
4601
+ id: string;
4601
4602
  createdAt: string;
4602
4603
  updatedAt: string;
4603
- id: string;
4604
4604
  name: string;
4605
4605
  } | null | undefined;
4606
4606
  client?: {
4607
+ id: string;
4608
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4607
4609
  createdAt: string;
4608
4610
  updatedAt: string;
4609
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4610
- id: string;
4611
4611
  name: string;
4612
4612
  crn: string | null;
4613
4613
  govLink: string;
@@ -4625,9 +4625,9 @@ export declare const collaborationsContractRouter: {
4625
4625
  } | null | undefined;
4626
4626
  } | null | undefined;
4627
4627
  user?: {
4628
+ id: string;
4628
4629
  createdAt: string;
4629
4630
  updatedAt: string;
4630
- id: string;
4631
4631
  firstName: string;
4632
4632
  lastName: string;
4633
4633
  email: string;
@@ -4636,22 +4636,22 @@ export declare const collaborationsContractRouter: {
4636
4636
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
4637
4637
  } | null | undefined;
4638
4638
  }, {
4639
+ id: string;
4640
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4639
4641
  createdAt: string | Date;
4640
4642
  updatedAt: string | Date;
4641
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4642
- id: string;
4643
4643
  userId: string;
4644
4644
  company?: {
4645
+ id: string;
4645
4646
  createdAt: string | Date;
4646
4647
  updatedAt: string | Date;
4647
- id: string;
4648
4648
  name: string;
4649
4649
  } | null | undefined;
4650
4650
  client?: {
4651
+ id: string;
4652
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4651
4653
  createdAt: string | Date;
4652
4654
  updatedAt: string | Date;
4653
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4654
- id: string;
4655
4655
  name: string;
4656
4656
  crn: string | null;
4657
4657
  govLink: string;
@@ -4669,9 +4669,9 @@ export declare const collaborationsContractRouter: {
4669
4669
  } | null | undefined;
4670
4670
  } | null | undefined;
4671
4671
  user?: {
4672
+ id: string;
4672
4673
  createdAt: string | Date;
4673
4674
  updatedAt: string | Date;
4674
- id: string;
4675
4675
  firstName: string;
4676
4676
  lastName: string;
4677
4677
  email: string;
@@ -4681,22 +4681,22 @@ export declare const collaborationsContractRouter: {
4681
4681
  } | null | undefined;
4682
4682
  }>>>;
4683
4683
  }, "strip", z.ZodTypeAny, {
4684
+ id: string;
4685
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4684
4686
  createdAt: string;
4685
4687
  updatedAt: string;
4686
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4687
- id: string;
4688
4688
  userId: string;
4689
4689
  company?: {
4690
+ id: string;
4690
4691
  createdAt: string;
4691
4692
  updatedAt: string;
4692
- id: string;
4693
4693
  name: string;
4694
4694
  } | null | undefined;
4695
4695
  client?: {
4696
+ id: string;
4697
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4696
4698
  createdAt: string;
4697
4699
  updatedAt: string;
4698
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4699
- id: string;
4700
4700
  name: string;
4701
4701
  crn: string | null;
4702
4702
  govLink: string;
@@ -4714,9 +4714,9 @@ export declare const collaborationsContractRouter: {
4714
4714
  } | null | undefined;
4715
4715
  } | null | undefined;
4716
4716
  user?: {
4717
+ id: string;
4717
4718
  createdAt: string;
4718
4719
  updatedAt: string;
4719
- id: string;
4720
4720
  firstName: string;
4721
4721
  lastName: string;
4722
4722
  email: string;
@@ -4725,22 +4725,22 @@ export declare const collaborationsContractRouter: {
4725
4725
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
4726
4726
  } | null | undefined;
4727
4727
  newCollaboration?: {
4728
+ id: string;
4729
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4728
4730
  createdAt: string;
4729
4731
  updatedAt: string;
4730
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4731
- id: string;
4732
4732
  userId: string;
4733
4733
  company?: {
4734
+ id: string;
4734
4735
  createdAt: string;
4735
4736
  updatedAt: string;
4736
- id: string;
4737
4737
  name: string;
4738
4738
  } | null | undefined;
4739
4739
  client?: {
4740
+ id: string;
4741
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4740
4742
  createdAt: string;
4741
4743
  updatedAt: string;
4742
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4743
- id: string;
4744
4744
  name: string;
4745
4745
  crn: string | null;
4746
4746
  govLink: string;
@@ -4758,9 +4758,9 @@ export declare const collaborationsContractRouter: {
4758
4758
  } | null | undefined;
4759
4759
  } | null | undefined;
4760
4760
  user?: {
4761
+ id: string;
4761
4762
  createdAt: string;
4762
4763
  updatedAt: string;
4763
- id: string;
4764
4764
  firstName: string;
4765
4765
  lastName: string;
4766
4766
  email: string;
@@ -4770,22 +4770,22 @@ export declare const collaborationsContractRouter: {
4770
4770
  } | null | undefined;
4771
4771
  } | null | undefined;
4772
4772
  }, {
4773
+ id: string;
4774
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4773
4775
  createdAt: string | Date;
4774
4776
  updatedAt: string | Date;
4775
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4776
- id: string;
4777
4777
  userId: string;
4778
4778
  company?: {
4779
+ id: string;
4779
4780
  createdAt: string | Date;
4780
4781
  updatedAt: string | Date;
4781
- id: string;
4782
4782
  name: string;
4783
4783
  } | null | undefined;
4784
4784
  client?: {
4785
+ id: string;
4786
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4785
4787
  createdAt: string | Date;
4786
4788
  updatedAt: string | Date;
4787
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4788
- id: string;
4789
4789
  name: string;
4790
4790
  crn: string | null;
4791
4791
  govLink: string;
@@ -4803,9 +4803,9 @@ export declare const collaborationsContractRouter: {
4803
4803
  } | null | undefined;
4804
4804
  } | null | undefined;
4805
4805
  user?: {
4806
+ id: string;
4806
4807
  createdAt: string | Date;
4807
4808
  updatedAt: string | Date;
4808
- id: string;
4809
4809
  firstName: string;
4810
4810
  lastName: string;
4811
4811
  email: string;
@@ -4814,22 +4814,22 @@ export declare const collaborationsContractRouter: {
4814
4814
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
4815
4815
  } | null | undefined;
4816
4816
  newCollaboration?: {
4817
+ id: string;
4818
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4817
4819
  createdAt: string | Date;
4818
4820
  updatedAt: string | Date;
4819
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4820
- id: string;
4821
4821
  userId: string;
4822
4822
  company?: {
4823
+ id: string;
4823
4824
  createdAt: string | Date;
4824
4825
  updatedAt: string | Date;
4825
- id: string;
4826
4826
  name: string;
4827
4827
  } | null | undefined;
4828
4828
  client?: {
4829
+ id: string;
4830
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4829
4831
  createdAt: string | Date;
4830
4832
  updatedAt: string | Date;
4831
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4832
- id: string;
4833
4833
  name: string;
4834
4834
  crn: string | null;
4835
4835
  govLink: string;
@@ -4847,9 +4847,9 @@ export declare const collaborationsContractRouter: {
4847
4847
  } | null | undefined;
4848
4848
  } | null | undefined;
4849
4849
  user?: {
4850
+ id: string;
4850
4851
  createdAt: string | Date;
4851
4852
  updatedAt: string | Date;
4852
- id: string;
4853
4853
  firstName: string;
4854
4854
  lastName: string;
4855
4855
  email: string;
@@ -5097,7 +5097,7 @@ export declare const collaborationsContractRouter: {
5097
5097
  client: {
5098
5098
  id: string;
5099
5099
  };
5100
- status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
5100
+ status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
5101
5101
  user?: {
5102
5102
  id: string;
5103
5103
  } | undefined;
@@ -5108,7 +5108,7 @@ export declare const collaborationsContractRouter: {
5108
5108
  client: {
5109
5109
  id: string;
5110
5110
  };
5111
- status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
5111
+ status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
5112
5112
  user?: {
5113
5113
  id: string;
5114
5114
  } | undefined;
@@ -5223,14 +5223,14 @@ export declare const collaborationsContractRouter: {
5223
5223
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
5224
5224
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
5225
5225
  }, "strip", z.ZodTypeAny, {
5226
+ id: string;
5226
5227
  createdAt: string;
5227
5228
  updatedAt: string;
5228
- id: string;
5229
5229
  name: string;
5230
5230
  }, {
5231
+ id: string;
5231
5232
  createdAt: string | Date;
5232
5233
  updatedAt: string | Date;
5233
- id: string;
5234
5234
  name: string;
5235
5235
  }>>>;
5236
5236
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -5268,10 +5268,10 @@ export declare const collaborationsContractRouter: {
5268
5268
  agentId: string;
5269
5269
  }>>>;
5270
5270
  }, "strip", z.ZodTypeAny, {
5271
+ id: string;
5272
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5271
5273
  createdAt: string;
5272
5274
  updatedAt: string;
5273
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
5274
- id: string;
5275
5275
  name: string;
5276
5276
  crn: string | null;
5277
5277
  govLink: string;
@@ -5288,10 +5288,10 @@ export declare const collaborationsContractRouter: {
5288
5288
  agentId: string;
5289
5289
  } | null | undefined;
5290
5290
  }, {
5291
+ id: string;
5292
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5291
5293
  createdAt: string | Date;
5292
5294
  updatedAt: string | Date;
5293
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
5294
- id: string;
5295
5295
  name: string;
5296
5296
  crn: string | null;
5297
5297
  govLink: string;
@@ -5319,9 +5319,9 @@ export declare const collaborationsContractRouter: {
5319
5319
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
5320
5320
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
5321
5321
  }, "strip", z.ZodTypeAny, {
5322
+ id: string;
5322
5323
  createdAt: string;
5323
5324
  updatedAt: string;
5324
- id: string;
5325
5325
  firstName: string;
5326
5326
  lastName: string;
5327
5327
  email: string;
@@ -5329,9 +5329,9 @@ export declare const collaborationsContractRouter: {
5329
5329
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
5330
5330
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
5331
5331
  }, {
5332
+ id: string;
5332
5333
  createdAt: string | Date;
5333
5334
  updatedAt: string | Date;
5334
- id: string;
5335
5335
  firstName: string;
5336
5336
  lastName: string;
5337
5337
  email: string;
@@ -5352,14 +5352,14 @@ export declare const collaborationsContractRouter: {
5352
5352
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
5353
5353
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
5354
5354
  }, "strip", z.ZodTypeAny, {
5355
+ id: string;
5355
5356
  createdAt: string;
5356
5357
  updatedAt: string;
5357
- id: string;
5358
5358
  name: string;
5359
5359
  }, {
5360
+ id: string;
5360
5361
  createdAt: string | Date;
5361
5362
  updatedAt: string | Date;
5362
- id: string;
5363
5363
  name: string;
5364
5364
  }>>>;
5365
5365
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -5397,10 +5397,10 @@ export declare const collaborationsContractRouter: {
5397
5397
  agentId: string;
5398
5398
  }>>>;
5399
5399
  }, "strip", z.ZodTypeAny, {
5400
+ id: string;
5401
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5400
5402
  createdAt: string;
5401
5403
  updatedAt: string;
5402
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
5403
- id: string;
5404
5404
  name: string;
5405
5405
  crn: string | null;
5406
5406
  govLink: string;
@@ -5417,10 +5417,10 @@ export declare const collaborationsContractRouter: {
5417
5417
  agentId: string;
5418
5418
  } | null | undefined;
5419
5419
  }, {
5420
+ id: string;
5421
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5420
5422
  createdAt: string | Date;
5421
5423
  updatedAt: string | Date;
5422
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
5423
- id: string;
5424
5424
  name: string;
5425
5425
  crn: string | null;
5426
5426
  govLink: string;
@@ -5448,9 +5448,9 @@ export declare const collaborationsContractRouter: {
5448
5448
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
5449
5449
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
5450
5450
  }, "strip", z.ZodTypeAny, {
5451
+ id: string;
5451
5452
  createdAt: string;
5452
5453
  updatedAt: string;
5453
- id: string;
5454
5454
  firstName: string;
5455
5455
  lastName: string;
5456
5456
  email: string;
@@ -5458,9 +5458,9 @@ export declare const collaborationsContractRouter: {
5458
5458
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
5459
5459
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
5460
5460
  }, {
5461
+ id: string;
5461
5462
  createdAt: string | Date;
5462
5463
  updatedAt: string | Date;
5463
- id: string;
5464
5464
  firstName: string;
5465
5465
  lastName: string;
5466
5466
  email: string;
@@ -5473,22 +5473,22 @@ export declare const collaborationsContractRouter: {
5473
5473
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
5474
5474
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
5475
5475
  }, "strip", z.ZodTypeAny, {
5476
+ id: string;
5477
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5476
5478
  createdAt: string;
5477
5479
  updatedAt: string;
5478
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5479
- id: string;
5480
5480
  userId: string;
5481
5481
  company?: {
5482
+ id: string;
5482
5483
  createdAt: string;
5483
5484
  updatedAt: string;
5484
- id: string;
5485
5485
  name: string;
5486
5486
  } | null | undefined;
5487
5487
  client?: {
5488
+ id: string;
5489
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5488
5490
  createdAt: string;
5489
5491
  updatedAt: string;
5490
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
5491
- id: string;
5492
5492
  name: string;
5493
5493
  crn: string | null;
5494
5494
  govLink: string;
@@ -5506,9 +5506,9 @@ export declare const collaborationsContractRouter: {
5506
5506
  } | null | undefined;
5507
5507
  } | null | undefined;
5508
5508
  user?: {
5509
+ id: string;
5509
5510
  createdAt: string;
5510
5511
  updatedAt: string;
5511
- id: string;
5512
5512
  firstName: string;
5513
5513
  lastName: string;
5514
5514
  email: string;
@@ -5517,22 +5517,22 @@ export declare const collaborationsContractRouter: {
5517
5517
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
5518
5518
  } | null | undefined;
5519
5519
  }, {
5520
+ id: string;
5521
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5520
5522
  createdAt: string | Date;
5521
5523
  updatedAt: string | Date;
5522
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5523
- id: string;
5524
5524
  userId: string;
5525
5525
  company?: {
5526
+ id: string;
5526
5527
  createdAt: string | Date;
5527
5528
  updatedAt: string | Date;
5528
- id: string;
5529
5529
  name: string;
5530
5530
  } | null | undefined;
5531
5531
  client?: {
5532
+ id: string;
5533
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5532
5534
  createdAt: string | Date;
5533
5535
  updatedAt: string | Date;
5534
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
5535
- id: string;
5536
5536
  name: string;
5537
5537
  crn: string | null;
5538
5538
  govLink: string;
@@ -5550,9 +5550,9 @@ export declare const collaborationsContractRouter: {
5550
5550
  } | null | undefined;
5551
5551
  } | null | undefined;
5552
5552
  user?: {
5553
+ id: string;
5553
5554
  createdAt: string | Date;
5554
5555
  updatedAt: string | Date;
5555
- id: string;
5556
5556
  firstName: string;
5557
5557
  lastName: string;
5558
5558
  email: string;
@@ -5562,22 +5562,22 @@ export declare const collaborationsContractRouter: {
5562
5562
  } | null | undefined;
5563
5563
  }>>>;
5564
5564
  }, "strip", z.ZodTypeAny, {
5565
+ id: string;
5566
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5565
5567
  createdAt: string;
5566
5568
  updatedAt: string;
5567
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5568
- id: string;
5569
5569
  userId: string;
5570
5570
  company?: {
5571
+ id: string;
5571
5572
  createdAt: string;
5572
5573
  updatedAt: string;
5573
- id: string;
5574
5574
  name: string;
5575
5575
  } | null | undefined;
5576
5576
  client?: {
5577
+ id: string;
5578
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5577
5579
  createdAt: string;
5578
5580
  updatedAt: string;
5579
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
5580
- id: string;
5581
5581
  name: string;
5582
5582
  crn: string | null;
5583
5583
  govLink: string;
@@ -5595,9 +5595,9 @@ export declare const collaborationsContractRouter: {
5595
5595
  } | null | undefined;
5596
5596
  } | null | undefined;
5597
5597
  user?: {
5598
+ id: string;
5598
5599
  createdAt: string;
5599
5600
  updatedAt: string;
5600
- id: string;
5601
5601
  firstName: string;
5602
5602
  lastName: string;
5603
5603
  email: string;
@@ -5606,22 +5606,22 @@ export declare const collaborationsContractRouter: {
5606
5606
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
5607
5607
  } | null | undefined;
5608
5608
  newCollaboration?: {
5609
+ id: string;
5610
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5609
5611
  createdAt: string;
5610
5612
  updatedAt: string;
5611
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5612
- id: string;
5613
5613
  userId: string;
5614
5614
  company?: {
5615
+ id: string;
5615
5616
  createdAt: string;
5616
5617
  updatedAt: string;
5617
- id: string;
5618
5618
  name: string;
5619
5619
  } | null | undefined;
5620
5620
  client?: {
5621
+ id: string;
5622
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5621
5623
  createdAt: string;
5622
5624
  updatedAt: string;
5623
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
5624
- id: string;
5625
5625
  name: string;
5626
5626
  crn: string | null;
5627
5627
  govLink: string;
@@ -5639,9 +5639,9 @@ export declare const collaborationsContractRouter: {
5639
5639
  } | null | undefined;
5640
5640
  } | null | undefined;
5641
5641
  user?: {
5642
+ id: string;
5642
5643
  createdAt: string;
5643
5644
  updatedAt: string;
5644
- id: string;
5645
5645
  firstName: string;
5646
5646
  lastName: string;
5647
5647
  email: string;
@@ -5651,22 +5651,22 @@ export declare const collaborationsContractRouter: {
5651
5651
  } | null | undefined;
5652
5652
  } | null | undefined;
5653
5653
  }, {
5654
+ id: string;
5655
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5654
5656
  createdAt: string | Date;
5655
5657
  updatedAt: string | Date;
5656
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5657
- id: string;
5658
5658
  userId: string;
5659
5659
  company?: {
5660
+ id: string;
5660
5661
  createdAt: string | Date;
5661
5662
  updatedAt: string | Date;
5662
- id: string;
5663
5663
  name: string;
5664
5664
  } | null | undefined;
5665
5665
  client?: {
5666
+ id: string;
5667
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5666
5668
  createdAt: string | Date;
5667
5669
  updatedAt: string | Date;
5668
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
5669
- id: string;
5670
5670
  name: string;
5671
5671
  crn: string | null;
5672
5672
  govLink: string;
@@ -5684,9 +5684,9 @@ export declare const collaborationsContractRouter: {
5684
5684
  } | null | undefined;
5685
5685
  } | null | undefined;
5686
5686
  user?: {
5687
+ id: string;
5687
5688
  createdAt: string | Date;
5688
5689
  updatedAt: string | Date;
5689
- id: string;
5690
5690
  firstName: string;
5691
5691
  lastName: string;
5692
5692
  email: string;
@@ -5695,22 +5695,22 @@ export declare const collaborationsContractRouter: {
5695
5695
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
5696
5696
  } | null | undefined;
5697
5697
  newCollaboration?: {
5698
+ id: string;
5699
+ status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5698
5700
  createdAt: string | Date;
5699
5701
  updatedAt: string | Date;
5700
- status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5701
- id: string;
5702
5702
  userId: string;
5703
5703
  company?: {
5704
+ id: string;
5704
5705
  createdAt: string | Date;
5705
5706
  updatedAt: string | Date;
5706
- id: string;
5707
5707
  name: string;
5708
5708
  } | null | undefined;
5709
5709
  client?: {
5710
+ id: string;
5711
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5710
5712
  createdAt: string | Date;
5711
5713
  updatedAt: string | Date;
5712
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
5713
- id: string;
5714
5714
  name: string;
5715
5715
  crn: string | null;
5716
5716
  govLink: string;
@@ -5728,9 +5728,9 @@ export declare const collaborationsContractRouter: {
5728
5728
  } | null | undefined;
5729
5729
  } | null | undefined;
5730
5730
  user?: {
5731
+ id: string;
5731
5732
  createdAt: string | Date;
5732
5733
  updatedAt: string | Date;
5733
- id: string;
5734
5734
  firstName: string;
5735
5735
  lastName: string;
5736
5736
  email: string;