@dakkitor/api-contracts 1.1.73 → 1.1.75
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/actives/actives.contract.d.ts +2959 -2199
- package/dist/actives/actives.contract.d.ts.map +1 -1
- package/dist/agent-client-links/agent-client-links.contract.d.ts +416 -416
- package/dist/auth/auth.contract.d.ts +4 -4
- package/dist/bookings/bookings.contract.d.ts +2634 -1894
- package/dist/bookings/bookings.contract.d.ts.map +1 -1
- package/dist/bookings/bookings.contract.js +0 -2
- package/dist/call-history/call-history.contract.d.ts +409 -409
- package/dist/client-contacts/client-contacts.contract.d.ts +231 -231
- package/dist/clients/clients.contract.d.ts +98 -98
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +1269 -749
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts.map +1 -1
- package/dist/collaborations/collaborations.contract.d.ts +1069 -609
- package/dist/collaborations/collaborations.contract.d.ts.map +1 -1
- package/dist/collaborations/collaborations.contract.js +2 -11
- package/dist/common/common-schemas.d.ts +0 -17
- package/dist/common/common-schemas.d.ts.map +1 -1
- package/dist/common/common-schemas.js +1 -9
- package/dist/companies/companies.contract.d.ts +36 -36
- package/dist/curated-workers/curated-workers.contract.d.ts +213 -213
- package/dist/jobs/jobs.contract.d.ts +1053 -533
- package/dist/jobs/jobs.contract.d.ts.map +1 -1
- package/dist/lead-assignments/lead-assignments.contract.d.ts +344 -344
- package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +111 -111
- package/dist/leads/leads.contract.d.ts +101 -101
- package/dist/users/users.contract.d.ts +132 -132
- package/dist/workers/workers.contract.d.ts +200 -200
- package/package.json +1 -1
|
@@ -40,23 +40,23 @@ export declare const LeadAssignmentSchema: z.ZodObject<{
|
|
|
40
40
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
41
41
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
|
-
|
|
43
|
+
id: string;
|
|
44
|
+
createdAt: string;
|
|
45
|
+
updatedAt: string;
|
|
44
46
|
firstName: string;
|
|
47
|
+
lastName: string;
|
|
45
48
|
email: string;
|
|
46
49
|
phone: string;
|
|
47
|
-
createdAt: string;
|
|
48
|
-
id: string;
|
|
49
|
-
updatedAt: string;
|
|
50
50
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
51
51
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
52
52
|
}, {
|
|
53
|
-
|
|
53
|
+
id: string;
|
|
54
|
+
createdAt: string | Date;
|
|
55
|
+
updatedAt: string | Date;
|
|
54
56
|
firstName: string;
|
|
57
|
+
lastName: string;
|
|
55
58
|
email: string;
|
|
56
59
|
phone: string;
|
|
57
|
-
createdAt: string | Date;
|
|
58
|
-
id: string;
|
|
59
|
-
updatedAt: string | Date;
|
|
60
60
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
61
61
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
62
62
|
}>>;
|
|
@@ -70,80 +70,80 @@ export declare const LeadAssignmentSchema: z.ZodObject<{
|
|
|
70
70
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
71
71
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
72
72
|
}, "strip", z.ZodTypeAny, {
|
|
73
|
-
createdAt: string;
|
|
74
73
|
id: string;
|
|
74
|
+
createdAt: string;
|
|
75
75
|
updatedAt: string;
|
|
76
76
|
name: string;
|
|
77
77
|
}, {
|
|
78
|
-
createdAt: string | Date;
|
|
79
78
|
id: string;
|
|
79
|
+
createdAt: string | Date;
|
|
80
80
|
updatedAt: string | Date;
|
|
81
81
|
name: string;
|
|
82
82
|
}>>>;
|
|
83
83
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
84
84
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
85
85
|
}, "strip", z.ZodTypeAny, {
|
|
86
|
-
createdAt: string;
|
|
87
86
|
status: LeadAssignmentStatus;
|
|
88
87
|
id: string;
|
|
88
|
+
createdAt: string;
|
|
89
89
|
updatedAt: string;
|
|
90
|
+
leadId: string;
|
|
90
91
|
agentId: string | null;
|
|
91
92
|
companyId: string | null;
|
|
92
|
-
leadId: string;
|
|
93
93
|
assignedAt: string;
|
|
94
94
|
assignedBy: string | null;
|
|
95
95
|
company?: {
|
|
96
|
-
createdAt: string;
|
|
97
96
|
id: string;
|
|
97
|
+
createdAt: string;
|
|
98
98
|
updatedAt: string;
|
|
99
99
|
name: string;
|
|
100
100
|
} | null | undefined;
|
|
101
|
+
lead?: {
|
|
102
|
+
name: string;
|
|
103
|
+
phoneNumber: string;
|
|
104
|
+
} | undefined;
|
|
101
105
|
agent?: {
|
|
102
|
-
|
|
106
|
+
id: string;
|
|
107
|
+
createdAt: string;
|
|
108
|
+
updatedAt: string;
|
|
103
109
|
firstName: string;
|
|
110
|
+
lastName: string;
|
|
104
111
|
email: string;
|
|
105
112
|
phone: string;
|
|
106
|
-
createdAt: string;
|
|
107
|
-
id: string;
|
|
108
|
-
updatedAt: string;
|
|
109
113
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
110
114
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
111
115
|
} | undefined;
|
|
112
|
-
lead?: {
|
|
113
|
-
name: string;
|
|
114
|
-
phoneNumber: string;
|
|
115
|
-
} | undefined;
|
|
116
116
|
}, {
|
|
117
|
-
createdAt: string | Date;
|
|
118
117
|
status: LeadAssignmentStatus;
|
|
119
118
|
id: string;
|
|
119
|
+
createdAt: string | Date;
|
|
120
120
|
updatedAt: string | Date;
|
|
121
|
+
leadId: string;
|
|
121
122
|
agentId: string | null;
|
|
122
123
|
companyId: string | null;
|
|
123
|
-
leadId: string;
|
|
124
124
|
assignedAt: string | Date;
|
|
125
125
|
assignedBy: string | null;
|
|
126
126
|
company?: {
|
|
127
|
-
createdAt: string | Date;
|
|
128
127
|
id: string;
|
|
128
|
+
createdAt: string | Date;
|
|
129
129
|
updatedAt: string | Date;
|
|
130
130
|
name: string;
|
|
131
131
|
} | null | undefined;
|
|
132
|
+
lead?: {
|
|
133
|
+
name: string;
|
|
134
|
+
phoneNumber: string;
|
|
135
|
+
} | undefined;
|
|
132
136
|
agent?: {
|
|
133
|
-
|
|
137
|
+
id: string;
|
|
138
|
+
createdAt: string | Date;
|
|
139
|
+
updatedAt: string | Date;
|
|
134
140
|
firstName: string;
|
|
141
|
+
lastName: string;
|
|
135
142
|
email: string;
|
|
136
143
|
phone: string;
|
|
137
|
-
createdAt: string | Date;
|
|
138
|
-
id: string;
|
|
139
|
-
updatedAt: string | Date;
|
|
140
144
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
141
145
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
142
146
|
} | undefined;
|
|
143
|
-
lead?: {
|
|
144
|
-
name: string;
|
|
145
|
-
phoneNumber: string;
|
|
146
|
-
} | undefined;
|
|
147
147
|
}>;
|
|
148
148
|
export declare const CompleteAssignmentSchema: z.ZodObject<{
|
|
149
149
|
status: z.ZodNativeEnum<typeof import("../common/call-rating.schema").CallRating>;
|
|
@@ -181,23 +181,23 @@ export declare const CompleteAssignmentResponseSchema: z.ZodObject<{
|
|
|
181
181
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
182
182
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
183
183
|
}, "strip", z.ZodTypeAny, {
|
|
184
|
-
|
|
184
|
+
id: string;
|
|
185
|
+
createdAt: string;
|
|
186
|
+
updatedAt: string;
|
|
185
187
|
firstName: string;
|
|
188
|
+
lastName: string;
|
|
186
189
|
email: string;
|
|
187
190
|
phone: string;
|
|
188
|
-
createdAt: string;
|
|
189
|
-
id: string;
|
|
190
|
-
updatedAt: string;
|
|
191
191
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
192
192
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
193
193
|
}, {
|
|
194
|
-
|
|
194
|
+
id: string;
|
|
195
|
+
createdAt: string | Date;
|
|
196
|
+
updatedAt: string | Date;
|
|
195
197
|
firstName: string;
|
|
198
|
+
lastName: string;
|
|
196
199
|
email: string;
|
|
197
200
|
phone: string;
|
|
198
|
-
createdAt: string | Date;
|
|
199
|
-
id: string;
|
|
200
|
-
updatedAt: string | Date;
|
|
201
201
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
202
202
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
203
203
|
}>>;
|
|
@@ -211,80 +211,80 @@ export declare const CompleteAssignmentResponseSchema: z.ZodObject<{
|
|
|
211
211
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
212
212
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
213
213
|
}, "strip", z.ZodTypeAny, {
|
|
214
|
-
createdAt: string;
|
|
215
214
|
id: string;
|
|
215
|
+
createdAt: string;
|
|
216
216
|
updatedAt: string;
|
|
217
217
|
name: string;
|
|
218
218
|
}, {
|
|
219
|
-
createdAt: string | Date;
|
|
220
219
|
id: string;
|
|
220
|
+
createdAt: string | Date;
|
|
221
221
|
updatedAt: string | Date;
|
|
222
222
|
name: string;
|
|
223
223
|
}>>>;
|
|
224
224
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
225
225
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
226
226
|
}, "strip", z.ZodTypeAny, {
|
|
227
|
-
createdAt: string;
|
|
228
227
|
status: LeadAssignmentStatus;
|
|
229
228
|
id: string;
|
|
229
|
+
createdAt: string;
|
|
230
230
|
updatedAt: string;
|
|
231
|
+
leadId: string;
|
|
231
232
|
agentId: string | null;
|
|
232
233
|
companyId: string | null;
|
|
233
|
-
leadId: string;
|
|
234
234
|
assignedAt: string;
|
|
235
235
|
assignedBy: string | null;
|
|
236
236
|
company?: {
|
|
237
|
-
createdAt: string;
|
|
238
237
|
id: string;
|
|
238
|
+
createdAt: string;
|
|
239
239
|
updatedAt: string;
|
|
240
240
|
name: string;
|
|
241
241
|
} | null | undefined;
|
|
242
|
+
lead?: {
|
|
243
|
+
name: string;
|
|
244
|
+
phoneNumber: string;
|
|
245
|
+
} | undefined;
|
|
242
246
|
agent?: {
|
|
243
|
-
|
|
247
|
+
id: string;
|
|
248
|
+
createdAt: string;
|
|
249
|
+
updatedAt: string;
|
|
244
250
|
firstName: string;
|
|
251
|
+
lastName: string;
|
|
245
252
|
email: string;
|
|
246
253
|
phone: string;
|
|
247
|
-
createdAt: string;
|
|
248
|
-
id: string;
|
|
249
|
-
updatedAt: string;
|
|
250
254
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
251
255
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
252
256
|
} | undefined;
|
|
253
|
-
lead?: {
|
|
254
|
-
name: string;
|
|
255
|
-
phoneNumber: string;
|
|
256
|
-
} | undefined;
|
|
257
257
|
}, {
|
|
258
|
-
createdAt: string | Date;
|
|
259
258
|
status: LeadAssignmentStatus;
|
|
260
259
|
id: string;
|
|
260
|
+
createdAt: string | Date;
|
|
261
261
|
updatedAt: string | Date;
|
|
262
|
+
leadId: string;
|
|
262
263
|
agentId: string | null;
|
|
263
264
|
companyId: string | null;
|
|
264
|
-
leadId: string;
|
|
265
265
|
assignedAt: string | Date;
|
|
266
266
|
assignedBy: string | null;
|
|
267
267
|
company?: {
|
|
268
|
-
createdAt: string | Date;
|
|
269
268
|
id: string;
|
|
269
|
+
createdAt: string | Date;
|
|
270
270
|
updatedAt: string | Date;
|
|
271
271
|
name: string;
|
|
272
272
|
} | null | undefined;
|
|
273
|
+
lead?: {
|
|
274
|
+
name: string;
|
|
275
|
+
phoneNumber: string;
|
|
276
|
+
} | undefined;
|
|
273
277
|
agent?: {
|
|
274
|
-
|
|
278
|
+
id: string;
|
|
279
|
+
createdAt: string | Date;
|
|
280
|
+
updatedAt: string | Date;
|
|
275
281
|
firstName: string;
|
|
282
|
+
lastName: string;
|
|
276
283
|
email: string;
|
|
277
284
|
phone: string;
|
|
278
|
-
createdAt: string | Date;
|
|
279
|
-
id: string;
|
|
280
|
-
updatedAt: string | Date;
|
|
281
285
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
282
286
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
283
287
|
} | undefined;
|
|
284
|
-
lead?: {
|
|
285
|
-
name: string;
|
|
286
|
-
phoneNumber: string;
|
|
287
|
-
} | undefined;
|
|
288
288
|
}>;
|
|
289
289
|
next: z.ZodNullable<z.ZodObject<{
|
|
290
290
|
id: z.ZodString;
|
|
@@ -311,23 +311,23 @@ export declare const CompleteAssignmentResponseSchema: z.ZodObject<{
|
|
|
311
311
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
312
312
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
313
313
|
}, "strip", z.ZodTypeAny, {
|
|
314
|
-
|
|
314
|
+
id: string;
|
|
315
|
+
createdAt: string;
|
|
316
|
+
updatedAt: string;
|
|
315
317
|
firstName: string;
|
|
318
|
+
lastName: string;
|
|
316
319
|
email: string;
|
|
317
320
|
phone: string;
|
|
318
|
-
createdAt: string;
|
|
319
|
-
id: string;
|
|
320
|
-
updatedAt: string;
|
|
321
321
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
322
322
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
323
323
|
}, {
|
|
324
|
-
|
|
324
|
+
id: string;
|
|
325
|
+
createdAt: string | Date;
|
|
326
|
+
updatedAt: string | Date;
|
|
325
327
|
firstName: string;
|
|
328
|
+
lastName: string;
|
|
326
329
|
email: string;
|
|
327
330
|
phone: string;
|
|
328
|
-
createdAt: string | Date;
|
|
329
|
-
id: string;
|
|
330
|
-
updatedAt: string | Date;
|
|
331
331
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
332
332
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
333
333
|
}>>;
|
|
@@ -341,210 +341,210 @@ export declare const CompleteAssignmentResponseSchema: z.ZodObject<{
|
|
|
341
341
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
342
342
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
343
343
|
}, "strip", z.ZodTypeAny, {
|
|
344
|
-
createdAt: string;
|
|
345
344
|
id: string;
|
|
345
|
+
createdAt: string;
|
|
346
346
|
updatedAt: string;
|
|
347
347
|
name: string;
|
|
348
348
|
}, {
|
|
349
|
-
createdAt: string | Date;
|
|
350
349
|
id: string;
|
|
350
|
+
createdAt: string | Date;
|
|
351
351
|
updatedAt: string | Date;
|
|
352
352
|
name: string;
|
|
353
353
|
}>>>;
|
|
354
354
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
355
355
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
356
356
|
}, "strip", z.ZodTypeAny, {
|
|
357
|
-
createdAt: string;
|
|
358
357
|
status: LeadAssignmentStatus;
|
|
359
358
|
id: string;
|
|
359
|
+
createdAt: string;
|
|
360
360
|
updatedAt: string;
|
|
361
|
+
leadId: string;
|
|
361
362
|
agentId: string | null;
|
|
362
363
|
companyId: string | null;
|
|
363
|
-
leadId: string;
|
|
364
364
|
assignedAt: string;
|
|
365
365
|
assignedBy: string | null;
|
|
366
366
|
company?: {
|
|
367
|
-
createdAt: string;
|
|
368
367
|
id: string;
|
|
368
|
+
createdAt: string;
|
|
369
369
|
updatedAt: string;
|
|
370
370
|
name: string;
|
|
371
371
|
} | null | undefined;
|
|
372
|
+
lead?: {
|
|
373
|
+
name: string;
|
|
374
|
+
phoneNumber: string;
|
|
375
|
+
} | undefined;
|
|
372
376
|
agent?: {
|
|
373
|
-
|
|
377
|
+
id: string;
|
|
378
|
+
createdAt: string;
|
|
379
|
+
updatedAt: string;
|
|
374
380
|
firstName: string;
|
|
381
|
+
lastName: string;
|
|
375
382
|
email: string;
|
|
376
383
|
phone: string;
|
|
377
|
-
createdAt: string;
|
|
378
|
-
id: string;
|
|
379
|
-
updatedAt: string;
|
|
380
384
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
381
385
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
382
386
|
} | undefined;
|
|
383
|
-
lead?: {
|
|
384
|
-
name: string;
|
|
385
|
-
phoneNumber: string;
|
|
386
|
-
} | undefined;
|
|
387
387
|
}, {
|
|
388
|
-
createdAt: string | Date;
|
|
389
388
|
status: LeadAssignmentStatus;
|
|
390
389
|
id: string;
|
|
390
|
+
createdAt: string | Date;
|
|
391
391
|
updatedAt: string | Date;
|
|
392
|
+
leadId: string;
|
|
392
393
|
agentId: string | null;
|
|
393
394
|
companyId: string | null;
|
|
394
|
-
leadId: string;
|
|
395
395
|
assignedAt: string | Date;
|
|
396
396
|
assignedBy: string | null;
|
|
397
397
|
company?: {
|
|
398
|
-
createdAt: string | Date;
|
|
399
398
|
id: string;
|
|
399
|
+
createdAt: string | Date;
|
|
400
400
|
updatedAt: string | Date;
|
|
401
401
|
name: string;
|
|
402
402
|
} | null | undefined;
|
|
403
|
+
lead?: {
|
|
404
|
+
name: string;
|
|
405
|
+
phoneNumber: string;
|
|
406
|
+
} | undefined;
|
|
403
407
|
agent?: {
|
|
404
|
-
|
|
408
|
+
id: string;
|
|
409
|
+
createdAt: string | Date;
|
|
410
|
+
updatedAt: string | Date;
|
|
405
411
|
firstName: string;
|
|
412
|
+
lastName: string;
|
|
406
413
|
email: string;
|
|
407
414
|
phone: string;
|
|
408
|
-
createdAt: string | Date;
|
|
409
|
-
id: string;
|
|
410
|
-
updatedAt: string | Date;
|
|
411
415
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
412
416
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
413
417
|
} | undefined;
|
|
414
|
-
lead?: {
|
|
415
|
-
name: string;
|
|
416
|
-
phoneNumber: string;
|
|
417
|
-
} | undefined;
|
|
418
418
|
}>>;
|
|
419
419
|
}, "strip", z.ZodTypeAny, {
|
|
420
420
|
completed: {
|
|
421
|
-
createdAt: string;
|
|
422
421
|
status: LeadAssignmentStatus;
|
|
423
422
|
id: string;
|
|
423
|
+
createdAt: string;
|
|
424
424
|
updatedAt: string;
|
|
425
|
+
leadId: string;
|
|
425
426
|
agentId: string | null;
|
|
426
427
|
companyId: string | null;
|
|
427
|
-
leadId: string;
|
|
428
428
|
assignedAt: string;
|
|
429
429
|
assignedBy: string | null;
|
|
430
430
|
company?: {
|
|
431
|
-
createdAt: string;
|
|
432
431
|
id: string;
|
|
432
|
+
createdAt: string;
|
|
433
433
|
updatedAt: string;
|
|
434
434
|
name: string;
|
|
435
435
|
} | null | undefined;
|
|
436
|
+
lead?: {
|
|
437
|
+
name: string;
|
|
438
|
+
phoneNumber: string;
|
|
439
|
+
} | undefined;
|
|
436
440
|
agent?: {
|
|
437
|
-
|
|
441
|
+
id: string;
|
|
442
|
+
createdAt: string;
|
|
443
|
+
updatedAt: string;
|
|
438
444
|
firstName: string;
|
|
445
|
+
lastName: string;
|
|
439
446
|
email: string;
|
|
440
447
|
phone: string;
|
|
441
|
-
createdAt: string;
|
|
442
|
-
id: string;
|
|
443
|
-
updatedAt: string;
|
|
444
448
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
445
449
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
446
450
|
} | undefined;
|
|
447
|
-
lead?: {
|
|
448
|
-
name: string;
|
|
449
|
-
phoneNumber: string;
|
|
450
|
-
} | undefined;
|
|
451
451
|
};
|
|
452
452
|
next: {
|
|
453
|
-
createdAt: string;
|
|
454
453
|
status: LeadAssignmentStatus;
|
|
455
454
|
id: string;
|
|
455
|
+
createdAt: string;
|
|
456
456
|
updatedAt: string;
|
|
457
|
+
leadId: string;
|
|
457
458
|
agentId: string | null;
|
|
458
459
|
companyId: string | null;
|
|
459
|
-
leadId: string;
|
|
460
460
|
assignedAt: string;
|
|
461
461
|
assignedBy: string | null;
|
|
462
462
|
company?: {
|
|
463
|
-
createdAt: string;
|
|
464
463
|
id: string;
|
|
464
|
+
createdAt: string;
|
|
465
465
|
updatedAt: string;
|
|
466
466
|
name: string;
|
|
467
467
|
} | null | undefined;
|
|
468
|
+
lead?: {
|
|
469
|
+
name: string;
|
|
470
|
+
phoneNumber: string;
|
|
471
|
+
} | undefined;
|
|
468
472
|
agent?: {
|
|
469
|
-
|
|
473
|
+
id: string;
|
|
474
|
+
createdAt: string;
|
|
475
|
+
updatedAt: string;
|
|
470
476
|
firstName: string;
|
|
477
|
+
lastName: string;
|
|
471
478
|
email: string;
|
|
472
479
|
phone: string;
|
|
473
|
-
createdAt: string;
|
|
474
|
-
id: string;
|
|
475
|
-
updatedAt: string;
|
|
476
480
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
477
481
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
478
482
|
} | undefined;
|
|
479
|
-
lead?: {
|
|
480
|
-
name: string;
|
|
481
|
-
phoneNumber: string;
|
|
482
|
-
} | undefined;
|
|
483
483
|
} | null;
|
|
484
484
|
}, {
|
|
485
485
|
completed: {
|
|
486
|
-
createdAt: string | Date;
|
|
487
486
|
status: LeadAssignmentStatus;
|
|
488
487
|
id: string;
|
|
488
|
+
createdAt: string | Date;
|
|
489
489
|
updatedAt: string | Date;
|
|
490
|
+
leadId: string;
|
|
490
491
|
agentId: string | null;
|
|
491
492
|
companyId: string | null;
|
|
492
|
-
leadId: string;
|
|
493
493
|
assignedAt: string | Date;
|
|
494
494
|
assignedBy: string | null;
|
|
495
495
|
company?: {
|
|
496
|
-
createdAt: string | Date;
|
|
497
496
|
id: string;
|
|
497
|
+
createdAt: string | Date;
|
|
498
498
|
updatedAt: string | Date;
|
|
499
499
|
name: string;
|
|
500
500
|
} | null | undefined;
|
|
501
|
+
lead?: {
|
|
502
|
+
name: string;
|
|
503
|
+
phoneNumber: string;
|
|
504
|
+
} | undefined;
|
|
501
505
|
agent?: {
|
|
502
|
-
|
|
506
|
+
id: string;
|
|
507
|
+
createdAt: string | Date;
|
|
508
|
+
updatedAt: string | Date;
|
|
503
509
|
firstName: string;
|
|
510
|
+
lastName: string;
|
|
504
511
|
email: string;
|
|
505
512
|
phone: string;
|
|
506
|
-
createdAt: string | Date;
|
|
507
|
-
id: string;
|
|
508
|
-
updatedAt: string | Date;
|
|
509
513
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
510
514
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
511
515
|
} | undefined;
|
|
512
|
-
lead?: {
|
|
513
|
-
name: string;
|
|
514
|
-
phoneNumber: string;
|
|
515
|
-
} | undefined;
|
|
516
516
|
};
|
|
517
517
|
next: {
|
|
518
|
-
createdAt: string | Date;
|
|
519
518
|
status: LeadAssignmentStatus;
|
|
520
519
|
id: string;
|
|
520
|
+
createdAt: string | Date;
|
|
521
521
|
updatedAt: string | Date;
|
|
522
|
+
leadId: string;
|
|
522
523
|
agentId: string | null;
|
|
523
524
|
companyId: string | null;
|
|
524
|
-
leadId: string;
|
|
525
525
|
assignedAt: string | Date;
|
|
526
526
|
assignedBy: string | null;
|
|
527
527
|
company?: {
|
|
528
|
-
createdAt: string | Date;
|
|
529
528
|
id: string;
|
|
529
|
+
createdAt: string | Date;
|
|
530
530
|
updatedAt: string | Date;
|
|
531
531
|
name: string;
|
|
532
532
|
} | null | undefined;
|
|
533
|
+
lead?: {
|
|
534
|
+
name: string;
|
|
535
|
+
phoneNumber: string;
|
|
536
|
+
} | undefined;
|
|
533
537
|
agent?: {
|
|
534
|
-
|
|
538
|
+
id: string;
|
|
539
|
+
createdAt: string | Date;
|
|
540
|
+
updatedAt: string | Date;
|
|
535
541
|
firstName: string;
|
|
542
|
+
lastName: string;
|
|
536
543
|
email: string;
|
|
537
544
|
phone: string;
|
|
538
|
-
createdAt: string | Date;
|
|
539
|
-
id: string;
|
|
540
|
-
updatedAt: string | Date;
|
|
541
545
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
542
546
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
543
547
|
} | undefined;
|
|
544
|
-
lead?: {
|
|
545
|
-
name: string;
|
|
546
|
-
phoneNumber: string;
|
|
547
|
-
} | undefined;
|
|
548
548
|
} | null;
|
|
549
549
|
}>;
|
|
550
550
|
export declare const QueueStatusSchema: z.ZodObject<{
|
|
@@ -740,23 +740,23 @@ export declare const leadAssignmentsContract: {
|
|
|
740
740
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
741
741
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
742
742
|
}, "strip", z.ZodTypeAny, {
|
|
743
|
-
|
|
743
|
+
id: string;
|
|
744
|
+
createdAt: string;
|
|
745
|
+
updatedAt: string;
|
|
744
746
|
firstName: string;
|
|
747
|
+
lastName: string;
|
|
745
748
|
email: string;
|
|
746
749
|
phone: string;
|
|
747
|
-
createdAt: string;
|
|
748
|
-
id: string;
|
|
749
|
-
updatedAt: string;
|
|
750
750
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
751
751
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
752
752
|
}, {
|
|
753
|
-
|
|
753
|
+
id: string;
|
|
754
|
+
createdAt: string | Date;
|
|
755
|
+
updatedAt: string | Date;
|
|
754
756
|
firstName: string;
|
|
757
|
+
lastName: string;
|
|
755
758
|
email: string;
|
|
756
759
|
phone: string;
|
|
757
|
-
createdAt: string | Date;
|
|
758
|
-
id: string;
|
|
759
|
-
updatedAt: string | Date;
|
|
760
760
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
761
761
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
762
762
|
}>>;
|
|
@@ -770,80 +770,80 @@ export declare const leadAssignmentsContract: {
|
|
|
770
770
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
771
771
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
772
772
|
}, "strip", z.ZodTypeAny, {
|
|
773
|
-
createdAt: string;
|
|
774
773
|
id: string;
|
|
774
|
+
createdAt: string;
|
|
775
775
|
updatedAt: string;
|
|
776
776
|
name: string;
|
|
777
777
|
}, {
|
|
778
|
-
createdAt: string | Date;
|
|
779
778
|
id: string;
|
|
779
|
+
createdAt: string | Date;
|
|
780
780
|
updatedAt: string | Date;
|
|
781
781
|
name: string;
|
|
782
782
|
}>>>;
|
|
783
783
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
784
784
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
785
785
|
}, "strip", z.ZodTypeAny, {
|
|
786
|
-
createdAt: string;
|
|
787
786
|
status: LeadAssignmentStatus;
|
|
788
787
|
id: string;
|
|
788
|
+
createdAt: string;
|
|
789
789
|
updatedAt: string;
|
|
790
|
+
leadId: string;
|
|
790
791
|
agentId: string | null;
|
|
791
792
|
companyId: string | null;
|
|
792
|
-
leadId: string;
|
|
793
793
|
assignedAt: string;
|
|
794
794
|
assignedBy: string | null;
|
|
795
795
|
company?: {
|
|
796
|
-
createdAt: string;
|
|
797
796
|
id: string;
|
|
797
|
+
createdAt: string;
|
|
798
798
|
updatedAt: string;
|
|
799
799
|
name: string;
|
|
800
800
|
} | null | undefined;
|
|
801
|
+
lead?: {
|
|
802
|
+
name: string;
|
|
803
|
+
phoneNumber: string;
|
|
804
|
+
} | undefined;
|
|
801
805
|
agent?: {
|
|
802
|
-
|
|
806
|
+
id: string;
|
|
807
|
+
createdAt: string;
|
|
808
|
+
updatedAt: string;
|
|
803
809
|
firstName: string;
|
|
810
|
+
lastName: string;
|
|
804
811
|
email: string;
|
|
805
812
|
phone: string;
|
|
806
|
-
createdAt: string;
|
|
807
|
-
id: string;
|
|
808
|
-
updatedAt: string;
|
|
809
813
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
810
814
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
811
815
|
} | undefined;
|
|
812
|
-
lead?: {
|
|
813
|
-
name: string;
|
|
814
|
-
phoneNumber: string;
|
|
815
|
-
} | undefined;
|
|
816
816
|
}, {
|
|
817
|
-
createdAt: string | Date;
|
|
818
817
|
status: LeadAssignmentStatus;
|
|
819
818
|
id: string;
|
|
819
|
+
createdAt: string | Date;
|
|
820
820
|
updatedAt: string | Date;
|
|
821
|
+
leadId: string;
|
|
821
822
|
agentId: string | null;
|
|
822
823
|
companyId: string | null;
|
|
823
|
-
leadId: string;
|
|
824
824
|
assignedAt: string | Date;
|
|
825
825
|
assignedBy: string | null;
|
|
826
826
|
company?: {
|
|
827
|
-
createdAt: string | Date;
|
|
828
827
|
id: string;
|
|
828
|
+
createdAt: string | Date;
|
|
829
829
|
updatedAt: string | Date;
|
|
830
830
|
name: string;
|
|
831
831
|
} | null | undefined;
|
|
832
|
+
lead?: {
|
|
833
|
+
name: string;
|
|
834
|
+
phoneNumber: string;
|
|
835
|
+
} | undefined;
|
|
832
836
|
agent?: {
|
|
833
|
-
|
|
837
|
+
id: string;
|
|
838
|
+
createdAt: string | Date;
|
|
839
|
+
updatedAt: string | Date;
|
|
834
840
|
firstName: string;
|
|
841
|
+
lastName: string;
|
|
835
842
|
email: string;
|
|
836
843
|
phone: string;
|
|
837
|
-
createdAt: string | Date;
|
|
838
|
-
id: string;
|
|
839
|
-
updatedAt: string | Date;
|
|
840
844
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
841
845
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
842
846
|
} | undefined;
|
|
843
|
-
lead?: {
|
|
844
|
-
name: string;
|
|
845
|
-
phoneNumber: string;
|
|
846
|
-
} | undefined;
|
|
847
847
|
}>;
|
|
848
848
|
next: z.ZodNullable<z.ZodObject<{
|
|
849
849
|
id: z.ZodString;
|
|
@@ -870,23 +870,23 @@ export declare const leadAssignmentsContract: {
|
|
|
870
870
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
871
871
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
872
872
|
}, "strip", z.ZodTypeAny, {
|
|
873
|
-
|
|
873
|
+
id: string;
|
|
874
|
+
createdAt: string;
|
|
875
|
+
updatedAt: string;
|
|
874
876
|
firstName: string;
|
|
877
|
+
lastName: string;
|
|
875
878
|
email: string;
|
|
876
879
|
phone: string;
|
|
877
|
-
createdAt: string;
|
|
878
|
-
id: string;
|
|
879
|
-
updatedAt: string;
|
|
880
880
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
881
881
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
882
882
|
}, {
|
|
883
|
-
|
|
883
|
+
id: string;
|
|
884
|
+
createdAt: string | Date;
|
|
885
|
+
updatedAt: string | Date;
|
|
884
886
|
firstName: string;
|
|
887
|
+
lastName: string;
|
|
885
888
|
email: string;
|
|
886
889
|
phone: string;
|
|
887
|
-
createdAt: string | Date;
|
|
888
|
-
id: string;
|
|
889
|
-
updatedAt: string | Date;
|
|
890
890
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
891
891
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
892
892
|
}>>;
|
|
@@ -900,210 +900,210 @@ export declare const leadAssignmentsContract: {
|
|
|
900
900
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
901
901
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
902
902
|
}, "strip", z.ZodTypeAny, {
|
|
903
|
-
createdAt: string;
|
|
904
903
|
id: string;
|
|
904
|
+
createdAt: string;
|
|
905
905
|
updatedAt: string;
|
|
906
906
|
name: string;
|
|
907
907
|
}, {
|
|
908
|
-
createdAt: string | Date;
|
|
909
908
|
id: string;
|
|
909
|
+
createdAt: string | Date;
|
|
910
910
|
updatedAt: string | Date;
|
|
911
911
|
name: string;
|
|
912
912
|
}>>>;
|
|
913
913
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
914
914
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
915
915
|
}, "strip", z.ZodTypeAny, {
|
|
916
|
-
createdAt: string;
|
|
917
916
|
status: LeadAssignmentStatus;
|
|
918
917
|
id: string;
|
|
918
|
+
createdAt: string;
|
|
919
919
|
updatedAt: string;
|
|
920
|
+
leadId: string;
|
|
920
921
|
agentId: string | null;
|
|
921
922
|
companyId: string | null;
|
|
922
|
-
leadId: string;
|
|
923
923
|
assignedAt: string;
|
|
924
924
|
assignedBy: string | null;
|
|
925
925
|
company?: {
|
|
926
|
-
createdAt: string;
|
|
927
926
|
id: string;
|
|
927
|
+
createdAt: string;
|
|
928
928
|
updatedAt: string;
|
|
929
929
|
name: string;
|
|
930
930
|
} | null | undefined;
|
|
931
|
+
lead?: {
|
|
932
|
+
name: string;
|
|
933
|
+
phoneNumber: string;
|
|
934
|
+
} | undefined;
|
|
931
935
|
agent?: {
|
|
932
|
-
|
|
936
|
+
id: string;
|
|
937
|
+
createdAt: string;
|
|
938
|
+
updatedAt: string;
|
|
933
939
|
firstName: string;
|
|
940
|
+
lastName: string;
|
|
934
941
|
email: string;
|
|
935
942
|
phone: string;
|
|
936
|
-
createdAt: string;
|
|
937
|
-
id: string;
|
|
938
|
-
updatedAt: string;
|
|
939
943
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
940
944
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
941
945
|
} | undefined;
|
|
942
|
-
lead?: {
|
|
943
|
-
name: string;
|
|
944
|
-
phoneNumber: string;
|
|
945
|
-
} | undefined;
|
|
946
946
|
}, {
|
|
947
|
-
createdAt: string | Date;
|
|
948
947
|
status: LeadAssignmentStatus;
|
|
949
948
|
id: string;
|
|
949
|
+
createdAt: string | Date;
|
|
950
950
|
updatedAt: string | Date;
|
|
951
|
+
leadId: string;
|
|
951
952
|
agentId: string | null;
|
|
952
953
|
companyId: string | null;
|
|
953
|
-
leadId: string;
|
|
954
954
|
assignedAt: string | Date;
|
|
955
955
|
assignedBy: string | null;
|
|
956
956
|
company?: {
|
|
957
|
-
createdAt: string | Date;
|
|
958
957
|
id: string;
|
|
958
|
+
createdAt: string | Date;
|
|
959
959
|
updatedAt: string | Date;
|
|
960
960
|
name: string;
|
|
961
961
|
} | null | undefined;
|
|
962
|
+
lead?: {
|
|
963
|
+
name: string;
|
|
964
|
+
phoneNumber: string;
|
|
965
|
+
} | undefined;
|
|
962
966
|
agent?: {
|
|
963
|
-
|
|
967
|
+
id: string;
|
|
968
|
+
createdAt: string | Date;
|
|
969
|
+
updatedAt: string | Date;
|
|
964
970
|
firstName: string;
|
|
971
|
+
lastName: string;
|
|
965
972
|
email: string;
|
|
966
973
|
phone: string;
|
|
967
|
-
createdAt: string | Date;
|
|
968
|
-
id: string;
|
|
969
|
-
updatedAt: string | Date;
|
|
970
974
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
971
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;
|
|
972
976
|
} | undefined;
|
|
973
|
-
lead?: {
|
|
974
|
-
name: string;
|
|
975
|
-
phoneNumber: string;
|
|
976
|
-
} | undefined;
|
|
977
977
|
}>>;
|
|
978
978
|
}, "strip", z.ZodTypeAny, {
|
|
979
979
|
completed: {
|
|
980
|
-
createdAt: string;
|
|
981
980
|
status: LeadAssignmentStatus;
|
|
982
981
|
id: string;
|
|
982
|
+
createdAt: string;
|
|
983
983
|
updatedAt: string;
|
|
984
|
+
leadId: string;
|
|
984
985
|
agentId: string | null;
|
|
985
986
|
companyId: string | null;
|
|
986
|
-
leadId: string;
|
|
987
987
|
assignedAt: string;
|
|
988
988
|
assignedBy: string | null;
|
|
989
989
|
company?: {
|
|
990
|
-
createdAt: string;
|
|
991
990
|
id: string;
|
|
991
|
+
createdAt: string;
|
|
992
992
|
updatedAt: string;
|
|
993
993
|
name: string;
|
|
994
994
|
} | null | undefined;
|
|
995
|
+
lead?: {
|
|
996
|
+
name: string;
|
|
997
|
+
phoneNumber: string;
|
|
998
|
+
} | undefined;
|
|
995
999
|
agent?: {
|
|
996
|
-
|
|
1000
|
+
id: string;
|
|
1001
|
+
createdAt: string;
|
|
1002
|
+
updatedAt: string;
|
|
997
1003
|
firstName: string;
|
|
1004
|
+
lastName: string;
|
|
998
1005
|
email: string;
|
|
999
1006
|
phone: string;
|
|
1000
|
-
createdAt: string;
|
|
1001
|
-
id: string;
|
|
1002
|
-
updatedAt: string;
|
|
1003
1007
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1004
1008
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1005
1009
|
} | undefined;
|
|
1006
|
-
lead?: {
|
|
1007
|
-
name: string;
|
|
1008
|
-
phoneNumber: string;
|
|
1009
|
-
} | undefined;
|
|
1010
1010
|
};
|
|
1011
1011
|
next: {
|
|
1012
|
-
createdAt: string;
|
|
1013
1012
|
status: LeadAssignmentStatus;
|
|
1014
1013
|
id: string;
|
|
1014
|
+
createdAt: string;
|
|
1015
1015
|
updatedAt: string;
|
|
1016
|
+
leadId: string;
|
|
1016
1017
|
agentId: string | null;
|
|
1017
1018
|
companyId: string | null;
|
|
1018
|
-
leadId: string;
|
|
1019
1019
|
assignedAt: string;
|
|
1020
1020
|
assignedBy: string | null;
|
|
1021
1021
|
company?: {
|
|
1022
|
-
createdAt: string;
|
|
1023
1022
|
id: string;
|
|
1023
|
+
createdAt: string;
|
|
1024
1024
|
updatedAt: string;
|
|
1025
1025
|
name: string;
|
|
1026
1026
|
} | null | undefined;
|
|
1027
|
+
lead?: {
|
|
1028
|
+
name: string;
|
|
1029
|
+
phoneNumber: string;
|
|
1030
|
+
} | undefined;
|
|
1027
1031
|
agent?: {
|
|
1028
|
-
|
|
1032
|
+
id: string;
|
|
1033
|
+
createdAt: string;
|
|
1034
|
+
updatedAt: string;
|
|
1029
1035
|
firstName: string;
|
|
1036
|
+
lastName: string;
|
|
1030
1037
|
email: string;
|
|
1031
1038
|
phone: string;
|
|
1032
|
-
createdAt: string;
|
|
1033
|
-
id: string;
|
|
1034
|
-
updatedAt: string;
|
|
1035
1039
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1036
1040
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1037
1041
|
} | undefined;
|
|
1038
|
-
lead?: {
|
|
1039
|
-
name: string;
|
|
1040
|
-
phoneNumber: string;
|
|
1041
|
-
} | undefined;
|
|
1042
1042
|
} | null;
|
|
1043
1043
|
}, {
|
|
1044
1044
|
completed: {
|
|
1045
|
-
createdAt: string | Date;
|
|
1046
1045
|
status: LeadAssignmentStatus;
|
|
1047
1046
|
id: string;
|
|
1047
|
+
createdAt: string | Date;
|
|
1048
1048
|
updatedAt: string | Date;
|
|
1049
|
+
leadId: string;
|
|
1049
1050
|
agentId: string | null;
|
|
1050
1051
|
companyId: string | null;
|
|
1051
|
-
leadId: string;
|
|
1052
1052
|
assignedAt: string | Date;
|
|
1053
1053
|
assignedBy: string | null;
|
|
1054
1054
|
company?: {
|
|
1055
|
-
createdAt: string | Date;
|
|
1056
1055
|
id: string;
|
|
1056
|
+
createdAt: string | Date;
|
|
1057
1057
|
updatedAt: string | Date;
|
|
1058
1058
|
name: string;
|
|
1059
1059
|
} | null | undefined;
|
|
1060
|
+
lead?: {
|
|
1061
|
+
name: string;
|
|
1062
|
+
phoneNumber: string;
|
|
1063
|
+
} | undefined;
|
|
1060
1064
|
agent?: {
|
|
1061
|
-
|
|
1065
|
+
id: string;
|
|
1066
|
+
createdAt: string | Date;
|
|
1067
|
+
updatedAt: string | Date;
|
|
1062
1068
|
firstName: string;
|
|
1069
|
+
lastName: string;
|
|
1063
1070
|
email: string;
|
|
1064
1071
|
phone: string;
|
|
1065
|
-
createdAt: string | Date;
|
|
1066
|
-
id: string;
|
|
1067
|
-
updatedAt: string | Date;
|
|
1068
1072
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1069
1073
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1070
1074
|
} | undefined;
|
|
1071
|
-
lead?: {
|
|
1072
|
-
name: string;
|
|
1073
|
-
phoneNumber: string;
|
|
1074
|
-
} | undefined;
|
|
1075
1075
|
};
|
|
1076
1076
|
next: {
|
|
1077
|
-
createdAt: string | Date;
|
|
1078
1077
|
status: LeadAssignmentStatus;
|
|
1079
1078
|
id: string;
|
|
1079
|
+
createdAt: string | Date;
|
|
1080
1080
|
updatedAt: string | Date;
|
|
1081
|
+
leadId: string;
|
|
1081
1082
|
agentId: string | null;
|
|
1082
1083
|
companyId: string | null;
|
|
1083
|
-
leadId: string;
|
|
1084
1084
|
assignedAt: string | Date;
|
|
1085
1085
|
assignedBy: string | null;
|
|
1086
1086
|
company?: {
|
|
1087
|
-
createdAt: string | Date;
|
|
1088
1087
|
id: string;
|
|
1088
|
+
createdAt: string | Date;
|
|
1089
1089
|
updatedAt: string | Date;
|
|
1090
1090
|
name: string;
|
|
1091
1091
|
} | null | undefined;
|
|
1092
|
+
lead?: {
|
|
1093
|
+
name: string;
|
|
1094
|
+
phoneNumber: string;
|
|
1095
|
+
} | undefined;
|
|
1092
1096
|
agent?: {
|
|
1093
|
-
|
|
1097
|
+
id: string;
|
|
1098
|
+
createdAt: string | Date;
|
|
1099
|
+
updatedAt: string | Date;
|
|
1094
1100
|
firstName: string;
|
|
1101
|
+
lastName: string;
|
|
1095
1102
|
email: string;
|
|
1096
1103
|
phone: string;
|
|
1097
|
-
createdAt: string | Date;
|
|
1098
|
-
id: string;
|
|
1099
|
-
updatedAt: string | Date;
|
|
1100
1104
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1101
1105
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1102
1106
|
} | undefined;
|
|
1103
|
-
lead?: {
|
|
1104
|
-
name: string;
|
|
1105
|
-
phoneNumber: string;
|
|
1106
|
-
} | undefined;
|
|
1107
1107
|
} | null;
|
|
1108
1108
|
}>>;
|
|
1109
1109
|
404: z.ZodObject<{
|
|
@@ -1266,23 +1266,23 @@ export declare const leadAssignmentsContract: {
|
|
|
1266
1266
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1267
1267
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1268
1268
|
}, "strip", z.ZodTypeAny, {
|
|
1269
|
-
|
|
1269
|
+
id: string;
|
|
1270
|
+
createdAt: string;
|
|
1271
|
+
updatedAt: string;
|
|
1270
1272
|
firstName: string;
|
|
1273
|
+
lastName: string;
|
|
1271
1274
|
email: string;
|
|
1272
1275
|
phone: string;
|
|
1273
|
-
createdAt: string;
|
|
1274
|
-
id: string;
|
|
1275
|
-
updatedAt: string;
|
|
1276
1276
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1277
1277
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1278
1278
|
}, {
|
|
1279
|
-
|
|
1279
|
+
id: string;
|
|
1280
|
+
createdAt: string | Date;
|
|
1281
|
+
updatedAt: string | Date;
|
|
1280
1282
|
firstName: string;
|
|
1283
|
+
lastName: string;
|
|
1281
1284
|
email: string;
|
|
1282
1285
|
phone: string;
|
|
1283
|
-
createdAt: string | Date;
|
|
1284
|
-
id: string;
|
|
1285
|
-
updatedAt: string | Date;
|
|
1286
1286
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1287
1287
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1288
1288
|
}>>;
|
|
@@ -1296,80 +1296,80 @@ export declare const leadAssignmentsContract: {
|
|
|
1296
1296
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1297
1297
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1298
1298
|
}, "strip", z.ZodTypeAny, {
|
|
1299
|
-
createdAt: string;
|
|
1300
1299
|
id: string;
|
|
1300
|
+
createdAt: string;
|
|
1301
1301
|
updatedAt: string;
|
|
1302
1302
|
name: string;
|
|
1303
1303
|
}, {
|
|
1304
|
-
createdAt: string | Date;
|
|
1305
1304
|
id: string;
|
|
1305
|
+
createdAt: string | Date;
|
|
1306
1306
|
updatedAt: string | Date;
|
|
1307
1307
|
name: string;
|
|
1308
1308
|
}>>>;
|
|
1309
1309
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1310
1310
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1311
1311
|
}, "strip", z.ZodTypeAny, {
|
|
1312
|
-
createdAt: string;
|
|
1313
1312
|
status: LeadAssignmentStatus;
|
|
1314
1313
|
id: string;
|
|
1314
|
+
createdAt: string;
|
|
1315
1315
|
updatedAt: string;
|
|
1316
|
+
leadId: string;
|
|
1316
1317
|
agentId: string | null;
|
|
1317
1318
|
companyId: string | null;
|
|
1318
|
-
leadId: string;
|
|
1319
1319
|
assignedAt: string;
|
|
1320
1320
|
assignedBy: string | null;
|
|
1321
1321
|
company?: {
|
|
1322
|
-
createdAt: string;
|
|
1323
1322
|
id: string;
|
|
1323
|
+
createdAt: string;
|
|
1324
1324
|
updatedAt: string;
|
|
1325
1325
|
name: string;
|
|
1326
1326
|
} | null | undefined;
|
|
1327
|
+
lead?: {
|
|
1328
|
+
name: string;
|
|
1329
|
+
phoneNumber: string;
|
|
1330
|
+
} | undefined;
|
|
1327
1331
|
agent?: {
|
|
1328
|
-
|
|
1332
|
+
id: string;
|
|
1333
|
+
createdAt: string;
|
|
1334
|
+
updatedAt: string;
|
|
1329
1335
|
firstName: string;
|
|
1336
|
+
lastName: string;
|
|
1330
1337
|
email: string;
|
|
1331
1338
|
phone: string;
|
|
1332
|
-
createdAt: string;
|
|
1333
|
-
id: string;
|
|
1334
|
-
updatedAt: string;
|
|
1335
1339
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1336
1340
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1337
1341
|
} | undefined;
|
|
1338
|
-
lead?: {
|
|
1339
|
-
name: string;
|
|
1340
|
-
phoneNumber: string;
|
|
1341
|
-
} | undefined;
|
|
1342
1342
|
}, {
|
|
1343
|
-
createdAt: string | Date;
|
|
1344
1343
|
status: LeadAssignmentStatus;
|
|
1345
1344
|
id: string;
|
|
1345
|
+
createdAt: string | Date;
|
|
1346
1346
|
updatedAt: string | Date;
|
|
1347
|
+
leadId: string;
|
|
1347
1348
|
agentId: string | null;
|
|
1348
1349
|
companyId: string | null;
|
|
1349
|
-
leadId: string;
|
|
1350
1350
|
assignedAt: string | Date;
|
|
1351
1351
|
assignedBy: string | null;
|
|
1352
1352
|
company?: {
|
|
1353
|
-
createdAt: string | Date;
|
|
1354
1353
|
id: string;
|
|
1354
|
+
createdAt: string | Date;
|
|
1355
1355
|
updatedAt: string | Date;
|
|
1356
1356
|
name: string;
|
|
1357
1357
|
} | null | undefined;
|
|
1358
|
+
lead?: {
|
|
1359
|
+
name: string;
|
|
1360
|
+
phoneNumber: string;
|
|
1361
|
+
} | undefined;
|
|
1358
1362
|
agent?: {
|
|
1359
|
-
|
|
1363
|
+
id: string;
|
|
1364
|
+
createdAt: string | Date;
|
|
1365
|
+
updatedAt: string | Date;
|
|
1360
1366
|
firstName: string;
|
|
1367
|
+
lastName: string;
|
|
1361
1368
|
email: string;
|
|
1362
1369
|
phone: string;
|
|
1363
|
-
createdAt: string | Date;
|
|
1364
|
-
id: string;
|
|
1365
|
-
updatedAt: string | Date;
|
|
1366
1370
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1367
1371
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1368
1372
|
} | undefined;
|
|
1369
|
-
lead?: {
|
|
1370
|
-
name: string;
|
|
1371
|
-
phoneNumber: string;
|
|
1372
|
-
} | undefined;
|
|
1373
1373
|
}>>;
|
|
1374
1374
|
};
|
|
1375
1375
|
};
|
|
@@ -1514,23 +1514,23 @@ export declare const leadAssignmentsContract: {
|
|
|
1514
1514
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1515
1515
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1516
1516
|
}, "strip", z.ZodTypeAny, {
|
|
1517
|
-
|
|
1517
|
+
id: string;
|
|
1518
|
+
createdAt: string;
|
|
1519
|
+
updatedAt: string;
|
|
1518
1520
|
firstName: string;
|
|
1521
|
+
lastName: string;
|
|
1519
1522
|
email: string;
|
|
1520
1523
|
phone: string;
|
|
1521
|
-
createdAt: string;
|
|
1522
|
-
id: string;
|
|
1523
|
-
updatedAt: string;
|
|
1524
1524
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1525
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
1526
|
}, {
|
|
1527
|
-
|
|
1527
|
+
id: string;
|
|
1528
|
+
createdAt: string | Date;
|
|
1529
|
+
updatedAt: string | Date;
|
|
1528
1530
|
firstName: string;
|
|
1531
|
+
lastName: string;
|
|
1529
1532
|
email: string;
|
|
1530
1533
|
phone: string;
|
|
1531
|
-
createdAt: string | Date;
|
|
1532
|
-
id: string;
|
|
1533
|
-
updatedAt: string | Date;
|
|
1534
1534
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1535
1535
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1536
1536
|
}>>;
|
|
@@ -1544,80 +1544,80 @@ export declare const leadAssignmentsContract: {
|
|
|
1544
1544
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1545
1545
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1546
1546
|
}, "strip", z.ZodTypeAny, {
|
|
1547
|
-
createdAt: string;
|
|
1548
1547
|
id: string;
|
|
1548
|
+
createdAt: string;
|
|
1549
1549
|
updatedAt: string;
|
|
1550
1550
|
name: string;
|
|
1551
1551
|
}, {
|
|
1552
|
-
createdAt: string | Date;
|
|
1553
1552
|
id: string;
|
|
1553
|
+
createdAt: string | Date;
|
|
1554
1554
|
updatedAt: string | Date;
|
|
1555
1555
|
name: string;
|
|
1556
1556
|
}>>>;
|
|
1557
1557
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1558
1558
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1559
1559
|
}, "strip", z.ZodTypeAny, {
|
|
1560
|
-
createdAt: string;
|
|
1561
1560
|
status: LeadAssignmentStatus;
|
|
1562
1561
|
id: string;
|
|
1562
|
+
createdAt: string;
|
|
1563
1563
|
updatedAt: string;
|
|
1564
|
+
leadId: string;
|
|
1564
1565
|
agentId: string | null;
|
|
1565
1566
|
companyId: string | null;
|
|
1566
|
-
leadId: string;
|
|
1567
1567
|
assignedAt: string;
|
|
1568
1568
|
assignedBy: string | null;
|
|
1569
1569
|
company?: {
|
|
1570
|
-
createdAt: string;
|
|
1571
1570
|
id: string;
|
|
1571
|
+
createdAt: string;
|
|
1572
1572
|
updatedAt: string;
|
|
1573
1573
|
name: string;
|
|
1574
1574
|
} | null | undefined;
|
|
1575
|
+
lead?: {
|
|
1576
|
+
name: string;
|
|
1577
|
+
phoneNumber: string;
|
|
1578
|
+
} | undefined;
|
|
1575
1579
|
agent?: {
|
|
1576
|
-
|
|
1580
|
+
id: string;
|
|
1581
|
+
createdAt: string;
|
|
1582
|
+
updatedAt: string;
|
|
1577
1583
|
firstName: string;
|
|
1584
|
+
lastName: string;
|
|
1578
1585
|
email: string;
|
|
1579
1586
|
phone: string;
|
|
1580
|
-
createdAt: string;
|
|
1581
|
-
id: string;
|
|
1582
|
-
updatedAt: string;
|
|
1583
1587
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1584
1588
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1585
1589
|
} | undefined;
|
|
1586
|
-
lead?: {
|
|
1587
|
-
name: string;
|
|
1588
|
-
phoneNumber: string;
|
|
1589
|
-
} | undefined;
|
|
1590
1590
|
}, {
|
|
1591
|
-
createdAt: string | Date;
|
|
1592
1591
|
status: LeadAssignmentStatus;
|
|
1593
1592
|
id: string;
|
|
1593
|
+
createdAt: string | Date;
|
|
1594
1594
|
updatedAt: string | Date;
|
|
1595
|
+
leadId: string;
|
|
1595
1596
|
agentId: string | null;
|
|
1596
1597
|
companyId: string | null;
|
|
1597
|
-
leadId: string;
|
|
1598
1598
|
assignedAt: string | Date;
|
|
1599
1599
|
assignedBy: string | null;
|
|
1600
1600
|
company?: {
|
|
1601
|
-
createdAt: string | Date;
|
|
1602
1601
|
id: string;
|
|
1602
|
+
createdAt: string | Date;
|
|
1603
1603
|
updatedAt: string | Date;
|
|
1604
1604
|
name: string;
|
|
1605
1605
|
} | null | undefined;
|
|
1606
|
+
lead?: {
|
|
1607
|
+
name: string;
|
|
1608
|
+
phoneNumber: string;
|
|
1609
|
+
} | undefined;
|
|
1606
1610
|
agent?: {
|
|
1607
|
-
|
|
1611
|
+
id: string;
|
|
1612
|
+
createdAt: string | Date;
|
|
1613
|
+
updatedAt: string | Date;
|
|
1608
1614
|
firstName: string;
|
|
1615
|
+
lastName: string;
|
|
1609
1616
|
email: string;
|
|
1610
1617
|
phone: string;
|
|
1611
|
-
createdAt: string | Date;
|
|
1612
|
-
id: string;
|
|
1613
|
-
updatedAt: string | Date;
|
|
1614
1618
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1615
1619
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1616
1620
|
} | undefined;
|
|
1617
|
-
lead?: {
|
|
1618
|
-
name: string;
|
|
1619
|
-
phoneNumber: string;
|
|
1620
|
-
} | undefined;
|
|
1621
1621
|
}>;
|
|
1622
1622
|
404: z.ZodObject<{
|
|
1623
1623
|
statusCode: z.ZodNumber;
|
|
@@ -1786,23 +1786,23 @@ export declare const leadAssignmentsContract: {
|
|
|
1786
1786
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1787
1787
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1788
1788
|
}, "strip", z.ZodTypeAny, {
|
|
1789
|
-
|
|
1789
|
+
id: string;
|
|
1790
|
+
createdAt: string;
|
|
1791
|
+
updatedAt: string;
|
|
1790
1792
|
firstName: string;
|
|
1793
|
+
lastName: string;
|
|
1791
1794
|
email: string;
|
|
1792
1795
|
phone: string;
|
|
1793
|
-
createdAt: string;
|
|
1794
|
-
id: string;
|
|
1795
|
-
updatedAt: string;
|
|
1796
1796
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1797
1797
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1798
1798
|
}, {
|
|
1799
|
-
|
|
1799
|
+
id: string;
|
|
1800
|
+
createdAt: string | Date;
|
|
1801
|
+
updatedAt: string | Date;
|
|
1800
1802
|
firstName: string;
|
|
1803
|
+
lastName: string;
|
|
1801
1804
|
email: string;
|
|
1802
1805
|
phone: string;
|
|
1803
|
-
createdAt: string | Date;
|
|
1804
|
-
id: string;
|
|
1805
|
-
updatedAt: string | Date;
|
|
1806
1806
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1807
1807
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1808
1808
|
}>>;
|
|
@@ -1816,80 +1816,80 @@ export declare const leadAssignmentsContract: {
|
|
|
1816
1816
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1817
1817
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1818
1818
|
}, "strip", z.ZodTypeAny, {
|
|
1819
|
-
createdAt: string;
|
|
1820
1819
|
id: string;
|
|
1820
|
+
createdAt: string;
|
|
1821
1821
|
updatedAt: string;
|
|
1822
1822
|
name: string;
|
|
1823
1823
|
}, {
|
|
1824
|
-
createdAt: string | Date;
|
|
1825
1824
|
id: string;
|
|
1825
|
+
createdAt: string | Date;
|
|
1826
1826
|
updatedAt: string | Date;
|
|
1827
1827
|
name: string;
|
|
1828
1828
|
}>>>;
|
|
1829
1829
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1830
1830
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1831
1831
|
}, "strip", z.ZodTypeAny, {
|
|
1832
|
-
createdAt: string;
|
|
1833
1832
|
status: LeadAssignmentStatus;
|
|
1834
1833
|
id: string;
|
|
1834
|
+
createdAt: string;
|
|
1835
1835
|
updatedAt: string;
|
|
1836
|
+
leadId: string;
|
|
1836
1837
|
agentId: string | null;
|
|
1837
1838
|
companyId: string | null;
|
|
1838
|
-
leadId: string;
|
|
1839
1839
|
assignedAt: string;
|
|
1840
1840
|
assignedBy: string | null;
|
|
1841
1841
|
company?: {
|
|
1842
|
-
createdAt: string;
|
|
1843
1842
|
id: string;
|
|
1843
|
+
createdAt: string;
|
|
1844
1844
|
updatedAt: string;
|
|
1845
1845
|
name: string;
|
|
1846
1846
|
} | null | undefined;
|
|
1847
|
+
lead?: {
|
|
1848
|
+
name: string;
|
|
1849
|
+
phoneNumber: string;
|
|
1850
|
+
} | undefined;
|
|
1847
1851
|
agent?: {
|
|
1848
|
-
|
|
1852
|
+
id: string;
|
|
1853
|
+
createdAt: string;
|
|
1854
|
+
updatedAt: string;
|
|
1849
1855
|
firstName: string;
|
|
1856
|
+
lastName: string;
|
|
1850
1857
|
email: string;
|
|
1851
1858
|
phone: string;
|
|
1852
|
-
createdAt: string;
|
|
1853
|
-
id: string;
|
|
1854
|
-
updatedAt: string;
|
|
1855
1859
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1856
1860
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1857
1861
|
} | undefined;
|
|
1858
|
-
lead?: {
|
|
1859
|
-
name: string;
|
|
1860
|
-
phoneNumber: string;
|
|
1861
|
-
} | undefined;
|
|
1862
1862
|
}, {
|
|
1863
|
-
createdAt: string | Date;
|
|
1864
1863
|
status: LeadAssignmentStatus;
|
|
1865
1864
|
id: string;
|
|
1865
|
+
createdAt: string | Date;
|
|
1866
1866
|
updatedAt: string | Date;
|
|
1867
|
+
leadId: string;
|
|
1867
1868
|
agentId: string | null;
|
|
1868
1869
|
companyId: string | null;
|
|
1869
|
-
leadId: string;
|
|
1870
1870
|
assignedAt: string | Date;
|
|
1871
1871
|
assignedBy: string | null;
|
|
1872
1872
|
company?: {
|
|
1873
|
-
createdAt: string | Date;
|
|
1874
1873
|
id: string;
|
|
1874
|
+
createdAt: string | Date;
|
|
1875
1875
|
updatedAt: string | Date;
|
|
1876
1876
|
name: string;
|
|
1877
1877
|
} | null | undefined;
|
|
1878
|
+
lead?: {
|
|
1879
|
+
name: string;
|
|
1880
|
+
phoneNumber: string;
|
|
1881
|
+
} | undefined;
|
|
1878
1882
|
agent?: {
|
|
1879
|
-
|
|
1883
|
+
id: string;
|
|
1884
|
+
createdAt: string | Date;
|
|
1885
|
+
updatedAt: string | Date;
|
|
1880
1886
|
firstName: string;
|
|
1887
|
+
lastName: string;
|
|
1881
1888
|
email: string;
|
|
1882
1889
|
phone: string;
|
|
1883
|
-
createdAt: string | Date;
|
|
1884
|
-
id: string;
|
|
1885
|
-
updatedAt: string | Date;
|
|
1886
1890
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1887
1891
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1888
1892
|
} | undefined;
|
|
1889
|
-
lead?: {
|
|
1890
|
-
name: string;
|
|
1891
|
-
phoneNumber: string;
|
|
1892
|
-
} | undefined;
|
|
1893
1893
|
}>;
|
|
1894
1894
|
404: z.ZodObject<{
|
|
1895
1895
|
statusCode: z.ZodNumber;
|