@dakkitor/api-contracts 1.1.123 → 1.1.124
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.
- package/dist/abilities/second-agent.abilities.json +17 -3
- package/dist/actives/actives.contract.d.ts +6094 -6094
- package/dist/agent-client-links/agent-client-links.contract.d.ts +367 -367
- package/dist/bookings/bookings.contract.d.ts +23078 -23006
- package/dist/bookings/bookings.contract.d.ts.map +1 -1
- package/dist/bookings/bookings.contract.js +3 -0
- package/dist/client-contacts/client-contacts.contract.d.ts +477 -477
- package/dist/clients/clients.contract.d.ts +224 -188
- package/dist/clients/clients.contract.d.ts.map +1 -1
- package/dist/clients/clients.contract.js +3 -0
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +1534 -1534
- package/dist/collaborations/collaborations.contract.d.ts +1265 -1265
- package/dist/dashboards/dashboard-widgets.contract.d.ts +34 -34
- package/dist/jobs/jobs.contract.d.ts +2882 -2846
- package/dist/jobs/jobs.contract.d.ts.map +1 -1
- package/dist/jobs/jobs.contract.js +3 -0
- 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
|
+
email: string;
|
|
22
23
|
id: string;
|
|
23
24
|
firstName: string;
|
|
24
25
|
lastName: string;
|
|
25
|
-
email: string;
|
|
26
26
|
}, {
|
|
27
|
+
email: string;
|
|
27
28
|
id: string;
|
|
28
29
|
firstName: string;
|
|
29
30
|
lastName: string;
|
|
30
|
-
email: 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,44 +39,44 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
39
39
|
agentId: string;
|
|
40
40
|
}>>>;
|
|
41
41
|
}, "strip", z.ZodTypeAny, {
|
|
42
|
-
id: string;
|
|
43
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
44
42
|
name: string;
|
|
45
|
-
director: string;
|
|
46
43
|
createdAt: string;
|
|
47
44
|
updatedAt: string;
|
|
45
|
+
id: string;
|
|
46
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
48
47
|
crn: string | null;
|
|
49
48
|
govLink: string;
|
|
49
|
+
director: string;
|
|
50
50
|
soleTrader: boolean;
|
|
51
51
|
blacklistReason?: string | null | undefined;
|
|
52
|
+
agentClientLinks?: {
|
|
53
|
+
agentId: string;
|
|
54
|
+
} | null | undefined;
|
|
52
55
|
lastUpdatedBy?: {
|
|
56
|
+
email: string;
|
|
53
57
|
id: string;
|
|
54
58
|
firstName: string;
|
|
55
59
|
lastName: string;
|
|
56
|
-
email: string;
|
|
57
|
-
} | null | undefined;
|
|
58
|
-
agentClientLinks?: {
|
|
59
|
-
agentId: string;
|
|
60
60
|
} | null | undefined;
|
|
61
61
|
}, {
|
|
62
|
-
id: string;
|
|
63
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
64
62
|
name: string;
|
|
65
|
-
director: string;
|
|
66
63
|
createdAt: string | Date;
|
|
67
64
|
updatedAt: string | Date;
|
|
65
|
+
id: string;
|
|
66
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
68
67
|
crn: string | null;
|
|
69
68
|
govLink: string;
|
|
69
|
+
director: string;
|
|
70
70
|
soleTrader: boolean;
|
|
71
71
|
blacklistReason?: string | null | undefined;
|
|
72
|
+
agentClientLinks?: {
|
|
73
|
+
agentId: string;
|
|
74
|
+
} | null | undefined;
|
|
72
75
|
lastUpdatedBy?: {
|
|
76
|
+
email: string;
|
|
73
77
|
id: string;
|
|
74
78
|
firstName: string;
|
|
75
79
|
lastName: string;
|
|
76
|
-
email: string;
|
|
77
|
-
} | null | undefined;
|
|
78
|
-
agentClientLinks?: {
|
|
79
|
-
agentId: string;
|
|
80
80
|
} | null | undefined;
|
|
81
81
|
}>;
|
|
82
82
|
agentId: z.ZodString;
|
|
@@ -106,12 +106,12 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
106
106
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
107
107
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
108
108
|
}, "strip", z.ZodTypeAny, {
|
|
109
|
-
|
|
109
|
+
email: string;
|
|
110
110
|
createdAt: string;
|
|
111
111
|
updatedAt: string;
|
|
112
|
+
id: string;
|
|
112
113
|
firstName: string;
|
|
113
114
|
lastName: string;
|
|
114
|
-
email: string;
|
|
115
115
|
phoneNumbers: {
|
|
116
116
|
id: string;
|
|
117
117
|
phoneNumber: string;
|
|
@@ -121,19 +121,19 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
121
121
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
122
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;
|
|
123
123
|
}, {
|
|
124
|
-
|
|
124
|
+
email: string;
|
|
125
125
|
createdAt: string | Date;
|
|
126
126
|
updatedAt: string | Date;
|
|
127
|
+
id: string;
|
|
127
128
|
firstName: string;
|
|
128
129
|
lastName: string;
|
|
129
|
-
|
|
130
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
130
131
|
phoneNumbers?: {
|
|
131
132
|
id: string;
|
|
132
133
|
phoneNumber: string;
|
|
133
134
|
description?: string | null | undefined;
|
|
134
135
|
isPrimary?: boolean | undefined;
|
|
135
136
|
}[] | undefined;
|
|
136
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
137
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;
|
|
138
138
|
}>;
|
|
139
139
|
linkType: z.ZodEnum<["CREATION", "EDIT_SUGGESTION"]>;
|
|
@@ -166,12 +166,12 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
166
166
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
167
167
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
168
168
|
}, "strip", z.ZodTypeAny, {
|
|
169
|
-
|
|
169
|
+
email: string;
|
|
170
170
|
createdAt: string;
|
|
171
171
|
updatedAt: string;
|
|
172
|
+
id: string;
|
|
172
173
|
firstName: string;
|
|
173
174
|
lastName: string;
|
|
174
|
-
email: string;
|
|
175
175
|
phoneNumbers: {
|
|
176
176
|
id: string;
|
|
177
177
|
phoneNumber: string;
|
|
@@ -181,58 +181,59 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
181
181
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
182
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;
|
|
183
183
|
}, {
|
|
184
|
-
|
|
184
|
+
email: string;
|
|
185
185
|
createdAt: string | Date;
|
|
186
186
|
updatedAt: string | Date;
|
|
187
|
+
id: string;
|
|
187
188
|
firstName: string;
|
|
188
189
|
lastName: string;
|
|
189
|
-
|
|
190
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
190
191
|
phoneNumbers?: {
|
|
191
192
|
id: string;
|
|
192
193
|
phoneNumber: string;
|
|
193
194
|
description?: string | null | undefined;
|
|
194
195
|
isPrimary?: boolean | undefined;
|
|
195
196
|
}[] | undefined;
|
|
196
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
197
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;
|
|
198
198
|
}>;
|
|
199
199
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
200
200
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
201
201
|
}, "strip", z.ZodTypeAny, {
|
|
202
|
-
id: string;
|
|
203
202
|
createdAt: string;
|
|
204
203
|
updatedAt: string;
|
|
204
|
+
createdBy: string;
|
|
205
|
+
id: string;
|
|
205
206
|
agentId: string;
|
|
207
|
+
clientId: string;
|
|
206
208
|
client: {
|
|
207
|
-
id: string;
|
|
208
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
209
209
|
name: string;
|
|
210
|
-
director: string;
|
|
211
210
|
createdAt: string;
|
|
212
211
|
updatedAt: string;
|
|
212
|
+
id: string;
|
|
213
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
213
214
|
crn: string | null;
|
|
214
215
|
govLink: string;
|
|
216
|
+
director: string;
|
|
215
217
|
soleTrader: boolean;
|
|
216
218
|
blacklistReason?: string | null | undefined;
|
|
219
|
+
agentClientLinks?: {
|
|
220
|
+
agentId: string;
|
|
221
|
+
} | null | undefined;
|
|
217
222
|
lastUpdatedBy?: {
|
|
223
|
+
email: string;
|
|
218
224
|
id: string;
|
|
219
225
|
firstName: string;
|
|
220
226
|
lastName: string;
|
|
221
|
-
email: string;
|
|
222
|
-
} | null | undefined;
|
|
223
|
-
agentClientLinks?: {
|
|
224
|
-
agentId: string;
|
|
225
227
|
} | null | undefined;
|
|
226
228
|
};
|
|
227
|
-
|
|
228
|
-
createdBy: string;
|
|
229
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
229
230
|
agent: {
|
|
230
|
-
|
|
231
|
+
email: string;
|
|
231
232
|
createdAt: string;
|
|
232
233
|
updatedAt: string;
|
|
234
|
+
id: string;
|
|
233
235
|
firstName: string;
|
|
234
236
|
lastName: string;
|
|
235
|
-
email: string;
|
|
236
237
|
phoneNumbers: {
|
|
237
238
|
id: string;
|
|
238
239
|
phoneNumber: string;
|
|
@@ -242,14 +243,13 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
242
243
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
243
244
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "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
|
};
|
|
245
|
-
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
246
246
|
creator: {
|
|
247
|
-
|
|
247
|
+
email: string;
|
|
248
248
|
createdAt: string;
|
|
249
249
|
updatedAt: string;
|
|
250
|
+
id: string;
|
|
250
251
|
firstName: string;
|
|
251
252
|
lastName: string;
|
|
252
|
-
email: string;
|
|
253
253
|
phoneNumbers: {
|
|
254
254
|
id: string;
|
|
255
255
|
phoneNumber: string;
|
|
@@ -262,64 +262,64 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
262
262
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
263
263
|
appliedChanges?: Record<string, unknown> | null | undefined;
|
|
264
264
|
}, {
|
|
265
|
-
id: string;
|
|
266
265
|
createdAt: string | Date;
|
|
267
266
|
updatedAt: string | Date;
|
|
267
|
+
createdBy: string;
|
|
268
|
+
id: string;
|
|
268
269
|
agentId: string;
|
|
270
|
+
clientId: string;
|
|
269
271
|
client: {
|
|
270
|
-
id: string;
|
|
271
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
272
272
|
name: string;
|
|
273
|
-
director: string;
|
|
274
273
|
createdAt: string | Date;
|
|
275
274
|
updatedAt: string | Date;
|
|
275
|
+
id: string;
|
|
276
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
276
277
|
crn: string | null;
|
|
277
278
|
govLink: string;
|
|
279
|
+
director: string;
|
|
278
280
|
soleTrader: boolean;
|
|
279
281
|
blacklistReason?: string | null | undefined;
|
|
282
|
+
agentClientLinks?: {
|
|
283
|
+
agentId: string;
|
|
284
|
+
} | null | undefined;
|
|
280
285
|
lastUpdatedBy?: {
|
|
286
|
+
email: string;
|
|
281
287
|
id: string;
|
|
282
288
|
firstName: string;
|
|
283
289
|
lastName: string;
|
|
284
|
-
email: string;
|
|
285
|
-
} | null | undefined;
|
|
286
|
-
agentClientLinks?: {
|
|
287
|
-
agentId: string;
|
|
288
290
|
} | null | undefined;
|
|
289
291
|
};
|
|
290
|
-
|
|
291
|
-
createdBy: string;
|
|
292
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
292
293
|
agent: {
|
|
293
|
-
|
|
294
|
+
email: string;
|
|
294
295
|
createdAt: string | Date;
|
|
295
296
|
updatedAt: string | Date;
|
|
297
|
+
id: string;
|
|
296
298
|
firstName: string;
|
|
297
299
|
lastName: string;
|
|
298
|
-
|
|
300
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
299
301
|
phoneNumbers?: {
|
|
300
302
|
id: string;
|
|
301
303
|
phoneNumber: string;
|
|
302
304
|
description?: string | null | undefined;
|
|
303
305
|
isPrimary?: boolean | undefined;
|
|
304
306
|
}[] | undefined;
|
|
305
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
306
307
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
307
308
|
};
|
|
308
|
-
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
309
309
|
creator: {
|
|
310
|
-
|
|
310
|
+
email: string;
|
|
311
311
|
createdAt: string | Date;
|
|
312
312
|
updatedAt: string | Date;
|
|
313
|
+
id: string;
|
|
313
314
|
firstName: string;
|
|
314
315
|
lastName: string;
|
|
315
|
-
|
|
316
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
316
317
|
phoneNumbers?: {
|
|
317
318
|
id: string;
|
|
318
319
|
phoneNumber: string;
|
|
319
320
|
description?: string | null | undefined;
|
|
320
321
|
isPrimary?: boolean | undefined;
|
|
321
322
|
}[] | undefined;
|
|
322
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
323
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;
|
|
324
324
|
};
|
|
325
325
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
@@ -335,19 +335,19 @@ export declare const FilterAgentClientLinkSchema: z.ZodObject<{
|
|
|
335
335
|
sortBy: z.ZodDefault<z.ZodOptional<z.ZodEnum<["createdAt"]>>>;
|
|
336
336
|
sortOrder: z.ZodDefault<z.ZodOptional<z.ZodEnum<["ASC", "DESC"]>>>;
|
|
337
337
|
}, "strip", z.ZodTypeAny, {
|
|
338
|
-
limit: number;
|
|
339
|
-
page: number;
|
|
340
338
|
sortBy: "createdAt";
|
|
341
339
|
sortOrder: "ASC" | "DESC";
|
|
340
|
+
page: number;
|
|
341
|
+
limit: number;
|
|
342
342
|
agentId?: string | undefined;
|
|
343
343
|
clientId?: string | undefined;
|
|
344
344
|
linkType?: "CREATION" | "EDIT_SUGGESTION" | undefined;
|
|
345
345
|
}, {
|
|
346
|
-
agentId?: string | undefined;
|
|
347
|
-
limit?: number | undefined;
|
|
348
|
-
page?: number | undefined;
|
|
349
346
|
sortBy?: "createdAt" | undefined;
|
|
350
347
|
sortOrder?: "ASC" | "DESC" | undefined;
|
|
348
|
+
page?: number | undefined;
|
|
349
|
+
limit?: number | undefined;
|
|
350
|
+
agentId?: string | undefined;
|
|
351
351
|
clientId?: string | undefined;
|
|
352
352
|
linkType?: "CREATION" | "EDIT_SUGGESTION" | undefined;
|
|
353
353
|
}>;
|
|
@@ -377,15 +377,15 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
377
377
|
lastName: z.ZodString;
|
|
378
378
|
email: z.ZodString;
|
|
379
379
|
}, "strip", z.ZodTypeAny, {
|
|
380
|
+
email: string;
|
|
380
381
|
id: string;
|
|
381
382
|
firstName: string;
|
|
382
383
|
lastName: string;
|
|
383
|
-
email: string;
|
|
384
384
|
}, {
|
|
385
|
+
email: string;
|
|
385
386
|
id: string;
|
|
386
387
|
firstName: string;
|
|
387
388
|
lastName: string;
|
|
388
|
-
email: string;
|
|
389
389
|
}>>>;
|
|
390
390
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
391
391
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -397,44 +397,44 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
397
397
|
agentId: string;
|
|
398
398
|
}>>>;
|
|
399
399
|
}, "strip", z.ZodTypeAny, {
|
|
400
|
-
id: string;
|
|
401
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
402
400
|
name: string;
|
|
403
|
-
director: string;
|
|
404
401
|
createdAt: string;
|
|
405
402
|
updatedAt: string;
|
|
403
|
+
id: string;
|
|
404
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
406
405
|
crn: string | null;
|
|
407
406
|
govLink: string;
|
|
407
|
+
director: string;
|
|
408
408
|
soleTrader: boolean;
|
|
409
409
|
blacklistReason?: string | null | undefined;
|
|
410
|
+
agentClientLinks?: {
|
|
411
|
+
agentId: string;
|
|
412
|
+
} | null | undefined;
|
|
410
413
|
lastUpdatedBy?: {
|
|
414
|
+
email: string;
|
|
411
415
|
id: string;
|
|
412
416
|
firstName: string;
|
|
413
417
|
lastName: string;
|
|
414
|
-
email: string;
|
|
415
|
-
} | null | undefined;
|
|
416
|
-
agentClientLinks?: {
|
|
417
|
-
agentId: string;
|
|
418
418
|
} | null | undefined;
|
|
419
419
|
}, {
|
|
420
|
-
id: string;
|
|
421
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
422
420
|
name: string;
|
|
423
|
-
director: string;
|
|
424
421
|
createdAt: string | Date;
|
|
425
422
|
updatedAt: string | Date;
|
|
423
|
+
id: string;
|
|
424
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
426
425
|
crn: string | null;
|
|
427
426
|
govLink: string;
|
|
427
|
+
director: string;
|
|
428
428
|
soleTrader: boolean;
|
|
429
429
|
blacklistReason?: string | null | undefined;
|
|
430
|
+
agentClientLinks?: {
|
|
431
|
+
agentId: string;
|
|
432
|
+
} | null | undefined;
|
|
430
433
|
lastUpdatedBy?: {
|
|
434
|
+
email: string;
|
|
431
435
|
id: string;
|
|
432
436
|
firstName: string;
|
|
433
437
|
lastName: string;
|
|
434
|
-
email: string;
|
|
435
|
-
} | null | undefined;
|
|
436
|
-
agentClientLinks?: {
|
|
437
|
-
agentId: string;
|
|
438
438
|
} | null | undefined;
|
|
439
439
|
}>;
|
|
440
440
|
agentId: z.ZodString;
|
|
@@ -464,12 +464,12 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
464
464
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
465
465
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
466
466
|
}, "strip", z.ZodTypeAny, {
|
|
467
|
-
|
|
467
|
+
email: string;
|
|
468
468
|
createdAt: string;
|
|
469
469
|
updatedAt: string;
|
|
470
|
+
id: string;
|
|
470
471
|
firstName: string;
|
|
471
472
|
lastName: string;
|
|
472
|
-
email: string;
|
|
473
473
|
phoneNumbers: {
|
|
474
474
|
id: string;
|
|
475
475
|
phoneNumber: string;
|
|
@@ -479,19 +479,19 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
479
479
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
480
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;
|
|
481
481
|
}, {
|
|
482
|
-
|
|
482
|
+
email: string;
|
|
483
483
|
createdAt: string | Date;
|
|
484
484
|
updatedAt: string | Date;
|
|
485
|
+
id: string;
|
|
485
486
|
firstName: string;
|
|
486
487
|
lastName: string;
|
|
487
|
-
|
|
488
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
488
489
|
phoneNumbers?: {
|
|
489
490
|
id: string;
|
|
490
491
|
phoneNumber: string;
|
|
491
492
|
description?: string | null | undefined;
|
|
492
493
|
isPrimary?: boolean | undefined;
|
|
493
494
|
}[] | undefined;
|
|
494
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
495
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;
|
|
496
496
|
}>;
|
|
497
497
|
linkType: z.ZodEnum<["CREATION", "EDIT_SUGGESTION"]>;
|
|
@@ -524,12 +524,12 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
524
524
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
525
525
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
526
526
|
}, "strip", z.ZodTypeAny, {
|
|
527
|
-
|
|
527
|
+
email: string;
|
|
528
528
|
createdAt: string;
|
|
529
529
|
updatedAt: string;
|
|
530
|
+
id: string;
|
|
530
531
|
firstName: string;
|
|
531
532
|
lastName: string;
|
|
532
|
-
email: string;
|
|
533
533
|
phoneNumbers: {
|
|
534
534
|
id: string;
|
|
535
535
|
phoneNumber: string;
|
|
@@ -539,58 +539,59 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
539
539
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
540
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;
|
|
541
541
|
}, {
|
|
542
|
-
|
|
542
|
+
email: string;
|
|
543
543
|
createdAt: string | Date;
|
|
544
544
|
updatedAt: string | Date;
|
|
545
|
+
id: string;
|
|
545
546
|
firstName: string;
|
|
546
547
|
lastName: string;
|
|
547
|
-
|
|
548
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
548
549
|
phoneNumbers?: {
|
|
549
550
|
id: string;
|
|
550
551
|
phoneNumber: string;
|
|
551
552
|
description?: string | null | undefined;
|
|
552
553
|
isPrimary?: boolean | undefined;
|
|
553
554
|
}[] | undefined;
|
|
554
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
555
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;
|
|
556
556
|
}>;
|
|
557
557
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
558
558
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
559
559
|
}, "strip", z.ZodTypeAny, {
|
|
560
|
-
id: string;
|
|
561
560
|
createdAt: string;
|
|
562
561
|
updatedAt: string;
|
|
562
|
+
createdBy: string;
|
|
563
|
+
id: string;
|
|
563
564
|
agentId: string;
|
|
565
|
+
clientId: string;
|
|
564
566
|
client: {
|
|
565
|
-
id: string;
|
|
566
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
567
567
|
name: string;
|
|
568
|
-
director: string;
|
|
569
568
|
createdAt: string;
|
|
570
569
|
updatedAt: string;
|
|
570
|
+
id: string;
|
|
571
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
571
572
|
crn: string | null;
|
|
572
573
|
govLink: string;
|
|
574
|
+
director: string;
|
|
573
575
|
soleTrader: boolean;
|
|
574
576
|
blacklistReason?: string | null | undefined;
|
|
577
|
+
agentClientLinks?: {
|
|
578
|
+
agentId: string;
|
|
579
|
+
} | null | undefined;
|
|
575
580
|
lastUpdatedBy?: {
|
|
581
|
+
email: string;
|
|
576
582
|
id: string;
|
|
577
583
|
firstName: string;
|
|
578
584
|
lastName: string;
|
|
579
|
-
email: string;
|
|
580
|
-
} | null | undefined;
|
|
581
|
-
agentClientLinks?: {
|
|
582
|
-
agentId: string;
|
|
583
585
|
} | null | undefined;
|
|
584
586
|
};
|
|
585
|
-
|
|
586
|
-
createdBy: string;
|
|
587
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
587
588
|
agent: {
|
|
588
|
-
|
|
589
|
+
email: string;
|
|
589
590
|
createdAt: string;
|
|
590
591
|
updatedAt: string;
|
|
592
|
+
id: string;
|
|
591
593
|
firstName: string;
|
|
592
594
|
lastName: string;
|
|
593
|
-
email: string;
|
|
594
595
|
phoneNumbers: {
|
|
595
596
|
id: string;
|
|
596
597
|
phoneNumber: string;
|
|
@@ -600,14 +601,13 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
600
601
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
601
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;
|
|
602
603
|
};
|
|
603
|
-
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
604
604
|
creator: {
|
|
605
|
-
|
|
605
|
+
email: string;
|
|
606
606
|
createdAt: string;
|
|
607
607
|
updatedAt: string;
|
|
608
|
+
id: string;
|
|
608
609
|
firstName: string;
|
|
609
610
|
lastName: string;
|
|
610
|
-
email: string;
|
|
611
611
|
phoneNumbers: {
|
|
612
612
|
id: string;
|
|
613
613
|
phoneNumber: string;
|
|
@@ -620,64 +620,64 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
620
620
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
621
621
|
appliedChanges?: Record<string, unknown> | null | undefined;
|
|
622
622
|
}, {
|
|
623
|
-
id: string;
|
|
624
623
|
createdAt: string | Date;
|
|
625
624
|
updatedAt: string | Date;
|
|
625
|
+
createdBy: string;
|
|
626
|
+
id: string;
|
|
626
627
|
agentId: string;
|
|
628
|
+
clientId: string;
|
|
627
629
|
client: {
|
|
628
|
-
id: string;
|
|
629
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
630
630
|
name: string;
|
|
631
|
-
director: string;
|
|
632
631
|
createdAt: string | Date;
|
|
633
632
|
updatedAt: string | Date;
|
|
633
|
+
id: string;
|
|
634
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
634
635
|
crn: string | null;
|
|
635
636
|
govLink: string;
|
|
637
|
+
director: string;
|
|
636
638
|
soleTrader: boolean;
|
|
637
639
|
blacklistReason?: string | null | undefined;
|
|
640
|
+
agentClientLinks?: {
|
|
641
|
+
agentId: string;
|
|
642
|
+
} | null | undefined;
|
|
638
643
|
lastUpdatedBy?: {
|
|
644
|
+
email: string;
|
|
639
645
|
id: string;
|
|
640
646
|
firstName: string;
|
|
641
647
|
lastName: string;
|
|
642
|
-
email: string;
|
|
643
|
-
} | null | undefined;
|
|
644
|
-
agentClientLinks?: {
|
|
645
|
-
agentId: string;
|
|
646
648
|
} | null | undefined;
|
|
647
649
|
};
|
|
648
|
-
|
|
649
|
-
createdBy: string;
|
|
650
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
650
651
|
agent: {
|
|
651
|
-
|
|
652
|
+
email: string;
|
|
652
653
|
createdAt: string | Date;
|
|
653
654
|
updatedAt: string | Date;
|
|
655
|
+
id: string;
|
|
654
656
|
firstName: string;
|
|
655
657
|
lastName: string;
|
|
656
|
-
|
|
658
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
657
659
|
phoneNumbers?: {
|
|
658
660
|
id: string;
|
|
659
661
|
phoneNumber: string;
|
|
660
662
|
description?: string | null | undefined;
|
|
661
663
|
isPrimary?: boolean | undefined;
|
|
662
664
|
}[] | undefined;
|
|
663
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
664
665
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "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
|
};
|
|
666
|
-
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
667
667
|
creator: {
|
|
668
|
-
|
|
668
|
+
email: string;
|
|
669
669
|
createdAt: string | Date;
|
|
670
670
|
updatedAt: string | Date;
|
|
671
|
+
id: string;
|
|
671
672
|
firstName: string;
|
|
672
673
|
lastName: string;
|
|
673
|
-
|
|
674
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
674
675
|
phoneNumbers?: {
|
|
675
676
|
id: string;
|
|
676
677
|
phoneNumber: string;
|
|
677
678
|
description?: string | null | undefined;
|
|
678
679
|
isPrimary?: boolean | undefined;
|
|
679
680
|
}[] | undefined;
|
|
680
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
681
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;
|
|
682
682
|
};
|
|
683
683
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
@@ -691,40 +691,41 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
691
691
|
}, "strip", z.ZodTypeAny, {
|
|
692
692
|
limit: number;
|
|
693
693
|
items: {
|
|
694
|
-
id: string;
|
|
695
694
|
createdAt: string;
|
|
696
695
|
updatedAt: string;
|
|
696
|
+
createdBy: string;
|
|
697
|
+
id: string;
|
|
697
698
|
agentId: string;
|
|
699
|
+
clientId: string;
|
|
698
700
|
client: {
|
|
699
|
-
id: string;
|
|
700
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
701
701
|
name: string;
|
|
702
|
-
director: string;
|
|
703
702
|
createdAt: string;
|
|
704
703
|
updatedAt: string;
|
|
704
|
+
id: string;
|
|
705
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
705
706
|
crn: string | null;
|
|
706
707
|
govLink: string;
|
|
708
|
+
director: string;
|
|
707
709
|
soleTrader: boolean;
|
|
708
710
|
blacklistReason?: string | null | undefined;
|
|
711
|
+
agentClientLinks?: {
|
|
712
|
+
agentId: string;
|
|
713
|
+
} | null | undefined;
|
|
709
714
|
lastUpdatedBy?: {
|
|
715
|
+
email: string;
|
|
710
716
|
id: string;
|
|
711
717
|
firstName: string;
|
|
712
718
|
lastName: string;
|
|
713
|
-
email: string;
|
|
714
|
-
} | null | undefined;
|
|
715
|
-
agentClientLinks?: {
|
|
716
|
-
agentId: string;
|
|
717
719
|
} | null | undefined;
|
|
718
720
|
};
|
|
719
|
-
|
|
720
|
-
createdBy: string;
|
|
721
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
721
722
|
agent: {
|
|
722
|
-
|
|
723
|
+
email: string;
|
|
723
724
|
createdAt: string;
|
|
724
725
|
updatedAt: string;
|
|
726
|
+
id: string;
|
|
725
727
|
firstName: string;
|
|
726
728
|
lastName: string;
|
|
727
|
-
email: string;
|
|
728
729
|
phoneNumbers: {
|
|
729
730
|
id: string;
|
|
730
731
|
phoneNumber: string;
|
|
@@ -734,14 +735,13 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
734
735
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
735
736
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "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
|
};
|
|
737
|
-
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
738
738
|
creator: {
|
|
739
|
-
|
|
739
|
+
email: string;
|
|
740
740
|
createdAt: string;
|
|
741
741
|
updatedAt: string;
|
|
742
|
+
id: string;
|
|
742
743
|
firstName: string;
|
|
743
744
|
lastName: string;
|
|
744
|
-
email: string;
|
|
745
745
|
phoneNumbers: {
|
|
746
746
|
id: string;
|
|
747
747
|
phoneNumber: string;
|
|
@@ -761,64 +761,64 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
761
761
|
}, {
|
|
762
762
|
limit: number;
|
|
763
763
|
items: {
|
|
764
|
-
id: string;
|
|
765
764
|
createdAt: string | Date;
|
|
766
765
|
updatedAt: string | Date;
|
|
766
|
+
createdBy: string;
|
|
767
|
+
id: string;
|
|
767
768
|
agentId: string;
|
|
769
|
+
clientId: string;
|
|
768
770
|
client: {
|
|
769
|
-
id: string;
|
|
770
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
771
771
|
name: string;
|
|
772
|
-
director: string;
|
|
773
772
|
createdAt: string | Date;
|
|
774
773
|
updatedAt: string | Date;
|
|
774
|
+
id: string;
|
|
775
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
775
776
|
crn: string | null;
|
|
776
777
|
govLink: string;
|
|
778
|
+
director: string;
|
|
777
779
|
soleTrader: boolean;
|
|
778
780
|
blacklistReason?: string | null | undefined;
|
|
781
|
+
agentClientLinks?: {
|
|
782
|
+
agentId: string;
|
|
783
|
+
} | null | undefined;
|
|
779
784
|
lastUpdatedBy?: {
|
|
785
|
+
email: string;
|
|
780
786
|
id: string;
|
|
781
787
|
firstName: string;
|
|
782
788
|
lastName: string;
|
|
783
|
-
email: string;
|
|
784
|
-
} | null | undefined;
|
|
785
|
-
agentClientLinks?: {
|
|
786
|
-
agentId: string;
|
|
787
789
|
} | null | undefined;
|
|
788
790
|
};
|
|
789
|
-
|
|
790
|
-
createdBy: string;
|
|
791
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
791
792
|
agent: {
|
|
792
|
-
|
|
793
|
+
email: string;
|
|
793
794
|
createdAt: string | Date;
|
|
794
795
|
updatedAt: string | Date;
|
|
796
|
+
id: string;
|
|
795
797
|
firstName: string;
|
|
796
798
|
lastName: string;
|
|
797
|
-
|
|
799
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
798
800
|
phoneNumbers?: {
|
|
799
801
|
id: string;
|
|
800
802
|
phoneNumber: string;
|
|
801
803
|
description?: string | null | undefined;
|
|
802
804
|
isPrimary?: boolean | undefined;
|
|
803
805
|
}[] | undefined;
|
|
804
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
805
806
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "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
|
};
|
|
807
|
-
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
808
808
|
creator: {
|
|
809
|
-
|
|
809
|
+
email: string;
|
|
810
810
|
createdAt: string | Date;
|
|
811
811
|
updatedAt: string | Date;
|
|
812
|
+
id: string;
|
|
812
813
|
firstName: string;
|
|
813
814
|
lastName: string;
|
|
814
|
-
|
|
815
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
815
816
|
phoneNumbers?: {
|
|
816
817
|
id: string;
|
|
817
818
|
phoneNumber: string;
|
|
818
819
|
description?: string | null | undefined;
|
|
819
820
|
isPrimary?: boolean | undefined;
|
|
820
821
|
}[] | undefined;
|
|
821
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
822
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;
|
|
823
823
|
};
|
|
824
824
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
@@ -837,6 +837,9 @@ export type ApplyChanges = z.infer<typeof ApplyChangesSchema>;
|
|
|
837
837
|
export type PaginatedAgentClientLinkResponse = z.infer<typeof PaginatedAgentClientLinkResponseSchema>;
|
|
838
838
|
export declare const agentClientLinksContract: {
|
|
839
839
|
findAll: {
|
|
840
|
+
metadata: {
|
|
841
|
+
tags: string[];
|
|
842
|
+
};
|
|
840
843
|
query: z.ZodObject<{
|
|
841
844
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
842
845
|
page: z.ZodDefault<z.ZodNumber>;
|
|
@@ -847,25 +850,22 @@ export declare const agentClientLinksContract: {
|
|
|
847
850
|
sortBy: z.ZodDefault<z.ZodOptional<z.ZodEnum<["createdAt"]>>>;
|
|
848
851
|
sortOrder: z.ZodDefault<z.ZodOptional<z.ZodEnum<["ASC", "DESC"]>>>;
|
|
849
852
|
}, "strip", z.ZodTypeAny, {
|
|
850
|
-
limit: number;
|
|
851
|
-
page: number;
|
|
852
853
|
sortBy: "createdAt";
|
|
853
854
|
sortOrder: "ASC" | "DESC";
|
|
855
|
+
page: number;
|
|
856
|
+
limit: number;
|
|
854
857
|
agentId?: string | undefined;
|
|
855
858
|
clientId?: string | undefined;
|
|
856
859
|
linkType?: "CREATION" | "EDIT_SUGGESTION" | undefined;
|
|
857
860
|
}, {
|
|
858
|
-
agentId?: string | undefined;
|
|
859
|
-
limit?: number | undefined;
|
|
860
|
-
page?: number | undefined;
|
|
861
861
|
sortBy?: "createdAt" | undefined;
|
|
862
862
|
sortOrder?: "ASC" | "DESC" | undefined;
|
|
863
|
+
page?: number | undefined;
|
|
864
|
+
limit?: number | undefined;
|
|
865
|
+
agentId?: string | undefined;
|
|
863
866
|
clientId?: string | undefined;
|
|
864
867
|
linkType?: "CREATION" | "EDIT_SUGGESTION" | undefined;
|
|
865
868
|
}>;
|
|
866
|
-
metadata: {
|
|
867
|
-
tags: string[];
|
|
868
|
-
};
|
|
869
869
|
summary: "Get all agent-client links";
|
|
870
870
|
method: "GET";
|
|
871
871
|
path: "/v2/agent-client-links";
|
|
@@ -989,15 +989,15 @@ export declare const agentClientLinksContract: {
|
|
|
989
989
|
lastName: z.ZodString;
|
|
990
990
|
email: z.ZodString;
|
|
991
991
|
}, "strip", z.ZodTypeAny, {
|
|
992
|
+
email: string;
|
|
992
993
|
id: string;
|
|
993
994
|
firstName: string;
|
|
994
995
|
lastName: string;
|
|
995
|
-
email: string;
|
|
996
996
|
}, {
|
|
997
|
+
email: string;
|
|
997
998
|
id: string;
|
|
998
999
|
firstName: string;
|
|
999
1000
|
lastName: string;
|
|
1000
|
-
email: string;
|
|
1001
1001
|
}>>>;
|
|
1002
1002
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1003
1003
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -1009,44 +1009,44 @@ export declare const agentClientLinksContract: {
|
|
|
1009
1009
|
agentId: string;
|
|
1010
1010
|
}>>>;
|
|
1011
1011
|
}, "strip", z.ZodTypeAny, {
|
|
1012
|
-
id: string;
|
|
1013
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1014
1012
|
name: string;
|
|
1015
|
-
director: string;
|
|
1016
1013
|
createdAt: string;
|
|
1017
1014
|
updatedAt: string;
|
|
1015
|
+
id: string;
|
|
1016
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1018
1017
|
crn: string | null;
|
|
1019
1018
|
govLink: string;
|
|
1019
|
+
director: string;
|
|
1020
1020
|
soleTrader: boolean;
|
|
1021
1021
|
blacklistReason?: string | null | undefined;
|
|
1022
|
+
agentClientLinks?: {
|
|
1023
|
+
agentId: string;
|
|
1024
|
+
} | null | undefined;
|
|
1022
1025
|
lastUpdatedBy?: {
|
|
1026
|
+
email: string;
|
|
1023
1027
|
id: string;
|
|
1024
1028
|
firstName: string;
|
|
1025
1029
|
lastName: string;
|
|
1026
|
-
email: string;
|
|
1027
|
-
} | null | undefined;
|
|
1028
|
-
agentClientLinks?: {
|
|
1029
|
-
agentId: string;
|
|
1030
1030
|
} | null | undefined;
|
|
1031
1031
|
}, {
|
|
1032
|
-
id: string;
|
|
1033
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1034
1032
|
name: string;
|
|
1035
|
-
director: string;
|
|
1036
1033
|
createdAt: string | Date;
|
|
1037
1034
|
updatedAt: string | Date;
|
|
1035
|
+
id: string;
|
|
1036
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1038
1037
|
crn: string | null;
|
|
1039
1038
|
govLink: string;
|
|
1039
|
+
director: string;
|
|
1040
1040
|
soleTrader: boolean;
|
|
1041
1041
|
blacklistReason?: string | null | undefined;
|
|
1042
|
+
agentClientLinks?: {
|
|
1043
|
+
agentId: string;
|
|
1044
|
+
} | null | undefined;
|
|
1042
1045
|
lastUpdatedBy?: {
|
|
1046
|
+
email: string;
|
|
1043
1047
|
id: string;
|
|
1044
1048
|
firstName: string;
|
|
1045
1049
|
lastName: string;
|
|
1046
|
-
email: string;
|
|
1047
|
-
} | null | undefined;
|
|
1048
|
-
agentClientLinks?: {
|
|
1049
|
-
agentId: string;
|
|
1050
1050
|
} | null | undefined;
|
|
1051
1051
|
}>;
|
|
1052
1052
|
agentId: z.ZodString;
|
|
@@ -1076,12 +1076,12 @@ export declare const agentClientLinksContract: {
|
|
|
1076
1076
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1077
1077
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1078
1078
|
}, "strip", z.ZodTypeAny, {
|
|
1079
|
-
|
|
1079
|
+
email: string;
|
|
1080
1080
|
createdAt: string;
|
|
1081
1081
|
updatedAt: string;
|
|
1082
|
+
id: string;
|
|
1082
1083
|
firstName: string;
|
|
1083
1084
|
lastName: string;
|
|
1084
|
-
email: string;
|
|
1085
1085
|
phoneNumbers: {
|
|
1086
1086
|
id: string;
|
|
1087
1087
|
phoneNumber: string;
|
|
@@ -1091,19 +1091,19 @@ export declare const agentClientLinksContract: {
|
|
|
1091
1091
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1092
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;
|
|
1093
1093
|
}, {
|
|
1094
|
-
|
|
1094
|
+
email: string;
|
|
1095
1095
|
createdAt: string | Date;
|
|
1096
1096
|
updatedAt: string | Date;
|
|
1097
|
+
id: string;
|
|
1097
1098
|
firstName: string;
|
|
1098
1099
|
lastName: string;
|
|
1099
|
-
|
|
1100
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1100
1101
|
phoneNumbers?: {
|
|
1101
1102
|
id: string;
|
|
1102
1103
|
phoneNumber: string;
|
|
1103
1104
|
description?: string | null | undefined;
|
|
1104
1105
|
isPrimary?: boolean | undefined;
|
|
1105
1106
|
}[] | undefined;
|
|
1106
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1107
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;
|
|
1108
1108
|
}>;
|
|
1109
1109
|
linkType: z.ZodEnum<["CREATION", "EDIT_SUGGESTION"]>;
|
|
@@ -1136,12 +1136,12 @@ export declare const agentClientLinksContract: {
|
|
|
1136
1136
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1137
1137
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1138
1138
|
}, "strip", z.ZodTypeAny, {
|
|
1139
|
-
|
|
1139
|
+
email: string;
|
|
1140
1140
|
createdAt: string;
|
|
1141
1141
|
updatedAt: string;
|
|
1142
|
+
id: string;
|
|
1142
1143
|
firstName: string;
|
|
1143
1144
|
lastName: string;
|
|
1144
|
-
email: string;
|
|
1145
1145
|
phoneNumbers: {
|
|
1146
1146
|
id: string;
|
|
1147
1147
|
phoneNumber: string;
|
|
@@ -1151,58 +1151,59 @@ export declare const agentClientLinksContract: {
|
|
|
1151
1151
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1152
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;
|
|
1153
1153
|
}, {
|
|
1154
|
-
|
|
1154
|
+
email: string;
|
|
1155
1155
|
createdAt: string | Date;
|
|
1156
1156
|
updatedAt: string | Date;
|
|
1157
|
+
id: string;
|
|
1157
1158
|
firstName: string;
|
|
1158
1159
|
lastName: string;
|
|
1159
|
-
|
|
1160
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1160
1161
|
phoneNumbers?: {
|
|
1161
1162
|
id: string;
|
|
1162
1163
|
phoneNumber: string;
|
|
1163
1164
|
description?: string | null | undefined;
|
|
1164
1165
|
isPrimary?: boolean | undefined;
|
|
1165
1166
|
}[] | undefined;
|
|
1166
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1167
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;
|
|
1168
1168
|
}>;
|
|
1169
1169
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1170
1170
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1171
1171
|
}, "strip", z.ZodTypeAny, {
|
|
1172
|
-
id: string;
|
|
1173
1172
|
createdAt: string;
|
|
1174
1173
|
updatedAt: string;
|
|
1174
|
+
createdBy: string;
|
|
1175
|
+
id: string;
|
|
1175
1176
|
agentId: string;
|
|
1177
|
+
clientId: string;
|
|
1176
1178
|
client: {
|
|
1177
|
-
id: string;
|
|
1178
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1179
1179
|
name: string;
|
|
1180
|
-
director: string;
|
|
1181
1180
|
createdAt: string;
|
|
1182
1181
|
updatedAt: string;
|
|
1182
|
+
id: string;
|
|
1183
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1183
1184
|
crn: string | null;
|
|
1184
1185
|
govLink: string;
|
|
1186
|
+
director: string;
|
|
1185
1187
|
soleTrader: boolean;
|
|
1186
1188
|
blacklistReason?: string | null | undefined;
|
|
1189
|
+
agentClientLinks?: {
|
|
1190
|
+
agentId: string;
|
|
1191
|
+
} | null | undefined;
|
|
1187
1192
|
lastUpdatedBy?: {
|
|
1193
|
+
email: string;
|
|
1188
1194
|
id: string;
|
|
1189
1195
|
firstName: string;
|
|
1190
1196
|
lastName: string;
|
|
1191
|
-
email: string;
|
|
1192
|
-
} | null | undefined;
|
|
1193
|
-
agentClientLinks?: {
|
|
1194
|
-
agentId: string;
|
|
1195
1197
|
} | null | undefined;
|
|
1196
1198
|
};
|
|
1197
|
-
|
|
1198
|
-
createdBy: string;
|
|
1199
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1199
1200
|
agent: {
|
|
1200
|
-
|
|
1201
|
+
email: string;
|
|
1201
1202
|
createdAt: string;
|
|
1202
1203
|
updatedAt: string;
|
|
1204
|
+
id: string;
|
|
1203
1205
|
firstName: string;
|
|
1204
1206
|
lastName: string;
|
|
1205
|
-
email: string;
|
|
1206
1207
|
phoneNumbers: {
|
|
1207
1208
|
id: string;
|
|
1208
1209
|
phoneNumber: string;
|
|
@@ -1212,14 +1213,13 @@ export declare const agentClientLinksContract: {
|
|
|
1212
1213
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1213
1214
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "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
|
};
|
|
1215
|
-
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1216
1216
|
creator: {
|
|
1217
|
-
|
|
1217
|
+
email: string;
|
|
1218
1218
|
createdAt: string;
|
|
1219
1219
|
updatedAt: string;
|
|
1220
|
+
id: string;
|
|
1220
1221
|
firstName: string;
|
|
1221
1222
|
lastName: string;
|
|
1222
|
-
email: string;
|
|
1223
1223
|
phoneNumbers: {
|
|
1224
1224
|
id: string;
|
|
1225
1225
|
phoneNumber: string;
|
|
@@ -1232,64 +1232,64 @@ export declare const agentClientLinksContract: {
|
|
|
1232
1232
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
1233
1233
|
appliedChanges?: Record<string, unknown> | null | undefined;
|
|
1234
1234
|
}, {
|
|
1235
|
-
id: string;
|
|
1236
1235
|
createdAt: string | Date;
|
|
1237
1236
|
updatedAt: string | Date;
|
|
1237
|
+
createdBy: string;
|
|
1238
|
+
id: string;
|
|
1238
1239
|
agentId: string;
|
|
1240
|
+
clientId: string;
|
|
1239
1241
|
client: {
|
|
1240
|
-
id: string;
|
|
1241
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1242
1242
|
name: string;
|
|
1243
|
-
director: string;
|
|
1244
1243
|
createdAt: string | Date;
|
|
1245
1244
|
updatedAt: string | Date;
|
|
1245
|
+
id: string;
|
|
1246
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1246
1247
|
crn: string | null;
|
|
1247
1248
|
govLink: string;
|
|
1249
|
+
director: string;
|
|
1248
1250
|
soleTrader: boolean;
|
|
1249
1251
|
blacklistReason?: string | null | undefined;
|
|
1252
|
+
agentClientLinks?: {
|
|
1253
|
+
agentId: string;
|
|
1254
|
+
} | null | undefined;
|
|
1250
1255
|
lastUpdatedBy?: {
|
|
1256
|
+
email: string;
|
|
1251
1257
|
id: string;
|
|
1252
1258
|
firstName: string;
|
|
1253
1259
|
lastName: string;
|
|
1254
|
-
email: string;
|
|
1255
|
-
} | null | undefined;
|
|
1256
|
-
agentClientLinks?: {
|
|
1257
|
-
agentId: string;
|
|
1258
1260
|
} | null | undefined;
|
|
1259
1261
|
};
|
|
1260
|
-
|
|
1261
|
-
createdBy: string;
|
|
1262
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1262
1263
|
agent: {
|
|
1263
|
-
|
|
1264
|
+
email: string;
|
|
1264
1265
|
createdAt: string | Date;
|
|
1265
1266
|
updatedAt: string | Date;
|
|
1267
|
+
id: string;
|
|
1266
1268
|
firstName: string;
|
|
1267
1269
|
lastName: string;
|
|
1268
|
-
|
|
1270
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1269
1271
|
phoneNumbers?: {
|
|
1270
1272
|
id: string;
|
|
1271
1273
|
phoneNumber: string;
|
|
1272
1274
|
description?: string | null | undefined;
|
|
1273
1275
|
isPrimary?: boolean | undefined;
|
|
1274
1276
|
}[] | undefined;
|
|
1275
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1276
1277
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "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
|
};
|
|
1278
|
-
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1279
1279
|
creator: {
|
|
1280
|
-
|
|
1280
|
+
email: string;
|
|
1281
1281
|
createdAt: string | Date;
|
|
1282
1282
|
updatedAt: string | Date;
|
|
1283
|
+
id: string;
|
|
1283
1284
|
firstName: string;
|
|
1284
1285
|
lastName: string;
|
|
1285
|
-
|
|
1286
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1286
1287
|
phoneNumbers?: {
|
|
1287
1288
|
id: string;
|
|
1288
1289
|
phoneNumber: string;
|
|
1289
1290
|
description?: string | null | undefined;
|
|
1290
1291
|
isPrimary?: boolean | undefined;
|
|
1291
1292
|
}[] | undefined;
|
|
1292
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1293
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;
|
|
1294
1294
|
};
|
|
1295
1295
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
@@ -1303,40 +1303,41 @@ export declare const agentClientLinksContract: {
|
|
|
1303
1303
|
}, "strip", z.ZodTypeAny, {
|
|
1304
1304
|
limit: number;
|
|
1305
1305
|
items: {
|
|
1306
|
-
id: string;
|
|
1307
1306
|
createdAt: string;
|
|
1308
1307
|
updatedAt: string;
|
|
1308
|
+
createdBy: string;
|
|
1309
|
+
id: string;
|
|
1309
1310
|
agentId: string;
|
|
1311
|
+
clientId: string;
|
|
1310
1312
|
client: {
|
|
1311
|
-
id: string;
|
|
1312
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1313
1313
|
name: string;
|
|
1314
|
-
director: string;
|
|
1315
1314
|
createdAt: string;
|
|
1316
1315
|
updatedAt: string;
|
|
1316
|
+
id: string;
|
|
1317
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1317
1318
|
crn: string | null;
|
|
1318
1319
|
govLink: string;
|
|
1320
|
+
director: string;
|
|
1319
1321
|
soleTrader: boolean;
|
|
1320
1322
|
blacklistReason?: string | null | undefined;
|
|
1323
|
+
agentClientLinks?: {
|
|
1324
|
+
agentId: string;
|
|
1325
|
+
} | null | undefined;
|
|
1321
1326
|
lastUpdatedBy?: {
|
|
1327
|
+
email: string;
|
|
1322
1328
|
id: string;
|
|
1323
1329
|
firstName: string;
|
|
1324
1330
|
lastName: string;
|
|
1325
|
-
email: string;
|
|
1326
|
-
} | null | undefined;
|
|
1327
|
-
agentClientLinks?: {
|
|
1328
|
-
agentId: string;
|
|
1329
1331
|
} | null | undefined;
|
|
1330
1332
|
};
|
|
1331
|
-
|
|
1332
|
-
createdBy: string;
|
|
1333
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1333
1334
|
agent: {
|
|
1334
|
-
|
|
1335
|
+
email: string;
|
|
1335
1336
|
createdAt: string;
|
|
1336
1337
|
updatedAt: string;
|
|
1338
|
+
id: string;
|
|
1337
1339
|
firstName: string;
|
|
1338
1340
|
lastName: string;
|
|
1339
|
-
email: string;
|
|
1340
1341
|
phoneNumbers: {
|
|
1341
1342
|
id: string;
|
|
1342
1343
|
phoneNumber: string;
|
|
@@ -1346,14 +1347,13 @@ export declare const agentClientLinksContract: {
|
|
|
1346
1347
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1347
1348
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "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
|
};
|
|
1349
|
-
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1350
1350
|
creator: {
|
|
1351
|
-
|
|
1351
|
+
email: string;
|
|
1352
1352
|
createdAt: string;
|
|
1353
1353
|
updatedAt: string;
|
|
1354
|
+
id: string;
|
|
1354
1355
|
firstName: string;
|
|
1355
1356
|
lastName: string;
|
|
1356
|
-
email: string;
|
|
1357
1357
|
phoneNumbers: {
|
|
1358
1358
|
id: string;
|
|
1359
1359
|
phoneNumber: string;
|
|
@@ -1373,64 +1373,64 @@ export declare const agentClientLinksContract: {
|
|
|
1373
1373
|
}, {
|
|
1374
1374
|
limit: number;
|
|
1375
1375
|
items: {
|
|
1376
|
-
id: string;
|
|
1377
1376
|
createdAt: string | Date;
|
|
1378
1377
|
updatedAt: string | Date;
|
|
1378
|
+
createdBy: string;
|
|
1379
|
+
id: string;
|
|
1379
1380
|
agentId: string;
|
|
1381
|
+
clientId: string;
|
|
1380
1382
|
client: {
|
|
1381
|
-
id: string;
|
|
1382
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1383
1383
|
name: string;
|
|
1384
|
-
director: string;
|
|
1385
1384
|
createdAt: string | Date;
|
|
1386
1385
|
updatedAt: string | Date;
|
|
1386
|
+
id: string;
|
|
1387
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1387
1388
|
crn: string | null;
|
|
1388
1389
|
govLink: string;
|
|
1390
|
+
director: string;
|
|
1389
1391
|
soleTrader: boolean;
|
|
1390
1392
|
blacklistReason?: string | null | undefined;
|
|
1393
|
+
agentClientLinks?: {
|
|
1394
|
+
agentId: string;
|
|
1395
|
+
} | null | undefined;
|
|
1391
1396
|
lastUpdatedBy?: {
|
|
1397
|
+
email: string;
|
|
1392
1398
|
id: string;
|
|
1393
1399
|
firstName: string;
|
|
1394
1400
|
lastName: string;
|
|
1395
|
-
email: string;
|
|
1396
|
-
} | null | undefined;
|
|
1397
|
-
agentClientLinks?: {
|
|
1398
|
-
agentId: string;
|
|
1399
1401
|
} | null | undefined;
|
|
1400
1402
|
};
|
|
1401
|
-
|
|
1402
|
-
createdBy: string;
|
|
1403
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1403
1404
|
agent: {
|
|
1404
|
-
|
|
1405
|
+
email: string;
|
|
1405
1406
|
createdAt: string | Date;
|
|
1406
1407
|
updatedAt: string | Date;
|
|
1408
|
+
id: string;
|
|
1407
1409
|
firstName: string;
|
|
1408
1410
|
lastName: string;
|
|
1409
|
-
|
|
1411
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1410
1412
|
phoneNumbers?: {
|
|
1411
1413
|
id: string;
|
|
1412
1414
|
phoneNumber: string;
|
|
1413
1415
|
description?: string | null | undefined;
|
|
1414
1416
|
isPrimary?: boolean | undefined;
|
|
1415
1417
|
}[] | undefined;
|
|
1416
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1417
1418
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "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
|
};
|
|
1419
|
-
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1420
1420
|
creator: {
|
|
1421
|
-
|
|
1421
|
+
email: string;
|
|
1422
1422
|
createdAt: string | Date;
|
|
1423
1423
|
updatedAt: string | Date;
|
|
1424
|
+
id: string;
|
|
1424
1425
|
firstName: string;
|
|
1425
1426
|
lastName: string;
|
|
1426
|
-
|
|
1427
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1427
1428
|
phoneNumbers?: {
|
|
1428
1429
|
id: string;
|
|
1429
1430
|
phoneNumber: string;
|
|
1430
1431
|
description?: string | null | undefined;
|
|
1431
1432
|
isPrimary?: boolean | undefined;
|
|
1432
1433
|
}[] | undefined;
|
|
1433
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1434
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;
|
|
1435
1435
|
};
|
|
1436
1436
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
@@ -1576,15 +1576,15 @@ export declare const agentClientLinksContract: {
|
|
|
1576
1576
|
lastName: z.ZodString;
|
|
1577
1577
|
email: z.ZodString;
|
|
1578
1578
|
}, "strip", z.ZodTypeAny, {
|
|
1579
|
+
email: string;
|
|
1579
1580
|
id: string;
|
|
1580
1581
|
firstName: string;
|
|
1581
1582
|
lastName: string;
|
|
1582
|
-
email: string;
|
|
1583
1583
|
}, {
|
|
1584
|
+
email: string;
|
|
1584
1585
|
id: string;
|
|
1585
1586
|
firstName: string;
|
|
1586
1587
|
lastName: string;
|
|
1587
|
-
email: string;
|
|
1588
1588
|
}>>>;
|
|
1589
1589
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1590
1590
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -1596,44 +1596,44 @@ export declare const agentClientLinksContract: {
|
|
|
1596
1596
|
agentId: string;
|
|
1597
1597
|
}>>>;
|
|
1598
1598
|
}, "strip", z.ZodTypeAny, {
|
|
1599
|
-
id: string;
|
|
1600
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1601
1599
|
name: string;
|
|
1602
|
-
director: string;
|
|
1603
1600
|
createdAt: string;
|
|
1604
1601
|
updatedAt: string;
|
|
1602
|
+
id: string;
|
|
1603
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1605
1604
|
crn: string | null;
|
|
1606
1605
|
govLink: string;
|
|
1606
|
+
director: string;
|
|
1607
1607
|
soleTrader: boolean;
|
|
1608
1608
|
blacklistReason?: string | null | undefined;
|
|
1609
|
+
agentClientLinks?: {
|
|
1610
|
+
agentId: string;
|
|
1611
|
+
} | null | undefined;
|
|
1609
1612
|
lastUpdatedBy?: {
|
|
1613
|
+
email: string;
|
|
1610
1614
|
id: string;
|
|
1611
1615
|
firstName: string;
|
|
1612
1616
|
lastName: string;
|
|
1613
|
-
email: string;
|
|
1614
|
-
} | null | undefined;
|
|
1615
|
-
agentClientLinks?: {
|
|
1616
|
-
agentId: string;
|
|
1617
1617
|
} | null | undefined;
|
|
1618
1618
|
}, {
|
|
1619
|
-
id: string;
|
|
1620
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1621
1619
|
name: string;
|
|
1622
|
-
director: string;
|
|
1623
1620
|
createdAt: string | Date;
|
|
1624
1621
|
updatedAt: string | Date;
|
|
1622
|
+
id: string;
|
|
1623
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1625
1624
|
crn: string | null;
|
|
1626
1625
|
govLink: string;
|
|
1626
|
+
director: string;
|
|
1627
1627
|
soleTrader: boolean;
|
|
1628
1628
|
blacklistReason?: string | null | undefined;
|
|
1629
|
+
agentClientLinks?: {
|
|
1630
|
+
agentId: string;
|
|
1631
|
+
} | null | undefined;
|
|
1629
1632
|
lastUpdatedBy?: {
|
|
1633
|
+
email: string;
|
|
1630
1634
|
id: string;
|
|
1631
1635
|
firstName: string;
|
|
1632
1636
|
lastName: string;
|
|
1633
|
-
email: string;
|
|
1634
|
-
} | null | undefined;
|
|
1635
|
-
agentClientLinks?: {
|
|
1636
|
-
agentId: string;
|
|
1637
1637
|
} | null | undefined;
|
|
1638
1638
|
}>;
|
|
1639
1639
|
agentId: z.ZodString;
|
|
@@ -1663,12 +1663,12 @@ export declare const agentClientLinksContract: {
|
|
|
1663
1663
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1664
1664
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1665
1665
|
}, "strip", z.ZodTypeAny, {
|
|
1666
|
-
|
|
1666
|
+
email: string;
|
|
1667
1667
|
createdAt: string;
|
|
1668
1668
|
updatedAt: string;
|
|
1669
|
+
id: string;
|
|
1669
1670
|
firstName: string;
|
|
1670
1671
|
lastName: string;
|
|
1671
|
-
email: string;
|
|
1672
1672
|
phoneNumbers: {
|
|
1673
1673
|
id: string;
|
|
1674
1674
|
phoneNumber: string;
|
|
@@ -1678,19 +1678,19 @@ export declare const agentClientLinksContract: {
|
|
|
1678
1678
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1679
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;
|
|
1680
1680
|
}, {
|
|
1681
|
-
|
|
1681
|
+
email: string;
|
|
1682
1682
|
createdAt: string | Date;
|
|
1683
1683
|
updatedAt: string | Date;
|
|
1684
|
+
id: string;
|
|
1684
1685
|
firstName: string;
|
|
1685
1686
|
lastName: string;
|
|
1686
|
-
|
|
1687
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1687
1688
|
phoneNumbers?: {
|
|
1688
1689
|
id: string;
|
|
1689
1690
|
phoneNumber: string;
|
|
1690
1691
|
description?: string | null | undefined;
|
|
1691
1692
|
isPrimary?: boolean | undefined;
|
|
1692
1693
|
}[] | undefined;
|
|
1693
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1694
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;
|
|
1695
1695
|
}>;
|
|
1696
1696
|
linkType: z.ZodEnum<["CREATION", "EDIT_SUGGESTION"]>;
|
|
@@ -1723,12 +1723,12 @@ export declare const agentClientLinksContract: {
|
|
|
1723
1723
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1724
1724
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1725
1725
|
}, "strip", z.ZodTypeAny, {
|
|
1726
|
-
|
|
1726
|
+
email: string;
|
|
1727
1727
|
createdAt: string;
|
|
1728
1728
|
updatedAt: string;
|
|
1729
|
+
id: string;
|
|
1729
1730
|
firstName: string;
|
|
1730
1731
|
lastName: string;
|
|
1731
|
-
email: string;
|
|
1732
1732
|
phoneNumbers: {
|
|
1733
1733
|
id: string;
|
|
1734
1734
|
phoneNumber: string;
|
|
@@ -1738,58 +1738,59 @@ export declare const agentClientLinksContract: {
|
|
|
1738
1738
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1739
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;
|
|
1740
1740
|
}, {
|
|
1741
|
-
|
|
1741
|
+
email: string;
|
|
1742
1742
|
createdAt: string | Date;
|
|
1743
1743
|
updatedAt: string | Date;
|
|
1744
|
+
id: string;
|
|
1744
1745
|
firstName: string;
|
|
1745
1746
|
lastName: string;
|
|
1746
|
-
|
|
1747
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1747
1748
|
phoneNumbers?: {
|
|
1748
1749
|
id: string;
|
|
1749
1750
|
phoneNumber: string;
|
|
1750
1751
|
description?: string | null | undefined;
|
|
1751
1752
|
isPrimary?: boolean | undefined;
|
|
1752
1753
|
}[] | undefined;
|
|
1753
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1754
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;
|
|
1755
1755
|
}>;
|
|
1756
1756
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1757
1757
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1758
1758
|
}, "strip", z.ZodTypeAny, {
|
|
1759
|
-
id: string;
|
|
1760
1759
|
createdAt: string;
|
|
1761
1760
|
updatedAt: string;
|
|
1761
|
+
createdBy: string;
|
|
1762
|
+
id: string;
|
|
1762
1763
|
agentId: string;
|
|
1764
|
+
clientId: string;
|
|
1763
1765
|
client: {
|
|
1764
|
-
id: string;
|
|
1765
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1766
1766
|
name: string;
|
|
1767
|
-
director: string;
|
|
1768
1767
|
createdAt: string;
|
|
1769
1768
|
updatedAt: string;
|
|
1769
|
+
id: string;
|
|
1770
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1770
1771
|
crn: string | null;
|
|
1771
1772
|
govLink: string;
|
|
1773
|
+
director: string;
|
|
1772
1774
|
soleTrader: boolean;
|
|
1773
1775
|
blacklistReason?: string | null | undefined;
|
|
1776
|
+
agentClientLinks?: {
|
|
1777
|
+
agentId: string;
|
|
1778
|
+
} | null | undefined;
|
|
1774
1779
|
lastUpdatedBy?: {
|
|
1780
|
+
email: string;
|
|
1775
1781
|
id: string;
|
|
1776
1782
|
firstName: string;
|
|
1777
1783
|
lastName: string;
|
|
1778
|
-
email: string;
|
|
1779
|
-
} | null | undefined;
|
|
1780
|
-
agentClientLinks?: {
|
|
1781
|
-
agentId: string;
|
|
1782
1784
|
} | null | undefined;
|
|
1783
1785
|
};
|
|
1784
|
-
|
|
1785
|
-
createdBy: string;
|
|
1786
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1786
1787
|
agent: {
|
|
1787
|
-
|
|
1788
|
+
email: string;
|
|
1788
1789
|
createdAt: string;
|
|
1789
1790
|
updatedAt: string;
|
|
1791
|
+
id: string;
|
|
1790
1792
|
firstName: string;
|
|
1791
1793
|
lastName: string;
|
|
1792
|
-
email: string;
|
|
1793
1794
|
phoneNumbers: {
|
|
1794
1795
|
id: string;
|
|
1795
1796
|
phoneNumber: string;
|
|
@@ -1799,14 +1800,13 @@ export declare const agentClientLinksContract: {
|
|
|
1799
1800
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1800
1801
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "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
|
};
|
|
1802
|
-
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1803
1803
|
creator: {
|
|
1804
|
-
|
|
1804
|
+
email: string;
|
|
1805
1805
|
createdAt: string;
|
|
1806
1806
|
updatedAt: string;
|
|
1807
|
+
id: string;
|
|
1807
1808
|
firstName: string;
|
|
1808
1809
|
lastName: string;
|
|
1809
|
-
email: string;
|
|
1810
1810
|
phoneNumbers: {
|
|
1811
1811
|
id: string;
|
|
1812
1812
|
phoneNumber: string;
|
|
@@ -1819,64 +1819,64 @@ export declare const agentClientLinksContract: {
|
|
|
1819
1819
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
1820
1820
|
appliedChanges?: Record<string, unknown> | null | undefined;
|
|
1821
1821
|
}, {
|
|
1822
|
-
id: string;
|
|
1823
1822
|
createdAt: string | Date;
|
|
1824
1823
|
updatedAt: string | Date;
|
|
1824
|
+
createdBy: string;
|
|
1825
|
+
id: string;
|
|
1825
1826
|
agentId: string;
|
|
1827
|
+
clientId: string;
|
|
1826
1828
|
client: {
|
|
1827
|
-
id: string;
|
|
1828
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1829
1829
|
name: string;
|
|
1830
|
-
director: string;
|
|
1831
1830
|
createdAt: string | Date;
|
|
1832
1831
|
updatedAt: string | Date;
|
|
1832
|
+
id: string;
|
|
1833
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1833
1834
|
crn: string | null;
|
|
1834
1835
|
govLink: string;
|
|
1836
|
+
director: string;
|
|
1835
1837
|
soleTrader: boolean;
|
|
1836
1838
|
blacklistReason?: string | null | undefined;
|
|
1839
|
+
agentClientLinks?: {
|
|
1840
|
+
agentId: string;
|
|
1841
|
+
} | null | undefined;
|
|
1837
1842
|
lastUpdatedBy?: {
|
|
1843
|
+
email: string;
|
|
1838
1844
|
id: string;
|
|
1839
1845
|
firstName: string;
|
|
1840
1846
|
lastName: string;
|
|
1841
|
-
email: string;
|
|
1842
|
-
} | null | undefined;
|
|
1843
|
-
agentClientLinks?: {
|
|
1844
|
-
agentId: string;
|
|
1845
1847
|
} | null | undefined;
|
|
1846
1848
|
};
|
|
1847
|
-
|
|
1848
|
-
createdBy: string;
|
|
1849
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1849
1850
|
agent: {
|
|
1850
|
-
|
|
1851
|
+
email: string;
|
|
1851
1852
|
createdAt: string | Date;
|
|
1852
1853
|
updatedAt: string | Date;
|
|
1854
|
+
id: string;
|
|
1853
1855
|
firstName: string;
|
|
1854
1856
|
lastName: string;
|
|
1855
|
-
|
|
1857
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1856
1858
|
phoneNumbers?: {
|
|
1857
1859
|
id: string;
|
|
1858
1860
|
phoneNumber: string;
|
|
1859
1861
|
description?: string | null | undefined;
|
|
1860
1862
|
isPrimary?: boolean | undefined;
|
|
1861
1863
|
}[] | undefined;
|
|
1862
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1863
1864
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "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
|
};
|
|
1865
|
-
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1866
1866
|
creator: {
|
|
1867
|
-
|
|
1867
|
+
email: string;
|
|
1868
1868
|
createdAt: string | Date;
|
|
1869
1869
|
updatedAt: string | Date;
|
|
1870
|
+
id: string;
|
|
1870
1871
|
firstName: string;
|
|
1871
1872
|
lastName: string;
|
|
1872
|
-
|
|
1873
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1873
1874
|
phoneNumbers?: {
|
|
1874
1875
|
id: string;
|
|
1875
1876
|
phoneNumber: string;
|
|
1876
1877
|
description?: string | null | undefined;
|
|
1877
1878
|
isPrimary?: boolean | undefined;
|
|
1878
1879
|
}[] | undefined;
|
|
1879
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1880
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;
|
|
1881
1881
|
};
|
|
1882
1882
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
@@ -2049,15 +2049,15 @@ export declare const agentClientLinksContract: {
|
|
|
2049
2049
|
lastName: z.ZodString;
|
|
2050
2050
|
email: z.ZodString;
|
|
2051
2051
|
}, "strip", z.ZodTypeAny, {
|
|
2052
|
+
email: string;
|
|
2052
2053
|
id: string;
|
|
2053
2054
|
firstName: string;
|
|
2054
2055
|
lastName: string;
|
|
2055
|
-
email: string;
|
|
2056
2056
|
}, {
|
|
2057
|
+
email: string;
|
|
2057
2058
|
id: string;
|
|
2058
2059
|
firstName: string;
|
|
2059
2060
|
lastName: string;
|
|
2060
|
-
email: string;
|
|
2061
2061
|
}>>>;
|
|
2062
2062
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2063
2063
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -2069,44 +2069,44 @@ export declare const agentClientLinksContract: {
|
|
|
2069
2069
|
agentId: string;
|
|
2070
2070
|
}>>>;
|
|
2071
2071
|
}, "strip", z.ZodTypeAny, {
|
|
2072
|
-
id: string;
|
|
2073
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2074
2072
|
name: string;
|
|
2075
|
-
director: string;
|
|
2076
2073
|
createdAt: string;
|
|
2077
2074
|
updatedAt: string;
|
|
2075
|
+
id: string;
|
|
2076
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2078
2077
|
crn: string | null;
|
|
2079
2078
|
govLink: string;
|
|
2079
|
+
director: string;
|
|
2080
2080
|
soleTrader: boolean;
|
|
2081
2081
|
blacklistReason?: string | null | undefined;
|
|
2082
|
+
agentClientLinks?: {
|
|
2083
|
+
agentId: string;
|
|
2084
|
+
} | null | undefined;
|
|
2082
2085
|
lastUpdatedBy?: {
|
|
2086
|
+
email: string;
|
|
2083
2087
|
id: string;
|
|
2084
2088
|
firstName: string;
|
|
2085
2089
|
lastName: string;
|
|
2086
|
-
email: string;
|
|
2087
|
-
} | null | undefined;
|
|
2088
|
-
agentClientLinks?: {
|
|
2089
|
-
agentId: string;
|
|
2090
2090
|
} | null | undefined;
|
|
2091
2091
|
}, {
|
|
2092
|
-
id: string;
|
|
2093
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2094
2092
|
name: string;
|
|
2095
|
-
director: string;
|
|
2096
2093
|
createdAt: string | Date;
|
|
2097
2094
|
updatedAt: string | Date;
|
|
2095
|
+
id: string;
|
|
2096
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2098
2097
|
crn: string | null;
|
|
2099
2098
|
govLink: string;
|
|
2099
|
+
director: string;
|
|
2100
2100
|
soleTrader: boolean;
|
|
2101
2101
|
blacklistReason?: string | null | undefined;
|
|
2102
|
+
agentClientLinks?: {
|
|
2103
|
+
agentId: string;
|
|
2104
|
+
} | null | undefined;
|
|
2102
2105
|
lastUpdatedBy?: {
|
|
2106
|
+
email: string;
|
|
2103
2107
|
id: string;
|
|
2104
2108
|
firstName: string;
|
|
2105
2109
|
lastName: string;
|
|
2106
|
-
email: string;
|
|
2107
|
-
} | null | undefined;
|
|
2108
|
-
agentClientLinks?: {
|
|
2109
|
-
agentId: string;
|
|
2110
2110
|
} | null | undefined;
|
|
2111
2111
|
}>;
|
|
2112
2112
|
agentId: z.ZodString;
|
|
@@ -2136,12 +2136,12 @@ export declare const agentClientLinksContract: {
|
|
|
2136
2136
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2137
2137
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2138
2138
|
}, "strip", z.ZodTypeAny, {
|
|
2139
|
-
|
|
2139
|
+
email: string;
|
|
2140
2140
|
createdAt: string;
|
|
2141
2141
|
updatedAt: string;
|
|
2142
|
+
id: string;
|
|
2142
2143
|
firstName: string;
|
|
2143
2144
|
lastName: string;
|
|
2144
|
-
email: string;
|
|
2145
2145
|
phoneNumbers: {
|
|
2146
2146
|
id: string;
|
|
2147
2147
|
phoneNumber: string;
|
|
@@ -2151,19 +2151,19 @@ export declare const agentClientLinksContract: {
|
|
|
2151
2151
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
2152
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;
|
|
2153
2153
|
}, {
|
|
2154
|
-
|
|
2154
|
+
email: string;
|
|
2155
2155
|
createdAt: string | Date;
|
|
2156
2156
|
updatedAt: string | Date;
|
|
2157
|
+
id: string;
|
|
2157
2158
|
firstName: string;
|
|
2158
2159
|
lastName: string;
|
|
2159
|
-
|
|
2160
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
2160
2161
|
phoneNumbers?: {
|
|
2161
2162
|
id: string;
|
|
2162
2163
|
phoneNumber: string;
|
|
2163
2164
|
description?: string | null | undefined;
|
|
2164
2165
|
isPrimary?: boolean | undefined;
|
|
2165
2166
|
}[] | undefined;
|
|
2166
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
2167
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;
|
|
2168
2168
|
}>;
|
|
2169
2169
|
linkType: z.ZodEnum<["CREATION", "EDIT_SUGGESTION"]>;
|
|
@@ -2196,12 +2196,12 @@ export declare const agentClientLinksContract: {
|
|
|
2196
2196
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2197
2197
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2198
2198
|
}, "strip", z.ZodTypeAny, {
|
|
2199
|
-
|
|
2199
|
+
email: string;
|
|
2200
2200
|
createdAt: string;
|
|
2201
2201
|
updatedAt: string;
|
|
2202
|
+
id: string;
|
|
2202
2203
|
firstName: string;
|
|
2203
2204
|
lastName: string;
|
|
2204
|
-
email: string;
|
|
2205
2205
|
phoneNumbers: {
|
|
2206
2206
|
id: string;
|
|
2207
2207
|
phoneNumber: string;
|
|
@@ -2211,58 +2211,59 @@ export declare const agentClientLinksContract: {
|
|
|
2211
2211
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
2212
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;
|
|
2213
2213
|
}, {
|
|
2214
|
-
|
|
2214
|
+
email: string;
|
|
2215
2215
|
createdAt: string | Date;
|
|
2216
2216
|
updatedAt: string | Date;
|
|
2217
|
+
id: string;
|
|
2217
2218
|
firstName: string;
|
|
2218
2219
|
lastName: string;
|
|
2219
|
-
|
|
2220
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
2220
2221
|
phoneNumbers?: {
|
|
2221
2222
|
id: string;
|
|
2222
2223
|
phoneNumber: string;
|
|
2223
2224
|
description?: string | null | undefined;
|
|
2224
2225
|
isPrimary?: boolean | undefined;
|
|
2225
2226
|
}[] | undefined;
|
|
2226
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
2227
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;
|
|
2228
2228
|
}>;
|
|
2229
2229
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2230
2230
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2231
2231
|
}, "strip", z.ZodTypeAny, {
|
|
2232
|
-
id: string;
|
|
2233
2232
|
createdAt: string;
|
|
2234
2233
|
updatedAt: string;
|
|
2234
|
+
createdBy: string;
|
|
2235
|
+
id: string;
|
|
2235
2236
|
agentId: string;
|
|
2237
|
+
clientId: string;
|
|
2236
2238
|
client: {
|
|
2237
|
-
id: string;
|
|
2238
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2239
2239
|
name: string;
|
|
2240
|
-
director: string;
|
|
2241
2240
|
createdAt: string;
|
|
2242
2241
|
updatedAt: string;
|
|
2242
|
+
id: string;
|
|
2243
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2243
2244
|
crn: string | null;
|
|
2244
2245
|
govLink: string;
|
|
2246
|
+
director: string;
|
|
2245
2247
|
soleTrader: boolean;
|
|
2246
2248
|
blacklistReason?: string | null | undefined;
|
|
2249
|
+
agentClientLinks?: {
|
|
2250
|
+
agentId: string;
|
|
2251
|
+
} | null | undefined;
|
|
2247
2252
|
lastUpdatedBy?: {
|
|
2253
|
+
email: string;
|
|
2248
2254
|
id: string;
|
|
2249
2255
|
firstName: string;
|
|
2250
2256
|
lastName: string;
|
|
2251
|
-
email: string;
|
|
2252
|
-
} | null | undefined;
|
|
2253
|
-
agentClientLinks?: {
|
|
2254
|
-
agentId: string;
|
|
2255
2257
|
} | null | undefined;
|
|
2256
2258
|
};
|
|
2257
|
-
|
|
2258
|
-
createdBy: string;
|
|
2259
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
2259
2260
|
agent: {
|
|
2260
|
-
|
|
2261
|
+
email: string;
|
|
2261
2262
|
createdAt: string;
|
|
2262
2263
|
updatedAt: string;
|
|
2264
|
+
id: string;
|
|
2263
2265
|
firstName: string;
|
|
2264
2266
|
lastName: string;
|
|
2265
|
-
email: string;
|
|
2266
2267
|
phoneNumbers: {
|
|
2267
2268
|
id: string;
|
|
2268
2269
|
phoneNumber: string;
|
|
@@ -2272,14 +2273,13 @@ export declare const agentClientLinksContract: {
|
|
|
2272
2273
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
2273
2274
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "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
|
};
|
|
2275
|
-
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
2276
2276
|
creator: {
|
|
2277
|
-
|
|
2277
|
+
email: string;
|
|
2278
2278
|
createdAt: string;
|
|
2279
2279
|
updatedAt: string;
|
|
2280
|
+
id: string;
|
|
2280
2281
|
firstName: string;
|
|
2281
2282
|
lastName: string;
|
|
2282
|
-
email: string;
|
|
2283
2283
|
phoneNumbers: {
|
|
2284
2284
|
id: string;
|
|
2285
2285
|
phoneNumber: string;
|
|
@@ -2292,64 +2292,64 @@ export declare const agentClientLinksContract: {
|
|
|
2292
2292
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
2293
2293
|
appliedChanges?: Record<string, unknown> | null | undefined;
|
|
2294
2294
|
}, {
|
|
2295
|
-
id: string;
|
|
2296
2295
|
createdAt: string | Date;
|
|
2297
2296
|
updatedAt: string | Date;
|
|
2297
|
+
createdBy: string;
|
|
2298
|
+
id: string;
|
|
2298
2299
|
agentId: string;
|
|
2300
|
+
clientId: string;
|
|
2299
2301
|
client: {
|
|
2300
|
-
id: string;
|
|
2301
|
-
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2302
2302
|
name: string;
|
|
2303
|
-
director: string;
|
|
2304
2303
|
createdAt: string | Date;
|
|
2305
2304
|
updatedAt: string | Date;
|
|
2305
|
+
id: string;
|
|
2306
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2306
2307
|
crn: string | null;
|
|
2307
2308
|
govLink: string;
|
|
2309
|
+
director: string;
|
|
2308
2310
|
soleTrader: boolean;
|
|
2309
2311
|
blacklistReason?: string | null | undefined;
|
|
2312
|
+
agentClientLinks?: {
|
|
2313
|
+
agentId: string;
|
|
2314
|
+
} | null | undefined;
|
|
2310
2315
|
lastUpdatedBy?: {
|
|
2316
|
+
email: string;
|
|
2311
2317
|
id: string;
|
|
2312
2318
|
firstName: string;
|
|
2313
2319
|
lastName: string;
|
|
2314
|
-
email: string;
|
|
2315
|
-
} | null | undefined;
|
|
2316
|
-
agentClientLinks?: {
|
|
2317
|
-
agentId: string;
|
|
2318
2320
|
} | null | undefined;
|
|
2319
2321
|
};
|
|
2320
|
-
|
|
2321
|
-
createdBy: string;
|
|
2322
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
2322
2323
|
agent: {
|
|
2323
|
-
|
|
2324
|
+
email: string;
|
|
2324
2325
|
createdAt: string | Date;
|
|
2325
2326
|
updatedAt: string | Date;
|
|
2327
|
+
id: string;
|
|
2326
2328
|
firstName: string;
|
|
2327
2329
|
lastName: string;
|
|
2328
|
-
|
|
2330
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
2329
2331
|
phoneNumbers?: {
|
|
2330
2332
|
id: string;
|
|
2331
2333
|
phoneNumber: string;
|
|
2332
2334
|
description?: string | null | undefined;
|
|
2333
2335
|
isPrimary?: boolean | undefined;
|
|
2334
2336
|
}[] | undefined;
|
|
2335
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
2336
2337
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "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
|
};
|
|
2338
|
-
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
2339
2339
|
creator: {
|
|
2340
|
-
|
|
2340
|
+
email: string;
|
|
2341
2341
|
createdAt: string | Date;
|
|
2342
2342
|
updatedAt: string | Date;
|
|
2343
|
+
id: string;
|
|
2343
2344
|
firstName: string;
|
|
2344
2345
|
lastName: string;
|
|
2345
|
-
|
|
2346
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
2346
2347
|
phoneNumbers?: {
|
|
2347
2348
|
id: string;
|
|
2348
2349
|
phoneNumber: string;
|
|
2349
2350
|
description?: string | null | undefined;
|
|
2350
2351
|
isPrimary?: boolean | undefined;
|
|
2351
2352
|
}[] | undefined;
|
|
2352
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
2353
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;
|
|
2354
2354
|
};
|
|
2355
2355
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|