@dakkitor/api-contracts 1.1.105 → 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 (28) hide show
  1. package/dist/abilities/second-agent.abilities.json +1 -2
  2. package/dist/actives/actives.contract.d.ts +7410 -5890
  3. package/dist/actives/actives.contract.d.ts.map +1 -1
  4. package/dist/agent-client-links/agent-client-links.contract.d.ts +472 -82
  5. package/dist/agent-client-links/agent-client-links.contract.d.ts.map +1 -1
  6. package/dist/auth/auth.contract.d.ts +115 -15
  7. package/dist/auth/auth.contract.d.ts.map +1 -1
  8. package/dist/bookings/bookings.contract.d.ts +27469 -21549
  9. package/dist/bookings/bookings.contract.d.ts.map +1 -1
  10. package/dist/call-history/call-history.contract.d.ts +404 -114
  11. package/dist/call-history/call-history.contract.d.ts.map +1 -1
  12. package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +904 -264
  13. package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts.map +1 -1
  14. package/dist/collaborations/collaborations.contract.d.ts +866 -231
  15. package/dist/collaborations/collaborations.contract.d.ts.map +1 -1
  16. package/dist/jobs/jobs.contract.d.ts +5066 -3966
  17. package/dist/jobs/jobs.contract.d.ts.map +1 -1
  18. package/dist/lead-assignments/lead-assignments.contract.d.ts +434 -114
  19. package/dist/lead-assignments/lead-assignments.contract.d.ts.map +1 -1
  20. package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +196 -36
  21. package/dist/lead-distribution/agent-lead-distribution.contract.d.ts.map +1 -1
  22. package/dist/leads/leads.contract.d.ts +56 -56
  23. package/dist/users/users.contract.d.ts +475 -51
  24. package/dist/users/users.contract.d.ts.map +1 -1
  25. package/dist/users/users.contract.js +45 -8
  26. package/dist/workers/workers.contract.d.ts +344 -114
  27. package/dist/workers/workers.contract.d.ts.map +1 -1
  28. package/package.json +1 -1
@@ -57,8 +57,8 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
57
57
  }>>>;
58
58
  }, "strip", z.ZodTypeAny, {
59
59
  createdAt: string;
60
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
61
60
  id: string;
61
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
62
62
  updatedAt: string;
63
63
  name: string;
64
64
  crn: string | null;
@@ -77,8 +77,8 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
77
77
  } | null | undefined;
78
78
  }, {
79
79
  createdAt: string | Date;
80
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
81
80
  id: string;
81
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
82
82
  updatedAt: string | Date;
83
83
  name: string;
84
84
  crn: string | null;
@@ -101,7 +101,22 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
101
101
  firstName: z.ZodString;
102
102
  lastName: z.ZodString;
103
103
  email: z.ZodString;
104
- phone: z.ZodString;
104
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
105
+ id: z.ZodString;
106
+ phoneNumber: z.ZodString;
107
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
108
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
109
+ }, "strip", z.ZodTypeAny, {
110
+ id: string;
111
+ phoneNumber: string;
112
+ isPrimary: boolean;
113
+ description?: string | null | undefined;
114
+ }, {
115
+ id: string;
116
+ phoneNumber: string;
117
+ description?: string | null | undefined;
118
+ isPrimary?: boolean | undefined;
119
+ }>, "many">>>;
105
120
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
106
121
  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"]>>>;
107
122
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -110,9 +125,14 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
110
125
  lastName: string;
111
126
  firstName: string;
112
127
  email: string;
113
- phone: string;
114
128
  createdAt: string;
115
129
  id: string;
130
+ phoneNumbers: {
131
+ id: string;
132
+ phoneNumber: string;
133
+ isPrimary: boolean;
134
+ description?: string | null | undefined;
135
+ }[];
116
136
  updatedAt: string;
117
137
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
118
138
  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;
@@ -120,10 +140,15 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
120
140
  lastName: string;
121
141
  firstName: string;
122
142
  email: string;
123
- phone: string;
124
143
  createdAt: string | Date;
125
144
  id: string;
126
145
  updatedAt: string | Date;
146
+ phoneNumbers?: {
147
+ id: string;
148
+ phoneNumber: string;
149
+ description?: string | null | undefined;
150
+ isPrimary?: boolean | undefined;
151
+ }[] | undefined;
127
152
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
128
153
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
129
154
  }>>>;
@@ -186,8 +211,8 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
186
211
  }>>>;
187
212
  }, "strip", z.ZodTypeAny, {
188
213
  createdAt: string;
189
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
190
214
  id: string;
215
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
191
216
  updatedAt: string;
192
217
  name: string;
193
218
  crn: string | null;
@@ -206,8 +231,8 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
206
231
  } | null | undefined;
207
232
  }, {
208
233
  createdAt: string | Date;
209
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
210
234
  id: string;
235
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
211
236
  updatedAt: string | Date;
212
237
  name: string;
213
238
  crn: string | null;
@@ -230,7 +255,22 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
230
255
  firstName: z.ZodString;
231
256
  lastName: z.ZodString;
232
257
  email: z.ZodString;
233
- phone: z.ZodString;
258
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
259
+ id: z.ZodString;
260
+ phoneNumber: z.ZodString;
261
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
262
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
263
+ }, "strip", z.ZodTypeAny, {
264
+ id: string;
265
+ phoneNumber: string;
266
+ isPrimary: boolean;
267
+ description?: string | null | undefined;
268
+ }, {
269
+ id: string;
270
+ phoneNumber: string;
271
+ description?: string | null | undefined;
272
+ isPrimary?: boolean | undefined;
273
+ }>, "many">>>;
234
274
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
235
275
  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"]>>>;
236
276
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -239,9 +279,14 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
239
279
  lastName: string;
240
280
  firstName: string;
241
281
  email: string;
242
- phone: string;
243
282
  createdAt: string;
244
283
  id: string;
284
+ phoneNumbers: {
285
+ id: string;
286
+ phoneNumber: string;
287
+ isPrimary: boolean;
288
+ description?: string | null | undefined;
289
+ }[];
245
290
  updatedAt: string;
246
291
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
247
292
  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;
@@ -249,10 +294,15 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
249
294
  lastName: string;
250
295
  firstName: string;
251
296
  email: string;
252
- phone: string;
253
297
  createdAt: string | Date;
254
298
  id: string;
255
299
  updatedAt: string | Date;
300
+ phoneNumbers?: {
301
+ id: string;
302
+ phoneNumber: string;
303
+ description?: string | null | undefined;
304
+ isPrimary?: boolean | undefined;
305
+ }[] | undefined;
256
306
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
257
307
  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;
258
308
  }>>>;
@@ -262,8 +312,8 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
262
312
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
263
313
  }, "strip", z.ZodTypeAny, {
264
314
  createdAt: string;
265
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
266
315
  id: string;
316
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
267
317
  updatedAt: string;
268
318
  userId: string;
269
319
  company?: {
@@ -274,8 +324,8 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
274
324
  } | null | undefined;
275
325
  client?: {
276
326
  createdAt: string;
277
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
278
327
  id: string;
328
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
279
329
  updatedAt: string;
280
330
  name: string;
281
331
  crn: string | null;
@@ -297,17 +347,22 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
297
347
  lastName: string;
298
348
  firstName: string;
299
349
  email: string;
300
- phone: string;
301
350
  createdAt: string;
302
351
  id: string;
352
+ phoneNumbers: {
353
+ id: string;
354
+ phoneNumber: string;
355
+ isPrimary: boolean;
356
+ description?: string | null | undefined;
357
+ }[];
303
358
  updatedAt: string;
304
359
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
305
360
  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;
306
361
  } | null | undefined;
307
362
  }, {
308
363
  createdAt: string | Date;
309
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
310
364
  id: string;
365
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
311
366
  updatedAt: string | Date;
312
367
  userId: string;
313
368
  company?: {
@@ -318,8 +373,8 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
318
373
  } | null | undefined;
319
374
  client?: {
320
375
  createdAt: string | Date;
321
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
322
376
  id: string;
377
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
323
378
  updatedAt: string | Date;
324
379
  name: string;
325
380
  crn: string | null;
@@ -341,18 +396,23 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
341
396
  lastName: string;
342
397
  firstName: string;
343
398
  email: string;
344
- phone: string;
345
399
  createdAt: string | Date;
346
400
  id: string;
347
401
  updatedAt: string | Date;
402
+ phoneNumbers?: {
403
+ id: string;
404
+ phoneNumber: string;
405
+ description?: string | null | undefined;
406
+ isPrimary?: boolean | undefined;
407
+ }[] | undefined;
348
408
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
349
409
  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
410
  } | null | undefined;
351
411
  }>>>;
