@dakkitor/api-contracts 1.1.106 → 1.1.108

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 (33) hide show
  1. package/dist/actives/actives.contract.d.ts +6880 -5360
  2. package/dist/actives/actives.contract.d.ts.map +1 -1
  3. package/dist/agent-client-links/agent-client-links.contract.d.ts +871 -481
  4. package/dist/agent-client-links/agent-client-links.contract.d.ts.map +1 -1
  5. package/dist/auth/auth.contract.d.ts +131 -31
  6. package/dist/auth/auth.contract.d.ts.map +1 -1
  7. package/dist/bookings/bookings.contract.d.ts +25019 -19099
  8. package/dist/bookings/bookings.contract.d.ts.map +1 -1
  9. package/dist/call-history/call-history.contract.d.ts +861 -541
  10. package/dist/call-history/call-history.contract.d.ts.map +1 -1
  11. package/dist/call-history/call-history.contract.js +3 -1
  12. package/dist/client-contacts/client-contacts.contract.d.ts +26 -26
  13. package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +1834 -1194
  14. package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts.map +1 -1
  15. package/dist/collaborations/collaborations.contract.d.ts +1687 -1052
  16. package/dist/collaborations/collaborations.contract.d.ts.map +1 -1
  17. package/dist/common/common-schemas.d.ts +11 -0
  18. package/dist/common/common-schemas.d.ts.map +1 -1
  19. package/dist/common/common-schemas.js +8 -1
  20. package/dist/dashboards/dashboard.contract.d.ts +14 -14
  21. package/dist/jobs/jobs.contract.d.ts +4321 -3221
  22. package/dist/jobs/jobs.contract.d.ts.map +1 -1
  23. package/dist/lead-assignments/lead-assignments.contract.d.ts +754 -434
  24. package/dist/lead-assignments/lead-assignments.contract.d.ts.map +1 -1
  25. package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +359 -199
  26. package/dist/lead-distribution/agent-lead-distribution.contract.d.ts.map +1 -1
  27. package/dist/leads/leads.contract.d.ts +117 -117
  28. package/dist/users/users.contract.d.ts +597 -173
  29. package/dist/users/users.contract.d.ts.map +1 -1
  30. package/dist/users/users.contract.js +45 -8
  31. package/dist/workers/workers.contract.d.ts +498 -268
  32. package/dist/workers/workers.contract.d.ts.map +1 -1
  33. package/package.json +1 -1
@@ -19,15 +19,15 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
19
19
  lastName: z.ZodString;
20
20
  email: z.ZodString;
21
21
  }, "strip", z.ZodTypeAny, {
22
- lastName: string;
22
+ id: string;
23
23
  firstName: string;
24
+ lastName: string;
24
25
  email: string;
25
- id: string;
26
26
  }, {
27
- lastName: string;
27
+ id: string;
28
28
  firstName: string;
29
+ lastName: string;
29
30
  email: string;
30
- id: string;
31
31
  }>>>;
32
32
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
33
33
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -39,9 +39,9 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
39
39
  agentId: string;
40
40
  }>>>;
41
41
  }, "strip", z.ZodTypeAny, {
42
- createdAt: string;
43
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
44
42
  id: string;
43
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
44
+ createdAt: string;
45
45
  updatedAt: string;
46
46
  name: string;
47
47
  crn: string | null;
@@ -50,18 +50,18 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
50
50
  director: string;
51
51
  blacklistReason?: string | null | undefined;
52
52
  lastUpdatedBy?: {
53
- lastName: string;
53
+ id: string;
54
54
  firstName: string;
55
+ lastName: string;
55
56
  email: string;
56
- id: string;
57
57
  } | null | undefined;
58
58
  agentClientLinks?: {
59
59
  agentId: string;
60
60
  } | null | undefined;
61
61
  }, {
62
- createdAt: string | Date;
63
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
64
62
  id: string;
63
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
64
+ createdAt: string | Date;
65
65
  updatedAt: string | Date;
66
66
  name: string;
67
67
  crn: string | null;
@@ -70,10 +70,10 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
70
70
  director: string;
71
71
  blacklistReason?: string | null | undefined;
72
72
  lastUpdatedBy?: {
73
- lastName: string;
73
+ id: string;
74
74
  firstName: string;
75
+ lastName: string;
75
76
  email: string;
76
- id: string;
77
77
  } | null | undefined;
78
78
  agentClientLinks?: {
79
79
  agentId: string;
@@ -85,29 +85,54 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
85
85
  firstName: z.ZodString;
86
86
  lastName: z.ZodString;
87
87
  email: z.ZodString;
88
- phone: z.ZodString;
88
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
89
+ id: z.ZodString;
90
+ phoneNumber: z.ZodString;
91
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
92
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
93
+ }, "strip", z.ZodTypeAny, {
94
+ id: string;
95
+ phoneNumber: string;
96
+ isPrimary: boolean;
97
+ description?: string | null | undefined;
98
+ }, {
99
+ id: string;
100
+ phoneNumber: string;
101
+ description?: string | null | undefined;
102
+ isPrimary?: boolean | undefined;
103
+ }>, "many">>>;
89
104
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
90
105
  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"]>>>;
91
106
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
92
107
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
93
108
  }, "strip", z.ZodTypeAny, {
94
- lastName: string;
95
- firstName: string;
96
- email: string;
97
- phone: string;
98
- createdAt: string;
99
109
  id: string;
110
+ createdAt: string;
100
111
  updatedAt: string;
112
+ firstName: string;
113
+ lastName: string;
114
+ email: string;
115
+ phoneNumbers: {
116
+ id: string;
117
+ phoneNumber: string;
118
+ isPrimary: boolean;
119
+ description?: string | null | undefined;
120
+ }[];
101
121
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
102
122
  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;
103
123
  }, {
104
- lastName: string;
105
- firstName: string;
106
- email: string;
107
- phone: string;
108
- createdAt: string | Date;
109
124
  id: string;
125
+ createdAt: string | Date;
110
126
  updatedAt: string | Date;
127
+ firstName: string;
128
+ lastName: string;
129
+ email: string;
130
+ phoneNumbers?: {
131
+ id: string;
132
+ phoneNumber: string;
133
+ description?: string | null | undefined;
134
+ isPrimary?: boolean | undefined;
135
+ }[] | undefined;
111
136
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
112
137
  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;
113
138
  }>;
@@ -120,55 +145,68 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
120
145
  firstName: z.ZodString;
121
146
  lastName: z.ZodString;
122
147
  email: z.ZodString;
123
- phone: z.ZodString;
148
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
149
+ id: z.ZodString;
150
+ phoneNumber: z.ZodString;
151
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
152
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
153
+ }, "strip", z.ZodTypeAny, {
154
+ id: string;
155
+ phoneNumber: string;
156
+ isPrimary: boolean;
157
+ description?: string | null | undefined;
158
+ }, {
159
+ id: string;
160
+ phoneNumber: string;
161
+ description?: string | null | undefined;
162
+ isPrimary?: boolean | undefined;
163
+ }>, "many">>>;
124
164
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
125
165
  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"]>>>;
126
166
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
127
167
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
128
168
  }, "strip", z.ZodTypeAny, {
129
- lastName: string;
130
- firstName: string;
131
- email: string;
132
- phone: string;
133
- createdAt: string;
134
169
  id: string;
170
+ createdAt: string;
135
171
  updatedAt: string;
172
+ firstName: string;
173
+ lastName: string;
174
+ email: string;
175
+ phoneNumbers: {
176
+ id: string;
177
+ phoneNumber: string;
178
+ isPrimary: boolean;
179
+ description?: string | null | undefined;
180
+ }[];
136
181
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
137
182
  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;
138
183
  }, {
139
- lastName: string;
140
- firstName: string;
141
- email: string;
142
- phone: string;
143
- createdAt: string | Date;
144
184
  id: string;
185
+ createdAt: string | Date;
145
186
  updatedAt: string | Date;
187
+ firstName: string;
188
+ lastName: string;
189
+ email: string;
190
+ phoneNumbers?: {
191
+ id: string;
192
+ phoneNumber: string;
193
+ description?: string | null | undefined;
194
+ isPrimary?: boolean | undefined;
195
+ }[] | undefined;
146
196
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
147
197
  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;
148
198
  }>;
