@dakkitor/api-contracts 1.1.102 → 1.1.104
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/abilities.contract.d.ts +2 -0
- package/dist/abilities/abilities.contract.d.ts.map +1 -1
- package/dist/abilities/abilities.contract.js +4 -1
- package/dist/abilities/interconnection.json +370 -0
- package/dist/abilities/second-agent.abilities copy.json +370 -0
- package/dist/abilities/team-leads.json +88 -0
- package/dist/actives/actives.contract.d.ts +4232 -4232
- package/dist/agent-client-links/agent-client-links.contract.d.ts +489 -489
- package/dist/auth/auth.contract.d.ts +320 -10
- package/dist/auth/auth.contract.d.ts.map +1 -1
- package/dist/auth/auth.contract.js +39 -2
- package/dist/bookings/bookings.contract.d.ts +15542 -15542
- package/dist/call-history/call-history.contract.d.ts +537 -537
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +1190 -1190
- package/dist/collaborations/collaborations.contract.d.ts +1047 -1047
- package/dist/dashboards/dashboard.contract.d.ts +14 -14
- package/dist/jobs/jobs.contract.d.ts +2279 -2279
- package/dist/lead-assignments/lead-assignments.contract.d.ts +434 -434
- package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +199 -199
- package/dist/leads/leads.contract.d.ts +117 -117
- package/dist/users/users.contract.d.ts +186 -180
- package/dist/users/users.contract.d.ts.map +1 -1
- package/dist/users/users.contract.js +5 -0
- package/dist/workers/workers.contract.d.ts +218 -218
- package/package.json +1 -1
|
@@ -19,15 +19,15 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
19
19
|
lastName: z.ZodString;
|
|
20
20
|
email: z.ZodString;
|
|
21
21
|
}, "strip", z.ZodTypeAny, {
|
|
22
|
-
id: string;
|
|
23
|
-
firstName: string;
|
|
24
22
|
lastName: string;
|
|
23
|
+
firstName: string;
|
|
25
24
|
email: string;
|
|
26
|
-
}, {
|
|
27
25
|
id: string;
|
|
28
|
-
|
|
26
|
+
}, {
|
|
29
27
|
lastName: string;
|
|
28
|
+
firstName: string;
|
|
30
29
|
email: string;
|
|
30
|
+
id: string;
|
|
31
31
|
}>>>;
|
|
32
32
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
33
33
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -39,9 +39,9 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
39
39
|
agentId: string;
|
|
40
40
|
}>>>;
|
|
41
41
|
}, "strip", z.ZodTypeAny, {
|
|
42
|
-
id: string;
|
|
43
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
44
42
|
createdAt: string;
|
|
43
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
44
|
+
id: 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
|
-
id: string;
|
|
54
|
-
firstName: string;
|
|
55
53
|
lastName: string;
|
|
54
|
+
firstName: string;
|
|
56
55
|
email: string;
|
|
56
|
+
id: string;
|
|
57
57
|
} | null | undefined;
|
|
58
58
|
agentClientLinks?: {
|
|
59
59
|
agentId: string;
|
|
60
60
|
} | null | undefined;
|
|
61
61
|
}, {
|
|
62
|
-
id: string;
|
|
63
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
64
62
|
createdAt: string | Date;
|
|
63
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
64
|
+
id: string;
|
|
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
|
-
id: string;
|
|
74
|
-
firstName: string;
|
|
75
73
|
lastName: string;
|
|
74
|
+
firstName: string;
|
|
76
75
|
email: string;
|
|
76
|
+
id: string;
|
|
77
77
|
} | null | undefined;
|
|
78
78
|
agentClientLinks?: {
|
|
79
79
|
agentId: string;
|
|
@@ -86,29 +86,29 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
86
86
|
lastName: z.ZodString;
|
|
87
87
|
email: z.ZodString;
|
|
88
88
|
phone: z.ZodString;
|
|
89
|
-
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
89
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
90
90
|
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
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
|
-
id: string;
|
|
95
|
-
createdAt: string;
|
|
96
|
-
updatedAt: string;
|
|
97
|
-
firstName: string;
|
|
98
94
|
lastName: string;
|
|
95
|
+
firstName: string;
|
|
99
96
|
email: string;
|
|
100
97
|
phone: string;
|
|
101
|
-
|
|
98
|
+
createdAt: string;
|
|
99
|
+
id: string;
|
|
100
|
+
updatedAt: string;
|
|
101
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
-
id: string;
|
|
105
|
-
createdAt: string | Date;
|
|
106
|
-
updatedAt: string | Date;
|
|
107
|
-
firstName: string;
|
|
108
104
|
lastName: string;
|
|
105
|
+
firstName: string;
|
|
109
106
|
email: string;
|
|
110
107
|
phone: string;
|
|
111
|
-
|
|
108
|
+
createdAt: string | Date;
|
|
109
|
+
id: string;
|
|
110
|
+
updatedAt: string | Date;
|
|
111
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
}>;
|
|
114
114
|
linkType: z.ZodEnum<["CREATION", "EDIT_SUGGESTION"]>;
|
|
@@ -121,42 +121,54 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
121
121
|
lastName: z.ZodString;
|
|
122
122
|
email: z.ZodString;
|
|
123
123
|
phone: z.ZodString;
|
|
124
|
-
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
124
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
125
125
|
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
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
|
-
id: string;
|
|
130
|
-
createdAt: string;
|
|
131
|
-
updatedAt: string;
|
|
132
|
-
firstName: string;
|
|
133
129
|
lastName: string;
|
|
130
|
+
firstName: string;
|
|
134
131
|
email: string;
|
|
135
132
|
phone: string;
|
|
136
|
-
|
|
133
|
+
createdAt: string;
|
|
134
|
+
id: string;
|
|
135
|
+
updatedAt: string;
|
|
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
|
-
id: string;
|
|
140
|
-
createdAt: string | Date;
|
|
141
|
-
updatedAt: string | Date;
|
|
142
|
-
firstName: string;
|
|
143
139
|
lastName: string;
|
|
140
|
+
firstName: string;
|
|
144
141
|
email: string;
|
|
145
142
|
phone: string;
|
|
146
|
-
|
|
143
|
+
createdAt: string | Date;
|
|
144
|
+
id: string;
|
|
145
|
+
updatedAt: string | Date;
|
|
146
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
-
id: string;
|
|
153
152
|
createdAt: string;
|
|
153
|
+
id: string;
|
|
154
154
|
updatedAt: string;
|
|
155
155
|
agentId: string;
|
|
156
|
-
|
|
156
|
+
agent: {
|
|
157
|
+
lastName: string;
|
|
158
|
+
firstName: string;
|
|
159
|
+
email: string;
|
|
160
|
+
phone: string;
|
|
161
|
+
createdAt: string;
|
|
157
162
|
id: string;
|
|
158
|
-
|
|
163
|
+
updatedAt: string;
|
|
164
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
+
client: {
|
|
159
169
|
createdAt: string;
|
|
170
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
171
|
+
id: string;
|
|
160
172
|
updatedAt: string;
|
|
161
173
|
name: string;
|
|
162
174
|
crn: string | null;
|
|
@@ -165,51 +177,51 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
165
177
|
director: string;
|
|
166
178
|
blacklistReason?: string | null | undefined;
|
|
167
179
|
lastUpdatedBy?: {
|
|
168
|
-
id: string;
|
|
169
|
-
firstName: string;
|
|
170
180
|
lastName: string;
|
|
181
|
+
firstName: string;
|
|
171
182
|
email: string;
|
|
183
|
+
id: string;
|
|
172
184
|
} | null | undefined;
|
|
173
185
|
agentClientLinks?: {
|
|
174
186
|
agentId: string;
|
|
175
187
|
} | null | undefined;
|
|
176
188
|
};
|
|
177
|
-
|
|
189
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
178
190
|
createdBy: string;
|
|
179
|
-
|
|
180
|
-
id: string;
|
|
181
|
-
createdAt: string;
|
|
182
|
-
updatedAt: string;
|
|
183
|
-
firstName: string;
|
|
191
|
+
creator: {
|
|
184
192
|
lastName: string;
|
|
193
|
+
firstName: string;
|
|
185
194
|
email: string;
|
|
186
195
|
phone: string;
|
|
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: {
|
|
192
|
-
id: string;
|
|
193
196
|
createdAt: string;
|
|
197
|
+
id: string;
|
|
194
198
|
updatedAt: string;
|
|
195
|
-
|
|
196
|
-
lastName: string;
|
|
197
|
-
email: string;
|
|
198
|
-
phone: string;
|
|
199
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
199
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
-
id: string;
|
|
206
205
|
createdAt: string | Date;
|
|
206
|
+
id: string;
|
|
207
207
|
updatedAt: string | Date;
|
|
208
208
|
agentId: string;
|
|
209
|
-
|
|
209
|
+
agent: {
|
|
210
|
+
lastName: string;
|
|
211
|
+
firstName: string;
|
|
212
|
+
email: string;
|
|
213
|
+
phone: string;
|
|
214
|
+
createdAt: string | Date;
|
|
210
215
|
id: string;
|
|
211
|
-
|
|
216
|
+
updatedAt: string | Date;
|
|
217
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
+
client: {
|
|
212
222
|
createdAt: string | Date;
|
|
223
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
224
|
+
id: string;
|
|
213
225
|
updatedAt: string | Date;
|
|
214
226
|
name: string;
|
|
215
227
|
crn: string | null;
|
|
@@ -218,38 +230,26 @@ export declare const AgentClientLinkSchema: z.ZodObject<{
|
|
|
218
230
|
director: string;
|
|
219
231
|
blacklistReason?: string | null | undefined;
|
|
220
232
|
lastUpdatedBy?: {
|
|
221
|
-
id: string;
|
|
222
|
-
firstName: string;
|
|
223
233
|
lastName: string;
|
|
234
|
+
firstName: string;
|
|
224
235
|
email: string;
|
|
236
|
+
id: string;
|
|
225
237
|
} | null | undefined;
|
|
226
238
|
agentClientLinks?: {
|
|
227
239
|
agentId: string;
|
|
228
240
|
} | null | undefined;
|
|
229
241
|
};
|
|
230
|
-
|
|
242
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
231
243
|
createdBy: string;
|
|
232
|
-
|
|
233
|
-
id: string;
|
|
234
|
-
createdAt: string | Date;
|
|
235
|
-
updatedAt: string | Date;
|
|
236
|
-
firstName: string;
|
|
244
|
+
creator: {
|
|
237
245
|
lastName: string;
|
|
246
|
+
firstName: string;
|
|
238
247
|
email: string;
|
|
239
248
|
phone: string;
|
|
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: {
|
|
245
|
-
id: string;
|
|
246
249
|
createdAt: string | Date;
|
|
250
|
+
id: string;
|
|
247
251
|
updatedAt: string | Date;
|
|
248
|
-
|
|
249
|
-
lastName: string;
|
|
250
|
-
email: string;
|
|
251
|
-
phone: string;
|
|
252
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
252
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
};
|
|
255
255
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
@@ -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
|
-
id: string;
|
|
311
|
-
firstName: string;
|
|
312
310
|
lastName: string;
|
|
311
|
+
firstName: string;
|
|
313
312
|
email: string;
|
|
314
|
-
}, {
|
|
315
313
|
id: string;
|
|
316
|
-
|
|
314
|
+
}, {
|
|
317
315
|
lastName: string;
|
|
316
|
+
firstName: string;
|
|
318
317
|
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
|
-
id: string;
|
|
331
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
332
330
|
createdAt: string;
|
|
331
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
332
|
+
id: 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
|
-
id: string;
|
|
342
|
-
firstName: string;
|
|
343
341
|
lastName: string;
|
|
342
|
+
firstName: string;
|
|
344
343
|
email: string;
|
|
344
|
+
id: string;
|
|
345
345
|
} | null | undefined;
|
|
346
346
|
agentClientLinks?: {
|
|
347
347
|
agentId: string;
|
|
348
348
|
} | null | undefined;
|
|
349
349
|
}, {
|
|
350
|
-
id: string;
|
|
351
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
352
350
|
createdAt: string | Date;
|
|
351
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
352
|
+
id: string;
|
|
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
|
-
id: string;
|
|
362
|
-
firstName: string;
|
|
363
361
|
lastName: string;
|
|
362
|
+
firstName: string;
|
|
364
363
|
email: string;
|
|
364
|
+
id: string;
|
|
365
365
|
} | null | undefined;
|
|
366
366
|
agentClientLinks?: {
|
|
367
367
|
agentId: string;
|
|
@@ -374,29 +374,29 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
374
374
|
lastName: z.ZodString;
|
|
375
375
|
email: z.ZodString;
|
|
376
376
|
phone: z.ZodString;
|
|
377
|
-
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
377
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
378
378
|
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
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
|
-
id: string;
|
|
383
|
-
createdAt: string;
|
|
384
|
-
updatedAt: string;
|
|
385
|
-
firstName: string;
|
|
386
382
|
lastName: string;
|
|
383
|
+
firstName: string;
|
|
387
384
|
email: string;
|
|
388
385
|
phone: string;
|
|
389
|
-
|
|
386
|
+
createdAt: string;
|
|
387
|
+
id: string;
|
|
388
|
+
updatedAt: string;
|
|
389
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
-
id: string;
|
|
393
|
-
createdAt: string | Date;
|
|
394
|
-
updatedAt: string | Date;
|
|
395
|
-
firstName: string;
|
|
396
392
|
lastName: string;
|
|
393
|
+
firstName: string;
|
|
397
394
|
email: string;
|
|
398
395
|
phone: string;
|
|
399
|
-
|
|
396
|
+
createdAt: string | Date;
|
|
397
|
+
id: string;
|
|
398
|
+
updatedAt: string | Date;
|
|
399
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
}>;
|
|
402
402
|
linkType: z.ZodEnum<["CREATION", "EDIT_SUGGESTION"]>;
|
|
@@ -409,42 +409,54 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
409
409
|
lastName: z.ZodString;
|
|
410
410
|
email: z.ZodString;
|
|
411
411
|
phone: z.ZodString;
|
|
412
|
-
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
412
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
413
413
|
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
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
|
-
id: string;
|
|
418
|
-
createdAt: string;
|
|
419
|
-
updatedAt: string;
|
|
420
|
-
firstName: string;
|
|
421
417
|
lastName: string;
|
|
418
|
+
firstName: string;
|
|
422
419
|
email: string;
|
|
423
420
|
phone: string;
|
|
424
|
-
|
|
421
|
+
createdAt: string;
|
|
422
|
+
id: string;
|
|
423
|
+
updatedAt: string;
|
|
424
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
-
id: string;
|
|
428
|
-
createdAt: string | Date;
|
|
429
|
-
updatedAt: string | Date;
|
|
430
|
-
firstName: string;
|
|
431
427
|
lastName: string;
|
|
428
|
+
firstName: string;
|
|
432
429
|
email: string;
|
|
433
430
|
phone: string;
|
|
434
|
-
|
|
431
|
+
createdAt: string | Date;
|
|
432
|
+
id: string;
|
|
433
|
+
updatedAt: string | Date;
|
|
434
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
-
id: string;
|
|
441
440
|
createdAt: string;
|
|
441
|
+
id: string;
|
|
442
442
|
updatedAt: string;
|
|
443
443
|
agentId: string;
|
|
444
|
-
|
|
444
|
+
agent: {
|
|
445
|
+
lastName: string;
|
|
446
|
+
firstName: string;
|
|
447
|
+
email: string;
|
|
448
|
+
phone: string;
|
|
449
|
+
createdAt: string;
|
|
445
450
|
id: string;
|
|
446
|
-
|
|
451
|
+
updatedAt: string;
|
|
452
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
+
client: {
|
|
447
457
|
createdAt: string;
|
|
458
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
459
|
+
id: string;
|
|
448
460
|
updatedAt: string;
|
|
449
461
|
name: string;
|
|
450
462
|
crn: string | null;
|
|
@@ -453,51 +465,51 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
453
465
|
director: string;
|
|
454
466
|
blacklistReason?: string | null | undefined;
|
|
455
467
|
lastUpdatedBy?: {
|
|
456
|
-
id: string;
|
|
457
|
-
firstName: string;
|
|
458
468
|
lastName: string;
|
|
469
|
+
firstName: string;
|
|
459
470
|
email: string;
|
|
471
|
+
id: string;
|
|
460
472
|
} | null | undefined;
|
|
461
473
|
agentClientLinks?: {
|
|
462
474
|
agentId: string;
|
|
463
475
|
} | null | undefined;
|
|
464
476
|
};
|
|
465
|
-
|
|
477
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
466
478
|
createdBy: string;
|
|
467
|
-
|
|
468
|
-
id: string;
|
|
469
|
-
createdAt: string;
|
|
470
|
-
updatedAt: string;
|
|
471
|
-
firstName: string;
|
|
479
|
+
creator: {
|
|
472
480
|
lastName: string;
|
|
481
|
+
firstName: string;
|
|
473
482
|
email: string;
|
|
474
483
|
phone: string;
|
|
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: {
|
|
480
|
-
id: string;
|
|
481
484
|
createdAt: string;
|
|
485
|
+
id: string;
|
|
482
486
|
updatedAt: string;
|
|
483
|
-
|
|
484
|
-
lastName: string;
|
|
485
|
-
email: string;
|
|
486
|
-
phone: string;
|
|
487
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
487
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
-
id: string;
|
|
494
493
|
createdAt: string | Date;
|
|
494
|
+
id: string;
|
|
495
495
|
updatedAt: string | Date;
|
|
496
496
|
agentId: string;
|
|
497
|
-
|
|
497
|
+
agent: {
|
|
498
|
+
lastName: string;
|
|
499
|
+
firstName: string;
|
|
500
|
+
email: string;
|
|
501
|
+
phone: string;
|
|
502
|
+
createdAt: string | Date;
|
|
498
503
|
id: string;
|
|
499
|
-
|
|
504
|
+
updatedAt: string | Date;
|
|
505
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
+
client: {
|
|
500
510
|
createdAt: string | Date;
|
|
511
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
512
|
+
id: string;
|
|
501
513
|
updatedAt: string | Date;
|
|
502
514
|
name: string;
|
|
503
515
|
crn: string | null;
|
|
@@ -506,38 +518,26 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
506
518
|
director: string;
|
|
507
519
|
blacklistReason?: string | null | undefined;
|
|
508
520
|
lastUpdatedBy?: {
|
|
509
|
-
id: string;
|
|
510
|
-
firstName: string;
|
|
511
521
|
lastName: string;
|
|
522
|
+
firstName: string;
|
|
512
523
|
email: string;
|
|
524
|
+
id: string;
|
|
513
525
|
} | null | undefined;
|
|
514
526
|
agentClientLinks?: {
|
|
515
527
|
agentId: string;
|
|
516
528
|
} | null | undefined;
|
|
517
529
|
};
|
|
518
|
-
|
|
530
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
519
531
|
createdBy: string;
|
|
520
|
-
|
|
521
|
-
id: string;
|
|
522
|
-
createdAt: string | Date;
|
|
523
|
-
updatedAt: string | Date;
|
|
524
|
-
firstName: string;
|
|
532
|
+
creator: {
|
|
525
533
|
lastName: string;
|
|
534
|
+
firstName: string;
|
|
526
535
|
email: string;
|
|
527
536
|
phone: string;
|
|
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: {
|
|
533
|
-
id: string;
|
|
534
537
|
createdAt: string | Date;
|
|
538
|
+
id: string;
|
|
535
539
|
updatedAt: string | Date;
|
|
536
|
-
|
|
537
|
-
lastName: string;
|
|
538
|
-
email: string;
|
|
539
|
-
phone: string;
|
|
540
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
540
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
};
|
|
543
543
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
@@ -551,14 +551,26 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
551
551
|
}, "strip", z.ZodTypeAny, {
|
|
552
552
|
limit: number;
|
|
553
553
|
items: {
|
|
554
|
-
id: string;
|
|
555
554
|
createdAt: string;
|
|
555
|
+
id: string;
|
|
556
556
|
updatedAt: string;
|
|
557
557
|
agentId: string;
|
|
558
|
-
|
|
558
|
+
agent: {
|
|
559
|
+
lastName: string;
|
|
560
|
+
firstName: string;
|
|
561
|
+
email: string;
|
|
562
|
+
phone: string;
|
|
563
|
+
createdAt: string;
|
|
559
564
|
id: string;
|
|
560
|
-
|
|
565
|
+
updatedAt: string;
|
|
566
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
+
client: {
|
|
561
571
|
createdAt: string;
|
|
572
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
573
|
+
id: string;
|
|
562
574
|
updatedAt: string;
|
|
563
575
|
name: string;
|
|
564
576
|
crn: string | null;
|
|
@@ -567,38 +579,26 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
567
579
|
director: string;
|
|
568
580
|
blacklistReason?: string | null | undefined;
|
|
569
581
|
lastUpdatedBy?: {
|
|
570
|
-
id: string;
|
|
571
|
-
firstName: string;
|
|
572
582
|
lastName: string;
|
|
583
|
+
firstName: string;
|
|
573
584
|
email: string;
|
|
585
|
+
id: string;
|
|
574
586
|
} | null | undefined;
|
|
575
587
|
agentClientLinks?: {
|
|
576
588
|
agentId: string;
|
|
577
589
|
} | null | undefined;
|
|
578
590
|
};
|
|
579
|
-
|
|
591
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
580
592
|
createdBy: string;
|
|
581
|
-
|
|
582
|
-
id: string;
|
|
583
|
-
createdAt: string;
|
|
584
|
-
updatedAt: string;
|
|
585
|
-
firstName: string;
|
|
593
|
+
creator: {
|
|
586
594
|
lastName: string;
|
|
595
|
+
firstName: string;
|
|
587
596
|
email: string;
|
|
588
597
|
phone: string;
|
|
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: {
|
|
594
|
-
id: string;
|
|
595
598
|
createdAt: string;
|
|
599
|
+
id: string;
|
|
596
600
|
updatedAt: string;
|
|
597
|
-
|
|
598
|
-
lastName: string;
|
|
599
|
-
email: string;
|
|
600
|
-
phone: string;
|
|
601
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
601
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
};
|
|
604
604
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
@@ -611,14 +611,26 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
611
611
|
}, {
|
|
612
612
|
limit: number;
|
|
613
613
|
items: {
|
|
614
|
-
id: string;
|
|
615
614
|
createdAt: string | Date;
|
|
615
|
+
id: string;
|
|
616
616
|
updatedAt: string | Date;
|
|
617
617
|
agentId: string;
|
|
618
|
-
|
|
618
|
+
agent: {
|
|
619
|
+
lastName: string;
|
|
620
|
+
firstName: string;
|
|
621
|
+
email: string;
|
|
622
|
+
phone: string;
|
|
623
|
+
createdAt: string | Date;
|
|
619
624
|
id: string;
|
|
620
|
-
|
|
625
|
+
updatedAt: string | Date;
|
|
626
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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;
|
|
630
|
+
client: {
|
|
621
631
|
createdAt: string | Date;
|
|
632
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
633
|
+
id: string;
|
|
622
634
|
updatedAt: string | Date;
|
|
623
635
|
name: string;
|
|
624
636
|
crn: string | null;
|
|
@@ -626,39 +638,27 @@ export declare const PaginatedAgentClientLinkResponseSchema: z.ZodObject<{
|
|
|
626
638
|
soleTrader: boolean;
|
|
627
639
|
director: string;
|
|
628
640
|
blacklistReason?: string | null | undefined;
|
|
629
|
-
lastUpdatedBy?: {
|
|
630
|
-
|
|
631
|
-
firstName: string;
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
} | null | undefined;
|
|
635
|
-
agentClientLinks?: {
|
|
636
|
-
agentId: string;
|
|
637
|
-
} | null | undefined;
|
|
638
|
-
};
|
|
639
|
-
clientId: string;
|
|
640
|
-
createdBy: string;
|
|
641
|
-
agent: {
|
|
642
|
-
id: string;
|
|
643
|
-
createdAt: string | Date;
|
|
644
|
-
updatedAt: string | Date;
|
|
645
|
-
firstName: string;
|
|
646
|
-
lastName: string;
|
|
647
|
-
email: string;
|
|
648
|
-
phone: string;
|
|
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;
|
|
641
|
+
lastUpdatedBy?: {
|
|
642
|
+
lastName: string;
|
|
643
|
+
firstName: string;
|
|
644
|
+
email: string;
|
|
645
|
+
id: string;
|
|
646
|
+
} | null | undefined;
|
|
647
|
+
agentClientLinks?: {
|
|
648
|
+
agentId: string;
|
|
649
|
+
} | null | undefined;
|
|
651
650
|
};
|
|
652
651
|
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
652
|
+
createdBy: string;
|
|
653
653
|
creator: {
|
|
654
|
-
id: string;
|
|
655
|
-
createdAt: string | Date;
|
|
656
|
-
updatedAt: string | Date;
|
|
657
|
-
firstName: string;
|
|
658
654
|
lastName: string;
|
|
655
|
+
firstName: string;
|
|
659
656
|
email: string;
|
|
660
657
|
phone: string;
|
|
661
|
-
|
|
658
|
+
createdAt: string | Date;
|
|
659
|
+
id: string;
|
|
660
|
+
updatedAt: string | Date;
|
|
661
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
};
|
|
664
664
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
@@ -677,6 +677,9 @@ 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
|
+
};
|
|
680
683
|
query: z.ZodObject<{
|
|
681
684
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
682
685
|
page: z.ZodDefault<z.ZodNumber>;
|
|
@@ -703,9 +706,6 @@ export declare const agentClientLinksContract: {
|
|
|
703
706
|
clientId?: string | undefined;
|
|
704
707
|
linkType?: "CREATION" | "EDIT_SUGGESTION" | undefined;
|
|
705
708
|
}>;
|
|
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
|
-
id: string;
|
|
833
|
-
firstName: string;
|
|
834
832
|
lastName: string;
|
|
833
|
+
firstName: string;
|
|
835
834
|
email: string;
|
|
836
|
-
}, {
|
|
837
835
|
id: string;
|
|
838
|
-
|
|
836
|
+
}, {
|
|
839
837
|
lastName: string;
|
|
838
|
+
firstName: string;
|
|
840
839
|
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
|
-
id: string;
|
|
853
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
854
852
|
createdAt: string;
|
|
853
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
854
|
+
id: 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
|
-
id: string;
|
|
864
|
-
firstName: string;
|
|
865
863
|
lastName: string;
|
|
864
|
+
firstName: string;
|
|
866
865
|
email: string;
|
|
866
|
+
id: string;
|
|
867
867
|
} | null | undefined;
|
|
868
868
|
agentClientLinks?: {
|
|
869
869
|
agentId: string;
|
|
870
870
|
} | null | undefined;
|
|
871
871
|
}, {
|
|
872
|
-
id: string;
|
|
873
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
874
872
|
createdAt: string | Date;
|
|
873
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
874
|
+
id: string;
|
|
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
|
-
id: string;
|
|
884
|
-
firstName: string;
|
|
885
883
|
lastName: string;
|
|
884
|
+
firstName: string;
|
|
886
885
|
email: string;
|
|
886
|
+
id: string;
|
|
887
887
|
} | null | undefined;
|
|
888
888
|
agentClientLinks?: {
|
|
889
889
|
agentId: string;
|
|
@@ -896,29 +896,29 @@ export declare const agentClientLinksContract: {
|
|
|
896
896
|
lastName: z.ZodString;
|
|
897
897
|
email: z.ZodString;
|
|
898
898
|
phone: z.ZodString;
|
|
899
|
-
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
899
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
900
900
|
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
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
|
-
id: string;
|
|
905
|
-
createdAt: string;
|
|
906
|
-
updatedAt: string;
|
|
907
|
-
firstName: string;
|
|
908
904
|
lastName: string;
|
|
905
|
+
firstName: string;
|
|
909
906
|
email: string;
|
|
910
907
|
phone: string;
|
|
911
|
-
|
|
908
|
+
createdAt: string;
|
|
909
|
+
id: string;
|
|
910
|
+
updatedAt: string;
|
|
911
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
-
id: string;
|
|
915
|
-
createdAt: string | Date;
|
|
916
|
-
updatedAt: string | Date;
|
|
917
|
-
firstName: string;
|
|
918
914
|
lastName: string;
|
|
915
|
+
firstName: string;
|
|
919
916
|
email: string;
|
|
920
917
|
phone: string;
|
|
921
|
-
|
|
918
|
+
createdAt: string | Date;
|
|
919
|
+
id: string;
|
|
920
|
+
updatedAt: string | Date;
|
|
921
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
}>;
|
|
924
924
|
linkType: z.ZodEnum<["CREATION", "EDIT_SUGGESTION"]>;
|
|
@@ -931,42 +931,54 @@ export declare const agentClientLinksContract: {
|
|
|
931
931
|
lastName: z.ZodString;
|
|
932
932
|
email: z.ZodString;
|
|
933
933
|
phone: z.ZodString;
|
|
934
|
-
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
934
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
935
935
|
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
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
|
-
id: string;
|
|
940
|
-
createdAt: string;
|
|
941
|
-
updatedAt: string;
|
|
942
|
-
firstName: string;
|
|
943
939
|
lastName: string;
|
|
940
|
+
firstName: string;
|
|
944
941
|
email: string;
|
|
945
942
|
phone: string;
|
|
946
|
-
|
|
943
|
+
createdAt: string;
|
|
944
|
+
id: string;
|
|
945
|
+
updatedAt: string;
|
|
946
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
-
id: string;
|
|
950
|
-
createdAt: string | Date;
|
|
951
|
-
updatedAt: string | Date;
|
|
952
|
-
firstName: string;
|
|
953
949
|
lastName: string;
|
|
950
|
+
firstName: string;
|
|
954
951
|
email: string;
|
|
955
952
|
phone: string;
|
|
956
|
-
|
|
953
|
+
createdAt: string | Date;
|
|
954
|
+
id: string;
|
|
955
|
+
updatedAt: string | Date;
|
|
956
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
-
id: string;
|
|
963
962
|
createdAt: string;
|
|
963
|
+
id: string;
|
|
964
964
|
updatedAt: string;
|
|
965
965
|
agentId: string;
|
|
966
|
-
|
|
966
|
+
agent: {
|
|
967
|
+
lastName: string;
|
|
968
|
+
firstName: string;
|
|
969
|
+
email: string;
|
|
970
|
+
phone: string;
|
|
971
|
+
createdAt: string;
|
|
967
972
|
id: string;
|
|
968
|
-
|
|
973
|
+
updatedAt: string;
|
|
974
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
+
client: {
|
|
969
979
|
createdAt: string;
|
|
980
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
981
|
+
id: string;
|
|
970
982
|
updatedAt: string;
|
|
971
983
|
name: string;
|
|
972
984
|
crn: string | null;
|
|
@@ -975,51 +987,51 @@ export declare const agentClientLinksContract: {
|
|
|
975
987
|
director: string;
|
|
976
988
|
blacklistReason?: string | null | undefined;
|
|
977
989
|
lastUpdatedBy?: {
|
|
978
|
-
id: string;
|
|
979
|
-
firstName: string;
|
|
980
990
|
lastName: string;
|
|
991
|
+
firstName: string;
|
|
981
992
|
email: string;
|
|
993
|
+
id: string;
|
|
982
994
|
} | null | undefined;
|
|
983
995
|
agentClientLinks?: {
|
|
984
996
|
agentId: string;
|
|
985
997
|
} | null | undefined;
|
|
986
998
|
};
|
|
987
|
-
|
|
999
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
988
1000
|
createdBy: string;
|
|
989
|
-
|
|
990
|
-
id: string;
|
|
991
|
-
createdAt: string;
|
|
992
|
-
updatedAt: string;
|
|
993
|
-
firstName: string;
|
|
1001
|
+
creator: {
|
|
994
1002
|
lastName: string;
|
|
1003
|
+
firstName: string;
|
|
995
1004
|
email: string;
|
|
996
1005
|
phone: string;
|
|
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: {
|
|
1002
|
-
id: string;
|
|
1003
1006
|
createdAt: string;
|
|
1007
|
+
id: string;
|
|
1004
1008
|
updatedAt: string;
|
|
1005
|
-
|
|
1006
|
-
lastName: string;
|
|
1007
|
-
email: string;
|
|
1008
|
-
phone: string;
|
|
1009
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1009
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
-
id: string;
|
|
1016
1015
|
createdAt: string | Date;
|
|
1016
|
+
id: string;
|
|
1017
1017
|
updatedAt: string | Date;
|
|
1018
1018
|
agentId: string;
|
|
1019
|
-
|
|
1019
|
+
agent: {
|
|
1020
|
+
lastName: string;
|
|
1021
|
+
firstName: string;
|
|
1022
|
+
email: string;
|
|
1023
|
+
phone: string;
|
|
1024
|
+
createdAt: string | Date;
|
|
1020
1025
|
id: string;
|
|
1021
|
-
|
|
1026
|
+
updatedAt: string | Date;
|
|
1027
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
+
client: {
|
|
1022
1032
|
createdAt: string | Date;
|
|
1033
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1034
|
+
id: string;
|
|
1023
1035
|
updatedAt: string | Date;
|
|
1024
1036
|
name: string;
|
|
1025
1037
|
crn: string | null;
|
|
@@ -1028,38 +1040,26 @@ export declare const agentClientLinksContract: {
|
|
|
1028
1040
|
director: string;
|
|
1029
1041
|
blacklistReason?: string | null | undefined;
|
|
1030
1042
|
lastUpdatedBy?: {
|
|
1031
|
-
id: string;
|
|
1032
|
-
firstName: string;
|
|
1033
1043
|
lastName: string;
|
|
1044
|
+
firstName: string;
|
|
1034
1045
|
email: string;
|
|
1046
|
+
id: string;
|
|
1035
1047
|
} | null | undefined;
|
|
1036
1048
|
agentClientLinks?: {
|
|
1037
1049
|
agentId: string;
|
|
1038
1050
|
} | null | undefined;
|
|
1039
1051
|
};
|
|
1040
|
-
|
|
1052
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1041
1053
|
createdBy: string;
|
|
1042
|
-
|
|
1043
|
-
id: string;
|
|
1044
|
-
createdAt: string | Date;
|
|
1045
|
-
updatedAt: string | Date;
|
|
1046
|
-
firstName: string;
|
|
1054
|
+
creator: {
|
|
1047
1055
|
lastName: string;
|
|
1056
|
+
firstName: string;
|
|
1048
1057
|
email: string;
|
|
1049
1058
|
phone: string;
|
|
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: {
|
|
1055
|
-
id: string;
|
|
1056
1059
|
createdAt: string | Date;
|
|
1060
|
+
id: string;
|
|
1057
1061
|
updatedAt: string | Date;
|
|
1058
|
-
|
|
1059
|
-
lastName: string;
|
|
1060
|
-
email: string;
|
|
1061
|
-
phone: string;
|
|
1062
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1062
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
};
|
|
1065
1065
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
@@ -1073,14 +1073,26 @@ export declare const agentClientLinksContract: {
|
|
|
1073
1073
|
}, "strip", z.ZodTypeAny, {
|
|
1074
1074
|
limit: number;
|
|
1075
1075
|
items: {
|
|
1076
|
-
id: string;
|
|
1077
1076
|
createdAt: string;
|
|
1077
|
+
id: string;
|
|
1078
1078
|
updatedAt: string;
|
|
1079
1079
|
agentId: string;
|
|
1080
|
-
|
|
1080
|
+
agent: {
|
|
1081
|
+
lastName: string;
|
|
1082
|
+
firstName: string;
|
|
1083
|
+
email: string;
|
|
1084
|
+
phone: string;
|
|
1085
|
+
createdAt: string;
|
|
1081
1086
|
id: string;
|
|
1082
|
-
|
|
1087
|
+
updatedAt: string;
|
|
1088
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
+
client: {
|
|
1083
1093
|
createdAt: string;
|
|
1094
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1095
|
+
id: string;
|
|
1084
1096
|
updatedAt: string;
|
|
1085
1097
|
name: string;
|
|
1086
1098
|
crn: string | null;
|
|
@@ -1089,38 +1101,26 @@ export declare const agentClientLinksContract: {
|
|
|
1089
1101
|
director: string;
|
|
1090
1102
|
blacklistReason?: string | null | undefined;
|
|
1091
1103
|
lastUpdatedBy?: {
|
|
1092
|
-
id: string;
|
|
1093
|
-
firstName: string;
|
|
1094
1104
|
lastName: string;
|
|
1105
|
+
firstName: string;
|
|
1095
1106
|
email: string;
|
|
1107
|
+
id: string;
|
|
1096
1108
|
} | null | undefined;
|
|
1097
1109
|
agentClientLinks?: {
|
|
1098
1110
|
agentId: string;
|
|
1099
1111
|
} | null | undefined;
|
|
1100
1112
|
};
|
|
1101
|
-
|
|
1113
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1102
1114
|
createdBy: string;
|
|
1103
|
-
|
|
1104
|
-
id: string;
|
|
1105
|
-
createdAt: string;
|
|
1106
|
-
updatedAt: string;
|
|
1107
|
-
firstName: string;
|
|
1115
|
+
creator: {
|
|
1108
1116
|
lastName: string;
|
|
1117
|
+
firstName: string;
|
|
1109
1118
|
email: string;
|
|
1110
1119
|
phone: string;
|
|
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: {
|
|
1116
|
-
id: string;
|
|
1117
1120
|
createdAt: string;
|
|
1121
|
+
id: string;
|
|
1118
1122
|
updatedAt: string;
|
|
1119
|
-
|
|
1120
|
-
lastName: string;
|
|
1121
|
-
email: string;
|
|
1122
|
-
phone: string;
|
|
1123
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1123
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
};
|
|
1126
1126
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
@@ -1133,14 +1133,26 @@ export declare const agentClientLinksContract: {
|
|
|
1133
1133
|
}, {
|
|
1134
1134
|
limit: number;
|
|
1135
1135
|
items: {
|
|
1136
|
-
id: string;
|
|
1137
1136
|
createdAt: string | Date;
|
|
1137
|
+
id: string;
|
|
1138
1138
|
updatedAt: string | Date;
|
|
1139
1139
|
agentId: string;
|
|
1140
|
-
|
|
1140
|
+
agent: {
|
|
1141
|
+
lastName: string;
|
|
1142
|
+
firstName: string;
|
|
1143
|
+
email: string;
|
|
1144
|
+
phone: string;
|
|
1145
|
+
createdAt: string | Date;
|
|
1141
1146
|
id: string;
|
|
1142
|
-
|
|
1147
|
+
updatedAt: string | Date;
|
|
1148
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
+
client: {
|
|
1143
1153
|
createdAt: string | Date;
|
|
1154
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1155
|
+
id: string;
|
|
1144
1156
|
updatedAt: string | Date;
|
|
1145
1157
|
name: string;
|
|
1146
1158
|
crn: string | null;
|
|
@@ -1149,38 +1161,26 @@ export declare const agentClientLinksContract: {
|
|
|
1149
1161
|
director: string;
|
|
1150
1162
|
blacklistReason?: string | null | undefined;
|
|
1151
1163
|
lastUpdatedBy?: {
|
|
1152
|
-
id: string;
|
|
1153
|
-
firstName: string;
|
|
1154
1164
|
lastName: string;
|
|
1165
|
+
firstName: string;
|
|
1155
1166
|
email: string;
|
|
1167
|
+
id: string;
|
|
1156
1168
|
} | null | undefined;
|
|
1157
1169
|
agentClientLinks?: {
|
|
1158
1170
|
agentId: string;
|
|
1159
1171
|
} | null | undefined;
|
|
1160
1172
|
};
|
|
1161
|
-
|
|
1173
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1162
1174
|
createdBy: string;
|
|
1163
|
-
|
|
1164
|
-
id: string;
|
|
1165
|
-
createdAt: string | Date;
|
|
1166
|
-
updatedAt: string | Date;
|
|
1167
|
-
firstName: string;
|
|
1175
|
+
creator: {
|
|
1168
1176
|
lastName: string;
|
|
1177
|
+
firstName: string;
|
|
1169
1178
|
email: string;
|
|
1170
1179
|
phone: string;
|
|
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: {
|
|
1176
|
-
id: string;
|
|
1177
1180
|
createdAt: string | Date;
|
|
1181
|
+
id: string;
|
|
1178
1182
|
updatedAt: string | Date;
|
|
1179
|
-
|
|
1180
|
-
lastName: string;
|
|
1181
|
-
email: string;
|
|
1182
|
-
phone: string;
|
|
1183
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1183
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
};
|
|
1186
1186
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
@@ -1326,15 +1326,15 @@ export declare const agentClientLinksContract: {
|
|
|
1326
1326
|
lastName: z.ZodString;
|
|
1327
1327
|
email: z.ZodString;
|
|
1328
1328
|
}, "strip", z.ZodTypeAny, {
|
|
1329
|
-
id: string;
|
|
1330
|
-
firstName: string;
|
|
1331
1329
|
lastName: string;
|
|
1330
|
+
firstName: string;
|
|
1332
1331
|
email: string;
|
|
1333
|
-
}, {
|
|
1334
1332
|
id: string;
|
|
1335
|
-
|
|
1333
|
+
}, {
|
|
1336
1334
|
lastName: string;
|
|
1335
|
+
firstName: string;
|
|
1337
1336
|
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
|
-
id: string;
|
|
1350
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1351
1349
|
createdAt: string;
|
|
1350
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1351
|
+
id: 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
|
-
id: string;
|
|
1361
|
-
firstName: string;
|
|
1362
1360
|
lastName: string;
|
|
1361
|
+
firstName: string;
|
|
1363
1362
|
email: string;
|
|
1363
|
+
id: string;
|
|
1364
1364
|
} | null | undefined;
|
|
1365
1365
|
agentClientLinks?: {
|
|
1366
1366
|
agentId: string;
|
|
1367
1367
|
} | null | undefined;
|
|
1368
1368
|
}, {
|
|
1369
|
-
id: string;
|
|
1370
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1371
1369
|
createdAt: string | Date;
|
|
1370
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1371
|
+
id: string;
|
|
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
|
-
id: string;
|
|
1381
|
-
firstName: string;
|
|
1382
1380
|
lastName: string;
|
|
1381
|
+
firstName: string;
|
|
1383
1382
|
email: string;
|
|
1383
|
+
id: string;
|
|
1384
1384
|
} | null | undefined;
|
|
1385
1385
|
agentClientLinks?: {
|
|
1386
1386
|
agentId: string;
|
|
@@ -1393,29 +1393,29 @@ export declare const agentClientLinksContract: {
|
|
|
1393
1393
|
lastName: z.ZodString;
|
|
1394
1394
|
email: z.ZodString;
|
|
1395
1395
|
phone: z.ZodString;
|
|
1396
|
-
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
1396
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
1397
1397
|
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
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
|
-
id: string;
|
|
1402
|
-
createdAt: string;
|
|
1403
|
-
updatedAt: string;
|
|
1404
|
-
firstName: string;
|
|
1405
1401
|
lastName: string;
|
|
1402
|
+
firstName: string;
|
|
1406
1403
|
email: string;
|
|
1407
1404
|
phone: string;
|
|
1408
|
-
|
|
1405
|
+
createdAt: string;
|
|
1406
|
+
id: string;
|
|
1407
|
+
updatedAt: string;
|
|
1408
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
-
id: string;
|
|
1412
|
-
createdAt: string | Date;
|
|
1413
|
-
updatedAt: string | Date;
|
|
1414
|
-
firstName: string;
|
|
1415
1411
|
lastName: string;
|
|
1412
|
+
firstName: string;
|
|
1416
1413
|
email: string;
|
|
1417
1414
|
phone: string;
|
|
1418
|
-
|
|
1415
|
+
createdAt: string | Date;
|
|
1416
|
+
id: string;
|
|
1417
|
+
updatedAt: string | Date;
|
|
1418
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
}>;
|
|
1421
1421
|
linkType: z.ZodEnum<["CREATION", "EDIT_SUGGESTION"]>;
|
|
@@ -1428,42 +1428,54 @@ export declare const agentClientLinksContract: {
|
|
|
1428
1428
|
lastName: z.ZodString;
|
|
1429
1429
|
email: z.ZodString;
|
|
1430
1430
|
phone: z.ZodString;
|
|
1431
|
-
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
1431
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
1432
1432
|
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
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
|
-
id: string;
|
|
1437
|
-
createdAt: string;
|
|
1438
|
-
updatedAt: string;
|
|
1439
|
-
firstName: string;
|
|
1440
1436
|
lastName: string;
|
|
1437
|
+
firstName: string;
|
|
1441
1438
|
email: string;
|
|
1442
1439
|
phone: string;
|
|
1443
|
-
|
|
1440
|
+
createdAt: string;
|
|
1441
|
+
id: string;
|
|
1442
|
+
updatedAt: string;
|
|
1443
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
-
id: string;
|
|
1447
|
-
createdAt: string | Date;
|
|
1448
|
-
updatedAt: string | Date;
|
|
1449
|
-
firstName: string;
|
|
1450
1446
|
lastName: string;
|
|
1447
|
+
firstName: string;
|
|
1451
1448
|
email: string;
|
|
1452
1449
|
phone: string;
|
|
1453
|
-
|
|
1450
|
+
createdAt: string | Date;
|
|
1451
|
+
id: string;
|
|
1452
|
+
updatedAt: string | Date;
|
|
1453
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
-
id: string;
|
|
1460
1459
|
createdAt: string;
|
|
1460
|
+
id: string;
|
|
1461
1461
|
updatedAt: string;
|
|
1462
1462
|
agentId: string;
|
|
1463
|
-
|
|
1463
|
+
agent: {
|
|
1464
|
+
lastName: string;
|
|
1465
|
+
firstName: string;
|
|
1466
|
+
email: string;
|
|
1467
|
+
phone: string;
|
|
1468
|
+
createdAt: string;
|
|
1464
1469
|
id: string;
|
|
1465
|
-
|
|
1470
|
+
updatedAt: string;
|
|
1471
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
+
client: {
|
|
1466
1476
|
createdAt: string;
|
|
1477
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1478
|
+
id: string;
|
|
1467
1479
|
updatedAt: string;
|
|
1468
1480
|
name: string;
|
|
1469
1481
|
crn: string | null;
|
|
@@ -1472,51 +1484,51 @@ export declare const agentClientLinksContract: {
|
|
|
1472
1484
|
director: string;
|
|
1473
1485
|
blacklistReason?: string | null | undefined;
|
|
1474
1486
|
lastUpdatedBy?: {
|
|
1475
|
-
id: string;
|
|
1476
|
-
firstName: string;
|
|
1477
1487
|
lastName: string;
|
|
1488
|
+
firstName: string;
|
|
1478
1489
|
email: string;
|
|
1490
|
+
id: string;
|
|
1479
1491
|
} | null | undefined;
|
|
1480
1492
|
agentClientLinks?: {
|
|
1481
1493
|
agentId: string;
|
|
1482
1494
|
} | null | undefined;
|
|
1483
1495
|
};
|
|
1484
|
-
|
|
1496
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1485
1497
|
createdBy: string;
|
|
1486
|
-
|
|
1487
|
-
id: string;
|
|
1488
|
-
createdAt: string;
|
|
1489
|
-
updatedAt: string;
|
|
1490
|
-
firstName: string;
|
|
1498
|
+
creator: {
|
|
1491
1499
|
lastName: string;
|
|
1500
|
+
firstName: string;
|
|
1492
1501
|
email: string;
|
|
1493
1502
|
phone: string;
|
|
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: {
|
|
1499
|
-
id: string;
|
|
1500
1503
|
createdAt: string;
|
|
1504
|
+
id: string;
|
|
1501
1505
|
updatedAt: string;
|
|
1502
|
-
|
|
1503
|
-
lastName: string;
|
|
1504
|
-
email: string;
|
|
1505
|
-
phone: string;
|
|
1506
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1506
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
-
id: string;
|
|
1513
1512
|
createdAt: string | Date;
|
|
1513
|
+
id: string;
|
|
1514
1514
|
updatedAt: string | Date;
|
|
1515
1515
|
agentId: string;
|
|
1516
|
-
|
|
1516
|
+
agent: {
|
|
1517
|
+
lastName: string;
|
|
1518
|
+
firstName: string;
|
|
1519
|
+
email: string;
|
|
1520
|
+
phone: string;
|
|
1521
|
+
createdAt: string | Date;
|
|
1517
1522
|
id: string;
|
|
1518
|
-
|
|
1523
|
+
updatedAt: string | Date;
|
|
1524
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
+
client: {
|
|
1519
1529
|
createdAt: string | Date;
|
|
1530
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1531
|
+
id: string;
|
|
1520
1532
|
updatedAt: string | Date;
|
|
1521
1533
|
name: string;
|
|
1522
1534
|
crn: string | null;
|
|
@@ -1525,38 +1537,26 @@ export declare const agentClientLinksContract: {
|
|
|
1525
1537
|
director: string;
|
|
1526
1538
|
blacklistReason?: string | null | undefined;
|
|
1527
1539
|
lastUpdatedBy?: {
|
|
1528
|
-
id: string;
|
|
1529
|
-
firstName: string;
|
|
1530
1540
|
lastName: string;
|
|
1541
|
+
firstName: string;
|
|
1531
1542
|
email: string;
|
|
1543
|
+
id: string;
|
|
1532
1544
|
} | null | undefined;
|
|
1533
1545
|
agentClientLinks?: {
|
|
1534
1546
|
agentId: string;
|
|
1535
1547
|
} | null | undefined;
|
|
1536
1548
|
};
|
|
1537
|
-
|
|
1549
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1538
1550
|
createdBy: string;
|
|
1539
|
-
|
|
1540
|
-
id: string;
|
|
1541
|
-
createdAt: string | Date;
|
|
1542
|
-
updatedAt: string | Date;
|
|
1543
|
-
firstName: string;
|
|
1551
|
+
creator: {
|
|
1544
1552
|
lastName: string;
|
|
1553
|
+
firstName: string;
|
|
1545
1554
|
email: string;
|
|
1546
1555
|
phone: string;
|
|
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: {
|
|
1552
|
-
id: string;
|
|
1553
1556
|
createdAt: string | Date;
|
|
1557
|
+
id: string;
|
|
1554
1558
|
updatedAt: string | Date;
|
|
1555
|
-
|
|
1556
|
-
lastName: string;
|
|
1557
|
-
email: string;
|
|
1558
|
-
phone: string;
|
|
1559
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1559
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
};
|
|
1562
1562
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|
|
@@ -1729,15 +1729,15 @@ export declare const agentClientLinksContract: {
|
|
|
1729
1729
|
lastName: z.ZodString;
|
|
1730
1730
|
email: z.ZodString;
|
|
1731
1731
|
}, "strip", z.ZodTypeAny, {
|
|
1732
|
-
id: string;
|
|
1733
|
-
firstName: string;
|
|
1734
1732
|
lastName: string;
|
|
1733
|
+
firstName: string;
|
|
1735
1734
|
email: string;
|
|
1736
|
-
}, {
|
|
1737
1735
|
id: string;
|
|
1738
|
-
|
|
1736
|
+
}, {
|
|
1739
1737
|
lastName: string;
|
|
1738
|
+
firstName: string;
|
|
1740
1739
|
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
|
-
id: string;
|
|
1753
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1754
1752
|
createdAt: string;
|
|
1753
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1754
|
+
id: 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
|
-
id: string;
|
|
1764
|
-
firstName: string;
|
|
1765
1763
|
lastName: string;
|
|
1764
|
+
firstName: string;
|
|
1766
1765
|
email: string;
|
|
1766
|
+
id: string;
|
|
1767
1767
|
} | null | undefined;
|
|
1768
1768
|
agentClientLinks?: {
|
|
1769
1769
|
agentId: string;
|
|
1770
1770
|
} | null | undefined;
|
|
1771
1771
|
}, {
|
|
1772
|
-
id: string;
|
|
1773
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1774
1772
|
createdAt: string | Date;
|
|
1773
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1774
|
+
id: string;
|
|
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
|
-
id: string;
|
|
1784
|
-
firstName: string;
|
|
1785
1783
|
lastName: string;
|
|
1784
|
+
firstName: string;
|
|
1786
1785
|
email: string;
|
|
1786
|
+
id: string;
|
|
1787
1787
|
} | null | undefined;
|
|
1788
1788
|
agentClientLinks?: {
|
|
1789
1789
|
agentId: string;
|
|
@@ -1796,29 +1796,29 @@ export declare const agentClientLinksContract: {
|
|
|
1796
1796
|
lastName: z.ZodString;
|
|
1797
1797
|
email: z.ZodString;
|
|
1798
1798
|
phone: z.ZodString;
|
|
1799
|
-
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
1799
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
1800
1800
|
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
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
|
-
id: string;
|
|
1805
|
-
createdAt: string;
|
|
1806
|
-
updatedAt: string;
|
|
1807
|
-
firstName: string;
|
|
1808
1804
|
lastName: string;
|
|
1805
|
+
firstName: string;
|
|
1809
1806
|
email: string;
|
|
1810
1807
|
phone: string;
|
|
1811
|
-
|
|
1808
|
+
createdAt: string;
|
|
1809
|
+
id: string;
|
|
1810
|
+
updatedAt: string;
|
|
1811
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
-
id: string;
|
|
1815
|
-
createdAt: string | Date;
|
|
1816
|
-
updatedAt: string | Date;
|
|
1817
|
-
firstName: string;
|
|
1818
1814
|
lastName: string;
|
|
1815
|
+
firstName: string;
|
|
1819
1816
|
email: string;
|
|
1820
1817
|
phone: string;
|
|
1821
|
-
|
|
1818
|
+
createdAt: string | Date;
|
|
1819
|
+
id: string;
|
|
1820
|
+
updatedAt: string | Date;
|
|
1821
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
}>;
|
|
1824
1824
|
linkType: z.ZodEnum<["CREATION", "EDIT_SUGGESTION"]>;
|
|
@@ -1831,42 +1831,54 @@ export declare const agentClientLinksContract: {
|
|
|
1831
1831
|
lastName: z.ZodString;
|
|
1832
1832
|
email: z.ZodString;
|
|
1833
1833
|
phone: z.ZodString;
|
|
1834
|
-
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
1834
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
1835
1835
|
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
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
|
-
id: string;
|
|
1840
|
-
createdAt: string;
|
|
1841
|
-
updatedAt: string;
|
|
1842
|
-
firstName: string;
|
|
1843
1839
|
lastName: string;
|
|
1840
|
+
firstName: string;
|
|
1844
1841
|
email: string;
|
|
1845
1842
|
phone: string;
|
|
1846
|
-
|
|
1843
|
+
createdAt: string;
|
|
1844
|
+
id: string;
|
|
1845
|
+
updatedAt: string;
|
|
1846
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
-
id: string;
|
|
1850
|
-
createdAt: string | Date;
|
|
1851
|
-
updatedAt: string | Date;
|
|
1852
|
-
firstName: string;
|
|
1853
1849
|
lastName: string;
|
|
1850
|
+
firstName: string;
|
|
1854
1851
|
email: string;
|
|
1855
1852
|
phone: string;
|
|
1856
|
-
|
|
1853
|
+
createdAt: string | Date;
|
|
1854
|
+
id: string;
|
|
1855
|
+
updatedAt: string | Date;
|
|
1856
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
-
id: string;
|
|
1863
1862
|
createdAt: string;
|
|
1863
|
+
id: string;
|
|
1864
1864
|
updatedAt: string;
|
|
1865
1865
|
agentId: string;
|
|
1866
|
-
|
|
1866
|
+
agent: {
|
|
1867
|
+
lastName: string;
|
|
1868
|
+
firstName: string;
|
|
1869
|
+
email: string;
|
|
1870
|
+
phone: string;
|
|
1871
|
+
createdAt: string;
|
|
1867
1872
|
id: string;
|
|
1868
|
-
|
|
1873
|
+
updatedAt: string;
|
|
1874
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
+
client: {
|
|
1869
1879
|
createdAt: string;
|
|
1880
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1881
|
+
id: string;
|
|
1870
1882
|
updatedAt: string;
|
|
1871
1883
|
name: string;
|
|
1872
1884
|
crn: string | null;
|
|
@@ -1875,51 +1887,51 @@ export declare const agentClientLinksContract: {
|
|
|
1875
1887
|
director: string;
|
|
1876
1888
|
blacklistReason?: string | null | undefined;
|
|
1877
1889
|
lastUpdatedBy?: {
|
|
1878
|
-
id: string;
|
|
1879
|
-
firstName: string;
|
|
1880
1890
|
lastName: string;
|
|
1891
|
+
firstName: string;
|
|
1881
1892
|
email: string;
|
|
1893
|
+
id: string;
|
|
1882
1894
|
} | null | undefined;
|
|
1883
1895
|
agentClientLinks?: {
|
|
1884
1896
|
agentId: string;
|
|
1885
1897
|
} | null | undefined;
|
|
1886
1898
|
};
|
|
1887
|
-
|
|
1899
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1888
1900
|
createdBy: string;
|
|
1889
|
-
|
|
1890
|
-
id: string;
|
|
1891
|
-
createdAt: string;
|
|
1892
|
-
updatedAt: string;
|
|
1893
|
-
firstName: string;
|
|
1901
|
+
creator: {
|
|
1894
1902
|
lastName: string;
|
|
1903
|
+
firstName: string;
|
|
1895
1904
|
email: string;
|
|
1896
1905
|
phone: string;
|
|
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: {
|
|
1902
|
-
id: string;
|
|
1903
1906
|
createdAt: string;
|
|
1907
|
+
id: string;
|
|
1904
1908
|
updatedAt: string;
|
|
1905
|
-
|
|
1906
|
-
lastName: string;
|
|
1907
|
-
email: string;
|
|
1908
|
-
phone: string;
|
|
1909
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1909
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
-
id: string;
|
|
1916
1915
|
createdAt: string | Date;
|
|
1916
|
+
id: string;
|
|
1917
1917
|
updatedAt: string | Date;
|
|
1918
1918
|
agentId: string;
|
|
1919
|
-
|
|
1919
|
+
agent: {
|
|
1920
|
+
lastName: string;
|
|
1921
|
+
firstName: string;
|
|
1922
|
+
email: string;
|
|
1923
|
+
phone: string;
|
|
1924
|
+
createdAt: string | Date;
|
|
1920
1925
|
id: string;
|
|
1921
|
-
|
|
1926
|
+
updatedAt: string | Date;
|
|
1927
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
+
client: {
|
|
1922
1932
|
createdAt: string | Date;
|
|
1933
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1934
|
+
id: string;
|
|
1923
1935
|
updatedAt: string | Date;
|
|
1924
1936
|
name: string;
|
|
1925
1937
|
crn: string | null;
|
|
@@ -1928,38 +1940,26 @@ export declare const agentClientLinksContract: {
|
|
|
1928
1940
|
director: string;
|
|
1929
1941
|
blacklistReason?: string | null | undefined;
|
|
1930
1942
|
lastUpdatedBy?: {
|
|
1931
|
-
id: string;
|
|
1932
|
-
firstName: string;
|
|
1933
1943
|
lastName: string;
|
|
1944
|
+
firstName: string;
|
|
1934
1945
|
email: string;
|
|
1946
|
+
id: string;
|
|
1935
1947
|
} | null | undefined;
|
|
1936
1948
|
agentClientLinks?: {
|
|
1937
1949
|
agentId: string;
|
|
1938
1950
|
} | null | undefined;
|
|
1939
1951
|
};
|
|
1940
|
-
|
|
1952
|
+
linkType: "CREATION" | "EDIT_SUGGESTION";
|
|
1941
1953
|
createdBy: string;
|
|
1942
|
-
|
|
1943
|
-
id: string;
|
|
1944
|
-
createdAt: string | Date;
|
|
1945
|
-
updatedAt: string | Date;
|
|
1946
|
-
firstName: string;
|
|
1954
|
+
creator: {
|
|
1947
1955
|
lastName: string;
|
|
1956
|
+
firstName: string;
|
|
1948
1957
|
email: string;
|
|
1949
1958
|
phone: string;
|
|
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: {
|
|
1955
|
-
id: string;
|
|
1956
1959
|
createdAt: string | Date;
|
|
1960
|
+
id: string;
|
|
1957
1961
|
updatedAt: string | Date;
|
|
1958
|
-
|
|
1959
|
-
lastName: string;
|
|
1960
|
-
email: string;
|
|
1961
|
-
phone: string;
|
|
1962
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1962
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | 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
|
};
|
|
1965
1965
|
suggestedChanges?: Record<string, unknown> | null | undefined;
|