@dakkitor/api-contracts 1.1.106 → 1.1.107

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 (27) hide show
  1. package/dist/actives/actives.contract.d.ts +7410 -5890
  2. package/dist/actives/actives.contract.d.ts.map +1 -1
  3. package/dist/agent-client-links/agent-client-links.contract.d.ts +472 -82
  4. package/dist/agent-client-links/agent-client-links.contract.d.ts.map +1 -1
  5. package/dist/auth/auth.contract.d.ts +115 -15
  6. package/dist/auth/auth.contract.d.ts.map +1 -1
  7. package/dist/bookings/bookings.contract.d.ts +27469 -21549
  8. package/dist/bookings/bookings.contract.d.ts.map +1 -1
  9. package/dist/call-history/call-history.contract.d.ts +404 -114
  10. package/dist/call-history/call-history.contract.d.ts.map +1 -1
  11. package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +904 -264
  12. package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts.map +1 -1
  13. package/dist/collaborations/collaborations.contract.d.ts +866 -231
  14. package/dist/collaborations/collaborations.contract.d.ts.map +1 -1
  15. package/dist/jobs/jobs.contract.d.ts +5066 -3966
  16. package/dist/jobs/jobs.contract.d.ts.map +1 -1
  17. package/dist/lead-assignments/lead-assignments.contract.d.ts +434 -114
  18. package/dist/lead-assignments/lead-assignments.contract.d.ts.map +1 -1
  19. package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +196 -36
  20. package/dist/lead-distribution/agent-lead-distribution.contract.d.ts.map +1 -1
  21. package/dist/leads/leads.contract.d.ts +56 -56
  22. package/dist/users/users.contract.d.ts +475 -51
  23. package/dist/users/users.contract.d.ts.map +1 -1
  24. package/dist/users/users.contract.js +45 -8
  25. package/dist/workers/workers.contract.d.ts +344 -114
  26. package/dist/workers/workers.contract.d.ts.map +1 -1
  27. package/package.json +1 -1
@@ -67,8 +67,8 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
67
67
  }>>>;
68
68
  }, "strip", z.ZodTypeAny, {
69
69
  createdAt: string;
70
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
71
70
  id: string;
71
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
72
72
  updatedAt: string;
73
73
  name: string;
74
74
  crn: string | null;
@@ -87,8 +87,8 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
87
87
  } | null | undefined;
88
88
  }, {
89
89
  createdAt: string | Date;
90
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
91
90
  id: string;
91
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
92
92
  updatedAt: string | Date;
93
93
  name: string;
94
94
  crn: string | null;
@@ -111,7 +111,22 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
111
111
  firstName: z.ZodString;
112
112
  lastName: z.ZodString;
113
113
  email: z.ZodString;
114
- phone: z.ZodString;
114
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
115
+ id: z.ZodString;
116
+ phoneNumber: z.ZodString;
117
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
118
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
119
+ }, "strip", z.ZodTypeAny, {
120
+ id: string;
121
+ phoneNumber: string;
122
+ isPrimary: boolean;
123
+ description?: string | null | undefined;
124
+ }, {
125
+ id: string;
126
+ phoneNumber: string;
127
+ description?: string | null | undefined;
128
+ isPrimary?: boolean | undefined;
129
+ }>, "many">>>;
115
130
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
116
131
  office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["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"]>>>;
117
132
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -120,9 +135,14 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
120
135
  lastName: string;
121
136
  firstName: string;
122
137
  email: string;
123
- phone: string;
124
138
  createdAt: string;
125
139
  id: string;
140
+ phoneNumbers: {
141
+ id: string;
142
+ phoneNumber: string;
143
+ isPrimary: boolean;
144
+ description?: string | null | undefined;
145
+ }[];
126
146
  updatedAt: string;
127
147
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
128
148
  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;
@@ -130,10 +150,15 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
130
150
  lastName: string;
131
151
  firstName: string;
132
152
  email: string;
133
- phone: string;
134
153
  createdAt: string | Date;
135
154
  id: string;
136
155
  updatedAt: string | Date;
156
+ phoneNumbers?: {
157
+ id: string;
158
+ phoneNumber: string;
159
+ description?: string | null | undefined;
160
+ isPrimary?: boolean | undefined;
161
+ }[] | undefined;
137
162
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
138
163
  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;
139
164
  }>>>;