149
199
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
150
200
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
151
201
  }, "strip", z.ZodTypeAny, {
152
- createdAt: string;
153
202
  id: string;
203
+ createdAt: string;
154
204
  updatedAt: string;
155
205
  agentId: string;
156
- agent: {
157
- lastName: string;
158
- firstName: string;
159
- email: string;
160
- phone: string;
161
- createdAt: string;
162
- id: string;
163
- updatedAt: string;
164
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
165
- 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;
166
- };
167
- clientId: string;
168
206
  client: {
169
- createdAt: string;
170
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
171
207
  id: string;
208
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
209
+ createdAt: string;
172
210
  updatedAt: string;
173
211
  name: string;
174
212
  crn: string | null;
@@ -177,51 +215,61 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
177
215
  director: string;
178
216
  blacklistReason?: string | null | undefined;
179
217
  lastUpdatedBy?: {
180
- lastName: string;
218
+ id: string;
181
219
  firstName: string;
220
+ lastName: string;
182
221
  email: string;
183
- id: string;
184
222
  } | null | undefined;
185
223
  agentClientLinks?: {
186
224
  agentId: string;
187
225
  } | null | undefined;
188
226
  };
189
- linkType: "CREATION" | "EDIT_SUGGESTION";
227
+ clientId: string;
190
228
  createdBy: string;
191
- creator: {
192
- lastName: string;
229
+ agent: {
230
+ id: string;
231
+ createdAt: string;
232
+ updatedAt: string;
193
233
  firstName: string;
234
+ lastName: string;
194
235
  email: string;
195
- phone: string;
196
- createdAt: string;
236
+ phoneNumbers: {
237
+ id: string;
238
+ phoneNumber: string;
239
+ isPrimary: boolean;
240
+ description?: string | null | undefined;
241
+ }[];
242
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
243
+ 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;
244
+ };
245
+ linkType: "CREATION" | "EDIT_SUGGESTION";
246
+ creator: {
197
247
  id: string;
248
+ createdAt: string;
198
249
  updatedAt: string;
250
+ firstName: string;
251
+ lastName: string;
252
+ email: string;
253
+ phoneNumbers: {
254
+ id: string;
255
+ phoneNumber: string;
256
+ isPrimary: boolean;
257
+ description?: string | null | undefined;
258
+ }[];
199
259
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
200
260
  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;
201
261
  };
202
262
  suggestedChanges?: Record<string, unknown> | null | undefined;
203
263
  appliedChanges?: Record<string, unknown> | null | undefined;
204
264
  }, {
205
- createdAt: string | Date;
206
265
  id: string;
266
+ createdAt: string | Date;
207
267
  updatedAt: string | Date;
208
268
  agentId: string;
209
- agent: {
210
- lastName: string;
211
- firstName: string;
212
- email: string;
213
- phone: string;
214
- createdAt: string | Date;
215
- id: string;
216
- updatedAt: string | Date;
217
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
218
- 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;
219
- };
220
- clientId: string;
221
269
  client: {
222
- createdAt: string | Date;
223
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
224
270
  id: string;
271
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
272
+ createdAt: string | Date;
225
273
  updatedAt: string | Date;
226
274
  name: string;
227
275
  crn: string | null;
@@ -230,25 +278,47 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
230
278
  director: string;
231
279
  blacklistReason?: string | null | undefined;
232
280
  lastUpdatedBy?: {
233
- lastName: string;
281
+ id: string;
234
282
  firstName: string;
283
+ lastName: string;
235
284
  email: string;
236
- id: string;
237
285
  } | null | undefined;
238
286
  agentClientLinks?: {
239
287
  agentId: string;
240
288
  } | null | undefined;
241
289
  };
242
- linkType: "CREATION" | "EDIT_SUGGESTION";
290
+ clientId: string;
243
291
  createdBy: string;
244
- creator: {
245
- lastName: string;
292
+ agent: {
293
+ id: string;
294
+ createdAt: string | Date;
295
+ updatedAt: string | Date;
246
296
  firstName: string;
297
+ lastName: string;
247
298
  email: string;
248
- phone: string;
249
- createdAt: string | Date;
299
+ phoneNumbers?: {
300
+ id: string;
301
+ phoneNumber: string;
302
+ description?: string | null | undefined;
303
+ isPrimary?: boolean | undefined;
304
+ }[] | undefined;
305
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
306
+ 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;
307
+ };
308
+ linkType: "CREATION" | "EDIT_SUGGESTION";
309
+ creator: {
250
310
  id: string;
311
+ createdAt: string | Date;
251
312
  updatedAt: string | Date;
313
+ firstName: string;
314
+ lastName: string;
315
+ email: string;
316
+ phoneNumbers?: {
317
+ id: string;
318
+ phoneNumber: string;
319
+ description?: string | null | undefined;
320
+ isPrimary?: boolean | undefined;
321
+ }[] | undefined;
252
322
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
253
323
  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;
254
324
  };
@@ -307,15 +377,15 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
307
377
  lastName: z.ZodString;
308
378
  email: z.ZodString;
309
379
  }, "strip", z.ZodTypeAny, {
310
- lastName: string;
380
+ id: string;
311
381
  firstName: string;
382
+ lastName: string;
312
383
  email: string;
313
- id: string;
314
384
  }, {
315
- lastName: string;
385
+ id: string;
316
386
  firstName: string;
387
+ lastName: string;
317
388
  email: string;
318
- id: string;
319
389
  }>>>;
320
390
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
321
391
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -327,9 +397,9 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
327
397
  agentId: string;
328
398
  }>>>;
329
399
  }, "strip", z.ZodTypeAny, {
330
- createdAt: string;
331
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
332
400
  id: string;
401
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
402
+ createdAt: string;
333
403
  updatedAt: string;
334
404
  name: string;
335
405
  crn: string | null;
@@ -338,18 +408,18 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
338
408
  director: string;
339
409
  blacklistReason?: string | null | undefined;
340
410
  lastUpdatedBy?: {
341
- lastName: string;
411
+ id: string;
342
412
  firstName: string;
413
+ lastName: string;
343
414
  email: string;
344
- id: string;
345
415
  } | null | undefined;
346
416
  agentClientLinks?: {
347
417
  agentId: string;
348
418
  } | null | undefined;
349
419
  }, {
350
- createdAt: string | Date;
351
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
352
420
  id: string;
421
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
422
+ createdAt: string | Date;
353
423
  updatedAt: string | Date;
354
424
  name: string;
355
425
  crn: string | null;
@@ -358,10 +428,10 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
358
428
  director: string;
359
429
  blacklistReason?: string | null | undefined;
360
430
  lastUpdatedBy?: {
361
- lastName: string;
431
+ id: string;
362
432
  firstName: string;
433
+ lastName: string;
363
434
  email: string;
364
- id: string;
365
435
  } | null | undefined;
366
436
  agentClientLinks?: {
367
437
  agentId: string;
@@ -373,29 +443,54 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
373
443
  firstName: z.ZodString;
374
444
  lastName: z.ZodString;
375
445
  email: z.ZodString;
376
- phone: z.ZodString;
446
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
447
+ id: z.ZodString;
448
+ phoneNumber: z.ZodString;
449
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
450
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
451
+ }, "strip", z.ZodTypeAny, {
452
+ id: string;
453
+ phoneNumber: string;
454
+ isPrimary: boolean;
455
+ description?: string | null | undefined;
456
+ }, {
457
+ id: string;
458
+ phoneNumber: string;
459
+ description?: string | null | undefined;
460
+ isPrimary?: boolean | undefined;
461
+ }>, "many">>>;
377
462
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
378
463
  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"]>>>;
379
464
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
380
465
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
381
466
  }, "strip", z.ZodTypeAny, {
382
- lastName: string;
383
- firstName: string;
384
- email: string;
385
- phone: string;
386
- createdAt: string;
387
467
  id: string;
468
+ createdAt: string;
388
469
  updatedAt: string;
470
+ firstName: string;
471
+ lastName: string;
472
+ email: string;
473
+ phoneNumbers: {
474
+ id: string;
475
+ phoneNumber: string;
476
+ isPrimary: boolean;
477
+ description?: string | null | undefined;
478
+ }[];
389
479
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
390
480
  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;
391
481
  }, {
392
- lastName: string;
393
- firstName: string;
394
- email: string;
395
- phone: string;
396
- createdAt: string | Date;
397
482
  id: string;
483
+ createdAt: string | Date;
398
484
  updatedAt: string | Date;
485
+ firstName: string;
486
+ lastName: string;
487
+ email: string;
488
+ phoneNumbers?: {
489
+ id: string;
490
+ phoneNumber: string;
491
+ description?: string | null | undefined;
492
+ isPrimary?: boolean | undefined;
493
+ }[] | undefined;
399
494
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
400
495
  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;
401
496
  }>;
@@ -408,55 +503,68 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
408
503
  firstName: z.ZodString;
409
504
  lastName: z.ZodString;
410
505
  email: z.ZodString;
411
- phone: z.ZodString;
506
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
507
+ id: z.ZodString;
508
+ phoneNumber: z.ZodString;
509
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
510
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
511
+ }, "strip", z.ZodTypeAny, {
512
+ id: string;
513
+ phoneNumber: string;
514
+ isPrimary: boolean;
515
+ description?: string | null | undefined;
516
+ }, {
517
+ id: string;
518
+ phoneNumber: string;
519
+ description?: string | null | undefined;
520
+ isPrimary?: boolean | undefined;
521
+ }>, "many">>>;
412
522
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
413
523
  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"]>>>;
