@dakkitor/api-contracts 1.1.128 → 1.1.130
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/admin.abilities.json +4 -0
- package/dist/abilities/kpi.abilities.json +9 -0
- package/dist/actives/actives.contract.d.ts +6485 -5013
- package/dist/actives/actives.contract.d.ts.map +1 -1
- package/dist/actives/actives.contract.js +92 -92
- package/dist/agent-client-links/agent-client-links.contract.d.ts +721 -351
- package/dist/agent-client-links/agent-client-links.contract.d.ts.map +1 -1
- package/dist/auth/auth.contract.d.ts +16 -16
- package/dist/bookings/bookings.contract.d.ts +24446 -18718
- package/dist/bookings/bookings.contract.d.ts.map +1 -1
- package/dist/call-history/call-history.contract.d.ts +706 -428
- package/dist/call-history/call-history.contract.d.ts.map +1 -1
- package/dist/client-contacts/client-contacts.contract.d.ts +356 -356
- package/dist/clients/clients.contract.d.ts +106 -106
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +1813 -1197
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts.map +1 -1
- package/dist/collaborations/collaborations.contract.d.ts +1629 -1024
- package/dist/collaborations/collaborations.contract.d.ts.map +1 -1
- package/dist/curated-workers/curated-workers.contract.d.ts +350 -350
- package/dist/dashboards/dashboard-widgets.contract.d.ts +78 -78
- package/dist/dashboards/dashboard.contract.d.ts +26 -26
- package/dist/jobs/jobs.contract.d.ts +3290 -2230
- package/dist/jobs/jobs.contract.d.ts.map +1 -1
- package/dist/lead-assignments/lead-assignments.contract.d.ts +636 -332
- package/dist/lead-assignments/lead-assignments.contract.d.ts.map +1 -1
- package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +296 -144
- package/dist/lead-distribution/agent-lead-distribution.contract.d.ts.map +1 -1
- package/dist/leads/leads.contract.d.ts +122 -122
- package/dist/monitoring/monitoring.contract.d.ts +138 -138
- package/dist/users/users.contract.d.ts +322 -158
- package/dist/users/users.contract.d.ts.map +1 -1
- package/dist/users/users.contract.js +133 -125
- package/dist/workers/workers.contract.d.ts +630 -412
- package/dist/workers/workers.contract.d.ts.map +1 -1
- 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
|
-
id: string;
|
|
23
|
-
firstName: string;
|
|
24
22
|
lastName: string;
|
|
23
|
+
firstName: string;
|
|
25
24
|
email: string;
|
|
26
|
-
}, {
|
|
27
25
|
id: string;
|
|
28
|
-
|
|
26
|
+
}, {
|
|
29
27
|
lastName: string;
|
|
28
|
+
firstName: string;
|
|
30
29
|
email: string;
|
|
30
|
+
id: string;
|
|
31
31
|
}>>>;
|
|
32
32
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
33
33
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -39,41 +39,41 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
39
39
|
agentId: string;
|
|
40
40
|
}>>>;
|
|
41
41
|
}, "strip", z.ZodTypeAny, {
|
|
42
|
+
createdAt: string;
|
|
42
43
|
id: string;
|
|
43
|
-
name: string;
|
|
44
44
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
45
|
-
createdAt: string;
|
|
46
45
|
updatedAt: string;
|
|
46
|
+
name: string;
|
|
47
47
|
crn: string | null;
|
|
48
48
|
govLink: string;
|
|
49
49
|
soleTrader: boolean;
|
|
50
50
|
director: string;
|
|
51
51
|
blacklistReason?: string | null | undefined;
|
|
52
52
|
lastUpdatedBy?: {
|
|
53
|
-
id: string;
|
|
54
|
-
firstName: string;
|
|
55
53
|
lastName: string;
|
|
54
|
+
firstName: string;
|
|
56
55
|
email: string;
|
|
56
|
+
id: string;
|
|
57
57
|
} | null | undefined;
|
|
58
58
|
agentClientLinks?: {
|
|
59
59
|
agentId: string;
|
|
60
60
|
} | null | undefined;
|
|
61
61
|
}, {
|
|
62
|
+
createdAt: string | Date;
|
|
62
63
|
id: string;
|
|
63
|
-
name: string;
|
|
64
64
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
65
|
-
createdAt: string | Date;
|
|
66
65
|
updatedAt: string | Date;
|
|
66
|
+
name: string;
|
|
67
67
|
crn: string | null;
|
|
68
68
|
govLink: string;
|
|
69
69
|
soleTrader: boolean;
|
|
70
70
|
director: string;
|
|
71
71
|
blacklistReason?: string | null | undefined;
|
|
72
72
|
lastUpdatedBy?: {
|
|
73
|
-
id: string;
|
|
74
|
-
firstName: string;
|
|
75
73
|
lastName: string;
|
|
74
|
+
firstName: string;
|
|
76
75
|
email: string;
|
|
76
|
+
id: string;
|
|
77
77
|
} | null | undefined;
|
|
78
78
|
agentClientLinks?: {
|
|
79
79
|
agentId: string;
|
|
@@ -103,30 +103,48 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
103
103
|
}>, "many">>>;
|
|
104
104
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
105
105
|
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
106
|
+
canImpersonateUsers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
107
|
+
id: z.ZodString;
|
|
108
|
+
firstName: z.ZodString;
|
|
109
|
+
lastName: z.ZodString;
|
|
110
|
+
}, "strip", z.ZodTypeAny, {
|
|
111
|
+
lastName: string;
|
|
112
|
+
firstName: string;
|
|
113
|
+
id: string;
|
|
114
|
+
}, {
|
|
115
|
+
lastName: string;
|
|
116
|
+
firstName: string;
|
|
117
|
+
id: string;
|
|
118
|
+
}>, "many">>;
|
|
106
119
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
107
120
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
108
121
|
}, "strip", z.ZodTypeAny, {
|
|
109
|
-
id: string;
|
|
110
|
-
createdAt: string;
|
|
111
|
-
updatedAt: string;
|
|
112
|
-
firstName: string;
|
|
113
122
|
lastName: string;
|
|
123
|
+
firstName: string;
|
|
114
124
|
email: string;
|
|
125
|
+
createdAt: string;
|
|
126
|
+
id: string;
|
|
115
127
|
phoneNumbers: {
|
|
116
128
|
id: string;
|
|
117
129
|
phoneNumber: string;
|
|
118
130
|
isPrimary: boolean;
|
|
119
131
|
description?: string | null | undefined;
|
|
120
132
|
}[];
|
|
133
|
+
updatedAt: string;
|
|
121
134
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
122
135
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
136
|
+
canImpersonateUsers?: {
|
|
137
|
+
lastName: string;
|
|
138
|
+
firstName: string;
|
|
139
|
+
id: string;
|
|
140
|
+
}[] | undefined;
|
|
123
141
|
}, {
|
|
124
|
-
id: string;
|
|
125
|
-
createdAt: string | Date;
|
|
126
|
-
updatedAt: string | Date;
|
|
127
|
-
firstName: string;
|
|
128
142
|
lastName: string;
|
|
143
|
+
firstName: string;
|
|
129
144
|
email: string;
|
|
145
|
+
createdAt: string | Date;
|
|
146
|
+
id: string;
|
|
147
|
+
updatedAt: string | Date;
|
|
130
148
|
phoneNumbers?: {
|
|
131
149
|
id: string;
|
|
132
150
|
phoneNumber: string;
|
|
@@ -135,6 +153,11 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
135
153
|
}[] | undefined;
|
|
136
154
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
137
155
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
156
|
+
canImpersonateUsers?: {
|
|
157
|
+
lastName: string;
|
|
158
|
+
firstName: string;
|
|
159
|
+
id: string;
|
|
160
|
+
}[] | undefined;
|
|
138
161
|
}>;
|
|
139
162
|
linkType: z.ZodEnum<["CREATION", "EDIT_SUGGESTION"]>;
|
|
140
163
|
suggestedChanges: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -163,30 +186,48 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
163
186
|
}>, "many">>>;
|
|
164
187
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
165
188
|
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
189
|
+
canImpersonateUsers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
190
|
+
id: z.ZodString;
|
|
191
|
+
firstName: z.ZodString;
|
|
192
|
+
lastName: z.ZodString;
|
|
193
|
+
}, "strip", z.ZodTypeAny, {
|
|
194
|
+
lastName: string;
|
|
195
|
+
firstName: string;
|
|
196
|
+
id: string;
|
|
197
|
+
}, {
|
|
198
|
+
lastName: string;
|
|
199
|
+
firstName: string;
|
|
200
|
+
id: string;
|
|
201
|
+
}>, "many">>;
|
|
166
202
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
167
203
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
168
204
|
}, "strip", z.ZodTypeAny, {
|
|
169
|
-
id: string;
|
|
170
|
-
createdAt: string;
|
|
171
|
-
updatedAt: string;
|
|
172
|
-
firstName: string;
|
|
173
205
|
lastName: string;
|
|
206
|
+
firstName: string;
|
|
174
207
|
email: string;
|
|
208
|
+
createdAt: string;
|
|
209
|
+
id: string;
|
|
175
210
|
phoneNumbers: {
|
|
176
211
|
id: string;
|
|
177
212
|
phoneNumber: string;
|
|
178
213
|
isPrimary: boolean;
|
|
179
214
|
description?: string | null | undefined;
|
|
180
215
|
}[];
|
|
216
|
+
updatedAt: string;
|
|
181
217
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
182
218
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
219
|
+
canImpersonateUsers?: {
|
|
220
|
+
lastName: string;
|
|
221
|
+
firstName: string;
|
|
222
|
+
id: string;
|
|
223
|
+
}[] | undefined;
|
|
183
224
|
}, {
|
|
184
|
-
id: string;
|
|
185
|
-
createdAt: string | Date;
|
|
186
|
-
updatedAt: string | Date;
|
|
187
|
-
firstName: string;
|
|
188
225
|
lastName: string;
|
|
226
|
+
firstName: string;
|
|
189
227
|
email: string;
|
|
228
|
+
createdAt: string | Date;
|
|
229
|
+
id: string;
|
|
230
|
+
updatedAt: string | Date;
|
|
190
231
|
phoneNumbers?: {
|
|
191
232
|
id: string;
|
|
192
233
|
phoneNumber: string;
|
|
@@ -195,84 +236,99 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
195
236
|
}[] | undefined;
|
|
196
237
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
197
238
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
239
|
+
canImpersonateUsers?: {
|
|
240
|
+
lastName: string;
|
|
241
|
+
firstName: string;
|
|
242
|
+
id: string;
|
|
243
|
+
}[] | undefined;
|
|
198
244
|
}>;
|
|
199
245
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
200
246
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
201
247
|
}, "strip", z.ZodTypeAny, {
|
|
202
|
-
id: string;
|
|
203
248
|
createdAt: string;
|
|
249
|
+
id: string;
|
|
204
250
|
updatedAt: string;
|
|
205
251
|
agentId: string;
|
|
206
252
|
agent: {
|
|
207
|
-
id: string;
|
|
208
|
-
createdAt: string;
|
|
209
|
-
updatedAt: string;
|
|
210
|
-
firstName: string;
|
|
211
253
|
lastName: string;
|
|
254
|
+
firstName: string;
|
|
212
255
|
email: string;
|
|
256
|
+
createdAt: string;
|
|
257
|
+
id: string;
|
|
213
258
|
phoneNumbers: {
|
|
214
259
|
id: string;
|
|
215
260
|
phoneNumber: string;
|
|
216
261
|
isPrimary: boolean;
|
|
217
262
|
description?: string | null | undefined;
|
|
218
263
|
}[];
|
|
264
|
+
updatedAt: string;
|
|
219
265
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
220
266
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
267
|
+
canImpersonateUsers?: {
|
|
268
|
+
lastName: string;
|
|
269
|
+
firstName: string;
|
|
270
|
+
id: string;
|
|
271
|
+
}[] | undefined;
|
|
221
272
|
};
|
|
273
|
+
clientId: string;
|
|
222
274
|
client: {
|
|
275
|
+
createdAt: string;
|
|
223
276
|
id: string;
|
|
224
|
-
name: string;
|
|
225
277
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
226
|
-
createdAt: string;
|
|
227
278
|
updatedAt: string;
|
|
279
|
+
name: string;
|
|
228
280
|
crn: string | null;
|
|
229
281
|
govLink: string;
|
|
230
282
|
soleTrader: boolean;
|
|
231
283
|
director: string;
|
|
232
284
|
blacklistReason?: string | null | undefined;
|
|
233
285
|
lastUpdatedBy?: {
|
|
234
|
-
id: string;
|
|
235
|
-
firstName: string;
|
|
236
286
|
lastName: string;
|
|
287
|
+
firstName: string;
|
|
237
288
|
email: string;
|
|
289
|
+
id: string;
|
|
238
290
|
} | null | undefined;
|
|
239
291
|
agentClientLinks?: {
|
|
240
292
|
agentId: string;
|
|
241
293
|
} | null | undefined;
|
|
242
294
|
};
|
|
243
|
-
clientId: string;
|
|
244
|
-
createdBy: string;
|
|
245
295
|
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
296
|
+
createdBy: string;
|
|
246
297
|
creator: {
|
|
247
|
-
id: string;
|
|
248
|
-
createdAt: string;
|
|
249
|
-
updatedAt: string;
|
|
250
|
-
firstName: string;
|
|
251
298
|
lastName: string;
|
|
299
|
+
firstName: string;
|
|
252
300
|
email: string;
|
|
301
|
+
createdAt: string;
|
|
302
|
+
id: string;
|
|
253
303
|
phoneNumbers: {
|
|
254
304
|
id: string;
|
|
255
305
|
phoneNumber: string;
|
|
256
306
|
isPrimary: boolean;
|
|
257
307
|
description?: string | null | undefined;
|
|
258
308
|
}[];
|
|
309
|
+
updatedAt: string;
|
|
259
310
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
260
311
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
312
|
+
canImpersonateUsers?: {
|
|
313
|
+
lastName: string;
|
|
314
|
+
firstName: string;
|
|
315
|
+
id: string;
|
|
316
|
+
}[] | undefined;
|
|
261
317
|
};
|
|
262
318
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
263
319
|
appliedChanges?: Record<string, unknown> | null | undefined;
|
|
264
320
|
}, {
|
|
265
|
-
id: string;
|
|
266
321
|
createdAt: string | Date;
|
|
322
|
+
id: string;
|
|
267
323
|
updatedAt: string | Date;
|
|
268
324
|
agentId: string;
|
|
269
325
|
agent: {
|
|
270
|
-
id: string;
|
|
271
|
-
createdAt: string | Date;
|
|
272
|
-
updatedAt: string | Date;
|
|
273
|
-
firstName: string;
|
|
274
326
|
lastName: string;
|
|
327
|
+
firstName: string;
|
|
275
328
|
email: string;
|
|
329
|
+
createdAt: string | Date;
|
|
330
|
+
id: string;
|
|
331
|
+
updatedAt: string | Date;
|
|
276
332
|
phoneNumbers?: {
|
|
277
333
|
id: string;
|
|
278
334
|
phoneNumber: string;
|
|
@@ -281,38 +337,43 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
281
337
|
}[] | undefined;
|
|
282
338
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
283
339
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
340
|
+
canImpersonateUsers?: {
|
|
341
|
+
lastName: string;
|
|
342
|
+
firstName: string;
|
|
343
|
+
id: string;
|
|
344
|
+
}[] | undefined;
|
|
284
345
|
};
|
|
346
|
+
clientId: string;
|
|
285
347
|
client: {
|
|
348
|
+
createdAt: string | Date;
|
|
286
349
|
id: string;
|
|
287
|
-
name: string;
|
|
288
350
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
289
|
-
createdAt: string | Date;
|
|
290
351
|
updatedAt: string | Date;
|
|
352
|
+
name: string;
|
|
291
353
|
crn: string | null;
|
|
292
354
|
govLink: string;
|
|
293
355
|
soleTrader: boolean;
|
|
294
356
|
director: string;
|
|
295
357
|
blacklistReason?: string | null | undefined;
|
|
296
358
|
lastUpdatedBy?: {
|
|
297
|
-
id: string;
|
|
298
|
-
firstName: string;
|
|
299
359
|
lastName: string;
|
|
360
|
+
firstName: string;
|
|
300
361
|
email: string;
|
|
362
|
+
id: string;
|
|
301
363
|
} | null | undefined;
|
|
302
364
|
agentClientLinks?: {
|
|
303
365
|
agentId: string;
|
|
304
366
|
} | null | undefined;
|
|
305
367
|
};
|
|
306
|
-
clientId: string;
|
|
307
|
-
createdBy: string;
|
|
308
368
|
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
369
|
+
createdBy: string;
|
|
309
370
|
creator: {
|
|
310
|
-
id: string;
|
|
311
|
-
createdAt: string | Date;
|
|
312
|
-
updatedAt: string | Date;
|
|
313
|
-
firstName: string;
|
|
314
371
|
lastName: string;
|
|
372
|
+
firstName: string;
|
|
315
373
|
email: string;
|
|
374
|
+
createdAt: string | Date;
|
|
375
|
+
id: string;
|
|
376
|
+
updatedAt: string | Date;
|
|
316
377
|
phoneNumbers?: {
|
|
317
378
|
id: string;
|
|
318
379
|
phoneNumber: string;
|
|
@@ -321,6 +382,11 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
321
382
|
}[] | undefined;
|
|
322
383
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
323
384
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
385
|
+
canImpersonateUsers?: {
|
|
386
|
+
lastName: string;
|
|
387
|
+
firstName: string;
|
|
388
|
+
id: string;
|
|
389
|
+
}[] | undefined;
|
|
324
390
|
};
|
|
325
391
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
326
392
|
appliedChanges?: Record<string, unknown> | null | undefined;
|
|
@@ -377,15 +443,15 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
377
443
|
lastName: z.ZodString;
|
|
378
444
|
email: z.ZodString;
|
|
379
445
|
}, "strip", z.ZodTypeAny, {
|
|
380
|
-
id: string;
|
|
381
|
-
firstName: string;
|
|
382
446
|
lastName: string;
|
|
447
|
+
firstName: string;
|
|
383
448
|
email: string;
|
|
384
|
-
}, {
|
|
385
449
|
id: string;
|
|
386
|
-
|
|
450
|
+
}, {
|
|
387
451
|
lastName: string;
|
|
452
|
+
firstName: string;
|
|
388
453
|
email: string;
|
|
454
|
+
id: string;
|
|
389
455
|
}>>>;
|
|
390
456
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
391
457
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -397,41 +463,41 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
397
463
|
agentId: string;
|
|
398
464
|
}>>>;
|
|
399
465
|
}, "strip", z.ZodTypeAny, {
|
|
466
|
+
createdAt: string;
|
|
400
467
|
id: string;
|
|
401
|
-
name: string;
|
|
402
468
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
403
|
-
createdAt: string;
|
|
404
469
|
updatedAt: string;
|
|
470
|
+
name: string;
|
|
405
471
|
crn: string | null;
|
|
406
472
|
govLink: string;
|
|
407
473
|
soleTrader: boolean;
|
|
408
474
|
director: string;
|
|
409
475
|
blacklistReason?: string | null | undefined;
|
|
410
476
|
lastUpdatedBy?: {
|
|
411
|
-
id: string;
|
|
412
|
-
firstName: string;
|
|
413
477
|
lastName: string;
|
|
478
|
+
firstName: string;
|
|
414
479
|
email: string;
|
|
480
|
+
id: string;
|
|
415
481
|
} | null | undefined;
|
|
416
482
|
agentClientLinks?: {
|
|
417
483
|
agentId: string;
|
|
418
484
|
} | null | undefined;
|
|
419
485
|
}, {
|
|
486
|
+
createdAt: string | Date;
|
|
420
487
|
id: string;
|
|
421
|
-
name: string;
|
|
422
488
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
423
|
-
createdAt: string | Date;
|
|
424
489
|
updatedAt: string | Date;
|
|
490
|
+
name: string;
|
|
425
491
|
crn: string | null;
|
|
426
492
|
govLink: string;
|
|
427
493
|
soleTrader: boolean;
|
|
428
494
|
director: string;
|
|
429
495
|
blacklistReason?: string | null | undefined;
|
|
430
496
|
lastUpdatedBy?: {
|
|
431
|
-
id: string;
|
|
432
|
-
firstName: string;
|
|
433
497
|
lastName: string;
|
|
498
|
+
firstName: string;
|
|
434
499
|
email: string;
|
|
500
|
+
id: string;
|
|
435
501
|
} | null | undefined;
|
|
436
502
|
agentClientLinks?: {
|
|
437
503
|
agentId: string;
|
|
@@ -461,30 +527,48 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
461
527
|
}>, "many">>>;
|
|
462
528
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
463
529
|
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
530
|
+
canImpersonateUsers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
531
|
+
id: z.ZodString;
|
|
532
|
+
firstName: z.ZodString;
|
|
533
|
+
lastName: z.ZodString;
|
|
534
|
+
}, "strip", z.ZodTypeAny, {
|
|
535
|
+
lastName: string;
|
|
536
|
+
firstName: string;
|
|
537
|
+
id: string;
|
|
538
|
+
}, {
|
|
539
|
+
lastName: string;
|
|
540
|
+
firstName: string;
|
|
541
|
+
id: string;
|
|
542
|
+
}>, "many">>;
|
|
464
543
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
465
544
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
466
545
|
}, "strip", z.ZodTypeAny, {
|
|
467
|
-
id: string;
|
|
468
|
-
createdAt: string;
|
|
469
|
-
updatedAt: string;
|
|
470
|
-
firstName: string;
|
|
471
546
|
lastName: string;
|
|
547
|
+
firstName: string;
|
|
472
548
|
email: string;
|
|
549
|
+
createdAt: string;
|
|
550
|
+
id: string;
|
|
473
551
|
phoneNumbers: {
|
|
474
552
|
id: string;
|
|
475
553
|
phoneNumber: string;
|
|
476
554
|
isPrimary: boolean;
|
|
477
555
|
description?: string | null | undefined;
|
|
478
556
|
}[];
|
|
557
|
+
updatedAt: string;
|
|
479
558
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
480
559
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
560
|
+
canImpersonateUsers?: {
|
|
561
|
+
lastName: string;
|
|
562
|
+
firstName: string;
|
|
563
|
+
id: string;
|
|
564
|
+
}[] | undefined;
|
|
481
565
|
}, {
|
|
482
|
-
id: string;
|
|
483
|
-
createdAt: string | Date;
|
|
484
|
-
updatedAt: string | Date;
|
|
485
|
-
firstName: string;
|
|
486
566
|
lastName: string;
|
|
567
|
+
firstName: string;
|
|
487
568
|
email: string;
|
|
569
|
+
createdAt: string | Date;
|
|
570
|
+
id: string;
|
|
571
|
+
updatedAt: string | Date;
|
|
488
572
|
phoneNumbers?: {
|
|
489
573
|
id: string;
|
|
490
574
|
phoneNumber: string;
|
|
@@ -493,6 +577,11 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
493
577
|
}[] | undefined;
|
|
494
578
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
495
579
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
580
|
+
canImpersonateUsers?: {
|
|
581
|
+
lastName: string;
|
|
582
|
+
firstName: string;
|
|
583
|
+
id: string;
|
|
584
|
+
}[] | undefined;
|
|
496
585
|
}>;
|
|
497
586
|
linkType: z.ZodEnum<["CREATION", "EDIT_SUGGESTION"]>;
|
|
498
587
|
suggestedChanges: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -521,30 +610,48 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
521
610
|
}>, "many">>>;
|
|
522
611
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
523
612
|
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
613
|
+
canImpersonateUsers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
614
|
+
id: z.ZodString;
|
|
615
|
+
firstName: z.ZodString;
|
|
616
|
+
lastName: z.ZodString;
|
|
617
|
+
}, "strip", z.ZodTypeAny, {
|
|
618
|
+
lastName: string;
|
|
619
|
+
firstName: string;
|
|
620
|
+
id: string;
|
|
621
|
+
}, {
|
|
622
|
+
lastName: string;
|
|
623
|
+
firstName: string;
|
|
624
|
+
id: string;
|
|
625
|
+
}>, "many">>;
|
|
524
626
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
525
627
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
526
628
|
}, "strip", z.ZodTypeAny, {
|
|
527
|
-
id: string;
|
|
528
|
-
createdAt: string;
|
|
529
|
-
updatedAt: string;
|
|
530
|
-
firstName: string;
|
|
531
629
|
lastName: string;
|
|
630
|
+
firstName: string;
|
|
532
631
|
email: string;
|
|
632
|
+
createdAt: string;
|
|
633
|
+
id: string;
|
|
533
634
|
phoneNumbers: {
|
|
534
635
|
id: string;
|
|
535
636
|
phoneNumber: string;
|
|
536
637
|
isPrimary: boolean;
|
|
537
638
|
description?: string | null | undefined;
|
|
538
639
|
}[];
|
|
640
|
+
updatedAt: string;
|
|
539
641
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
540
642
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
643
|
+
canImpersonateUsers?: {
|
|
644
|
+
lastName: string;
|
|
645
|
+
firstName: string;
|
|
646
|
+
id: string;
|
|
647
|
+
}[] | undefined;
|
|
541
648
|
}, {
|
|
542
|
-
id: string;
|
|
543
|
-
createdAt: string | Date;
|
|
544
|
-
updatedAt: string | Date;
|
|
545
|
-
firstName: string;
|
|
546
649
|
lastName: string;
|
|
650
|
+
firstName: string;
|
|
547
651
|
email: string;
|
|
652
|
+
createdAt: string | Date;
|
|
653
|
+
id: string;
|
|
654
|
+
updatedAt: string | Date;
|
|
548
655
|
phoneNumbers?: {
|
|
549
656
|
id: string;
|
|
550
657
|
phoneNumber: string;
|
|
@@ -553,84 +660,99 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
553
660
|
}[] | undefined;
|
|
554
661
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
555
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;
|
|
663
|
+
canImpersonateUsers?: {
|
|
664
|
+
lastName: string;
|
|
665
|
+
firstName: string;
|
|
666
|
+
id: string;
|
|
667
|
+
}[] | undefined;
|
|
556
668
|
}>;
|
|
557
669
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
558
670
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
559
671
|
}, "strip", z.ZodTypeAny, {
|
|
560
|
-
id: string;
|
|
561
672
|
createdAt: string;
|
|
673
|
+
id: string;
|
|
562
674
|
updatedAt: string;
|
|
563
675
|
agentId: string;
|
|
564
676
|
agent: {
|
|
565
|
-
id: string;
|
|
566
|
-
createdAt: string;
|
|
567
|
-
updatedAt: string;
|
|
568
|
-
firstName: string;
|
|
569
677
|
lastName: string;
|
|
678
|
+
firstName: string;
|
|
570
679
|
email: string;
|
|
680
|
+
createdAt: string;
|
|
681
|
+
id: string;
|
|
571
682
|
phoneNumbers: {
|
|
572
683
|
id: string;
|
|
573
684
|
phoneNumber: string;
|
|
574
685
|
isPrimary: boolean;
|
|
575
686
|
description?: string | null | undefined;
|
|
576
687
|
}[];
|
|
688
|
+
updatedAt: string;
|
|
577
689
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
578
690
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
691
|
+
canImpersonateUsers?: {
|
|
692
|
+
lastName: string;
|
|
693
|
+
firstName: string;
|
|
694
|
+
id: string;
|
|
695
|
+
}[] | undefined;
|
|
579
696
|
};
|
|
697
|
+
clientId: string;
|
|
580
698
|
client: {
|
|
699
|
+
createdAt: string;
|
|
581
700
|
id: string;
|
|
582
|
-
name: string;
|
|
583
701
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
584
|
-
createdAt: string;
|
|
585
702
|
updatedAt: string;
|
|
703
|
+
name: string;
|
|
586
704
|
crn: string | null;
|
|
587
705
|
govLink: string;
|
|
588
706
|
soleTrader: boolean;
|
|
589
707
|
director: string;
|
|
590
708
|
blacklistReason?: string | null | undefined;
|
|
591
709
|
lastUpdatedBy?: {
|
|
592
|
-
id: string;
|
|
593
|
-
firstName: string;
|
|
594
710
|
lastName: string;
|
|
711
|
+
firstName: string;
|
|
595
712
|
email: string;
|
|
713
|
+
id: string;
|
|
596
714
|
} | null | undefined;
|
|
597
715
|
agentClientLinks?: {
|
|
598
716
|
agentId: string;
|
|
599
717
|
} | null | undefined;
|
|
600
718
|
};
|
|
601
|
-
clientId: string;
|
|
602
|
-
createdBy: string;
|
|
603
719
|
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
720
|
+
createdBy: string;
|
|
604
721
|
creator: {
|
|
605
|
-
id: string;
|
|
606
|
-
createdAt: string;
|
|
607
|
-
updatedAt: string;
|
|
608
|
-
firstName: string;
|
|
609
722
|
lastName: string;
|
|
723
|
+
firstName: string;
|
|
610
724
|
email: string;
|
|
725
|
+
createdAt: string;
|
|
726
|
+
id: string;
|
|
611
727
|
phoneNumbers: {
|
|
612
728
|
id: string;
|
|
613
729
|
phoneNumber: string;
|
|
614
730
|
isPrimary: boolean;
|
|
615
731
|
description?: string | null | undefined;
|
|
616
732
|
}[];
|
|
733
|
+
updatedAt: string;
|
|
617
734
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
618
735
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
736
|
+
canImpersonateUsers?: {
|
|
737
|
+
lastName: string;
|
|
738
|
+
firstName: string;
|
|
739
|
+
id: string;
|
|
740
|
+
}[] | undefined;
|
|
619
741
|
};
|
|
620
742
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
621
743
|
appliedChanges?: Record<string, unknown> | null | undefined;
|
|
622
744
|
}, {
|
|
623
|
-
id: string;
|
|
624
745
|
createdAt: string | Date;
|
|
746
|
+
id: string;
|
|
625
747
|
updatedAt: string | Date;
|
|
626
748
|
agentId: string;
|
|
627
749
|
agent: {
|
|
628
|
-
id: string;
|
|
629
|
-
createdAt: string | Date;
|
|
630
|
-
updatedAt: string | Date;
|
|
631
|
-
firstName: string;
|
|
632
750
|
lastName: string;
|
|
751
|
+
firstName: string;
|
|
633
752
|
email: string;
|
|
753
|
+
createdAt: string | Date;
|
|
754
|
+
id: string;
|
|
755
|
+
updatedAt: string | Date;
|
|
634
756
|
phoneNumbers?: {
|
|
635
757
|
id: string;
|
|
636
758
|
phoneNumber: string;
|
|
@@ -639,38 +761,43 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
639
761
|
}[] | undefined;
|
|
640
762
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
641
763
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
764
|
+
canImpersonateUsers?: {
|
|
765
|
+
lastName: string;
|
|
766
|
+
firstName: string;
|
|
767
|
+
id: string;
|
|
768
|
+
}[] | undefined;
|
|
642
769
|
};
|
|
770
|
+
clientId: string;
|
|
643
771
|
client: {
|
|
772
|
+
createdAt: string | Date;
|
|
644
773
|
id: string;
|
|
645
|
-
name: string;
|
|
646
774
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
647
|
-
createdAt: string | Date;
|
|
648
775
|
updatedAt: string | Date;
|
|
776
|
+
name: string;
|
|
649
777
|
crn: string | null;
|
|
650
778
|
govLink: string;
|
|
651
779
|
soleTrader: boolean;
|
|
652
780
|
director: string;
|
|
653
781
|
blacklistReason?: string | null | undefined;
|
|
654
782
|
lastUpdatedBy?: {
|
|
655
|
-
id: string;
|
|
656
|
-
firstName: string;
|
|
657
783
|
lastName: string;
|
|
784
|
+
firstName: string;
|
|
658
785
|
email: string;
|
|
786
|
+
id: string;
|
|
659
787
|
} | null | undefined;
|
|
660
788
|
agentClientLinks?: {
|
|
661
789
|
agentId: string;
|
|
662
790
|
} | null | undefined;
|
|
663
791
|
};
|
|
664
|
-
clientId: string;
|
|
665
|
-
createdBy: string;
|
|
666
792
|
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
793
|
+
createdBy: string;
|
|
667
794
|
creator: {
|
|
668
|
-
id: string;
|
|
669
|
-
createdAt: string | Date;
|
|
670
|
-
updatedAt: string | Date;
|
|
671
|
-
firstName: string;
|
|
672
795
|
lastName: string;
|
|
796
|
+
firstName: string;
|
|
673
797
|
email: string;
|
|
798
|
+
createdAt: string | Date;
|
|
799
|
+
id: string;
|
|
800
|
+
updatedAt: string | Date;
|
|
674
801
|
phoneNumbers?: {
|
|
675
802
|
id: string;
|
|
676
803
|
phoneNumber: string;
|
|
@@ -679,6 +806,11 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
679
806
|
}[] | undefined;
|
|
680
807
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
681
808
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
809
|
+
canImpersonateUsers?: {
|
|
810
|
+
lastName: string;
|
|
811
|
+
firstName: string;
|
|
812
|
+
id: string;
|
|
813
|
+
}[] | undefined;
|
|
682
814
|
};
|
|
683
815
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
684
816
|
appliedChanges?: Record<string, unknown> | null | undefined;
|
|
@@ -691,65 +823,75 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
691
823
|
}, "strip", z.ZodTypeAny, {
|
|
692
824
|
limit: number;
|
|
693
825
|
items: {
|
|
694
|
-
id: string;
|
|
695
826
|
createdAt: string;
|
|
827
|
+
id: string;
|
|
696
828
|
updatedAt: string;
|
|
697
829
|
agentId: string;
|
|
698
830
|
agent: {
|
|
699
|
-
id: string;
|
|
700
|
-
createdAt: string;
|
|
701
|
-
updatedAt: string;
|
|
702
|
-
firstName: string;
|
|
703
831
|
lastName: string;
|
|
832
|
+
firstName: string;
|
|
704
833
|
email: string;
|
|
834
|
+
createdAt: string;
|
|
835
|
+
id: string;
|
|
705
836
|
phoneNumbers: {
|
|
706
837
|
id: string;
|
|
707
838
|
phoneNumber: string;
|
|
708
839
|
isPrimary: boolean;
|
|
709
840
|
description?: string | null | undefined;
|
|
710
841
|
}[];
|
|
842
|
+
updatedAt: string;
|
|
711
843
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
712
844
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
845
|
+
canImpersonateUsers?: {
|
|
846
|
+
lastName: string;
|
|
847
|
+
firstName: string;
|
|
848
|
+
id: string;
|
|
849
|
+
}[] | undefined;
|
|
713
850
|
};
|
|
851
|
+
clientId: string;
|
|
714
852
|
client: {
|
|
853
|
+
createdAt: string;
|
|
715
854
|
id: string;
|
|
716
|
-
name: string;
|
|
717
855
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
718
|
-
createdAt: string;
|
|
719
856
|
updatedAt: string;
|
|
857
|
+
name: string;
|
|
720
858
|
crn: string | null;
|
|
721
859
|
govLink: string;
|
|
722
860
|
soleTrader: boolean;
|
|
723
861
|
director: string;
|
|
724
862
|
blacklistReason?: string | null | undefined;
|
|
725
863
|
lastUpdatedBy?: {
|
|
726
|
-
id: string;
|
|
727
|
-
firstName: string;
|
|
728
864
|
lastName: string;
|
|
865
|
+
firstName: string;
|
|
729
866
|
email: string;
|
|
867
|
+
id: string;
|
|
730
868
|
} | null | undefined;
|
|
731
869
|
agentClientLinks?: {
|
|
732
870
|
agentId: string;
|
|
733
871
|
} | null | undefined;
|
|
734
872
|
};
|
|
735
|
-
clientId: string;
|
|
736
|
-
createdBy: string;
|
|
737
873
|
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
874
|
+
createdBy: string;
|
|
738
875
|
creator: {
|
|
739
|
-
id: string;
|
|
740
|
-
createdAt: string;
|
|
741
|
-
updatedAt: string;
|
|
742
|
-
firstName: string;
|
|
743
876
|
lastName: string;
|
|
877
|
+
firstName: string;
|
|
744
878
|
email: string;
|
|
879
|
+
createdAt: string;
|
|
880
|
+
id: string;
|
|
745
881
|
phoneNumbers: {
|
|
746
882
|
id: string;
|
|
747
883
|
phoneNumber: string;
|
|
748
884
|
isPrimary: boolean;
|
|
749
885
|
description?: string | null | undefined;
|
|
750
886
|
}[];
|
|
887
|
+
updatedAt: string;
|
|
751
888
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
752
889
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
890
|
+
canImpersonateUsers?: {
|
|
891
|
+
lastName: string;
|
|
892
|
+
firstName: string;
|
|
893
|
+
id: string;
|
|
894
|
+
}[] | undefined;
|
|
753
895
|
};
|
|
754
896
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
755
897
|
appliedChanges?: Record<string, unknown> | null | undefined;
|
|
@@ -761,17 +903,17 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
761
903
|
}, {
|
|
762
904
|
limit: number;
|
|
763
905
|
items: {
|
|
764
|
-
id: string;
|
|
765
906
|
createdAt: string | Date;
|
|
907
|
+
id: string;
|
|
766
908
|
updatedAt: string | Date;
|
|
767
909
|
agentId: string;
|
|
768
910
|
agent: {
|
|
769
|
-
id: string;
|
|
770
|
-
createdAt: string | Date;
|
|
771
|
-
updatedAt: string | Date;
|
|
772
|
-
firstName: string;
|
|
773
911
|
lastName: string;
|
|
912
|
+
firstName: string;
|
|
774
913
|
email: string;
|
|
914
|
+
createdAt: string | Date;
|
|
915
|
+
id: string;
|
|
916
|
+
updatedAt: string | Date;
|
|
775
917
|
phoneNumbers?: {
|
|
776
918
|
id: string;
|
|
777
919
|
phoneNumber: string;
|
|
@@ -780,38 +922,43 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
780
922
|
}[] | undefined;
|
|
781
923
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
782
924
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
925
|
+
canImpersonateUsers?: {
|
|
926
|
+
lastName: string;
|
|
927
|
+
firstName: string;
|
|
928
|
+
id: string;
|
|
929
|
+
}[] | undefined;
|
|
783
930
|
};
|
|
931
|
+
clientId: string;
|
|
784
932
|
client: {
|
|
933
|
+
createdAt: string | Date;
|
|
785
934
|
id: string;
|
|
786
|
-
name: string;
|
|
787
935
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
788
|
-
createdAt: string | Date;
|
|
789
936
|
updatedAt: string | Date;
|
|
937
|
+
name: string;
|
|
790
938
|
crn: string | null;
|
|
791
939
|
govLink: string;
|
|
792
940
|
soleTrader: boolean;
|
|
793
941
|
director: string;
|
|
794
942
|
blacklistReason?: string | null | undefined;
|
|
795
943
|
lastUpdatedBy?: {
|
|
796
|
-
id: string;
|
|
797
|
-
firstName: string;
|
|
798
944
|
lastName: string;
|
|
945
|
+
firstName: string;
|
|
799
946
|
email: string;
|
|
947
|
+
id: string;
|
|
800
948
|
} | null | undefined;
|
|
801
949
|
agentClientLinks?: {
|
|
802
950
|
agentId: string;
|
|
803
951
|
} | null | undefined;
|
|
804
952
|
};
|
|
805
|
-
clientId: string;
|
|
806
|
-
createdBy: string;
|
|
807
953
|
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
954
|
+
createdBy: string;
|
|
808
955
|
creator: {
|
|
809
|
-
id: string;
|
|
810
|
-
createdAt: string | Date;
|
|
811
|
-
updatedAt: string | Date;
|
|
812
|
-
firstName: string;
|
|
813
956
|
lastName: string;
|
|
957
|
+
firstName: string;
|
|
814
958
|
email: string;
|
|
959
|
+
createdAt: string | Date;
|
|
960
|
+
id: string;
|
|
961
|
+
updatedAt: string | Date;
|
|
815
962
|
phoneNumbers?: {
|
|
816
963
|
id: string;
|
|
817
964
|
phoneNumber: string;
|
|
@@ -820,6 +967,11 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
820
967
|
}[] | undefined;
|
|
821
968
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
822
969
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
970
|
+
canImpersonateUsers?: {
|
|
971
|
+
lastName: string;
|
|
972
|
+
firstName: string;
|
|
973
|
+
id: string;
|
|
974
|
+
}[] | undefined;
|
|
823
975
|
};
|
|
824
976
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
825
977
|
appliedChanges?: Record<string, unknown> | null | undefined;
|
|
@@ -989,15 +1141,15 @@ export declare const agentClientLinksContract: {
|
|
|
989
1141
|
lastName: z.ZodString;
|
|
990
1142
|
email: z.ZodString;
|
|
991
1143
|
}, "strip", z.ZodTypeAny, {
|
|
992
|
-
id: string;
|
|
993
|
-
firstName: string;
|
|
994
1144
|
lastName: string;
|
|
1145
|
+
firstName: string;
|
|
995
1146
|
email: string;
|
|
996
|
-
}, {
|
|
997
1147
|
id: string;
|
|
998
|
-
|
|
1148
|
+
}, {
|
|
999
1149
|
lastName: string;
|
|
1150
|
+
firstName: string;
|
|
1000
1151
|
email: string;
|
|
1152
|
+
id: string;
|
|
1001
1153
|
}>>>;
|
|
1002
1154
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1003
1155
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -1009,41 +1161,41 @@ export declare const agentClientLinksContract: {
|
|
|
1009
1161
|
agentId: string;
|
|
1010
1162
|
}>>>;
|
|
1011
1163
|
}, "strip", z.ZodTypeAny, {
|
|
1164
|
+
createdAt: string;
|
|
1012
1165
|
id: string;
|
|
1013
|
-
name: string;
|
|
1014
1166
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1015
|
-
createdAt: string;
|
|
1016
1167
|
updatedAt: string;
|
|
1168
|
+
name: string;
|
|
1017
1169
|
crn: string | null;
|
|
1018
1170
|
govLink: string;
|
|
1019
1171
|
soleTrader: boolean;
|
|
1020
1172
|
director: string;
|
|
1021
1173
|
blacklistReason?: string | null | undefined;
|
|
1022
1174
|
lastUpdatedBy?: {
|
|
1023
|
-
id: string;
|
|
1024
|
-
firstName: string;
|
|
1025
1175
|
lastName: string;
|
|
1176
|
+
firstName: string;
|
|
1026
1177
|
email: string;
|
|
1178
|
+
id: string;
|
|
1027
1179
|
} | null | undefined;
|
|
1028
1180
|
agentClientLinks?: {
|
|
1029
1181
|
agentId: string;
|
|
1030
1182
|
} | null | undefined;
|
|
1031
1183
|
}, {
|
|
1184
|
+
createdAt: string | Date;
|
|
1032
1185
|
id: string;
|
|
1033
|
-
name: string;
|
|
1034
1186
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1035
|
-
createdAt: string | Date;
|
|
1036
1187
|
updatedAt: string | Date;
|
|
1188
|
+
name: string;
|
|
1037
1189
|
crn: string | null;
|
|
1038
1190
|
govLink: string;
|
|
1039
1191
|
soleTrader: boolean;
|
|
1040
1192
|
director: string;
|
|
1041
1193
|
blacklistReason?: string | null | undefined;
|
|
1042
1194
|
lastUpdatedBy?: {
|
|
1043
|
-
id: string;
|
|
1044
|
-
firstName: string;
|
|
1045
1195
|
lastName: string;
|
|
1196
|
+
firstName: string;
|
|
1046
1197
|
email: string;
|
|
1198
|
+
id: string;
|
|
1047
1199
|
} | null | undefined;
|
|
1048
1200
|
agentClientLinks?: {
|
|
1049
1201
|
agentId: string;
|
|
@@ -1073,30 +1225,48 @@ export declare const agentClientLinksContract: {
|
|
|
1073
1225
|
}>, "many">>>;
|
|
1074
1226
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
1075
1227
|
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
1228
|
+
canImpersonateUsers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1229
|
+
id: z.ZodString;
|
|
1230
|
+
firstName: z.ZodString;
|
|
1231
|
+
lastName: z.ZodString;
|
|
1232
|
+
}, "strip", z.ZodTypeAny, {
|
|
1233
|
+
lastName: string;
|
|
1234
|
+
firstName: string;
|
|
1235
|
+
id: string;
|
|
1236
|
+
}, {
|
|
1237
|
+
lastName: string;
|
|
1238
|
+
firstName: string;
|
|
1239
|
+
id: string;
|
|
1240
|
+
}>, "many">>;
|
|
1076
1241
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1077
1242
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1078
1243
|
}, "strip", z.ZodTypeAny, {
|
|
1079
|
-
id: string;
|
|
1080
|
-
createdAt: string;
|
|
1081
|
-
updatedAt: string;
|
|
1082
|
-
firstName: string;
|
|
1083
1244
|
lastName: string;
|
|
1245
|
+
firstName: string;
|
|
1084
1246
|
email: string;
|
|
1247
|
+
createdAt: string;
|
|
1248
|
+
id: string;
|
|
1085
1249
|
phoneNumbers: {
|
|
1086
1250
|
id: string;
|
|
1087
1251
|
phoneNumber: string;
|
|
1088
1252
|
isPrimary: boolean;
|
|
1089
1253
|
description?: string | null | undefined;
|
|
1090
1254
|
}[];
|
|
1255
|
+
updatedAt: string;
|
|
1091
1256
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1092
1257
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1258
|
+
canImpersonateUsers?: {
|
|
1259
|
+
lastName: string;
|
|
1260
|
+
firstName: string;
|
|
1261
|
+
id: string;
|
|
1262
|
+
}[] | undefined;
|
|
1093
1263
|
}, {
|
|
1094
|
-
id: string;
|
|
1095
|
-
createdAt: string | Date;
|
|
1096
|
-
updatedAt: string | Date;
|
|
1097
|
-
firstName: string;
|
|
1098
1264
|
lastName: string;
|
|
1265
|
+
firstName: string;
|
|
1099
1266
|
email: string;
|
|
1267
|
+
createdAt: string | Date;
|
|
1268
|
+
id: string;
|
|
1269
|
+
updatedAt: string | Date;
|
|
1100
1270
|
phoneNumbers?: {
|
|
1101
1271
|
id: string;
|
|
1102
1272
|
phoneNumber: string;
|
|
@@ -1105,6 +1275,11 @@ export declare const agentClientLinksContract: {
|
|
|
1105
1275
|
}[] | undefined;
|
|
1106
1276
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1107
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;
|
|
1278
|
+
canImpersonateUsers?: {
|
|
1279
|
+
lastName: string;
|
|
1280
|
+
firstName: string;
|
|
1281
|
+
id: string;
|
|
1282
|
+
}[] | undefined;
|
|
1108
1283
|
}>;
|
|
1109
1284
|
linkType: z.ZodEnum<["CREATION", "EDIT_SUGGESTION"]>;
|
|
1110
1285
|
suggestedChanges: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -1133,30 +1308,48 @@ export declare const agentClientLinksContract: {
|
|
|
1133
1308
|
}>, "many">>>;
|
|
1134
1309
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
1135
1310
|
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
1311
|
+
canImpersonateUsers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1312
|
+
id: z.ZodString;
|
|
1313
|
+
firstName: z.ZodString;
|
|
1314
|
+
lastName: z.ZodString;
|
|
1315
|
+
}, "strip", z.ZodTypeAny, {
|
|
1316
|
+
lastName: string;
|
|
1317
|
+
firstName: string;
|
|
1318
|
+
id: string;
|
|
1319
|
+
}, {
|
|
1320
|
+
lastName: string;
|
|
1321
|
+
firstName: string;
|
|
1322
|
+
id: string;
|
|
1323
|
+
}>, "many">>;
|
|
1136
1324
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1137
1325
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1138
1326
|
}, "strip", z.ZodTypeAny, {
|
|
1139
|
-
id: string;
|
|
1140
|
-
createdAt: string;
|
|
1141
|
-
updatedAt: string;
|
|
1142
|
-
firstName: string;
|
|
1143
1327
|
lastName: string;
|
|
1328
|
+
firstName: string;
|
|
1144
1329
|
email: string;
|
|
1330
|
+
createdAt: string;
|
|
1331
|
+
id: string;
|
|
1145
1332
|
phoneNumbers: {
|
|
1146
1333
|
id: string;
|
|
1147
1334
|
phoneNumber: string;
|
|
1148
1335
|
isPrimary: boolean;
|
|
1149
1336
|
description?: string | null | undefined;
|
|
1150
1337
|
}[];
|
|
1338
|
+
updatedAt: string;
|
|
1151
1339
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1152
1340
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1341
|
+
canImpersonateUsers?: {
|
|
1342
|
+
lastName: string;
|
|
1343
|
+
firstName: string;
|
|
1344
|
+
id: string;
|
|
1345
|
+
}[] | undefined;
|
|
1153
1346
|
}, {
|
|
1154
|
-
id: string;
|
|
1155
|
-
createdAt: string | Date;
|
|
1156
|
-
updatedAt: string | Date;
|
|
1157
|
-
firstName: string;
|
|
1158
1347
|
lastName: string;
|
|
1348
|
+
firstName: string;
|
|
1159
1349
|
email: string;
|
|
1350
|
+
createdAt: string | Date;
|
|
1351
|
+
id: string;
|
|
1352
|
+
updatedAt: string | Date;
|
|
1160
1353
|
phoneNumbers?: {
|
|
1161
1354
|
id: string;
|
|
1162
1355
|
phoneNumber: string;
|
|
@@ -1165,84 +1358,99 @@ export declare const agentClientLinksContract: {
|
|
|
1165
1358
|
}[] | undefined;
|
|
1166
1359
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1167
1360
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1361
|
+
canImpersonateUsers?: {
|
|
1362
|
+
lastName: string;
|
|
1363
|
+
firstName: string;
|
|
1364
|
+
id: string;
|
|
1365
|
+
}[] | undefined;
|
|
1168
1366
|
}>;
|
|
1169
1367
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1170
1368
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1171
1369
|
}, "strip", z.ZodTypeAny, {
|
|
1172
|
-
id: string;
|
|
1173
1370
|
createdAt: string;
|
|
1371
|
+
id: string;
|
|
1174
1372
|
updatedAt: string;
|
|
1175
1373
|
agentId: string;
|
|
1176
1374
|
agent: {
|
|
1177
|
-
id: string;
|
|
1178
|
-
createdAt: string;
|
|
1179
|
-
updatedAt: string;
|
|
1180
|
-
firstName: string;
|
|
1181
1375
|
lastName: string;
|
|
1376
|
+
firstName: string;
|
|
1182
1377
|
email: string;
|
|
1378
|
+
createdAt: string;
|
|
1379
|
+
id: string;
|
|
1183
1380
|
phoneNumbers: {
|
|
1184
1381
|
id: string;
|
|
1185
1382
|
phoneNumber: string;
|
|
1186
1383
|
isPrimary: boolean;
|
|
1187
1384
|
description?: string | null | undefined;
|
|
1188
1385
|
}[];
|
|
1386
|
+
updatedAt: string;
|
|
1189
1387
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1190
1388
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1389
|
+
canImpersonateUsers?: {
|
|
1390
|
+
lastName: string;
|
|
1391
|
+
firstName: string;
|
|
1392
|
+
id: string;
|
|
1393
|
+
}[] | undefined;
|
|
1191
1394
|
};
|
|
1395
|
+
clientId: string;
|
|
1192
1396
|
client: {
|
|
1397
|
+
createdAt: string;
|
|
1193
1398
|
id: string;
|
|
1194
|
-
name: string;
|
|
1195
1399
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1196
|
-
createdAt: string;
|
|
1197
1400
|
updatedAt: string;
|
|
1401
|
+
name: string;
|
|
1198
1402
|
crn: string | null;
|
|
1199
1403
|
govLink: string;
|
|
1200
1404
|
soleTrader: boolean;
|
|
1201
1405
|
director: string;
|
|
1202
1406
|
blacklistReason?: string | null | undefined;
|
|
1203
1407
|
lastUpdatedBy?: {
|
|
1204
|
-
id: string;
|
|
1205
|
-
firstName: string;
|
|
1206
1408
|
lastName: string;
|
|
1409
|
+
firstName: string;
|
|
1207
1410
|
email: string;
|
|
1411
|
+
id: string;
|
|
1208
1412
|
} | null | undefined;
|
|
1209
1413
|
agentClientLinks?: {
|
|
1210
1414
|
agentId: string;
|
|
1211
1415
|
} | null | undefined;
|
|
1212
1416
|
};
|
|
1213
|
-
clientId: string;
|
|
1214
|
-
createdBy: string;
|
|
1215
1417
|
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1418
|
+
createdBy: string;
|
|
1216
1419
|
creator: {
|
|
1217
|
-
id: string;
|
|
1218
|
-
createdAt: string;
|
|
1219
|
-
updatedAt: string;
|
|
1220
|
-
firstName: string;
|
|
1221
1420
|
lastName: string;
|
|
1421
|
+
firstName: string;
|
|
1222
1422
|
email: string;
|
|
1423
|
+
createdAt: string;
|
|
1424
|
+
id: string;
|
|
1223
1425
|
phoneNumbers: {
|
|
1224
1426
|
id: string;
|
|
1225
1427
|
phoneNumber: string;
|
|
1226
1428
|
isPrimary: boolean;
|
|
1227
1429
|
description?: string | null | undefined;
|
|
1228
1430
|
}[];
|
|
1431
|
+
updatedAt: string;
|
|
1229
1432
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1230
1433
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1434
|
+
canImpersonateUsers?: {
|
|
1435
|
+
lastName: string;
|
|
1436
|
+
firstName: string;
|
|
1437
|
+
id: string;
|
|
1438
|
+
}[] | undefined;
|
|
1231
1439
|
};
|
|
1232
1440
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
1233
1441
|
appliedChanges?: Record<string, unknown> | null | undefined;
|
|
1234
1442
|
}, {
|
|
1235
|
-
id: string;
|
|
1236
1443
|
createdAt: string | Date;
|
|
1444
|
+
id: string;
|
|
1237
1445
|
updatedAt: string | Date;
|
|
1238
1446
|
agentId: string;
|
|
1239
1447
|
agent: {
|
|
1240
|
-
id: string;
|
|
1241
|
-
createdAt: string | Date;
|
|
1242
|
-
updatedAt: string | Date;
|
|
1243
|
-
firstName: string;
|
|
1244
1448
|
lastName: string;
|
|
1449
|
+
firstName: string;
|
|
1245
1450
|
email: string;
|
|
1451
|
+
createdAt: string | Date;
|
|
1452
|
+
id: string;
|
|
1453
|
+
updatedAt: string | Date;
|
|
1246
1454
|
phoneNumbers?: {
|
|
1247
1455
|
id: string;
|
|
1248
1456
|
phoneNumber: string;
|
|
@@ -1251,38 +1459,43 @@ export declare const agentClientLinksContract: {
|
|
|
1251
1459
|
}[] | undefined;
|
|
1252
1460
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1253
1461
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1462
|
+
canImpersonateUsers?: {
|
|
1463
|
+
lastName: string;
|
|
1464
|
+
firstName: string;
|
|
1465
|
+
id: string;
|
|
1466
|
+
}[] | undefined;
|
|
1254
1467
|
};
|
|
1468
|
+
clientId: string;
|
|
1255
1469
|
client: {
|
|
1470
|
+
createdAt: string | Date;
|
|
1256
1471
|
id: string;
|
|
1257
|
-
name: string;
|
|
1258
1472
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1259
|
-
createdAt: string | Date;
|
|
1260
1473
|
updatedAt: string | Date;
|
|
1474
|
+
name: string;
|
|
1261
1475
|
crn: string | null;
|
|
1262
1476
|
govLink: string;
|
|
1263
1477
|
soleTrader: boolean;
|
|
1264
1478
|
director: string;
|
|
1265
1479
|
blacklistReason?: string | null | undefined;
|
|
1266
1480
|
lastUpdatedBy?: {
|
|
1267
|
-
id: string;
|
|
1268
|
-
firstName: string;
|
|
1269
1481
|
lastName: string;
|
|
1482
|
+
firstName: string;
|
|
1270
1483
|
email: string;
|
|
1484
|
+
id: string;
|
|
1271
1485
|
} | null | undefined;
|
|
1272
1486
|
agentClientLinks?: {
|
|
1273
1487
|
agentId: string;
|
|
1274
1488
|
} | null | undefined;
|
|
1275
1489
|
};
|
|
1276
|
-
clientId: string;
|
|
1277
|
-
createdBy: string;
|
|
1278
1490
|
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1491
|
+
createdBy: string;
|
|
1279
1492
|
creator: {
|
|
1280
|
-
id: string;
|
|
1281
|
-
createdAt: string | Date;
|
|
1282
|
-
updatedAt: string | Date;
|
|
1283
|
-
firstName: string;
|
|
1284
1493
|
lastName: string;
|
|
1494
|
+
firstName: string;
|
|
1285
1495
|
email: string;
|
|
1496
|
+
createdAt: string | Date;
|
|
1497
|
+
id: string;
|
|
1498
|
+
updatedAt: string | Date;
|
|
1286
1499
|
phoneNumbers?: {
|
|
1287
1500
|
id: string;
|
|
1288
1501
|
phoneNumber: string;
|
|
@@ -1291,6 +1504,11 @@ export declare const agentClientLinksContract: {
|
|
|
1291
1504
|
}[] | undefined;
|
|
1292
1505
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1293
1506
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1507
|
+
canImpersonateUsers?: {
|
|
1508
|
+
lastName: string;
|
|
1509
|
+
firstName: string;
|
|
1510
|
+
id: string;
|
|
1511
|
+
}[] | undefined;
|
|
1294
1512
|
};
|
|
1295
1513
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
1296
1514
|
appliedChanges?: Record<string, unknown> | null | undefined;
|
|
@@ -1303,65 +1521,75 @@ export declare const agentClientLinksContract: {
|
|
|
1303
1521
|
}, "strip", z.ZodTypeAny, {
|
|
1304
1522
|
limit: number;
|
|
1305
1523
|
items: {
|
|
1306
|
-
id: string;
|
|
1307
1524
|
createdAt: string;
|
|
1525
|
+
id: string;
|
|
1308
1526
|
updatedAt: string;
|
|
1309
1527
|
agentId: string;
|
|
1310
1528
|
agent: {
|
|
1311
|
-
id: string;
|
|
1312
|
-
createdAt: string;
|
|
1313
|
-
updatedAt: string;
|
|
1314
|
-
firstName: string;
|
|
1315
1529
|
lastName: string;
|
|
1530
|
+
firstName: string;
|
|
1316
1531
|
email: string;
|
|
1532
|
+
createdAt: string;
|
|
1533
|
+
id: string;
|
|
1317
1534
|
phoneNumbers: {
|
|
1318
1535
|
id: string;
|
|
1319
1536
|
phoneNumber: string;
|
|
1320
1537
|
isPrimary: boolean;
|
|
1321
1538
|
description?: string | null | undefined;
|
|
1322
1539
|
}[];
|
|
1540
|
+
updatedAt: string;
|
|
1323
1541
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1324
1542
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1543
|
+
canImpersonateUsers?: {
|
|
1544
|
+
lastName: string;
|
|
1545
|
+
firstName: string;
|
|
1546
|
+
id: string;
|
|
1547
|
+
}[] | undefined;
|
|
1325
1548
|
};
|
|
1549
|
+
clientId: string;
|
|
1326
1550
|
client: {
|
|
1551
|
+
createdAt: string;
|
|
1327
1552
|
id: string;
|
|
1328
|
-
name: string;
|
|
1329
1553
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1330
|
-
createdAt: string;
|
|
1331
1554
|
updatedAt: string;
|
|
1555
|
+
name: string;
|
|
1332
1556
|
crn: string | null;
|
|
1333
1557
|
govLink: string;
|
|
1334
1558
|
soleTrader: boolean;
|
|
1335
1559
|
director: string;
|
|
1336
1560
|
blacklistReason?: string | null | undefined;
|
|
1337
1561
|
lastUpdatedBy?: {
|
|
1338
|
-
id: string;
|
|
1339
|
-
firstName: string;
|
|
1340
1562
|
lastName: string;
|
|
1563
|
+
firstName: string;
|
|
1341
1564
|
email: string;
|
|
1565
|
+
id: string;
|
|
1342
1566
|
} | null | undefined;
|
|
1343
1567
|
agentClientLinks?: {
|
|
1344
1568
|
agentId: string;
|
|
1345
1569
|
} | null | undefined;
|
|
1346
1570
|
};
|
|
1347
|
-
clientId: string;
|
|
1348
|
-
createdBy: string;
|
|
1349
1571
|
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1572
|
+
createdBy: string;
|
|
1350
1573
|
creator: {
|
|
1351
|
-
id: string;
|
|
1352
|
-
createdAt: string;
|
|
1353
|
-
updatedAt: string;
|
|
1354
|
-
firstName: string;
|
|
1355
1574
|
lastName: string;
|
|
1575
|
+
firstName: string;
|
|
1356
1576
|
email: string;
|
|
1577
|
+
createdAt: string;
|
|
1578
|
+
id: string;
|
|
1357
1579
|
phoneNumbers: {
|
|
1358
1580
|
id: string;
|
|
1359
1581
|
phoneNumber: string;
|
|
1360
1582
|
isPrimary: boolean;
|
|
1361
1583
|
description?: string | null | undefined;
|
|
1362
1584
|
}[];
|
|
1585
|
+
updatedAt: string;
|
|
1363
1586
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1364
1587
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1588
|
+
canImpersonateUsers?: {
|
|
1589
|
+
lastName: string;
|
|
1590
|
+
firstName: string;
|
|
1591
|
+
id: string;
|
|
1592
|
+
}[] | undefined;
|
|
1365
1593
|
};
|
|
1366
1594
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
1367
1595
|
appliedChanges?: Record<string, unknown> | null | undefined;
|
|
@@ -1373,17 +1601,17 @@ export declare const agentClientLinksContract: {
|
|
|
1373
1601
|
}, {
|
|
1374
1602
|
limit: number;
|
|
1375
1603
|
items: {
|
|
1376
|
-
id: string;
|
|
1377
1604
|
createdAt: string | Date;
|
|
1605
|
+
id: string;
|
|
1378
1606
|
updatedAt: string | Date;
|
|
1379
1607
|
agentId: string;
|
|
1380
1608
|
agent: {
|
|
1381
|
-
id: string;
|
|
1382
|
-
createdAt: string | Date;
|
|
1383
|
-
updatedAt: string | Date;
|
|
1384
|
-
firstName: string;
|
|
1385
1609
|
lastName: string;
|
|
1610
|
+
firstName: string;
|
|
1386
1611
|
email: string;
|
|
1612
|
+
createdAt: string | Date;
|
|
1613
|
+
id: string;
|
|
1614
|
+
updatedAt: string | Date;
|
|
1387
1615
|
phoneNumbers?: {
|
|
1388
1616
|
id: string;
|
|
1389
1617
|
phoneNumber: string;
|
|
@@ -1392,38 +1620,43 @@ export declare const agentClientLinksContract: {
|
|
|
1392
1620
|
}[] | undefined;
|
|
1393
1621
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1394
1622
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1623
|
+
canImpersonateUsers?: {
|
|
1624
|
+
lastName: string;
|
|
1625
|
+
firstName: string;
|
|
1626
|
+
id: string;
|
|
1627
|
+
}[] | undefined;
|
|
1395
1628
|
};
|
|
1629
|
+
clientId: string;
|
|
1396
1630
|
client: {
|
|
1631
|
+
createdAt: string | Date;
|
|
1397
1632
|
id: string;
|
|
1398
|
-
name: string;
|
|
1399
1633
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1400
|
-
createdAt: string | Date;
|
|
1401
1634
|
updatedAt: string | Date;
|
|
1635
|
+
name: string;
|
|
1402
1636
|
crn: string | null;
|
|
1403
1637
|
govLink: string;
|
|
1404
1638
|
soleTrader: boolean;
|
|
1405
1639
|
director: string;
|
|
1406
1640
|
blacklistReason?: string | null | undefined;
|
|
1407
1641
|
lastUpdatedBy?: {
|
|
1408
|
-
id: string;
|
|
1409
|
-
firstName: string;
|
|
1410
1642
|
lastName: string;
|
|
1643
|
+
firstName: string;
|
|
1411
1644
|
email: string;
|
|
1645
|
+
id: string;
|
|
1412
1646
|
} | null | undefined;
|
|
1413
1647
|
agentClientLinks?: {
|
|
1414
1648
|
agentId: string;
|
|
1415
1649
|
} | null | undefined;
|
|
1416
1650
|
};
|
|
1417
|
-
clientId: string;
|
|
1418
|
-
createdBy: string;
|
|
1419
1651
|
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1652
|
+
createdBy: string;
|
|
1420
1653
|
creator: {
|
|
1421
|
-
id: string;
|
|
1422
|
-
createdAt: string | Date;
|
|
1423
|
-
updatedAt: string | Date;
|
|
1424
|
-
firstName: string;
|
|
1425
1654
|
lastName: string;
|
|
1655
|
+
firstName: string;
|
|
1426
1656
|
email: string;
|
|
1657
|
+
createdAt: string | Date;
|
|
1658
|
+
id: string;
|
|
1659
|
+
updatedAt: string | Date;
|
|
1427
1660
|
phoneNumbers?: {
|
|
1428
1661
|
id: string;
|
|
1429
1662
|
phoneNumber: string;
|
|
@@ -1432,6 +1665,11 @@ export declare const agentClientLinksContract: {
|
|
|
1432
1665
|
}[] | undefined;
|
|
1433
1666
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1434
1667
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1668
|
+
canImpersonateUsers?: {
|
|
1669
|
+
lastName: string;
|
|
1670
|
+
firstName: string;
|
|
1671
|
+
id: string;
|
|
1672
|
+
}[] | undefined;
|
|
1435
1673
|
};
|
|
1436
1674
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
1437
1675
|
appliedChanges?: Record<string, unknown> | null | undefined;
|
|
@@ -1576,15 +1814,15 @@ export declare const agentClientLinksContract: {
|
|
|
1576
1814
|
lastName: z.ZodString;
|
|
1577
1815
|
email: z.ZodString;
|
|
1578
1816
|
}, "strip", z.ZodTypeAny, {
|
|
1579
|
-
id: string;
|
|
1580
|
-
firstName: string;
|
|
1581
1817
|
lastName: string;
|
|
1818
|
+
firstName: string;
|
|
1582
1819
|
email: string;
|
|
1583
|
-
}, {
|
|
1584
1820
|
id: string;
|
|
1585
|
-
|
|
1821
|
+
}, {
|
|
1586
1822
|
lastName: string;
|
|
1823
|
+
firstName: string;
|
|
1587
1824
|
email: string;
|
|
1825
|
+
id: string;
|
|
1588
1826
|
}>>>;
|
|
1589
1827
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1590
1828
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -1596,41 +1834,41 @@ export declare const agentClientLinksContract: {
|
|
|
1596
1834
|
agentId: string;
|
|
1597
1835
|
}>>>;
|
|
1598
1836
|
}, "strip", z.ZodTypeAny, {
|
|
1837
|
+
createdAt: string;
|
|
1599
1838
|
id: string;
|
|
1600
|
-
name: string;
|
|
1601
1839
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1602
|
-
createdAt: string;
|
|
1603
1840
|
updatedAt: string;
|
|
1841
|
+
name: string;
|
|
1604
1842
|
crn: string | null;
|
|
1605
1843
|
govLink: string;
|
|
1606
1844
|
soleTrader: boolean;
|
|
1607
1845
|
director: string;
|
|
1608
1846
|
blacklistReason?: string | null | undefined;
|
|
1609
1847
|
lastUpdatedBy?: {
|
|
1610
|
-
id: string;
|
|
1611
|
-
firstName: string;
|
|
1612
1848
|
lastName: string;
|
|
1849
|
+
firstName: string;
|
|
1613
1850
|
email: string;
|
|
1851
|
+
id: string;
|
|
1614
1852
|
} | null | undefined;
|
|
1615
1853
|
agentClientLinks?: {
|
|
1616
1854
|
agentId: string;
|
|
1617
1855
|
} | null | undefined;
|
|
1618
1856
|
}, {
|
|
1857
|
+
createdAt: string | Date;
|
|
1619
1858
|
id: string;
|
|
1620
|
-
name: string;
|
|
1621
1859
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1622
|
-
createdAt: string | Date;
|
|
1623
1860
|
updatedAt: string | Date;
|
|
1861
|
+
name: string;
|
|
1624
1862
|
crn: string | null;
|
|
1625
1863
|
govLink: string;
|
|
1626
1864
|
soleTrader: boolean;
|
|
1627
1865
|
director: string;
|
|
1628
1866
|
blacklistReason?: string | null | undefined;
|
|
1629
1867
|
lastUpdatedBy?: {
|
|
1630
|
-
id: string;
|
|
1631
|
-
firstName: string;
|
|
1632
1868
|
lastName: string;
|
|
1869
|
+
firstName: string;
|
|
1633
1870
|
email: string;
|
|
1871
|
+
id: string;
|
|
1634
1872
|
} | null | undefined;
|
|
1635
1873
|
agentClientLinks?: {
|
|
1636
1874
|
agentId: string;
|
|
@@ -1660,30 +1898,48 @@ export declare const agentClientLinksContract: {
|
|
|
1660
1898
|
}>, "many">>>;
|
|
1661
1899
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
1662
1900
|
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
1901
|
+
canImpersonateUsers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1902
|
+
id: z.ZodString;
|
|
1903
|
+
firstName: z.ZodString;
|
|
1904
|
+
lastName: z.ZodString;
|
|
1905
|
+
}, "strip", z.ZodTypeAny, {
|
|
1906
|
+
lastName: string;
|
|
1907
|
+
firstName: string;
|
|
1908
|
+
id: string;
|
|
1909
|
+
}, {
|
|
1910
|
+
lastName: string;
|
|
1911
|
+
firstName: string;
|
|
1912
|
+
id: string;
|
|
1913
|
+
}>, "many">>;
|
|
1663
1914
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1664
1915
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1665
1916
|
}, "strip", z.ZodTypeAny, {
|
|
1666
|
-
id: string;
|
|
1667
|
-
createdAt: string;
|
|
1668
|
-
updatedAt: string;
|
|
1669
|
-
firstName: string;
|
|
1670
1917
|
lastName: string;
|
|
1918
|
+
firstName: string;
|
|
1671
1919
|
email: string;
|
|
1920
|
+
createdAt: string;
|
|
1921
|
+
id: string;
|
|
1672
1922
|
phoneNumbers: {
|
|
1673
1923
|
id: string;
|
|
1674
1924
|
phoneNumber: string;
|
|
1675
1925
|
isPrimary: boolean;
|
|
1676
1926
|
description?: string | null | undefined;
|
|
1677
1927
|
}[];
|
|
1928
|
+
updatedAt: string;
|
|
1678
1929
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1679
1930
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1931
|
+
canImpersonateUsers?: {
|
|
1932
|
+
lastName: string;
|
|
1933
|
+
firstName: string;
|
|
1934
|
+
id: string;
|
|
1935
|
+
}[] | undefined;
|
|
1680
1936
|
}, {
|
|
1681
|
-
id: string;
|
|
1682
|
-
createdAt: string | Date;
|
|
1683
|
-
updatedAt: string | Date;
|
|
1684
|
-
firstName: string;
|
|
1685
1937
|
lastName: string;
|
|
1938
|
+
firstName: string;
|
|
1686
1939
|
email: string;
|
|
1940
|
+
createdAt: string | Date;
|
|
1941
|
+
id: string;
|
|
1942
|
+
updatedAt: string | Date;
|
|
1687
1943
|
phoneNumbers?: {
|
|
1688
1944
|
id: string;
|
|
1689
1945
|
phoneNumber: string;
|
|
@@ -1692,6 +1948,11 @@ export declare const agentClientLinksContract: {
|
|
|
1692
1948
|
}[] | undefined;
|
|
1693
1949
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1694
1950
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1951
|
+
canImpersonateUsers?: {
|
|
1952
|
+
lastName: string;
|
|
1953
|
+
firstName: string;
|
|
1954
|
+
id: string;
|
|
1955
|
+
}[] | undefined;
|
|
1695
1956
|
}>;
|
|
1696
1957
|
linkType: z.ZodEnum<["CREATION", "EDIT_SUGGESTION"]>;
|
|
1697
1958
|
suggestedChanges: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -1720,30 +1981,48 @@ export declare const agentClientLinksContract: {
|
|
|
1720
1981
|
}>, "many">>>;
|
|
1721
1982
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
1722
1983
|
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
1984
|
+
canImpersonateUsers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1985
|
+
id: z.ZodString;
|
|
1986
|
+
firstName: z.ZodString;
|
|
1987
|
+
lastName: z.ZodString;
|
|
1988
|
+
}, "strip", z.ZodTypeAny, {
|
|
1989
|
+
lastName: string;
|
|
1990
|
+
firstName: string;
|
|
1991
|
+
id: string;
|
|
1992
|
+
}, {
|
|
1993
|
+
lastName: string;
|
|
1994
|
+
firstName: string;
|
|
1995
|
+
id: string;
|
|
1996
|
+
}>, "many">>;
|
|
1723
1997
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1724
1998
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1725
1999
|
}, "strip", z.ZodTypeAny, {
|
|
1726
|
-
id: string;
|
|
1727
|
-
createdAt: string;
|
|
1728
|
-
updatedAt: string;
|
|
1729
|
-
firstName: string;
|
|
1730
2000
|
lastName: string;
|
|
2001
|
+
firstName: string;
|
|
1731
2002
|
email: string;
|
|
2003
|
+
createdAt: string;
|
|
2004
|
+
id: string;
|
|
1732
2005
|
phoneNumbers: {
|
|
1733
2006
|
id: string;
|
|
1734
2007
|
phoneNumber: string;
|
|
1735
2008
|
isPrimary: boolean;
|
|
1736
2009
|
description?: string | null | undefined;
|
|
1737
2010
|
}[];
|
|
2011
|
+
updatedAt: string;
|
|
1738
2012
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1739
2013
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "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
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
2014
|
+
canImpersonateUsers?: {
|
|
2015
|
+
lastName: string;
|
|
2016
|
+
firstName: string;
|
|
2017
|
+
id: string;
|
|
2018
|
+
}[] | undefined;
|
|
2019
|
+
}, {
|
|
1745
2020
|
lastName: string;
|
|
2021
|
+
firstName: string;
|
|
1746
2022
|
email: string;
|
|
2023
|
+
createdAt: string | Date;
|
|
2024
|
+
id: string;
|
|
2025
|
+
updatedAt: string | Date;
|
|
1747
2026
|
phoneNumbers?: {
|
|
1748
2027
|
id: string;
|
|
1749
2028
|
phoneNumber: string;
|
|
@@ -1752,84 +2031,99 @@ export declare const agentClientLinksContract: {
|
|
|
1752
2031
|
}[] | undefined;
|
|
1753
2032
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1754
2033
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2034
|
+
canImpersonateUsers?: {
|
|
2035
|
+
lastName: string;
|
|
2036
|
+
firstName: string;
|
|
2037
|
+
id: string;
|
|
2038
|
+
}[] | undefined;
|
|
1755
2039
|
}>;
|
|
1756
2040
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1757
2041
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1758
2042
|
}, "strip", z.ZodTypeAny, {
|
|
1759
|
-
id: string;
|
|
1760
2043
|
createdAt: string;
|
|
2044
|
+
id: string;
|
|
1761
2045
|
updatedAt: string;
|
|
1762
2046
|
agentId: string;
|
|
1763
2047
|
agent: {
|
|
1764
|
-
id: string;
|
|
1765
|
-
createdAt: string;
|
|
1766
|
-
updatedAt: string;
|
|
1767
|
-
firstName: string;
|
|
1768
2048
|
lastName: string;
|
|
2049
|
+
firstName: string;
|
|
1769
2050
|
email: string;
|
|
2051
|
+
createdAt: string;
|
|
2052
|
+
id: string;
|
|
1770
2053
|
phoneNumbers: {
|
|
1771
2054
|
id: string;
|
|
1772
2055
|
phoneNumber: string;
|
|
1773
2056
|
isPrimary: boolean;
|
|
1774
2057
|
description?: string | null | undefined;
|
|
1775
2058
|
}[];
|
|
2059
|
+
updatedAt: string;
|
|
1776
2060
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1777
2061
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2062
|
+
canImpersonateUsers?: {
|
|
2063
|
+
lastName: string;
|
|
2064
|
+
firstName: string;
|
|
2065
|
+
id: string;
|
|
2066
|
+
}[] | undefined;
|
|
1778
2067
|
};
|
|
2068
|
+
clientId: string;
|
|
1779
2069
|
client: {
|
|
2070
|
+
createdAt: string;
|
|
1780
2071
|
id: string;
|
|
1781
|
-
name: string;
|
|
1782
2072
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1783
|
-
createdAt: string;
|
|
1784
2073
|
updatedAt: string;
|
|
2074
|
+
name: string;
|
|
1785
2075
|
crn: string | null;
|
|
1786
2076
|
govLink: string;
|
|
1787
2077
|
soleTrader: boolean;
|
|
1788
2078
|
director: string;
|
|
1789
2079
|
blacklistReason?: string | null | undefined;
|
|
1790
2080
|
lastUpdatedBy?: {
|
|
1791
|
-
id: string;
|
|
1792
|
-
firstName: string;
|
|
1793
2081
|
lastName: string;
|
|
2082
|
+
firstName: string;
|
|
1794
2083
|
email: string;
|
|
2084
|
+
id: string;
|
|
1795
2085
|
} | null | undefined;
|
|
1796
2086
|
agentClientLinks?: {
|
|
1797
2087
|
agentId: string;
|
|
1798
2088
|
} | null | undefined;
|
|
1799
2089
|
};
|
|
1800
|
-
clientId: string;
|
|
1801
|
-
createdBy: string;
|
|
1802
2090
|
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
2091
|
+
createdBy: string;
|
|
1803
2092
|
creator: {
|
|
1804
|
-
id: string;
|
|
1805
|
-
createdAt: string;
|
|
1806
|
-
updatedAt: string;
|
|
1807
|
-
firstName: string;
|
|
1808
2093
|
lastName: string;
|
|
2094
|
+
firstName: string;
|
|
1809
2095
|
email: string;
|
|
2096
|
+
createdAt: string;
|
|
2097
|
+
id: string;
|
|
1810
2098
|
phoneNumbers: {
|
|
1811
2099
|
id: string;
|
|
1812
2100
|
phoneNumber: string;
|
|
1813
2101
|
isPrimary: boolean;
|
|
1814
2102
|
description?: string | null | undefined;
|
|
1815
2103
|
}[];
|
|
2104
|
+
updatedAt: string;
|
|
1816
2105
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1817
2106
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2107
|
+
canImpersonateUsers?: {
|
|
2108
|
+
lastName: string;
|
|
2109
|
+
firstName: string;
|
|
2110
|
+
id: string;
|
|
2111
|
+
}[] | undefined;
|
|
1818
2112
|
};
|
|
1819
2113
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
1820
2114
|
appliedChanges?: Record<string, unknown> | null | undefined;
|
|
1821
2115
|
}, {
|
|
1822
|
-
id: string;
|
|
1823
2116
|
createdAt: string | Date;
|
|
2117
|
+
id: string;
|
|
1824
2118
|
updatedAt: string | Date;
|
|
1825
2119
|
agentId: string;
|
|
1826
2120
|
agent: {
|
|
1827
|
-
id: string;
|
|
1828
|
-
createdAt: string | Date;
|
|
1829
|
-
updatedAt: string | Date;
|
|
1830
|
-
firstName: string;
|
|
1831
2121
|
lastName: string;
|
|
2122
|
+
firstName: string;
|
|
1832
2123
|
email: string;
|
|
2124
|
+
createdAt: string | Date;
|
|
2125
|
+
id: string;
|
|
2126
|
+
updatedAt: string | Date;
|
|
1833
2127
|
phoneNumbers?: {
|
|
1834
2128
|
id: string;
|
|
1835
2129
|
phoneNumber: string;
|
|
@@ -1838,38 +2132,43 @@ export declare const agentClientLinksContract: {
|
|
|
1838
2132
|
}[] | undefined;
|
|
1839
2133
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1840
2134
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2135
|
+
canImpersonateUsers?: {
|
|
2136
|
+
lastName: string;
|
|
2137
|
+
firstName: string;
|
|
2138
|
+
id: string;
|
|
2139
|
+
}[] | undefined;
|
|
1841
2140
|
};
|
|
2141
|
+
clientId: string;
|
|
1842
2142
|
client: {
|
|
2143
|
+
createdAt: string | Date;
|
|
1843
2144
|
id: string;
|
|
1844
|
-
name: string;
|
|
1845
2145
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1846
|
-
createdAt: string | Date;
|
|
1847
2146
|
updatedAt: string | Date;
|
|
2147
|
+
name: string;
|
|
1848
2148
|
crn: string | null;
|
|
1849
2149
|
govLink: string;
|
|
1850
2150
|
soleTrader: boolean;
|
|
1851
2151
|
director: string;
|
|
1852
2152
|
blacklistReason?: string | null | undefined;
|
|
1853
2153
|
lastUpdatedBy?: {
|
|
1854
|
-
id: string;
|
|
1855
|
-
firstName: string;
|
|
1856
2154
|
lastName: string;
|
|
2155
|
+
firstName: string;
|
|
1857
2156
|
email: string;
|
|
2157
|
+
id: string;
|
|
1858
2158
|
} | null | undefined;
|
|
1859
2159
|
agentClientLinks?: {
|
|
1860
2160
|
agentId: string;
|
|
1861
2161
|
} | null | undefined;
|
|
1862
2162
|
};
|
|
1863
|
-
clientId: string;
|
|
1864
|
-
createdBy: string;
|
|
1865
2163
|
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
2164
|
+
createdBy: string;
|
|
1866
2165
|
creator: {
|
|
1867
|
-
id: string;
|
|
1868
|
-
createdAt: string | Date;
|
|
1869
|
-
updatedAt: string | Date;
|
|
1870
|
-
firstName: string;
|
|
1871
2166
|
lastName: string;
|
|
2167
|
+
firstName: string;
|
|
1872
2168
|
email: string;
|
|
2169
|
+
createdAt: string | Date;
|
|
2170
|
+
id: string;
|
|
2171
|
+
updatedAt: string | Date;
|
|
1873
2172
|
phoneNumbers?: {
|
|
1874
2173
|
id: string;
|
|
1875
2174
|
phoneNumber: string;
|
|
@@ -1878,6 +2177,11 @@ export declare const agentClientLinksContract: {
|
|
|
1878
2177
|
}[] | undefined;
|
|
1879
2178
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1880
2179
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2180
|
+
canImpersonateUsers?: {
|
|
2181
|
+
lastName: string;
|
|
2182
|
+
firstName: string;
|
|
2183
|
+
id: string;
|
|
2184
|
+
}[] | undefined;
|
|
1881
2185
|
};
|
|
1882
2186
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
1883
2187
|
appliedChanges?: Record<string, unknown> | null | undefined;
|
|
@@ -2049,15 +2353,15 @@ export declare const agentClientLinksContract: {
|
|
|
2049
2353
|
lastName: z.ZodString;
|
|
2050
2354
|
email: z.ZodString;
|
|
2051
2355
|
}, "strip", z.ZodTypeAny, {
|
|
2052
|
-
id: string;
|
|
2053
|
-
firstName: string;
|
|
2054
2356
|
lastName: string;
|
|
2357
|
+
firstName: string;
|
|
2055
2358
|
email: string;
|
|
2056
|
-
}, {
|
|
2057
2359
|
id: string;
|
|
2058
|
-
|
|
2360
|
+
}, {
|
|
2059
2361
|
lastName: string;
|
|
2362
|
+
firstName: string;
|
|
2060
2363
|
email: string;
|
|
2364
|
+
id: string;
|
|
2061
2365
|
}>>>;
|
|
2062
2366
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2063
2367
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -2069,41 +2373,41 @@ export declare const agentClientLinksContract: {
|
|
|
2069
2373
|
agentId: string;
|
|
2070
2374
|
}>>>;
|
|
2071
2375
|
}, "strip", z.ZodTypeAny, {
|
|
2376
|
+
createdAt: string;
|
|
2072
2377
|
id: string;
|
|
2073
|
-
name: string;
|
|
2074
2378
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2075
|
-
createdAt: string;
|
|
2076
2379
|
updatedAt: string;
|
|
2380
|
+
name: string;
|
|
2077
2381
|
crn: string | null;
|
|
2078
2382
|
govLink: string;
|
|
2079
2383
|
soleTrader: boolean;
|
|
2080
2384
|
director: string;
|
|
2081
2385
|
blacklistReason?: string | null | undefined;
|
|
2082
2386
|
lastUpdatedBy?: {
|
|
2083
|
-
id: string;
|
|
2084
|
-
firstName: string;
|
|
2085
2387
|
lastName: string;
|
|
2388
|
+
firstName: string;
|
|
2086
2389
|
email: string;
|
|
2390
|
+
id: string;
|
|
2087
2391
|
} | null | undefined;
|
|
2088
2392
|
agentClientLinks?: {
|
|
2089
2393
|
agentId: string;
|
|
2090
2394
|
} | null | undefined;
|
|
2091
2395
|
}, {
|
|
2396
|
+
createdAt: string | Date;
|
|
2092
2397
|
id: string;
|
|
2093
|
-
name: string;
|
|
2094
2398
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2095
|
-
createdAt: string | Date;
|
|
2096
2399
|
updatedAt: string | Date;
|
|
2400
|
+
name: string;
|
|
2097
2401
|
crn: string | null;
|
|
2098
2402
|
govLink: string;
|
|
2099
2403
|
soleTrader: boolean;
|
|
2100
2404
|
director: string;
|
|
2101
2405
|
blacklistReason?: string | null | undefined;
|
|
2102
2406
|
lastUpdatedBy?: {
|
|
2103
|
-
id: string;
|
|
2104
|
-
firstName: string;
|
|
2105
2407
|
lastName: string;
|
|
2408
|
+
firstName: string;
|
|
2106
2409
|
email: string;
|
|
2410
|
+
id: string;
|
|
2107
2411
|
} | null | undefined;
|
|
2108
2412
|
agentClientLinks?: {
|
|
2109
2413
|
agentId: string;
|
|
@@ -2133,30 +2437,48 @@ export declare const agentClientLinksContract: {
|
|
|
2133
2437
|
}>, "many">>>;
|
|
2134
2438
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
2135
2439
|
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
2440
|
+
canImpersonateUsers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2441
|
+
id: z.ZodString;
|
|
2442
|
+
firstName: z.ZodString;
|
|
2443
|
+
lastName: z.ZodString;
|
|
2444
|
+
}, "strip", z.ZodTypeAny, {
|
|
2445
|
+
lastName: string;
|
|
2446
|
+
firstName: string;
|
|
2447
|
+
id: string;
|
|
2448
|
+
}, {
|
|
2449
|
+
lastName: string;
|
|
2450
|
+
firstName: string;
|
|
2451
|
+
id: string;
|
|
2452
|
+
}>, "many">>;
|
|
2136
2453
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2137
2454
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2138
2455
|
}, "strip", z.ZodTypeAny, {
|
|
2139
|
-
id: string;
|
|
2140
|
-
createdAt: string;
|
|
2141
|
-
updatedAt: string;
|
|
2142
|
-
firstName: string;
|
|
2143
2456
|
lastName: string;
|
|
2457
|
+
firstName: string;
|
|
2144
2458
|
email: string;
|
|
2459
|
+
createdAt: string;
|
|
2460
|
+
id: string;
|
|
2145
2461
|
phoneNumbers: {
|
|
2146
2462
|
id: string;
|
|
2147
2463
|
phoneNumber: string;
|
|
2148
2464
|
isPrimary: boolean;
|
|
2149
2465
|
description?: string | null | undefined;
|
|
2150
2466
|
}[];
|
|
2467
|
+
updatedAt: string;
|
|
2151
2468
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
2152
2469
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2470
|
+
canImpersonateUsers?: {
|
|
2471
|
+
lastName: string;
|
|
2472
|
+
firstName: string;
|
|
2473
|
+
id: string;
|
|
2474
|
+
}[] | undefined;
|
|
2153
2475
|
}, {
|
|
2154
|
-
id: string;
|
|
2155
|
-
createdAt: string | Date;
|
|
2156
|
-
updatedAt: string | Date;
|
|
2157
|
-
firstName: string;
|
|
2158
2476
|
lastName: string;
|
|
2477
|
+
firstName: string;
|
|
2159
2478
|
email: string;
|
|
2479
|
+
createdAt: string | Date;
|
|
2480
|
+
id: string;
|
|
2481
|
+
updatedAt: string | Date;
|
|
2160
2482
|
phoneNumbers?: {
|
|
2161
2483
|
id: string;
|
|
2162
2484
|
phoneNumber: string;
|
|
@@ -2165,6 +2487,11 @@ export declare const agentClientLinksContract: {
|
|
|
2165
2487
|
}[] | undefined;
|
|
2166
2488
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
2167
2489
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2490
|
+
canImpersonateUsers?: {
|
|
2491
|
+
lastName: string;
|
|
2492
|
+
firstName: string;
|
|
2493
|
+
id: string;
|
|
2494
|
+
}[] | undefined;
|
|
2168
2495
|
}>;
|
|
2169
2496
|
linkType: z.ZodEnum<["CREATION", "EDIT_SUGGESTION"]>;
|
|
2170
2497
|
suggestedChanges: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -2193,30 +2520,48 @@ export declare const agentClientLinksContract: {
|
|
|
2193
2520
|
}>, "many">>>;
|
|
2194
2521
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
2195
2522
|
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
2523
|
+
canImpersonateUsers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2524
|
+
id: z.ZodString;
|
|
2525
|
+
firstName: z.ZodString;
|
|
2526
|
+
lastName: z.ZodString;
|
|
2527
|
+
}, "strip", z.ZodTypeAny, {
|
|
2528
|
+
lastName: string;
|
|
2529
|
+
firstName: string;
|
|
2530
|
+
id: string;
|
|
2531
|
+
}, {
|
|
2532
|
+
lastName: string;
|
|
2533
|
+
firstName: string;
|
|
2534
|
+
id: string;
|
|
2535
|
+
}>, "many">>;
|
|
2196
2536
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2197
2537
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2198
2538
|
}, "strip", z.ZodTypeAny, {
|
|
2199
|
-
id: string;
|
|
2200
|
-
createdAt: string;
|
|
2201
|
-
updatedAt: string;
|
|
2202
|
-
firstName: string;
|
|
2203
2539
|
lastName: string;
|
|
2540
|
+
firstName: string;
|
|
2204
2541
|
email: string;
|
|
2542
|
+
createdAt: string;
|
|
2543
|
+
id: string;
|
|
2205
2544
|
phoneNumbers: {
|
|
2206
2545
|
id: string;
|
|
2207
2546
|
phoneNumber: string;
|
|
2208
2547
|
isPrimary: boolean;
|
|
2209
2548
|
description?: string | null | undefined;
|
|
2210
2549
|
}[];
|
|
2550
|
+
updatedAt: string;
|
|
2211
2551
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
2212
2552
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2553
|
+
canImpersonateUsers?: {
|
|
2554
|
+
lastName: string;
|
|
2555
|
+
firstName: string;
|
|
2556
|
+
id: string;
|
|
2557
|
+
}[] | undefined;
|
|
2213
2558
|
}, {
|
|
2214
|
-
id: string;
|
|
2215
|
-
createdAt: string | Date;
|
|
2216
|
-
updatedAt: string | Date;
|
|
2217
|
-
firstName: string;
|
|
2218
2559
|
lastName: string;
|
|
2560
|
+
firstName: string;
|
|
2219
2561
|
email: string;
|
|
2562
|
+
createdAt: string | Date;
|
|
2563
|
+
id: string;
|
|
2564
|
+
updatedAt: string | Date;
|
|
2220
2565
|
phoneNumbers?: {
|
|
2221
2566
|
id: string;
|
|
2222
2567
|
phoneNumber: string;
|
|
@@ -2225,84 +2570,99 @@ export declare const agentClientLinksContract: {
|
|
|
2225
2570
|
}[] | undefined;
|
|
2226
2571
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
2227
2572
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2573
|
+
canImpersonateUsers?: {
|
|
2574
|
+
lastName: string;
|
|
2575
|
+
firstName: string;
|
|
2576
|
+
id: string;
|
|
2577
|
+
}[] | undefined;
|
|
2228
2578
|
}>;
|
|
2229
2579
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2230
2580
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2231
2581
|
}, "strip", z.ZodTypeAny, {
|
|
2232
|
-
id: string;
|
|
2233
2582
|
createdAt: string;
|
|
2583
|
+
id: string;
|
|
2234
2584
|
updatedAt: string;
|
|
2235
2585
|
agentId: string;
|
|
2236
2586
|
agent: {
|
|
2237
|
-
id: string;
|
|
2238
|
-
createdAt: string;
|
|
2239
|
-
updatedAt: string;
|
|
2240
|
-
firstName: string;
|
|
2241
2587
|
lastName: string;
|
|
2588
|
+
firstName: string;
|
|
2242
2589
|
email: string;
|
|
2590
|
+
createdAt: string;
|
|
2591
|
+
id: string;
|
|
2243
2592
|
phoneNumbers: {
|
|
2244
2593
|
id: string;
|
|
2245
2594
|
phoneNumber: string;
|
|
2246
2595
|
isPrimary: boolean;
|
|
2247
2596
|
description?: string | null | undefined;
|
|
2248
2597
|
}[];
|
|
2598
|
+
updatedAt: string;
|
|
2249
2599
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
2250
2600
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2601
|
+
canImpersonateUsers?: {
|
|
2602
|
+
lastName: string;
|
|
2603
|
+
firstName: string;
|
|
2604
|
+
id: string;
|
|
2605
|
+
}[] | undefined;
|
|
2251
2606
|
};
|
|
2607
|
+
clientId: string;
|
|
2252
2608
|
client: {
|
|
2609
|
+
createdAt: string;
|
|
2253
2610
|
id: string;
|
|
2254
|
-
name: string;
|
|
2255
2611
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2256
|
-
createdAt: string;
|
|
2257
2612
|
updatedAt: string;
|
|
2613
|
+
name: string;
|
|
2258
2614
|
crn: string | null;
|
|
2259
2615
|
govLink: string;
|
|
2260
2616
|
soleTrader: boolean;
|
|
2261
2617
|
director: string;
|
|
2262
2618
|
blacklistReason?: string | null | undefined;
|
|
2263
2619
|
lastUpdatedBy?: {
|
|
2264
|
-
id: string;
|
|
2265
|
-
firstName: string;
|
|
2266
2620
|
lastName: string;
|
|
2621
|
+
firstName: string;
|
|
2267
2622
|
email: string;
|
|
2623
|
+
id: string;
|
|
2268
2624
|
} | null | undefined;
|
|
2269
2625
|
agentClientLinks?: {
|
|
2270
2626
|
agentId: string;
|
|
2271
2627
|
} | null | undefined;
|
|
2272
2628
|
};
|
|
2273
|
-
clientId: string;
|
|
2274
|
-
createdBy: string;
|
|
2275
2629
|
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
2630
|
+
createdBy: string;
|
|
2276
2631
|
creator: {
|
|
2277
|
-
id: string;
|
|
2278
|
-
createdAt: string;
|
|
2279
|
-
updatedAt: string;
|
|
2280
|
-
firstName: string;
|
|
2281
2632
|
lastName: string;
|
|
2633
|
+
firstName: string;
|
|
2282
2634
|
email: string;
|
|
2635
|
+
createdAt: string;
|
|
2636
|
+
id: string;
|
|
2283
2637
|
phoneNumbers: {
|
|
2284
2638
|
id: string;
|
|
2285
2639
|
phoneNumber: string;
|
|
2286
2640
|
isPrimary: boolean;
|
|
2287
2641
|
description?: string | null | undefined;
|
|
2288
2642
|
}[];
|
|
2643
|
+
updatedAt: string;
|
|
2289
2644
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
2290
2645
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2646
|
+
canImpersonateUsers?: {
|
|
2647
|
+
lastName: string;
|
|
2648
|
+
firstName: string;
|
|
2649
|
+
id: string;
|
|
2650
|
+
}[] | undefined;
|
|
2291
2651
|
};
|
|
2292
2652
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
2293
2653
|
appliedChanges?: Record<string, unknown> | null | undefined;
|
|
2294
2654
|
}, {
|
|
2295
|
-
id: string;
|
|
2296
2655
|
createdAt: string | Date;
|
|
2656
|
+
id: string;
|
|
2297
2657
|
updatedAt: string | Date;
|
|
2298
2658
|
agentId: string;
|
|
2299
2659
|
agent: {
|
|
2300
|
-
id: string;
|
|
2301
|
-
createdAt: string | Date;
|
|
2302
|
-
updatedAt: string | Date;
|
|
2303
|
-
firstName: string;
|
|
2304
2660
|
lastName: string;
|
|
2661
|
+
firstName: string;
|
|
2305
2662
|
email: string;
|
|
2663
|
+
createdAt: string | Date;
|
|
2664
|
+
id: string;
|
|
2665
|
+
updatedAt: string | Date;
|
|
2306
2666
|
phoneNumbers?: {
|
|
2307
2667
|
id: string;
|
|
2308
2668
|
phoneNumber: string;
|
|
@@ -2311,38 +2671,43 @@ export declare const agentClientLinksContract: {
|
|
|
2311
2671
|
}[] | undefined;
|
|
2312
2672
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
2313
2673
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2674
|
+
canImpersonateUsers?: {
|
|
2675
|
+
lastName: string;
|
|
2676
|
+
firstName: string;
|
|
2677
|
+
id: string;
|
|
2678
|
+
}[] | undefined;
|
|
2314
2679
|
};
|
|
2680
|
+
clientId: string;
|
|
2315
2681
|
client: {
|
|
2682
|
+
createdAt: string | Date;
|
|
2316
2683
|
id: string;
|
|
2317
|
-
name: string;
|
|
2318
2684
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2319
|
-
createdAt: string | Date;
|
|
2320
2685
|
updatedAt: string | Date;
|
|
2686
|
+
name: string;
|
|
2321
2687
|
crn: string | null;
|
|
2322
2688
|
govLink: string;
|
|
2323
2689
|
soleTrader: boolean;
|
|
2324
2690
|
director: string;
|
|
2325
2691
|
blacklistReason?: string | null | undefined;
|
|
2326
2692
|
lastUpdatedBy?: {
|
|
2327
|
-
id: string;
|
|
2328
|
-
firstName: string;
|
|
2329
2693
|
lastName: string;
|
|
2694
|
+
firstName: string;
|
|
2330
2695
|
email: string;
|
|
2696
|
+
id: string;
|
|
2331
2697
|
} | null | undefined;
|
|
2332
2698
|
agentClientLinks?: {
|
|
2333
2699
|
agentId: string;
|
|
2334
2700
|
} | null | undefined;
|
|
2335
2701
|
};
|
|
2336
|
-
clientId: string;
|
|
2337
|
-
createdBy: string;
|
|
2338
2702
|
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
2703
|
+
createdBy: string;
|
|
2339
2704
|
creator: {
|
|
2340
|
-
id: string;
|
|
2341
|
-
createdAt: string | Date;
|
|
2342
|
-
updatedAt: string | Date;
|
|
2343
|
-
firstName: string;
|
|
2344
2705
|
lastName: string;
|
|
2706
|
+
firstName: string;
|
|
2345
2707
|
email: string;
|
|
2708
|
+
createdAt: string | Date;
|
|
2709
|
+
id: string;
|
|
2710
|
+
updatedAt: string | Date;
|
|
2346
2711
|
phoneNumbers?: {
|
|
2347
2712
|
id: string;
|
|
2348
2713
|
phoneNumber: string;
|
|
@@ -2351,6 +2716,11 @@ export declare const agentClientLinksContract: {
|
|
|
2351
2716
|
}[] | undefined;
|
|
2352
2717
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
2353
2718
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2719
|
+
canImpersonateUsers?: {
|
|
2720
|
+
lastName: string;
|
|
2721
|
+
firstName: string;
|
|
2722
|
+
id: string;
|
|
2723
|
+
}[] | undefined;
|
|
2354
2724
|
};
|
|
2355
2725
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
2356
2726
|
appliedChanges?: Record<string, unknown> | null | undefined;
|