352
412
  }, "strip", z.ZodTypeAny, {
353
413
  createdAt: string;
354
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
355
414
  id: string;
415
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
356
416
  updatedAt: string;
357
417
  userId: string;
358
418
  company?: {
@@ -363,8 +423,8 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
363
423
  } | null | undefined;
364
424
  client?: {
365
425
  createdAt: string;
366
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
367
426
  id: string;
427
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
368
428
  updatedAt: string;
369
429
  name: string;
370
430
  crn: string | null;
@@ -386,17 +446,22 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
386
446
  lastName: string;
387
447
  firstName: string;
388
448
  email: string;
389
- phone: string;
390
449
  createdAt: string;
391
450
  id: string;
451
+ phoneNumbers: {
452
+ id: string;
453
+ phoneNumber: string;
454
+ isPrimary: boolean;
455
+ description?: string | null | undefined;
456
+ }[];
392
457
  updatedAt: string;
393
458
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
394
459
  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;
395
460
  } | null | undefined;
396
461
  newCollaboration?: {
397
462
  createdAt: string;
398
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
399
463
  id: string;
464
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
400
465
  updatedAt: string;
401
466
  userId: string;
402
467
  company?: {
@@ -407,8 +472,8 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
407
472
  } | null | undefined;
408
473
  client?: {
409
474
  createdAt: string;
410
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
411
475
  id: string;
476
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
412
477
  updatedAt: string;
413
478
  name: string;
414
479
  crn: string | null;
@@ -430,9 +495,14 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
430
495
  lastName: string;
431
496
  firstName: string;
432
497
  email: string;
433
- phone: string;
434
498
  createdAt: string;
435
499
  id: string;
500
+ phoneNumbers: {
501
+ id: string;
502
+ phoneNumber: string;
503
+ isPrimary: boolean;
504
+ description?: string | null | undefined;
505
+ }[];
436
506
  updatedAt: string;
437
507
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
438
508
  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;
@@ -440,8 +510,8 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
440
510
  } | null | undefined;
441
511
  }, {
442
512
  createdAt: string | Date;
443
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
444
513
  id: string;
514
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
445
515
  updatedAt: string | Date;
446
516
  userId: string;
447
517
  company?: {
@@ -452,8 +522,8 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
452
522
  } | null | undefined;
453
523
  client?: {
454
524
  createdAt: string | Date;
455
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
456
525
  id: string;
526
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
457
527
  updatedAt: string | Date;
458
528
  name: string;
459
529
  crn: string | null;
@@ -475,17 +545,22 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
475
545
  lastName: string;
476
546
  firstName: string;
477
547
  email: string;
478
- phone: string;
479
548
  createdAt: string | Date;
480
549
  id: string;
481
550
  updatedAt: string | Date;
551
+ phoneNumbers?: {
552
+ id: string;
553
+ phoneNumber: string;
554
+ description?: string | null | undefined;
555
+ isPrimary?: boolean | undefined;
556
+ }[] | undefined;
482
557
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
483
558
  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;
484
559
  } | null | undefined;
485
560
  newCollaboration?: {
486
561
  createdAt: string | Date;
487
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
488
562
  id: string;
563
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
489
564
  updatedAt: string | Date;
490
565
  userId: string;
491
566
  company?: {
@@ -496,8 +571,8 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
496
571
  } | null | undefined;
497
572
  client?: {
498
573
  createdAt: string | Date;
499
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
500
574
  id: string;
575
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
501
576
  updatedAt: string | Date;
502
577
  name: string;
503
578
  crn: string | null;
@@ -519,10 +594,15 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
519
594
  lastName: string;
520
595
  firstName: string;
521
596
  email: string;
522
- phone: string;
523
597
  createdAt: string | Date;
524
598
  id: string;
525
599
  updatedAt: string | Date;
600
+ phoneNumbers?: {
601
+ id: string;
602
+ phoneNumber: string;
603
+ description?: string | null | undefined;
604
+ isPrimary?: boolean | undefined;
605
+ }[] | undefined;
526
606
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
527
607
  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;
528
608
  } | null | undefined;
@@ -558,8 +638,8 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
558
638
  clientContactId?: string | null | undefined;
559
639
  collaboration?: {
560
640
  createdAt: string;
561
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
562
641
  id: string;
642
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
563
643
  updatedAt: string;
564
644
  userId: string;
565
645
  company?: {
@@ -570,8 +650,8 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
570
650
  } | null | undefined;
571
651
  client?: {
572
652
  createdAt: string;
573
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
574
653
  id: string;
654
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
575
655
  updatedAt: string;
576
656
  name: string;
577
657
  crn: string | null;
@@ -593,17 +673,22 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
593
673
  lastName: string;
594
674
  firstName: string;
595
675
  email: string;
596
- phone: string;
597
676
  createdAt: string;
598
677
  id: string;
678
+ phoneNumbers: {
679
+ id: string;
680
+ phoneNumber: string;
681
+ isPrimary: boolean;
682
+ description?: string | null | undefined;
683
+ }[];
599
684
  updatedAt: string;
600
685
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
601
686
  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;
602
687
  } | null | undefined;
603
688
  newCollaboration?: {
604
689
  createdAt: string;
605
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
606
690
  id: string;
691
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
607
692
  updatedAt: string;
608
693
  userId: string;
609
694
  company?: {
@@ -614,8 +699,8 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
614
699
  } | null | undefined;
615
700
  client?: {
616
701
  createdAt: string;
617
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
618
702
  id: string;
703
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
619
704
  updatedAt: string;
620
705
  name: string;
621
706
  crn: string | null;
@@ -637,9 +722,14 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
637
722
  lastName: string;
638
723
  firstName: string;
639
724
  email: string;
640
- phone: string;
641
725
  createdAt: string;
642
726
  id: string;
727
+ phoneNumbers: {
728
+ id: string;
729
+ phoneNumber: string;
730
+ isPrimary: boolean;
731
+ description?: string | null | undefined;
732
+ }[];
643
733
  updatedAt: string;
644
734
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
645
735
  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;
@@ -667,8 +757,8 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
667
757
  clientContactId?: string | null | undefined;
668
758
  collaboration?: {
669
759
  createdAt: string | Date;
670
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
671
760
  id: string;
761
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
672
762
  updatedAt: string | Date;
673
763
  userId: string;
674
764
  company?: {
@@ -679,8 +769,8 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
679
769
  } | null | undefined;
680
770
  client?: {
681
771
  createdAt: string | Date;
682
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
683
772
  id: string;
773
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
684
774
  updatedAt: string | Date;
685
775
  name: string;
686
776
  crn: string | null;
@@ -702,17 +792,22 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
702
792
  lastName: string;
703
793
  firstName: string;
704
794
  email: string;
705
- phone: string;
706
795
  createdAt: string | Date;
707
796
  id: string;
708
797
  updatedAt: string | Date;
798
+ phoneNumbers?: {
799
+ id: string;
800
+ phoneNumber: string;
801
+ description?: string | null | undefined;
802
+ isPrimary?: boolean | undefined;
803
+ }[] | undefined;
709
804
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
710
805
  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;
711
806
  } | null | undefined;
712
807
  newCollaboration?: {
713
808
  createdAt: string | Date;
714
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
715
809
  id: string;
810
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
716
811
  updatedAt: string | Date;
717
812
  userId: string;
718
813
  company?: {
@@ -723,8 +818,8 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
723
818
  } | null | undefined;
724
819
  client?: {
725
820
  createdAt: string | Date;
726
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
727
821
  id: string;
822
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
728
823
  updatedAt: string | Date;
729
824
  name: string;
730
825
  crn: string | null;
@@ -746,10 +841,15 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
746
841
  lastName: string;
747
842
  firstName: string;
748
843
  email: string;
749
- phone: string;
750
844
  createdAt: string | Date;
751
845
  id: string;
752
846
  updatedAt: string | Date;
847
+ phoneNumbers?: {
848
+ id: string;
849
+ phoneNumber: string;
850
+ description?: string | null | undefined;
851
+ isPrimary?: boolean | undefined;
852
+ }[] | undefined;
753
853
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
754
854
  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;
755
855
  } | null | undefined;
@@ -926,8 +1026,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
926
1026
  }>>>;
927
1027
  }, "strip", z.ZodTypeAny, {
928
1028
  createdAt: string;
929
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
930
1029
  id: string;
1030
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
931
1031
  updatedAt: string;
932
1032
  name: string;
933
1033
  crn: string | null;
@@ -946,8 +1046,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
946
1046
  } | null | undefined;
947
1047
  }, {
948
1048
  createdAt: string | Date;
949
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
950
1049
  id: string;
1050
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
951
1051
  updatedAt: string | Date;
952
1052
  name: string;
953
1053
  crn: string | null;
@@ -970,7 +1070,22 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
970
1070
  firstName: z.ZodString;
971
1071
  lastName: z.ZodString;
972
1072
  email: z.ZodString;
973
- phone: z.ZodString;
1073
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1074
+ id: z.ZodString;
1075
+ phoneNumber: z.ZodString;
1076
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1077
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
1078
+ }, "strip", z.ZodTypeAny, {
1079
+ id: string;
1080
+ phoneNumber: string;
1081
+ isPrimary: boolean;
1082
+ description?: string | null | undefined;
1083
+ }, {
1084
+ id: string;
1085
+ phoneNumber: string;
1086
+ description?: string | null | undefined;
1087
+ isPrimary?: boolean | undefined;
1088
+ }>, "many">>>;
974
1089
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
975
1090
  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"]>>>;
976
1091
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -979,9 +1094,14 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
979
1094
  lastName: string;
980
1095
  firstName: string;
981
1096
  email: string;
982
- phone: string;
983
1097
  createdAt: string;
984
1098
  id: string;
1099
+ phoneNumbers: {
1100
+ id: string;
1101
+ phoneNumber: string;
1102
+ isPrimary: boolean;
1103
+ description?: string | null | undefined;
1104
+ }[];
985
1105
  updatedAt: string;
986
1106
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
987
1107
  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;
@@ -989,10 +1109,15 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
989
1109
  lastName: string;
990
1110
  firstName: string;
991
1111
  email: string;
992
- phone: string;
993
1112
  createdAt: string | Date;
994
1113
  id: string;
995
1114
  updatedAt: string | Date;
1115
+ phoneNumbers?: {
1116
+ id: string;
1117
+ phoneNumber: string;
1118
+ description?: string | null | undefined;
1119
+ isPrimary?: boolean | undefined;
1120
+ }[] | undefined;
996
1121
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
997
1122
  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;
998
1123
  }>>>;
@@ -1055,8 +1180,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1055
1180
  }>>>;
1056
1181
  }, "strip", z.ZodTypeAny, {
1057
1182
  createdAt: string;
1058
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1059
1183
  id: string;
1184
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1060
1185
  updatedAt: string;
1061
1186
  name: string;
1062
1187
  crn: string | null;
@@ -1075,8 +1200,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1075
1200
  } | null | undefined;
1076
1201
  }, {
1077
1202
  createdAt: string | Date;
1078
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1079
1203
  id: string;
1204
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1080
1205
  updatedAt: string | Date;
1081
1206
  name: string;
1082
1207
  crn: string | null;
@@ -1099,7 +1224,22 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1099
1224
  firstName: z.ZodString;
1100
1225
  lastName: z.ZodString;
1101
1226
  email: z.ZodString;
1102
- phone: z.ZodString;
1227
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1228
+ id: z.ZodString;
1229
+ phoneNumber: z.ZodString;
1230
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1231
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
1232
+ }, "strip", z.ZodTypeAny, {
1233
+ id: string;
1234
+ phoneNumber: string;
1235
+ isPrimary: boolean;
1236
+ description?: string | null | undefined;
1237
+ }, {
1238
+ id: string;
1239
+ phoneNumber: string;
1240
+ description?: string | null | undefined;
1241
+ isPrimary?: boolean | undefined;
1242
+ }>, "many">>>;
1103
1243
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
1104
1244
  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"]>>>;
1105
1245
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -1108,9 +1248,14 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1108
1248
  lastName: string;
1109
1249
  firstName: string;
1110
1250
  email: string;
1111
- phone: string;
1112
1251
  createdAt: string;
1113
1252
  id: string;
1253
+ phoneNumbers: {
1254
+ id: string;
1255
+ phoneNumber: string;
1256
+ isPrimary: boolean;
1257
+ description?: string | null | undefined;
1258
+ }[];
1114
1259
  updatedAt: string;
1115
1260
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1116
1261
  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;
@@ -1118,10 +1263,15 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1118
1263
  lastName: string;
1119
1264
  firstName: string;
1120
1265
  email: string;
1121
- phone: string;
1122
1266
  createdAt: string | Date;
1123
1267
  id: string;
1124
1268
  updatedAt: string | Date;
1269
+ phoneNumbers?: {
1270
+ id: string;
1271
+ phoneNumber: string;
1272
+ description?: string | null | undefined;
1273
+ isPrimary?: boolean | undefined;
1274
+ }[] | undefined;
1125
1275
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1126
1276
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1127
1277
  }>>>;
@@ -1131,8 +1281,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1131
1281
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1132
1282
  }, "strip", z.ZodTypeAny, {
1133
1283
  createdAt: string;
1134
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1135
1284
  id: string;
1285
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1136
1286
  updatedAt: string;
1137
1287
  userId: string;
1138
1288
  company?: {
@@ -1143,8 +1293,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1143
1293
  } | null | undefined;
1144
1294
  client?: {
1145
1295
  createdAt: string;
1146
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1147
1296
  id: string;
1297
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1148
1298
  updatedAt: string;
1149
1299
  name: string;
1150
1300
  crn: string | null;
@@ -1166,17 +1316,22 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1166
1316
  lastName: string;
1167
1317
  firstName: string;
1168
1318
  email: string;
1169
- phone: string;
1170
1319
  createdAt: string;
1171
1320
  id: string;
1321
+ phoneNumbers: {
1322
+ id: string;
1323
+ phoneNumber: string;
1324
+ isPrimary: boolean;
1325
+ description?: string | null | undefined;
1326
+ }[];
1172
1327
  updatedAt: string;
1173
1328
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1174
1329
  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;
1175
1330
  } | null | undefined;
1176
1331
  }, {
1177
1332
  createdAt: string | Date;
1178
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1179
1333
  id: string;
1334
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1180
1335
  updatedAt: string | Date;
1181
1336
  userId: string;
1182
1337
  company?: {
@@ -1187,8 +1342,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1187
1342
  } | null | undefined;
1188
1343
  client?: {
1189
1344
  createdAt: string | Date;
1190
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1191
1345
  id: string;
1346
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1192
1347
  updatedAt: string | Date;
1193
1348
  name: string;
1194
1349
  crn: string | null;
@@ -1210,18 +1365,23 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1210
1365
  lastName: string;
1211
1366
  firstName: string;
1212
1367
  email: string;
1213
- phone: string;
1214
1368
  createdAt: string | Date;
1215
1369
  id: string;
1216
1370
  updatedAt: string | Date;
1371
+ phoneNumbers?: {
1372
+ id: string;
1373
+ phoneNumber: string;
1374
+ description?: string | null | undefined;
1375
+ isPrimary?: boolean | undefined;
1376
+ }[] | undefined;
1217
1377
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1218
1378
  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;
1219
1379
  } | null | undefined;
1220
1380
  }>>>;