414
524
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
415
525
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
416
526
  }, "strip", z.ZodTypeAny, {
417
- lastName: string;
418
- firstName: string;
419
- email: string;
420
- phone: string;
421
- createdAt: string;
422
527
  id: string;
528
+ createdAt: string;
423
529
  updatedAt: string;
530
+ firstName: string;
531
+ lastName: string;
532
+ email: string;
533
+ phoneNumbers: {
534
+ id: string;
535
+ phoneNumber: string;
536
+ isPrimary: boolean;
537
+ description?: string | null | undefined;
538
+ }[];
424
539
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
425
540
  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;
426
541
  }, {
427
- lastName: string;
428
- firstName: string;
429
- email: string;
430
- phone: string;
431
- createdAt: string | Date;
432
542
  id: string;
543
+ createdAt: string | Date;
433
544
  updatedAt: string | Date;
545
+ firstName: string;
546
+ lastName: string;
547
+ email: string;
548
+ phoneNumbers?: {
549
+ id: string;
550
+ phoneNumber: string;
551
+ description?: string | null | undefined;
552
+ isPrimary?: boolean | undefined;
553
+ }[] | undefined;
434
554
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
435
555
  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;
436
556
  }>;
437
557
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
438
558
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
439
559
  }, "strip", z.ZodTypeAny, {
440
- createdAt: string;
441
560
  id: string;
561
+ createdAt: string;
442
562
  updatedAt: string;
443
563
  agentId: string;
444
- agent: {
445
- lastName: string;
446
- firstName: string;
447
- email: string;
448
- phone: string;
449
- createdAt: string;
450
- id: string;
451
- updatedAt: string;
452
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
453
- 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;
454
- };
455
- clientId: string;
456
564
  client: {
457
- createdAt: string;
458
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
459
565
  id: string;
566
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
567
+ createdAt: string;
460
568
  updatedAt: string;
461
569
  name: string;
462
570
  crn: string | null;
@@ -465,51 +573,61 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
465
573
  director: string;
466
574
  blacklistReason?: string | null | undefined;
467
575
  lastUpdatedBy?: {
468
- lastName: string;
576
+ id: string;
469
577
  firstName: string;
578
+ lastName: string;
470
579
  email: string;
471
- id: string;
472
580
  } | null | undefined;
473
581
  agentClientLinks?: {
474
582
  agentId: string;
475
583
  } | null | undefined;
476
584
  };
477
- linkType: "CREATION" | "EDIT_SUGGESTION";
585
+ clientId: string;
478
586
  createdBy: string;
479
- creator: {
480
- lastName: string;
587
+ agent: {
588
+ id: string;
589
+ createdAt: string;
590
+ updatedAt: string;
481
591
  firstName: string;
592
+ lastName: string;
482
593
  email: string;
483
- phone: string;
484
- createdAt: string;
594
+ phoneNumbers: {
595
+ id: string;
596
+ phoneNumber: string;
597
+ isPrimary: boolean;
598
+ description?: string | null | undefined;
599
+ }[];
600
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
601
+ 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
+ };
603
+ linkType: "CREATION" | "EDIT_SUGGESTION";
604
+ creator: {
485
605
  id: string;
606
+ createdAt: string;
486
607
  updatedAt: string;
608
+ firstName: string;
609
+ lastName: string;
610
+ email: string;
611
+ phoneNumbers: {
612
+ id: string;
613
+ phoneNumber: string;
614
+ isPrimary: boolean;
615
+ description?: string | null | undefined;
616
+ }[];
487
617
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
488
618
  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;
489
619
  };
490
620
  suggestedChanges?: Record<string, unknown> | null | undefined;
491
621
  appliedChanges?: Record<string, unknown> | null | undefined;
492
622
  }, {
493
- createdAt: string | Date;
494
623
  id: string;
624
+ createdAt: string | Date;
495
625
  updatedAt: string | Date;
496
626
  agentId: string;
497
- agent: {
498
- lastName: string;
499
- firstName: string;
500
- email: string;
501
- phone: string;
502
- createdAt: string | Date;
503
- id: string;
504
- updatedAt: string | Date;
505
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
506
- 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;
507
- };
508
- clientId: string;
509
627
  client: {
510
- createdAt: string | Date;
511
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
512
628
  id: string;
629
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
630
+ createdAt: string | Date;
513
631
  updatedAt: string | Date;
514
632
  name: string;
515
633
  crn: string | null;
@@ -518,25 +636,47 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
518
636
  director: string;
519
637
  blacklistReason?: string | null | undefined;
520
638
  lastUpdatedBy?: {
521
- lastName: string;
639
+ id: string;
522
640
  firstName: string;
641
+ lastName: string;
523
642
  email: string;
524
- id: string;
525
643
  } | null | undefined;
526
644
  agentClientLinks?: {
527
645
  agentId: string;
528
646
  } | null | undefined;
529
647
  };
530
- linkType: "CREATION" | "EDIT_SUGGESTION";
648
+ clientId: string;
531
649
  createdBy: string;
532
- creator: {
533
- lastName: string;
650
+ agent: {
651
+ id: string;
652
+ createdAt: string | Date;
653
+ updatedAt: string | Date;
534
654
  firstName: string;
655
+ lastName: string;
535
656
  email: string;
536
- phone: string;
537
- createdAt: string | Date;
657
+ phoneNumbers?: {
658
+ id: string;
659
+ phoneNumber: string;
660
+ description?: string | null | undefined;
661
+ isPrimary?: boolean | undefined;
662
+ }[] | undefined;
663
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
664
+ 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;
665
+ };
666
+ linkType: "CREATION" | "EDIT_SUGGESTION";
667
+ creator: {
538
668
  id: string;
669
+ createdAt: string | Date;
539
670
  updatedAt: string | Date;
671
+ firstName: string;
672
+ lastName: string;
673
+ email: string;
674
+ phoneNumbers?: {
675
+ id: string;
676
+ phoneNumber: string;
677
+ description?: string | null | undefined;
678
+ isPrimary?: boolean | undefined;
679
+ }[] | undefined;
540
680
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
541
681
  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;
542
682
  };
@@ -551,26 +691,14 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
551
691
  }, "strip", z.ZodTypeAny, {
552
692
  limit: number;
553
693
  items: {
554
- createdAt: string;
555
694
  id: string;
695
+ createdAt: string;
556
696
  updatedAt: string;
557
697
  agentId: string;
558
- agent: {
559
- lastName: string;
560
- firstName: string;
561
- email: string;
562
- phone: string;
563
- createdAt: string;
564
- id: string;
565
- updatedAt: string;
566
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
567
- 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;
568
- };
569
- clientId: string;
570
698
  client: {
571
- createdAt: string;
572
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
573
699
  id: string;
700
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
701
+ createdAt: string;
574
702
  updatedAt: string;
575
703
  name: string;
576
704
  crn: string | null;
@@ -579,25 +707,47 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
579
707
  director: string;
580
708
  blacklistReason?: string | null | undefined;
581
709
  lastUpdatedBy?: {
582
- lastName: string;
710
+ id: string;
583
711
  firstName: string;
712
+ lastName: string;
584
713
  email: string;
585
- id: string;
586
714
  } | null | undefined;
587
715
  agentClientLinks?: {
588
716
  agentId: string;
589
717
  } | null | undefined;
590
718
  };
591
- linkType: "CREATION" | "EDIT_SUGGESTION";
719
+ clientId: string;
592
720
  createdBy: string;
593
- creator: {
594
- lastName: string;
721
+ agent: {
722
+ id: string;
723
+ createdAt: string;
724
+ updatedAt: string;
595
725
  firstName: string;
726
+ lastName: string;
596
727
  email: string;
597
- phone: string;
598
- createdAt: string;
728
+ phoneNumbers: {
729
+ id: string;
730
+ phoneNumber: string;
731
+ isPrimary: boolean;
732
+ description?: string | null | undefined;
733
+ }[];
734
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
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;
736
+ };
737
+ linkType: "CREATION" | "EDIT_SUGGESTION";
738
+ creator: {
599
739
  id: string;
740
+ createdAt: string;
600
741
  updatedAt: string;
742
+ firstName: string;
743
+ lastName: string;
744
+ email: string;
745
+ phoneNumbers: {
746
+ id: string;
747
+ phoneNumber: string;
748
+ isPrimary: boolean;
749
+ description?: string | null | undefined;
750
+ }[];
601
751
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
602
752
  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;
603
753
  };
@@ -611,26 +761,14 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
611
761
  }, {
612
762
  limit: number;
613
763
  items: {
614
- createdAt: string | Date;
615
764
  id: string;
765
+ createdAt: string | Date;
616
766
  updatedAt: string | Date;
617
767
  agentId: string;
618
- agent: {
619
- lastName: string;
620
- firstName: string;
621
- email: string;
622
- phone: string;
623
- createdAt: string | Date;
624
- id: string;
625
- updatedAt: string | Date;
626
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
627
- 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;
628
- };
629
- clientId: string;
630
768
  client: {
631
- createdAt: string | Date;
632
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
633
769
  id: string;
770
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
771
+ createdAt: string | Date;
634
772
  updatedAt: string | Date;
635
773
  name: string;
636
774
  crn: string | null;
@@ -639,25 +777,47 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
639
777
  director: string;
640
778
  blacklistReason?: string | null | undefined;
641
779
  lastUpdatedBy?: {
642
- lastName: string;
780
+ id: string;
643
781
  firstName: string;
782
+ lastName: string;
644
783
  email: string;
645
- id: string;
646
784
  } | null | undefined;
647
785
  agentClientLinks?: {
648
786
  agentId: string;
649
787
  } | null | undefined;
650
788
  };
651
- linkType: "CREATION" | "EDIT_SUGGESTION";
789
+ clientId: string;
652
790
  createdBy: string;
653
- creator: {
654
- lastName: string;
791
+ agent: {
792
+ id: string;
793
+ createdAt: string | Date;
794
+ updatedAt: string | Date;
655
795
  firstName: string;
796
+ lastName: string;
656
797
  email: string;
657
- phone: string;
658
- createdAt: string | Date;
798
+ phoneNumbers?: {
799
+ id: string;
800
+ phoneNumber: string;
801
+ description?: string | null | undefined;
802
+ isPrimary?: boolean | undefined;
803
+ }[] | undefined;
804
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
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;
806
+ };
807
+ linkType: "CREATION" | "EDIT_SUGGESTION";
808
+ creator: {
659
809
  id: string;
810
+ createdAt: string | Date;
660
811
  updatedAt: string | Date;
812
+ firstName: string;
813
+ lastName: string;
814
+ email: string;
815
+ phoneNumbers?: {
816
+ id: string;
817
+ phoneNumber: string;
818
+ description?: string | null | undefined;
819
+ isPrimary?: boolean | undefined;
820
+ }[] | undefined;
661
821
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
662
822
  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;
663
823
  };
@@ -677,9 +837,6 @@ export type ApplyChanges = z.infer<typeof ApplyChangesSchema>;
677
837
  export type PaginatedAgentClientLinkResponse = z.infer<typeof PaginatedAgentClientLinkResponseSchema>;
678
838
  export declare const agentClientLinksContract: {
679
839
  findAll: {
680
- metadata: {
681
- tags: string[];
682
- };
683
840
  query: z.ZodObject<{
684
841
  limit: z.ZodDefault<z.ZodNumber>;
685
842
  page: z.ZodDefault<z.ZodNumber>;
@@ -706,6 +863,9 @@ export declare const agentClientLinksContract: {
706
863
  clientId?: string | undefined;
707
864
  linkType?: "CREATION" | "EDIT_SUGGESTION" | undefined;
708
865
  }>;
866
+ metadata: {
867
+ tags: string[];
868
+ };
709
869
  summary: "Get all agent-client links";
710
870
  method: "GET";
711
871
  path: "/v2/agent-client-links";
@@ -829,15 +989,15 @@ export declare const agentClientLinksContract: {
829
989
  lastName: z.ZodString;
830
990
  email: z.ZodString;
831
991
  }, "strip", z.ZodTypeAny, {
832
- lastName: string;
992
+ id: string;
833
993
  firstName: string;
994
+ lastName: string;
834
995
  email: string;
835
- id: string;
836
996
  }, {
837
- lastName: string;
997
+ id: string;
838
998
  firstName: string;
999
+ lastName: string;
839
1000
  email: string;
840
- id: string;
841
1001
  }>>>;
842
1002
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
843
1003
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -849,9 +1009,9 @@ export declare const agentClientLinksContract: {
849
1009
  agentId: string;
850
1010
  }>>>;
851
1011
  }, "strip", z.ZodTypeAny, {
852
- createdAt: string;
853
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
854
1012
  id: string;
1013
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1014
+ createdAt: string;
855
1015
  updatedAt: string;
856
1016
  name: string;
857
1017
  crn: string | null;
@@ -860,18 +1020,18 @@ export declare const agentClientLinksContract: {
860
1020
  director: string;
861
1021
  blacklistReason?: string | null | undefined;
862
1022
  lastUpdatedBy?: {
863
- lastName: string;
1023
+ id: string;
864
1024
  firstName: string;
1025
+ lastName: string;
865
1026
  email: string;
866
- id: string;
867
1027
  } | null | undefined;
868
1028
  agentClientLinks?: {
869
1029
  agentId: string;
870
1030
  } | null | undefined;
871
1031
  }, {
872
- createdAt: string | Date;
873
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
874
1032
  id: string;
1033
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1034
+ createdAt: string | Date;
875
1035
  updatedAt: string | Date;
876
1036
  name: string;
877
1037
  crn: string | null;
@@ -880,10 +1040,10 @@ export declare const agentClientLinksContract: {
880
1040
  director: string;
881
1041
  blacklistReason?: string | null | undefined;
882
1042
  lastUpdatedBy?: {
883
- lastName: string;
1043
+ id: string;
884
1044
  firstName: string;
1045
+ lastName: string;
885
1046
  email: string;
886
- id: string;
887
1047
  } | null | undefined;
888
1048
  agentClientLinks?: {
889
1049
  agentId: string;
@@ -895,29 +1055,54 @@ export declare const agentClientLinksContract: {
895
1055
  firstName: z.ZodString;
896
1056
  lastName: z.ZodString;
897
1057
  email: z.ZodString;
898
- phone: z.ZodString;
1058
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1059
+ id: z.ZodString;
1060
+ phoneNumber: z.ZodString;
1061
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1062
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
1063
+ }, "strip", z.ZodTypeAny, {
1064
+ id: string;
1065
+ phoneNumber: string;
1066
+ isPrimary: boolean;
1067
+ description?: string | null | undefined;
1068
+ }, {
1069
+ id: string;
1070
+ phoneNumber: string;
1071
+ description?: string | null | undefined;
1072
+ isPrimary?: boolean | undefined;
1073
+ }>, "many">>>;
899
1074
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
900
1075
  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"]>>>;
901
1076
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
902
1077
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
903
1078
  }, "strip", z.ZodTypeAny, {
904
- lastName: string;
905
- firstName: string;
906
- email: string;
907
- phone: string;
908
- createdAt: string;
909
1079
  id: string;
1080
+ createdAt: string;
910
1081
  updatedAt: string;
1082
+ firstName: string;
1083
+ lastName: string;
1084
+ email: string;
1085
+ phoneNumbers: {
1086
+ id: string;
1087
+ phoneNumber: string;
1088
+ isPrimary: boolean;
1089
+ description?: string | null | undefined;
1090
+ }[];
911
1091
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
912
1092
  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;
913
1093
  }, {
914
- lastName: string;
915
- firstName: string;
916
- email: string;
917
- phone: string;
918
- createdAt: string | Date;
919
1094
  id: string;
1095
+ createdAt: string | Date;
920
1096
  updatedAt: string | Date;
1097
+ firstName: string;
1098
+ lastName: string;
1099
+ email: string;
1100
+ phoneNumbers?: {
1101
+ id: string;
1102
+ phoneNumber: string;
1103
+ description?: string | null | undefined;
1104
+ isPrimary?: boolean | undefined;
1105
+ }[] | undefined;
921
1106
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
922
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;
923
1108
  }>;
@@ -930,55 +1115,68 @@ export declare const agentClientLinksContract: {
930
1115
  firstName: z.ZodString;
931
1116
  lastName: z.ZodString;
932
1117
  email: z.ZodString;
933
- phone: z.ZodString;
1118
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1119
+ id: z.ZodString;
1120
+ phoneNumber: z.ZodString;
1121
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1122
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
1123
+ }, "strip", z.ZodTypeAny, {
1124
+ id: string;
1125
+ phoneNumber: string;
1126
+ isPrimary: boolean;
1127
+ description?: string | null | undefined;
1128
+ }, {
1129
+ id: string;
1130
+ phoneNumber: string;
1131
+ description?: string | null | undefined;
1132
+ isPrimary?: boolean | undefined;
1133
+ }>, "many">>>;
934
1134
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
935
1135
  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"]>>>;
936
1136
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
937
1137
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
938
1138
  }, "strip", z.ZodTypeAny, {
939
- lastName: string;
940
- firstName: string;
941
- email: string;
942
- phone: string;
943
- createdAt: string;
944
1139
  id: string;
1140
+ createdAt: string;
945
1141
  updatedAt: string;
1142
+ firstName: string;
1143
+ lastName: string;
1144
+ email: string;
1145
+ phoneNumbers: {
1146
+ id: string;
1147
+ phoneNumber: string;
1148
+ isPrimary: boolean;
1149
+ description?: string | null | undefined;
1150
+ }[];
946
1151
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
947
1152
  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;
948
1153
  }, {
949
- lastName: string;
950
- firstName: string;
951
- email: string;
952
- phone: string;
953
- createdAt: string | Date;
954
1154
  id: string;
1155
+ createdAt: string | Date;
955
1156
  updatedAt: string | Date;
1157
+ firstName: string;
1158
+ lastName: string;
1159
+ email: string;
1160
+ phoneNumbers?: {
1161
+ id: string;
1162
+ phoneNumber: string;
1163
+ description?: string | null | undefined;
1164
+ isPrimary?: boolean | undefined;
1165
+ }[] | undefined;
956
1166
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
957
1167
  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;
958
1168
  }>;
959
1169
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
960
1170
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
961
1171
  }, "strip", z.ZodTypeAny, {
962
- createdAt: string;
963
1172
  id: string;
1173
+ createdAt: string;
964
1174
  updatedAt: string;
965
1175
  agentId: string;
966
- agent: {
967
- lastName: string;
968
- firstName: string;
969
- email: string;
970
- phone: string;
971
- createdAt: string;
972
- id: string;
973
- updatedAt: string;
974
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
975
- 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;
976
- };
977
- clientId: string;
978
1176
  client: {
979
- createdAt: string;
980
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
981
1177
  id: string;
1178
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1179
+ createdAt: string;
982
1180
  updatedAt: string;
983
1181
  name: string;
984
1182
  crn: string | null;
@@ -987,51 +1185,61 @@ export declare const agentClientLinksContract: {
987
1185
  director: string;
988
1186
  blacklistReason?: string | null | undefined;
989
1187
  lastUpdatedBy?: {
990
- lastName: string;
1188
+ id: string;
991
1189
  firstName: string;
1190
+ lastName: string;
992
1191
  email: string;
993
- id: string;
994
1192
  } | null | undefined;
995
1193
  agentClientLinks?: {
996
1194
  agentId: string;
997
1195
  } | null | undefined;
998
1196
  };
999
- linkType: "CREATION" | "EDIT_SUGGESTION";
1197
+ clientId: string;
1000
1198
  createdBy: string;
1001
- creator: {
1002
- lastName: string;
1199
+ agent: {
1200
+ id: string;
1201
+ createdAt: string;
1202
+ updatedAt: string;
1003
1203
  firstName: string;
1204
+ lastName: string;
1004
1205
  email: string;
1005
- phone: string;
1006
- createdAt: string;
1206
+ phoneNumbers: {
1207
+ id: string;
1208
+ phoneNumber: string;
1209
+ isPrimary: boolean;
1210
+ description?: string | null | undefined;
1211
+ }[];
1212
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1213
+ 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;
1214
+ };
1215
+ linkType: "CREATION" | "EDIT_SUGGESTION";
1216
+ creator: {
1007
1217
  id: string;
1218
+ createdAt: string;
1008
1219
  updatedAt: string;
1220
+ firstName: string;
1221
+ lastName: string;
1222
+ email: string;
1223
+ phoneNumbers: {
1224
+ id: string;
1225
+ phoneNumber: string;
1226
+ isPrimary: boolean;
1227
+ description?: string | null | undefined;
1228
+ }[];
1009
1229
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1010
1230
  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;
1011
1231
  };
1012
1232
  suggestedChanges?: Record<string, unknown> | null | undefined;
1013
1233
  appliedChanges?: Record<string, unknown> | null | undefined;
1014
1234
  }, {
1015
- createdAt: string | Date;
1016
1235
  id: string;
1236
+ createdAt: string | Date;
1017
1237
  updatedAt: string | Date;
1018
1238
  agentId: string;
1019
- agent: {
1020
- lastName: string;
1021
- firstName: string;
1022
- email: string;
1023
- phone: string;
1024
- createdAt: string | Date;
1025
- id: string;
1026
- updatedAt: string | Date;
1027
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1028
- 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;
1029
- };
1030
- clientId: string;
1031
1239
  client: {
1032
- createdAt: string | Date;
1033
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1034
1240
  id: string;
1241
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1242
+ createdAt: string | Date;
1035
1243
  updatedAt: string | Date;
1036
1244
  name: string;
1037
1245
  crn: string | null;
@@ -1040,25 +1248,47 @@ export declare const agentClientLinksContract: {
1040
1248
  director: string;
1041
1249
  blacklistReason?: string | null | undefined;
1042
1250
  lastUpdatedBy?: {
1043
- lastName: string;
1251
+ id: string;
1044
1252
  firstName: string;
1253
+ lastName: string;
1045
1254
  email: string;
1046
- id: string;
1047
1255
  } | null | undefined;
1048
1256
  agentClientLinks?: {
1049
1257
  agentId: string;
1050
1258
  } | null | undefined;
1051
1259
  };
1052
- linkType: "CREATION" | "EDIT_SUGGESTION";
1260
+ clientId: string;
1053
1261
  createdBy: string;
1054
- creator: {
1055
- lastName: string;
1262
+ agent: {
1263
+ id: string;
1264
+ createdAt: string | Date;
1265
+ updatedAt: string | Date;
1056
1266
  firstName: string;
1267
+ lastName: string;
1057
1268
  email: string;
1058
- phone: string;
1059
- createdAt: string | Date;
1269
+ phoneNumbers?: {
1270
+ id: string;
1271
+ phoneNumber: string;
1272
+ description?: string | null | undefined;
1273
+ isPrimary?: boolean | undefined;
1274
+ }[] | undefined;
1275
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1276
+ office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1277
+ };
1278
+ linkType: "CREATION" | "EDIT_SUGGESTION";
1279
+ creator: {
1060
1280
  id: string;
1281
+ createdAt: string | Date;
1061
1282
  updatedAt: string | Date;
1283
+ firstName: string;
1284
+ lastName: string;
1285
+ email: string;
1286
+ phoneNumbers?: {
1287
+ id: string;
1288
+ phoneNumber: string;
1289
+ description?: string | null | undefined;
1290
+ isPrimary?: boolean | undefined;
1291
+ }[] | undefined;
1062
1292
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1063
1293
  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;
1064
1294
  };
@@ -1073,26 +1303,14 @@ export declare const agentClientLinksContract: {
1073
1303
  }, "strip", z.ZodTypeAny, {
1074
1304
  limit: number;
1075
1305
  items: {
1076
- createdAt: string;
1077
1306
  id: string;
1307
+ createdAt: string;
1078
1308
  updatedAt: string;
1079
1309
  agentId: string;
1080
- agent: {
1081
- lastName: string;
1082
- firstName: string;
1083
- email: string;
1084
- phone: string;
1085
- createdAt: string;
1086
- id: string;
1087
- updatedAt: string;
1088
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1089
- 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;
1090
- };
1091
- clientId: string;
1092
1310
  client: {
1093
- createdAt: string;
1094
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1095
1311
  id: string;
1312
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1313
+ createdAt: string;
1096
1314
  updatedAt: string;
1097
1315
  name: string;
1098
1316
  crn: string | null;
@@ -1101,25 +1319,47 @@ export declare const agentClientLinksContract: {
1101
1319
  director: string;
1102
1320
  blacklistReason?: string | null | undefined;
1103
1321
  lastUpdatedBy?: {
1104
- lastName: string;
1322
+ id: string;
1105
1323
  firstName: string;
1324
+ lastName: string;
1106
1325
  email: string;
1107
- id: string;
1108
1326
  } | null | undefined;
1109
1327
  agentClientLinks?: {
1110
1328
  agentId: string;
1111
1329
  } | null | undefined;
1112
1330
  };
1113
- linkType: "CREATION" | "EDIT_SUGGESTION";
1331
+ clientId: string;
1114
1332
  createdBy: string;
1115
- creator: {
1116
- lastName: string;
1333
+ agent: {
1334
+ id: string;
1335
+ createdAt: string;
1336
+ updatedAt: string;
1117
1337
  firstName: string;
1338
+ lastName: string;
1118
1339
  email: string;
1119
- phone: string;
1120
- createdAt: string;
1340
+ phoneNumbers: {
1341
+ id: string;
1342
+ phoneNumber: string;
1343
+ isPrimary: boolean;
1344
+ description?: string | null | undefined;
1345
+ }[];
1346
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1347
+ 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;
1348
+ };
1349
+ linkType: "CREATION" | "EDIT_SUGGESTION";
1350
+ creator: {
1121
1351
  id: string;
1352
+ createdAt: string;
1122
1353
  updatedAt: string;
1354
+ firstName: string;
1355
+ lastName: string;
1356
+ email: string;
1357
+ phoneNumbers: {
1358
+ id: string;
1359
+ phoneNumber: string;
1360
+ isPrimary: boolean;
1361
+ description?: string | null | undefined;
1362
+ }[];
1123
1363
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1124
1364
  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;
1125
1365
  };
@@ -1133,26 +1373,14 @@ export declare const agentClientLinksContract: {
1133
1373
  }, {
1134
1374
  limit: number;
1135
1375
  items: {
1136
- createdAt: string | Date;
1137
1376
  id: string;
1377
+ createdAt: string | Date;
1138
1378
  updatedAt: string | Date;
1139
1379
  agentId: string;
1140
- agent: {
1141
- lastName: string;
1142
- firstName: string;
1143
- email: string;
1144
- phone: string;
1145
- createdAt: string | Date;
1146
- id: string;
1147
- updatedAt: string | Date;
1148
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1149
- 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;
1150
- };
1151
- clientId: string;
1152
1380
  client: {
1153
- createdAt: string | Date;
1154
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1155
1381
  id: string;
1382
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1383
+ createdAt: string | Date;
1156
1384
  updatedAt: string | Date;
1157
1385
  name: string;
1158
1386
  crn: string | null;
@@ -1161,25 +1389,47 @@ export declare const agentClientLinksContract: {
1161
1389
  director: string;
1162
1390
  blacklistReason?: string | null | undefined;
1163
1391
  lastUpdatedBy?: {
1164
- lastName: string;
1392
+ id: string;
1165
1393
  firstName: string;
1394
+ lastName: string;
1166
1395
  email: string;
1167
- id: string;
1168
1396
  } | null | undefined;
1169
1397
  agentClientLinks?: {
1170
1398
  agentId: string;
1171
1399
  } | null | undefined;
1172
1400
  };
1173
- linkType: "CREATION" | "EDIT_SUGGESTION";
1401
+ clientId: string;
1174
1402
  createdBy: string;
1175
- creator: {
1176
- lastName: string;
1403
+ agent: {
1404
+ id: string;
1405
+ createdAt: string | Date;
1406
+ updatedAt: string | Date;
1177
1407
  firstName: string;
1408
+ lastName: string;
1178
1409
  email: string;
1179
- phone: string;
1180
- createdAt: string | Date;
1410
+ phoneNumbers?: {
1411
+ id: string;
1412
+ phoneNumber: string;
1413
+ description?: string | null | undefined;
1414
+ isPrimary?: boolean | undefined;
1415
+ }[] | undefined;
1416
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1417
+ 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;
1418
+ };
1419
+ linkType: "CREATION" | "EDIT_SUGGESTION";
1420
+ creator: {
1181
1421
  id: string;
1422
+ createdAt: string | Date;
1182
1423
  updatedAt: string | Date;
1424
+ firstName: string;
1425
+ lastName: string;
1426
+ email: string;
1427
+ phoneNumbers?: {
1428
+ id: string;
1429
+ phoneNumber: string;
1430
+ description?: string | null | undefined;
1431
+ isPrimary?: boolean | undefined;
1432
+ }[] | undefined;
1183
1433
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1184
1434
  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;
1185
1435
  };
@@ -1326,15 +1576,15 @@ export declare const agentClientLinksContract: {
1326
1576
  lastName: z.ZodString;
1327
1577
  email: z.ZodString;
1328
1578
  }, "strip", z.ZodTypeAny, {
1329
- lastName: string;
1579
+ id: string;
1330
1580
  firstName: string;
1581
+ lastName: string;
1331
1582
  email: string;
1332
- id: string;
1333
1583
  }, {
1334
- lastName: string;
1584
+ id: string;
1335
1585
  firstName: string;
1586
+ lastName: string;
1336
1587
  email: string;
1337
- id: string;
1338
1588
  }>>>;
1339
1589
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1340
1590
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -1346,9 +1596,9 @@ export declare const agentClientLinksContract: {
1346
1596
  agentId: string;
1347
1597
  }>>>;
1348
1598
  }, "strip", z.ZodTypeAny, {
1349
- createdAt: string;
1350
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1351
1599
  id: string;
1600
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1601
+ createdAt: string;
1352
1602
  updatedAt: string;
1353
1603
  name: string;
1354
1604
  crn: string | null;
@@ -1357,18 +1607,18 @@ export declare const agentClientLinksContract: {
1357
1607
  director: string;
1358
1608
  blacklistReason?: string | null | undefined;
1359
1609
  lastUpdatedBy?: {
1360
- lastName: string;
1610
+ id: string;
1361
1611
  firstName: string;
1612
+ lastName: string;
1362
1613
  email: string;
1363
- id: string;
1364
1614
  } | null | undefined;
1365
1615
  agentClientLinks?: {
1366
1616
  agentId: string;
1367
1617
  } | null | undefined;
1368
1618
  }, {
1369
- createdAt: string | Date;
1370
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1371
1619
  id: string;
1620
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1621
+ createdAt: string | Date;
1372
1622
  updatedAt: string | Date;
1373
1623
  name: string;
1374
1624
  crn: string | null;
@@ -1377,10 +1627,10 @@ export declare const agentClientLinksContract: {
1377
1627
  director: string;
1378
1628
  blacklistReason?: string | null | undefined;
1379
1629
  lastUpdatedBy?: {
1380
- lastName: string;
1630
+ id: string;
1381
1631
  firstName: string;
1632
+ lastName: string;
1382
1633
  email: string;
1383
- id: string;
1384
1634
  } | null | undefined;
1385
1635
  agentClientLinks?: {
1386
1636
  agentId: string;
@@ -1392,29 +1642,54 @@ export declare const agentClientLinksContract: {
1392
1642
  firstName: z.ZodString;
1393
1643
  lastName: z.ZodString;
1394
1644
  email: z.ZodString;
1395
- phone: z.ZodString;
1645
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1646
+ id: z.ZodString;
1647
+ phoneNumber: z.ZodString;
1648
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1649
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
1650
+ }, "strip", z.ZodTypeAny, {
1651
+ id: string;
1652
+ phoneNumber: string;
1653
+ isPrimary: boolean;
1654
+ description?: string | null | undefined;
1655
+ }, {
1656
+ id: string;
1657
+ phoneNumber: string;
1658
+ description?: string | null | undefined;
1659
+ isPrimary?: boolean | undefined;
1660
+ }>, "many">>>;
1396
1661
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
1397
1662
  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"]>>>;
1398
1663
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1399
1664
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1400
1665
  }, "strip", z.ZodTypeAny, {
1401
- lastName: string;
1402
- firstName: string;
1403
- email: string;
1404
- phone: string;
1405
- createdAt: string;
1406
1666
  id: string;
1667
+ createdAt: string;
1407
1668
  updatedAt: string;
1669
+ firstName: string;
1670
+ lastName: string;
1671
+ email: string;
1672
+ phoneNumbers: {
1673
+ id: string;
1674
+ phoneNumber: string;
1675
+ isPrimary: boolean;
1676
+ description?: string | null | undefined;
1677
+ }[];
1408
1678
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1409
1679
  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;
1410
1680
  }, {
1411
- lastName: string;
1412
- firstName: string;
1413
- email: string;
1414
- phone: string;
1415
- createdAt: string | Date;
1416
1681
  id: string;
1682
+ createdAt: string | Date;
1417
1683
  updatedAt: string | Date;
1684
+ firstName: string;
1685
+ lastName: string;
1686
+ email: string;
1687
+ phoneNumbers?: {
1688
+ id: string;
1689
+ phoneNumber: string;
1690
+ description?: string | null | undefined;
1691
+ isPrimary?: boolean | undefined;
1692
+ }[] | undefined;
1418
1693
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1419
1694
  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;
1420
1695
  }>;
@@ -1427,55 +1702,68 @@ export declare const agentClientLinksContract: {
1427
1702
  firstName: z.ZodString;
1428
1703
  lastName: z.ZodString;
1429
1704
  email: z.ZodString;
1430
- phone: z.ZodString;
1705
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1706
+ id: z.ZodString;
1707
+ phoneNumber: z.ZodString;
1708
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1709
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
1710
+ }, "strip", z.ZodTypeAny, {
1711
+ id: string;
1712
+ phoneNumber: string;
1713
+ isPrimary: boolean;
1714
+ description?: string | null | undefined;
1715
+ }, {
1716
+ id: string;
1717
+ phoneNumber: string;
1718
+ description?: string | null | undefined;
1719
+ isPrimary?: boolean | undefined;
1720
+ }>, "many">>>;
1431
1721
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
1432
1722
  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"]>>>;
1433
1723
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1434
1724
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1435
1725
  }, "strip", z.ZodTypeAny, {
1436
- lastName: string;
1437
- firstName: string;
1438
- email: string;
1439
- phone: string;
1440
- createdAt: string;
1441
1726
  id: string;
1727
+ createdAt: string;
1442
1728
  updatedAt: string;
1729
+ firstName: string;
1730
+ lastName: string;
1731
+ email: string;
1732
+ phoneNumbers: {
1733
+ id: string;
1734
+ phoneNumber: string;
1735
+ isPrimary: boolean;
1736
+ description?: string | null | undefined;
1737
+ }[];
1443
1738
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1444
1739
  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;
1445
1740
  }, {
1446
- lastName: string;
1447
- firstName: string;
1448
- email: string;
1449
- phone: string;
1450
- createdAt: string | Date;
1451
1741
  id: string;
1742
+ createdAt: string | Date;
1452
1743
  updatedAt: string | Date;
1744
+ firstName: string;
1745
+ lastName: string;
1746
+ email: string;
1747
+ phoneNumbers?: {
1748
+ id: string;
1749
+ phoneNumber: string;
1750
+ description?: string | null | undefined;
1751
+ isPrimary?: boolean | undefined;
1752
+ }[] | undefined;
1453
1753
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1454
1754
  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;
1455
1755
  }>;
1456
1756
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1457
1757
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1458
1758
  }, "strip", z.ZodTypeAny, {
1459
- createdAt: string;
1460
1759
  id: string;
1760
+ createdAt: string;
1461
1761
  updatedAt: string;
1462
1762
  agentId: string;
1463
- agent: {
1464
- lastName: string;
1465
- firstName: string;
1466
- email: string;
1467
- phone: string;
1468
- createdAt: string;
1469
- id: string;
1470
- updatedAt: string;
1471
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1472
- 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;
1473
- };
1474
- clientId: string;
1475
1763
  client: {
1476
- createdAt: string;
1477
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1478
1764
  id: string;
1765
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1766
+ createdAt: string;
1479
1767
  updatedAt: string;
1480
1768
  name: string;
1481
1769
  crn: string | null;
@@ -1484,51 +1772,61 @@ export declare const agentClientLinksContract: {
1484
1772
  director: string;
1485
1773
  blacklistReason?: string | null | undefined;
1486
1774
  lastUpdatedBy?: {
1487
- lastName: string;
1775
+ id: string;
1488
1776
  firstName: string;
1777
+ lastName: string;
1489
1778
  email: string;
1490
- id: string;
1491
1779
  } | null | undefined;
1492
1780
  agentClientLinks?: {
1493
1781
  agentId: string;
1494
1782
  } | null | undefined;
1495
1783
  };
1496
- linkType: "CREATION" | "EDIT_SUGGESTION";
1784
+ clientId: string;
1497
1785
  createdBy: string;
1498
- creator: {
1499
- lastName: string;
1786
+ agent: {
1787
+ id: string;
1788
+ createdAt: string;
1789
+ updatedAt: string;
1500
1790
  firstName: string;
1791
+ lastName: string;
1501
1792
  email: string;
1502
- phone: string;
1503
- createdAt: string;
1793
+ phoneNumbers: {
1794
+ id: string;
1795
+ phoneNumber: string;
1796
+ isPrimary: boolean;
1797
+ description?: string | null | undefined;
1798
+ }[];
1799
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1800
+ 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;
1801
+ };
1802
+ linkType: "CREATION" | "EDIT_SUGGESTION";
1803
+ creator: {
1504
1804
  id: string;
1805
+ createdAt: string;
1505
1806
  updatedAt: string;
1807
+ firstName: string;
1808
+ lastName: string;
1809
+ email: string;
1810
+ phoneNumbers: {
1811
+ id: string;
1812
+ phoneNumber: string;
1813
+ isPrimary: boolean;
1814
+ description?: string | null | undefined;
1815
+ }[];
1506
1816
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1507
1817
  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;
1508
1818
  };
1509
1819
  suggestedChanges?: Record<string, unknown> | null | undefined;
1510
1820
  appliedChanges?: Record<string, unknown> | null | undefined;
1511
1821
  }, {
1512
- createdAt: string | Date;
1513
1822
  id: string;
1823
+ createdAt: string | Date;
1514
1824
  updatedAt: string | Date;
1515
1825
  agentId: string;
1516
- agent: {
1517
- lastName: string;
1518
- firstName: string;
1519
- email: string;
1520
- phone: string;
1521
- createdAt: string | Date;
1522
- id: string;
1523
- updatedAt: string | Date;
1524
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1525
- 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;
1526
- };
1527
- clientId: string;
1528
1826
  client: {
1529
- createdAt: string | Date;
1530
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1531
1827
  id: string;
1828
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1829
+ createdAt: string | Date;
1532
1830
  updatedAt: string | Date;
1533
1831
  name: string;
1534
1832
  crn: string | null;
@@ -1537,25 +1835,47 @@ export declare const agentClientLinksContract: {
1537
1835
  director: string;
1538
1836
  blacklistReason?: string | null | undefined;
1539
1837
  lastUpdatedBy?: {
1540
- lastName: string;
1838
+ id: string;
1541
1839
  firstName: string;
1840
+ lastName: string;
1542
1841
  email: string;
1543
- id: string;
1544
1842
  } | null | undefined;
1545
1843
  agentClientLinks?: {
1546
1844
  agentId: string;
1547
1845
  } | null | undefined;
1548
1846
  };
1549
- linkType: "CREATION" | "EDIT_SUGGESTION";
1847
+ clientId: string;
1550
1848
  createdBy: string;
1551
- creator: {
1552
- lastName: string;
1849
+ agent: {
1850
+ id: string;
1851
+ createdAt: string | Date;
1852
+ updatedAt: string | Date;
1553
1853
  firstName: string;
1854
+ lastName: string;
1554
1855
  email: string;
1555
- phone: string;
1556
- createdAt: string | Date;
1856
+ phoneNumbers?: {
1857
+ id: string;
1858
+ phoneNumber: string;
1859
+ description?: string | null | undefined;
1860
+ isPrimary?: boolean | undefined;
1861
+ }[] | undefined;
1862
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1863
+ 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;
1864
+ };
1865
+ linkType: "CREATION" | "EDIT_SUGGESTION";
1866
+ creator: {
1557
1867
  id: string;
1868
+ createdAt: string | Date;
1558
1869
  updatedAt: string | Date;
1870
+ firstName: string;
1871
+ lastName: string;
1872
+ email: string;
1873
+ phoneNumbers?: {
1874
+ id: string;
1875
+ phoneNumber: string;
1876
+ description?: string | null | undefined;
1877
+ isPrimary?: boolean | undefined;
1878
+ }[] | undefined;
1559
1879
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1560
1880
  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;
1561
1881
  };
@@ -1729,15 +2049,15 @@ export declare const agentClientLinksContract: {
1729
2049
  lastName: z.ZodString;
1730
2050
  email: z.ZodString;
1731
2051
  }, "strip", z.ZodTypeAny, {
1732
- lastName: string;
2052
+ id: string;
1733
2053
  firstName: string;
2054
+ lastName: string;
1734
2055
  email: string;
1735
- id: string;
1736
2056
  }, {
1737
- lastName: string;
2057
+ id: string;
1738
2058
  firstName: string;
2059
+ lastName: string;
1739
2060
  email: string;
1740
- id: string;
1741
2061
  }>>>;
1742
2062
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1743
2063
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -1749,9 +2069,9 @@ export declare const agentClientLinksContract: {
1749
2069
  agentId: string;
1750
2070
  }>>>;
1751
2071
  }, "strip", z.ZodTypeAny, {
1752
- createdAt: string;
1753
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1754
2072
  id: string;
2073
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2074
+ createdAt: string;
1755
2075
  updatedAt: string;
1756
2076
  name: string;
1757
2077
  crn: string | null;
@@ -1760,18 +2080,18 @@ export declare const agentClientLinksContract: {
1760
2080
  director: string;
1761
2081
  blacklistReason?: string | null | undefined;
1762
2082
  lastUpdatedBy?: {
1763
- lastName: string;
2083
+ id: string;
1764
2084
  firstName: string;
2085
+ lastName: string;
1765
2086
  email: string;
1766
- id: string;
1767
2087
  } | null | undefined;
1768
2088
  agentClientLinks?: {
1769
2089
  agentId: string;
1770
2090
  } | null | undefined;
1771
2091
  }, {
1772
- createdAt: string | Date;
1773
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1774
2092
  id: string;
2093
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2094
+ createdAt: string | Date;
1775
2095
  updatedAt: string | Date;
1776
2096
  name: string;
1777
2097
  crn: string | null;
@@ -1780,10 +2100,10 @@ export declare const agentClientLinksContract: {
1780
2100
  director: string;
1781
2101
  blacklistReason?: string | null | undefined;
1782
2102
  lastUpdatedBy?: {
1783
- lastName: string;
2103
+ id: string;
1784
2104
  firstName: string;
2105
+ lastName: string;
1785
2106
  email: string;
1786
- id: string;
1787
2107
  } | null | undefined;
1788
2108
  agentClientLinks?: {
1789
2109
  agentId: string;
@@ -1795,29 +2115,54 @@ export declare const agentClientLinksContract: {
1795
2115
  firstName: z.ZodString;
1796
2116
  lastName: z.ZodString;
1797
2117
  email: z.ZodString;
1798
- phone: z.ZodString;
2118
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
2119
+ id: z.ZodString;
2120
+ phoneNumber: z.ZodString;
2121
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2122
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
2123
+ }, "strip", z.ZodTypeAny, {
2124
+ id: string;
2125
+ phoneNumber: string;
2126
+ isPrimary: boolean;
2127
+ description?: string | null | undefined;
2128
+ }, {
2129
+ id: string;
2130
+ phoneNumber: string;
2131
+ description?: string | null | undefined;
2132
+ isPrimary?: boolean | undefined;
2133
+ }>, "many">>>;
1799
2134
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
1800
2135
  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"]>>>;
1801
2136
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1802
2137
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1803
2138
  }, "strip", z.ZodTypeAny, {
1804
- lastName: string;
1805
- firstName: string;
1806
- email: string;
1807
- phone: string;
1808
- createdAt: string;
1809
2139
  id: string;
2140
+ createdAt: string;
1810
2141
  updatedAt: string;
2142
+ firstName: string;
2143
+ lastName: string;
2144
+ email: string;
2145
+ phoneNumbers: {
2146
+ id: string;
2147
+ phoneNumber: string;
2148
+ isPrimary: boolean;
2149
+ description?: string | null | undefined;
2150
+ }[];
1811
2151
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1812
2152
  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
2153
  }, {
1814
- lastName: string;
1815
- firstName: string;
1816
- email: string;
1817
- phone: string;
1818
- createdAt: string | Date;
1819
2154
  id: string;
2155
+ createdAt: string | Date;
1820
2156
  updatedAt: string | Date;
2157
+ firstName: string;
2158
+ lastName: string;
2159
+ email: string;
2160
+ phoneNumbers?: {
2161
+ id: string;
2162
+ phoneNumber: string;
2163
+ description?: string | null | undefined;
2164
+ isPrimary?: boolean | undefined;
2165
+ }[] | undefined;
1821
2166
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1822
2167
  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;
1823
2168
  }>;
@@ -1830,55 +2175,68 @@ export declare const agentClientLinksContract: {
1830
2175
  firstName: z.ZodString;
1831
2176
  lastName: z.ZodString;
1832
2177
  email: z.ZodString;
1833
- phone: z.ZodString;
2178
+ phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
2179
+ id: z.ZodString;
2180
+ phoneNumber: z.ZodString;
2181
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2182
+ isPrimary: z.ZodDefault<z.ZodBoolean>;
2183
+ }, "strip", z.ZodTypeAny, {
2184
+ id: string;
2185
+ phoneNumber: string;
2186
+ isPrimary: boolean;
2187
+ description?: string | null | undefined;
2188
+ }, {
2189
+ id: string;
2190
+ phoneNumber: string;
2191
+ description?: string | null | undefined;
2192
+ isPrimary?: boolean | undefined;
2193
+ }>, "many">>>;
1834
2194
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
1835
2195
  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"]>>>;
1836
2196
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1837
2197
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1838
2198
  }, "strip", z.ZodTypeAny, {
1839
- lastName: string;
1840
- firstName: string;
1841
- email: string;
1842
- phone: string;
1843
- createdAt: string;
1844
2199
  id: string;
2200
+ createdAt: string;
1845
2201
  updatedAt: string;
2202
+ firstName: string;
2203
+ lastName: string;
2204
+ email: string;
2205
+ phoneNumbers: {
2206
+ id: string;
2207
+ phoneNumber: string;
2208
+ isPrimary: boolean;
2209
+ description?: string | null | undefined;
2210
+ }[];
1846
2211
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1847
2212
  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;
1848
2213
  }, {
1849
- lastName: string;
1850
- firstName: string;
1851
- email: string;
1852
- phone: string;
1853
- createdAt: string | Date;
1854
2214
  id: string;
2215
+ createdAt: string | Date;
1855
2216
  updatedAt: string | Date;
2217
+ firstName: string;
2218
+ lastName: string;
2219
+ email: string;
2220
+ phoneNumbers?: {
2221
+ id: string;
2222
+ phoneNumber: string;
2223
+ description?: string | null | undefined;
2224
+ isPrimary?: boolean | undefined;
2225
+ }[] | undefined;
1856
2226
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1857
2227
  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;
1858
2228
  }>;
1859
2229
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1860
2230
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1861
2231
  }, "strip", z.ZodTypeAny, {
1862
- createdAt: string;
1863
2232
  id: string;
2233
+ createdAt: string;
1864
2234
  updatedAt: string;
1865
2235
  agentId: string;
1866
- agent: {
1867
- lastName: string;
1868
- firstName: string;
1869
- email: string;
1870
- phone: string;
1871
- createdAt: string;
1872
- id: string;
1873
- updatedAt: string;
1874
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1875
- 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;
1876
- };
1877
- clientId: string;
1878
2236
  client: {
1879
- createdAt: string;
1880
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1881
2237
  id: string;
2238
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2239
+ createdAt: string;
1882
2240
  updatedAt: string;
1883
2241
  name: string;
1884
2242
  crn: string | null;
@@ -1887,51 +2245,61 @@ export declare const agentClientLinksContract: {
1887
2245
  director: string;
1888
2246
  blacklistReason?: string | null | undefined;
1889
2247
  lastUpdatedBy?: {
1890
- lastName: string;
2248
+ id: string;
1891
2249
  firstName: string;
2250
+ lastName: string;
1892
2251
  email: string;
1893
- id: string;
1894
2252
  } | null | undefined;
1895
2253
  agentClientLinks?: {
1896
2254
  agentId: string;
1897
2255
  } | null | undefined;
1898
2256
  };
1899
- linkType: "CREATION" | "EDIT_SUGGESTION";
2257
+ clientId: string;
1900
2258
  createdBy: string;
1901
- creator: {
1902
- lastName: string;
2259
+ agent: {
2260
+ id: string;
2261
+ createdAt: string;
2262
+ updatedAt: string;
1903
2263
  firstName: string;
2264
+ lastName: string;
1904
2265
  email: string;
1905
- phone: string;
1906
- createdAt: string;
2266
+ phoneNumbers: {
2267
+ id: string;
2268
+ phoneNumber: string;
2269
+ isPrimary: boolean;
2270
+ description?: string | null | undefined;
2271
+ }[];
2272
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2273
+ 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;
2274
+ };
2275
+ linkType: "CREATION" | "EDIT_SUGGESTION";
2276
+ creator: {
1907
2277
  id: string;
2278
+ createdAt: string;
1908
2279
  updatedAt: string;
2280
+ firstName: string;
2281
+ lastName: string;
2282
+ email: string;
2283
+ phoneNumbers: {
2284
+ id: string;
2285
+ phoneNumber: string;
2286
+ isPrimary: boolean;
2287
+ description?: string | null | undefined;
2288
+ }[];
1909
2289
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1910
2290
  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;
1911
2291
  };
1912
2292
  suggestedChanges?: Record<string, unknown> | null | undefined;
1913
2293
  appliedChanges?: Record<string, unknown> | null | undefined;
1914
2294
  }, {
1915
- createdAt: string | Date;
1916
2295
  id: string;
2296
+ createdAt: string | Date;
1917
2297
  updatedAt: string | Date;
1918
2298
  agentId: string;
1919
- agent: {
1920
- lastName: string;
1921
- firstName: string;
1922
- email: string;
1923
- phone: string;
1924
- createdAt: string | Date;
1925
- id: string;
1926
- updatedAt: string | Date;
1927
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1928
- 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;
1929
- };
1930
- clientId: string;
1931
2299
  client: {
1932
- createdAt: string | Date;
1933
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1934
2300
  id: string;
2301
+ status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2302
+ createdAt: string | Date;
1935
2303
  updatedAt: string | Date;
1936
2304
  name: string;
1937
2305
  crn: string | null;
@@ -1940,25 +2308,47 @@ export declare const agentClientLinksContract: {
1940
2308
  director: string;
1941
2309
  blacklistReason?: string | null | undefined;
1942
2310
  lastUpdatedBy?: {
1943
- lastName: string;
2311
+ id: string;
1944
2312
  firstName: string;
2313
+ lastName: string;
1945
2314
  email: string;
1946
- id: string;
1947
2315
  } | null | undefined;
1948
2316
  agentClientLinks?: {
1949
2317
  agentId: string;
1950
2318
  } | null | undefined;
1951
2319
  };
1952
- linkType: "CREATION" | "EDIT_SUGGESTION";
2320
+ clientId: string;
1953
2321
  createdBy: string;
1954
- creator: {
1955
- lastName: string;
2322
+ agent: {
2323
+ id: string;
2324
+ createdAt: string | Date;
2325
+ updatedAt: string | Date;
1956
2326
  firstName: string;
2327
+ lastName: string;
1957
2328
  email: string;
1958
- phone: string;
1959
- createdAt: string | Date;
2329
+ phoneNumbers?: {
2330
+ id: string;
2331
+ phoneNumber: string;
2332
+ description?: string | null | undefined;
2333
+ isPrimary?: boolean | undefined;
2334
+ }[] | undefined;
2335
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
2336
+ 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;
2337
+ };
2338
+ linkType: "CREATION" | "EDIT_SUGGESTION";
2339
+ creator: {
1960
2340
  id: string;
2341
+ createdAt: string | Date;
1961
2342
  updatedAt: string | Date;
2343
+ firstName: string;
2344
+ lastName: string;
2345
+ email: string;
2346
+ phoneNumbers?: {
2347
+ id: string;
2348
+ phoneNumber: string;
2349
+ description?: string | null | undefined;
2350
+ isPrimary?: boolean | undefined;
2351
+ }[] | undefined;
1962
2352
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
1963
2353
  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;
1964
2354
  };