@dakkitor/api-contracts 1.1.42 → 1.1.45

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.
@@ -7,8 +7,9 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
7
7
  client: z.ZodObject<{
8
8
  id: z.ZodString;
9
9
  name: z.ZodString;
10
- crn: z.ZodString;
10
+ crn: z.ZodNullable<z.ZodString>;
11
11
  govLink: z.ZodString;
12
+ soleTrader: z.ZodBoolean;
12
13
  status: z.ZodEnum<["APPROVED", "PENDING_VERIFICATION", "BLACKLISTED"]>;
13
14
  director: z.ZodString;
14
15
  blacklistReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -18,15 +19,15 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
18
19
  lastName: z.ZodString;
19
20
  email: z.ZodString;
20
21
  }, "strip", z.ZodTypeAny, {
21
- lastName: string;
22
+ id: string;
22
23
  firstName: string;
24
+ lastName: string;
23
25
  email: string;
24
- id: string;
25
26
  }, {
26
- lastName: string;
27
+ id: string;
27
28
  firstName: string;
29
+ lastName: string;
28
30
  email: string;
29
- id: string;
30
31
  }>>>;
31
32
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
32
33
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -38,39 +39,41 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
38
39
  agentId: string;
39
40
  }>>>;
40
41
  }, "strip", z.ZodTypeAny, {
41
- createdAt: string;
42
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
43
42
  id: string;
44
- updatedAt: string;
43
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
45
44
  name: string;
46
- crn: string;
45
+ crn: string | null;
47
46
  govLink: string;
47
+ soleTrader: boolean;
48
48
  director: string;
49
+ createdAt: string;
50
+ updatedAt: string;
49
51
  blacklistReason?: string | null | undefined;
50
52
  lastUpdatedBy?: {
51
- lastName: string;
53
+ id: string;
52
54
  firstName: string;
55
+ lastName: string;
53
56
  email: string;
54
- id: string;
55
57
  } | null | undefined;
56
58
  agentClientLinks?: {
57
59
  agentId: string;
58
60
  } | null | undefined;
59
61
  }, {
60
- createdAt: string | Date;
61
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
62
62
  id: string;
63
- updatedAt: string | Date;
63
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
64
64
  name: string;
65
- crn: string;
65
+ crn: string | null;
66
66
  govLink: string;
67
+ soleTrader: boolean;
67
68
  director: string;
69
+ createdAt: string | Date;
70
+ updatedAt: string | Date;
68
71
  blacklistReason?: string | null | undefined;
69
72
  lastUpdatedBy?: {
70
- lastName: string;
73
+ id: string;
71
74
  firstName: string;
75
+ lastName: string;
72
76
  email: string;
73
- id: string;
74
77
  } | null | undefined;
75
78
  agentClientLinks?: {
76
79
  agentId: string;
@@ -88,23 +91,23 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
88
91
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
89
92
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
90
93
  }, "strip", z.ZodTypeAny, {
91
- lastName: string;
94
+ id: string;
92
95
  firstName: string;
96
+ lastName: string;
93
97
  email: string;
94
- phone: string;
95
98
  createdAt: string;
96
- id: string;
97
99
  updatedAt: string;
100
+ phone: string;
98
101
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
99
102
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
100
103
  }, {
101
- lastName: string;
104
+ id: string;
102
105
  firstName: string;
106
+ lastName: string;
103
107
  email: string;
104
- phone: string;
105
108
  createdAt: string | Date;
106
- id: string;
107
109
  updatedAt: string | Date;
110
+ phone: string;
108
111
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
109
112
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
110
113
  }>;
@@ -123,127 +126,129 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
123
126
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
124
127
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
125
128
  }, "strip", z.ZodTypeAny, {
126
- lastName: string;
129
+ id: string;
127
130
  firstName: string;
131
+ lastName: string;
128
132
  email: string;
129
- phone: string;
130
133
  createdAt: string;
131
- id: string;
132
134
  updatedAt: string;
135
+ phone: string;
133
136
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
134
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;
135
138
  }, {
136
- lastName: string;
139
+ id: string;
137
140
  firstName: string;
141
+ lastName: string;
138
142
  email: string;
139
- phone: string;
140
143
  createdAt: string | Date;
141
- id: string;
142
144
  updatedAt: string | Date;
145
+ phone: string;
143
146
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
144
147
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
145
148
  }>;