1221
1381
  }, "strip", z.ZodTypeAny, {
1222
1382
  createdAt: string;
1223
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1224
1383
  id: string;
1384
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1225
1385
  updatedAt: string;
1226
1386
  userId: string;
1227
1387
  company?: {
@@ -1232,8 +1392,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1232
1392
  } | null | undefined;
1233
1393
  client?: {
1234
1394
  createdAt: string;
1235
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1236
1395
  id: string;
1396
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1237
1397
  updatedAt: string;
1238
1398
  name: string;
1239
1399
  crn: string | null;
@@ -1255,17 +1415,22 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1255
1415
  lastName: string;
1256
1416
  firstName: string;
1257
1417
  email: string;
1258
- phone: string;
1259
1418
  createdAt: string;
1260
1419
  id: string;
1420
+ phoneNumbers: {
1421
+ id: string;
1422
+ phoneNumber: string;
1423
+ isPrimary: boolean;
1424
+ description?: string | null | undefined;
1425
+ }[];
1261
1426
  updatedAt: string;
1262
1427
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1263
1428
  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;
1264
1429
  } | null | undefined;
1265
1430
  newCollaboration?: {
1266
1431
  createdAt: string;
1267
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1268
1432
  id: string;
1433
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1269
1434
  updatedAt: string;
1270
1435
  userId: string;
1271
1436
  company?: {
@@ -1276,8 +1441,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1276
1441
  } | null | undefined;
1277
1442
  client?: {
1278
1443
  createdAt: string;
1279
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1280
1444
  id: string;
1445
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1281
1446
  updatedAt: string;
1282
1447
  name: string;
1283
1448
  crn: string | null;
@@ -1299,9 +1464,14 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1299
1464
  lastName: string;
1300
1465
  firstName: string;
1301
1466
  email: string;
1302
- phone: string;
1303
1467
  createdAt: string;
1304
1468
  id: string;
1469
+ phoneNumbers: {
1470
+ id: string;
1471
+ phoneNumber: string;
1472
+ isPrimary: boolean;
1473
+ description?: string | null | undefined;
1474
+ }[];
1305
1475
  updatedAt: string;
1306
1476
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1307
1477
  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;
@@ -1309,8 +1479,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1309
1479
  } | null | undefined;
1310
1480
  }, {
1311
1481
  createdAt: string | Date;
1312
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1313
1482
  id: string;
1483
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1314
1484
  updatedAt: string | Date;
1315
1485
  userId: string;
1316
1486
  company?: {
@@ -1321,8 +1491,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1321
1491
  } | null | undefined;
1322
1492
  client?: {
1323
1493
  createdAt: string | Date;
1324
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1325
1494
  id: string;
1495
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1326
1496
  updatedAt: string | Date;
1327
1497
  name: string;
1328
1498
  crn: string | null;
@@ -1344,17 +1514,22 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1344
1514
  lastName: string;
1345
1515
  firstName: string;
1346
1516
  email: string;
1347
- phone: string;
1348
1517
  createdAt: string | Date;
1349
1518
  id: string;
1350
1519
  updatedAt: string | Date;
1520
+ phoneNumbers?: {
1521
+ id: string;
1522
+ phoneNumber: string;
1523
+ description?: string | null | undefined;
1524
+ isPrimary?: boolean | undefined;
1525
+ }[] | undefined;
1351
1526
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1352
1527
  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;
1353
1528
  } | null | undefined;
1354
1529
  newCollaboration?: {
1355
1530
  createdAt: string | Date;
1356
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1357
1531
  id: string;
1532
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1358
1533
  updatedAt: string | Date;
1359
1534
  userId: string;
1360
1535
  company?: {
@@ -1365,8 +1540,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1365
1540
  } | null | undefined;
1366
1541
  client?: {
1367
1542
  createdAt: string | Date;
1368
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1369
1543
  id: string;
1544
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1370
1545
  updatedAt: string | Date;
1371
1546
  name: string;
1372
1547
  crn: string | null;
@@ -1388,10 +1563,15 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1388
1563
  lastName: string;
1389
1564
  firstName: string;
1390
1565
  email: string;
1391
- phone: string;
1392
1566
  createdAt: string | Date;
1393
1567
  id: string;
1394
1568
  updatedAt: string | Date;
1569
+ phoneNumbers?: {
1570
+ id: string;
1571
+ phoneNumber: string;
1572
+ description?: string | null | undefined;
1573
+ isPrimary?: boolean | undefined;
1574
+ }[] | undefined;
1395
1575
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1396
1576
  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;
1397
1577
  } | null | undefined;
@@ -1427,8 +1607,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1427
1607
  clientContactId?: string | null | undefined;
1428
1608
  collaboration?: {
1429
1609
  createdAt: string;
1430
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1431
1610
  id: string;
1611
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1432
1612
  updatedAt: string;
1433
1613
  userId: string;
1434
1614
  company?: {
@@ -1439,8 +1619,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1439
1619
  } | null | undefined;
1440
1620
  client?: {
1441
1621
  createdAt: string;
1442
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1443
1622
  id: string;
1623
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1444
1624
  updatedAt: string;
1445
1625
  name: string;
1446
1626
  crn: string | null;
@@ -1462,17 +1642,22 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1462
1642
  lastName: string;
1463
1643
  firstName: string;
1464
1644
  email: string;
1465
- phone: string;
1466
1645
  createdAt: string;
1467
1646
  id: string;
1647
+ phoneNumbers: {
1648
+ id: string;
1649
+ phoneNumber: string;
1650
+ isPrimary: boolean;
1651
+ description?: string | null | undefined;
1652
+ }[];
1468
1653
  updatedAt: string;
1469
1654
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1470
1655
  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;
1471
1656
  } | null | undefined;
1472
1657
  newCollaboration?: {
1473
1658
  createdAt: string;
1474
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1475
1659
  id: string;
1660
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1476
1661
  updatedAt: string;
1477
1662
  userId: string;
1478
1663
  company?: {
@@ -1483,8 +1668,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1483
1668
  } | null | undefined;
1484
1669
  client?: {
1485
1670
  createdAt: string;
1486
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1487
1671
  id: string;
1672
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1488
1673
  updatedAt: string;
1489
1674
  name: string;
1490
1675
  crn: string | null;
@@ -1506,9 +1691,14 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1506
1691
  lastName: string;
1507
1692
  firstName: string;
1508
1693
  email: string;
1509
- phone: string;
1510
1694
  createdAt: string;
1511
1695
  id: string;
1696
+ phoneNumbers: {
1697
+ id: string;
1698
+ phoneNumber: string;
1699
+ isPrimary: boolean;
1700
+ description?: string | null | undefined;
1701
+ }[];
1512
1702
  updatedAt: string;
1513
1703
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1514
1704
  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;
@@ -1536,8 +1726,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1536
1726
  clientContactId?: string | null | undefined;
1537
1727
  collaboration?: {
1538
1728
  createdAt: string | Date;
1539
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1540
1729
  id: string;
1730
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1541
1731
  updatedAt: string | Date;
1542
1732
  userId: string;
1543
1733
  company?: {
@@ -1548,8 +1738,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1548
1738
  } | null | undefined;
1549
1739
  client?: {
1550
1740
  createdAt: string | Date;
1551
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1552
1741
  id: string;
1742
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1553
1743
  updatedAt: string | Date;
1554
1744
  name: string;
1555
1745
  crn: string | null;
@@ -1571,17 +1761,22 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1571
1761
  lastName: string;
1572
1762
  firstName: string;
1573
1763
  email: string;
1574
- phone: string;
1575
1764
  createdAt: string | Date;
1576
1765
  id: string;
1577
1766
  updatedAt: string | Date;
1767
+ phoneNumbers?: {
1768
+ id: string;
1769
+ phoneNumber: string;
1770
+ description?: string | null | undefined;
1771
+ isPrimary?: boolean | undefined;
1772
+ }[] | undefined;
1578
1773
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1579
1774
  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;
1580
1775
  } | null | undefined;
1581
1776
  newCollaboration?: {
1582
1777
  createdAt: string | Date;
1583
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1584
1778
  id: string;
1779
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1585
1780
  updatedAt: string | Date;
1586
1781
  userId: string;
1587
1782
  company?: {
@@ -1592,8 +1787,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1592
1787
  } | null | undefined;
1593
1788
  client?: {
1594
1789
  createdAt: string | Date;
1595
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1596
1790
  id: string;
1791
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1597
1792
  updatedAt: string | Date;
1598
1793
  name: string;
1599
1794
  crn: string | null;
@@ -1615,10 +1810,15 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1615
1810
  lastName: string;
1616
1811
  firstName: string;
1617
1812
  email: string;
1618
- phone: string;
1619
1813
  createdAt: string | Date;
1620
1814
  id: string;
1621
1815
  updatedAt: string | Date;
1816
+ phoneNumbers?: {
1817
+ id: string;
1818
+ phoneNumber: string;
1819
+ description?: string | null | undefined;
1820
+ isPrimary?: boolean | undefined;
1821
+ }[] | undefined;
1622
1822
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1623
1823
  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;
1624
1824
  } | null | undefined;
@@ -1653,8 +1853,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1653
1853
  clientContactId?: string | null | undefined;
1654
1854
  collaboration?: {
1655
1855
  createdAt: string;
1656
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1657
1856
  id: string;
1857
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1658
1858
  updatedAt: string;
1659
1859
  userId: string;
1660
1860
  company?: {
@@ -1665,8 +1865,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1665
1865
  } | null | undefined;
1666
1866
  client?: {
1667
1867
  createdAt: string;
1668
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1669
1868
  id: string;
1869
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1670
1870
  updatedAt: string;
1671
1871
  name: string;
1672
1872
  crn: string | null;
@@ -1688,17 +1888,22 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1688
1888
  lastName: string;
1689
1889
  firstName: string;
1690
1890
  email: string;
1691
- phone: string;
1692
1891
  createdAt: string;
1693
1892
  id: string;
1893
+ phoneNumbers: {
1894
+ id: string;
1895
+ phoneNumber: string;
1896
+ isPrimary: boolean;
1897
+ description?: string | null | undefined;
1898
+ }[];
1694
1899
  updatedAt: string;
1695
1900
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1696
1901
  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;
1697
1902
  } | null | undefined;
1698
1903
  newCollaboration?: {
1699
1904
  createdAt: string;
1700
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1701
1905
  id: string;
1906
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1702
1907
  updatedAt: string;
1703
1908
  userId: string;
1704
1909
  company?: {
@@ -1709,8 +1914,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1709
1914
  } | null | undefined;
1710
1915
  client?: {
1711
1916
  createdAt: string;
1712
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1713
1917
  id: string;
1918
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1714
1919
  updatedAt: string;
1715
1920
  name: string;
1716
1921
  crn: string | null;
@@ -1732,9 +1937,14 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1732
1937
  lastName: string;
1733
1938
  firstName: string;
1734
1939
  email: string;
1735
- phone: string;
1736
1940
  createdAt: string;
1737
1941
  id: string;
1942
+ phoneNumbers: {
1943
+ id: string;
1944
+ phoneNumber: string;
1945
+ isPrimary: boolean;
1946
+ description?: string | null | undefined;
1947
+ }[];
1738
1948
  updatedAt: string;
1739
1949
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1740
1950
  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;
@@ -1769,8 +1979,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1769
1979
  clientContactId?: string | null | undefined;
1770
1980
  collaboration?: {
1771
1981
  createdAt: string | Date;
1772
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1773
1982
  id: string;
1983
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1774
1984
  updatedAt: string | Date;
1775
1985
  userId: string;
1776
1986
  company?: {
@@ -1781,8 +1991,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1781
1991
  } | null | undefined;
1782
1992
  client?: {
1783
1993
  createdAt: string | Date;
1784
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1785
1994
  id: string;
1995
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1786
1996
  updatedAt: string | Date;
1787
1997
  name: string;
1788
1998
  crn: string | null;
@@ -1804,17 +2014,22 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1804
2014
  lastName: string;
1805
2015
  firstName: string;
1806
2016
  email: string;
1807
- phone: string;
1808
2017
  createdAt: string | Date;
1809
2018
  id: string;
1810
2019
  updatedAt: string | Date;
2020
+ phoneNumbers?: {
2021
+ id: string;
2022
+ phoneNumber: string;
2023
+ description?: string | null | undefined;
2024
+ isPrimary?: boolean | undefined;
2025
+ }[] | undefined;
1811
2026
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1812
2027
  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;
1813
2028
  } | null | undefined;
1814
2029
  newCollaboration?: {
1815
2030
  createdAt: string | Date;
1816
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1817
2031
  id: string;
2032
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1818
2033
  updatedAt: string | Date;
1819
2034
  userId: string;
1820
2035
  company?: {
@@ -1825,8 +2040,8 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1825
2040
  } | null | undefined;
1826
2041
  client?: {
1827
2042
  createdAt: string | Date;
1828
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1829
2043
  id: string;
2044
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1830
2045
  updatedAt: string | Date;
1831
2046
  name: string;
1832
2047
  crn: string | null;
@@ -1848,10 +2063,15 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
1848
2063
  lastName: string;
1849
2064
  firstName: string;
1850
2065
  email: string;
1851
- phone: string;
1852
2066
  createdAt: string | Date;
1853
2067
  id: string;
1854
2068
  updatedAt: string | Date;
2069
+ phoneNumbers?: {
2070
+ id: string;
2071
+ phoneNumber: string;
2072
+ description?: string | null | undefined;
2073
+ isPrimary?: boolean | undefined;
2074
+ }[] | undefined;
1855
2075
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1856
2076
  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;
1857
2077
  } | null | undefined;
@@ -2083,8 +2303,8 @@ export declare const collaborationCheckingsContract: {
2083
2303
  }>>>;
2084
2304
  }, "strip", z.ZodTypeAny, {
2085
2305
  createdAt: string;
2086
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2087
2306
  id: string;
2307
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2088
2308
  updatedAt: string;
2089
2309
  name: string;
2090
2310
  crn: string | null;
@@ -2103,8 +2323,8 @@ export declare const collaborationCheckingsContract: {
2103
2323
  } | null | undefined;
2104
2324
  }, {
2105
2325
  createdAt: string | Date;
2106
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2107
2326
  id: string;
2327
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2108
2328
  updatedAt: string | Date;
2109
2329
  name: string;
2110
2330
  crn: string | null;
@@ -2127,7 +2347,22 @@ export declare const collaborationCheckingsContract: {
2127
2347
  firstName: z.ZodString;
2128
2348
  lastName: z.ZodString;
2129
2349
  email: z.ZodString;
2130
- phone: z.ZodString;
2350
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
2351
+ id: z.ZodString;
2352
+ phoneNumber: z.ZodString;
2353
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2354
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
2355
+ }, "strip", z.ZodTypeAny, {
2356
+ id: string;
2357
+ phoneNumber: string;
2358
+ isPrimary: boolean;
2359
+ description?: string | null | undefined;
2360
+ }, {
2361
+ id: string;
2362
+ phoneNumber: string;
2363
+ description?: string | null | undefined;
2364
+ isPrimary?: boolean | undefined;
2365
+ }>, "many">>>;
2131
2366
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
2132
2367
  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"]>>>;
2133
2368
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -2136,9 +2371,14 @@ export declare const collaborationCheckingsContract: {
2136
2371
  lastName: string;
2137
2372
  firstName: string;
2138
2373
  email: string;
2139
- phone: string;
2140
2374
  createdAt: string;
2141
2375
  id: string;
2376
+ phoneNumbers: {
2377
+ id: string;
2378
+ phoneNumber: string;
2379
+ isPrimary: boolean;
2380
+ description?: string | null | undefined;
2381
+ }[];
2142
2382
  updatedAt: string;
2143
2383
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2144
2384
  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;
@@ -2146,10 +2386,15 @@ export declare const collaborationCheckingsContract: {
2146
2386
  lastName: string;
2147
2387
  firstName: string;
2148
2388
  email: string;
2149
- phone: string;
2150
2389
  createdAt: string | Date;
2151
2390
  id: string;
2152
2391
  updatedAt: string | Date;
2392
+ phoneNumbers?: {
2393
+ id: string;
2394
+ phoneNumber: string;
2395
+ description?: string | null | undefined;
2396
+ isPrimary?: boolean | undefined;
2397
+ }[] | undefined;
2153
2398
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2154
2399
  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;
2155
2400
  }>>>;
@@ -2212,8 +2457,8 @@ export declare const collaborationCheckingsContract: {
2212
2457
  }>>>;
2213
2458
  }, "strip", z.ZodTypeAny, {
2214
2459
  createdAt: string;
2215
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2216
2460
  id: string;
2461
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2217
2462
  updatedAt: string;
2218
2463
  name: string;
2219
2464
  crn: string | null;
@@ -2232,8 +2477,8 @@ export declare const collaborationCheckingsContract: {
2232
2477
  } | null | undefined;
2233
2478
  }, {
2234
2479
  createdAt: string | Date;
2235
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2236
2480
  id: string;
2481
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2237
2482
  updatedAt: string | Date;
2238
2483
  name: string;
2239
2484
  crn: string | null;
@@ -2256,7 +2501,22 @@ export declare const collaborationCheckingsContract: {
2256
2501
  firstName: z.ZodString;
2257
2502
  lastName: z.ZodString;
2258
2503
  email: z.ZodString;
2259
- phone: z.ZodString;
2504
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
2505
+ id: z.ZodString;
2506
+ phoneNumber: z.ZodString;
2507
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2508
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
2509
+ }, "strip", z.ZodTypeAny, {
2510
+ id: string;
2511
+ phoneNumber: string;
2512
+ isPrimary: boolean;
2513
+ description?: string | null | undefined;
2514
+ }, {
2515
+ id: string;
2516
+ phoneNumber: string;
2517
+ description?: string | null | undefined;
2518
+ isPrimary?: boolean | undefined;
2519
+ }>, "many">>>;
2260
2520
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
2261
2521
  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"]>>>;
2262
2522
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -2265,9 +2525,14 @@ export declare const collaborationCheckingsContract: {
2265
2525
  lastName: string;
2266
2526
  firstName: string;
2267
2527
  email: string;
2268
- phone: string;
2269
2528
  createdAt: string;
2270
2529
  id: string;
2530
+ phoneNumbers: {
2531
+ id: string;
2532
+ phoneNumber: string;
2533
+ isPrimary: boolean;
2534
+ description?: string | null | undefined;
2535
+ }[];
2271
2536
  updatedAt: string;
2272
2537
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2273
2538
  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;
@@ -2275,10 +2540,15 @@ export declare const collaborationCheckingsContract: {
2275
2540
  lastName: string;
2276
2541
  firstName: string;
2277
2542
  email: string;
2278
- phone: string;
2279
2543
  createdAt: string | Date;
2280
2544
  id: string;
2281
2545
  updatedAt: string | Date;
2546
+ phoneNumbers?: {
2547
+ id: string;
2548
+ phoneNumber: string;
2549
+ description?: string | null | undefined;
2550
+ isPrimary?: boolean | undefined;
2551
+ }[] | undefined;
2282
2552
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2283
2553
  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;
2284
2554
  }>>>;
@@ -2288,8 +2558,8 @@ export declare const collaborationCheckingsContract: {
2288
2558
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2289
2559
  }, "strip", z.ZodTypeAny, {
2290
2560
  createdAt: string;
2291
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2292
2561
  id: string;
2562
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2293
2563
  updatedAt: string;
2294
2564
  userId: string;
2295
2565
  company?: {
@@ -2300,8 +2570,8 @@ export declare const collaborationCheckingsContract: {
2300
2570
  } | null | undefined;
2301
2571
  client?: {
2302
2572
  createdAt: string;
2303
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2304
2573
  id: string;
2574
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2305
2575
  updatedAt: string;
2306
2576
  name: string;
2307
2577
  crn: string | null;
@@ -2323,17 +2593,22 @@ export declare const collaborationCheckingsContract: {
2323
2593
  lastName: string;
2324
2594
  firstName: string;
2325
2595
  email: string;
2326
- phone: string;
2327
2596
  createdAt: string;
2328
2597
  id: string;
2598
+ phoneNumbers: {
2599
+ id: string;
2600
+ phoneNumber: string;
2601
+ isPrimary: boolean;
2602
+ description?: string | null | undefined;
2603
+ }[];
2329
2604
  updatedAt: string;
2330
2605
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2331
2606
  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;
2332
2607
  } | null | undefined;
2333
2608
  }, {
2334
2609
  createdAt: string | Date;
2335
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2336
2610
  id: string;
2611
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2337
2612
  updatedAt: string | Date;
2338
2613
  userId: string;
2339
2614
  company?: {
@@ -2344,8 +2619,8 @@ export declare const collaborationCheckingsContract: {
2344
2619
  } | null | undefined;
2345
2620
  client?: {
2346
2621
  createdAt: string | Date;
2347
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2348
2622
  id: string;
2623
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2349
2624
  updatedAt: string | Date;
2350
2625
  name: string;
2351
2626
  crn: string | null;
@@ -2367,18 +2642,23 @@ export declare const collaborationCheckingsContract: {
2367
2642
  lastName: string;
2368
2643
  firstName: string;
2369
2644
  email: string;
2370
- phone: string;
2371
2645
  createdAt: string | Date;
2372
2646
  id: string;
2373
2647
  updatedAt: string | Date;
2648
+ phoneNumbers?: {
2649
+ id: string;
2650
+ phoneNumber: string;
2651
+ description?: string | null | undefined;
2652
+ isPrimary?: boolean | undefined;
2653
+ }[] | undefined;
2374
2654
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2375
2655
  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;
2376
2656
  } | null | undefined;
2377
2657
  }>>>;
2378
2658
  }, "strip", z.ZodTypeAny, {
2379
2659
  createdAt: string;
2380
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2381
2660
  id: string;
2661
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2382
2662
  updatedAt: string;
2383
2663
  userId: string;
2384
2664
  company?: {
@@ -2389,8 +2669,8 @@ export declare const collaborationCheckingsContract: {
2389
2669
  } | null | undefined;
2390
2670
  client?: {
2391
2671
  createdAt: string;
2392
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2393
2672
  id: string;
2673
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2394
2674
  updatedAt: string;
2395
2675
  name: string;
2396
2676
  crn: string | null;
@@ -2412,17 +2692,22 @@ export declare const collaborationCheckingsContract: {
2412
2692
  lastName: string;
2413
2693
  firstName: string;
2414
2694
  email: string;
2415
- phone: string;
2416
2695
  createdAt: string;
2417
2696
  id: string;
2697
+ phoneNumbers: {
2698
+ id: string;
2699
+ phoneNumber: string;
2700
+ isPrimary: boolean;
2701
+ description?: string | null | undefined;
2702
+ }[];
2418
2703
  updatedAt: string;
2419
2704
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2420
2705
  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;
2421
2706
  } | null | undefined;
2422
2707
  newCollaboration?: {
2423
2708
  createdAt: string;
2424
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2425
2709
  id: string;
2710
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2426
2711
  updatedAt: string;
2427
2712
  userId: string;
2428
2713
  company?: {
@@ -2433,8 +2718,8 @@ export declare const collaborationCheckingsContract: {
2433
2718
  } | null | undefined;
2434
2719
  client?: {
2435
2720
  createdAt: string;
2436
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2437
2721
  id: string;
2722
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2438
2723
  updatedAt: string;
2439
2724
  name: string;
2440
2725
  crn: string | null;
@@ -2456,9 +2741,14 @@ export declare const collaborationCheckingsContract: {
2456
2741
  lastName: string;
2457
2742
  firstName: string;
2458
2743
  email: string;
2459
- phone: string;
2460
2744
  createdAt: string;
2461
2745
  id: string;
2746
+ phoneNumbers: {
2747
+ id: string;
2748
+ phoneNumber: string;
2749
+ isPrimary: boolean;
2750
+ description?: string | null | undefined;
2751
+ }[];
2462
2752
  updatedAt: string;
2463
2753
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2464
2754
  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;
@@ -2466,8 +2756,8 @@ export declare const collaborationCheckingsContract: {
2466
2756
  } | null | undefined;
2467
2757
  }, {
2468
2758
  createdAt: string | Date;
2469
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2470
2759
  id: string;
2760
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2471
2761
  updatedAt: string | Date;
2472
2762
  userId: string;
2473
2763
  company?: {
@@ -2478,8 +2768,8 @@ export declare const collaborationCheckingsContract: {
2478
2768
  } | null | undefined;
2479
2769
  client?: {
2480
2770
  createdAt: string | Date;
2481
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2482
2771
  id: string;
2772
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2483
2773
  updatedAt: string | Date;
2484
2774
  name: string;
2485
2775
  crn: string | null;
@@ -2501,17 +2791,22 @@ export declare const collaborationCheckingsContract: {
2501
2791
  lastName: string;
2502
2792
  firstName: string;
2503
2793
  email: string;
2504
- phone: string;
2505
2794
  createdAt: string | Date;
2506
2795
  id: string;
2507
2796
  updatedAt: string | Date;
2797
+ phoneNumbers?: {
2798
+ id: string;
2799
+ phoneNumber: string;
2800
+ description?: string | null | undefined;
2801
+ isPrimary?: boolean | undefined;
2802
+ }[] | undefined;
2508
2803
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2509
2804
  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;
2510
2805
  } | null | undefined;
2511
2806
  newCollaboration?: {
2512
2807
  createdAt: string | Date;
2513
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2514
2808
  id: string;
2809
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2515
2810
  updatedAt: string | Date;
2516
2811
  userId: string;
2517
2812
  company?: {
@@ -2522,8 +2817,8 @@ export declare const collaborationCheckingsContract: {
2522
2817
  } | null | undefined;
2523
2818
  client?: {
2524
2819
  createdAt: string | Date;
2525
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2526
2820
  id: string;
2821
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2527
2822
  updatedAt: string | Date;
2528
2823
  name: string;
2529
2824
  crn: string | null;
@@ -2545,10 +2840,15 @@ export declare const collaborationCheckingsContract: {
2545
2840
  lastName: string;
2546
2841
  firstName: string;
2547
2842
  email: string;
2548
- phone: string;
2549
2843
  createdAt: string | Date;
2550
2844
  id: string;
2551
2845
  updatedAt: string | Date;
2846
+ phoneNumbers?: {
2847
+ id: string;
2848
+ phoneNumber: string;
2849
+ description?: string | null | undefined;
2850
+ isPrimary?: boolean | undefined;
2851
+ }[] | undefined;
2552
2852
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2553
2853
  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;
2554
2854
  } | null | undefined;
@@ -2584,8 +2884,8 @@ export declare const collaborationCheckingsContract: {
2584
2884
  clientContactId?: string | null | undefined;
2585
2885
  collaboration?: {
2586
2886
  createdAt: string;
2587
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2588
2887
  id: string;
2888
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2589
2889
  updatedAt: string;
2590
2890
  userId: string;
2591
2891
  company?: {
@@ -2596,8 +2896,8 @@ export declare const collaborationCheckingsContract: {
2596
2896
  } | null | undefined;
2597
2897
  client?: {
2598
2898
  createdAt: string;
2599
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2600
2899
  id: string;
2900
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2601
2901
  updatedAt: string;
2602
2902
  name: string;
2603
2903
  crn: string | null;
@@ -2619,17 +2919,22 @@ export declare const collaborationCheckingsContract: {
2619
2919
  lastName: string;
2620
2920
  firstName: string;
2621
2921
  email: string;
2622
- phone: string;
2623
2922
  createdAt: string;
2624
2923
  id: string;
2924
+ phoneNumbers: {
2925
+ id: string;
2926
+ phoneNumber: string;
2927
+ isPrimary: boolean;
2928
+ description?: string | null | undefined;
2929
+ }[];
2625
2930
  updatedAt: string;
2626
2931
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2627
2932
  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;
2628
2933
  } | null | undefined;
2629
2934
  newCollaboration?: {
2630
2935
  createdAt: string;
2631
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2632
2936
  id: string;
2937
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2633
2938
  updatedAt: string;
2634
2939
  userId: string;
2635
2940
  company?: {
@@ -2640,8 +2945,8 @@ export declare const collaborationCheckingsContract: {
2640
2945
  } | null | undefined;
2641
2946
  client?: {
2642
2947
  createdAt: string;
2643
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2644
2948
  id: string;
2949
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2645
2950
  updatedAt: string;
2646
2951
  name: string;
2647
2952
  crn: string | null;
@@ -2663,9 +2968,14 @@ export declare const collaborationCheckingsContract: {
2663
2968
  lastName: string;
2664
2969
  firstName: string;
2665
2970
  email: string;
2666
- phone: string;
2667
2971
  createdAt: string;
2668
2972
  id: string;
2973
+ phoneNumbers: {
2974
+ id: string;
2975
+ phoneNumber: string;
2976
+ isPrimary: boolean;
2977
+ description?: string | null | undefined;
2978
+ }[];
2669
2979
  updatedAt: string;
2670
2980
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2671
2981
  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;
@@ -2693,8 +3003,8 @@ export declare const collaborationCheckingsContract: {
2693
3003
  clientContactId?: string | null | undefined;
2694
3004
  collaboration?: {
2695
3005
  createdAt: string | Date;
2696
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2697
3006
  id: string;
3007
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2698
3008
  updatedAt: string | Date;
2699
3009
  userId: string;
2700
3010
  company?: {
@@ -2705,8 +3015,8 @@ export declare const collaborationCheckingsContract: {
2705
3015
  } | null | undefined;
2706
3016
  client?: {
2707
3017
  createdAt: string | Date;
2708
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2709
3018
  id: string;
3019
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2710
3020
  updatedAt: string | Date;
2711
3021
  name: string;
2712
3022
  crn: string | null;
@@ -2728,17 +3038,22 @@ export declare const collaborationCheckingsContract: {
2728
3038
  lastName: string;
2729
3039
  firstName: string;
2730
3040
  email: string;
2731
- phone: string;
2732
3041
  createdAt: string | Date;
2733
3042
  id: string;
2734
3043
  updatedAt: string | Date;
3044
+ phoneNumbers?: {
3045
+ id: string;
3046
+ phoneNumber: string;
3047
+ description?: string | null | undefined;
3048
+ isPrimary?: boolean | undefined;
3049
+ }[] | undefined;
2735
3050
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2736
3051
  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;
2737
3052
  } | null | undefined;
2738
3053
  newCollaboration?: {
2739
3054
  createdAt: string | Date;
2740
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2741
3055
  id: string;
3056
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2742
3057
  updatedAt: string | Date;
2743
3058
  userId: string;
2744
3059
  company?: {
@@ -2749,8 +3064,8 @@ export declare const collaborationCheckingsContract: {
2749
3064
  } | null | undefined;
2750
3065
  client?: {
2751
3066
  createdAt: string | Date;
2752
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2753
3067
  id: string;
3068
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2754
3069
  updatedAt: string | Date;
2755
3070
  name: string;
2756
3071
  crn: string | null;
@@ -2772,10 +3087,15 @@ export declare const collaborationCheckingsContract: {
2772
3087
  lastName: string;
2773
3088
  firstName: string;
2774
3089
  email: string;
2775
- phone: string;
2776
3090
  createdAt: string | Date;
2777
3091
  id: string;
2778
3092
  updatedAt: string | Date;
3093
+ phoneNumbers?: {
3094
+ id: string;
3095
+ phoneNumber: string;
3096
+ description?: string | null | undefined;
3097
+ isPrimary?: boolean | undefined;
3098
+ }[] | undefined;
2779
3099
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2780
3100
  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;
2781
3101
  } | null | undefined;
@@ -3017,8 +3337,8 @@ export declare const collaborationCheckingsContract: {
3017
3337
  }>>>;
3018
3338
  }, "strip", z.ZodTypeAny, {
3019
3339
  createdAt: string;
3020
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3021
3340
  id: string;
3341
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3022
3342
  updatedAt: string;
3023
3343
  name: string;
3024
3344
  crn: string | null;
@@ -3037,8 +3357,8 @@ export declare const collaborationCheckingsContract: {
3037
3357
  } | null | undefined;
3038
3358
  }, {
3039
3359
  createdAt: string | Date;
3040
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3041
3360
  id: string;
3361
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3042
3362
  updatedAt: string | Date;
3043
3363
  name: string;
3044
3364
  crn: string | null;
@@ -3061,7 +3381,22 @@ export declare const collaborationCheckingsContract: {
3061
3381
  firstName: z.ZodString;
3062
3382
  lastName: z.ZodString;
3063
3383
  email: z.ZodString;
3064
- phone: z.ZodString;
3384
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
3385
+ id: z.ZodString;
3386
+ phoneNumber: z.ZodString;
3387
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3388
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
3389
+ }, "strip", z.ZodTypeAny, {
3390
+ id: string;
3391
+ phoneNumber: string;
3392
+ isPrimary: boolean;
3393
+ description?: string | null | undefined;
3394
+ }, {
3395
+ id: string;
3396
+ phoneNumber: string;
3397
+ description?: string | null | undefined;
3398
+ isPrimary?: boolean | undefined;
3399
+ }>, "many">>>;
3065
3400
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
3066
3401
  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"]>>>;
3067
3402
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -3070,9 +3405,14 @@ export declare const collaborationCheckingsContract: {
3070
3405
  lastName: string;
3071
3406
  firstName: string;
3072
3407
  email: string;
3073
- phone: string;
3074
3408
  createdAt: string;
3075
3409
  id: string;
3410
+ phoneNumbers: {
3411
+ id: string;
3412
+ phoneNumber: string;
3413
+ isPrimary: boolean;
3414
+ description?: string | null | undefined;
3415
+ }[];
3076
3416
  updatedAt: string;
3077
3417
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3078
3418
  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;
@@ -3080,10 +3420,15 @@ export declare const collaborationCheckingsContract: {
3080
3420
  lastName: string;
3081
3421
  firstName: string;
3082
3422
  email: string;
3083
- phone: string;
3084
3423
  createdAt: string | Date;
3085
3424
  id: string;
3086
3425
  updatedAt: string | Date;
3426
+ phoneNumbers?: {
3427
+ id: string;
3428
+ phoneNumber: string;
3429
+ description?: string | null | undefined;
3430
+ isPrimary?: boolean | undefined;
3431
+ }[] | undefined;
3087
3432
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3088
3433
  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;
3089
3434
  }>>>;
@@ -3146,8 +3491,8 @@ export declare const collaborationCheckingsContract: {
3146
3491
  }>>>;
3147
3492
  }, "strip", z.ZodTypeAny, {
3148
3493
  createdAt: string;
3149
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3150
3494
  id: string;
3495
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3151
3496
  updatedAt: string;
3152
3497
  name: string;
3153
3498
  crn: string | null;
@@ -3166,8 +3511,8 @@ export declare const collaborationCheckingsContract: {
3166
3511
  } | null | undefined;
3167
3512
  }, {
3168
3513
  createdAt: string | Date;
3169
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3170
3514
  id: string;
3515
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3171
3516
  updatedAt: string | Date;
3172
3517
  name: string;
3173
3518
  crn: string | null;
@@ -3190,7 +3535,22 @@ export declare const collaborationCheckingsContract: {
3190
3535
  firstName: z.ZodString;
3191
3536
  lastName: z.ZodString;
3192
3537
  email: z.ZodString;
3193
- phone: z.ZodString;
3538
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
3539
+ id: z.ZodString;
3540
+ phoneNumber: z.ZodString;
3541
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3542
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
3543
+ }, "strip", z.ZodTypeAny, {
3544
+ id: string;
3545
+ phoneNumber: string;
3546
+ isPrimary: boolean;
3547
+ description?: string | null | undefined;
3548
+ }, {
3549
+ id: string;
3550
+ phoneNumber: string;
3551
+ description?: string | null | undefined;
3552
+ isPrimary?: boolean | undefined;
3553
+ }>, "many">>>;
3194
3554
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
3195
3555
  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"]>>>;
3196
3556
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -3199,9 +3559,14 @@ export declare const collaborationCheckingsContract: {
3199
3559
  lastName: string;
3200
3560
  firstName: string;
3201
3561
  email: string;
3202
- phone: string;
3203
3562
  createdAt: string;
3204
3563
  id: string;
3564
+ phoneNumbers: {
3565
+ id: string;
3566
+ phoneNumber: string;
3567
+ isPrimary: boolean;
3568
+ description?: string | null | undefined;
3569
+ }[];
3205
3570
  updatedAt: string;
3206
3571
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3207
3572
  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;
@@ -3209,10 +3574,15 @@ export declare const collaborationCheckingsContract: {
3209
3574
  lastName: string;
3210
3575
  firstName: string;
3211
3576
  email: string;
3212
- phone: string;
3213
3577
  createdAt: string | Date;
3214
3578
  id: string;
3215
3579
  updatedAt: string | Date;
3580
+ phoneNumbers?: {
3581
+ id: string;
3582
+ phoneNumber: string;
3583
+ description?: string | null | undefined;
3584
+ isPrimary?: boolean | undefined;
3585
+ }[] | undefined;
3216
3586
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3217
3587
  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;
3218
3588
  }>>>;
@@ -3222,8 +3592,8 @@ export declare const collaborationCheckingsContract: {
3222
3592
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3223
3593
  }, "strip", z.ZodTypeAny, {
3224
3594
  createdAt: string;
3225
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3226
3595
  id: string;
3596
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3227
3597
  updatedAt: string;
3228
3598
  userId: string;
3229
3599
  company?: {
@@ -3234,8 +3604,8 @@ export declare const collaborationCheckingsContract: {
3234
3604
  } | null | undefined;
3235
3605
  client?: {
3236
3606
  createdAt: string;
3237
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3238
3607
  id: string;
3608
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3239
3609
  updatedAt: string;
3240
3610
  name: string;
3241
3611
  crn: string | null;
@@ -3257,17 +3627,22 @@ export declare const collaborationCheckingsContract: {
3257
3627
  lastName: string;
3258
3628
  firstName: string;
3259
3629
  email: string;
3260
- phone: string;
3261
3630
  createdAt: string;
3262
3631
  id: string;
3632
+ phoneNumbers: {
3633
+ id: string;
3634
+ phoneNumber: string;
3635
+ isPrimary: boolean;
3636
+ description?: string | null | undefined;
3637
+ }[];
3263
3638
  updatedAt: string;
3264
3639
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3265
3640
  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;
3266
3641
  } | null | undefined;
3267
3642
  }, {
3268
3643
  createdAt: string | Date;
3269
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3270
3644
  id: string;
3645
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3271
3646
  updatedAt: string | Date;
3272
3647
  userId: string;
3273
3648
  company?: {
@@ -3278,8 +3653,8 @@ export declare const collaborationCheckingsContract: {
3278
3653
  } | null | undefined;
3279
3654
  client?: {
3280
3655
  createdAt: string | Date;
3281
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3282
3656
  id: string;
3657
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3283
3658
  updatedAt: string | Date;
3284
3659
  name: string;
3285
3660
  crn: string | null;
@@ -3301,18 +3676,23 @@ export declare const collaborationCheckingsContract: {
3301
3676
  lastName: string;
3302
3677
  firstName: string;
3303
3678
  email: string;
3304
- phone: string;
3305
3679
  createdAt: string | Date;
3306
3680
  id: string;
3307
3681
  updatedAt: string | Date;
3682
+ phoneNumbers?: {
3683
+ id: string;
3684
+ phoneNumber: string;
3685
+ description?: string | null | undefined;
3686
+ isPrimary?: boolean | undefined;
3687
+ }[] | undefined;
3308
3688
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3309
3689
  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;
3310
3690
  } | null | undefined;
3311
3691
  }>>>;
3312
3692
  }, "strip", z.ZodTypeAny, {
3313
3693
  createdAt: string;
3314
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3315
3694
  id: string;
3695
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3316
3696
  updatedAt: string;
3317
3697
  userId: string;
3318
3698
  company?: {
@@ -3323,8 +3703,8 @@ export declare const collaborationCheckingsContract: {
3323
3703
  } | null | undefined;
3324
3704
  client?: {
3325
3705
  createdAt: string;
3326
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3327
3706
  id: string;
3707
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3328
3708
  updatedAt: string;
3329
3709
  name: string;
3330
3710
  crn: string | null;
@@ -3346,17 +3726,22 @@ export declare const collaborationCheckingsContract: {
3346
3726
  lastName: string;
3347
3727
  firstName: string;
3348
3728
  email: string;
3349
- phone: string;
3350
3729
  createdAt: string;
3351
3730
  id: string;
3731
+ phoneNumbers: {
3732
+ id: string;
3733
+ phoneNumber: string;
3734
+ isPrimary: boolean;
3735
+ description?: string | null | undefined;
3736
+ }[];
3352
3737
  updatedAt: string;
3353
3738
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3354
3739
  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;
3355
3740
  } | null | undefined;
3356
3741
  newCollaboration?: {
3357
3742
  createdAt: string;
3358
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3359
3743
  id: string;
3744
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3360
3745
  updatedAt: string;
3361
3746
  userId: string;
3362
3747
  company?: {
@@ -3367,8 +3752,8 @@ export declare const collaborationCheckingsContract: {
3367
3752
  } | null | undefined;
3368
3753
  client?: {
3369
3754
  createdAt: string;
3370
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3371
3755
  id: string;
3756
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3372
3757
  updatedAt: string;
3373
3758
  name: string;
3374
3759
  crn: string | null;
@@ -3390,9 +3775,14 @@ export declare const collaborationCheckingsContract: {
3390
3775
  lastName: string;
3391
3776
  firstName: string;
3392
3777
  email: string;
3393
- phone: string;
3394
3778
  createdAt: string;
3395
3779
  id: string;
3780
+ phoneNumbers: {
3781
+ id: string;
3782
+ phoneNumber: string;
3783
+ isPrimary: boolean;
3784
+ description?: string | null | undefined;
3785
+ }[];
3396
3786
  updatedAt: string;
3397
3787
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3398
3788
  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;
@@ -3400,8 +3790,8 @@ export declare const collaborationCheckingsContract: {
3400
3790
  } | null | undefined;
3401
3791
  }, {
3402
3792
  createdAt: string | Date;
3403
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3404
3793
  id: string;
3794
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3405
3795
  updatedAt: string | Date;
3406
3796
  userId: string;
3407
3797
  company?: {
@@ -3412,8 +3802,8 @@ export declare const collaborationCheckingsContract: {
3412
3802
  } | null | undefined;
3413
3803
  client?: {
3414
3804
  createdAt: string | Date;
3415
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3416
3805
  id: string;
3806
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3417
3807
  updatedAt: string | Date;
3418
3808
  name: string;
3419
3809
  crn: string | null;
@@ -3435,17 +3825,22 @@ export declare const collaborationCheckingsContract: {
3435
3825
  lastName: string;
3436
3826
  firstName: string;
3437
3827
  email: string;
3438
- phone: string;
3439
3828
  createdAt: string | Date;
3440
3829
  id: string;
3441
3830
  updatedAt: string | Date;
3831
+ phoneNumbers?: {
3832
+ id: string;
3833
+ phoneNumber: string;
3834
+ description?: string | null | undefined;
3835
+ isPrimary?: boolean | undefined;
3836
+ }[] | undefined;
3442
3837
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3443
3838
  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;
3444
3839
  } | null | undefined;
3445
3840
  newCollaboration?: {
3446
3841
  createdAt: string | Date;
3447
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3448
3842
  id: string;
3843
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3449
3844
  updatedAt: string | Date;
3450
3845
  userId: string;
3451
3846
  company?: {
@@ -3456,8 +3851,8 @@ export declare const collaborationCheckingsContract: {
3456
3851
  } | null | undefined;
3457
3852
  client?: {
3458
3853
  createdAt: string | Date;
3459
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3460
3854
  id: string;
3855
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3461
3856
  updatedAt: string | Date;
3462
3857
  name: string;
3463
3858
  crn: string | null;
@@ -3479,10 +3874,15 @@ export declare const collaborationCheckingsContract: {
3479
3874
  lastName: string;
3480
3875
  firstName: string;
3481
3876
  email: string;
3482
- phone: string;
3483
3877
  createdAt: string | Date;
3484
3878
  id: string;
3485
3879
  updatedAt: string | Date;
3880
+ phoneNumbers?: {
3881
+ id: string;
3882
+ phoneNumber: string;
3883
+ description?: string | null | undefined;
3884
+ isPrimary?: boolean | undefined;
3885
+ }[] | undefined;
3486
3886
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3487
3887
  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;
3488
3888
  } | null | undefined;
@@ -3518,8 +3918,8 @@ export declare const collaborationCheckingsContract: {
3518
3918
  clientContactId?: string | null | undefined;
3519
3919
  collaboration?: {
3520
3920
  createdAt: string;
3521
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3522
3921
  id: string;
3922
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3523
3923
  updatedAt: string;
3524
3924
  userId: string;
3525
3925
  company?: {
@@ -3530,8 +3930,8 @@ export declare const collaborationCheckingsContract: {
3530
3930
  } | null | undefined;
3531
3931
  client?: {
3532
3932
  createdAt: string;
3533
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3534
3933
  id: string;
3934
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3535
3935
  updatedAt: string;
3536
3936
  name: string;
3537
3937
  crn: string | null;
@@ -3553,17 +3953,22 @@ export declare const collaborationCheckingsContract: {
3553
3953
  lastName: string;
3554
3954
  firstName: string;
3555
3955
  email: string;
3556
- phone: string;
3557
3956
  createdAt: string;
3558
3957
  id: string;
3958
+ phoneNumbers: {
3959
+ id: string;
3960
+ phoneNumber: string;
3961
+ isPrimary: boolean;
3962
+ description?: string | null | undefined;
3963
+ }[];
3559
3964
  updatedAt: string;
3560
3965
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3561
3966
  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;
3562
3967
  } | null | undefined;
3563
3968
  newCollaboration?: {
3564
3969
  createdAt: string;
3565
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3566
3970
  id: string;
3971
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3567
3972
  updatedAt: string;
3568
3973
  userId: string;
3569
3974
  company?: {
@@ -3574,8 +3979,8 @@ export declare const collaborationCheckingsContract: {
3574
3979
  } | null | undefined;
3575
3980
  client?: {
3576
3981
  createdAt: string;
3577
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3578
3982
  id: string;
3983
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3579
3984
  updatedAt: string;
3580
3985
  name: string;
3581
3986
  crn: string | null;
@@ -3597,9 +4002,14 @@ export declare const collaborationCheckingsContract: {
3597
4002
  lastName: string;
3598
4003
  firstName: string;
3599
4004
  email: string;
3600
- phone: string;
3601
4005
  createdAt: string;
3602
4006
  id: string;
4007
+ phoneNumbers: {
4008
+ id: string;
4009
+ phoneNumber: string;
4010
+ isPrimary: boolean;
4011
+ description?: string | null | undefined;
4012
+ }[];
3603
4013
  updatedAt: string;
3604
4014
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3605
4015
  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;
@@ -3627,8 +4037,8 @@ export declare const collaborationCheckingsContract: {
3627
4037
  clientContactId?: string | null | undefined;
3628
4038
  collaboration?: {
3629
4039
  createdAt: string | Date;
3630
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3631
4040
  id: string;
4041
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3632
4042
  updatedAt: string | Date;
3633
4043
  userId: string;
3634
4044
  company?: {
@@ -3639,8 +4049,8 @@ export declare const collaborationCheckingsContract: {
3639
4049
  } | null | undefined;
3640
4050
  client?: {
3641
4051
  createdAt: string | Date;
3642
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3643
4052
  id: string;
4053
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3644
4054
  updatedAt: string | Date;
3645
4055
  name: string;
3646
4056
  crn: string | null;
@@ -3662,17 +4072,22 @@ export declare const collaborationCheckingsContract: {
3662
4072
  lastName: string;
3663
4073
  firstName: string;
3664
4074
  email: string;
3665
- phone: string;
3666
4075
  createdAt: string | Date;
3667
4076
  id: string;
3668
4077
  updatedAt: string | Date;
4078
+ phoneNumbers?: {
4079
+ id: string;
4080
+ phoneNumber: string;
4081
+ description?: string | null | undefined;
4082
+ isPrimary?: boolean | undefined;
4083
+ }[] | undefined;
3669
4084
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3670
4085
  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;
3671
4086
  } | null | undefined;
3672
4087
  newCollaboration?: {
3673
4088
  createdAt: string | Date;
3674
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3675
4089
  id: string;
4090
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3676
4091
  updatedAt: string | Date;
3677
4092
  userId: string;
3678
4093
  company?: {
@@ -3683,8 +4098,8 @@ export declare const collaborationCheckingsContract: {
3683
4098
  } | null | undefined;
3684
4099
  client?: {
3685
4100
  createdAt: string | Date;
3686
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3687
4101
  id: string;
4102
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3688
4103
  updatedAt: string | Date;
3689
4104
  name: string;
3690
4105
  crn: string | null;
@@ -3706,10 +4121,15 @@ export declare const collaborationCheckingsContract: {
3706
4121
  lastName: string;
3707
4122
  firstName: string;
3708
4123
  email: string;
3709
- phone: string;
3710
4124
  createdAt: string | Date;
3711
4125
  id: string;
3712
4126
  updatedAt: string | Date;
4127
+ phoneNumbers?: {
4128
+ id: string;
4129
+ phoneNumber: string;
4130
+ description?: string | null | undefined;
4131
+ isPrimary?: boolean | undefined;
4132
+ }[] | undefined;
3713
4133
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3714
4134
  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;
3715
4135
  } | null | undefined;
@@ -3744,8 +4164,8 @@ export declare const collaborationCheckingsContract: {
3744
4164
  clientContactId?: string | null | undefined;
3745
4165
  collaboration?: {
3746
4166
  createdAt: string;
3747
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3748
4167
  id: string;
4168
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3749
4169
  updatedAt: string;
3750
4170
  userId: string;
3751
4171
  company?: {
@@ -3756,8 +4176,8 @@ export declare const collaborationCheckingsContract: {
3756
4176
  } | null | undefined;
3757
4177
  client?: {
3758
4178
  createdAt: string;
3759
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3760
4179
  id: string;
4180
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3761
4181
  updatedAt: string;
3762
4182
  name: string;
3763
4183
  crn: string | null;
@@ -3779,17 +4199,22 @@ export declare const collaborationCheckingsContract: {
3779
4199
  lastName: string;
3780
4200
  firstName: string;
3781
4201
  email: string;
3782
- phone: string;
3783
4202
  createdAt: string;
3784
4203
  id: string;
4204
+ phoneNumbers: {
4205
+ id: string;
4206
+ phoneNumber: string;
4207
+ isPrimary: boolean;
4208
+ description?: string | null | undefined;
4209
+ }[];
3785
4210
  updatedAt: string;
3786
4211
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3787
4212
  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;
3788
4213
  } | null | undefined;
3789
4214
  newCollaboration?: {
3790
4215
  createdAt: string;
3791
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3792
4216
  id: string;
4217
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3793
4218
  updatedAt: string;
3794
4219
  userId: string;
3795
4220
  company?: {
@@ -3800,8 +4225,8 @@ export declare const collaborationCheckingsContract: {
3800
4225
  } | null | undefined;
3801
4226
  client?: {
3802
4227
  createdAt: string;
3803
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3804
4228
  id: string;
4229
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3805
4230
  updatedAt: string;
3806
4231
  name: string;
3807
4232
  crn: string | null;
@@ -3823,9 +4248,14 @@ export declare const collaborationCheckingsContract: {
3823
4248
  lastName: string;
3824
4249
  firstName: string;
3825
4250
  email: string;
3826
- phone: string;
3827
4251
  createdAt: string;
3828
4252
  id: string;
4253
+ phoneNumbers: {
4254
+ id: string;
4255
+ phoneNumber: string;
4256
+ isPrimary: boolean;
4257
+ description?: string | null | undefined;
4258
+ }[];
3829
4259
  updatedAt: string;
3830
4260
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3831
4261
  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;
@@ -3860,8 +4290,8 @@ export declare const collaborationCheckingsContract: {
3860
4290
  clientContactId?: string | null | undefined;
3861
4291
  collaboration?: {
3862
4292
  createdAt: string | Date;
3863
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3864
4293
  id: string;
4294
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3865
4295
  updatedAt: string | Date;
3866
4296
  userId: string;
3867
4297
  company?: {
@@ -3872,8 +4302,8 @@ export declare const collaborationCheckingsContract: {
3872
4302
  } | null | undefined;
3873
4303
  client?: {
3874
4304
  createdAt: string | Date;
3875
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3876
4305
  id: string;
4306
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3877
4307
  updatedAt: string | Date;
3878
4308
  name: string;
3879
4309
  crn: string | null;
@@ -3895,17 +4325,22 @@ export declare const collaborationCheckingsContract: {
3895
4325
  lastName: string;
3896
4326
  firstName: string;
3897
4327
  email: string;
3898
- phone: string;
3899
4328
  createdAt: string | Date;
3900
4329
  id: string;
3901
4330
  updatedAt: string | Date;
4331
+ phoneNumbers?: {
4332
+ id: string;
4333
+ phoneNumber: string;
4334
+ description?: string | null | undefined;
4335
+ isPrimary?: boolean | undefined;
4336
+ }[] | undefined;
3902
4337
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3903
4338
  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;
3904
4339
  } | null | undefined;
3905
4340
  newCollaboration?: {
3906
4341
  createdAt: string | Date;
3907
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3908
4342
  id: string;
4343
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3909
4344
  updatedAt: string | Date;
3910
4345
  userId: string;
3911
4346
  company?: {
@@ -3916,8 +4351,8 @@ export declare const collaborationCheckingsContract: {
3916
4351
  } | null | undefined;
3917
4352
  client?: {
3918
4353
  createdAt: string | Date;
3919
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3920
4354
  id: string;
4355
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3921
4356
  updatedAt: string | Date;
3922
4357
  name: string;
3923
4358
  crn: string | null;
@@ -3939,10 +4374,15 @@ export declare const collaborationCheckingsContract: {
3939
4374
  lastName: string;
3940
4375
  firstName: string;
3941
4376
  email: string;
3942
- phone: string;
3943
4377
  createdAt: string | Date;
3944
4378
  id: string;
3945
4379
  updatedAt: string | Date;
4380
+ phoneNumbers?: {
4381
+ id: string;
4382
+ phoneNumber: string;
4383
+ description?: string | null | undefined;
4384
+ isPrimary?: boolean | undefined;
4385
+ }[] | undefined;
3946
4386
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
3947
4387
  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;
3948
4388
  } | null | undefined;
@@ -4138,8 +4578,8 @@ export declare const collaborationCheckingsContract: {
4138
4578
  }>>>;
4139
4579
  }, "strip", z.ZodTypeAny, {
4140
4580
  createdAt: string;
4141
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4142
4581
  id: string;
4582
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4143
4583
  updatedAt: string;
4144
4584
  name: string;
4145
4585
  crn: string | null;
@@ -4158,8 +4598,8 @@ export declare const collaborationCheckingsContract: {
4158
4598
  } | null | undefined;
4159
4599
  }, {
4160
4600
  createdAt: string | Date;
4161
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4162
4601
  id: string;
4602
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4163
4603
  updatedAt: string | Date;
4164
4604
  name: string;
4165
4605
  crn: string | null;
@@ -4182,7 +4622,22 @@ export declare const collaborationCheckingsContract: {
4182
4622
  firstName: z.ZodString;
4183
4623
  lastName: z.ZodString;
4184
4624
  email: z.ZodString;
4185
- phone: z.ZodString;
4625
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
4626
+ id: z.ZodString;
4627
+ phoneNumber: z.ZodString;
4628
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4629
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
4630
+ }, "strip", z.ZodTypeAny, {
4631
+ id: string;
4632
+ phoneNumber: string;
4633
+ isPrimary: boolean;
4634
+ description?: string | null | undefined;
4635
+ }, {
4636
+ id: string;
4637
+ phoneNumber: string;
4638
+ description?: string | null | undefined;
4639
+ isPrimary?: boolean | undefined;
4640
+ }>, "many">>>;
4186
4641
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
4187
4642
  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"]>>>;
4188
4643
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -4191,9 +4646,14 @@ export declare const collaborationCheckingsContract: {
4191
4646
  lastName: string;
4192
4647
  firstName: string;
4193
4648
  email: string;
4194
- phone: string;
4195
4649
  createdAt: string;
4196
4650
  id: string;
4651
+ phoneNumbers: {
4652
+ id: string;
4653
+ phoneNumber: string;
4654
+ isPrimary: boolean;
4655
+ description?: string | null | undefined;
4656
+ }[];
4197
4657
  updatedAt: string;
4198
4658
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4199
4659
  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;
@@ -4201,10 +4661,15 @@ export declare const collaborationCheckingsContract: {
4201
4661
  lastName: string;
4202
4662
  firstName: string;
4203
4663
  email: string;
4204
- phone: string;
4205
4664
  createdAt: string | Date;
4206
4665
  id: string;
4207
4666
  updatedAt: string | Date;
4667
+ phoneNumbers?: {
4668
+ id: string;
4669
+ phoneNumber: string;
4670
+ description?: string | null | undefined;
4671
+ isPrimary?: boolean | undefined;
4672
+ }[] | undefined;
4208
4673
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4209
4674
  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;
4210
4675
  }>>>;
@@ -4267,8 +4732,8 @@ export declare const collaborationCheckingsContract: {
4267
4732
  }>>>;
4268
4733
  }, "strip", z.ZodTypeAny, {
4269
4734
  createdAt: string;
4270
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4271
4735
  id: string;
4736
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4272
4737
  updatedAt: string;
4273
4738
  name: string;
4274
4739
  crn: string | null;
@@ -4287,8 +4752,8 @@ export declare const collaborationCheckingsContract: {
4287
4752
  } | null | undefined;
4288
4753
  }, {
4289
4754
  createdAt: string | Date;
4290
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4291
4755
  id: string;
4756
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4292
4757
  updatedAt: string | Date;
4293
4758
  name: string;
4294
4759
  crn: string | null;
@@ -4311,7 +4776,22 @@ export declare const collaborationCheckingsContract: {
4311
4776
  firstName: z.ZodString;
4312
4777
  lastName: z.ZodString;
4313
4778
  email: z.ZodString;
4314
- phone: z.ZodString;
4779
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
4780
+ id: z.ZodString;
4781
+ phoneNumber: z.ZodString;
4782
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4783
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
4784
+ }, "strip", z.ZodTypeAny, {
4785
+ id: string;
4786
+ phoneNumber: string;
4787
+ isPrimary: boolean;
4788
+ description?: string | null | undefined;
4789
+ }, {
4790
+ id: string;
4791
+ phoneNumber: string;
4792
+ description?: string | null | undefined;
4793
+ isPrimary?: boolean | undefined;
4794
+ }>, "many">>>;
4315
4795
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
4316
4796
  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"]>>>;
4317
4797
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -4320,9 +4800,14 @@ export declare const collaborationCheckingsContract: {
4320
4800
  lastName: string;
4321
4801
  firstName: string;
4322
4802
  email: string;
4323
- phone: string;
4324
4803
  createdAt: string;
4325
4804
  id: string;
4805
+ phoneNumbers: {
4806
+ id: string;
4807
+ phoneNumber: string;
4808
+ isPrimary: boolean;
4809
+ description?: string | null | undefined;
4810
+ }[];
4326
4811
  updatedAt: string;
4327
4812
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4328
4813
  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;
@@ -4330,10 +4815,15 @@ export declare const collaborationCheckingsContract: {
4330
4815
  lastName: string;
4331
4816
  firstName: string;
4332
4817
  email: string;
4333
- phone: string;
4334
4818
  createdAt: string | Date;
4335
4819
  id: string;
4336
4820
  updatedAt: string | Date;
4821
+ phoneNumbers?: {
4822
+ id: string;
4823
+ phoneNumber: string;
4824
+ description?: string | null | undefined;
4825
+ isPrimary?: boolean | undefined;
4826
+ }[] | undefined;
4337
4827
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4338
4828
  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;
4339
4829
  }>>>;
@@ -4343,8 +4833,8 @@ export declare const collaborationCheckingsContract: {
4343
4833
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4344
4834
  }, "strip", z.ZodTypeAny, {
4345
4835
  createdAt: string;
4346
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4347
4836
  id: string;
4837
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4348
4838
  updatedAt: string;
4349
4839
  userId: string;
4350
4840
  company?: {
@@ -4355,8 +4845,8 @@ export declare const collaborationCheckingsContract: {
4355
4845
  } | null | undefined;
4356
4846
  client?: {
4357
4847
  createdAt: string;
4358
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4359
4848
  id: string;
4849
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4360
4850
  updatedAt: string;
4361
4851
  name: string;
4362
4852
  crn: string | null;
@@ -4378,17 +4868,22 @@ export declare const collaborationCheckingsContract: {
4378
4868
  lastName: string;
4379
4869
  firstName: string;
4380
4870
  email: string;
4381
- phone: string;
4382
4871
  createdAt: string;
4383
4872
  id: string;
4873
+ phoneNumbers: {
4874
+ id: string;
4875
+ phoneNumber: string;
4876
+ isPrimary: boolean;
4877
+ description?: string | null | undefined;
4878
+ }[];
4384
4879
  updatedAt: string;
4385
4880
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4386
4881
  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;
4387
4882
  } | null | undefined;
4388
4883
  }, {
4389
4884
  createdAt: string | Date;
4390
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4391
4885
  id: string;
4886
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4392
4887
  updatedAt: string | Date;
4393
4888
  userId: string;
4394
4889
  company?: {
@@ -4399,8 +4894,8 @@ export declare const collaborationCheckingsContract: {
4399
4894
  } | null | undefined;
4400
4895
  client?: {
4401
4896
  createdAt: string | Date;
4402
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4403
4897
  id: string;
4898
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4404
4899
  updatedAt: string | Date;
4405
4900
  name: string;
4406
4901
  crn: string | null;
@@ -4422,18 +4917,23 @@ export declare const collaborationCheckingsContract: {
4422
4917
  lastName: string;
4423
4918
  firstName: string;
4424
4919
  email: string;
4425
- phone: string;
4426
4920
  createdAt: string | Date;
4427
4921
  id: string;
4428
4922
  updatedAt: string | Date;
4923
+ phoneNumbers?: {
4924
+ id: string;
4925
+ phoneNumber: string;
4926
+ description?: string | null | undefined;
4927
+ isPrimary?: boolean | undefined;
4928
+ }[] | undefined;
4429
4929
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4430
4930
  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;
4431
4931
  } | null | undefined;
4432
4932
  }>>>;
4433
4933
  }, "strip", z.ZodTypeAny, {
4434
4934
  createdAt: string;
4435
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4436
4935
  id: string;
4936
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4437
4937
  updatedAt: string;
4438
4938
  userId: string;
4439
4939
  company?: {
@@ -4444,8 +4944,8 @@ export declare const collaborationCheckingsContract: {
4444
4944
  } | null | undefined;
4445
4945
  client?: {
4446
4946
  createdAt: string;
4447
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4448
4947
  id: string;
4948
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4449
4949
  updatedAt: string;
4450
4950
  name: string;
4451
4951
  crn: string | null;
@@ -4467,17 +4967,22 @@ export declare const collaborationCheckingsContract: {
4467
4967
  lastName: string;
4468
4968
  firstName: string;
4469
4969
  email: string;
4470
- phone: string;
4471
4970
  createdAt: string;
4472
4971
  id: string;
4972
+ phoneNumbers: {
4973
+ id: string;
4974
+ phoneNumber: string;
4975
+ isPrimary: boolean;
4976
+ description?: string | null | undefined;
4977
+ }[];
4473
4978
  updatedAt: string;
4474
4979
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4475
4980
  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;
4476
4981
  } | null | undefined;
4477
4982
  newCollaboration?: {
4478
4983
  createdAt: string;
4479
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4480
4984
  id: string;
4985
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4481
4986
  updatedAt: string;
4482
4987
  userId: string;
4483
4988
  company?: {
@@ -4488,8 +4993,8 @@ export declare const collaborationCheckingsContract: {
4488
4993
  } | null | undefined;
4489
4994
  client?: {
4490
4995
  createdAt: string;
4491
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4492
4996
  id: string;
4997
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4493
4998
  updatedAt: string;
4494
4999
  name: string;
4495
5000
  crn: string | null;
@@ -4511,9 +5016,14 @@ export declare const collaborationCheckingsContract: {
4511
5016
  lastName: string;
4512
5017
  firstName: string;
4513
5018
  email: string;
4514
- phone: string;
4515
5019
  createdAt: string;
4516
5020
  id: string;
5021
+ phoneNumbers: {
5022
+ id: string;
5023
+ phoneNumber: string;
5024
+ isPrimary: boolean;
5025
+ description?: string | null | undefined;
5026
+ }[];
4517
5027
  updatedAt: string;
4518
5028
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4519
5029
  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;
@@ -4521,8 +5031,8 @@ export declare const collaborationCheckingsContract: {
4521
5031
  } | null | undefined;
4522
5032
  }, {
4523
5033
  createdAt: string | Date;
4524
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4525
5034
  id: string;
5035
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4526
5036
  updatedAt: string | Date;
4527
5037
  userId: string;
4528
5038
  company?: {
@@ -4533,8 +5043,8 @@ export declare const collaborationCheckingsContract: {
4533
5043
  } | null | undefined;
4534
5044
  client?: {
4535
5045
  createdAt: string | Date;
4536
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4537
5046
  id: string;
5047
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4538
5048
  updatedAt: string | Date;
4539
5049
  name: string;
4540
5050
  crn: string | null;
@@ -4556,17 +5066,22 @@ export declare const collaborationCheckingsContract: {
4556
5066
  lastName: string;
4557
5067
  firstName: string;
4558
5068
  email: string;
4559
- phone: string;
4560
5069
  createdAt: string | Date;
4561
5070
  id: string;
4562
5071
  updatedAt: string | Date;
5072
+ phoneNumbers?: {
5073
+ id: string;
5074
+ phoneNumber: string;
5075
+ description?: string | null | undefined;
5076
+ isPrimary?: boolean | undefined;
5077
+ }[] | undefined;
4563
5078
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4564
5079
  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;
4565
5080
  } | null | undefined;
4566
5081
  newCollaboration?: {
4567
5082
  createdAt: string | Date;
4568
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4569
5083
  id: string;
5084
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4570
5085
  updatedAt: string | Date;
4571
5086
  userId: string;
4572
5087
  company?: {
@@ -4577,8 +5092,8 @@ export declare const collaborationCheckingsContract: {
4577
5092
  } | null | undefined;
4578
5093
  client?: {
4579
5094
  createdAt: string | Date;
4580
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4581
5095
  id: string;
5096
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4582
5097
  updatedAt: string | Date;
4583
5098
  name: string;
4584
5099
  crn: string | null;
@@ -4600,10 +5115,15 @@ export declare const collaborationCheckingsContract: {
4600
5115
  lastName: string;
4601
5116
  firstName: string;
4602
5117
  email: string;
4603
- phone: string;
4604
5118
  createdAt: string | Date;
4605
5119
  id: string;
4606
5120
  updatedAt: string | Date;
5121
+ phoneNumbers?: {
5122
+ id: string;
5123
+ phoneNumber: string;
5124
+ description?: string | null | undefined;
5125
+ isPrimary?: boolean | undefined;
5126
+ }[] | undefined;
4607
5127
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4608
5128
  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;
4609
5129
  } | null | undefined;
@@ -4639,8 +5159,8 @@ export declare const collaborationCheckingsContract: {
4639
5159
  clientContactId?: string | null | undefined;
4640
5160
  collaboration?: {
4641
5161
  createdAt: string;
4642
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4643
5162
  id: string;
5163
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4644
5164
  updatedAt: string;
4645
5165
  userId: string;
4646
5166
  company?: {
@@ -4651,8 +5171,8 @@ export declare const collaborationCheckingsContract: {
4651
5171
  } | null | undefined;
4652
5172
  client?: {
4653
5173
  createdAt: string;
4654
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4655
5174
  id: string;
5175
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4656
5176
  updatedAt: string;
4657
5177
  name: string;
4658
5178
  crn: string | null;
@@ -4674,17 +5194,22 @@ export declare const collaborationCheckingsContract: {
4674
5194
  lastName: string;
4675
5195
  firstName: string;
4676
5196
  email: string;
4677
- phone: string;
4678
5197
  createdAt: string;
4679
5198
  id: string;
5199
+ phoneNumbers: {
5200
+ id: string;
5201
+ phoneNumber: string;
5202
+ isPrimary: boolean;
5203
+ description?: string | null | undefined;
5204
+ }[];
4680
5205
  updatedAt: string;
4681
5206
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4682
5207
  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;
4683
5208
  } | null | undefined;
4684
5209
  newCollaboration?: {
4685
5210
  createdAt: string;
4686
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4687
5211
  id: string;
5212
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4688
5213
  updatedAt: string;
4689
5214
  userId: string;
4690
5215
  company?: {
@@ -4695,8 +5220,8 @@ export declare const collaborationCheckingsContract: {
4695
5220
  } | null | undefined;
4696
5221
  client?: {
4697
5222
  createdAt: string;
4698
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4699
5223
  id: string;
5224
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4700
5225
  updatedAt: string;
4701
5226
  name: string;
4702
5227
  crn: string | null;
@@ -4718,9 +5243,14 @@ export declare const collaborationCheckingsContract: {
4718
5243
  lastName: string;
4719
5244
  firstName: string;
4720
5245
  email: string;
4721
- phone: string;
4722
5246
  createdAt: string;
4723
5247
  id: string;
5248
+ phoneNumbers: {
5249
+ id: string;
5250
+ phoneNumber: string;
5251
+ isPrimary: boolean;
5252
+ description?: string | null | undefined;
5253
+ }[];
4724
5254
  updatedAt: string;
4725
5255
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4726
5256
  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;
@@ -4748,8 +5278,8 @@ export declare const collaborationCheckingsContract: {
4748
5278
  clientContactId?: string | null | undefined;
4749
5279
  collaboration?: {
4750
5280
  createdAt: string | Date;
4751
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4752
5281
  id: string;
5282
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4753
5283
  updatedAt: string | Date;
4754
5284
  userId: string;
4755
5285
  company?: {
@@ -4760,8 +5290,8 @@ export declare const collaborationCheckingsContract: {
4760
5290
  } | null | undefined;
4761
5291
  client?: {
4762
5292
  createdAt: string | Date;
4763
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4764
5293
  id: string;
5294
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4765
5295
  updatedAt: string | Date;
4766
5296
  name: string;
4767
5297
  crn: string | null;
@@ -4783,17 +5313,22 @@ export declare const collaborationCheckingsContract: {
4783
5313
  lastName: string;
4784
5314
  firstName: string;
4785
5315
  email: string;
4786
- phone: string;
4787
5316
  createdAt: string | Date;
4788
5317
  id: string;
4789
5318
  updatedAt: string | Date;
5319
+ phoneNumbers?: {
5320
+ id: string;
5321
+ phoneNumber: string;
5322
+ description?: string | null | undefined;
5323
+ isPrimary?: boolean | undefined;
5324
+ }[] | undefined;
4790
5325
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4791
5326
  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;
4792
5327
  } | null | undefined;
4793
5328
  newCollaboration?: {
4794
5329
  createdAt: string | Date;
4795
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4796
5330
  id: string;
5331
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4797
5332
  updatedAt: string | Date;
4798
5333
  userId: string;
4799
5334
  company?: {
@@ -4804,8 +5339,8 @@ export declare const collaborationCheckingsContract: {
4804
5339
  } | null | undefined;
4805
5340
  client?: {
4806
5341
  createdAt: string | Date;
4807
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4808
5342
  id: string;
5343
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4809
5344
  updatedAt: string | Date;
4810
5345
  name: string;
4811
5346
  crn: string | null;
@@ -4827,10 +5362,15 @@ export declare const collaborationCheckingsContract: {
4827
5362
  lastName: string;
4828
5363
  firstName: string;
4829
5364
  email: string;
4830
- phone: string;
4831
5365
  createdAt: string | Date;
4832
5366
  id: string;
4833
5367
  updatedAt: string | Date;
5368
+ phoneNumbers?: {
5369
+ id: string;
5370
+ phoneNumber: string;
5371
+ description?: string | null | undefined;
5372
+ isPrimary?: boolean | undefined;
5373
+ }[] | undefined;
4834
5374
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
4835
5375
  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;
4836
5376
  } | null | undefined;
@@ -5080,8 +5620,8 @@ export declare const collaborationCheckingsContract: {
5080
5620
  }>>>;
5081
5621
  }, "strip", z.ZodTypeAny, {
5082
5622
  createdAt: string;
5083
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5084
5623
  id: string;
5624
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5085
5625
  updatedAt: string;
5086
5626
  name: string;
5087
5627
  crn: string | null;
@@ -5100,8 +5640,8 @@ export declare const collaborationCheckingsContract: {
5100
5640
  } | null | undefined;
5101
5641
  }, {
5102
5642
  createdAt: string | Date;
5103
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5104
5643
  id: string;
5644
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5105
5645
  updatedAt: string | Date;
5106
5646
  name: string;
5107
5647
  crn: string | null;
@@ -5124,7 +5664,22 @@ export declare const collaborationCheckingsContract: {
5124
5664
  firstName: z.ZodString;
5125
5665
  lastName: z.ZodString;
5126
5666
  email: z.ZodString;
5127
- phone: z.ZodString;
5667
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
5668
+ id: z.ZodString;
5669
+ phoneNumber: z.ZodString;
5670
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5671
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
5672
+ }, "strip", z.ZodTypeAny, {
5673
+ id: string;
5674
+ phoneNumber: string;
5675
+ isPrimary: boolean;
5676
+ description?: string | null | undefined;
5677
+ }, {
5678
+ id: string;
5679
+ phoneNumber: string;
5680
+ description?: string | null | undefined;
5681
+ isPrimary?: boolean | undefined;
5682
+ }>, "many">>>;
5128
5683
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
5129
5684
  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"]>>>;
5130
5685
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -5133,9 +5688,14 @@ export declare const collaborationCheckingsContract: {
5133
5688
  lastName: string;
5134
5689
  firstName: string;
5135
5690
  email: string;
5136
- phone: string;
5137
5691
  createdAt: string;
5138
5692
  id: string;
5693
+ phoneNumbers: {
5694
+ id: string;
5695
+ phoneNumber: string;
5696
+ isPrimary: boolean;
5697
+ description?: string | null | undefined;
5698
+ }[];
5139
5699
  updatedAt: string;
5140
5700
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5141
5701
  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;
@@ -5143,10 +5703,15 @@ export declare const collaborationCheckingsContract: {
5143
5703
  lastName: string;
5144
5704
  firstName: string;
5145
5705
  email: string;
5146
- phone: string;
5147
5706
  createdAt: string | Date;
5148
5707
  id: string;
5149
5708
  updatedAt: string | Date;
5709
+ phoneNumbers?: {
5710
+ id: string;
5711
+ phoneNumber: string;
5712
+ description?: string | null | undefined;
5713
+ isPrimary?: boolean | undefined;
5714
+ }[] | undefined;
5150
5715
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5151
5716
  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;
5152
5717
  }>>>;
@@ -5209,8 +5774,8 @@ export declare const collaborationCheckingsContract: {
5209
5774
  }>>>;
5210
5775
  }, "strip", z.ZodTypeAny, {
5211
5776
  createdAt: string;
5212
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5213
5777
  id: string;
5778
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5214
5779
  updatedAt: string;
5215
5780
  name: string;
5216
5781
  crn: string | null;
@@ -5229,8 +5794,8 @@ export declare const collaborationCheckingsContract: {
5229
5794
  } | null | undefined;
5230
5795
  }, {
5231
5796
  createdAt: string | Date;
5232
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5233
5797
  id: string;
5798
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5234
5799
  updatedAt: string | Date;
5235
5800
  name: string;
5236
5801
  crn: string | null;
@@ -5253,7 +5818,22 @@ export declare const collaborationCheckingsContract: {
5253
5818
  firstName: z.ZodString;
5254
5819
  lastName: z.ZodString;
5255
5820
  email: z.ZodString;
5256
- phone: z.ZodString;
5821
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
5822
+ id: z.ZodString;
5823
+ phoneNumber: z.ZodString;
5824
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5825
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
5826
+ }, "strip", z.ZodTypeAny, {
5827
+ id: string;
5828
+ phoneNumber: string;
5829
+ isPrimary: boolean;
5830
+ description?: string | null | undefined;
5831
+ }, {
5832
+ id: string;
5833
+ phoneNumber: string;
5834
+ description?: string | null | undefined;
5835
+ isPrimary?: boolean | undefined;
5836
+ }>, "many">>>;
5257
5837
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
5258
5838
  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"]>>>;
5259
5839
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -5262,9 +5842,14 @@ export declare const collaborationCheckingsContract: {
5262
5842
  lastName: string;
5263
5843
  firstName: string;
5264
5844
  email: string;
5265
- phone: string;
5266
5845
  createdAt: string;
5267
5846
  id: string;
5847
+ phoneNumbers: {
5848
+ id: string;
5849
+ phoneNumber: string;
5850
+ isPrimary: boolean;
5851
+ description?: string | null | undefined;
5852
+ }[];
5268
5853
  updatedAt: string;
5269
5854
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5270
5855
  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;
@@ -5272,10 +5857,15 @@ export declare const collaborationCheckingsContract: {
5272
5857
  lastName: string;
5273
5858
  firstName: string;
5274
5859
  email: string;
5275
- phone: string;
5276
5860
  createdAt: string | Date;
5277
5861
  id: string;
5278
5862
  updatedAt: string | Date;
5863
+ phoneNumbers?: {
5864
+ id: string;
5865
+ phoneNumber: string;
5866
+ description?: string | null | undefined;
5867
+ isPrimary?: boolean | undefined;
5868
+ }[] | undefined;
5279
5869
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5280
5870
  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;
5281
5871
  }>>>;
@@ -5285,8 +5875,8 @@ export declare const collaborationCheckingsContract: {
5285
5875
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
5286
5876
  }, "strip", z.ZodTypeAny, {
5287
5877
  createdAt: string;
5288
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5289
5878
  id: string;
5879
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5290
5880
  updatedAt: string;
5291
5881
  userId: string;
5292
5882
  company?: {
@@ -5297,8 +5887,8 @@ export declare const collaborationCheckingsContract: {
5297
5887
  } | null | undefined;
5298
5888
  client?: {
5299
5889
  createdAt: string;
5300
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5301
5890
  id: string;
5891
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5302
5892
  updatedAt: string;
5303
5893
  name: string;
5304
5894
  crn: string | null;
@@ -5320,17 +5910,22 @@ export declare const collaborationCheckingsContract: {
5320
5910
  lastName: string;
5321
5911
  firstName: string;
5322
5912
  email: string;
5323
- phone: string;
5324
5913
  createdAt: string;
5325
5914
  id: string;
5915
+ phoneNumbers: {
5916
+ id: string;
5917
+ phoneNumber: string;
5918
+ isPrimary: boolean;
5919
+ description?: string | null | undefined;
5920
+ }[];
5326
5921
  updatedAt: string;
5327
5922
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5328
5923
  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;
5329
5924
  } | null | undefined;
5330
5925
  }, {
5331
5926
  createdAt: string | Date;
5332
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5333
5927
  id: string;
5928
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5334
5929
  updatedAt: string | Date;
5335
5930
  userId: string;
5336
5931
  company?: {
@@ -5341,8 +5936,8 @@ export declare const collaborationCheckingsContract: {
5341
5936
  } | null | undefined;
5342
5937
  client?: {
5343
5938
  createdAt: string | Date;
5344
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5345
5939
  id: string;
5940
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5346
5941
  updatedAt: string | Date;
5347
5942
  name: string;
5348
5943
  crn: string | null;
@@ -5364,18 +5959,23 @@ export declare const collaborationCheckingsContract: {
5364
5959
  lastName: string;
5365
5960
  firstName: string;
5366
5961
  email: string;
5367
- phone: string;
5368
5962
  createdAt: string | Date;
5369
5963
  id: string;
5370
5964
  updatedAt: string | Date;
5965
+ phoneNumbers?: {
5966
+ id: string;
5967
+ phoneNumber: string;
5968
+ description?: string | null | undefined;
5969
+ isPrimary?: boolean | undefined;
5970
+ }[] | undefined;
5371
5971
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5372
5972
  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;
5373
5973
  } | null | undefined;
5374
5974
  }>>>;
5375
5975
  }, "strip", z.ZodTypeAny, {
5376
5976
  createdAt: string;
5377
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5378
5977
  id: string;
5978
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5379
5979
  updatedAt: string;
5380
5980
  userId: string;
5381
5981
  company?: {
@@ -5386,8 +5986,8 @@ export declare const collaborationCheckingsContract: {
5386
5986
  } | null | undefined;
5387
5987
  client?: {
5388
5988
  createdAt: string;
5389
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5390
5989
  id: string;
5990
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5391
5991
  updatedAt: string;
5392
5992
  name: string;
5393
5993
  crn: string | null;
@@ -5409,17 +6009,22 @@ export declare const collaborationCheckingsContract: {
5409
6009
  lastName: string;
5410
6010
  firstName: string;
5411
6011
  email: string;
5412
- phone: string;
5413
6012
  createdAt: string;
5414
6013
  id: string;
6014
+ phoneNumbers: {
6015
+ id: string;
6016
+ phoneNumber: string;
6017
+ isPrimary: boolean;
6018
+ description?: string | null | undefined;
6019
+ }[];
5415
6020
  updatedAt: string;
5416
6021
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5417
6022
  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;
5418
6023
  } | null | undefined;
5419
6024
  newCollaboration?: {
5420
6025
  createdAt: string;
5421
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5422
6026
  id: string;
6027
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5423
6028
  updatedAt: string;
5424
6029
  userId: string;
5425
6030
  company?: {
@@ -5430,8 +6035,8 @@ export declare const collaborationCheckingsContract: {
5430
6035
  } | null | undefined;
5431
6036
  client?: {
5432
6037
  createdAt: string;
5433
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5434
6038
  id: string;
6039
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5435
6040
  updatedAt: string;
5436
6041
  name: string;
5437
6042
  crn: string | null;
@@ -5453,9 +6058,14 @@ export declare const collaborationCheckingsContract: {
5453
6058
  lastName: string;
5454
6059
  firstName: string;
5455
6060
  email: string;
5456
- phone: string;
5457
6061
  createdAt: string;
5458
6062
  id: string;
6063
+ phoneNumbers: {
6064
+ id: string;
6065
+ phoneNumber: string;
6066
+ isPrimary: boolean;
6067
+ description?: string | null | undefined;
6068
+ }[];
5459
6069
  updatedAt: string;
5460
6070
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5461
6071
  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;
@@ -5463,8 +6073,8 @@ export declare const collaborationCheckingsContract: {
5463
6073
  } | null | undefined;
5464
6074
  }, {
5465
6075
  createdAt: string | Date;
5466
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5467
6076
  id: string;
6077
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5468
6078
  updatedAt: string | Date;
5469
6079
  userId: string;
5470
6080
  company?: {
@@ -5475,8 +6085,8 @@ export declare const collaborationCheckingsContract: {
5475
6085
  } | null | undefined;
5476
6086
  client?: {
5477
6087
  createdAt: string | Date;
5478
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5479
6088
  id: string;
6089
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5480
6090
  updatedAt: string | Date;
5481
6091
  name: string;
5482
6092
  crn: string | null;
@@ -5498,17 +6108,22 @@ export declare const collaborationCheckingsContract: {
5498
6108
  lastName: string;
5499
6109
  firstName: string;
5500
6110
  email: string;
5501
- phone: string;
5502
6111
  createdAt: string | Date;
5503
6112
  id: string;
5504
6113
  updatedAt: string | Date;
6114
+ phoneNumbers?: {
6115
+ id: string;
6116
+ phoneNumber: string;
6117
+ description?: string | null | undefined;
6118
+ isPrimary?: boolean | undefined;
6119
+ }[] | undefined;
5505
6120
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5506
6121
  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;
5507
6122
  } | null | undefined;
5508
6123
  newCollaboration?: {
5509
6124
  createdAt: string | Date;
5510
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5511
6125
  id: string;
6126
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5512
6127
  updatedAt: string | Date;
5513
6128
  userId: string;
5514
6129
  company?: {
@@ -5519,8 +6134,8 @@ export declare const collaborationCheckingsContract: {
5519
6134
  } | null | undefined;
5520
6135
  client?: {
5521
6136
  createdAt: string | Date;
5522
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5523
6137
  id: string;
6138
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5524
6139
  updatedAt: string | Date;
5525
6140
  name: string;
5526
6141
  crn: string | null;
@@ -5542,10 +6157,15 @@ export declare const collaborationCheckingsContract: {
5542
6157
  lastName: string;
5543
6158
  firstName: string;
5544
6159
  email: string;
5545
- phone: string;
5546
6160
  createdAt: string | Date;
5547
6161
  id: string;
5548
6162
  updatedAt: string | Date;
6163
+ phoneNumbers?: {
6164
+ id: string;
6165
+ phoneNumber: string;
6166
+ description?: string | null | undefined;
6167
+ isPrimary?: boolean | undefined;
6168
+ }[] | undefined;
5549
6169
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5550
6170
  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;
5551
6171
  } | null | undefined;
@@ -5581,8 +6201,8 @@ export declare const collaborationCheckingsContract: {
5581
6201
  clientContactId?: string | null | undefined;
5582
6202
  collaboration?: {
5583
6203
  createdAt: string;
5584
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5585
6204
  id: string;
6205
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5586
6206
  updatedAt: string;
5587
6207
  userId: string;
5588
6208
  company?: {
@@ -5593,8 +6213,8 @@ export declare const collaborationCheckingsContract: {
5593
6213
  } | null | undefined;
5594
6214
  client?: {
5595
6215
  createdAt: string;
5596
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5597
6216
  id: string;
6217
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5598
6218
  updatedAt: string;
5599
6219
  name: string;
5600
6220
  crn: string | null;
@@ -5616,17 +6236,22 @@ export declare const collaborationCheckingsContract: {
5616
6236
  lastName: string;
5617
6237
  firstName: string;
5618
6238
  email: string;
5619
- phone: string;
5620
6239
  createdAt: string;
5621
6240
  id: string;
6241
+ phoneNumbers: {
6242
+ id: string;
6243
+ phoneNumber: string;
6244
+ isPrimary: boolean;
6245
+ description?: string | null | undefined;
6246
+ }[];
5622
6247
  updatedAt: string;
5623
6248
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5624
6249
  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;
5625
6250
  } | null | undefined;
5626
6251
  newCollaboration?: {
5627
6252
  createdAt: string;
5628
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5629
6253
  id: string;
6254
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5630
6255
  updatedAt: string;
5631
6256
  userId: string;
5632
6257
  company?: {
@@ -5637,8 +6262,8 @@ export declare const collaborationCheckingsContract: {
5637
6262
  } | null | undefined;
5638
6263
  client?: {
5639
6264
  createdAt: string;
5640
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5641
6265
  id: string;
6266
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5642
6267
  updatedAt: string;
5643
6268
  name: string;
5644
6269
  crn: string | null;
@@ -5660,9 +6285,14 @@ export declare const collaborationCheckingsContract: {
5660
6285
  lastName: string;
5661
6286
  firstName: string;
5662
6287
  email: string;
5663
- phone: string;
5664
6288
  createdAt: string;
5665
6289
  id: string;
6290
+ phoneNumbers: {
6291
+ id: string;
6292
+ phoneNumber: string;
6293
+ isPrimary: boolean;
6294
+ description?: string | null | undefined;
6295
+ }[];
5666
6296
  updatedAt: string;
5667
6297
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5668
6298
  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;
@@ -5690,8 +6320,8 @@ export declare const collaborationCheckingsContract: {
5690
6320
  clientContactId?: string | null | undefined;
5691
6321
  collaboration?: {
5692
6322
  createdAt: string | Date;
5693
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5694
6323
  id: string;
6324
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5695
6325
  updatedAt: string | Date;
5696
6326
  userId: string;
5697
6327
  company?: {
@@ -5702,8 +6332,8 @@ export declare const collaborationCheckingsContract: {
5702
6332
  } | null | undefined;
5703
6333
  client?: {
5704
6334
  createdAt: string | Date;
5705
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5706
6335
  id: string;
6336
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5707
6337
  updatedAt: string | Date;
5708
6338
  name: string;
5709
6339
  crn: string | null;
@@ -5725,17 +6355,22 @@ export declare const collaborationCheckingsContract: {
5725
6355
  lastName: string;
5726
6356
  firstName: string;
5727
6357
  email: string;
5728
- phone: string;
5729
6358
  createdAt: string | Date;
5730
6359
  id: string;
5731
6360
  updatedAt: string | Date;
6361
+ phoneNumbers?: {
6362
+ id: string;
6363
+ phoneNumber: string;
6364
+ description?: string | null | undefined;
6365
+ isPrimary?: boolean | undefined;
6366
+ }[] | undefined;
5732
6367
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5733
6368
  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;
5734
6369
  } | null | undefined;
5735
6370
  newCollaboration?: {
5736
6371
  createdAt: string | Date;
5737
- status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5738
6372
  id: string;
6373
+ status: "ACTIVE" | "APPROVED" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5739
6374
  updatedAt: string | Date;
5740
6375
  userId: string;
5741
6376
  company?: {
@@ -5746,8 +6381,8 @@ export declare const collaborationCheckingsContract: {
5746
6381
  } | null | undefined;
5747
6382
  client?: {
5748
6383
  createdAt: string | Date;
5749
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5750
6384
  id: string;
6385
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5751
6386
  updatedAt: string | Date;
5752
6387
  name: string;
5753
6388
  crn: string | null;
@@ -5769,10 +6404,15 @@ export declare const collaborationCheckingsContract: {
5769
6404
  lastName: string;
5770
6405
  firstName: string;
5771
6406
  email: string;
5772
- phone: string;
5773
6407
  createdAt: string | Date;
5774
6408
  id: string;
5775
6409
  updatedAt: string | Date;
6410
+ phoneNumbers?: {
6411
+ id: string;
6412
+ phoneNumber: string;
6413
+ description?: string | null | undefined;
6414
+ isPrimary?: boolean | undefined;
6415
+ }[] | undefined;
5776
6416
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
5777
6417
  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;
5778
6418
  } | null | undefined;