@dakkitor/api-contracts 1.1.72 → 1.1.75
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/abilities/second-agent.abilities.json +2 -4
- package/dist/actives/actives.contract.d.ts +2959 -2199
- package/dist/actives/actives.contract.d.ts.map +1 -1
- package/dist/agent-client-links/agent-client-links.contract.d.ts +416 -416
- package/dist/auth/auth.contract.d.ts +4 -4
- package/dist/bookings/bookings.contract.d.ts +2634 -1894
- package/dist/bookings/bookings.contract.d.ts.map +1 -1
- package/dist/bookings/bookings.contract.js +0 -2
- package/dist/call-history/call-history.contract.d.ts +409 -409
- package/dist/client-contacts/client-contacts.contract.d.ts +231 -231
- package/dist/clients/clients.contract.d.ts +98 -98
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +1269 -749
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts.map +1 -1
- package/dist/collaborations/collaborations.contract.d.ts +1069 -609
- package/dist/collaborations/collaborations.contract.d.ts.map +1 -1
- package/dist/collaborations/collaborations.contract.js +2 -11
- package/dist/common/common-schemas.d.ts +0 -17
- package/dist/common/common-schemas.d.ts.map +1 -1
- package/dist/common/common-schemas.js +1 -9
- package/dist/companies/companies.contract.d.ts +36 -36
- package/dist/curated-workers/curated-workers.contract.d.ts +213 -213
- package/dist/jobs/jobs.contract.d.ts +1053 -533
- package/dist/jobs/jobs.contract.d.ts.map +1 -1
- package/dist/lead-assignments/lead-assignments.contract.d.ts +344 -344
- package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +111 -111
- package/dist/leads/leads.contract.d.ts +101 -101
- package/dist/users/users.contract.d.ts +132 -132
- package/dist/workers/workers.contract.d.ts +200 -200
- 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
|
-
|
|
22
|
+
id: string;
|
|
23
23
|
firstName: string;
|
|
24
|
+
lastName: string;
|
|
24
25
|
email: string;
|
|
25
|
-
id: string;
|
|
26
26
|
}, {
|
|
27
|
-
|
|
27
|
+
id: string;
|
|
28
28
|
firstName: string;
|
|
29
|
+
lastName: string;
|
|
29
30
|
email: string;
|
|
30
|
-
id: string;
|
|
31
31
|
}>>>;
|
|
32
32
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
33
33
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -39,9 +39,9 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
39
39
|
agentId: string;
|
|
40
40
|
}>>>;
|
|
41
41
|
}, "strip", z.ZodTypeAny, {
|
|
42
|
-
createdAt: string;
|
|
43
42
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
44
43
|
id: string;
|
|
44
|
+
createdAt: string;
|
|
45
45
|
updatedAt: string;
|
|
46
46
|
name: string;
|
|
47
47
|
crn: string | null;
|
|
@@ -50,18 +50,18 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
50
50
|
director: string;
|
|
51
51
|
blacklistReason?: string | null | undefined;
|
|
52
52
|
lastUpdatedBy?: {
|
|
53
|
-
|
|
53
|
+
id: string;
|
|
54
54
|
firstName: string;
|
|
55
|
+
lastName: string;
|
|
55
56
|
email: string;
|
|
56
|
-
id: string;
|
|
57
57
|
} | null | undefined;
|
|
58
58
|
agentClientLinks?: {
|
|
59
59
|
agentId: string;
|
|
60
60
|
} | null | undefined;
|
|
61
61
|
}, {
|
|
62
|
-
createdAt: string | Date;
|
|
63
62
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
64
63
|
id: string;
|
|
64
|
+
createdAt: string | Date;
|
|
65
65
|
updatedAt: string | Date;
|
|
66
66
|
name: string;
|
|
67
67
|
crn: string | null;
|
|
@@ -70,10 +70,10 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
70
70
|
director: string;
|
|
71
71
|
blacklistReason?: string | null | undefined;
|
|
72
72
|
lastUpdatedBy?: {
|
|
73
|
-
|
|
73
|
+
id: string;
|
|
74
74
|
firstName: string;
|
|
75
|
+
lastName: string;
|
|
75
76
|
email: string;
|
|
76
|
-
id: string;
|
|
77
77
|
} | null | undefined;
|
|
78
78
|
agentClientLinks?: {
|
|
79
79
|
agentId: string;
|
|
@@ -91,23 +91,23 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
91
91
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
92
92
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
93
93
|
}, "strip", z.ZodTypeAny, {
|
|
94
|
-
|
|
94
|
+
id: string;
|
|
95
|
+
createdAt: string;
|
|
96
|
+
updatedAt: string;
|
|
95
97
|
firstName: string;
|
|
98
|
+
lastName: string;
|
|
96
99
|
email: string;
|
|
97
100
|
phone: string;
|
|
98
|
-
createdAt: string;
|
|
99
|
-
id: string;
|
|
100
|
-
updatedAt: string;
|
|
101
101
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
102
102
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
103
103
|
}, {
|
|
104
|
-
|
|
104
|
+
id: string;
|
|
105
|
+
createdAt: string | Date;
|
|
106
|
+
updatedAt: string | Date;
|
|
105
107
|
firstName: string;
|
|
108
|
+
lastName: string;
|
|
106
109
|
email: string;
|
|
107
110
|
phone: string;
|
|
108
|
-
createdAt: string | Date;
|
|
109
|
-
id: string;
|
|
110
|
-
updatedAt: string | Date;
|
|
111
111
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
112
112
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
113
113
|
}>;
|
|
@@ -126,49 +126,37 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
126
126
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
127
127
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
128
128
|
}, "strip", z.ZodTypeAny, {
|
|
129
|
-
|
|
129
|
+
id: string;
|
|
130
|
+
createdAt: string;
|
|
131
|
+
updatedAt: string;
|
|
130
132
|
firstName: string;
|
|
133
|
+
lastName: string;
|
|
131
134
|
email: string;
|
|
132
135
|
phone: string;
|
|
133
|
-
createdAt: string;
|
|
134
|
-
id: string;
|
|
135
|
-
updatedAt: string;
|
|
136
136
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | 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
|
+
id: string;
|
|
140
|
+
createdAt: string | Date;
|
|
141
|
+
updatedAt: string | Date;
|
|
140
142
|
firstName: string;
|
|
143
|
+
lastName: string;
|
|
141
144
|
email: string;
|
|
142
145
|
phone: string;
|
|
143
|
-
createdAt: string | Date;
|
|
144
|
-
id: string;
|
|
145
|
-
updatedAt: string | Date;
|
|
146
146
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
147
147
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
148
148
|
}>;
|
|
149
149
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
150
150
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
151
151
|
}, "strip", z.ZodTypeAny, {
|
|
152
|
-
createdAt: string;
|
|
153
152
|
id: string;
|
|
153
|
+
createdAt: string;
|
|
154
154
|
updatedAt: string;
|
|
155
155
|
agentId: string;
|
|
156
|
-
agent: {
|
|
157
|
-
lastName: string;
|
|
158
|
-
firstName: string;
|
|
159
|
-
email: string;
|
|
160
|
-
phone: string;
|
|
161
|
-
createdAt: string;
|
|
162
|
-
id: string;
|
|
163
|
-
updatedAt: string;
|
|
164
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
165
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
166
|
-
};
|
|
167
|
-
clientId: string;
|
|
168
156
|
client: {
|
|
169
|
-
createdAt: string;
|
|
170
157
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
171
158
|
id: string;
|
|
159
|
+
createdAt: string;
|
|
172
160
|
updatedAt: string;
|
|
173
161
|
name: string;
|
|
174
162
|
crn: string | null;
|
|
@@ -177,51 +165,51 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
177
165
|
director: string;
|
|
178
166
|
blacklistReason?: string | null | undefined;
|
|
179
167
|
lastUpdatedBy?: {
|
|
180
|
-
|
|
168
|
+
id: string;
|
|
181
169
|
firstName: string;
|
|
170
|
+
lastName: string;
|
|
182
171
|
email: string;
|
|
183
|
-
id: string;
|
|
184
172
|
} | null | undefined;
|
|
185
173
|
agentClientLinks?: {
|
|
186
174
|
agentId: string;
|
|
187
175
|
} | null | undefined;
|
|
188
176
|
};
|
|
189
|
-
|
|
177
|
+
clientId: string;
|
|
190
178
|
createdBy: string;
|
|
191
|
-
|
|
192
|
-
|
|
179
|
+
agent: {
|
|
180
|
+
id: string;
|
|
181
|
+
createdAt: string;
|
|
182
|
+
updatedAt: string;
|
|
193
183
|
firstName: string;
|
|
184
|
+
lastName: string;
|
|
194
185
|
email: string;
|
|
195
186
|
phone: string;
|
|
196
|
-
|
|
187
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
188
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
189
|
+
};
|
|
190
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
191
|
+
creator: {
|
|
197
192
|
id: string;
|
|
193
|
+
createdAt: string;
|
|
198
194
|
updatedAt: string;
|
|
195
|
+
firstName: string;
|
|
196
|
+
lastName: string;
|
|
197
|
+
email: string;
|
|
198
|
+
phone: string;
|
|
199
199
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
200
200
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
201
201
|
};
|
|
202
202
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
203
203
|
appliedChanges?: Record<string, unknown> | null | undefined;
|
|
204
204
|
}, {
|
|
205
|
-
createdAt: string | Date;
|
|
206
205
|
id: string;
|
|
206
|
+
createdAt: string | Date;
|
|
207
207
|
updatedAt: string | Date;
|
|
208
208
|
agentId: string;
|
|
209
|
-
agent: {
|
|
210
|
-
lastName: string;
|
|
211
|
-
firstName: string;
|
|
212
|
-
email: string;
|
|
213
|
-
phone: string;
|
|
214
|
-
createdAt: string | Date;
|
|
215
|
-
id: string;
|
|
216
|
-
updatedAt: string | Date;
|
|
217
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
218
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
219
|
-
};
|
|
220
|
-
clientId: string;
|
|
221
209
|
client: {
|
|
222
|
-
createdAt: string | Date;
|
|
223
210
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
224
211
|
id: string;
|
|
212
|
+
createdAt: string | Date;
|
|
225
213
|
updatedAt: string | Date;
|
|
226
214
|
name: string;
|
|
227
215
|
crn: string | null;
|
|
@@ -230,25 +218,37 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
230
218
|
director: string;
|
|
231
219
|
blacklistReason?: string | null | undefined;
|
|
232
220
|
lastUpdatedBy?: {
|
|
233
|
-
|
|
221
|
+
id: string;
|
|
234
222
|
firstName: string;
|
|
223
|
+
lastName: string;
|
|
235
224
|
email: string;
|
|
236
|
-
id: string;
|
|
237
225
|
} | null | undefined;
|
|
238
226
|
agentClientLinks?: {
|
|
239
227
|
agentId: string;
|
|
240
228
|
} | null | undefined;
|
|
241
229
|
};
|
|
242
|
-
|
|
230
|
+
clientId: string;
|
|
243
231
|
createdBy: string;
|
|
244
|
-
|
|
245
|
-
|
|
232
|
+
agent: {
|
|
233
|
+
id: string;
|
|
234
|
+
createdAt: string | Date;
|
|
235
|
+
updatedAt: string | Date;
|
|
246
236
|
firstName: string;
|
|
237
|
+
lastName: string;
|
|
247
238
|
email: string;
|
|
248
239
|
phone: string;
|
|
249
|
-
|
|
240
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
241
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
242
|
+
};
|
|
243
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
244
|
+
creator: {
|
|
250
245
|
id: string;
|
|
246
|
+
createdAt: string | Date;
|
|
251
247
|
updatedAt: string | Date;
|
|
248
|
+
firstName: string;
|
|
249
|
+
lastName: string;
|
|
250
|
+
email: string;
|
|
251
|
+
phone: string;
|
|
252
252
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
253
253
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
254
254
|
};
|
|
@@ -307,15 +307,15 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
307
307
|
lastName: z.ZodString;
|
|
308
308
|
email: z.ZodString;
|
|
309
309
|
}, "strip", z.ZodTypeAny, {
|
|
310
|
-
|
|
310
|
+
id: string;
|
|
311
311
|
firstName: string;
|
|
312
|
+
lastName: string;
|
|
312
313
|
email: string;
|
|
313
|
-
id: string;
|
|
314
314
|
}, {
|
|
315
|
-
|
|
315
|
+
id: string;
|
|
316
316
|
firstName: string;
|
|
317
|
+
lastName: string;
|
|
317
318
|
email: string;
|
|
318
|
-
id: string;
|
|
319
319
|
}>>>;
|
|
320
320
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
321
321
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -327,9 +327,9 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
327
327
|
agentId: string;
|
|
328
328
|
}>>>;
|
|
329
329
|
}, "strip", z.ZodTypeAny, {
|
|
330
|
-
createdAt: string;
|
|
331
330
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
332
331
|
id: string;
|
|
332
|
+
createdAt: string;
|
|
333
333
|
updatedAt: string;
|
|
334
334
|
name: string;
|
|
335
335
|
crn: string | null;
|
|
@@ -338,18 +338,18 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
338
338
|
director: string;
|
|
339
339
|
blacklistReason?: string | null | undefined;
|
|
340
340
|
lastUpdatedBy?: {
|
|
341
|
-
|
|
341
|
+
id: string;
|
|
342
342
|
firstName: string;
|
|
343
|
+
lastName: string;
|
|
343
344
|
email: string;
|
|
344
|
-
id: string;
|
|
345
345
|
} | null | undefined;
|
|
346
346
|
agentClientLinks?: {
|
|
347
347
|
agentId: string;
|
|
348
348
|
} | null | undefined;
|
|
349
349
|
}, {
|
|
350
|
-
createdAt: string | Date;
|
|
351
350
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
352
351
|
id: string;
|
|
352
|
+
createdAt: string | Date;
|
|
353
353
|
updatedAt: string | Date;
|
|
354
354
|
name: string;
|
|
355
355
|
crn: string | null;
|
|
@@ -358,10 +358,10 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
358
358
|
director: string;
|
|
359
359
|
blacklistReason?: string | null | undefined;
|
|
360
360
|
lastUpdatedBy?: {
|
|
361
|
-
|
|
361
|
+
id: string;
|
|
362
362
|
firstName: string;
|
|
363
|
+
lastName: string;
|
|
363
364
|
email: string;
|
|
364
|
-
id: string;
|
|
365
365
|
} | null | undefined;
|
|
366
366
|
agentClientLinks?: {
|
|
367
367
|
agentId: string;
|
|
@@ -379,23 +379,23 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
379
379
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
380
380
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
381
381
|
}, "strip", z.ZodTypeAny, {
|
|
382
|
-
|
|
382
|
+
id: string;
|
|
383
|
+
createdAt: string;
|
|
384
|
+
updatedAt: string;
|
|
383
385
|
firstName: string;
|
|
386
|
+
lastName: string;
|
|
384
387
|
email: string;
|
|
385
388
|
phone: string;
|
|
386
|
-
createdAt: string;
|
|
387
|
-
id: string;
|
|
388
|
-
updatedAt: string;
|
|
389
389
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
390
390
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
391
391
|
}, {
|
|
392
|
-
|
|
392
|
+
id: string;
|
|
393
|
+
createdAt: string | Date;
|
|
394
|
+
updatedAt: string | Date;
|
|
393
395
|
firstName: string;
|
|
396
|
+
lastName: string;
|
|
394
397
|
email: string;
|
|
395
398
|
phone: string;
|
|
396
|
-
createdAt: string | Date;
|
|
397
|
-
id: string;
|
|
398
|
-
updatedAt: string | Date;
|
|
399
399
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
400
400
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
401
401
|
}>;
|
|
@@ -414,49 +414,37 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
414
414
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
415
415
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
416
416
|
}, "strip", z.ZodTypeAny, {
|
|
417
|
-
|
|
417
|
+
id: string;
|
|
418
|
+
createdAt: string;
|
|
419
|
+
updatedAt: string;
|
|
418
420
|
firstName: string;
|
|
421
|
+
lastName: string;
|
|
419
422
|
email: string;
|
|
420
423
|
phone: string;
|
|
421
|
-
createdAt: string;
|
|
422
|
-
id: string;
|
|
423
|
-
updatedAt: string;
|
|
424
424
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
425
425
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
426
426
|
}, {
|
|
427
|
-
|
|
427
|
+
id: string;
|
|
428
|
+
createdAt: string | Date;
|
|
429
|
+
updatedAt: string | Date;
|
|
428
430
|
firstName: string;
|
|
431
|
+
lastName: string;
|
|
429
432
|
email: string;
|
|
430
433
|
phone: string;
|
|
431
|
-
createdAt: string | Date;
|
|
432
|
-
id: string;
|
|
433
|
-
updatedAt: string | Date;
|
|
434
434
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
435
435
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
436
436
|
}>;
|
|
437
437
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
438
438
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
439
439
|
}, "strip", z.ZodTypeAny, {
|
|
440
|
-
createdAt: string;
|
|
441
440
|
id: string;
|
|
441
|
+
createdAt: string;
|
|
442
442
|
updatedAt: string;
|
|
443
443
|
agentId: string;
|
|
444
|
-
agent: {
|
|
445
|
-
lastName: string;
|
|
446
|
-
firstName: string;
|
|
447
|
-
email: string;
|
|
448
|
-
phone: string;
|
|
449
|
-
createdAt: string;
|
|
450
|
-
id: string;
|
|
451
|
-
updatedAt: string;
|
|
452
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
453
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
454
|
-
};
|
|
455
|
-
clientId: string;
|
|
456
444
|
client: {
|
|
457
|
-
createdAt: string;
|
|
458
445
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
459
446
|
id: string;
|
|
447
|
+
createdAt: string;
|
|
460
448
|
updatedAt: string;
|
|
461
449
|
name: string;
|
|
462
450
|
crn: string | null;
|
|
@@ -465,51 +453,51 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
465
453
|
director: string;
|
|
466
454
|
blacklistReason?: string | null | undefined;
|
|
467
455
|
lastUpdatedBy?: {
|
|
468
|
-
|
|
456
|
+
id: string;
|
|
469
457
|
firstName: string;
|
|
458
|
+
lastName: string;
|
|
470
459
|
email: string;
|
|
471
|
-
id: string;
|
|
472
460
|
} | null | undefined;
|
|
473
461
|
agentClientLinks?: {
|
|
474
462
|
agentId: string;
|
|
475
463
|
} | null | undefined;
|
|
476
464
|
};
|
|
477
|
-
|
|
465
|
+
clientId: string;
|
|
478
466
|
createdBy: string;
|
|
479
|
-
|
|
480
|
-
|
|
467
|
+
agent: {
|
|
468
|
+
id: string;
|
|
469
|
+
createdAt: string;
|
|
470
|
+
updatedAt: string;
|
|
481
471
|
firstName: string;
|
|
472
|
+
lastName: string;
|
|
482
473
|
email: string;
|
|
483
474
|
phone: string;
|
|
484
|
-
|
|
475
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
476
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
477
|
+
};
|
|
478
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
479
|
+
creator: {
|
|
485
480
|
id: string;
|
|
481
|
+
createdAt: string;
|
|
486
482
|
updatedAt: string;
|
|
483
|
+
firstName: string;
|
|
484
|
+
lastName: string;
|
|
485
|
+
email: string;
|
|
486
|
+
phone: string;
|
|
487
487
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
488
488
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
489
489
|
};
|
|
490
490
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
491
491
|
appliedChanges?: Record<string, unknown> | null | undefined;
|
|
492
492
|
}, {
|
|
493
|
-
createdAt: string | Date;
|
|
494
493
|
id: string;
|
|
494
|
+
createdAt: string | Date;
|
|
495
495
|
updatedAt: string | Date;
|
|
496
496
|
agentId: string;
|
|
497
|
-
agent: {
|
|
498
|
-
lastName: string;
|
|
499
|
-
firstName: string;
|
|
500
|
-
email: string;
|
|
501
|
-
phone: string;
|
|
502
|
-
createdAt: string | Date;
|
|
503
|
-
id: string;
|
|
504
|
-
updatedAt: string | Date;
|
|
505
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
506
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
507
|
-
};
|
|
508
|
-
clientId: string;
|
|
509
497
|
client: {
|
|
510
|
-
createdAt: string | Date;
|
|
511
498
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
512
499
|
id: string;
|
|
500
|
+
createdAt: string | Date;
|
|
513
501
|
updatedAt: string | Date;
|
|
514
502
|
name: string;
|
|
515
503
|
crn: string | null;
|
|
@@ -518,25 +506,37 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
518
506
|
director: string;
|
|
519
507
|
blacklistReason?: string | null | undefined;
|
|
520
508
|
lastUpdatedBy?: {
|
|
521
|
-
|
|
509
|
+
id: string;
|
|
522
510
|
firstName: string;
|
|
511
|
+
lastName: string;
|
|
523
512
|
email: string;
|
|
524
|
-
id: string;
|
|
525
513
|
} | null | undefined;
|
|
526
514
|
agentClientLinks?: {
|
|
527
515
|
agentId: string;
|
|
528
516
|
} | null | undefined;
|
|
529
517
|
};
|
|
530
|
-
|
|
518
|
+
clientId: string;
|
|
531
519
|
createdBy: string;
|
|
532
|
-
|
|
533
|
-
|
|
520
|
+
agent: {
|
|
521
|
+
id: string;
|
|
522
|
+
createdAt: string | Date;
|
|
523
|
+
updatedAt: string | Date;
|
|
534
524
|
firstName: string;
|
|
525
|
+
lastName: string;
|
|
535
526
|
email: string;
|
|
536
527
|
phone: string;
|
|
537
|
-
|
|
528
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
529
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
530
|
+
};
|
|
531
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
532
|
+
creator: {
|
|
538
533
|
id: string;
|
|
534
|
+
createdAt: string | Date;
|
|
539
535
|
updatedAt: string | Date;
|
|
536
|
+
firstName: string;
|
|
537
|
+
lastName: string;
|
|
538
|
+
email: string;
|
|
539
|
+
phone: string;
|
|
540
540
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
541
541
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
542
542
|
};
|
|
@@ -551,26 +551,14 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
551
551
|
}, "strip", z.ZodTypeAny, {
|
|
552
552
|
limit: number;
|
|
553
553
|
items: {
|
|
554
|
-
createdAt: string;
|
|
555
554
|
id: string;
|
|
555
|
+
createdAt: string;
|
|
556
556
|
updatedAt: string;
|
|
557
557
|
agentId: string;
|
|
558
|
-
agent: {
|
|
559
|
-
lastName: string;
|
|
560
|
-
firstName: string;
|
|
561
|
-
email: string;
|
|
562
|
-
phone: string;
|
|
563
|
-
createdAt: string;
|
|
564
|
-
id: string;
|
|
565
|
-
updatedAt: string;
|
|
566
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
567
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
568
|
-
};
|
|
569
|
-
clientId: string;
|
|
570
558
|
client: {
|
|
571
|
-
createdAt: string;
|
|
572
559
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
573
560
|
id: string;
|
|
561
|
+
createdAt: string;
|
|
574
562
|
updatedAt: string;
|
|
575
563
|
name: string;
|
|
576
564
|
crn: string | null;
|
|
@@ -579,25 +567,37 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
579
567
|
director: string;
|
|
580
568
|
blacklistReason?: string | null | undefined;
|
|
581
569
|
lastUpdatedBy?: {
|
|
582
|
-
|
|
570
|
+
id: string;
|
|
583
571
|
firstName: string;
|
|
572
|
+
lastName: string;
|
|
584
573
|
email: string;
|
|
585
|
-
id: string;
|
|
586
574
|
} | null | undefined;
|
|
587
575
|
agentClientLinks?: {
|
|
588
576
|
agentId: string;
|
|
589
577
|
} | null | undefined;
|
|
590
578
|
};
|
|
591
|
-
|
|
579
|
+
clientId: string;
|
|
592
580
|
createdBy: string;
|
|
593
|
-
|
|
594
|
-
|
|
581
|
+
agent: {
|
|
582
|
+
id: string;
|
|
583
|
+
createdAt: string;
|
|
584
|
+
updatedAt: string;
|
|
595
585
|
firstName: string;
|
|
586
|
+
lastName: string;
|
|
596
587
|
email: string;
|
|
597
588
|
phone: string;
|
|
598
|
-
|
|
589
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
590
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
591
|
+
};
|
|
592
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
593
|
+
creator: {
|
|
599
594
|
id: string;
|
|
595
|
+
createdAt: string;
|
|
600
596
|
updatedAt: string;
|
|
597
|
+
firstName: string;
|
|
598
|
+
lastName: string;
|
|
599
|
+
email: string;
|
|
600
|
+
phone: string;
|
|
601
601
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
602
602
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
603
603
|
};
|
|
@@ -611,26 +611,14 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
611
611
|
}, {
|
|
612
612
|
limit: number;
|
|
613
613
|
items: {
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
updatedAt: string | Date;
|
|
617
|
-
agentId: string;
|
|
618
|
-
agent: {
|
|
619
|
-
lastName: string;
|
|
620
|
-
firstName: string;
|
|
621
|
-
email: string;
|
|
622
|
-
phone: string;
|
|
623
|
-
createdAt: string | Date;
|
|
624
|
-
id: string;
|
|
625
|
-
updatedAt: string | Date;
|
|
626
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
627
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
628
|
-
};
|
|
629
|
-
clientId: string;
|
|
614
|
+
id: string;
|
|
615
|
+
createdAt: string | Date;
|
|
616
|
+
updatedAt: string | Date;
|
|
617
|
+
agentId: string;
|
|
630
618
|
client: {
|
|
631
|
-
createdAt: string | Date;
|
|
632
619
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
633
620
|
id: string;
|
|
621
|
+
createdAt: string | Date;
|
|
634
622
|
updatedAt: string | Date;
|
|
635
623
|
name: string;
|
|
636
624
|
crn: string | null;
|
|
@@ -639,25 +627,37 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
639
627
|
director: string;
|
|
640
628
|
blacklistReason?: string | null | undefined;
|
|
641
629
|
lastUpdatedBy?: {
|
|
642
|
-
|
|
630
|
+
id: string;
|
|
643
631
|
firstName: string;
|
|
632
|
+
lastName: string;
|
|
644
633
|
email: string;
|
|
645
|
-
id: string;
|
|
646
634
|
} | null | undefined;
|
|
647
635
|
agentClientLinks?: {
|
|
648
636
|
agentId: string;
|
|
649
637
|
} | null | undefined;
|
|
650
638
|
};
|
|
651
|
-
|
|
639
|
+
clientId: string;
|
|
652
640
|
createdBy: string;
|
|
653
|
-
|
|
654
|
-
|
|
641
|
+
agent: {
|
|
642
|
+
id: string;
|
|
643
|
+
createdAt: string | Date;
|
|
644
|
+
updatedAt: string | Date;
|
|
655
645
|
firstName: string;
|
|
646
|
+
lastName: string;
|
|
656
647
|
email: string;
|
|
657
648
|
phone: string;
|
|
658
|
-
|
|
649
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
650
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
651
|
+
};
|
|
652
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
653
|
+
creator: {
|
|
659
654
|
id: string;
|
|
655
|
+
createdAt: string | Date;
|
|
660
656
|
updatedAt: string | Date;
|
|
657
|
+
firstName: string;
|
|
658
|
+
lastName: string;
|
|
659
|
+
email: string;
|
|
660
|
+
phone: string;
|
|
661
661
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
662
662
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
663
663
|
};
|
|
@@ -677,9 +677,6 @@ export type ApplyChanges = z.infer<typeof ApplyChangesSchema>;
|
|
|
677
677
|
export type PaginatedAgentClientLinkResponse = z.infer<typeof PaginatedAgentClientLinkResponseSchema>;
|
|
678
678
|
export declare const agentClientLinksContract: {
|
|
679
679
|
findAll: {
|
|
680
|
-
metadata: {
|
|
681
|
-
tags: string[];
|
|
682
|
-
};
|
|
683
680
|
query: z.ZodObject<{
|
|
684
681
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
685
682
|
page: z.ZodDefault<z.ZodNumber>;
|
|
@@ -706,6 +703,9 @@ export declare const agentClientLinksContract: {
|
|
|
706
703
|
clientId?: string | undefined;
|
|
707
704
|
linkType?: "CREATION" | "EDIT_SUGGESTION" | undefined;
|
|
708
705
|
}>;
|
|
706
|
+
metadata: {
|
|
707
|
+
tags: string[];
|
|
708
|
+
};
|
|
709
709
|
summary: "Get all agent-client links";
|
|
710
710
|
method: "GET";
|
|
711
711
|
path: "/v2/agent-client-links";
|
|
@@ -829,15 +829,15 @@ export declare const agentClientLinksContract: {
|
|
|
829
829
|
lastName: z.ZodString;
|
|
830
830
|
email: z.ZodString;
|
|
831
831
|
}, "strip", z.ZodTypeAny, {
|
|
832
|
-
|
|
832
|
+
id: string;
|
|
833
833
|
firstName: string;
|
|
834
|
+
lastName: string;
|
|
834
835
|
email: string;
|
|
835
|
-
id: string;
|
|
836
836
|
}, {
|
|
837
|
-
|
|
837
|
+
id: string;
|
|
838
838
|
firstName: string;
|
|
839
|
+
lastName: string;
|
|
839
840
|
email: string;
|
|
840
|
-
id: string;
|
|
841
841
|
}>>>;
|
|
842
842
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
843
843
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -849,9 +849,9 @@ export declare const agentClientLinksContract: {
|
|
|
849
849
|
agentId: string;
|
|
850
850
|
}>>>;
|
|
851
851
|
}, "strip", z.ZodTypeAny, {
|
|
852
|
-
createdAt: string;
|
|
853
852
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
854
853
|
id: string;
|
|
854
|
+
createdAt: string;
|
|
855
855
|
updatedAt: string;
|
|
856
856
|
name: string;
|
|
857
857
|
crn: string | null;
|
|
@@ -860,18 +860,18 @@ export declare const agentClientLinksContract: {
|
|
|
860
860
|
director: string;
|
|
861
861
|
blacklistReason?: string | null | undefined;
|
|
862
862
|
lastUpdatedBy?: {
|
|
863
|
-
|
|
863
|
+
id: string;
|
|
864
864
|
firstName: string;
|
|
865
|
+
lastName: string;
|
|
865
866
|
email: string;
|
|
866
|
-
id: string;
|
|
867
867
|
} | null | undefined;
|
|
868
868
|
agentClientLinks?: {
|
|
869
869
|
agentId: string;
|
|
870
870
|
} | null | undefined;
|
|
871
871
|
}, {
|
|
872
|
-
createdAt: string | Date;
|
|
873
872
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
874
873
|
id: string;
|
|
874
|
+
createdAt: string | Date;
|
|
875
875
|
updatedAt: string | Date;
|
|
876
876
|
name: string;
|
|
877
877
|
crn: string | null;
|
|
@@ -880,10 +880,10 @@ export declare const agentClientLinksContract: {
|
|
|
880
880
|
director: string;
|
|
881
881
|
blacklistReason?: string | null | undefined;
|
|
882
882
|
lastUpdatedBy?: {
|
|
883
|
-
|
|
883
|
+
id: string;
|
|
884
884
|
firstName: string;
|
|
885
|
+
lastName: string;
|
|
885
886
|
email: string;
|
|
886
|
-
id: string;
|
|
887
887
|
} | null | undefined;
|
|
888
888
|
agentClientLinks?: {
|
|
889
889
|
agentId: string;
|
|
@@ -901,23 +901,23 @@ export declare const agentClientLinksContract: {
|
|
|
901
901
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
902
902
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
903
903
|
}, "strip", z.ZodTypeAny, {
|
|
904
|
-
|
|
904
|
+
id: string;
|
|
905
|
+
createdAt: string;
|
|
906
|
+
updatedAt: string;
|
|
905
907
|
firstName: string;
|
|
908
|
+
lastName: string;
|
|
906
909
|
email: string;
|
|
907
910
|
phone: string;
|
|
908
|
-
createdAt: string;
|
|
909
|
-
id: string;
|
|
910
|
-
updatedAt: string;
|
|
911
911
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
912
912
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
913
913
|
}, {
|
|
914
|
-
|
|
914
|
+
id: string;
|
|
915
|
+
createdAt: string | Date;
|
|
916
|
+
updatedAt: string | Date;
|
|
915
917
|
firstName: string;
|
|
918
|
+
lastName: string;
|
|
916
919
|
email: string;
|
|
917
920
|
phone: string;
|
|
918
|
-
createdAt: string | Date;
|
|
919
|
-
id: string;
|
|
920
|
-
updatedAt: string | Date;
|
|
921
921
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
922
922
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
923
923
|
}>;
|
|
@@ -936,49 +936,37 @@ export declare const agentClientLinksContract: {
|
|
|
936
936
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
937
937
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
938
938
|
}, "strip", z.ZodTypeAny, {
|
|
939
|
-
|
|
939
|
+
id: string;
|
|
940
|
+
createdAt: string;
|
|
941
|
+
updatedAt: string;
|
|
940
942
|
firstName: string;
|
|
943
|
+
lastName: string;
|
|
941
944
|
email: string;
|
|
942
945
|
phone: string;
|
|
943
|
-
createdAt: string;
|
|
944
|
-
id: string;
|
|
945
|
-
updatedAt: string;
|
|
946
946
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
947
947
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
948
948
|
}, {
|
|
949
|
-
|
|
949
|
+
id: string;
|
|
950
|
+
createdAt: string | Date;
|
|
951
|
+
updatedAt: string | Date;
|
|
950
952
|
firstName: string;
|
|
953
|
+
lastName: string;
|
|
951
954
|
email: string;
|
|
952
955
|
phone: string;
|
|
953
|
-
createdAt: string | Date;
|
|
954
|
-
id: string;
|
|
955
|
-
updatedAt: string | Date;
|
|
956
956
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
957
957
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
958
958
|
}>;
|
|
959
959
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
960
960
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
961
961
|
}, "strip", z.ZodTypeAny, {
|
|
962
|
-
createdAt: string;
|
|
963
962
|
id: string;
|
|
963
|
+
createdAt: string;
|
|
964
964
|
updatedAt: string;
|
|
965
965
|
agentId: string;
|
|
966
|
-
agent: {
|
|
967
|
-
lastName: string;
|
|
968
|
-
firstName: string;
|
|
969
|
-
email: string;
|
|
970
|
-
phone: string;
|
|
971
|
-
createdAt: string;
|
|
972
|
-
id: string;
|
|
973
|
-
updatedAt: string;
|
|
974
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
975
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
976
|
-
};
|
|
977
|
-
clientId: string;
|
|
978
966
|
client: {
|
|
979
|
-
createdAt: string;
|
|
980
967
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
981
968
|
id: string;
|
|
969
|
+
createdAt: string;
|
|
982
970
|
updatedAt: string;
|
|
983
971
|
name: string;
|
|
984
972
|
crn: string | null;
|
|
@@ -987,51 +975,51 @@ export declare const agentClientLinksContract: {
|
|
|
987
975
|
director: string;
|
|
988
976
|
blacklistReason?: string | null | undefined;
|
|
989
977
|
lastUpdatedBy?: {
|
|
990
|
-
|
|
978
|
+
id: string;
|
|
991
979
|
firstName: string;
|
|
980
|
+
lastName: string;
|
|
992
981
|
email: string;
|
|
993
|
-
id: string;
|
|
994
982
|
} | null | undefined;
|
|
995
983
|
agentClientLinks?: {
|
|
996
984
|
agentId: string;
|
|
997
985
|
} | null | undefined;
|
|
998
986
|
};
|
|
999
|
-
|
|
987
|
+
clientId: string;
|
|
1000
988
|
createdBy: string;
|
|
1001
|
-
|
|
1002
|
-
|
|
989
|
+
agent: {
|
|
990
|
+
id: string;
|
|
991
|
+
createdAt: string;
|
|
992
|
+
updatedAt: string;
|
|
1003
993
|
firstName: string;
|
|
994
|
+
lastName: string;
|
|
1004
995
|
email: string;
|
|
1005
996
|
phone: string;
|
|
1006
|
-
|
|
997
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
998
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
999
|
+
};
|
|
1000
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1001
|
+
creator: {
|
|
1007
1002
|
id: string;
|
|
1003
|
+
createdAt: string;
|
|
1008
1004
|
updatedAt: string;
|
|
1005
|
+
firstName: string;
|
|
1006
|
+
lastName: string;
|
|
1007
|
+
email: string;
|
|
1008
|
+
phone: string;
|
|
1009
1009
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1010
1010
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1011
1011
|
};
|
|
1012
1012
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
1013
1013
|
appliedChanges?: Record<string, unknown> | null | undefined;
|
|
1014
1014
|
}, {
|
|
1015
|
-
createdAt: string | Date;
|
|
1016
1015
|
id: string;
|
|
1016
|
+
createdAt: string | Date;
|
|
1017
1017
|
updatedAt: string | Date;
|
|
1018
1018
|
agentId: string;
|
|
1019
|
-
agent: {
|
|
1020
|
-
lastName: string;
|
|
1021
|
-
firstName: string;
|
|
1022
|
-
email: string;
|
|
1023
|
-
phone: string;
|
|
1024
|
-
createdAt: string | Date;
|
|
1025
|
-
id: string;
|
|
1026
|
-
updatedAt: string | Date;
|
|
1027
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1028
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1029
|
-
};
|
|
1030
|
-
clientId: string;
|
|
1031
1019
|
client: {
|
|
1032
|
-
createdAt: string | Date;
|
|
1033
1020
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1034
1021
|
id: string;
|
|
1022
|
+
createdAt: string | Date;
|
|
1035
1023
|
updatedAt: string | Date;
|
|
1036
1024
|
name: string;
|
|
1037
1025
|
crn: string | null;
|
|
@@ -1040,25 +1028,37 @@ export declare const agentClientLinksContract: {
|
|
|
1040
1028
|
director: string;
|
|
1041
1029
|
blacklistReason?: string | null | undefined;
|
|
1042
1030
|
lastUpdatedBy?: {
|
|
1043
|
-
|
|
1031
|
+
id: string;
|
|
1044
1032
|
firstName: string;
|
|
1033
|
+
lastName: string;
|
|
1045
1034
|
email: string;
|
|
1046
|
-
id: string;
|
|
1047
1035
|
} | null | undefined;
|
|
1048
1036
|
agentClientLinks?: {
|
|
1049
1037
|
agentId: string;
|
|
1050
1038
|
} | null | undefined;
|
|
1051
1039
|
};
|
|
1052
|
-
|
|
1040
|
+
clientId: string;
|
|
1053
1041
|
createdBy: string;
|
|
1054
|
-
|
|
1055
|
-
|
|
1042
|
+
agent: {
|
|
1043
|
+
id: string;
|
|
1044
|
+
createdAt: string | Date;
|
|
1045
|
+
updatedAt: string | Date;
|
|
1056
1046
|
firstName: string;
|
|
1047
|
+
lastName: string;
|
|
1057
1048
|
email: string;
|
|
1058
1049
|
phone: string;
|
|
1059
|
-
|
|
1050
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1051
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1052
|
+
};
|
|
1053
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1054
|
+
creator: {
|
|
1060
1055
|
id: string;
|
|
1056
|
+
createdAt: string | Date;
|
|
1061
1057
|
updatedAt: string | Date;
|
|
1058
|
+
firstName: string;
|
|
1059
|
+
lastName: string;
|
|
1060
|
+
email: string;
|
|
1061
|
+
phone: string;
|
|
1062
1062
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1063
1063
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1064
1064
|
};
|
|
@@ -1073,26 +1073,14 @@ export declare const agentClientLinksContract: {
|
|
|
1073
1073
|
}, "strip", z.ZodTypeAny, {
|
|
1074
1074
|
limit: number;
|
|
1075
1075
|
items: {
|
|
1076
|
-
createdAt: string;
|
|
1077
1076
|
id: string;
|
|
1077
|
+
createdAt: string;
|
|
1078
1078
|
updatedAt: string;
|
|
1079
1079
|
agentId: string;
|
|
1080
|
-
agent: {
|
|
1081
|
-
lastName: string;
|
|
1082
|
-
firstName: string;
|
|
1083
|
-
email: string;
|
|
1084
|
-
phone: string;
|
|
1085
|
-
createdAt: string;
|
|
1086
|
-
id: string;
|
|
1087
|
-
updatedAt: string;
|
|
1088
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1089
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1090
|
-
};
|
|
1091
|
-
clientId: string;
|
|
1092
1080
|
client: {
|
|
1093
|
-
createdAt: string;
|
|
1094
1081
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1095
1082
|
id: string;
|
|
1083
|
+
createdAt: string;
|
|
1096
1084
|
updatedAt: string;
|
|
1097
1085
|
name: string;
|
|
1098
1086
|
crn: string | null;
|
|
@@ -1101,25 +1089,37 @@ export declare const agentClientLinksContract: {
|
|
|
1101
1089
|
director: string;
|
|
1102
1090
|
blacklistReason?: string | null | undefined;
|
|
1103
1091
|
lastUpdatedBy?: {
|
|
1104
|
-
|
|
1092
|
+
id: string;
|
|
1105
1093
|
firstName: string;
|
|
1094
|
+
lastName: string;
|
|
1106
1095
|
email: string;
|
|
1107
|
-
id: string;
|
|
1108
1096
|
} | null | undefined;
|
|
1109
1097
|
agentClientLinks?: {
|
|
1110
1098
|
agentId: string;
|
|
1111
1099
|
} | null | undefined;
|
|
1112
1100
|
};
|
|
1113
|
-
|
|
1101
|
+
clientId: string;
|
|
1114
1102
|
createdBy: string;
|
|
1115
|
-
|
|
1116
|
-
|
|
1103
|
+
agent: {
|
|
1104
|
+
id: string;
|
|
1105
|
+
createdAt: string;
|
|
1106
|
+
updatedAt: string;
|
|
1117
1107
|
firstName: string;
|
|
1108
|
+
lastName: string;
|
|
1118
1109
|
email: string;
|
|
1119
1110
|
phone: string;
|
|
1120
|
-
|
|
1111
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1112
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1113
|
+
};
|
|
1114
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1115
|
+
creator: {
|
|
1121
1116
|
id: string;
|
|
1117
|
+
createdAt: string;
|
|
1122
1118
|
updatedAt: string;
|
|
1119
|
+
firstName: string;
|
|
1120
|
+
lastName: string;
|
|
1121
|
+
email: string;
|
|
1122
|
+
phone: string;
|
|
1123
1123
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1124
1124
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1125
1125
|
};
|
|
@@ -1133,26 +1133,14 @@ export declare const agentClientLinksContract: {
|
|
|
1133
1133
|
}, {
|
|
1134
1134
|
limit: number;
|
|
1135
1135
|
items: {
|
|
1136
|
-
createdAt: string | Date;
|
|
1137
1136
|
id: string;
|
|
1137
|
+
createdAt: string | Date;
|
|
1138
1138
|
updatedAt: string | Date;
|
|
1139
1139
|
agentId: string;
|
|
1140
|
-
agent: {
|
|
1141
|
-
lastName: string;
|
|
1142
|
-
firstName: string;
|
|
1143
|
-
email: string;
|
|
1144
|
-
phone: string;
|
|
1145
|
-
createdAt: string | Date;
|
|
1146
|
-
id: string;
|
|
1147
|
-
updatedAt: string | Date;
|
|
1148
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1149
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1150
|
-
};
|
|
1151
|
-
clientId: string;
|
|
1152
1140
|
client: {
|
|
1153
|
-
createdAt: string | Date;
|
|
1154
1141
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1155
1142
|
id: string;
|
|
1143
|
+
createdAt: string | Date;
|
|
1156
1144
|
updatedAt: string | Date;
|
|
1157
1145
|
name: string;
|
|
1158
1146
|
crn: string | null;
|
|
@@ -1161,25 +1149,37 @@ export declare const agentClientLinksContract: {
|
|
|
1161
1149
|
director: string;
|
|
1162
1150
|
blacklistReason?: string | null | undefined;
|
|
1163
1151
|
lastUpdatedBy?: {
|
|
1164
|
-
|
|
1152
|
+
id: string;
|
|
1165
1153
|
firstName: string;
|
|
1154
|
+
lastName: string;
|
|
1166
1155
|
email: string;
|
|
1167
|
-
id: string;
|
|
1168
1156
|
} | null | undefined;
|
|
1169
1157
|
agentClientLinks?: {
|
|
1170
1158
|
agentId: string;
|
|
1171
1159
|
} | null | undefined;
|
|
1172
1160
|
};
|
|
1173
|
-
|
|
1161
|
+
clientId: string;
|
|
1174
1162
|
createdBy: string;
|
|
1175
|
-
|
|
1176
|
-
|
|
1163
|
+
agent: {
|
|
1164
|
+
id: string;
|
|
1165
|
+
createdAt: string | Date;
|
|
1166
|
+
updatedAt: string | Date;
|
|
1177
1167
|
firstName: string;
|
|
1168
|
+
lastName: string;
|
|
1178
1169
|
email: string;
|
|
1179
1170
|
phone: string;
|
|
1180
|
-
|
|
1171
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1172
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1173
|
+
};
|
|
1174
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1175
|
+
creator: {
|
|
1181
1176
|
id: string;
|
|
1177
|
+
createdAt: string | Date;
|
|
1182
1178
|
updatedAt: string | Date;
|
|
1179
|
+
firstName: string;
|
|
1180
|
+
lastName: string;
|
|
1181
|
+
email: string;
|
|
1182
|
+
phone: string;
|
|
1183
1183
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1184
1184
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1185
1185
|
};
|
|
@@ -1326,15 +1326,15 @@ export declare const agentClientLinksContract: {
|
|
|
1326
1326
|
lastName: z.ZodString;
|
|
1327
1327
|
email: z.ZodString;
|
|
1328
1328
|
}, "strip", z.ZodTypeAny, {
|
|
1329
|
-
|
|
1329
|
+
id: string;
|
|
1330
1330
|
firstName: string;
|
|
1331
|
+
lastName: string;
|
|
1331
1332
|
email: string;
|
|
1332
|
-
id: string;
|
|
1333
1333
|
}, {
|
|
1334
|
-
|
|
1334
|
+
id: string;
|
|
1335
1335
|
firstName: string;
|
|
1336
|
+
lastName: string;
|
|
1336
1337
|
email: string;
|
|
1337
|
-
id: string;
|
|
1338
1338
|
}>>>;
|
|
1339
1339
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1340
1340
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -1346,9 +1346,9 @@ export declare const agentClientLinksContract: {
|
|
|
1346
1346
|
agentId: string;
|
|
1347
1347
|
}>>>;
|
|
1348
1348
|
}, "strip", z.ZodTypeAny, {
|
|
1349
|
-
createdAt: string;
|
|
1350
1349
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1351
1350
|
id: string;
|
|
1351
|
+
createdAt: string;
|
|
1352
1352
|
updatedAt: string;
|
|
1353
1353
|
name: string;
|
|
1354
1354
|
crn: string | null;
|
|
@@ -1357,18 +1357,18 @@ export declare const agentClientLinksContract: {
|
|
|
1357
1357
|
director: string;
|
|
1358
1358
|
blacklistReason?: string | null | undefined;
|
|
1359
1359
|
lastUpdatedBy?: {
|
|
1360
|
-
|
|
1360
|
+
id: string;
|
|
1361
1361
|
firstName: string;
|
|
1362
|
+
lastName: string;
|
|
1362
1363
|
email: string;
|
|
1363
|
-
id: string;
|
|
1364
1364
|
} | null | undefined;
|
|
1365
1365
|
agentClientLinks?: {
|
|
1366
1366
|
agentId: string;
|
|
1367
1367
|
} | null | undefined;
|
|
1368
1368
|
}, {
|
|
1369
|
-
createdAt: string | Date;
|
|
1370
1369
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1371
1370
|
id: string;
|
|
1371
|
+
createdAt: string | Date;
|
|
1372
1372
|
updatedAt: string | Date;
|
|
1373
1373
|
name: string;
|
|
1374
1374
|
crn: string | null;
|
|
@@ -1377,10 +1377,10 @@ export declare const agentClientLinksContract: {
|
|
|
1377
1377
|
director: string;
|
|
1378
1378
|
blacklistReason?: string | null | undefined;
|
|
1379
1379
|
lastUpdatedBy?: {
|
|
1380
|
-
|
|
1380
|
+
id: string;
|
|
1381
1381
|
firstName: string;
|
|
1382
|
+
lastName: string;
|
|
1382
1383
|
email: string;
|
|
1383
|
-
id: string;
|
|
1384
1384
|
} | null | undefined;
|
|
1385
1385
|
agentClientLinks?: {
|
|
1386
1386
|
agentId: string;
|
|
@@ -1398,23 +1398,23 @@ export declare const agentClientLinksContract: {
|
|
|
1398
1398
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1399
1399
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1400
1400
|
}, "strip", z.ZodTypeAny, {
|
|
1401
|
-
|
|
1401
|
+
id: string;
|
|
1402
|
+
createdAt: string;
|
|
1403
|
+
updatedAt: string;
|
|
1402
1404
|
firstName: string;
|
|
1405
|
+
lastName: string;
|
|
1403
1406
|
email: string;
|
|
1404
1407
|
phone: string;
|
|
1405
|
-
createdAt: string;
|
|
1406
|
-
id: string;
|
|
1407
|
-
updatedAt: string;
|
|
1408
1408
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1409
1409
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1410
1410
|
}, {
|
|
1411
|
-
|
|
1411
|
+
id: string;
|
|
1412
|
+
createdAt: string | Date;
|
|
1413
|
+
updatedAt: string | Date;
|
|
1412
1414
|
firstName: string;
|
|
1415
|
+
lastName: string;
|
|
1413
1416
|
email: string;
|
|
1414
1417
|
phone: string;
|
|
1415
|
-
createdAt: string | Date;
|
|
1416
|
-
id: string;
|
|
1417
|
-
updatedAt: string | Date;
|
|
1418
1418
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1419
1419
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1420
1420
|
}>;
|
|
@@ -1433,49 +1433,37 @@ export declare const agentClientLinksContract: {
|
|
|
1433
1433
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1434
1434
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1435
1435
|
}, "strip", z.ZodTypeAny, {
|
|
1436
|
-
|
|
1436
|
+
id: string;
|
|
1437
|
+
createdAt: string;
|
|
1438
|
+
updatedAt: string;
|
|
1437
1439
|
firstName: string;
|
|
1440
|
+
lastName: string;
|
|
1438
1441
|
email: string;
|
|
1439
1442
|
phone: string;
|
|
1440
|
-
createdAt: string;
|
|
1441
|
-
id: string;
|
|
1442
|
-
updatedAt: string;
|
|
1443
1443
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1444
1444
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1445
1445
|
}, {
|
|
1446
|
-
|
|
1446
|
+
id: string;
|
|
1447
|
+
createdAt: string | Date;
|
|
1448
|
+
updatedAt: string | Date;
|
|
1447
1449
|
firstName: string;
|
|
1450
|
+
lastName: string;
|
|
1448
1451
|
email: string;
|
|
1449
1452
|
phone: string;
|
|
1450
|
-
createdAt: string | Date;
|
|
1451
|
-
id: string;
|
|
1452
|
-
updatedAt: string | Date;
|
|
1453
1453
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1454
1454
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1455
1455
|
}>;
|
|
1456
1456
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1457
1457
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1458
1458
|
}, "strip", z.ZodTypeAny, {
|
|
1459
|
-
createdAt: string;
|
|
1460
1459
|
id: string;
|
|
1460
|
+
createdAt: string;
|
|
1461
1461
|
updatedAt: string;
|
|
1462
1462
|
agentId: string;
|
|
1463
|
-
agent: {
|
|
1464
|
-
lastName: string;
|
|
1465
|
-
firstName: string;
|
|
1466
|
-
email: string;
|
|
1467
|
-
phone: string;
|
|
1468
|
-
createdAt: string;
|
|
1469
|
-
id: string;
|
|
1470
|
-
updatedAt: string;
|
|
1471
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1472
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1473
|
-
};
|
|
1474
|
-
clientId: string;
|
|
1475
1463
|
client: {
|
|
1476
|
-
createdAt: string;
|
|
1477
1464
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1478
1465
|
id: string;
|
|
1466
|
+
createdAt: string;
|
|
1479
1467
|
updatedAt: string;
|
|
1480
1468
|
name: string;
|
|
1481
1469
|
crn: string | null;
|
|
@@ -1484,51 +1472,51 @@ export declare const agentClientLinksContract: {
|
|
|
1484
1472
|
director: string;
|
|
1485
1473
|
blacklistReason?: string | null | undefined;
|
|
1486
1474
|
lastUpdatedBy?: {
|
|
1487
|
-
|
|
1475
|
+
id: string;
|
|
1488
1476
|
firstName: string;
|
|
1477
|
+
lastName: string;
|
|
1489
1478
|
email: string;
|
|
1490
|
-
id: string;
|
|
1491
1479
|
} | null | undefined;
|
|
1492
1480
|
agentClientLinks?: {
|
|
1493
1481
|
agentId: string;
|
|
1494
1482
|
} | null | undefined;
|
|
1495
1483
|
};
|
|
1496
|
-
|
|
1484
|
+
clientId: string;
|
|
1497
1485
|
createdBy: string;
|
|
1498
|
-
|
|
1499
|
-
|
|
1486
|
+
agent: {
|
|
1487
|
+
id: string;
|
|
1488
|
+
createdAt: string;
|
|
1489
|
+
updatedAt: string;
|
|
1500
1490
|
firstName: string;
|
|
1491
|
+
lastName: string;
|
|
1501
1492
|
email: string;
|
|
1502
1493
|
phone: string;
|
|
1503
|
-
|
|
1494
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1495
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1496
|
+
};
|
|
1497
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1498
|
+
creator: {
|
|
1504
1499
|
id: string;
|
|
1500
|
+
createdAt: string;
|
|
1505
1501
|
updatedAt: string;
|
|
1502
|
+
firstName: string;
|
|
1503
|
+
lastName: string;
|
|
1504
|
+
email: string;
|
|
1505
|
+
phone: string;
|
|
1506
1506
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1507
1507
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1508
1508
|
};
|
|
1509
1509
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
1510
1510
|
appliedChanges?: Record<string, unknown> | null | undefined;
|
|
1511
1511
|
}, {
|
|
1512
|
-
createdAt: string | Date;
|
|
1513
1512
|
id: string;
|
|
1513
|
+
createdAt: string | Date;
|
|
1514
1514
|
updatedAt: string | Date;
|
|
1515
1515
|
agentId: string;
|
|
1516
|
-
agent: {
|
|
1517
|
-
lastName: string;
|
|
1518
|
-
firstName: string;
|
|
1519
|
-
email: string;
|
|
1520
|
-
phone: string;
|
|
1521
|
-
createdAt: string | Date;
|
|
1522
|
-
id: string;
|
|
1523
|
-
updatedAt: string | Date;
|
|
1524
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1525
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1526
|
-
};
|
|
1527
|
-
clientId: string;
|
|
1528
1516
|
client: {
|
|
1529
|
-
createdAt: string | Date;
|
|
1530
1517
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1531
1518
|
id: string;
|
|
1519
|
+
createdAt: string | Date;
|
|
1532
1520
|
updatedAt: string | Date;
|
|
1533
1521
|
name: string;
|
|
1534
1522
|
crn: string | null;
|
|
@@ -1537,25 +1525,37 @@ export declare const agentClientLinksContract: {
|
|
|
1537
1525
|
director: string;
|
|
1538
1526
|
blacklistReason?: string | null | undefined;
|
|
1539
1527
|
lastUpdatedBy?: {
|
|
1540
|
-
|
|
1528
|
+
id: string;
|
|
1541
1529
|
firstName: string;
|
|
1530
|
+
lastName: string;
|
|
1542
1531
|
email: string;
|
|
1543
|
-
id: string;
|
|
1544
1532
|
} | null | undefined;
|
|
1545
1533
|
agentClientLinks?: {
|
|
1546
1534
|
agentId: string;
|
|
1547
1535
|
} | null | undefined;
|
|
1548
1536
|
};
|
|
1549
|
-
|
|
1537
|
+
clientId: string;
|
|
1550
1538
|
createdBy: string;
|
|
1551
|
-
|
|
1552
|
-
|
|
1539
|
+
agent: {
|
|
1540
|
+
id: string;
|
|
1541
|
+
createdAt: string | Date;
|
|
1542
|
+
updatedAt: string | Date;
|
|
1553
1543
|
firstName: string;
|
|
1544
|
+
lastName: string;
|
|
1554
1545
|
email: string;
|
|
1555
1546
|
phone: string;
|
|
1556
|
-
|
|
1547
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1548
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1549
|
+
};
|
|
1550
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1551
|
+
creator: {
|
|
1557
1552
|
id: string;
|
|
1553
|
+
createdAt: string | Date;
|
|
1558
1554
|
updatedAt: string | Date;
|
|
1555
|
+
firstName: string;
|
|
1556
|
+
lastName: string;
|
|
1557
|
+
email: string;
|
|
1558
|
+
phone: string;
|
|
1559
1559
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1560
1560
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1561
1561
|
};
|
|
@@ -1729,15 +1729,15 @@ export declare const agentClientLinksContract: {
|
|
|
1729
1729
|
lastName: z.ZodString;
|
|
1730
1730
|
email: z.ZodString;
|
|
1731
1731
|
}, "strip", z.ZodTypeAny, {
|
|
1732
|
-
|
|
1732
|
+
id: string;
|
|
1733
1733
|
firstName: string;
|
|
1734
|
+
lastName: string;
|
|
1734
1735
|
email: string;
|
|
1735
|
-
id: string;
|
|
1736
1736
|
}, {
|
|
1737
|
-
|
|
1737
|
+
id: string;
|
|
1738
1738
|
firstName: string;
|
|
1739
|
+
lastName: string;
|
|
1739
1740
|
email: string;
|
|
1740
|
-
id: string;
|
|
1741
1741
|
}>>>;
|
|
1742
1742
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1743
1743
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -1749,9 +1749,9 @@ export declare const agentClientLinksContract: {
|
|
|
1749
1749
|
agentId: string;
|
|
1750
1750
|
}>>>;
|
|
1751
1751
|
}, "strip", z.ZodTypeAny, {
|
|
1752
|
-
createdAt: string;
|
|
1753
1752
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1754
1753
|
id: string;
|
|
1754
|
+
createdAt: string;
|
|
1755
1755
|
updatedAt: string;
|
|
1756
1756
|
name: string;
|
|
1757
1757
|
crn: string | null;
|
|
@@ -1760,18 +1760,18 @@ export declare const agentClientLinksContract: {
|
|
|
1760
1760
|
director: string;
|
|
1761
1761
|
blacklistReason?: string | null | undefined;
|
|
1762
1762
|
lastUpdatedBy?: {
|
|
1763
|
-
|
|
1763
|
+
id: string;
|
|
1764
1764
|
firstName: string;
|
|
1765
|
+
lastName: string;
|
|
1765
1766
|
email: string;
|
|
1766
|
-
id: string;
|
|
1767
1767
|
} | null | undefined;
|
|
1768
1768
|
agentClientLinks?: {
|
|
1769
1769
|
agentId: string;
|
|
1770
1770
|
} | null | undefined;
|
|
1771
1771
|
}, {
|
|
1772
|
-
createdAt: string | Date;
|
|
1773
1772
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1774
1773
|
id: string;
|
|
1774
|
+
createdAt: string | Date;
|
|
1775
1775
|
updatedAt: string | Date;
|
|
1776
1776
|
name: string;
|
|
1777
1777
|
crn: string | null;
|
|
@@ -1780,10 +1780,10 @@ export declare const agentClientLinksContract: {
|
|
|
1780
1780
|
director: string;
|
|
1781
1781
|
blacklistReason?: string | null | undefined;
|
|
1782
1782
|
lastUpdatedBy?: {
|
|
1783
|
-
|
|
1783
|
+
id: string;
|
|
1784
1784
|
firstName: string;
|
|
1785
|
+
lastName: string;
|
|
1785
1786
|
email: string;
|
|
1786
|
-
id: string;
|
|
1787
1787
|
} | null | undefined;
|
|
1788
1788
|
agentClientLinks?: {
|
|
1789
1789
|
agentId: string;
|
|
@@ -1801,23 +1801,23 @@ export declare const agentClientLinksContract: {
|
|
|
1801
1801
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1802
1802
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1803
1803
|
}, "strip", z.ZodTypeAny, {
|
|
1804
|
-
|
|
1804
|
+
id: string;
|
|
1805
|
+
createdAt: string;
|
|
1806
|
+
updatedAt: string;
|
|
1805
1807
|
firstName: string;
|
|
1808
|
+
lastName: string;
|
|
1806
1809
|
email: string;
|
|
1807
1810
|
phone: string;
|
|
1808
|
-
createdAt: string;
|
|
1809
|
-
id: string;
|
|
1810
|
-
updatedAt: string;
|
|
1811
1811
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1812
1812
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1813
1813
|
}, {
|
|
1814
|
-
|
|
1814
|
+
id: string;
|
|
1815
|
+
createdAt: string | Date;
|
|
1816
|
+
updatedAt: string | Date;
|
|
1815
1817
|
firstName: string;
|
|
1818
|
+
lastName: string;
|
|
1816
1819
|
email: string;
|
|
1817
1820
|
phone: string;
|
|
1818
|
-
createdAt: string | Date;
|
|
1819
|
-
id: string;
|
|
1820
|
-
updatedAt: string | Date;
|
|
1821
1821
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1822
1822
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1823
1823
|
}>;
|
|
@@ -1836,49 +1836,37 @@ export declare const agentClientLinksContract: {
|
|
|
1836
1836
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1837
1837
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1838
1838
|
}, "strip", z.ZodTypeAny, {
|
|
1839
|
-
|
|
1839
|
+
id: string;
|
|
1840
|
+
createdAt: string;
|
|
1841
|
+
updatedAt: string;
|
|
1840
1842
|
firstName: string;
|
|
1843
|
+
lastName: string;
|
|
1841
1844
|
email: string;
|
|
1842
1845
|
phone: string;
|
|
1843
|
-
createdAt: string;
|
|
1844
|
-
id: string;
|
|
1845
|
-
updatedAt: string;
|
|
1846
1846
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1847
1847
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1848
1848
|
}, {
|
|
1849
|
-
|
|
1849
|
+
id: string;
|
|
1850
|
+
createdAt: string | Date;
|
|
1851
|
+
updatedAt: string | Date;
|
|
1850
1852
|
firstName: string;
|
|
1853
|
+
lastName: string;
|
|
1851
1854
|
email: string;
|
|
1852
1855
|
phone: string;
|
|
1853
|
-
createdAt: string | Date;
|
|
1854
|
-
id: string;
|
|
1855
|
-
updatedAt: string | Date;
|
|
1856
1856
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1857
1857
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1858
1858
|
}>;
|
|
1859
1859
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1860
1860
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1861
1861
|
}, "strip", z.ZodTypeAny, {
|
|
1862
|
-
createdAt: string;
|
|
1863
1862
|
id: string;
|
|
1863
|
+
createdAt: string;
|
|
1864
1864
|
updatedAt: string;
|
|
1865
1865
|
agentId: string;
|
|
1866
|
-
agent: {
|
|
1867
|
-
lastName: string;
|
|
1868
|
-
firstName: string;
|
|
1869
|
-
email: string;
|
|
1870
|
-
phone: string;
|
|
1871
|
-
createdAt: string;
|
|
1872
|
-
id: string;
|
|
1873
|
-
updatedAt: string;
|
|
1874
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1875
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1876
|
-
};
|
|
1877
|
-
clientId: string;
|
|
1878
1866
|
client: {
|
|
1879
|
-
createdAt: string;
|
|
1880
1867
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1881
1868
|
id: string;
|
|
1869
|
+
createdAt: string;
|
|
1882
1870
|
updatedAt: string;
|
|
1883
1871
|
name: string;
|
|
1884
1872
|
crn: string | null;
|
|
@@ -1887,51 +1875,51 @@ export declare const agentClientLinksContract: {
|
|
|
1887
1875
|
director: string;
|
|
1888
1876
|
blacklistReason?: string | null | undefined;
|
|
1889
1877
|
lastUpdatedBy?: {
|
|
1890
|
-
|
|
1878
|
+
id: string;
|
|
1891
1879
|
firstName: string;
|
|
1880
|
+
lastName: string;
|
|
1892
1881
|
email: string;
|
|
1893
|
-
id: string;
|
|
1894
1882
|
} | null | undefined;
|
|
1895
1883
|
agentClientLinks?: {
|
|
1896
1884
|
agentId: string;
|
|
1897
1885
|
} | null | undefined;
|
|
1898
1886
|
};
|
|
1899
|
-
|
|
1887
|
+
clientId: string;
|
|
1900
1888
|
createdBy: string;
|
|
1901
|
-
|
|
1902
|
-
|
|
1889
|
+
agent: {
|
|
1890
|
+
id: string;
|
|
1891
|
+
createdAt: string;
|
|
1892
|
+
updatedAt: string;
|
|
1903
1893
|
firstName: string;
|
|
1894
|
+
lastName: string;
|
|
1904
1895
|
email: string;
|
|
1905
1896
|
phone: string;
|
|
1906
|
-
|
|
1897
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1898
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1899
|
+
};
|
|
1900
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1901
|
+
creator: {
|
|
1907
1902
|
id: string;
|
|
1903
|
+
createdAt: string;
|
|
1908
1904
|
updatedAt: string;
|
|
1905
|
+
firstName: string;
|
|
1906
|
+
lastName: string;
|
|
1907
|
+
email: string;
|
|
1908
|
+
phone: string;
|
|
1909
1909
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1910
1910
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1911
1911
|
};
|
|
1912
1912
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
1913
1913
|
appliedChanges?: Record<string, unknown> | null | undefined;
|
|
1914
1914
|
}, {
|
|
1915
|
-
createdAt: string | Date;
|
|
1916
1915
|
id: string;
|
|
1916
|
+
createdAt: string | Date;
|
|
1917
1917
|
updatedAt: string | Date;
|
|
1918
1918
|
agentId: string;
|
|
1919
|
-
agent: {
|
|
1920
|
-
lastName: string;
|
|
1921
|
-
firstName: string;
|
|
1922
|
-
email: string;
|
|
1923
|
-
phone: string;
|
|
1924
|
-
createdAt: string | Date;
|
|
1925
|
-
id: string;
|
|
1926
|
-
updatedAt: string | Date;
|
|
1927
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1928
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1929
|
-
};
|
|
1930
|
-
clientId: string;
|
|
1931
1919
|
client: {
|
|
1932
|
-
createdAt: string | Date;
|
|
1933
1920
|
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1934
1921
|
id: string;
|
|
1922
|
+
createdAt: string | Date;
|
|
1935
1923
|
updatedAt: string | Date;
|
|
1936
1924
|
name: string;
|
|
1937
1925
|
crn: string | null;
|
|
@@ -1940,25 +1928,37 @@ export declare const agentClientLinksContract: {
|
|
|
1940
1928
|
director: string;
|
|
1941
1929
|
blacklistReason?: string | null | undefined;
|
|
1942
1930
|
lastUpdatedBy?: {
|
|
1943
|
-
|
|
1931
|
+
id: string;
|
|
1944
1932
|
firstName: string;
|
|
1933
|
+
lastName: string;
|
|
1945
1934
|
email: string;
|
|
1946
|
-
id: string;
|
|
1947
1935
|
} | null | undefined;
|
|
1948
1936
|
agentClientLinks?: {
|
|
1949
1937
|
agentId: string;
|
|
1950
1938
|
} | null | undefined;
|
|
1951
1939
|
};
|
|
1952
|
-
|
|
1940
|
+
clientId: string;
|
|
1953
1941
|
createdBy: string;
|
|
1954
|
-
|
|
1955
|
-
|
|
1942
|
+
agent: {
|
|
1943
|
+
id: string;
|
|
1944
|
+
createdAt: string | Date;
|
|
1945
|
+
updatedAt: string | Date;
|
|
1956
1946
|
firstName: string;
|
|
1947
|
+
lastName: string;
|
|
1957
1948
|
email: string;
|
|
1958
1949
|
phone: string;
|
|
1959
|
-
|
|
1950
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1951
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1952
|
+
};
|
|
1953
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1954
|
+
creator: {
|
|
1960
1955
|
id: string;
|
|
1956
|
+
createdAt: string | Date;
|
|
1961
1957
|
updatedAt: string | Date;
|
|
1958
|
+
firstName: string;
|
|
1959
|
+
lastName: string;
|
|
1960
|
+
email: string;
|
|
1961
|
+
phone: string;
|
|
1962
1962
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1963
1963
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1964
1964
|
};
|