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