146
149
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
147
150
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
148
151
  }, "strip", z.ZodTypeAny, {
149
- createdAt: string;
150
152
  id: string;
153
+ createdAt: string;
151
154
  updatedAt: string;
152
155
  agentId: string;
153
- agent: {
154
- lastName: string;
155
- firstName: string;
156
- email: string;
157
- phone: string;
158
- createdAt: string;
159
- id: string;
160
- updatedAt: string;
161
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
162
- office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
163
- };
164
156
  clientId: string;
165
157
  client: {
166
- createdAt: string;
167
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
168
158
  id: string;
169
- updatedAt: string;
159
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
170
160
  name: string;
171
- crn: string;
161
+ crn: string | null;
172
162
  govLink: string;
163
+ soleTrader: boolean;
173
164
  director: string;
165
+ createdAt: string;
166
+ updatedAt: string;
174
167
  blacklistReason?: string | null | undefined;
175
168
  lastUpdatedBy?: {
176
- lastName: string;
169
+ id: string;
177
170
  firstName: string;
171
+ lastName: string;
178
172
  email: string;
179
- id: string;
180
173
  } | null | undefined;
181
174
  agentClientLinks?: {
182
175
  agentId: string;
183
176
  } | null | undefined;
184
177
  };
185
- linkType: "CREATION" | "EDIT_SUGGESTION";
186
178
  createdBy: string;
187
- creator: {
188
- lastName: string;
179
+ agent: {
180
+ id: string;
189
181
  firstName: string;
182
+ lastName: string;
190
183
  email: string;
191
- phone: string;
192
184
  createdAt: string;
185
+ updatedAt: string;
186
+ phone: string;
187
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
188
+ office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
189
+ };
190
+ linkType: "CREATION" | "EDIT_SUGGESTION";
191
+ creator: {
193
192
  id: string;
193
+ firstName: string;
194
+ lastName: string;
195
+ email: string;
196
+ createdAt: string;
194
197
  updatedAt: string;
198
+ phone: string;
195
199
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
196
200
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
197
201
  };
198
202
  suggestedChanges?: Record<string, unknown> | null | undefined;
199
203
  appliedChanges?: Record<string, unknown> | null | undefined;
200
204
  }, {
201
- createdAt: string | Date;
202
205
  id: string;
206
+ createdAt: string | Date;
203
207
  updatedAt: string | Date;
204
208
  agentId: string;
205
- agent: {
206
- lastName: string;
207
- firstName: string;
208
- email: string;
209
- phone: string;
210
- createdAt: string | Date;
211
- id: string;
212
- updatedAt: string | Date;
213
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
214
- office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
215
- };
216
209
  clientId: string;
217
210
  client: {
218
- createdAt: string | Date;
219
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
220
211
  id: string;
221
- updatedAt: string | Date;
212
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
222
213
  name: string;
223
- crn: string;
214
+ crn: string | null;
224
215
  govLink: string;
216
+ soleTrader: boolean;
225
217
  director: string;
218
+ createdAt: string | Date;
219
+ updatedAt: string | Date;
226
220
  blacklistReason?: string | null | undefined;
227
221
  lastUpdatedBy?: {
228
- lastName: string;
222
+ id: string;
229
223
  firstName: string;
224
+ lastName: string;
230
225
  email: string;
231
- id: string;
232
226
  } | null | undefined;
233
227
  agentClientLinks?: {
234
228
  agentId: string;
235
229
  } | null | undefined;
236
230
  };
237
- linkType: "CREATION" | "EDIT_SUGGESTION";
238
231
  createdBy: string;
239
- creator: {
240
- lastName: string;
232
+ agent: {
233
+ id: string;
241
234
  firstName: string;
235
+ lastName: string;
242
236
  email: string;
243
- phone: string;
244
237
  createdAt: string | Date;
238
+ updatedAt: string | Date;
239
+ phone: string;
240
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
241
+ office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
242
+ };
243
+ linkType: "CREATION" | "EDIT_SUGGESTION";
244
+ creator: {
245
245
  id: string;
246
+ firstName: string;
247
+ lastName: string;
248
+ email: string;
249
+ createdAt: string | Date;
246
250
  updatedAt: string | Date;
251
+ phone: string;
247
252
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
248
253
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
249
254
  };
@@ -268,11 +273,11 @@ export declare const FilterAgentClientLinkSchema: z.ZodObject<{
268
273
  clientId?: string | undefined;
269
274
  linkType?: "CREATION" | "EDIT_SUGGESTION" | undefined;
270
275
  }, {
276
+ agentId?: string | undefined;
271
277
  limit?: number | undefined;
272
278
  page?: number | undefined;
273
279
  sortBy?: "createdAt" | undefined;
274
280
  sortOrder?: "ASC" | "DESC" | undefined;
275
- agentId?: string | undefined;
276
281
  clientId?: string | undefined;
277
282
  linkType?: "CREATION" | "EDIT_SUGGESTION" | undefined;
278
283
  }>;
@@ -290,8 +295,9 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
290
295
  client: z.ZodObject<{
291
296
  id: z.ZodString;
292
297
  name: z.ZodString;
293
- crn: z.ZodString;
298
+ crn: z.ZodNullable<z.ZodString>;
294
299
  govLink: z.ZodString;
300
+ soleTrader: z.ZodBoolean;
295
301
  status: z.ZodEnum<["APPROVED", "PENDING_VERIFICATION", "BLACKLISTED"]>;
296
302
  director: z.ZodString;
297
303
  blacklistReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -301,15 +307,15 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
301
307
  lastName: z.ZodString;
302
308
  email: z.ZodString;
303
309
  }, "strip", z.ZodTypeAny, {
304
- lastName: string;
310
+ id: string;
305
311
  firstName: string;
312
+ lastName: string;
306
313
  email: string;
307
- id: string;
308
314
  }, {
309
- lastName: string;
315
+ id: string;
310
316
  firstName: string;
317
+ lastName: string;
311
318
  email: string;
312
- id: string;
313
319
  }>>>;
314
320
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
315
321
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -321,39 +327,41 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
321
327
  agentId: string;
322
328
  }>>>;
323
329
  }, "strip", z.ZodTypeAny, {
324
- createdAt: string;
325
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
326
330
  id: string;
327
- updatedAt: string;
331
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
328
332
  name: string;
329
- crn: string;
333
+ crn: string | null;
330
334
  govLink: string;
335
+ soleTrader: boolean;
331
336
  director: string;
337
+ createdAt: string;
338
+ updatedAt: string;
332
339
  blacklistReason?: string | null | undefined;
333
340
  lastUpdatedBy?: {
334
- lastName: string;
341
+ id: string;
335
342
  firstName: string;
343
+ lastName: string;
336
344
  email: string;
337
- id: string;
338
345
  } | null | undefined;
339
346
  agentClientLinks?: {
340
347
  agentId: string;
341
348
  } | null | undefined;
342
349
  }, {
343
- createdAt: string | Date;
344
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
345
350
  id: string;
346
- updatedAt: string | Date;
351
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
347
352
  name: string;
348
- crn: string;
353
+ crn: string | null;
349
354
  govLink: string;
355
+ soleTrader: boolean;
350
356
  director: string;
357
+ createdAt: string | Date;
358
+ updatedAt: string | Date;
351
359
  blacklistReason?: string | null | undefined;
352
360
  lastUpdatedBy?: {
353
- lastName: string;
361
+ id: string;
354
362
  firstName: string;
363
+ lastName: string;
355
364
  email: string;
356
- id: string;
357
365
  } | null | undefined;
358
366
  agentClientLinks?: {
359
367
  agentId: string;
@@ -371,23 +379,23 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
371
379
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
372
380
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
373
381
  }, "strip", z.ZodTypeAny, {
374
- lastName: string;
382
+ id: string;
375
383
  firstName: string;
384
+ lastName: string;
376
385
  email: string;
377
- phone: string;
378
386
  createdAt: string;
379
- id: string;
380
387
  updatedAt: string;
388
+ phone: string;
381
389
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
382
390
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
383
391
  }, {
384
- lastName: string;
392
+ id: string;
385
393
  firstName: string;
394
+ lastName: string;
386
395
  email: string;
387
- phone: string;
388
396
  createdAt: string | Date;
389
- id: string;
390
397
  updatedAt: string | Date;
398
+ phone: string;
391
399
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
392
400
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
393
401
  }>;
@@ -406,127 +414,129 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
406
414
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
407
415
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
408
416
  }, "strip", z.ZodTypeAny, {
409
- lastName: string;
417
+ id: string;
410
418
  firstName: string;
419
+ lastName: string;
411
420
  email: string;
412
- phone: string;
413
421
  createdAt: string;
414
- id: string;
415
422
  updatedAt: string;
423
+ phone: string;
416
424
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
417
425
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
418
426
  }, {
419
- lastName: string;
427
+ id: string;
420
428
  firstName: string;
429
+ lastName: string;
421
430
  email: string;
422
- phone: string;
423
431
  createdAt: string | Date;
424
- id: string;
425
432
  updatedAt: string | Date;
433
+ phone: string;
426
434
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
427
435
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
428
436
  }>;
429
437
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
430
438
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
431
439
  }, "strip", z.ZodTypeAny, {
432
- createdAt: string;
433
440
  id: string;
441
+ createdAt: string;
434
442
  updatedAt: string;
435
443
  agentId: string;
436
- agent: {
437
- lastName: string;
438
- firstName: string;
439
- email: string;
440
- phone: string;
441
- createdAt: string;
442
- id: string;
443
- updatedAt: string;
444
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
445
- office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
446
- };
447
444
  clientId: string;
448
445
  client: {
449
- createdAt: string;
450
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
451
446
  id: string;
452
- updatedAt: string;
447
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
453
448
  name: string;
454
- crn: string;
449
+ crn: string | null;
455
450
  govLink: string;
451
+ soleTrader: boolean;
456
452
  director: string;
453
+ createdAt: string;
454
+ updatedAt: string;
457
455
  blacklistReason?: string | null | undefined;
458
456
  lastUpdatedBy?: {
459
- lastName: string;
457
+ id: string;
460
458
  firstName: string;
459
+ lastName: string;
461
460
  email: string;
462
- id: string;
463
461
  } | null | undefined;
464
462
  agentClientLinks?: {
465
463
  agentId: string;
466
464
  } | null | undefined;
467
465
  };
468
- linkType: "CREATION" | "EDIT_SUGGESTION";
469
466
  createdBy: string;
470
- creator: {
471
- lastName: string;
467
+ agent: {
468
+ id: string;
472
469
  firstName: string;
470
+ lastName: string;
473
471
  email: string;
474
- phone: string;
475
472
  createdAt: string;
473
+ updatedAt: string;
474
+ phone: string;
475
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
476
+ office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
477
+ };
478
+ linkType: "CREATION" | "EDIT_SUGGESTION";
479
+ creator: {
476
480
  id: string;
481
+ firstName: string;
482
+ lastName: string;
483
+ email: string;
484
+ createdAt: string;
477
485
  updatedAt: string;
486
+ phone: string;
478
487
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
479
488
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
480
489
  };
481
490
  suggestedChanges?: Record<string, unknown> | null | undefined;
482
491
  appliedChanges?: Record<string, unknown> | null | undefined;
483
492
  }, {
484
- createdAt: string | Date;
485
493
  id: string;
494
+ createdAt: string | Date;
486
495
  updatedAt: string | Date;
487
496
  agentId: string;
488
- agent: {
489
- lastName: string;
490
- firstName: string;
491
- email: string;
492
- phone: string;
493
- createdAt: string | Date;
494
- id: string;
495
- updatedAt: string | Date;
496
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
497
- office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
498
- };
499
497
  clientId: string;
500
498
  client: {
501
- createdAt: string | Date;
502
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
503
499
  id: string;
504
- updatedAt: string | Date;
500
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
505
501
  name: string;
506
- crn: string;
502
+ crn: string | null;
507
503
  govLink: string;
504
+ soleTrader: boolean;
508
505
  director: string;
506
+ createdAt: string | Date;
507
+ updatedAt: string | Date;
509
508
  blacklistReason?: string | null | undefined;
510
509
  lastUpdatedBy?: {
511
- lastName: string;
510
+ id: string;
512
511
  firstName: string;
512
+ lastName: string;
513
513
  email: string;
514
- id: string;
515
514
  } | null | undefined;
516
515
  agentClientLinks?: {
517
516
  agentId: string;
518
517
  } | null | undefined;
519
518
  };
520
- linkType: "CREATION" | "EDIT_SUGGESTION";
521
519
  createdBy: string;
522
- creator: {
523
- lastName: string;
520
+ agent: {
521
+ id: string;
524
522
  firstName: string;
523
+ lastName: string;
525
524
  email: string;
526
- phone: string;
527
525
  createdAt: string | Date;
526
+ updatedAt: string | Date;
527
+ phone: string;
528
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
529
+ office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
530
+ };
531
+ linkType: "CREATION" | "EDIT_SUGGESTION";
532
+ creator: {
528
533
  id: string;
534
+ firstName: string;
535
+ lastName: string;
536
+ email: string;
537
+ createdAt: string | Date;
529
538
  updatedAt: string | Date;
539
+ phone: string;
530
540
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
531
541
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
532
542
  };
@@ -541,52 +551,53 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
541
551
  }, "strip", z.ZodTypeAny, {
542
552
  limit: number;
543
553
  items: {
544
- createdAt: string;
545
554
  id: string;
555
+ createdAt: string;
546
556
  updatedAt: string;
547
557
  agentId: string;
548
- agent: {
549
- lastName: string;
550
- firstName: string;
551
- email: string;
552
- phone: string;
553
- createdAt: string;
554
- id: string;
555
- updatedAt: string;
556
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
557
- office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
558
- };
559
558
  clientId: string;
560
559
  client: {
561
- createdAt: string;
562
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
563
560
  id: string;
564
- updatedAt: string;
561
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
565
562
  name: string;
566
- crn: string;
563
+ crn: string | null;
567
564
  govLink: string;
565
+ soleTrader: boolean;
568
566
  director: string;
567
+ createdAt: string;
568
+ updatedAt: string;
569
569
  blacklistReason?: string | null | undefined;
570
570
  lastUpdatedBy?: {
571
- lastName: string;
571
+ id: string;
572
572
  firstName: string;
573
+ lastName: string;
573
574
  email: string;
574
- id: string;
575
575
  } | null | undefined;
576
576
  agentClientLinks?: {
577
577
  agentId: string;
578
578
  } | null | undefined;
579
579
  };
580
- linkType: "CREATION" | "EDIT_SUGGESTION";
581
580
  createdBy: string;
582
- creator: {
583
- lastName: string;
581
+ agent: {
582
+ id: string;
584
583
  firstName: string;
584
+ lastName: string;
585
585
  email: string;
586
- phone: string;
587
586
  createdAt: string;
587
+ updatedAt: string;
588
+ phone: string;
589
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
590
+ office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
591
+ };
592
+ linkType: "CREATION" | "EDIT_SUGGESTION";
593
+ creator: {
588
594
  id: string;
595
+ firstName: string;
596
+ lastName: string;
597
+ email: string;
598
+ createdAt: string;
589
599
  updatedAt: string;
600
+ phone: string;
590
601
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
591
602
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
592
603
  };
@@ -600,52 +611,53 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
600
611
  }, {
601
612
  limit: number;
602
613
  items: {
603
- createdAt: string | Date;
604
614
  id: string;
615
+ createdAt: string | Date;
605
616
  updatedAt: string | Date;
606
617
  agentId: string;
607
- agent: {
608
- lastName: string;
609
- firstName: string;
610
- email: string;
611
- phone: string;
612
- createdAt: string | Date;
613
- id: string;
614
- updatedAt: string | Date;
615
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
616
- office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
617
- };
618
618
  clientId: string;
619
619
  client: {
620
- createdAt: string | Date;
621
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
622
620
  id: string;
623
- updatedAt: string | Date;
621
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
624
622
  name: string;
625
- crn: string;
623
+ crn: string | null;
626
624
  govLink: string;
625
+ soleTrader: boolean;
627
626
  director: string;
627
+ createdAt: string | Date;
628
+ updatedAt: string | Date;
628
629
  blacklistReason?: string | null | undefined;
629
630
  lastUpdatedBy?: {
630
- lastName: string;
631
+ id: string;
631
632
  firstName: string;
633
+ lastName: string;
632
634
  email: string;
633
- id: string;
634
635
  } | null | undefined;
635
636
  agentClientLinks?: {
636
637
  agentId: string;
637
638
  } | null | undefined;
638
639
  };
640
+ createdBy: string;
641
+ agent: {
642
+ id: string;
643
+ firstName: string;
644
+ lastName: string;
645
+ email: string;
646
+ createdAt: string | Date;
647
+ updatedAt: string | Date;
648
+ phone: string;
649
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
650
+ office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
651
+ };
639
652
  linkType: "CREATION" | "EDIT_SUGGESTION";
640
- createdBy: string;
641
653
  creator: {
642
- lastName: string;
654
+ id: string;
643
655
  firstName: string;
656
+ lastName: string;
644
657
  email: string;
645
- phone: string;
646
658
  createdAt: string | Date;
647
- id: string;
648
659
  updatedAt: string | Date;
660
+ phone: string;
649
661
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
650
662
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
651
663
  };
@@ -686,11 +698,11 @@ export declare const agentClientLinksContract: {
686
698
  clientId?: string | undefined;
687
699
  linkType?: "CREATION" | "EDIT_SUGGESTION" | undefined;
688
700
  }, {
701
+ agentId?: string | undefined;
689
702
  limit?: number | undefined;
690
703
  page?: number | undefined;
691
704
  sortBy?: "createdAt" | undefined;
692
705
  sortOrder?: "ASC" | "DESC" | undefined;
693
- agentId?: string | undefined;
694
706
  clientId?: string | undefined;
695
707
  linkType?: "CREATION" | "EDIT_SUGGESTION" | undefined;
696
708
  }>;
@@ -805,8 +817,9 @@ export declare const agentClientLinksContract: {
805
817
  client: z.ZodObject<{
806
818
  id: z.ZodString;
807
819
  name: z.ZodString;
808
- crn: z.ZodString;
820
+ crn: z.ZodNullable<z.ZodString>;
809
821
  govLink: z.ZodString;
822
+ soleTrader: z.ZodBoolean;
810
823
  status: z.ZodEnum<["APPROVED", "PENDING_VERIFICATION", "BLACKLISTED"]>;
811
824
  director: z.ZodString;
812
825
  blacklistReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -816,15 +829,15 @@ export declare const agentClientLinksContract: {
816
829
  lastName: z.ZodString;
817
830
  email: z.ZodString;
818
831
  }, "strip", z.ZodTypeAny, {
819
- lastName: string;
832
+ id: string;
820
833
  firstName: string;
834
+ lastName: string;
821
835
  email: string;
822
- id: string;
823
836
  }, {
824
- lastName: string;
837
+ id: string;
825
838
  firstName: string;
839
+ lastName: string;
826
840
  email: string;
827
- id: string;
828
841
  }>>>;
829
842
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
830
843
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -836,39 +849,41 @@ export declare const agentClientLinksContract: {
836
849
  agentId: string;
837
850
  }>>>;
838
851
  }, "strip", z.ZodTypeAny, {
839
- createdAt: string;
840
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
841
852
  id: string;
842
- updatedAt: string;
853
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
843
854
  name: string;
844
- crn: string;
855
+ crn: string | null;
845
856
  govLink: string;
857
+ soleTrader: boolean;
846
858
  director: string;
859
+ createdAt: string;
860
+ updatedAt: string;
847
861
  blacklistReason?: string | null | undefined;
848
862
  lastUpdatedBy?: {
849
- lastName: string;
863
+ id: string;
850
864
  firstName: string;
865
+ lastName: string;
851
866
  email: string;
852
- id: string;
853
867
  } | null | undefined;
854
868
  agentClientLinks?: {
855
869
  agentId: string;
856
870
  } | null | undefined;
857
871
  }, {
858
- createdAt: string | Date;
859
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
860
872
  id: string;
861
- updatedAt: string | Date;
873
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
862
874
  name: string;
863
- crn: string;
875
+ crn: string | null;
864
876
  govLink: string;
877
+ soleTrader: boolean;
865
878
  director: string;
879
+ createdAt: string | Date;
880
+ updatedAt: string | Date;
866
881
  blacklistReason?: string | null | undefined;
867
882
  lastUpdatedBy?: {
868
- lastName: string;
883
+ id: string;
869
884
  firstName: string;
885
+ lastName: string;
870
886
  email: string;
871
- id: string;
872
887
  } | null | undefined;
873
888
  agentClientLinks?: {
874
889
  agentId: string;
@@ -886,23 +901,23 @@ export declare const agentClientLinksContract: {
886
901
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
887
902
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
888
903
  }, "strip", z.ZodTypeAny, {
889
- lastName: string;
904
+ id: string;
890
905
  firstName: string;
906
+ lastName: string;
891
907
  email: string;
892
- phone: string;
893
908
  createdAt: string;
894
- id: string;
895
909
  updatedAt: string;
910
+ phone: string;
896
911
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
897
912
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
898
913
  }, {
899
- lastName: string;
914
+ id: string;
900
915
  firstName: string;
916
+ lastName: string;
901
917
  email: string;
902
- phone: string;
903
918
  createdAt: string | Date;
904
- id: string;
905
919
  updatedAt: string | Date;
920
+ phone: string;
906
921
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
907
922
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
908
923
  }>;
@@ -921,127 +936,129 @@ export declare const agentClientLinksContract: {
921
936
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
922
937
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
923
938
  }, "strip", z.ZodTypeAny, {
924
- lastName: string;
939
+ id: string;
925
940
  firstName: string;
941
+ lastName: string;
926
942
  email: string;
927
- phone: string;
928
943
  createdAt: string;
929
- id: string;
930
944
  updatedAt: string;
945
+ phone: string;
931
946
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
932
947
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
933
948
  }, {
934
- lastName: string;
949
+ id: string;
935
950
  firstName: string;
951
+ lastName: string;
936
952
  email: string;
937
- phone: string;
938
953
  createdAt: string | Date;
939
- id: string;
940
954
  updatedAt: string | Date;
955
+ phone: string;
941
956
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
942
957
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
943
958
  }>;
944
959
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
945
960
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
946
961
  }, "strip", z.ZodTypeAny, {
947
- createdAt: string;
948
962
  id: string;
963
+ createdAt: string;
949
964
  updatedAt: string;
950
965
  agentId: string;
951
- agent: {
952
- lastName: string;
953
- firstName: string;
954
- email: string;
955
- phone: string;
956
- createdAt: string;
957
- id: string;
958
- updatedAt: string;
959
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
960
- office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
961
- };
962
966
  clientId: string;
963
967
  client: {
964
- createdAt: string;
965
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
966
968
  id: string;
967
- updatedAt: string;
969
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
968
970
  name: string;
969
- crn: string;
971
+ crn: string | null;
970
972
  govLink: string;
973
+ soleTrader: boolean;
971
974
  director: string;
975
+ createdAt: string;
976
+ updatedAt: string;
972
977
  blacklistReason?: string | null | undefined;
973
978
  lastUpdatedBy?: {
974
- lastName: string;
979
+ id: string;
975
980
  firstName: string;
981
+ lastName: string;
976
982
  email: string;
977
- id: string;
978
983
  } | null | undefined;
979
984
  agentClientLinks?: {
980
985
  agentId: string;
981
986
  } | null | undefined;
982
987
  };
983
- linkType: "CREATION" | "EDIT_SUGGESTION";
984
988
  createdBy: string;
985
- creator: {
986
- lastName: string;
989
+ agent: {
990
+ id: string;
987
991
  firstName: string;
992
+ lastName: string;
988
993
  email: string;
989
- phone: string;
990
994
  createdAt: string;
995
+ updatedAt: string;
996
+ phone: string;
997
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
998
+ office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
999
+ };
1000
+ linkType: "CREATION" | "EDIT_SUGGESTION";
1001
+ creator: {
991
1002
  id: string;
1003
+ firstName: string;
1004
+ lastName: string;
1005
+ email: string;
1006
+ createdAt: string;
992
1007
  updatedAt: string;
1008
+ phone: string;
993
1009
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
994
1010
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
995
1011
  };
996
1012
  suggestedChanges?: Record<string, unknown> | null | undefined;
997
1013
  appliedChanges?: Record<string, unknown> | null | undefined;
998
1014
  }, {
999
- createdAt: string | Date;
1000
1015
  id: string;
1016
+ createdAt: string | Date;
1001
1017
  updatedAt: string | Date;
1002
1018
  agentId: string;
1003
- agent: {
1004
- lastName: string;
1005
- firstName: string;
1006
- email: string;
1007
- phone: string;
1008
- createdAt: string | Date;
1009
- id: string;
1010
- updatedAt: string | Date;
1011
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1012
- office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1013
- };
1014
1019
  clientId: string;
1015
1020
  client: {
1016
- createdAt: string | Date;
1017
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1018
1021
  id: string;
1019
- updatedAt: string | Date;
1022
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1020
1023
  name: string;
1021
- crn: string;
1024
+ crn: string | null;
1022
1025
  govLink: string;
1026
+ soleTrader: boolean;
1023
1027
  director: string;
1028
+ createdAt: string | Date;
1029
+ updatedAt: string | Date;
1024
1030
  blacklistReason?: string | null | undefined;
1025
1031
  lastUpdatedBy?: {
1026
- lastName: string;
1032
+ id: string;
1027
1033
  firstName: string;
1034
+ lastName: string;
1028
1035
  email: string;
1029
- id: string;
1030
1036
  } | null | undefined;
1031
1037
  agentClientLinks?: {
1032
1038
  agentId: string;
1033
1039
  } | null | undefined;
1034
1040
  };
1035
- linkType: "CREATION" | "EDIT_SUGGESTION";
1036
1041
  createdBy: string;
1037
- creator: {
1038
- lastName: string;
1042
+ agent: {
1043
+ id: string;
1039
1044
  firstName: string;
1045
+ lastName: string;
1040
1046
  email: string;
1041
- phone: string;
1042
1047
  createdAt: string | Date;
1048
+ updatedAt: string | Date;
1049
+ phone: string;
1050
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1051
+ office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1052
+ };
1053
+ linkType: "CREATION" | "EDIT_SUGGESTION";
1054
+ creator: {
1043
1055
  id: string;
1056
+ firstName: string;
1057
+ lastName: string;
1058
+ email: string;
1059
+ createdAt: string | Date;
1044
1060
  updatedAt: string | Date;
1061
+ phone: string;
1045
1062
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1046
1063
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1047
1064
  };
@@ -1056,52 +1073,53 @@ export declare const agentClientLinksContract: {
1056
1073
  }, "strip", z.ZodTypeAny, {
1057
1074
  limit: number;
1058
1075
  items: {
1059
- createdAt: string;
1060
1076
  id: string;
1077
+ createdAt: string;
1061
1078
  updatedAt: string;
1062
1079
  agentId: string;
1063
- agent: {
1064
- lastName: string;
1065
- firstName: string;
1066
- email: string;
1067
- phone: string;
1068
- createdAt: string;
1069
- id: string;
1070
- updatedAt: string;
1071
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1072
- office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1073
- };
1074
1080
  clientId: string;
1075
1081
  client: {
1076
- createdAt: string;
1077
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1078
1082
  id: string;
1079
- updatedAt: string;
1083
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1080
1084
  name: string;
1081
- crn: string;
1085
+ crn: string | null;
1082
1086
  govLink: string;
1087
+ soleTrader: boolean;
1083
1088
  director: string;
1089
+ createdAt: string;
1090
+ updatedAt: string;
1084
1091
  blacklistReason?: string | null | undefined;
1085
1092
  lastUpdatedBy?: {
1086
- lastName: string;
1093
+ id: string;
1087
1094
  firstName: string;
1095
+ lastName: string;
1088
1096
  email: string;
1089
- id: string;
1090
1097
  } | null | undefined;
1091
1098
  agentClientLinks?: {
1092
1099
  agentId: string;
1093
1100
  } | null | undefined;
1094
1101
  };
1095
- linkType: "CREATION" | "EDIT_SUGGESTION";
1096
1102
  createdBy: string;
1097
- creator: {
1098
- lastName: string;
1103
+ agent: {
1104
+ id: string;
1099
1105
  firstName: string;
1106
+ lastName: string;
1100
1107
  email: string;
1101
- phone: string;
1102
1108
  createdAt: string;
1109
+ updatedAt: string;
1110
+ phone: string;
1111
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1112
+ office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1113
+ };
1114
+ linkType: "CREATION" | "EDIT_SUGGESTION";
1115
+ creator: {
1103
1116
  id: string;
1117
+ firstName: string;
1118
+ lastName: string;
1119
+ email: string;
1120
+ createdAt: string;
1104
1121
  updatedAt: string;
1122
+ phone: string;
1105
1123
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1106
1124
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1107
1125
  };
@@ -1115,52 +1133,53 @@ export declare const agentClientLinksContract: {
1115
1133
  }, {
1116
1134
  limit: number;
1117
1135
  items: {
1118
- createdAt: string | Date;
1119
1136
  id: string;
1137
+ createdAt: string | Date;
1120
1138
  updatedAt: string | Date;
1121
1139
  agentId: string;
1122
- agent: {
1123
- lastName: string;
1124
- firstName: string;
1125
- email: string;
1126
- phone: string;
1127
- createdAt: string | Date;
1128
- id: string;
1129
- updatedAt: string | Date;
1130
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1131
- office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1132
- };
1133
1140
  clientId: string;
1134
1141
  client: {
1135
- createdAt: string | Date;
1136
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1137
1142
  id: string;
1138
- updatedAt: string | Date;
1143
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1139
1144
  name: string;
1140
- crn: string;
1145
+ crn: string | null;
1141
1146
  govLink: string;
1147
+ soleTrader: boolean;
1142
1148
  director: string;
1149
+ createdAt: string | Date;
1150
+ updatedAt: string | Date;
1143
1151
  blacklistReason?: string | null | undefined;
1144
1152
  lastUpdatedBy?: {
1145
- lastName: string;
1153
+ id: string;
1146
1154
  firstName: string;
1155
+ lastName: string;
1147
1156
  email: string;
1148
- id: string;
1149
1157
  } | null | undefined;
1150
1158
  agentClientLinks?: {
1151
1159
  agentId: string;
1152
1160
  } | null | undefined;
1153
1161
  };
1154
- linkType: "CREATION" | "EDIT_SUGGESTION";
1155
1162
  createdBy: string;
1156
- creator: {
1157
- lastName: string;
1163
+ agent: {
1164
+ id: string;
1158
1165
  firstName: string;
1166
+ lastName: string;
1159
1167
  email: string;
1160
- phone: string;
1161
1168
  createdAt: string | Date;
1169
+ updatedAt: string | Date;
1170
+ phone: string;
1171
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1172
+ office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1173
+ };
1174
+ linkType: "CREATION" | "EDIT_SUGGESTION";
1175
+ creator: {
1162
1176
  id: string;
1177
+ firstName: string;
1178
+ lastName: string;
1179
+ email: string;
1180
+ createdAt: string | Date;
1163
1181
  updatedAt: string | Date;
1182
+ phone: string;
1164
1183
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1165
1184
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1166
1185
  };
@@ -1295,8 +1314,9 @@ export declare const agentClientLinksContract: {
1295
1314
  client: z.ZodObject<{
1296
1315
  id: z.ZodString;
1297
1316
  name: z.ZodString;
1298
- crn: z.ZodString;
1317
+ crn: z.ZodNullable<z.ZodString>;
1299
1318
  govLink: z.ZodString;
1319
+ soleTrader: z.ZodBoolean;
1300
1320
  status: z.ZodEnum<["APPROVED", "PENDING_VERIFICATION", "BLACKLISTED"]>;
1301
1321
  director: z.ZodString;
1302
1322
  blacklistReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -1306,15 +1326,15 @@ export declare const agentClientLinksContract: {
1306
1326
  lastName: z.ZodString;
1307
1327
  email: z.ZodString;
1308
1328
  }, "strip", z.ZodTypeAny, {
1309
- lastName: string;
1329
+ id: string;
1310
1330
  firstName: string;
1331
+ lastName: string;
1311
1332
  email: string;
1312
- id: string;
1313
1333
  }, {
1314
- lastName: string;
1334
+ id: string;
1315
1335
  firstName: string;
1336
+ lastName: string;
1316
1337
  email: string;
1317
- id: string;
1318
1338
  }>>>;
1319
1339
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1320
1340
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -1326,39 +1346,41 @@ export declare const agentClientLinksContract: {
1326
1346
  agentId: string;
1327
1347
  }>>>;
1328
1348
  }, "strip", z.ZodTypeAny, {
1329
- createdAt: string;
1330
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1331
1349
  id: string;
1332
- updatedAt: string;
1350
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1333
1351
  name: string;
1334
- crn: string;
1352
+ crn: string | null;
1335
1353
  govLink: string;
1354
+ soleTrader: boolean;
1336
1355
  director: string;
1356
+ createdAt: string;
1357
+ updatedAt: string;
1337
1358
  blacklistReason?: string | null | undefined;
1338
1359
  lastUpdatedBy?: {
1339
- lastName: string;
1360
+ id: string;
1340
1361
  firstName: string;
1362
+ lastName: string;
1341
1363
  email: string;
1342
- id: string;
1343
1364
  } | null | undefined;
1344
1365
  agentClientLinks?: {
1345
1366
  agentId: string;
1346
1367
  } | null | undefined;
1347
1368
  }, {
1348
- createdAt: string | Date;
1349
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1350
1369
  id: string;
1351
- updatedAt: string | Date;
1370
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1352
1371
  name: string;
1353
- crn: string;
1372
+ crn: string | null;
1354
1373
  govLink: string;
1374
+ soleTrader: boolean;
1355
1375
  director: string;
1376
+ createdAt: string | Date;
1377
+ updatedAt: string | Date;
1356
1378
  blacklistReason?: string | null | undefined;
1357
1379
  lastUpdatedBy?: {
1358
- lastName: string;
1380
+ id: string;
1359
1381
  firstName: string;
1382
+ lastName: string;
1360
1383
  email: string;
1361
- id: string;
1362
1384
  } | null | undefined;
1363
1385
  agentClientLinks?: {
1364
1386
  agentId: string;
@@ -1376,23 +1398,23 @@ export declare const agentClientLinksContract: {
1376
1398
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1377
1399
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1378
1400
  }, "strip", z.ZodTypeAny, {
1379
- lastName: string;
1401
+ id: string;
1380
1402
  firstName: string;
1403
+ lastName: string;
1381
1404
  email: string;
1382
- phone: string;
1383
1405
  createdAt: string;
1384
- id: string;
1385
1406
  updatedAt: string;
1407
+ phone: string;
1386
1408
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1387
1409
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1388
1410
  }, {
1389
- lastName: string;
1411
+ id: string;
1390
1412
  firstName: string;
1413
+ lastName: string;
1391
1414
  email: string;
1392
- phone: string;
1393
1415
  createdAt: string | Date;
1394
- id: string;
1395
1416
  updatedAt: string | Date;
1417
+ phone: string;
1396
1418
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1397
1419
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1398
1420
  }>;
@@ -1411,127 +1433,129 @@ export declare const agentClientLinksContract: {
1411
1433
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1412
1434
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1413
1435
  }, "strip", z.ZodTypeAny, {
1414
- lastName: string;
1436
+ id: string;
1415
1437
  firstName: string;
1438
+ lastName: string;
1416
1439
  email: string;
1417
- phone: string;
1418
1440
  createdAt: string;
1419
- id: string;
1420
1441
  updatedAt: string;
1442
+ phone: string;
1421
1443
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1422
1444
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1423
1445
  }, {
1424
- lastName: string;
1446
+ id: string;
1425
1447
  firstName: string;
1448
+ lastName: string;
1426
1449
  email: string;
1427
- phone: string;
1428
1450
  createdAt: string | Date;
1429
- id: string;
1430
1451
  updatedAt: string | Date;
1452
+ phone: string;
1431
1453
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1432
1454
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1433
1455
  }>;
1434
1456
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1435
1457
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1436
1458
  }, "strip", z.ZodTypeAny, {
1437
- createdAt: string;
1438
1459
  id: string;
1460
+ createdAt: string;
1439
1461
  updatedAt: string;
1440
1462
  agentId: string;
1441
- agent: {
1442
- lastName: string;
1443
- firstName: string;
1444
- email: string;
1445
- phone: string;
1446
- createdAt: string;
1447
- id: string;
1448
- updatedAt: string;
1449
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1450
- office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1451
- };
1452
1463
  clientId: string;
1453
1464
  client: {
1454
- createdAt: string;
1455
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1456
1465
  id: string;
1457
- updatedAt: string;
1466
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1458
1467
  name: string;
1459
- crn: string;
1468
+ crn: string | null;
1460
1469
  govLink: string;
1470
+ soleTrader: boolean;
1461
1471
  director: string;
1472
+ createdAt: string;
1473
+ updatedAt: string;
1462
1474
  blacklistReason?: string | null | undefined;
1463
1475
  lastUpdatedBy?: {
1464
- lastName: string;
1476
+ id: string;
1465
1477
  firstName: string;
1478
+ lastName: string;
1466
1479
  email: string;
1467
- id: string;
1468
1480
  } | null | undefined;
1469
1481
  agentClientLinks?: {
1470
1482
  agentId: string;
1471
1483
  } | null | undefined;
1472
1484
  };
1473
- linkType: "CREATION" | "EDIT_SUGGESTION";
1474
1485
  createdBy: string;
1475
- creator: {
1476
- lastName: string;
1486
+ agent: {
1487
+ id: string;
1477
1488
  firstName: string;
1489
+ lastName: string;
1478
1490
  email: string;
1479
- phone: string;
1480
1491
  createdAt: string;
1492
+ updatedAt: string;
1493
+ phone: string;
1494
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1495
+ office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1496
+ };
1497
+ linkType: "CREATION" | "EDIT_SUGGESTION";
1498
+ creator: {
1481
1499
  id: string;
1500
+ firstName: string;
1501
+ lastName: string;
1502
+ email: string;
1503
+ createdAt: string;
1482
1504
  updatedAt: string;
1505
+ phone: string;
1483
1506
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1484
1507
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1485
1508
  };
1486
1509
  suggestedChanges?: Record<string, unknown> | null | undefined;
1487
1510
  appliedChanges?: Record<string, unknown> | null | undefined;
1488
1511
  }, {
1489
- createdAt: string | Date;
1490
1512
  id: string;
1513
+ createdAt: string | Date;
1491
1514
  updatedAt: string | Date;
1492
1515
  agentId: string;
1493
- agent: {
1494
- lastName: string;
1495
- firstName: string;
1496
- email: string;
1497
- phone: string;
1498
- createdAt: string | Date;
1499
- id: string;
1500
- updatedAt: string | Date;
1501
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1502
- office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1503
- };
1504
1516
  clientId: string;
1505
1517
  client: {
1506
- createdAt: string | Date;
1507
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1508
1518
  id: string;
1509
- updatedAt: string | Date;
1519
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1510
1520
  name: string;
1511
- crn: string;
1521
+ crn: string | null;
1512
1522
  govLink: string;
1523
+ soleTrader: boolean;
1513
1524
  director: string;
1525
+ createdAt: string | Date;
1526
+ updatedAt: string | Date;
1514
1527
  blacklistReason?: string | null | undefined;
1515
1528
  lastUpdatedBy?: {
1516
- lastName: string;
1529
+ id: string;
1517
1530
  firstName: string;
1531
+ lastName: string;
1518
1532
  email: string;
1519
- id: string;
1520
1533
  } | null | undefined;
1521
1534
  agentClientLinks?: {
1522
1535
  agentId: string;
1523
1536
  } | null | undefined;
1524
1537
  };
1525
- linkType: "CREATION" | "EDIT_SUGGESTION";
1526
1538
  createdBy: string;
1527
- creator: {
1528
- lastName: string;
1539
+ agent: {
1540
+ id: string;
1529
1541
  firstName: string;
1542
+ lastName: string;
1530
1543
  email: string;
1531
- phone: string;
1532
1544
  createdAt: string | Date;
1545
+ updatedAt: string | Date;
1546
+ phone: string;
1547
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1548
+ office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1549
+ };
1550
+ linkType: "CREATION" | "EDIT_SUGGESTION";
1551
+ creator: {
1533
1552
  id: string;
1553
+ firstName: string;
1554
+ lastName: string;
1555
+ email: string;
1556
+ createdAt: string | Date;
1534
1557
  updatedAt: string | Date;
1558
+ phone: string;
1535
1559
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1536
1560
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1537
1561
  };
@@ -1693,8 +1717,9 @@ export declare const agentClientLinksContract: {
1693
1717
  client: z.ZodObject<{
1694
1718
  id: z.ZodString;
1695
1719
  name: z.ZodString;
1696
- crn: z.ZodString;
1720
+ crn: z.ZodNullable<z.ZodString>;
1697
1721
  govLink: z.ZodString;
1722
+ soleTrader: z.ZodBoolean;
1698
1723
  status: z.ZodEnum<["APPROVED", "PENDING_VERIFICATION", "BLACKLISTED"]>;
1699
1724
  director: z.ZodString;
1700
1725
  blacklistReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -1704,15 +1729,15 @@ export declare const agentClientLinksContract: {
1704
1729
  lastName: z.ZodString;
1705
1730
  email: z.ZodString;
1706
1731
  }, "strip", z.ZodTypeAny, {
1707
- lastName: string;
1732
+ id: string;
1708
1733
  firstName: string;
1734
+ lastName: string;
1709
1735
  email: string;
1710
- id: string;
1711
1736
  }, {
1712
- lastName: string;
1737
+ id: string;
1713
1738
  firstName: string;
1739
+ lastName: string;
1714
1740
  email: string;
1715
- id: string;
1716
1741
  }>>>;
1717
1742
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1718
1743
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -1724,39 +1749,41 @@ export declare const agentClientLinksContract: {
1724
1749
  agentId: string;
1725
1750
  }>>>;
1726
1751
  }, "strip", z.ZodTypeAny, {
1727
- createdAt: string;
1728
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1729
1752
  id: string;
1730
- updatedAt: string;
1753
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1731
1754
  name: string;
1732
- crn: string;
1755
+ crn: string | null;
1733
1756
  govLink: string;
1757
+ soleTrader: boolean;
1734
1758
  director: string;
1759
+ createdAt: string;
1760
+ updatedAt: string;
1735
1761
  blacklistReason?: string | null | undefined;
1736
1762
  lastUpdatedBy?: {
1737
- lastName: string;
1763
+ id: string;
1738
1764
  firstName: string;
1765
+ lastName: string;
1739
1766
  email: string;
1740
- id: string;
1741
1767
  } | null | undefined;
1742
1768
  agentClientLinks?: {
1743
1769
  agentId: string;
1744
1770
  } | null | undefined;
1745
1771
  }, {
1746
- createdAt: string | Date;
1747
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1748
1772
  id: string;
1749
- updatedAt: string | Date;
1773
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1750
1774
  name: string;
1751
- crn: string;
1775
+ crn: string | null;
1752
1776
  govLink: string;
1777
+ soleTrader: boolean;
1753
1778
  director: string;
1779
+ createdAt: string | Date;
1780
+ updatedAt: string | Date;
1754
1781
  blacklistReason?: string | null | undefined;
1755
1782
  lastUpdatedBy?: {
1756
- lastName: string;
1783
+ id: string;
1757
1784
  firstName: string;
1785
+ lastName: string;
1758
1786
  email: string;
1759
- id: string;
1760
1787
  } | null | undefined;
1761
1788
  agentClientLinks?: {
1762
1789
  agentId: string;
@@ -1774,23 +1801,23 @@ export declare const agentClientLinksContract: {
1774
1801
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1775
1802
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1776
1803
  }, "strip", z.ZodTypeAny, {
1777
- lastName: string;
1804
+ id: string;
1778
1805
  firstName: string;
1806
+ lastName: string;
1779
1807
  email: string;
1780
- phone: string;
1781
1808
  createdAt: string;
1782
- id: string;
1783
1809
  updatedAt: string;
1810
+ phone: string;
1784
1811
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1785
1812
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1786
1813
  }, {
1787
- lastName: string;
1814
+ id: string;
1788
1815
  firstName: string;
1816
+ lastName: string;
1789
1817
  email: string;
1790
- phone: string;
1791
1818
  createdAt: string | Date;
1792
- id: string;
1793
1819
  updatedAt: string | Date;
1820
+ phone: string;
1794
1821
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1795
1822
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1796
1823
  }>;
@@ -1809,127 +1836,129 @@ export declare const agentClientLinksContract: {
1809
1836
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1810
1837
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1811
1838
  }, "strip", z.ZodTypeAny, {
1812
- lastName: string;
1839
+ id: string;
1813
1840
  firstName: string;
1841
+ lastName: string;
1814
1842
  email: string;
1815
- phone: string;
1816
1843
  createdAt: string;
1817
- id: string;
1818
1844
  updatedAt: string;
1845
+ phone: string;
1819
1846
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1820
1847
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1821
1848
  }, {
1822
- lastName: string;
1849
+ id: string;
1823
1850
  firstName: string;
1851
+ lastName: string;
1824
1852
  email: string;
1825
- phone: string;
1826
1853
  createdAt: string | Date;
1827
- id: string;
1828
1854
  updatedAt: string | Date;
1855
+ phone: string;
1829
1856
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1830
1857
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1831
1858
  }>;
1832
1859
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1833
1860
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1834
1861
  }, "strip", z.ZodTypeAny, {
1835
- createdAt: string;
1836
1862
  id: string;
1863
+ createdAt: string;
1837
1864
  updatedAt: string;
1838
1865
  agentId: string;
1839
- agent: {
1840
- lastName: string;
1841
- firstName: string;
1842
- email: string;
1843
- phone: string;
1844
- createdAt: string;
1845
- id: string;
1846
- updatedAt: string;
1847
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1848
- office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1849
- };
1850
1866
  clientId: string;
1851
1867
  client: {
1852
- createdAt: string;
1853
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1854
1868
  id: string;
1855
- updatedAt: string;
1869
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1856
1870
  name: string;
1857
- crn: string;
1871
+ crn: string | null;
1858
1872
  govLink: string;
1873
+ soleTrader: boolean;
1859
1874
  director: string;
1875
+ createdAt: string;
1876
+ updatedAt: string;
1860
1877
  blacklistReason?: string | null | undefined;
1861
1878
  lastUpdatedBy?: {
1862
- lastName: string;
1879
+ id: string;
1863
1880
  firstName: string;
1881
+ lastName: string;
1864
1882
  email: string;
1865
- id: string;
1866
1883
  } | null | undefined;
1867
1884
  agentClientLinks?: {
1868
1885
  agentId: string;
1869
1886
  } | null | undefined;
1870
1887
  };
1871
- linkType: "CREATION" | "EDIT_SUGGESTION";
1872
1888
  createdBy: string;
1873
- creator: {
1874
- lastName: string;
1889
+ agent: {
1890
+ id: string;
1875
1891
  firstName: string;
1892
+ lastName: string;
1876
1893
  email: string;
1877
- phone: string;
1878
1894
  createdAt: string;
1895
+ updatedAt: string;
1896
+ phone: string;
1897
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1898
+ office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1899
+ };
1900
+ linkType: "CREATION" | "EDIT_SUGGESTION";
1901
+ creator: {
1879
1902
  id: string;
1903
+ firstName: string;
1904
+ lastName: string;
1905
+ email: string;
1906
+ createdAt: string;
1880
1907
  updatedAt: string;
1908
+ phone: string;
1881
1909
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1882
1910
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1883
1911
  };
1884
1912
  suggestedChanges?: Record<string, unknown> | null | undefined;
1885
1913
  appliedChanges?: Record<string, unknown> | null | undefined;
1886
1914
  }, {
1887
- createdAt: string | Date;
1888
1915
  id: string;
1916
+ createdAt: string | Date;
1889
1917
  updatedAt: string | Date;
1890
1918
  agentId: string;
1891
- agent: {
1892
- lastName: string;
1893
- firstName: string;
1894
- email: string;
1895
- phone: string;
1896
- createdAt: string | Date;
1897
- id: string;
1898
- updatedAt: string | Date;
1899
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1900
- office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1901
- };
1902
1919
  clientId: string;
1903
1920
  client: {
1904
- createdAt: string | Date;
1905
- status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1906
1921
  id: string;
1907
- updatedAt: string | Date;
1922
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1908
1923
  name: string;
1909
- crn: string;
1924
+ crn: string | null;
1910
1925
  govLink: string;
1926
+ soleTrader: boolean;
1911
1927
  director: string;
1928
+ createdAt: string | Date;
1929
+ updatedAt: string | Date;
1912
1930
  blacklistReason?: string | null | undefined;
1913
1931
  lastUpdatedBy?: {
1914
- lastName: string;
1932
+ id: string;
1915
1933
  firstName: string;
1934
+ lastName: string;
1916
1935
  email: string;
1917
- id: string;
1918
1936
  } | null | undefined;
1919
1937
  agentClientLinks?: {
1920
1938
  agentId: string;
1921
1939
  } | null | undefined;
1922
1940
  };
1923
- linkType: "CREATION" | "EDIT_SUGGESTION";
1924
1941
  createdBy: string;
1925
- creator: {
1926
- lastName: string;
1942
+ agent: {
1943
+ id: string;
1927
1944
  firstName: string;
1945
+ lastName: string;
1928
1946
  email: string;
1929
- phone: string;
1930
1947
  createdAt: string | Date;
1948
+ updatedAt: string | Date;
1949
+ phone: string;
1950
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1951
+ office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1952
+ };
1953
+ linkType: "CREATION" | "EDIT_SUGGESTION";
1954
+ creator: {
1931
1955
  id: string;
1956
+ firstName: string;
1957
+ lastName: string;
1958
+ email: string;
1959
+ createdAt: string | Date;
1932
1960
  updatedAt: string | Date;
1961
+ phone: string;
1933
1962
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
1934
1963
  office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
1935
1964
  };