@@ -143,8 +168,8 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
143
168
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
144
169
  }, "strip", z.ZodTypeAny, {
145
170
  createdAt: string;
146
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
147
171
  id: string;
172
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
148
173
  updatedAt: string;
149
174
  userId: string;
150
175
  company?: {
@@ -155,8 +180,8 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
155
180
  } | null | undefined;
156
181
  client?: {
157
182
  createdAt: string;
158
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
159
183
  id: string;
184
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
160
185
  updatedAt: string;
161
186
  name: string;
162
187
  crn: string | null;
@@ -178,17 +203,22 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
178
203
  lastName: string;
179
204
  firstName: string;
180
205
  email: string;
181
- phone: string;
182
206
  createdAt: string;
183
207
  id: string;
208
+ phoneNumbers: {
209
+ id: string;
210
+ phoneNumber: string;
211
+ isPrimary: boolean;
212
+ description?: string | null | undefined;
213
+ }[];
184
214
  updatedAt: string;
185
215
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
186
216
  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
217
  } | null | undefined;
188
218
  }, {
189
219
  createdAt: string | Date;
190
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
191
220
  id: string;
221
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
192
222
  updatedAt: string | Date;
193
223
  userId: string;
194
224
  company?: {
@@ -199,8 +229,8 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
199
229
  } | null | undefined;
200
230
  client?: {
201
231
  createdAt: string | Date;
202
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
203
232
  id: string;
233
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
204
234
  updatedAt: string | Date;
205
235
  name: string;
206
236
  crn: string | null;
@@ -222,10 +252,15 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
222
252
  lastName: string;
223
253
  firstName: string;
224
254
  email: string;
225
- phone: string;
226
255
  createdAt: string | Date;
227
256
  id: string;
228
257
  updatedAt: string | Date;
258
+ phoneNumbers?: {
259
+ id: string;
260
+ phoneNumber: string;
261
+ description?: string | null | undefined;
262
+ isPrimary?: boolean | undefined;
263
+ }[] | undefined;
229
264
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
230
265
  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;
231
266
  } | null | undefined;
@@ -287,8 +322,8 @@ export declare const CollaborationSchema: z.ZodObject<{
287
322
  }>>>;
288
323
  }, "strip", z.ZodTypeAny, {
289
324
  createdAt: string;
290
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
291
325
  id: string;
326
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
292
327
  updatedAt: string;
293
328
  name: string;
294
329
  crn: string | null;
@@ -307,8 +342,8 @@ export declare const CollaborationSchema: z.ZodObject<{
307
342
  } | null | undefined;
308
343
  }, {
309
344
  createdAt: string | Date;
310
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
311
345
  id: string;
346
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
312
347
  updatedAt: string | Date;
313
348
  name: string;
314
349
  crn: string | null;
@@ -331,7 +366,22 @@ export declare const CollaborationSchema: z.ZodObject<{
331
366
  firstName: z.ZodString;
332
367
  lastName: z.ZodString;
333
368
  email: z.ZodString;
334
- phone: z.ZodString;
369
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
370
+ id: z.ZodString;
371
+ phoneNumber: z.ZodString;
372
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
373
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
374
+ }, "strip", z.ZodTypeAny, {
375
+ id: string;
376
+ phoneNumber: string;
377
+ isPrimary: boolean;
378
+ description?: string | null | undefined;
379
+ }, {
380
+ id: string;
381
+ phoneNumber: string;
382
+ description?: string | null | undefined;
383
+ isPrimary?: boolean | undefined;
384
+ }>, "many">>>;
335
385
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
336
386
  office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["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"]>>>;
337
387
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -340,9 +390,14 @@ export declare const CollaborationSchema: z.ZodObject<{
340
390
  lastName: string;
341
391
  firstName: string;
342
392
  email: string;
343
- phone: string;
344
393
  createdAt: string;
345
394
  id: string;
395
+ phoneNumbers: {
396
+ id: string;
397
+ phoneNumber: string;
398
+ isPrimary: boolean;
399
+ description?: string | null | undefined;
400
+ }[];
346
401
  updatedAt: string;
347
402
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
348
403
  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;
@@ -350,10 +405,15 @@ export declare const CollaborationSchema: z.ZodObject<{
350
405
  lastName: string;
351
406
  firstName: string;
352
407
  email: string;
353
- phone: string;
354
408
  createdAt: string | Date;
355
409
  id: string;
356
410
  updatedAt: string | Date;
411
+ phoneNumbers?: {
412
+ id: string;
413
+ phoneNumber: string;
414
+ description?: string | null | undefined;
415
+ isPrimary?: boolean | undefined;
416
+ }[] | undefined;
357
417
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
358
418
  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;
359
419
  }>>>;
@@ -416,8 +476,8 @@ export declare const CollaborationSchema: z.ZodObject<{
416
476
  }>>>;
417
477
  }, "strip", z.ZodTypeAny, {
418
478
  createdAt: string;
419
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
420
479
  id: string;
480
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
421
481
  updatedAt: string;
422
482
  name: string;
423
483
  crn: string | null;
@@ -436,8 +496,8 @@ export declare const CollaborationSchema: z.ZodObject<{
436
496
  } | null | undefined;
437
497
  }, {
438
498
  createdAt: string | Date;
439
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
440
499
  id: string;
500
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
441
501
  updatedAt: string | Date;
442
502
  name: string;
443
503
  crn: string | null;
@@ -460,7 +520,22 @@ export declare const CollaborationSchema: z.ZodObject<{
460
520
  firstName: z.ZodString;
461
521
  lastName: z.ZodString;
462
522
  email: z.ZodString;
463
- phone: z.ZodString;
523
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
524
+ id: z.ZodString;
525
+ phoneNumber: z.ZodString;
526
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
527
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
528
+ }, "strip", z.ZodTypeAny, {
529
+ id: string;
530
+ phoneNumber: string;
531
+ isPrimary: boolean;
532
+ description?: string | null | undefined;
533
+ }, {
534
+ id: string;
535
+ phoneNumber: string;
536
+ description?: string | null | undefined;
537
+ isPrimary?: boolean | undefined;
538
+ }>, "many">>>;
464
539
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
465
540
  office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["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"]>>>;
466
541
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -469,9 +544,14 @@ export declare const CollaborationSchema: z.ZodObject<{
469
544
  lastName: string;
470
545
  firstName: string;
471
546
  email: string;
472
- phone: string;
473
547
  createdAt: string;
474
548
  id: string;
549
+ phoneNumbers: {
550
+ id: string;
551
+ phoneNumber: string;
552
+ isPrimary: boolean;
553
+ description?: string | null | undefined;
554
+ }[];
475
555
  updatedAt: string;
476
556
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
477
557
  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;
@@ -479,10 +559,15 @@ export declare const CollaborationSchema: z.ZodObject<{
479
559
  lastName: string;
480
560
  firstName: string;
481
561
  email: string;
482
- phone: string;
483
562
  createdAt: string | Date;
484
563
  id: string;
485
564
  updatedAt: string | Date;
565
+ phoneNumbers?: {
566
+ id: string;
567
+ phoneNumber: string;
568
+ description?: string | null | undefined;
569
+ isPrimary?: boolean | undefined;
570
+ }[] | undefined;
486
571
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
487
572
  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;
488
573
  }>>>;
@@ -492,8 +577,8 @@ export declare const CollaborationSchema: z.ZodObject<{
492
577
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
493
578
  }, "strip", z.ZodTypeAny, {
494
579
  createdAt: string;
495
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
496
580
  id: string;
581
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
497
582
  updatedAt: string;
498
583
  userId: string;
499
584
  company?: {
@@ -504,8 +589,8 @@ export declare const CollaborationSchema: z.ZodObject<{
504
589
  } | null | undefined;
505
590
  client?: {
506
591
  createdAt: string;
507
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
508
592
  id: string;
593
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
509
594
  updatedAt: string;
510
595
  name: string;
511
596
  crn: string | null;
@@ -527,17 +612,22 @@ export declare const CollaborationSchema: z.ZodObject<{
527
612
  lastName: string;
528
613
  firstName: string;
529
614
  email: string;
530
- phone: string;
531
615
  createdAt: string;
532
616
  id: string;
617
+ phoneNumbers: {
618
+ id: string;
619
+ phoneNumber: string;
620
+ isPrimary: boolean;
621
+ description?: string | null | undefined;
622
+ }[];
533
623
  updatedAt: string;
534
624
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
535
625
  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
626
  } | null | undefined;
537
627
  }, {
538
628
  createdAt: string | Date;
539
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
540
629
  id: string;
630
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
541
631
  updatedAt: string | Date;
542
632
  userId: string;
543
633
  company?: {
@@ -548,8 +638,8 @@ export declare const CollaborationSchema: z.ZodObject<{
548
638
  } | null | undefined;
549
639
  client?: {
550
640
  createdAt: string | Date;
551
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
552
641
  id: string;
642
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
553
643
  updatedAt: string | Date;
554
644
  name: string;
555
645
  crn: string | null;
@@ -571,18 +661,23 @@ export declare const CollaborationSchema: z.ZodObject<{
571
661
  lastName: string;
572
662
  firstName: string;
573
663
  email: string;
574
- phone: string;
575
664
  createdAt: string | Date;
576
665
  id: string;
577
666
  updatedAt: string | Date;
667
+ phoneNumbers?: {
668
+ id: string;
669
+ phoneNumber: string;
670
+ description?: string | null | undefined;
671
+ isPrimary?: boolean | undefined;
672
+ }[] | undefined;
578
673
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
579
674
  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;
580
675
  } | null | undefined;
581
676
  }>>>;
582
677
  }, "strip", z.ZodTypeAny, {
583
678
  createdAt: string;
584
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
585
679
  id: string;
680
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
586
681
  updatedAt: string;
587
682
  userId: string;
588
683
  company?: {
@@ -593,8 +688,8 @@ export declare const CollaborationSchema: z.ZodObject<{
593
688
  } | null | undefined;
594
689
  client?: {
595
690
  createdAt: string;
596
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
597
691
  id: string;
692
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
598
693
  updatedAt: string;
599
694
  name: string;
600
695
  crn: string | null;
@@ -616,17 +711,22 @@ export declare const CollaborationSchema: z.ZodObject<{
616
711
  lastName: string;
617
712
  firstName: string;
618
713
  email: string;
619
- phone: string;
620
714
  createdAt: string;
621
715
  id: string;
716
+ phoneNumbers: {
717
+ id: string;
718
+ phoneNumber: string;
719
+ isPrimary: boolean;
720
+ description?: string | null | undefined;
721
+ }[];
622
722
  updatedAt: string;
623
723
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
624
724
  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
725
  } | null | undefined;
626
726
  newCollaboration?: {
627
727
  createdAt: string;
628
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
629
728
  id: string;
729
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
630
730
  updatedAt: string;
631
731
  userId: string;
632
732
  company?: {
@@ -637,8 +737,8 @@ export declare const CollaborationSchema: z.ZodObject<{
637
737
  } | null | undefined;
638
738
  client?: {
639
739
  createdAt: string;
640
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
641
740
  id: string;
741
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
642
742
  updatedAt: string;
643
743
  name: string;
644
744
  crn: string | null;
@@ -660,9 +760,14 @@ export declare const CollaborationSchema: z.ZodObject<{
660
760
  lastName: string;
661
761
  firstName: string;
662
762
  email: string;
663
- phone: string;
664
763
  createdAt: string;
665
764
  id: string;
765
+ phoneNumbers: {
766
+ id: string;
767
+ phoneNumber: string;
768
+ isPrimary: boolean;
769
+ description?: string | null | undefined;
770
+ }[];
666
771
  updatedAt: string;
667
772
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
668
773
  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;
@@ -670,8 +775,8 @@ export declare const CollaborationSchema: z.ZodObject<{
670
775
  } | null | undefined;
671
776
  }, {
672
777
  createdAt: string | Date;
673
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
674
778
  id: string;
779
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
675
780
  updatedAt: string | Date;
676
781
  userId: string;
677
782
  company?: {
@@ -682,8 +787,8 @@ export declare const CollaborationSchema: z.ZodObject<{
682
787
  } | null | undefined;
683
788
  client?: {
684
789
  createdAt: string | Date;
685
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
686
790
  id: string;
791
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
687
792
  updatedAt: string | Date;
688
793
  name: string;
689
794
  crn: string | null;
@@ -705,17 +810,22 @@ export declare const CollaborationSchema: z.ZodObject<{
705
810
  lastName: string;
706
811
  firstName: string;
707
812
  email: string;
708
- phone: string;
709
813
  createdAt: string | Date;
710
814
  id: string;
711
815
  updatedAt: string | Date;
816
+ phoneNumbers?: {
817
+ id: string;
818
+ phoneNumber: string;
819
+ description?: string | null | undefined;
820
+ isPrimary?: boolean | undefined;
821
+ }[] | undefined;
712
822
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
713
823
  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
824
  } | null | undefined;
715
825
  newCollaboration?: {
716
826
  createdAt: string | Date;
717
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
718
827
  id: string;
828
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
719
829
  updatedAt: string | Date;
720
830
  userId: string;
721
831
  company?: {
@@ -726,8 +836,8 @@ export declare const CollaborationSchema: z.ZodObject<{
726
836
  } | null | undefined;
727
837
  client?: {
728
838
  createdAt: string | Date;
729
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
730
839
  id: string;
840
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
731
841
  updatedAt: string | Date;
732
842
  name: string;
733
843
  crn: string | null;
@@ -749,10 +859,15 @@ export declare const CollaborationSchema: z.ZodObject<{
749
859
  lastName: string;
750
860
  firstName: string;
751
861
  email: string;
752
- phone: string;
753
862
  createdAt: string | Date;
754
863
  id: string;
755
864
  updatedAt: string | Date;
865
+ phoneNumbers?: {
866
+ id: string;
867
+ phoneNumber: string;
868
+ description?: string | null | undefined;
869
+ isPrimary?: boolean | undefined;
870
+ }[] | undefined;
756
871
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
757
872
  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;
758
873
  } | null | undefined;
@@ -1086,8 +1201,8 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1086
1201
  }>>>;
1087
1202
  }, "strip", z.ZodTypeAny, {
1088
1203
  createdAt: string;
1089
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1090
1204
  id: string;
1205
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1091
1206
  updatedAt: string;
1092
1207
  name: string;
1093
1208
  crn: string | null;
@@ -1106,8 +1221,8 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1106
1221
  } | null | undefined;
1107
1222
  }, {
1108
1223
  createdAt: string | Date;
1109
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1110
1224
  id: string;
1225
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1111
1226
  updatedAt: string | Date;
1112
1227
  name: string;
1113
1228
  crn: string | null;
@@ -1130,7 +1245,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1130
1245
  firstName: z.ZodString;
1131
1246
  lastName: z.ZodString;
1132
1247
  email: z.ZodString;
1133
- phone: z.ZodString;
1248
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1249
+ id: z.ZodString;
1250
+ phoneNumber: z.ZodString;
1251
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1252
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
1253
+ }, "strip", z.ZodTypeAny, {
1254
+ id: string;
1255
+ phoneNumber: string;
1256
+ isPrimary: boolean;
1257
+ description?: string | null | undefined;
1258
+ }, {
1259
+ id: string;
1260
+ phoneNumber: string;
1261
+ description?: string | null | undefined;
1262
+ isPrimary?: boolean | undefined;
1263
+ }>, "many">>>;
1134
1264
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
1135
1265
  office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["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"]>>>;
1136
1266
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -1139,9 +1269,14 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1139
1269
  lastName: string;
1140
1270
  firstName: string;
1141
1271
  email: string;
1142
- phone: string;
1143
1272
  createdAt: string;
1144
1273
  id: string;
1274
+ phoneNumbers: {
1275
+ id: string;
1276
+ phoneNumber: string;
1277
+ isPrimary: boolean;
1278
+ description?: string | null | undefined;
1279
+ }[];
1145
1280
  updatedAt: string;
1146
1281
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1147
1282
  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;
@@ -1149,10 +1284,15 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1149
1284
  lastName: string;
1150
1285
  firstName: string;
1151
1286
  email: string;
1152
- phone: string;
1153
1287
  createdAt: string | Date;
1154
1288
  id: string;
1155
1289
  updatedAt: string | Date;
1290
+ phoneNumbers?: {
1291
+ id: string;
1292
+ phoneNumber: string;
1293
+ description?: string | null | undefined;
1294
+ isPrimary?: boolean | undefined;
1295
+ }[] | undefined;
1156
1296
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1157
1297
  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;
1158
1298
  }>>>;
@@ -1215,8 +1355,8 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1215
1355
  }>>>;
1216
1356
  }, "strip", z.ZodTypeAny, {
1217
1357
  createdAt: string;
1218
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1219
1358
  id: string;
1359
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1220
1360
  updatedAt: string;
1221
1361
  name: string;
1222
1362
  crn: string | null;
@@ -1235,8 +1375,8 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1235
1375
  } | null | undefined;
1236
1376
  }, {
1237
1377
  createdAt: string | Date;
1238
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1239
1378
  id: string;
1379
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1240
1380
  updatedAt: string | Date;
1241
1381
  name: string;
1242
1382
  crn: string | null;
@@ -1259,7 +1399,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1259
1399
  firstName: z.ZodString;
1260
1400
  lastName: z.ZodString;
1261
1401
  email: z.ZodString;
1262
- phone: z.ZodString;
1402
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1403
+ id: z.ZodString;
1404
+ phoneNumber: z.ZodString;
1405
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1406
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
1407
+ }, "strip", z.ZodTypeAny, {
1408
+ id: string;
1409
+ phoneNumber: string;
1410
+ isPrimary: boolean;
1411
+ description?: string | null | undefined;
1412
+ }, {
1413
+ id: string;
1414
+ phoneNumber: string;
1415
+ description?: string | null | undefined;
1416
+ isPrimary?: boolean | undefined;
1417
+ }>, "many">>>;
1263
1418
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
1264
1419
  office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["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"]>>>;
1265
1420
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -1268,9 +1423,14 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1268
1423
  lastName: string;
1269
1424
  firstName: string;
1270
1425
  email: string;
1271
- phone: string;
1272
1426
  createdAt: string;
1273
1427
  id: string;
1428
+ phoneNumbers: {
1429
+ id: string;
1430
+ phoneNumber: string;
1431
+ isPrimary: boolean;
1432
+ description?: string | null | undefined;
1433
+ }[];
1274
1434
  updatedAt: string;
1275
1435
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1276
1436
  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;
@@ -1278,10 +1438,15 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1278
1438
  lastName: string;
1279
1439
  firstName: string;
1280
1440
  email: string;
1281
- phone: string;
1282
1441
  createdAt: string | Date;
1283
1442
  id: string;
1284
1443
  updatedAt: string | Date;
1444
+ phoneNumbers?: {
1445
+ id: string;
1446
+ phoneNumber: string;
1447
+ description?: string | null | undefined;
1448
+ isPrimary?: boolean | undefined;
1449
+ }[] | undefined;
1285
1450
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1286
1451
  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;
1287
1452
  }>>>;
@@ -1291,8 +1456,8 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1291
1456
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1292
1457
  }, "strip", z.ZodTypeAny, {
1293
1458
  createdAt: string;
1294
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1295
1459
  id: string;
1460
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1296
1461
  updatedAt: string;
1297
1462
  userId: string;
1298
1463
  company?: {
@@ -1303,8 +1468,8 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1303
1468
  } | null | undefined;
1304
1469
  client?: {
1305
1470
  createdAt: string;
1306
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1307
1471
  id: string;
1472
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1308
1473
  updatedAt: string;
1309
1474
  name: string;
1310
1475
  crn: string | null;
@@ -1326,17 +1491,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1326
1491
  lastName: string;
1327
1492
  firstName: string;
1328
1493
  email: string;
1329
- phone: string;
1330
1494
  createdAt: string;
1331
1495
  id: string;
1496
+ phoneNumbers: {
1497
+ id: string;
1498
+ phoneNumber: string;
1499
+ isPrimary: boolean;
1500
+ description?: string | null | undefined;
1501
+ }[];
1332
1502
  updatedAt: string;
1333
1503
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1334
1504
  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
1505
  } | null | undefined;
1336
1506
  }, {
1337
1507
  createdAt: string | Date;
1338
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1339
1508
  id: string;
1509
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1340
1510
  updatedAt: string | Date;
1341
1511
  userId: string;
1342
1512
  company?: {
@@ -1347,8 +1517,8 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1347
1517
  } | null | undefined;
1348
1518
  client?: {
1349
1519
  createdAt: string | Date;
1350
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1351
1520
  id: string;
1521
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1352
1522
  updatedAt: string | Date;
1353
1523
  name: string;
1354
1524
  crn: string | null;
@@ -1370,18 +1540,23 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1370
1540
  lastName: string;
1371
1541
  firstName: string;
1372
1542
  email: string;
1373
- phone: string;
1374
1543
  createdAt: string | Date;
1375
1544
  id: string;
1376
1545
  updatedAt: string | Date;
1546
+ phoneNumbers?: {
1547
+ id: string;
1548
+ phoneNumber: string;
1549
+ description?: string | null | undefined;
1550
+ isPrimary?: boolean | undefined;
1551
+ }[] | undefined;
1377
1552
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1378
1553
  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;
1379
1554
  } | null | undefined;
1380
1555
  }>>>;
1381
1556
  }, "strip", z.ZodTypeAny, {
1382
1557
  createdAt: string;
1383
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1384
1558
  id: string;
1559
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1385
1560
  updatedAt: string;
1386
1561
  userId: string;
1387
1562
  company?: {
@@ -1392,8 +1567,8 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1392
1567
  } | null | undefined;
1393
1568
  client?: {
1394
1569
  createdAt: string;
1395
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1396
1570
  id: string;
1571
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1397
1572
  updatedAt: string;
1398
1573
  name: string;
1399
1574
  crn: string | null;
@@ -1415,17 +1590,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1415
1590
  lastName: string;
1416
1591
  firstName: string;
1417
1592
  email: string;
1418
- phone: string;
1419
1593
  createdAt: string;
1420
1594
  id: string;
1595
+ phoneNumbers: {
1596
+ id: string;
1597
+ phoneNumber: string;
1598
+ isPrimary: boolean;
1599
+ description?: string | null | undefined;
1600
+ }[];
1421
1601
  updatedAt: string;
1422
1602
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1423
1603
  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
1604
  } | null | undefined;
1425
1605
  newCollaboration?: {
1426
1606
  createdAt: string;
1427
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1428
1607
  id: string;
1608
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1429
1609
  updatedAt: string;
1430
1610
  userId: string;
1431
1611
  company?: {
@@ -1436,8 +1616,8 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1436
1616
  } | null | undefined;
1437
1617
  client?: {
1438
1618
  createdAt: string;
1439
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1440
1619
  id: string;
1620
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1441
1621
  updatedAt: string;
1442
1622
  name: string;
1443
1623
  crn: string | null;
@@ -1459,9 +1639,14 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1459
1639
  lastName: string;
1460
1640
  firstName: string;
1461
1641
  email: string;
1462
- phone: string;
1463
1642
  createdAt: string;
1464
1643
  id: string;
1644
+ phoneNumbers: {
1645
+ id: string;
1646
+ phoneNumber: string;
1647
+ isPrimary: boolean;
1648
+ description?: string | null | undefined;
1649
+ }[];
1465
1650
  updatedAt: string;
1466
1651
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1467
1652
  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;
@@ -1469,8 +1654,8 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1469
1654
  } | null | undefined;
1470
1655
  }, {
1471
1656
  createdAt: string | Date;
1472
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1473
1657
  id: string;
1658
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1474
1659
  updatedAt: string | Date;
1475
1660
  userId: string;
1476
1661
  company?: {
@@ -1481,8 +1666,8 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1481
1666
  } | null | undefined;
1482
1667
  client?: {
1483
1668
  createdAt: string | Date;
1484
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1485
1669
  id: string;
1670
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1486
1671
  updatedAt: string | Date;
1487
1672
  name: string;
1488
1673
  crn: string | null;
@@ -1504,17 +1689,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1504
1689
  lastName: string;
1505
1690
  firstName: string;
1506
1691
  email: string;
1507
- phone: string;
1508
1692
  createdAt: string | Date;
1509
1693
  id: string;
1510
1694
  updatedAt: string | Date;
1695
+ phoneNumbers?: {
1696
+ id: string;
1697
+ phoneNumber: string;
1698
+ description?: string | null | undefined;
1699
+ isPrimary?: boolean | undefined;
1700
+ }[] | undefined;
1511
1701
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1512
1702
  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
1703
  } | null | undefined;
1514
1704
  newCollaboration?: {
1515
1705
  createdAt: string | Date;
1516
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1517
1706
  id: string;
1707
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1518
1708
  updatedAt: string | Date;
1519
1709
  userId: string;
1520
1710
  company?: {
@@ -1525,8 +1715,8 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1525
1715
  } | null | undefined;
1526
1716
  client?: {
1527
1717
  createdAt: string | Date;
1528
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1529
1718
  id: string;
1719
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1530
1720
  updatedAt: string | Date;
1531
1721
  name: string;
1532
1722
  crn: string | null;
@@ -1548,10 +1738,15 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1548
1738
  lastName: string;
1549
1739
  firstName: string;
1550
1740
  email: string;
1551
- phone: string;
1552
1741
  createdAt: string | Date;
1553
1742
  id: string;
1554
1743
  updatedAt: string | Date;
1744
+ phoneNumbers?: {
1745
+ id: string;
1746
+ phoneNumber: string;
1747
+ description?: string | null | undefined;
1748
+ isPrimary?: boolean | undefined;
1749
+ }[] | undefined;
1555
1750
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1556
1751
  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;
1557
1752
  } | null | undefined;
@@ -1566,8 +1761,8 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1566
1761
  limit: number;
1567
1762
  items: {
1568
1763
  createdAt: string;
1569
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1570
1764
  id: string;
1765
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1571
1766
  updatedAt: string;
1572
1767
  userId: string;
1573
1768
  company?: {
@@ -1578,8 +1773,8 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1578
1773
  } | null | undefined;
1579
1774
  client?: {
1580
1775
  createdAt: string;
1581
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1582
1776
  id: string;
1777
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1583
1778
  updatedAt: string;
1584
1779
  name: string;
1585
1780
  crn: string | null;
@@ -1601,17 +1796,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1601
1796
  lastName: string;
1602
1797
  firstName: string;
1603
1798
  email: string;
1604
- phone: string;
1605
1799
  createdAt: string;
1606
1800
  id: string;
1801
+ phoneNumbers: {
1802
+ id: string;
1803
+ phoneNumber: string;
1804
+ isPrimary: boolean;
1805
+ description?: string | null | undefined;
1806
+ }[];
1607
1807
  updatedAt: string;
1608
1808
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1609
1809
  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
1810
  } | null | undefined;
1611
1811
  newCollaboration?: {
1612
1812
  createdAt: string;
1613
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1614
1813
  id: string;
1814
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1615
1815
  updatedAt: string;
1616
1816
  userId: string;
1617
1817
  company?: {
@@ -1622,8 +1822,8 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1622
1822
  } | null | undefined;
1623
1823
  client?: {
1624
1824
  createdAt: string;
1625
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1626
1825
  id: string;
1826
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1627
1827
  updatedAt: string;
1628
1828
  name: string;
1629
1829
  crn: string | null;
@@ -1645,9 +1845,14 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1645
1845
  lastName: string;
1646
1846
  firstName: string;
1647
1847
  email: string;
1648
- phone: string;
1649
1848
  createdAt: string;
1650
1849
  id: string;
1850
+ phoneNumbers: {
1851
+ id: string;
1852
+ phoneNumber: string;
1853
+ isPrimary: boolean;
1854
+ description?: string | null | undefined;
1855
+ }[];
1651
1856
  updatedAt: string;
1652
1857
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1653
1858
  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;
@@ -1662,8 +1867,8 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1662
1867
  limit: number;
1663
1868
  items: {
1664
1869
  createdAt: string | Date;
1665
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1666
1870
  id: string;
1871
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1667
1872
  updatedAt: string | Date;
1668
1873
  userId: string;
1669
1874
  company?: {
@@ -1674,8 +1879,8 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1674
1879
  } | null | undefined;
1675
1880
  client?: {
1676
1881
  createdAt: string | Date;
1677
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1678
1882
  id: string;
1883
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1679
1884
  updatedAt: string | Date;
1680
1885
  name: string;
1681
1886
  crn: string | null;
@@ -1697,17 +1902,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1697
1902
  lastName: string;
1698
1903
  firstName: string;
1699
1904
  email: string;
1700
- phone: string;
1701
1905
  createdAt: string | Date;
1702
1906
  id: string;
1703
1907
  updatedAt: string | Date;
1908
+ phoneNumbers?: {
1909
+ id: string;
1910
+ phoneNumber: string;
1911
+ description?: string | null | undefined;
1912
+ isPrimary?: boolean | undefined;
1913
+ }[] | undefined;
1704
1914
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1705
1915
  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
1916
  } | null | undefined;
1707
1917
  newCollaboration?: {
1708
1918
  createdAt: string | Date;
1709
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1710
1919
  id: string;
1920
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1711
1921
  updatedAt: string | Date;
1712
1922
  userId: string;
1713
1923
  company?: {
@@ -1718,8 +1928,8 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1718
1928
  } | null | undefined;
1719
1929
  client?: {
1720
1930
  createdAt: string | Date;
1721
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1722
1931
  id: string;
1932
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1723
1933
  updatedAt: string | Date;
1724
1934
  name: string;
1725
1935
  crn: string | null;
@@ -1741,10 +1951,15 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1741
1951
  lastName: string;
1742
1952
  firstName: string;
1743
1953
  email: string;
1744
- phone: string;
1745
1954
  createdAt: string | Date;
1746
1955
  id: string;
1747
1956
  updatedAt: string | Date;
1957
+ phoneNumbers?: {
1958
+ id: string;
1959
+ phoneNumber: string;
1960
+ description?: string | null | undefined;
1961
+ isPrimary?: boolean | undefined;
1962
+ }[] | undefined;
1748
1963
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1749
1964
  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;
1750
1965
  } | null | undefined;
@@ -1975,8 +2190,8 @@ export declare const collaborationsContractRouter: {
1975
2190
  }>>>;
1976
2191
  }, "strip", z.ZodTypeAny, {
1977
2192
  createdAt: string;
1978
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1979
2193
  id: string;
2194
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1980
2195
  updatedAt: string;
1981
2196
  name: string;
1982
2197
  crn: string | null;
@@ -1995,8 +2210,8 @@ export declare const collaborationsContractRouter: {
1995
2210
  } | null | undefined;
1996
2211
  }, {
1997
2212
  createdAt: string | Date;
1998
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1999
2213
  id: string;
2214
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2000
2215
  updatedAt: string | Date;
2001
2216
  name: string;
2002
2217
  crn: string | null;
@@ -2019,7 +2234,22 @@ export declare const collaborationsContractRouter: {
2019
2234
  firstName: z.ZodString;
2020
2235
  lastName: z.ZodString;
2021
2236
  email: z.ZodString;
2022
- phone: z.ZodString;
2237
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
2238
+ id: z.ZodString;
2239
+ phoneNumber: z.ZodString;
2240
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2241
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
2242
+ }, "strip", z.ZodTypeAny, {
2243
+ id: string;
2244
+ phoneNumber: string;
2245
+ isPrimary: boolean;
2246
+ description?: string | null | undefined;
2247
+ }, {
2248
+ id: string;
2249
+ phoneNumber: string;
2250
+ description?: string | null | undefined;
2251
+ isPrimary?: boolean | undefined;
2252
+ }>, "many">>>;
2023
2253
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
2024
2254
  office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["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"]>>>;
2025
2255
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -2028,9 +2258,14 @@ export declare const collaborationsContractRouter: {
2028
2258
  lastName: string;
2029
2259
  firstName: string;
2030
2260
  email: string;
2031
- phone: string;
2032
2261
  createdAt: string;
2033
2262
  id: string;
2263
+ phoneNumbers: {
2264
+ id: string;
2265
+ phoneNumber: string;
2266
+ isPrimary: boolean;
2267
+ description?: string | null | undefined;
2268
+ }[];
2034
2269
  updatedAt: string;
2035
2270
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2036
2271
  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;
@@ -2038,10 +2273,15 @@ export declare const collaborationsContractRouter: {
2038
2273
  lastName: string;
2039
2274
  firstName: string;
2040
2275
  email: string;
2041
- phone: string;
2042
2276
  createdAt: string | Date;
2043
2277
  id: string;
2044
2278
  updatedAt: string | Date;
2279
+ phoneNumbers?: {
2280
+ id: string;
2281
+ phoneNumber: string;
2282
+ description?: string | null | undefined;
2283
+ isPrimary?: boolean | undefined;
2284
+ }[] | undefined;
2045
2285
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2046
2286
  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;
2047
2287
  }>>>;
@@ -2104,8 +2344,8 @@ export declare const collaborationsContractRouter: {
2104
2344
  }>>>;
2105
2345
  }, "strip", z.ZodTypeAny, {
2106
2346
  createdAt: string;
2107
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2108
2347
  id: string;
2348
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2109
2349
  updatedAt: string;
2110
2350
  name: string;
2111
2351
  crn: string | null;
@@ -2124,8 +2364,8 @@ export declare const collaborationsContractRouter: {
2124
2364
  } | null | undefined;
2125
2365
  }, {
2126
2366
  createdAt: string | Date;
2127
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2128
2367
  id: string;
2368
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2129
2369
  updatedAt: string | Date;
2130
2370
  name: string;
2131
2371
  crn: string | null;
@@ -2148,7 +2388,22 @@ export declare const collaborationsContractRouter: {
2148
2388
  firstName: z.ZodString;
2149
2389
  lastName: z.ZodString;
2150
2390
  email: z.ZodString;
2151
- phone: z.ZodString;
2391
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
2392
+ id: z.ZodString;
2393
+ phoneNumber: z.ZodString;
2394
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2395
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
2396
+ }, "strip", z.ZodTypeAny, {
2397
+ id: string;
2398
+ phoneNumber: string;
2399
+ isPrimary: boolean;
2400
+ description?: string | null | undefined;
2401
+ }, {
2402
+ id: string;
2403
+ phoneNumber: string;
2404
+ description?: string | null | undefined;
2405
+ isPrimary?: boolean | undefined;
2406
+ }>, "many">>>;
2152
2407
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
2153
2408
  office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["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"]>>>;
2154
2409
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -2157,9 +2412,14 @@ export declare const collaborationsContractRouter: {
2157
2412
  lastName: string;
2158
2413
  firstName: string;
2159
2414
  email: string;
2160
- phone: string;
2161
2415
  createdAt: string;
2162
2416
  id: string;
2417
+ phoneNumbers: {
2418
+ id: string;
2419
+ phoneNumber: string;
2420
+ isPrimary: boolean;
2421
+ description?: string | null | undefined;
2422
+ }[];
2163
2423
  updatedAt: string;
2164
2424
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2165
2425
  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;
@@ -2167,10 +2427,15 @@ export declare const collaborationsContractRouter: {
2167
2427
  lastName: string;
2168
2428
  firstName: string;
2169
2429
  email: string;
2170
- phone: string;
2171
2430
  createdAt: string | Date;
2172
2431
  id: string;
2173
2432
  updatedAt: string | Date;
2433
+ phoneNumbers?: {
2434
+ id: string;
2435
+ phoneNumber: string;
2436
+ description?: string | null | undefined;
2437
+ isPrimary?: boolean | undefined;
2438
+ }[] | undefined;
2174
2439
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2175
2440
  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;
2176
2441
  }>>>;
@@ -2180,8 +2445,8 @@ export declare const collaborationsContractRouter: {
2180
2445
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2181
2446
  }, "strip", z.ZodTypeAny, {
2182
2447
  createdAt: string;
2183
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2184
2448
  id: string;
2449
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2185
2450
  updatedAt: string;
2186
2451
  userId: string;
2187
2452
  company?: {
@@ -2192,8 +2457,8 @@ export declare const collaborationsContractRouter: {
2192
2457
  } | null | undefined;
2193
2458
  client?: {
2194
2459
  createdAt: string;
2195
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2196
2460
  id: string;
2461
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2197
2462
  updatedAt: string;
2198
2463
  name: string;
2199
2464
  crn: string | null;
@@ -2215,17 +2480,22 @@ export declare const collaborationsContractRouter: {
2215
2480
  lastName: string;
2216
2481
  firstName: string;
2217
2482
  email: string;
2218
- phone: string;
2219
2483
  createdAt: string;
2220
2484
  id: string;
2485
+ phoneNumbers: {
2486
+ id: string;
2487
+ phoneNumber: string;
2488
+ isPrimary: boolean;
2489
+ description?: string | null | undefined;
2490
+ }[];
2221
2491
  updatedAt: string;
2222
2492
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2223
2493
  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
2494
  } | null | undefined;
2225
2495
  }, {
2226
2496
  createdAt: string | Date;
2227
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2228
2497
  id: string;
2498
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2229
2499
  updatedAt: string | Date;
2230
2500
  userId: string;
2231
2501
  company?: {
@@ -2236,8 +2506,8 @@ export declare const collaborationsContractRouter: {
2236
2506
  } | null | undefined;
2237
2507
  client?: {
2238
2508
  createdAt: string | Date;
2239
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2240
2509
  id: string;
2510
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2241
2511
  updatedAt: string | Date;
2242
2512
  name: string;
2243
2513
  crn: string | null;
@@ -2259,18 +2529,23 @@ export declare const collaborationsContractRouter: {
2259
2529
  lastName: string;
2260
2530
  firstName: string;
2261
2531
  email: string;
2262
- phone: string;
2263
2532
  createdAt: string | Date;
2264
2533
  id: string;
2265
2534
  updatedAt: string | Date;
2535
+ phoneNumbers?: {
2536
+ id: string;
2537
+ phoneNumber: string;
2538
+ description?: string | null | undefined;
2539
+ isPrimary?: boolean | undefined;
2540
+ }[] | undefined;
2266
2541
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2267
2542
  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;
2268
2543
  } | null | undefined;
2269
2544
  }>>>;
2270
2545
  }, "strip", z.ZodTypeAny, {
2271
2546
  createdAt: string;
2272
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2273
2547
  id: string;
2548
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2274
2549
  updatedAt: string;
2275
2550
  userId: string;
2276
2551
  company?: {
@@ -2281,8 +2556,8 @@ export declare const collaborationsContractRouter: {
2281
2556
  } | null | undefined;
2282
2557
  client?: {
2283
2558
  createdAt: string;
2284
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2285
2559
  id: string;
2560
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2286
2561
  updatedAt: string;
2287
2562
  name: string;
2288
2563
  crn: string | null;
@@ -2304,17 +2579,22 @@ export declare const collaborationsContractRouter: {
2304
2579
  lastName: string;
2305
2580
  firstName: string;
2306
2581
  email: string;
2307
- phone: string;
2308
2582
  createdAt: string;
2309
2583
  id: string;
2584
+ phoneNumbers: {
2585
+ id: string;
2586
+ phoneNumber: string;
2587
+ isPrimary: boolean;
2588
+ description?: string | null | undefined;
2589
+ }[];
2310
2590
  updatedAt: string;
2311
2591
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2312
2592
  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
2593
  } | null | undefined;
2314
2594
  newCollaboration?: {
2315
2595
  createdAt: string;
2316
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2317
2596
  id: string;
2597
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2318
2598
  updatedAt: string;
2319
2599
  userId: string;
2320
2600
  company?: {
@@ -2325,8 +2605,8 @@ export declare const collaborationsContractRouter: {
2325
2605
  } | null | undefined;
2326
2606
  client?: {
2327
2607
  createdAt: string;
2328
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2329
2608
  id: string;
2609
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2330
2610
  updatedAt: string;
2331
2611
  name: string;
2332
2612
  crn: string | null;
@@ -2348,9 +2628,14 @@ export declare const collaborationsContractRouter: {
2348
2628
  lastName: string;
2349
2629
  firstName: string;
2350
2630
  email: string;
2351
- phone: string;
2352
2631
  createdAt: string;
2353
2632
  id: string;
2633
+ phoneNumbers: {
2634
+ id: string;
2635
+ phoneNumber: string;
2636
+ isPrimary: boolean;
2637
+ description?: string | null | undefined;
2638
+ }[];
2354
2639
  updatedAt: string;
2355
2640
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2356
2641
  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;
@@ -2358,8 +2643,8 @@ export declare const collaborationsContractRouter: {
2358
2643
  } | null | undefined;
2359
2644
  }, {
2360
2645
  createdAt: string | Date;
2361
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2362
2646
  id: string;
2647
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2363
2648
  updatedAt: string | Date;
2364
2649
  userId: string;
2365
2650
  company?: {
@@ -2370,8 +2655,8 @@ export declare const collaborationsContractRouter: {
2370
2655
  } | null | undefined;
2371
2656
  client?: {
2372
2657
  createdAt: string | Date;
2373
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2374
2658
  id: string;
2659
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2375
2660
  updatedAt: string | Date;
2376
2661
  name: string;
2377
2662
  crn: string | null;
@@ -2393,17 +2678,22 @@ export declare const collaborationsContractRouter: {
2393
2678
  lastName: string;
2394
2679
  firstName: string;
2395
2680
  email: string;
2396
- phone: string;
2397
2681
  createdAt: string | Date;
2398
2682
  id: string;
2399
2683
  updatedAt: string | Date;
2684
+ phoneNumbers?: {
2685
+ id: string;
2686
+ phoneNumber: string;
2687
+ description?: string | null | undefined;
2688
+ isPrimary?: boolean | undefined;
2689
+ }[] | undefined;
2400
2690
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2401
2691
  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
2692
  } | null | undefined;
2403
2693
  newCollaboration?: {
2404
2694
  createdAt: string | Date;
2405
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2406
2695
  id: string;
2696
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2407
2697
  updatedAt: string | Date;
2408
2698
  userId: string;
2409
2699
  company?: {
@@ -2414,8 +2704,8 @@ export declare const collaborationsContractRouter: {
2414
2704
  } | null | undefined;
2415
2705
  client?: {
2416
2706
  createdAt: string | Date;
2417
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2418
2707
  id: string;
2708
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2419
2709
  updatedAt: string | Date;
2420
2710
  name: string;
2421
2711
  crn: string | null;
@@ -2437,10 +2727,15 @@ export declare const collaborationsContractRouter: {
2437
2727
  lastName: string;
2438
2728
  firstName: string;
2439
2729
  email: string;
2440
- phone: string;
2441
2730
  createdAt: string | Date;
2442
2731
  id: string;
2443
2732
  updatedAt: string | Date;
2733
+ phoneNumbers?: {
2734
+ id: string;
2735
+ phoneNumber: string;
2736
+ description?: string | null | undefined;
2737
+ isPrimary?: boolean | undefined;
2738
+ }[] | undefined;
2444
2739
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2445
2740
  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;
2446
2741
  } | null | undefined;
@@ -2668,8 +2963,8 @@ export declare const collaborationsContractRouter: {
2668
2963
  }>>>;
2669
2964
  }, "strip", z.ZodTypeAny, {
2670
2965
  createdAt: string;
2671
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2672
2966
  id: string;
2967
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2673
2968
  updatedAt: string;
2674
2969
  name: string;
2675
2970
  crn: string | null;
@@ -2688,8 +2983,8 @@ export declare const collaborationsContractRouter: {
2688
2983
  } | null | undefined;
2689
2984
  }, {
2690
2985
  createdAt: string | Date;
2691
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2692
2986
  id: string;
2987
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2693
2988
  updatedAt: string | Date;
2694
2989
  name: string;
2695
2990
  crn: string | null;
@@ -2712,7 +3007,22 @@ export declare const collaborationsContractRouter: {
2712
3007
  firstName: z.ZodString;
2713
3008
  lastName: z.ZodString;
2714
3009
  email: z.ZodString;
2715
- phone: z.ZodString;
3010
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
3011
+ id: z.ZodString;
3012
+ phoneNumber: z.ZodString;
3013
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3014
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
3015
+ }, "strip", z.ZodTypeAny, {
3016
+ id: string;
3017
+ phoneNumber: string;
3018
+ isPrimary: boolean;
3019
+ description?: string | null | undefined;
3020
+ }, {
3021
+ id: string;
3022
+ phoneNumber: string;
3023
+ description?: string | null | undefined;
3024
+ isPrimary?: boolean | undefined;
3025
+ }>, "many">>>;
2716
3026
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
2717
3027
  office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["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"]>>>;
2718
3028
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -2721,9 +3031,14 @@ export declare const collaborationsContractRouter: {
2721
3031
  lastName: string;
2722
3032
  firstName: string;
2723
3033
  email: string;
2724
- phone: string;
2725
3034
  createdAt: string;
2726
3035
  id: string;
3036
+ phoneNumbers: {
3037
+ id: string;
3038
+ phoneNumber: string;
3039
+ isPrimary: boolean;
3040
+ description?: string | null | undefined;
3041
+ }[];
2727
3042
  updatedAt: string;
2728
3043
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2729
3044
  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;
@@ -2731,10 +3046,15 @@ export declare const collaborationsContractRouter: {
2731
3046
  lastName: string;
2732
3047
  firstName: string;
2733
3048
  email: string;
2734
- phone: string;
2735
3049
  createdAt: string | Date;
2736
3050
  id: string;
2737
3051
  updatedAt: string | Date;
3052
+ phoneNumbers?: {
3053
+ id: string;
3054
+ phoneNumber: string;
3055
+ description?: string | null | undefined;
3056
+ isPrimary?: boolean | undefined;
3057
+ }[] | undefined;
2738
3058
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2739
3059
  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;
2740
3060
  }>>>;
@@ -2797,8 +3117,8 @@ export declare const collaborationsContractRouter: {
2797
3117
  }>>>;
2798
3118
  }, "strip", z.ZodTypeAny, {
2799
3119
  createdAt: string;
2800
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2801
3120
  id: string;
3121
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2802
3122
  updatedAt: string;
2803
3123
  name: string;
2804
3124
  crn: string | null;
@@ -2817,8 +3137,8 @@ export declare const collaborationsContractRouter: {
2817
3137
  } | null | undefined;
2818
3138
  }, {
2819
3139
  createdAt: string | Date;
2820
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2821
3140
  id: string;
3141
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2822
3142
  updatedAt: string | Date;
2823
3143
  name: string;
2824
3144
  crn: string | null;
@@ -2841,7 +3161,22 @@ export declare const collaborationsContractRouter: {
2841
3161
  firstName: z.ZodString;
2842
3162
  lastName: z.ZodString;
2843
3163
  email: z.ZodString;
2844
- phone: z.ZodString;
3164
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
3165
+ id: z.ZodString;
3166
+ phoneNumber: z.ZodString;
3167
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3168
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
3169
+ }, "strip", z.ZodTypeAny, {
3170
+ id: string;
3171
+ phoneNumber: string;
3172
+ isPrimary: boolean;
3173
+ description?: string | null | undefined;
3174
+ }, {
3175
+ id: string;
3176
+ phoneNumber: string;
3177
+ description?: string | null | undefined;
3178
+ isPrimary?: boolean | undefined;
3179
+ }>, "many">>>;
2845
3180
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
2846
3181
  office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["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"]>>>;
2847
3182
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -2850,9 +3185,14 @@ export declare const collaborationsContractRouter: {
2850
3185
  lastName: string;
2851
3186
  firstName: string;
2852
3187
  email: string;
2853
- phone: string;
2854
3188
  createdAt: string;
2855
3189
  id: string;
3190
+ phoneNumbers: {
3191
+ id: string;
3192
+ phoneNumber: string;
3193
+ isPrimary: boolean;
3194
+ description?: string | null | undefined;
3195
+ }[];
2856
3196
  updatedAt: string;
2857
3197
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2858
3198
  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;
@@ -2860,10 +3200,15 @@ export declare const collaborationsContractRouter: {
2860
3200
  lastName: string;
2861
3201
  firstName: string;
2862
3202
  email: string;
2863
- phone: string;
2864
3203
  createdAt: string | Date;
2865
3204
  id: string;
2866
3205
  updatedAt: string | Date;
3206
+ phoneNumbers?: {
3207
+ id: string;
3208
+ phoneNumber: string;
3209
+ description?: string | null | undefined;
3210
+ isPrimary?: boolean | undefined;
3211
+ }[] | undefined;
2867
3212
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2868
3213
  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;
2869
3214
  }>>>;
@@ -2873,8 +3218,8 @@ export declare const collaborationsContractRouter: {
2873
3218
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2874
3219
  }, "strip", z.ZodTypeAny, {
2875
3220
  createdAt: string;
2876
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2877
3221
  id: string;
3222
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2878
3223
  updatedAt: string;
2879
3224
  userId: string;
2880
3225
  company?: {
@@ -2885,8 +3230,8 @@ export declare const collaborationsContractRouter: {
2885
3230
  } | null | undefined;
2886
3231
  client?: {
2887
3232
  createdAt: string;
2888
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2889
3233
  id: string;
3234
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2890
3235
  updatedAt: string;
2891
3236
  name: string;
2892
3237
  crn: string | null;
@@ -2908,17 +3253,22 @@ export declare const collaborationsContractRouter: {
2908
3253
  lastName: string;
2909
3254
  firstName: string;
2910
3255
  email: string;
2911
- phone: string;
2912
3256
  createdAt: string;
2913
3257
  id: string;
3258
+ phoneNumbers: {
3259
+ id: string;
3260
+ phoneNumber: string;
3261
+ isPrimary: boolean;
3262
+ description?: string | null | undefined;
3263
+ }[];
2914
3264
  updatedAt: string;
2915
3265
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2916
3266
  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
3267
  } | null | undefined;
2918
3268
  }, {
2919
3269
  createdAt: string | Date;
2920
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2921
3270
  id: string;
3271
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2922
3272
  updatedAt: string | Date;
2923
3273
  userId: string;
2924
3274
  company?: {
@@ -2929,8 +3279,8 @@ export declare const collaborationsContractRouter: {
2929
3279
  } | null | undefined;
2930
3280
  client?: {
2931
3281
  createdAt: string | Date;
2932
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2933
3282
  id: string;
3283
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2934
3284
  updatedAt: string | Date;
2935
3285
  name: string;
2936
3286
  crn: string | null;
@@ -2952,18 +3302,23 @@ export declare const collaborationsContractRouter: {
2952
3302
  lastName: string;
2953
3303
  firstName: string;
2954
3304
  email: string;
2955
- phone: string;
2956
3305
  createdAt: string | Date;
2957
3306
  id: string;
2958
3307
  updatedAt: string | Date;
3308
+ phoneNumbers?: {
3309
+ id: string;
3310
+ phoneNumber: string;
3311
+ description?: string | null | undefined;
3312
+ isPrimary?: boolean | undefined;
3313
+ }[] | undefined;
2959
3314
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2960
3315
  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;
2961
3316
  } | null | undefined;
2962
3317
  }>>>;
2963
3318
  }, "strip", z.ZodTypeAny, {
2964
3319
  createdAt: string;
2965
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2966
3320
  id: string;
3321
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2967
3322
  updatedAt: string;
2968
3323
  userId: string;
2969
3324
  company?: {
@@ -2974,8 +3329,8 @@ export declare const collaborationsContractRouter: {
2974
3329
  } | null | undefined;
2975
3330
  client?: {
2976
3331
  createdAt: string;
2977
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2978
3332
  id: string;
3333
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2979
3334
  updatedAt: string;
2980
3335
  name: string;
2981
3336
  crn: string | null;
@@ -2997,17 +3352,22 @@ export declare const collaborationsContractRouter: {
2997
3352
  lastName: string;
2998
3353
  firstName: string;
2999
3354
  email: string;
3000
- phone: string;
3001
3355
  createdAt: string;
3002
3356
  id: string;
3357
+ phoneNumbers: {
3358
+ id: string;
3359
+ phoneNumber: string;
3360
+ isPrimary: boolean;
3361
+ description?: string | null | undefined;
3362
+ }[];
3003
3363
  updatedAt: string;
3004
3364
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3005
3365
  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
3366
  } | null | undefined;
3007
3367
  newCollaboration?: {
3008
3368
  createdAt: string;
3009
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3010
3369
  id: string;
3370
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3011
3371
  updatedAt: string;
3012
3372
  userId: string;
3013
3373
  company?: {
@@ -3018,8 +3378,8 @@ export declare const collaborationsContractRouter: {
3018
3378
  } | null | undefined;
3019
3379
  client?: {
3020
3380
  createdAt: string;
3021
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3022
3381
  id: string;
3382
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3023
3383
  updatedAt: string;
3024
3384
  name: string;
3025
3385
  crn: string | null;
@@ -3041,9 +3401,14 @@ export declare const collaborationsContractRouter: {
3041
3401
  lastName: string;
3042
3402
  firstName: string;
3043
3403
  email: string;
3044
- phone: string;
3045
3404
  createdAt: string;
3046
3405
  id: string;
3406
+ phoneNumbers: {
3407
+ id: string;
3408
+ phoneNumber: string;
3409
+ isPrimary: boolean;
3410
+ description?: string | null | undefined;
3411
+ }[];
3047
3412
  updatedAt: string;
3048
3413
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3049
3414
  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;
@@ -3051,8 +3416,8 @@ export declare const collaborationsContractRouter: {
3051
3416
  } | null | undefined;
3052
3417
  }, {
3053
3418
  createdAt: string | Date;
3054
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3055
3419
  id: string;
3420
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3056
3421
  updatedAt: string | Date;
3057
3422
  userId: string;
3058
3423
  company?: {
@@ -3063,8 +3428,8 @@ export declare const collaborationsContractRouter: {
3063
3428
  } | null | undefined;
3064
3429
  client?: {
3065
3430
  createdAt: string | Date;
3066
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3067
3431
  id: string;
3432
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3068
3433
  updatedAt: string | Date;
3069
3434
  name: string;
3070
3435
  crn: string | null;
@@ -3086,17 +3451,22 @@ export declare const collaborationsContractRouter: {
3086
3451
  lastName: string;
3087
3452
  firstName: string;
3088
3453
  email: string;
3089
- phone: string;
3090
3454
  createdAt: string | Date;
3091
3455
  id: string;
3092
3456
  updatedAt: string | Date;
3457
+ phoneNumbers?: {
3458
+ id: string;
3459
+ phoneNumber: string;
3460
+ description?: string | null | undefined;
3461
+ isPrimary?: boolean | undefined;
3462
+ }[] | undefined;
3093
3463
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3094
3464
  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
3465
  } | null | undefined;
3096
3466
  newCollaboration?: {
3097
3467
  createdAt: string | Date;
3098
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3099
3468
  id: string;
3469
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3100
3470
  updatedAt: string | Date;
3101
3471
  userId: string;
3102
3472
  company?: {
@@ -3107,8 +3477,8 @@ export declare const collaborationsContractRouter: {
3107
3477
  } | null | undefined;
3108
3478
  client?: {
3109
3479
  createdAt: string | Date;
3110
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3111
3480
  id: string;
3481
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3112
3482
  updatedAt: string | Date;
3113
3483
  name: string;
3114
3484
  crn: string | null;
@@ -3130,10 +3500,15 @@ export declare const collaborationsContractRouter: {
3130
3500
  lastName: string;
3131
3501
  firstName: string;
3132
3502
  email: string;
3133
- phone: string;
3134
3503
  createdAt: string | Date;
3135
3504
  id: string;
3136
3505
  updatedAt: string | Date;
3506
+ phoneNumbers?: {
3507
+ id: string;
3508
+ phoneNumber: string;
3509
+ description?: string | null | undefined;
3510
+ isPrimary?: boolean | undefined;
3511
+ }[] | undefined;
3137
3512
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3138
3513
  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;
3139
3514
  } | null | undefined;
@@ -3148,8 +3523,8 @@ export declare const collaborationsContractRouter: {
3148
3523
  limit: number;
3149
3524
  items: {
3150
3525
  createdAt: string;
3151
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3152
3526
  id: string;
3527
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3153
3528
  updatedAt: string;
3154
3529
  userId: string;
3155
3530
  company?: {
@@ -3160,8 +3535,8 @@ export declare const collaborationsContractRouter: {
3160
3535
  } | null | undefined;
3161
3536
  client?: {
3162
3537
  createdAt: string;
3163
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3164
3538
  id: string;
3539
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3165
3540
  updatedAt: string;
3166
3541
  name: string;
3167
3542
  crn: string | null;
@@ -3183,17 +3558,22 @@ export declare const collaborationsContractRouter: {
3183
3558
  lastName: string;
3184
3559
  firstName: string;
3185
3560
  email: string;
3186
- phone: string;
3187
3561
  createdAt: string;
3188
3562
  id: string;
3563
+ phoneNumbers: {
3564
+ id: string;
3565
+ phoneNumber: string;
3566
+ isPrimary: boolean;
3567
+ description?: string | null | undefined;
3568
+ }[];
3189
3569
  updatedAt: string;
3190
3570
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3191
3571
  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
3572
  } | null | undefined;
3193
3573
  newCollaboration?: {
3194
3574
  createdAt: string;
3195
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3196
3575
  id: string;
3576
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3197
3577
  updatedAt: string;
3198
3578
  userId: string;
3199
3579
  company?: {
@@ -3204,8 +3584,8 @@ export declare const collaborationsContractRouter: {
3204
3584
  } | null | undefined;
3205
3585
  client?: {
3206
3586
  createdAt: string;
3207
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3208
3587
  id: string;
3588
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3209
3589
  updatedAt: string;
3210
3590
  name: string;
3211
3591
  crn: string | null;
@@ -3227,9 +3607,14 @@ export declare const collaborationsContractRouter: {
3227
3607
  lastName: string;
3228
3608
  firstName: string;
3229
3609
  email: string;
3230
- phone: string;
3231
3610
  createdAt: string;
3232
3611
  id: string;
3612
+ phoneNumbers: {
3613
+ id: string;
3614
+ phoneNumber: string;
3615
+ isPrimary: boolean;
3616
+ description?: string | null | undefined;
3617
+ }[];
3233
3618
  updatedAt: string;
3234
3619
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3235
3620
  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;
@@ -3244,8 +3629,8 @@ export declare const collaborationsContractRouter: {
3244
3629
  limit: number;
3245
3630
  items: {
3246
3631
  createdAt: string | Date;
3247
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3248
3632
  id: string;
3633
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3249
3634
  updatedAt: string | Date;
3250
3635
  userId: string;
3251
3636
  company?: {
@@ -3256,8 +3641,8 @@ export declare const collaborationsContractRouter: {
3256
3641
  } | null | undefined;
3257
3642
  client?: {
3258
3643
  createdAt: string | Date;
3259
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3260
3644
  id: string;
3645
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3261
3646
  updatedAt: string | Date;
3262
3647
  name: string;
3263
3648
  crn: string | null;
@@ -3279,17 +3664,22 @@ export declare const collaborationsContractRouter: {
3279
3664
  lastName: string;
3280
3665
  firstName: string;
3281
3666
  email: string;
3282
- phone: string;
3283
3667
  createdAt: string | Date;
3284
3668
  id: string;
3285
3669
  updatedAt: string | Date;
3670
+ phoneNumbers?: {
3671
+ id: string;
3672
+ phoneNumber: string;
3673
+ description?: string | null | undefined;
3674
+ isPrimary?: boolean | undefined;
3675
+ }[] | undefined;
3286
3676
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3287
3677
  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
3678
  } | null | undefined;
3289
3679
  newCollaboration?: {
3290
3680
  createdAt: string | Date;
3291
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3292
3681
  id: string;
3682
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3293
3683
  updatedAt: string | Date;
3294
3684
  userId: string;
3295
3685
  company?: {
@@ -3300,8 +3690,8 @@ export declare const collaborationsContractRouter: {
3300
3690
  } | null | undefined;
3301
3691
  client?: {
3302
3692
  createdAt: string | Date;
3303
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3304
3693
  id: string;
3694
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3305
3695
  updatedAt: string | Date;
3306
3696
  name: string;
3307
3697
  crn: string | null;
@@ -3323,10 +3713,15 @@ export declare const collaborationsContractRouter: {
3323
3713
  lastName: string;
3324
3714
  firstName: string;
3325
3715
  email: string;
3326
- phone: string;
3327
3716
  createdAt: string | Date;
3328
3717
  id: string;
3329
3718
  updatedAt: string | Date;
3719
+ phoneNumbers?: {
3720
+ id: string;
3721
+ phoneNumber: string;
3722
+ description?: string | null | undefined;
3723
+ isPrimary?: boolean | undefined;
3724
+ }[] | undefined;
3330
3725
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3331
3726
  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;
3332
3727
  } | null | undefined;
@@ -3685,8 +4080,8 @@ export declare const collaborationsContractRouter: {
3685
4080
  }>>>;
3686
4081
  }, "strip", z.ZodTypeAny, {
3687
4082
  createdAt: string;
3688
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3689
4083
  id: string;
4084
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3690
4085
  updatedAt: string;
3691
4086
  name: string;
3692
4087
  crn: string | null;
@@ -3705,8 +4100,8 @@ export declare const collaborationsContractRouter: {
3705
4100
  } | null | undefined;
3706
4101
  }, {
3707
4102
  createdAt: string | Date;
3708
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3709
4103
  id: string;
4104
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3710
4105
  updatedAt: string | Date;
3711
4106
  name: string;
3712
4107
  crn: string | null;
@@ -3729,7 +4124,22 @@ export declare const collaborationsContractRouter: {
3729
4124
  firstName: z.ZodString;
3730
4125
  lastName: z.ZodString;
3731
4126
  email: z.ZodString;
3732
- phone: z.ZodString;
4127
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
4128
+ id: z.ZodString;
4129
+ phoneNumber: z.ZodString;
4130
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4131
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
4132
+ }, "strip", z.ZodTypeAny, {
4133
+ id: string;
4134
+ phoneNumber: string;
4135
+ isPrimary: boolean;
4136
+ description?: string | null | undefined;
4137
+ }, {
4138
+ id: string;
4139
+ phoneNumber: string;
4140
+ description?: string | null | undefined;
4141
+ isPrimary?: boolean | undefined;
4142
+ }>, "many">>>;
3733
4143
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
3734
4144
  office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["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"]>>>;
3735
4145
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -3738,9 +4148,14 @@ export declare const collaborationsContractRouter: {
3738
4148
  lastName: string;
3739
4149
  firstName: string;
3740
4150
  email: string;
3741
- phone: string;
3742
4151
  createdAt: string;
3743
4152
  id: string;
4153
+ phoneNumbers: {
4154
+ id: string;
4155
+ phoneNumber: string;
4156
+ isPrimary: boolean;
4157
+ description?: string | null | undefined;
4158
+ }[];
3744
4159
  updatedAt: string;
3745
4160
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3746
4161
  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;
@@ -3748,10 +4163,15 @@ export declare const collaborationsContractRouter: {
3748
4163
  lastName: string;
3749
4164
  firstName: string;
3750
4165
  email: string;
3751
- phone: string;
3752
4166
  createdAt: string | Date;
3753
4167
  id: string;
3754
4168
  updatedAt: string | Date;
4169
+ phoneNumbers?: {
4170
+ id: string;
4171
+ phoneNumber: string;
4172
+ description?: string | null | undefined;
4173
+ isPrimary?: boolean | undefined;
4174
+ }[] | undefined;
3755
4175
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3756
4176
  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;
3757
4177
  }>>>;
@@ -3814,8 +4234,8 @@ export declare const collaborationsContractRouter: {
3814
4234
  }>>>;
3815
4235
  }, "strip", z.ZodTypeAny, {
3816
4236
  createdAt: string;
3817
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3818
4237
  id: string;
4238
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3819
4239
  updatedAt: string;
3820
4240
  name: string;
3821
4241
  crn: string | null;
@@ -3834,8 +4254,8 @@ export declare const collaborationsContractRouter: {
3834
4254
  } | null | undefined;
3835
4255
  }, {
3836
4256
  createdAt: string | Date;
3837
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3838
4257
  id: string;
4258
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3839
4259
  updatedAt: string | Date;
3840
4260
  name: string;
3841
4261
  crn: string | null;
@@ -3858,7 +4278,22 @@ export declare const collaborationsContractRouter: {
3858
4278
  firstName: z.ZodString;
3859
4279
  lastName: z.ZodString;
3860
4280
  email: z.ZodString;
3861
- phone: z.ZodString;
4281
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
4282
+ id: z.ZodString;
4283
+ phoneNumber: z.ZodString;
4284
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4285
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
4286
+ }, "strip", z.ZodTypeAny, {
4287
+ id: string;
4288
+ phoneNumber: string;
4289
+ isPrimary: boolean;
4290
+ description?: string | null | undefined;
4291
+ }, {
4292
+ id: string;
4293
+ phoneNumber: string;
4294
+ description?: string | null | undefined;
4295
+ isPrimary?: boolean | undefined;
4296
+ }>, "many">>>;
3862
4297
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
3863
4298
  office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["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"]>>>;
3864
4299
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -3867,9 +4302,14 @@ export declare const collaborationsContractRouter: {
3867
4302
  lastName: string;
3868
4303
  firstName: string;
3869
4304
  email: string;
3870
- phone: string;
3871
4305
  createdAt: string;
3872
4306
  id: string;
4307
+ phoneNumbers: {
4308
+ id: string;
4309
+ phoneNumber: string;
4310
+ isPrimary: boolean;
4311
+ description?: string | null | undefined;
4312
+ }[];
3873
4313
  updatedAt: string;
3874
4314
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3875
4315
  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;
@@ -3877,10 +4317,15 @@ export declare const collaborationsContractRouter: {
3877
4317
  lastName: string;
3878
4318
  firstName: string;
3879
4319
  email: string;
3880
- phone: string;
3881
4320
  createdAt: string | Date;
3882
4321
  id: string;
3883
4322
  updatedAt: string | Date;
4323
+ phoneNumbers?: {
4324
+ id: string;
4325
+ phoneNumber: string;
4326
+ description?: string | null | undefined;
4327
+ isPrimary?: boolean | undefined;
4328
+ }[] | undefined;
3884
4329
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3885
4330
  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;
3886
4331
  }>>>;
@@ -3890,8 +4335,8 @@ export declare const collaborationsContractRouter: {
3890
4335
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3891
4336
  }, "strip", z.ZodTypeAny, {
3892
4337
  createdAt: string;
3893
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3894
4338
  id: string;
4339
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3895
4340
  updatedAt: string;
3896
4341
  userId: string;
3897
4342
  company?: {
@@ -3902,8 +4347,8 @@ export declare const collaborationsContractRouter: {
3902
4347
  } | null | undefined;
3903
4348
  client?: {
3904
4349
  createdAt: string;
3905
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3906
4350
  id: string;
4351
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3907
4352
  updatedAt: string;
3908
4353
  name: string;
3909
4354
  crn: string | null;
@@ -3925,17 +4370,22 @@ export declare const collaborationsContractRouter: {
3925
4370
  lastName: string;
3926
4371
  firstName: string;
3927
4372
  email: string;
3928
- phone: string;
3929
4373
  createdAt: string;
3930
4374
  id: string;
4375
+ phoneNumbers: {
4376
+ id: string;
4377
+ phoneNumber: string;
4378
+ isPrimary: boolean;
4379
+ description?: string | null | undefined;
4380
+ }[];
3931
4381
  updatedAt: string;
3932
4382
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3933
4383
  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
4384
  } | null | undefined;
3935
4385
  }, {
3936
4386
  createdAt: string | Date;
3937
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3938
4387
  id: string;
4388
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3939
4389
  updatedAt: string | Date;
3940
4390
  userId: string;
3941
4391
  company?: {
@@ -3946,8 +4396,8 @@ export declare const collaborationsContractRouter: {
3946
4396
  } | null | undefined;
3947
4397
  client?: {
3948
4398
  createdAt: string | Date;
3949
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3950
4399
  id: string;
4400
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3951
4401
  updatedAt: string | Date;
3952
4402
  name: string;
3953
4403
  crn: string | null;
@@ -3969,18 +4419,23 @@ export declare const collaborationsContractRouter: {
3969
4419
  lastName: string;
3970
4420
  firstName: string;
3971
4421
  email: string;
3972
- phone: string;
3973
4422
  createdAt: string | Date;
3974
4423
  id: string;
3975
4424
  updatedAt: string | Date;
4425
+ phoneNumbers?: {
4426
+ id: string;
4427
+ phoneNumber: string;
4428
+ description?: string | null | undefined;
4429
+ isPrimary?: boolean | undefined;
4430
+ }[] | undefined;
3976
4431
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3977
4432
  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;
3978
4433
  } | null | undefined;
3979
4434
  }>>>;
3980
4435
  }, "strip", z.ZodTypeAny, {
3981
4436
  createdAt: string;
3982
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3983
4437
  id: string;
4438
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3984
4439
  updatedAt: string;
3985
4440
  userId: string;
3986
4441
  company?: {
@@ -3991,8 +4446,8 @@ export declare const collaborationsContractRouter: {
3991
4446
  } | null | undefined;
3992
4447
  client?: {
3993
4448
  createdAt: string;
3994
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3995
4449
  id: string;
4450
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3996
4451
  updatedAt: string;
3997
4452
  name: string;
3998
4453
  crn: string | null;
@@ -4014,17 +4469,22 @@ export declare const collaborationsContractRouter: {
4014
4469
  lastName: string;
4015
4470
  firstName: string;
4016
4471
  email: string;
4017
- phone: string;
4018
4472
  createdAt: string;
4019
4473
  id: string;
4474
+ phoneNumbers: {
4475
+ id: string;
4476
+ phoneNumber: string;
4477
+ isPrimary: boolean;
4478
+ description?: string | null | undefined;
4479
+ }[];
4020
4480
  updatedAt: string;
4021
4481
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4022
4482
  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
4483
  } | null | undefined;
4024
4484
  newCollaboration?: {
4025
4485
  createdAt: string;
4026
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4027
4486
  id: string;
4487
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4028
4488
  updatedAt: string;
4029
4489
  userId: string;
4030
4490
  company?: {
@@ -4035,8 +4495,8 @@ export declare const collaborationsContractRouter: {
4035
4495
  } | null | undefined;
4036
4496
  client?: {
4037
4497
  createdAt: string;
4038
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4039
4498
  id: string;
4499
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4040
4500
  updatedAt: string;
4041
4501
  name: string;
4042
4502
  crn: string | null;
@@ -4058,9 +4518,14 @@ export declare const collaborationsContractRouter: {
4058
4518
  lastName: string;
4059
4519
  firstName: string;
4060
4520
  email: string;
4061
- phone: string;
4062
4521
  createdAt: string;
4063
4522
  id: string;
4523
+ phoneNumbers: {
4524
+ id: string;
4525
+ phoneNumber: string;
4526
+ isPrimary: boolean;
4527
+ description?: string | null | undefined;
4528
+ }[];
4064
4529
  updatedAt: string;
4065
4530
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4066
4531
  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;
@@ -4068,8 +4533,8 @@ export declare const collaborationsContractRouter: {
4068
4533
  } | null | undefined;
4069
4534
  }, {
4070
4535
  createdAt: string | Date;
4071
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4072
4536
  id: string;
4537
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4073
4538
  updatedAt: string | Date;
4074
4539
  userId: string;
4075
4540
  company?: {
@@ -4080,8 +4545,8 @@ export declare const collaborationsContractRouter: {
4080
4545
  } | null | undefined;
4081
4546
  client?: {
4082
4547
  createdAt: string | Date;
4083
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4084
4548
  id: string;
4549
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4085
4550
  updatedAt: string | Date;
4086
4551
  name: string;
4087
4552
  crn: string | null;
@@ -4103,17 +4568,22 @@ export declare const collaborationsContractRouter: {
4103
4568
  lastName: string;
4104
4569
  firstName: string;
4105
4570
  email: string;
4106
- phone: string;
4107
4571
  createdAt: string | Date;
4108
4572
  id: string;
4109
4573
  updatedAt: string | Date;
4574
+ phoneNumbers?: {
4575
+ id: string;
4576
+ phoneNumber: string;
4577
+ description?: string | null | undefined;
4578
+ isPrimary?: boolean | undefined;
4579
+ }[] | undefined;
4110
4580
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4111
4581
  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
4582
  } | null | undefined;
4113
4583
  newCollaboration?: {
4114
4584
  createdAt: string | Date;
4115
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4116
4585
  id: string;
4586
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4117
4587
  updatedAt: string | Date;
4118
4588
  userId: string;
4119
4589
  company?: {
@@ -4124,8 +4594,8 @@ export declare const collaborationsContractRouter: {
4124
4594
  } | null | undefined;
4125
4595
  client?: {
4126
4596
  createdAt: string | Date;
4127
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4128
4597
  id: string;
4598
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4129
4599
  updatedAt: string | Date;
4130
4600
  name: string;
4131
4601
  crn: string | null;
@@ -4147,10 +4617,15 @@ export declare const collaborationsContractRouter: {
4147
4617
  lastName: string;
4148
4618
  firstName: string;
4149
4619
  email: string;
4150
- phone: string;
4151
4620
  createdAt: string | Date;
4152
4621
  id: string;
4153
4622
  updatedAt: string | Date;
4623
+ phoneNumbers?: {
4624
+ id: string;
4625
+ phoneNumber: string;
4626
+ description?: string | null | undefined;
4627
+ isPrimary?: boolean | undefined;
4628
+ }[] | undefined;
4154
4629
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4155
4630
  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;
4156
4631
  } | null | undefined;
@@ -4388,8 +4863,8 @@ export declare const collaborationsContractRouter: {
4388
4863
  }>>>;
4389
4864
  }, "strip", z.ZodTypeAny, {
4390
4865
  createdAt: string;
4391
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4392
4866
  id: string;
4867
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4393
4868
  updatedAt: string;
4394
4869
  name: string;
4395
4870
  crn: string | null;
@@ -4408,8 +4883,8 @@ export declare const collaborationsContractRouter: {
4408
4883
  } | null | undefined;
4409
4884
  }, {
4410
4885
  createdAt: string | Date;
4411
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4412
4886
  id: string;
4887
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4413
4888
  updatedAt: string | Date;
4414
4889
  name: string;
4415
4890
  crn: string | null;
@@ -4432,7 +4907,22 @@ export declare const collaborationsContractRouter: {
4432
4907
  firstName: z.ZodString;
4433
4908
  lastName: z.ZodString;
4434
4909
  email: z.ZodString;
4435
- phone: z.ZodString;
4910
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
4911
+ id: z.ZodString;
4912
+ phoneNumber: z.ZodString;
4913
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4914
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
4915
+ }, "strip", z.ZodTypeAny, {
4916
+ id: string;
4917
+ phoneNumber: string;
4918
+ isPrimary: boolean;
4919
+ description?: string | null | undefined;
4920
+ }, {
4921
+ id: string;
4922
+ phoneNumber: string;
4923
+ description?: string | null | undefined;
4924
+ isPrimary?: boolean | undefined;
4925
+ }>, "many">>>;
4436
4926
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
4437
4927
  office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["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"]>>>;
4438
4928
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -4441,9 +4931,14 @@ export declare const collaborationsContractRouter: {
4441
4931
  lastName: string;
4442
4932
  firstName: string;
4443
4933
  email: string;
4444
- phone: string;
4445
4934
  createdAt: string;
4446
4935
  id: string;
4936
+ phoneNumbers: {
4937
+ id: string;
4938
+ phoneNumber: string;
4939
+ isPrimary: boolean;
4940
+ description?: string | null | undefined;
4941
+ }[];
4447
4942
  updatedAt: string;
4448
4943
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4449
4944
  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;
@@ -4451,10 +4946,15 @@ export declare const collaborationsContractRouter: {
4451
4946
  lastName: string;
4452
4947
  firstName: string;
4453
4948
  email: string;
4454
- phone: string;
4455
4949
  createdAt: string | Date;
4456
4950
  id: string;
4457
4951
  updatedAt: string | Date;
4952
+ phoneNumbers?: {
4953
+ id: string;
4954
+ phoneNumber: string;
4955
+ description?: string | null | undefined;
4956
+ isPrimary?: boolean | undefined;
4957
+ }[] | undefined;
4458
4958
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4459
4959
  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;
4460
4960
  }>>>;
@@ -4517,8 +5017,8 @@ export declare const collaborationsContractRouter: {
4517
5017
  }>>>;
4518
5018
  }, "strip", z.ZodTypeAny, {
4519
5019
  createdAt: string;
4520
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4521
5020
  id: string;
5021
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4522
5022
  updatedAt: string;
4523
5023
  name: string;
4524
5024
  crn: string | null;
@@ -4537,8 +5037,8 @@ export declare const collaborationsContractRouter: {
4537
5037
  } | null | undefined;
4538
5038
  }, {
4539
5039
  createdAt: string | Date;
4540
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4541
5040
  id: string;
5041
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4542
5042
  updatedAt: string | Date;
4543
5043
  name: string;
4544
5044
  crn: string | null;
@@ -4561,7 +5061,22 @@ export declare const collaborationsContractRouter: {
4561
5061
  firstName: z.ZodString;
4562
5062
  lastName: z.ZodString;
4563
5063
  email: z.ZodString;
4564
- phone: z.ZodString;
5064
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
5065
+ id: z.ZodString;
5066
+ phoneNumber: z.ZodString;
5067
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5068
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
5069
+ }, "strip", z.ZodTypeAny, {
5070
+ id: string;
5071
+ phoneNumber: string;
5072
+ isPrimary: boolean;
5073
+ description?: string | null | undefined;
5074
+ }, {
5075
+ id: string;
5076
+ phoneNumber: string;
5077
+ description?: string | null | undefined;
5078
+ isPrimary?: boolean | undefined;
5079
+ }>, "many">>>;
4565
5080
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
4566
5081
  office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["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"]>>>;
4567
5082
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -4570,9 +5085,14 @@ export declare const collaborationsContractRouter: {
4570
5085
  lastName: string;
4571
5086
  firstName: string;
4572
5087
  email: string;
4573
- phone: string;
4574
5088
  createdAt: string;
4575
5089
  id: string;
5090
+ phoneNumbers: {
5091
+ id: string;
5092
+ phoneNumber: string;
5093
+ isPrimary: boolean;
5094
+ description?: string | null | undefined;
5095
+ }[];
4576
5096
  updatedAt: string;
4577
5097
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4578
5098
  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;
@@ -4580,10 +5100,15 @@ export declare const collaborationsContractRouter: {
4580
5100
  lastName: string;
4581
5101
  firstName: string;
4582
5102
  email: string;
4583
- phone: string;
4584
5103
  createdAt: string | Date;
4585
5104
  id: string;
4586
5105
  updatedAt: string | Date;
5106
+ phoneNumbers?: {
5107
+ id: string;
5108
+ phoneNumber: string;
5109
+ description?: string | null | undefined;
5110
+ isPrimary?: boolean | undefined;
5111
+ }[] | undefined;
4587
5112
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4588
5113
  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;
4589
5114
  }>>>;
@@ -4593,8 +5118,8 @@ export declare const collaborationsContractRouter: {
4593
5118
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4594
5119
  }, "strip", z.ZodTypeAny, {
4595
5120
  createdAt: string;
4596
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4597
5121
  id: string;
5122
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4598
5123
  updatedAt: string;
4599
5124
  userId: string;
4600
5125
  company?: {
@@ -4605,8 +5130,8 @@ export declare const collaborationsContractRouter: {
4605
5130
  } | null | undefined;
4606
5131
  client?: {
4607
5132
  createdAt: string;
4608
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4609
5133
  id: string;
5134
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4610
5135
  updatedAt: string;
4611
5136
  name: string;
4612
5137
  crn: string | null;
@@ -4628,17 +5153,22 @@ export declare const collaborationsContractRouter: {
4628
5153
  lastName: string;
4629
5154
  firstName: string;
4630
5155
  email: string;
4631
- phone: string;
4632
5156
  createdAt: string;
4633
5157
  id: string;
5158
+ phoneNumbers: {
5159
+ id: string;
5160
+ phoneNumber: string;
5161
+ isPrimary: boolean;
5162
+ description?: string | null | undefined;
5163
+ }[];
4634
5164
  updatedAt: string;
4635
5165
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4636
5166
  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
5167
  } | null | undefined;
4638
5168
  }, {
4639
5169
  createdAt: string | Date;
4640
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4641
5170
  id: string;
5171
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4642
5172
  updatedAt: string | Date;
4643
5173
  userId: string;
4644
5174
  company?: {
@@ -4649,8 +5179,8 @@ export declare const collaborationsContractRouter: {
4649
5179
  } | null | undefined;
4650
5180
  client?: {
4651
5181
  createdAt: string | Date;
4652
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4653
5182
  id: string;
5183
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4654
5184
  updatedAt: string | Date;
4655
5185
  name: string;
4656
5186
  crn: string | null;
@@ -4672,18 +5202,23 @@ export declare const collaborationsContractRouter: {
4672
5202
  lastName: string;
4673
5203
  firstName: string;
4674
5204
  email: string;
4675
- phone: string;
4676
5205
  createdAt: string | Date;
4677
5206
  id: string;
4678
5207
  updatedAt: string | Date;
5208
+ phoneNumbers?: {
5209
+ id: string;
5210
+ phoneNumber: string;
5211
+ description?: string | null | undefined;
5212
+ isPrimary?: boolean | undefined;
5213
+ }[] | undefined;
4679
5214
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4680
5215
  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;
4681
5216
  } | null | undefined;
4682
5217
  }>>>;
4683
5218
  }, "strip", z.ZodTypeAny, {
4684
5219
  createdAt: string;
4685
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4686
5220
  id: string;
5221
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4687
5222
  updatedAt: string;
4688
5223
  userId: string;
4689
5224
  company?: {
@@ -4694,8 +5229,8 @@ export declare const collaborationsContractRouter: {
4694
5229
  } | null | undefined;
4695
5230
  client?: {
4696
5231
  createdAt: string;
4697
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4698
5232
  id: string;
5233
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4699
5234
  updatedAt: string;
4700
5235
  name: string;
4701
5236
  crn: string | null;
@@ -4717,17 +5252,22 @@ export declare const collaborationsContractRouter: {
4717
5252
  lastName: string;
4718
5253
  firstName: string;
4719
5254
  email: string;
4720
- phone: string;
4721
5255
  createdAt: string;
4722
5256
  id: string;
5257
+ phoneNumbers: {
5258
+ id: string;
5259
+ phoneNumber: string;
5260
+ isPrimary: boolean;
5261
+ description?: string | null | undefined;
5262
+ }[];
4723
5263
  updatedAt: string;
4724
5264
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4725
5265
  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
5266
  } | null | undefined;
4727
5267
  newCollaboration?: {
4728
5268
  createdAt: string;
4729
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4730
5269
  id: string;
5270
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4731
5271
  updatedAt: string;
4732
5272
  userId: string;
4733
5273
  company?: {
@@ -4738,8 +5278,8 @@ export declare const collaborationsContractRouter: {
4738
5278
  } | null | undefined;
4739
5279
  client?: {
4740
5280
  createdAt: string;
4741
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4742
5281
  id: string;
5282
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4743
5283
  updatedAt: string;
4744
5284
  name: string;
4745
5285
  crn: string | null;
@@ -4761,9 +5301,14 @@ export declare const collaborationsContractRouter: {
4761
5301
  lastName: string;
4762
5302
  firstName: string;
4763
5303
  email: string;
4764
- phone: string;
4765
5304
  createdAt: string;
4766
5305
  id: string;
5306
+ phoneNumbers: {
5307
+ id: string;
5308
+ phoneNumber: string;
5309
+ isPrimary: boolean;
5310
+ description?: string | null | undefined;
5311
+ }[];
4767
5312
  updatedAt: string;
4768
5313
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4769
5314
  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;
@@ -4771,8 +5316,8 @@ export declare const collaborationsContractRouter: {
4771
5316
  } | null | undefined;
4772
5317
  }, {
4773
5318
  createdAt: string | Date;
4774
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4775
5319
  id: string;
5320
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4776
5321
  updatedAt: string | Date;
4777
5322
  userId: string;
4778
5323
  company?: {
@@ -4783,8 +5328,8 @@ export declare const collaborationsContractRouter: {
4783
5328
  } | null | undefined;
4784
5329
  client?: {
4785
5330
  createdAt: string | Date;
4786
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4787
5331
  id: string;
5332
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4788
5333
  updatedAt: string | Date;
4789
5334
  name: string;
4790
5335
  crn: string | null;
@@ -4806,17 +5351,22 @@ export declare const collaborationsContractRouter: {
4806
5351
  lastName: string;
4807
5352
  firstName: string;
4808
5353
  email: string;
4809
- phone: string;
4810
5354
  createdAt: string | Date;
4811
5355
  id: string;
4812
5356
  updatedAt: string | Date;
5357
+ phoneNumbers?: {
5358
+ id: string;
5359
+ phoneNumber: string;
5360
+ description?: string | null | undefined;
5361
+ isPrimary?: boolean | undefined;
5362
+ }[] | undefined;
4813
5363
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4814
5364
  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
5365
  } | null | undefined;
4816
5366
  newCollaboration?: {
4817
5367
  createdAt: string | Date;
4818
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4819
5368
  id: string;
5369
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4820
5370
  updatedAt: string | Date;
4821
5371
  userId: string;
4822
5372
  company?: {
@@ -4827,8 +5377,8 @@ export declare const collaborationsContractRouter: {
4827
5377
  } | null | undefined;
4828
5378
  client?: {
4829
5379
  createdAt: string | Date;
4830
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4831
5380
  id: string;
5381
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4832
5382
  updatedAt: string | Date;
4833
5383
  name: string;
4834
5384
  crn: string | null;
@@ -4850,10 +5400,15 @@ export declare const collaborationsContractRouter: {
4850
5400
  lastName: string;
4851
5401
  firstName: string;
4852
5402
  email: string;
4853
- phone: string;
4854
5403
  createdAt: string | Date;
4855
5404
  id: string;
4856
5405
  updatedAt: string | Date;
5406
+ phoneNumbers?: {
5407
+ id: string;
5408
+ phoneNumber: string;
5409
+ description?: string | null | undefined;
5410
+ isPrimary?: boolean | undefined;
5411
+ }[] | undefined;
4857
5412
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4858
5413
  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;
4859
5414
  } | null | undefined;
@@ -5269,8 +5824,8 @@ export declare const collaborationsContractRouter: {
5269
5824
  }>>>;
5270
5825
  }, "strip", z.ZodTypeAny, {
5271
5826
  createdAt: string;
5272
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5273
5827
  id: string;
5828
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5274
5829
  updatedAt: string;
5275
5830
  name: string;
5276
5831
  crn: string | null;
@@ -5289,8 +5844,8 @@ export declare const collaborationsContractRouter: {
5289
5844
  } | null | undefined;
5290
5845
  }, {
5291
5846
  createdAt: string | Date;
5292
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5293
5847
  id: string;
5848
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5294
5849
  updatedAt: string | Date;
5295
5850
  name: string;
5296
5851
  crn: string | null;
@@ -5313,7 +5868,22 @@ export declare const collaborationsContractRouter: {
5313
5868
  firstName: z.ZodString;
5314
5869
  lastName: z.ZodString;
5315
5870
  email: z.ZodString;
5316
- phone: z.ZodString;
5871
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
5872
+ id: z.ZodString;
5873
+ phoneNumber: z.ZodString;
5874
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5875
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
5876
+ }, "strip", z.ZodTypeAny, {
5877
+ id: string;
5878
+ phoneNumber: string;
5879
+ isPrimary: boolean;
5880
+ description?: string | null | undefined;
5881
+ }, {
5882
+ id: string;
5883
+ phoneNumber: string;
5884
+ description?: string | null | undefined;
5885
+ isPrimary?: boolean | undefined;
5886
+ }>, "many">>>;
5317
5887
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
5318
5888
  office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["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"]>>>;
5319
5889
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -5322,9 +5892,14 @@ export declare const collaborationsContractRouter: {
5322
5892
  lastName: string;
5323
5893
  firstName: string;
5324
5894
  email: string;
5325
- phone: string;
5326
5895
  createdAt: string;
5327
5896
  id: string;
5897
+ phoneNumbers: {
5898
+ id: string;
5899
+ phoneNumber: string;
5900
+ isPrimary: boolean;
5901
+ description?: string | null | undefined;
5902
+ }[];
5328
5903
  updatedAt: string;
5329
5904
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5330
5905
  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;
@@ -5332,10 +5907,15 @@ export declare const collaborationsContractRouter: {
5332
5907
  lastName: string;
5333
5908
  firstName: string;
5334
5909
  email: string;
5335
- phone: string;
5336
5910
  createdAt: string | Date;
5337
5911
  id: string;
5338
5912
  updatedAt: string | Date;
5913
+ phoneNumbers?: {
5914
+ id: string;
5915
+ phoneNumber: string;
5916
+ description?: string | null | undefined;
5917
+ isPrimary?: boolean | undefined;
5918
+ }[] | undefined;
5339
5919
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5340
5920
  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;
5341
5921
  }>>>;
@@ -5398,8 +5978,8 @@ export declare const collaborationsContractRouter: {
5398
5978
  }>>>;
5399
5979
  }, "strip", z.ZodTypeAny, {
5400
5980
  createdAt: string;
5401
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5402
5981
  id: string;
5982
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5403
5983
  updatedAt: string;
5404
5984
  name: string;
5405
5985
  crn: string | null;
@@ -5418,8 +5998,8 @@ export declare const collaborationsContractRouter: {
5418
5998
  } | null | undefined;
5419
5999
  }, {
5420
6000
  createdAt: string | Date;
5421
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5422
6001
  id: string;
6002
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5423
6003
  updatedAt: string | Date;
5424
6004
  name: string;
5425
6005
  crn: string | null;
@@ -5442,7 +6022,22 @@ export declare const collaborationsContractRouter: {
5442
6022
  firstName: z.ZodString;
5443
6023
  lastName: z.ZodString;
5444
6024
  email: z.ZodString;
5445
- phone: z.ZodString;
6025
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
6026
+ id: z.ZodString;
6027
+ phoneNumber: z.ZodString;
6028
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6029
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
6030
+ }, "strip", z.ZodTypeAny, {
6031
+ id: string;
6032
+ phoneNumber: string;
6033
+ isPrimary: boolean;
6034
+ description?: string | null | undefined;
6035
+ }, {
6036
+ id: string;
6037
+ phoneNumber: string;
6038
+ description?: string | null | undefined;
6039
+ isPrimary?: boolean | undefined;
6040
+ }>, "many">>>;
5446
6041
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
5447
6042
  office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["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"]>>>;
5448
6043
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -5451,9 +6046,14 @@ export declare const collaborationsContractRouter: {
5451
6046
  lastName: string;
5452
6047
  firstName: string;
5453
6048
  email: string;
5454
- phone: string;
5455
6049
  createdAt: string;
5456
6050
  id: string;
6051
+ phoneNumbers: {
6052
+ id: string;
6053
+ phoneNumber: string;
6054
+ isPrimary: boolean;
6055
+ description?: string | null | undefined;
6056
+ }[];
5457
6057
  updatedAt: string;
5458
6058
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5459
6059
  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;
@@ -5461,10 +6061,15 @@ export declare const collaborationsContractRouter: {
5461
6061
  lastName: string;
5462
6062
  firstName: string;
5463
6063
  email: string;
5464
- phone: string;
5465
6064
  createdAt: string | Date;
5466
6065
  id: string;
5467
6066
  updatedAt: string | Date;
6067
+ phoneNumbers?: {
6068
+ id: string;
6069
+ phoneNumber: string;
6070
+ description?: string | null | undefined;
6071
+ isPrimary?: boolean | undefined;
6072
+ }[] | undefined;
5468
6073
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5469
6074
  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;
5470
6075
  }>>>;
@@ -5474,8 +6079,8 @@ export declare const collaborationsContractRouter: {
5474
6079
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
5475
6080
  }, "strip", z.ZodTypeAny, {
5476
6081
  createdAt: string;
5477
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5478
6082
  id: string;
6083
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5479
6084
  updatedAt: string;
5480
6085
  userId: string;
5481
6086
  company?: {
@@ -5486,8 +6091,8 @@ export declare const collaborationsContractRouter: {
5486
6091
  } | null | undefined;
5487
6092
  client?: {
5488
6093
  createdAt: string;
5489
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5490
6094
  id: string;
6095
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5491
6096
  updatedAt: string;
5492
6097
  name: string;
5493
6098
  crn: string | null;
@@ -5509,17 +6114,22 @@ export declare const collaborationsContractRouter: {
5509
6114
  lastName: string;
5510
6115
  firstName: string;
5511
6116
  email: string;
5512
- phone: string;
5513
6117
  createdAt: string;
5514
6118
  id: string;
6119
+ phoneNumbers: {
6120
+ id: string;
6121
+ phoneNumber: string;
6122
+ isPrimary: boolean;
6123
+ description?: string | null | undefined;
6124
+ }[];
5515
6125
  updatedAt: string;
5516
6126
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5517
6127
  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
6128
  } | null | undefined;
5519
6129
  }, {
5520
6130
  createdAt: string | Date;
5521
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5522
6131
  id: string;
6132
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5523
6133
  updatedAt: string | Date;
5524
6134
  userId: string;
5525
6135
  company?: {
@@ -5530,8 +6140,8 @@ export declare const collaborationsContractRouter: {
5530
6140
  } | null | undefined;
5531
6141
  client?: {
5532
6142
  createdAt: string | Date;
5533
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5534
6143
  id: string;
6144
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5535
6145
  updatedAt: string | Date;
5536
6146
  name: string;
5537
6147
  crn: string | null;
@@ -5553,18 +6163,23 @@ export declare const collaborationsContractRouter: {
5553
6163
  lastName: string;
5554
6164
  firstName: string;
5555
6165
  email: string;
5556
- phone: string;
5557
6166
  createdAt: string | Date;
5558
6167
  id: string;
5559
6168
  updatedAt: string | Date;
6169
+ phoneNumbers?: {
6170
+ id: string;
6171
+ phoneNumber: string;
6172
+ description?: string | null | undefined;
6173
+ isPrimary?: boolean | undefined;
6174
+ }[] | undefined;
5560
6175
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5561
6176
  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;
5562
6177
  } | null | undefined;
5563
6178
  }>>>;
5564
6179
  }, "strip", z.ZodTypeAny, {
5565
6180
  createdAt: string;
5566
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5567
6181
  id: string;
6182
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5568
6183
  updatedAt: string;
5569
6184
  userId: string;
5570
6185
  company?: {
@@ -5575,8 +6190,8 @@ export declare const collaborationsContractRouter: {
5575
6190
  } | null | undefined;
5576
6191
  client?: {
5577
6192
  createdAt: string;
5578
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5579
6193
  id: string;
6194
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5580
6195
  updatedAt: string;
5581
6196
  name: string;
5582
6197
  crn: string | null;
@@ -5598,17 +6213,22 @@ export declare const collaborationsContractRouter: {
5598
6213
  lastName: string;
5599
6214
  firstName: string;
5600
6215
  email: string;
5601
- phone: string;
5602
6216
  createdAt: string;
5603
6217
  id: string;
6218
+ phoneNumbers: {
6219
+ id: string;
6220
+ phoneNumber: string;
6221
+ isPrimary: boolean;
6222
+ description?: string | null | undefined;
6223
+ }[];
5604
6224
  updatedAt: string;
5605
6225
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5606
6226
  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
6227
  } | null | undefined;
5608
6228
  newCollaboration?: {
5609
6229
  createdAt: string;
5610
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5611
6230
  id: string;
6231
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5612
6232
  updatedAt: string;
5613
6233
  userId: string;
5614
6234
  company?: {
@@ -5619,8 +6239,8 @@ export declare const collaborationsContractRouter: {
5619
6239
  } | null | undefined;
5620
6240
  client?: {
5621
6241
  createdAt: string;
5622
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5623
6242
  id: string;
6243
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5624
6244
  updatedAt: string;
5625
6245
  name: string;
5626
6246
  crn: string | null;
@@ -5642,9 +6262,14 @@ export declare const collaborationsContractRouter: {
5642
6262
  lastName: string;
5643
6263
  firstName: string;
5644
6264
  email: string;
5645
- phone: string;
5646
6265
  createdAt: string;
5647
6266
  id: string;
6267
+ phoneNumbers: {
6268
+ id: string;
6269
+ phoneNumber: string;
6270
+ isPrimary: boolean;
6271
+ description?: string | null | undefined;
6272
+ }[];
5648
6273
  updatedAt: string;
5649
6274
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5650
6275
  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;
@@ -5652,8 +6277,8 @@ export declare const collaborationsContractRouter: {
5652
6277
  } | null | undefined;
5653
6278
  }, {
5654
6279
  createdAt: string | Date;
5655
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5656
6280
  id: string;
6281
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5657
6282
  updatedAt: string | Date;
5658
6283
  userId: string;
5659
6284
  company?: {
@@ -5664,8 +6289,8 @@ export declare const collaborationsContractRouter: {
5664
6289
  } | null | undefined;
5665
6290
  client?: {
5666
6291
  createdAt: string | Date;
5667
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5668
6292
  id: string;
6293
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5669
6294
  updatedAt: string | Date;
5670
6295
  name: string;
5671
6296
  crn: string | null;
@@ -5687,17 +6312,22 @@ export declare const collaborationsContractRouter: {
5687
6312
  lastName: string;
5688
6313
  firstName: string;
5689
6314
  email: string;
5690
- phone: string;
5691
6315
  createdAt: string | Date;
5692
6316
  id: string;
5693
6317
  updatedAt: string | Date;
6318
+ phoneNumbers?: {
6319
+ id: string;
6320
+ phoneNumber: string;
6321
+ description?: string | null | undefined;
6322
+ isPrimary?: boolean | undefined;
6323
+ }[] | undefined;
5694
6324
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5695
6325
  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
6326
  } | null | undefined;
5697
6327
  newCollaboration?: {
5698
6328
  createdAt: string | Date;
5699
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5700
6329
  id: string;
6330
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5701
6331
  updatedAt: string | Date;
5702
6332
  userId: string;
5703
6333
  company?: {
@@ -5708,8 +6338,8 @@ export declare const collaborationsContractRouter: {
5708
6338
  } | null | undefined;
5709
6339
  client?: {
5710
6340
  createdAt: string | Date;
5711
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5712
6341
  id: string;
6342
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5713
6343
  updatedAt: string | Date;
5714
6344
  name: string;
5715
6345
  crn: string | null;
@@ -5731,10 +6361,15 @@ export declare const collaborationsContractRouter: {
5731
6361
  lastName: string;
5732
6362
  firstName: string;
5733
6363
  email: string;
5734
- phone: string;
5735
6364
  createdAt: string | Date;
5736
6365
  id: string;
5737
6366
  updatedAt: string | Date;
6367
+ phoneNumbers?: {
6368
+ id: string;
6369
+ phoneNumber: string;
6370
+ description?: string | null | undefined;
6371
+ isPrimary?: boolean | undefined;
6372
+ }[] | undefined;
5738
6373
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5739
6374
  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;
5740
6375
  } | null | undefined;