@dakkitor/api-contracts 1.1.79 → 1.1.81
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/first-agent.abilities.json +2 -0
- package/dist/actives/actives.contract.d.ts +2517 -2227
- package/dist/actives/actives.contract.d.ts.map +1 -1
- package/dist/agent-client-links/agent-client-links.contract.d.ts +34 -34
- package/dist/bookings/bookings.contract.d.ts +2216 -1951
- package/dist/bookings/bookings.contract.d.ts.map +1 -1
- package/dist/call-history/call-history.contract.d.ts +74 -74
- package/dist/client-contacts/client-contacts.contract.d.ts +32 -32
- package/dist/clients/clients.contract.d.ts +18 -18
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +600 -600
- package/dist/collaborations/collaborations.contract.d.ts +766 -491
- package/dist/collaborations/collaborations.contract.d.ts.map +1 -1
- package/dist/collaborations/collaborations.contract.js +10 -5
- package/dist/common/common-schemas.d.ts +69 -2
- package/dist/common/common-schemas.d.ts.map +1 -1
- package/dist/common/common-schemas.js +72 -1
- package/dist/companies/companies.contract.d.ts +2 -2
- package/dist/cron-executions/cron-executions.contract.d.ts +26 -26
- package/dist/curated-workers/curated-workers.contract.d.ts +312 -285
- package/dist/curated-workers/curated-workers.contract.d.ts.map +1 -1
- package/dist/curated-workers/curated-workers.contract.js +7 -20
- package/dist/dashboards/dashboard.contract.d.ts +306 -0
- package/dist/dashboards/dashboard.contract.d.ts.map +1 -0
- package/dist/dashboards/dashboard.contract.js +85 -0
- package/dist/index.d.ts +4 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -1
- package/dist/jobs/jobs.contract.d.ts +687 -687
- package/dist/lead-assignments/lead-assignments.contract.d.ts +74 -74
- package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +16 -16
- package/dist/leads/leads.contract.d.ts +48 -48
- package/dist/locations/locations.contract.d.ts +12 -12
- package/dist/users/users.contract.d.ts +12 -18
- package/dist/users/users.contract.d.ts.map +1 -1
- package/dist/users/users.contract.js +3 -12
- package/dist/workers/workers.contract.d.ts +352 -181
- package/dist/workers/workers.contract.d.ts.map +1 -1
- package/dist/workers/workers.contract.js +27 -42
- package/package.json +1 -1
|
@@ -11,14 +11,14 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
11
11
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
12
12
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
|
-
id: string;
|
|
15
14
|
createdAt: string;
|
|
16
15
|
updatedAt: string;
|
|
16
|
+
id: string;
|
|
17
17
|
name: string;
|
|
18
18
|
}, {
|
|
19
|
-
id: string;
|
|
20
19
|
createdAt: string | Date;
|
|
21
20
|
updatedAt: string | Date;
|
|
21
|
+
id: string;
|
|
22
22
|
name: string;
|
|
23
23
|
}>>>;
|
|
24
24
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -56,10 +56,10 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
56
56
|
agentId: string;
|
|
57
57
|
}>>>;
|
|
58
58
|
}, "strip", z.ZodTypeAny, {
|
|
59
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
60
|
-
id: string;
|
|
61
59
|
createdAt: string;
|
|
62
60
|
updatedAt: string;
|
|
61
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
62
|
+
id: string;
|
|
63
63
|
name: string;
|
|
64
64
|
crn: string | null;
|
|
65
65
|
govLink: string;
|
|
@@ -76,10 +76,10 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
76
76
|
agentId: string;
|
|
77
77
|
} | null | undefined;
|
|
78
78
|
}, {
|
|
79
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
80
|
-
id: string;
|
|
81
79
|
createdAt: string | Date;
|
|
82
80
|
updatedAt: string | Date;
|
|
81
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
82
|
+
id: string;
|
|
83
83
|
name: string;
|
|
84
84
|
crn: string | null;
|
|
85
85
|
govLink: string;
|
|
@@ -101,15 +101,15 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
101
101
|
firstName: z.ZodString;
|
|
102
102
|
lastName: z.ZodString;
|
|
103
103
|
email: z.ZodString;
|
|
104
|
-
phone: z.
|
|
104
|
+
phone: z.ZodString;
|
|
105
105
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
106
106
|
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"]>>>;
|
|
107
107
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
108
108
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
109
109
|
}, "strip", z.ZodTypeAny, {
|
|
110
|
-
id: string;
|
|
111
110
|
createdAt: string;
|
|
112
111
|
updatedAt: string;
|
|
112
|
+
id: string;
|
|
113
113
|
firstName: string;
|
|
114
114
|
lastName: string;
|
|
115
115
|
email: string;
|
|
@@ -117,9 +117,9 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
117
117
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
118
118
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
119
119
|
}, {
|
|
120
|
-
id: string;
|
|
121
120
|
createdAt: string | Date;
|
|
122
121
|
updatedAt: string | Date;
|
|
122
|
+
id: string;
|
|
123
123
|
firstName: string;
|
|
124
124
|
lastName: string;
|
|
125
125
|
email: string;
|
|
@@ -127,7 +127,7 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
127
127
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
128
128
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
129
129
|
}>>>;
|
|
130
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
130
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
131
131
|
userId: z.ZodString;
|
|
132
132
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
133
133
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -140,14 +140,14 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
140
140
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
141
141
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
142
142
|
}, "strip", z.ZodTypeAny, {
|
|
143
|
-
id: string;
|
|
144
143
|
createdAt: string;
|
|
145
144
|
updatedAt: string;
|
|
145
|
+
id: string;
|
|
146
146
|
name: string;
|
|
147
147
|
}, {
|
|
148
|
-
id: string;
|
|
149
148
|
createdAt: string | Date;
|
|
150
149
|
updatedAt: string | Date;
|
|
150
|
+
id: string;
|
|
151
151
|
name: string;
|
|
152
152
|
}>>>;
|
|
153
153
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -185,10 +185,10 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
185
185
|
agentId: string;
|
|
186
186
|
}>>>;
|
|
187
187
|
}, "strip", z.ZodTypeAny, {
|
|
188
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
189
|
-
id: string;
|
|
190
188
|
createdAt: string;
|
|
191
189
|
updatedAt: string;
|
|
190
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
191
|
+
id: string;
|
|
192
192
|
name: string;
|
|
193
193
|
crn: string | null;
|
|
194
194
|
govLink: string;
|
|
@@ -205,10 +205,10 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
205
205
|
agentId: string;
|
|
206
206
|
} | null | undefined;
|
|
207
207
|
}, {
|
|
208
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
209
|
-
id: string;
|
|
210
208
|
createdAt: string | Date;
|
|
211
209
|
updatedAt: string | Date;
|
|
210
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
211
|
+
id: string;
|
|
212
212
|
name: string;
|
|
213
213
|
crn: string | null;
|
|
214
214
|
govLink: string;
|
|
@@ -230,15 +230,15 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
230
230
|
firstName: z.ZodString;
|
|
231
231
|
lastName: z.ZodString;
|
|
232
232
|
email: z.ZodString;
|
|
233
|
-
phone: z.
|
|
233
|
+
phone: z.ZodString;
|
|
234
234
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
235
235
|
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"]>>>;
|
|
236
236
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
237
237
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
238
238
|
}, "strip", z.ZodTypeAny, {
|
|
239
|
-
id: string;
|
|
240
239
|
createdAt: string;
|
|
241
240
|
updatedAt: string;
|
|
241
|
+
id: string;
|
|
242
242
|
firstName: string;
|
|
243
243
|
lastName: string;
|
|
244
244
|
email: string;
|
|
@@ -246,9 +246,9 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
246
246
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
247
247
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
248
248
|
}, {
|
|
249
|
-
id: string;
|
|
250
249
|
createdAt: string | Date;
|
|
251
250
|
updatedAt: string | Date;
|
|
251
|
+
id: string;
|
|
252
252
|
firstName: string;
|
|
253
253
|
lastName: string;
|
|
254
254
|
email: string;
|
|
@@ -256,27 +256,27 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
256
256
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
257
257
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
258
258
|
}>>>;
|
|
259
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
259
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
260
260
|
userId: z.ZodString;
|
|
261
261
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
262
262
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
263
263
|
}, "strip", z.ZodTypeAny, {
|
|
264
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
265
|
-
id: string;
|
|
266
264
|
createdAt: string;
|
|
267
265
|
updatedAt: string;
|
|
266
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
267
|
+
id: string;
|
|
268
268
|
userId: string;
|
|
269
269
|
company?: {
|
|
270
|
-
id: string;
|
|
271
270
|
createdAt: string;
|
|
272
271
|
updatedAt: string;
|
|
272
|
+
id: string;
|
|
273
273
|
name: string;
|
|
274
274
|
} | null | undefined;
|
|
275
275
|
client?: {
|
|
276
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
277
|
-
id: string;
|
|
278
276
|
createdAt: string;
|
|
279
277
|
updatedAt: string;
|
|
278
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
279
|
+
id: string;
|
|
280
280
|
name: string;
|
|
281
281
|
crn: string | null;
|
|
282
282
|
govLink: string;
|
|
@@ -294,9 +294,9 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
294
294
|
} | null | undefined;
|
|
295
295
|
} | null | undefined;
|
|
296
296
|
user?: {
|
|
297
|
-
id: string;
|
|
298
297
|
createdAt: string;
|
|
299
298
|
updatedAt: string;
|
|
299
|
+
id: string;
|
|
300
300
|
firstName: string;
|
|
301
301
|
lastName: string;
|
|
302
302
|
email: string;
|
|
@@ -305,22 +305,22 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
305
305
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
306
306
|
} | null | undefined;
|
|
307
307
|
}, {
|
|
308
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
309
|
-
id: string;
|
|
310
308
|
createdAt: string | Date;
|
|
311
309
|
updatedAt: string | Date;
|
|
310
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
311
|
+
id: string;
|
|
312
312
|
userId: string;
|
|
313
313
|
company?: {
|
|
314
|
-
id: string;
|
|
315
314
|
createdAt: string | Date;
|
|
316
315
|
updatedAt: string | Date;
|
|
316
|
+
id: string;
|
|
317
317
|
name: string;
|
|
318
318
|
} | null | undefined;
|
|
319
319
|
client?: {
|
|
320
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
321
|
-
id: string;
|
|
322
320
|
createdAt: string | Date;
|
|
323
321
|
updatedAt: string | Date;
|
|
322
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
323
|
+
id: string;
|
|
324
324
|
name: string;
|
|
325
325
|
crn: string | null;
|
|
326
326
|
govLink: string;
|
|
@@ -338,9 +338,9 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
338
338
|
} | null | undefined;
|
|
339
339
|
} | null | undefined;
|
|
340
340
|
user?: {
|
|
341
|
-
id: string;
|
|
342
341
|
createdAt: string | Date;
|
|
343
342
|
updatedAt: string | Date;
|
|
343
|
+
id: string;
|
|
344
344
|
firstName: string;
|
|
345
345
|
lastName: string;
|
|
346
346
|
email: string;
|
|
@@ -350,22 +350,22 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
350
350
|
} | null | undefined;
|
|
351
351
|
}>>>;
|
|
352
352
|
}, "strip", z.ZodTypeAny, {
|
|
353
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
354
|
-
id: string;
|
|
355
353
|
createdAt: string;
|
|
356
354
|
updatedAt: string;
|
|
355
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
356
|
+
id: string;
|
|
357
357
|
userId: string;
|
|
358
358
|
company?: {
|
|
359
|
-
id: string;
|
|
360
359
|
createdAt: string;
|
|
361
360
|
updatedAt: string;
|
|
361
|
+
id: string;
|
|
362
362
|
name: string;
|
|
363
363
|
} | null | undefined;
|
|
364
364
|
client?: {
|
|
365
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
366
|
-
id: string;
|
|
367
365
|
createdAt: string;
|
|
368
366
|
updatedAt: string;
|
|
367
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
368
|
+
id: string;
|
|
369
369
|
name: string;
|
|
370
370
|
crn: string | null;
|
|
371
371
|
govLink: string;
|
|
@@ -383,9 +383,9 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
383
383
|
} | null | undefined;
|
|
384
384
|
} | null | undefined;
|
|
385
385
|
user?: {
|
|
386
|
-
id: string;
|
|
387
386
|
createdAt: string;
|
|
388
387
|
updatedAt: string;
|
|
388
|
+
id: string;
|
|
389
389
|
firstName: string;
|
|
390
390
|
lastName: string;
|
|
391
391
|
email: string;
|
|
@@ -394,22 +394,22 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
394
394
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
395
395
|
} | null | undefined;
|
|
396
396
|
newCollaboration?: {
|
|
397
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
398
|
-
id: string;
|
|
399
397
|
createdAt: string;
|
|
400
398
|
updatedAt: string;
|
|
399
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
400
|
+
id: string;
|
|
401
401
|
userId: string;
|
|
402
402
|
company?: {
|
|
403
|
-
id: string;
|
|
404
403
|
createdAt: string;
|
|
405
404
|
updatedAt: string;
|
|
405
|
+
id: string;
|
|
406
406
|
name: string;
|
|
407
407
|
} | null | undefined;
|
|
408
408
|
client?: {
|
|
409
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
410
|
-
id: string;
|
|
411
409
|
createdAt: string;
|
|
412
410
|
updatedAt: string;
|
|
411
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
412
|
+
id: string;
|
|
413
413
|
name: string;
|
|
414
414
|
crn: string | null;
|
|
415
415
|
govLink: string;
|
|
@@ -427,9 +427,9 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
427
427
|
} | null | undefined;
|
|
428
428
|
} | null | undefined;
|
|
429
429
|
user?: {
|
|
430
|
-
id: string;
|
|
431
430
|
createdAt: string;
|
|
432
431
|
updatedAt: string;
|
|
432
|
+
id: string;
|
|
433
433
|
firstName: string;
|
|
434
434
|
lastName: string;
|
|
435
435
|
email: string;
|
|
@@ -439,22 +439,22 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
439
439
|
} | null | undefined;
|
|
440
440
|
} | null | undefined;
|
|
441
441
|
}, {
|
|
442
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
443
|
-
id: string;
|
|
444
442
|
createdAt: string | Date;
|
|
445
443
|
updatedAt: string | Date;
|
|
444
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
445
|
+
id: string;
|
|
446
446
|
userId: string;
|
|
447
447
|
company?: {
|
|
448
|
-
id: string;
|
|
449
448
|
createdAt: string | Date;
|
|
450
449
|
updatedAt: string | Date;
|
|
450
|
+
id: string;
|
|
451
451
|
name: string;
|
|
452
452
|
} | null | undefined;
|
|
453
453
|
client?: {
|
|
454
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
455
|
-
id: string;
|
|
456
454
|
createdAt: string | Date;
|
|
457
455
|
updatedAt: string | Date;
|
|
456
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
457
|
+
id: string;
|
|
458
458
|
name: string;
|
|
459
459
|
crn: string | null;
|
|
460
460
|
govLink: string;
|
|
@@ -472,9 +472,9 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
472
472
|
} | null | undefined;
|
|
473
473
|
} | null | undefined;
|
|
474
474
|
user?: {
|
|
475
|
-
id: string;
|
|
476
475
|
createdAt: string | Date;
|
|
477
476
|
updatedAt: string | Date;
|
|
477
|
+
id: string;
|
|
478
478
|
firstName: string;
|
|
479
479
|
lastName: string;
|
|
480
480
|
email: string;
|
|
@@ -483,22 +483,22 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
483
483
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
484
484
|
} | null | undefined;
|
|
485
485
|
newCollaboration?: {
|
|
486
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
487
|
-
id: string;
|
|
488
486
|
createdAt: string | Date;
|
|
489
487
|
updatedAt: string | Date;
|
|
488
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
489
|
+
id: string;
|
|
490
490
|
userId: string;
|
|
491
491
|
company?: {
|
|
492
|
-
id: string;
|
|
493
492
|
createdAt: string | Date;
|
|
494
493
|
updatedAt: string | Date;
|
|
494
|
+
id: string;
|
|
495
495
|
name: string;
|
|
496
496
|
} | null | undefined;
|
|
497
497
|
client?: {
|
|
498
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
499
|
-
id: string;
|
|
500
498
|
createdAt: string | Date;
|
|
501
499
|
updatedAt: string | Date;
|
|
500
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
501
|
+
id: string;
|
|
502
502
|
name: string;
|
|
503
503
|
crn: string | null;
|
|
504
504
|
govLink: string;
|
|
@@ -516,9 +516,9 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
516
516
|
} | null | undefined;
|
|
517
517
|
} | null | undefined;
|
|
518
518
|
user?: {
|
|
519
|
-
id: string;
|
|
520
519
|
createdAt: string | Date;
|
|
521
520
|
updatedAt: string | Date;
|
|
521
|
+
id: string;
|
|
522
522
|
firstName: string;
|
|
523
523
|
lastName: string;
|
|
524
524
|
email: string;
|
|
@@ -544,35 +544,35 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
544
544
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
545
545
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
546
546
|
}, "strip", z.ZodTypeAny, {
|
|
547
|
-
id: string;
|
|
548
547
|
createdAt: string;
|
|
549
548
|
updatedAt: string;
|
|
550
|
-
|
|
549
|
+
id: string;
|
|
551
550
|
email: string;
|
|
551
|
+
collaborationId: string;
|
|
552
552
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
553
|
-
decision: "
|
|
553
|
+
decision: "REJECTED" | "APPROVED" | "PENDING";
|
|
554
554
|
isTermsAndConditionsConfirmed: boolean;
|
|
555
555
|
emailType: "INTRODUCTION" | "COLLABORATION" | "BOTH";
|
|
556
556
|
introductionEmailSent: boolean;
|
|
557
557
|
collaborationEmailSent: boolean;
|
|
558
558
|
clientContactId?: string | null | undefined;
|
|
559
559
|
collaboration?: {
|
|
560
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
561
|
-
id: string;
|
|
562
560
|
createdAt: string;
|
|
563
561
|
updatedAt: string;
|
|
562
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
563
|
+
id: string;
|
|
564
564
|
userId: string;
|
|
565
565
|
company?: {
|
|
566
|
-
id: string;
|
|
567
566
|
createdAt: string;
|
|
568
567
|
updatedAt: string;
|
|
568
|
+
id: string;
|
|
569
569
|
name: string;
|
|
570
570
|
} | null | undefined;
|
|
571
571
|
client?: {
|
|
572
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
573
|
-
id: string;
|
|
574
572
|
createdAt: string;
|
|
575
573
|
updatedAt: string;
|
|
574
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
575
|
+
id: string;
|
|
576
576
|
name: string;
|
|
577
577
|
crn: string | null;
|
|
578
578
|
govLink: string;
|
|
@@ -590,9 +590,9 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
590
590
|
} | null | undefined;
|
|
591
591
|
} | null | undefined;
|
|
592
592
|
user?: {
|
|
593
|
-
id: string;
|
|
594
593
|
createdAt: string;
|
|
595
594
|
updatedAt: string;
|
|
595
|
+
id: string;
|
|
596
596
|
firstName: string;
|
|
597
597
|
lastName: string;
|
|
598
598
|
email: string;
|
|
@@ -601,22 +601,22 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
601
601
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
602
602
|
} | null | undefined;
|
|
603
603
|
newCollaboration?: {
|
|
604
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
605
|
-
id: string;
|
|
606
604
|
createdAt: string;
|
|
607
605
|
updatedAt: string;
|
|
606
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
607
|
+
id: string;
|
|
608
608
|
userId: string;
|
|
609
609
|
company?: {
|
|
610
|
-
id: string;
|
|
611
610
|
createdAt: string;
|
|
612
611
|
updatedAt: string;
|
|
612
|
+
id: string;
|
|
613
613
|
name: string;
|
|
614
614
|
} | null | undefined;
|
|
615
615
|
client?: {
|
|
616
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
617
|
-
id: string;
|
|
618
616
|
createdAt: string;
|
|
619
617
|
updatedAt: string;
|
|
618
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
619
|
+
id: string;
|
|
620
620
|
name: string;
|
|
621
621
|
crn: string | null;
|
|
622
622
|
govLink: string;
|
|
@@ -634,9 +634,9 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
634
634
|
} | null | undefined;
|
|
635
635
|
} | null | undefined;
|
|
636
636
|
user?: {
|
|
637
|
-
id: string;
|
|
638
637
|
createdAt: string;
|
|
639
638
|
updatedAt: string;
|
|
639
|
+
id: string;
|
|
640
640
|
firstName: string;
|
|
641
641
|
lastName: string;
|
|
642
642
|
email: string;
|
|
@@ -653,35 +653,35 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
653
653
|
collaborationEmailTimestamp?: string | null | undefined;
|
|
654
654
|
checkingComment?: string | null | undefined;
|
|
655
655
|
}, {
|
|
656
|
-
id: string;
|
|
657
656
|
createdAt: string | Date;
|
|
658
657
|
updatedAt: string | Date;
|
|
659
|
-
|
|
658
|
+
id: string;
|
|
660
659
|
email: string;
|
|
660
|
+
collaborationId: string;
|
|
661
661
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
662
|
-
decision: "
|
|
662
|
+
decision: "REJECTED" | "APPROVED" | "PENDING";
|
|
663
663
|
isTermsAndConditionsConfirmed: boolean;
|
|
664
664
|
emailType: "INTRODUCTION" | "COLLABORATION" | "BOTH";
|
|
665
665
|
introductionEmailSent: boolean;
|
|
666
666
|
collaborationEmailSent: boolean;
|
|
667
667
|
clientContactId?: string | null | undefined;
|
|
668
668
|
collaboration?: {
|
|
669
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
670
|
-
id: string;
|
|
671
669
|
createdAt: string | Date;
|
|
672
670
|
updatedAt: string | Date;
|
|
671
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
672
|
+
id: string;
|
|
673
673
|
userId: string;
|
|
674
674
|
company?: {
|
|
675
|
-
id: string;
|
|
676
675
|
createdAt: string | Date;
|
|
677
676
|
updatedAt: string | Date;
|
|
677
|
+
id: string;
|
|
678
678
|
name: string;
|
|
679
679
|
} | null | undefined;
|
|
680
680
|
client?: {
|
|
681
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
682
|
-
id: string;
|
|
683
681
|
createdAt: string | Date;
|
|
684
682
|
updatedAt: string | Date;
|
|
683
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
684
|
+
id: string;
|
|
685
685
|
name: string;
|
|
686
686
|
crn: string | null;
|
|
687
687
|
govLink: string;
|
|
@@ -699,9 +699,9 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
699
699
|
} | null | undefined;
|
|
700
700
|
} | null | undefined;
|
|
701
701
|
user?: {
|
|
702
|
-
id: string;
|
|
703
702
|
createdAt: string | Date;
|
|
704
703
|
updatedAt: string | Date;
|
|
704
|
+
id: string;
|
|
705
705
|
firstName: string;
|
|
706
706
|
lastName: string;
|
|
707
707
|
email: string;
|
|
@@ -710,22 +710,22 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
710
710
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
711
711
|
} | null | undefined;
|
|
712
712
|
newCollaboration?: {
|
|
713
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
714
|
-
id: string;
|
|
715
713
|
createdAt: string | Date;
|
|
716
714
|
updatedAt: string | Date;
|
|
715
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
716
|
+
id: string;
|
|
717
717
|
userId: string;
|
|
718
718
|
company?: {
|
|
719
|
-
id: string;
|
|
720
719
|
createdAt: string | Date;
|
|
721
720
|
updatedAt: string | Date;
|
|
721
|
+
id: string;
|
|
722
722
|
name: string;
|
|
723
723
|
} | null | undefined;
|
|
724
724
|
client?: {
|
|
725
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
726
|
-
id: string;
|
|
727
725
|
createdAt: string | Date;
|
|
728
726
|
updatedAt: string | Date;
|
|
727
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
728
|
+
id: string;
|
|
729
729
|
name: string;
|
|
730
730
|
crn: string | null;
|
|
731
731
|
govLink: string;
|
|
@@ -743,9 +743,9 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
743
743
|
} | null | undefined;
|
|
744
744
|
} | null | undefined;
|
|
745
745
|
user?: {
|
|
746
|
-
id: string;
|
|
747
746
|
createdAt: string | Date;
|
|
748
747
|
updatedAt: string | Date;
|
|
748
|
+
id: string;
|
|
749
749
|
firstName: string;
|
|
750
750
|
lastName: string;
|
|
751
751
|
email: string;
|
|
@@ -813,10 +813,10 @@ export declare const UpdateCollaborationCheckingSchema: z.ZodObject<{
|
|
|
813
813
|
checkingComment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
814
814
|
clientContactId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
815
815
|
}, "strip", z.ZodTypeAny, {
|
|
816
|
-
clientContactId?: string | null | undefined;
|
|
817
816
|
email?: string | null | undefined;
|
|
817
|
+
clientContactId?: string | null | undefined;
|
|
818
818
|
urgency?: "LOW" | "MEDIUM" | "HIGH" | null | undefined;
|
|
819
|
-
decision?: "
|
|
819
|
+
decision?: "REJECTED" | "APPROVED" | "PENDING" | null | undefined;
|
|
820
820
|
decisionComment?: string | null | undefined;
|
|
821
821
|
isTermsAndConditionsConfirmed?: boolean | null | undefined;
|
|
822
822
|
emailType?: "INTRODUCTION" | "COLLABORATION" | "BOTH" | null | undefined;
|
|
@@ -824,10 +824,10 @@ export declare const UpdateCollaborationCheckingSchema: z.ZodObject<{
|
|
|
824
824
|
collaborationEmailSent?: boolean | null | undefined;
|
|
825
825
|
checkingComment?: string | null | undefined;
|
|
826
826
|
}, {
|
|
827
|
-
clientContactId?: string | null | undefined;
|
|
828
827
|
email?: string | null | undefined;
|
|
828
|
+
clientContactId?: string | null | undefined;
|
|
829
829
|
urgency?: "LOW" | "MEDIUM" | "HIGH" | null | undefined;
|
|
830
|
-
decision?: "
|
|
830
|
+
decision?: "REJECTED" | "APPROVED" | "PENDING" | null | undefined;
|
|
831
831
|
decisionComment?: string | null | undefined;
|
|
832
832
|
isTermsAndConditionsConfirmed?: boolean | null | undefined;
|
|
833
833
|
emailType?: "INTRODUCTION" | "COLLABORATION" | "BOTH" | null | undefined;
|
|
@@ -851,20 +851,20 @@ export declare const FilterCollaborationCheckingSchema: z.ZodObject<{
|
|
|
851
851
|
page: number;
|
|
852
852
|
sortBy: "createdAt" | "updatedAt" | "urgency" | "decision" | "decisionTimestamp";
|
|
853
853
|
sortOrder: "ASC" | "DESC";
|
|
854
|
-
urgency?: "LOW" | "MEDIUM" | "HIGH" | undefined;
|
|
855
|
-
decision?: "APPROVED" | "REJECTED" | "PENDING" | undefined;
|
|
856
854
|
companyId?: string | undefined;
|
|
857
855
|
clientId?: string | undefined;
|
|
856
|
+
urgency?: "LOW" | "MEDIUM" | "HIGH" | undefined;
|
|
857
|
+
decision?: "REJECTED" | "APPROVED" | "PENDING" | undefined;
|
|
858
858
|
createdById?: string | undefined;
|
|
859
859
|
}, {
|
|
860
860
|
limit?: number | undefined;
|
|
861
861
|
page?: number | undefined;
|
|
862
|
+
companyId?: string | undefined;
|
|
863
|
+
clientId?: string | undefined;
|
|
862
864
|
sortBy?: "createdAt" | "updatedAt" | "urgency" | "decision" | "decisionTimestamp" | undefined;
|
|
863
865
|
sortOrder?: "ASC" | "DESC" | undefined;
|
|
864
866
|
urgency?: "LOW" | "MEDIUM" | "HIGH" | undefined;
|
|
865
|
-
decision?: "
|
|
866
|
-
companyId?: string | undefined;
|
|
867
|
-
clientId?: string | undefined;
|
|
867
|
+
decision?: "REJECTED" | "APPROVED" | "PENDING" | undefined;
|
|
868
868
|
createdById?: string | undefined;
|
|
869
869
|
}>;
|
|
870
870
|
export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
@@ -880,14 +880,14 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
880
880
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
881
881
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
882
882
|
}, "strip", z.ZodTypeAny, {
|
|
883
|
-
id: string;
|
|
884
883
|
createdAt: string;
|
|
885
884
|
updatedAt: string;
|
|
885
|
+
id: string;
|
|
886
886
|
name: string;
|
|
887
887
|
}, {
|
|
888
|
-
id: string;
|
|
889
888
|
createdAt: string | Date;
|
|
890
889
|
updatedAt: string | Date;
|
|
890
|
+
id: string;
|
|
891
891
|
name: string;
|
|
892
892
|
}>>>;
|
|
893
893
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -925,10 +925,10 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
925
925
|
agentId: string;
|
|
926
926
|
}>>>;
|
|
927
927
|
}, "strip", z.ZodTypeAny, {
|
|
928
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
929
|
-
id: string;
|
|
930
928
|
createdAt: string;
|
|
931
929
|
updatedAt: string;
|
|
930
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
931
|
+
id: string;
|
|
932
932
|
name: string;
|
|
933
933
|
crn: string | null;
|
|
934
934
|
govLink: string;
|
|
@@ -945,10 +945,10 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
945
945
|
agentId: string;
|
|
946
946
|
} | null | undefined;
|
|
947
947
|
}, {
|
|
948
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
949
|
-
id: string;
|
|
950
948
|
createdAt: string | Date;
|
|
951
949
|
updatedAt: string | Date;
|
|
950
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
951
|
+
id: string;
|
|
952
952
|
name: string;
|
|
953
953
|
crn: string | null;
|
|
954
954
|
govLink: string;
|
|
@@ -970,15 +970,15 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
970
970
|
firstName: z.ZodString;
|
|
971
971
|
lastName: z.ZodString;
|
|
972
972
|
email: z.ZodString;
|
|
973
|
-
phone: z.
|
|
973
|
+
phone: z.ZodString;
|
|
974
974
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
975
975
|
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"]>>>;
|
|
976
976
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
977
977
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
978
978
|
}, "strip", z.ZodTypeAny, {
|
|
979
|
-
id: string;
|
|
980
979
|
createdAt: string;
|
|
981
980
|
updatedAt: string;
|
|
981
|
+
id: string;
|
|
982
982
|
firstName: string;
|
|
983
983
|
lastName: string;
|
|
984
984
|
email: string;
|
|
@@ -986,9 +986,9 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
986
986
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
987
987
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
988
988
|
}, {
|
|
989
|
-
id: string;
|
|
990
989
|
createdAt: string | Date;
|
|
991
990
|
updatedAt: string | Date;
|
|
991
|
+
id: string;
|
|
992
992
|
firstName: string;
|
|
993
993
|
lastName: string;
|
|
994
994
|
email: string;
|
|
@@ -996,7 +996,7 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
996
996
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
997
997
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
998
998
|
}>>>;
|
|
999
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
999
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
1000
1000
|
userId: z.ZodString;
|
|
1001
1001
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1002
1002
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -1009,14 +1009,14 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1009
1009
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1010
1010
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1011
1011
|
}, "strip", z.ZodTypeAny, {
|
|
1012
|
-
id: string;
|
|
1013
1012
|
createdAt: string;
|
|
1014
1013
|
updatedAt: string;
|
|
1014
|
+
id: string;
|
|
1015
1015
|
name: string;
|
|
1016
1016
|
}, {
|
|
1017
|
-
id: string;
|
|
1018
1017
|
createdAt: string | Date;
|
|
1019
1018
|
updatedAt: string | Date;
|
|
1019
|
+
id: string;
|
|
1020
1020
|
name: string;
|
|
1021
1021
|
}>>>;
|
|
1022
1022
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -1054,10 +1054,10 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1054
1054
|
agentId: string;
|
|
1055
1055
|
}>>>;
|
|
1056
1056
|
}, "strip", z.ZodTypeAny, {
|
|
1057
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1058
|
-
id: string;
|
|
1059
1057
|
createdAt: string;
|
|
1060
1058
|
updatedAt: string;
|
|
1059
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1060
|
+
id: string;
|
|
1061
1061
|
name: string;
|
|
1062
1062
|
crn: string | null;
|
|
1063
1063
|
govLink: string;
|
|
@@ -1074,10 +1074,10 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1074
1074
|
agentId: string;
|
|
1075
1075
|
} | null | undefined;
|
|
1076
1076
|
}, {
|
|
1077
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1078
|
-
id: string;
|
|
1079
1077
|
createdAt: string | Date;
|
|
1080
1078
|
updatedAt: string | Date;
|
|
1079
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1080
|
+
id: string;
|
|
1081
1081
|
name: string;
|
|
1082
1082
|
crn: string | null;
|
|
1083
1083
|
govLink: string;
|
|
@@ -1099,15 +1099,15 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1099
1099
|
firstName: z.ZodString;
|
|
1100
1100
|
lastName: z.ZodString;
|
|
1101
1101
|
email: z.ZodString;
|
|
1102
|
-
phone: z.
|
|
1102
|
+
phone: z.ZodString;
|
|
1103
1103
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
1104
1104
|
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"]>>>;
|
|
1105
1105
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1106
1106
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1107
1107
|
}, "strip", z.ZodTypeAny, {
|
|
1108
|
-
id: string;
|
|
1109
1108
|
createdAt: string;
|
|
1110
1109
|
updatedAt: string;
|
|
1110
|
+
id: string;
|
|
1111
1111
|
firstName: string;
|
|
1112
1112
|
lastName: string;
|
|
1113
1113
|
email: string;
|
|
@@ -1115,9 +1115,9 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1115
1115
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1116
1116
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1117
1117
|
}, {
|
|
1118
|
-
id: string;
|
|
1119
1118
|
createdAt: string | Date;
|
|
1120
1119
|
updatedAt: string | Date;
|
|
1120
|
+
id: string;
|
|
1121
1121
|
firstName: string;
|
|
1122
1122
|
lastName: string;
|
|
1123
1123
|
email: string;
|
|
@@ -1125,27 +1125,27 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1125
1125
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1126
1126
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1127
1127
|
}>>>;
|
|
1128
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
1128
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
1129
1129
|
userId: z.ZodString;
|
|
1130
1130
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1131
1131
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1132
1132
|
}, "strip", z.ZodTypeAny, {
|
|
1133
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1134
|
-
id: string;
|
|
1135
1133
|
createdAt: string;
|
|
1136
1134
|
updatedAt: string;
|
|
1135
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1136
|
+
id: string;
|
|
1137
1137
|
userId: string;
|
|
1138
1138
|
company?: {
|
|
1139
|
-
id: string;
|
|
1140
1139
|
createdAt: string;
|
|
1141
1140
|
updatedAt: string;
|
|
1141
|
+
id: string;
|
|
1142
1142
|
name: string;
|
|
1143
1143
|
} | null | undefined;
|
|
1144
1144
|
client?: {
|
|
1145
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1146
|
-
id: string;
|
|
1147
1145
|
createdAt: string;
|
|
1148
1146
|
updatedAt: string;
|
|
1147
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1148
|
+
id: string;
|
|
1149
1149
|
name: string;
|
|
1150
1150
|
crn: string | null;
|
|
1151
1151
|
govLink: string;
|
|
@@ -1163,9 +1163,9 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1163
1163
|
} | null | undefined;
|
|
1164
1164
|
} | null | undefined;
|
|
1165
1165
|
user?: {
|
|
1166
|
-
id: string;
|
|
1167
1166
|
createdAt: string;
|
|
1168
1167
|
updatedAt: string;
|
|
1168
|
+
id: string;
|
|
1169
1169
|
firstName: string;
|
|
1170
1170
|
lastName: string;
|
|
1171
1171
|
email: string;
|
|
@@ -1174,22 +1174,22 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1174
1174
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1175
1175
|
} | null | undefined;
|
|
1176
1176
|
}, {
|
|
1177
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1178
|
-
id: string;
|
|
1179
1177
|
createdAt: string | Date;
|
|
1180
1178
|
updatedAt: string | Date;
|
|
1179
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1180
|
+
id: string;
|
|
1181
1181
|
userId: string;
|
|
1182
1182
|
company?: {
|
|
1183
|
-
id: string;
|
|
1184
1183
|
createdAt: string | Date;
|
|
1185
1184
|
updatedAt: string | Date;
|
|
1185
|
+
id: string;
|
|
1186
1186
|
name: string;
|
|
1187
1187
|
} | null | undefined;
|
|
1188
1188
|
client?: {
|
|
1189
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1190
|
-
id: string;
|
|
1191
1189
|
createdAt: string | Date;
|
|
1192
1190
|
updatedAt: string | Date;
|
|
1191
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1192
|
+
id: string;
|
|
1193
1193
|
name: string;
|
|
1194
1194
|
crn: string | null;
|
|
1195
1195
|
govLink: string;
|
|
@@ -1207,9 +1207,9 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1207
1207
|
} | null | undefined;
|
|
1208
1208
|
} | null | undefined;
|
|
1209
1209
|
user?: {
|
|
1210
|
-
id: string;
|
|
1211
1210
|
createdAt: string | Date;
|
|
1212
1211
|
updatedAt: string | Date;
|
|
1212
|
+
id: string;
|
|
1213
1213
|
firstName: string;
|
|
1214
1214
|
lastName: string;
|
|
1215
1215
|
email: string;
|
|
@@ -1219,22 +1219,22 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1219
1219
|
} | null | undefined;
|
|
1220
1220
|
}>>>;
|
|
1221
1221
|
}, "strip", z.ZodTypeAny, {
|
|
1222
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1223
|
-
id: string;
|
|
1224
1222
|
createdAt: string;
|
|
1225
1223
|
updatedAt: string;
|
|
1224
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1225
|
+
id: string;
|
|
1226
1226
|
userId: string;
|
|
1227
1227
|
company?: {
|
|
1228
|
-
id: string;
|
|
1229
1228
|
createdAt: string;
|
|
1230
1229
|
updatedAt: string;
|
|
1230
|
+
id: string;
|
|
1231
1231
|
name: string;
|
|
1232
1232
|
} | null | undefined;
|
|
1233
1233
|
client?: {
|
|
1234
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1235
|
-
id: string;
|
|
1236
1234
|
createdAt: string;
|
|
1237
1235
|
updatedAt: string;
|
|
1236
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1237
|
+
id: string;
|
|
1238
1238
|
name: string;
|
|
1239
1239
|
crn: string | null;
|
|
1240
1240
|
govLink: string;
|
|
@@ -1252,9 +1252,9 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1252
1252
|
} | null | undefined;
|
|
1253
1253
|
} | null | undefined;
|
|
1254
1254
|
user?: {
|
|
1255
|
-
id: string;
|
|
1256
1255
|
createdAt: string;
|
|
1257
1256
|
updatedAt: string;
|
|
1257
|
+
id: string;
|
|
1258
1258
|
firstName: string;
|
|
1259
1259
|
lastName: string;
|
|
1260
1260
|
email: string;
|
|
@@ -1263,22 +1263,22 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1263
1263
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1264
1264
|
} | null | undefined;
|
|
1265
1265
|
newCollaboration?: {
|
|
1266
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1267
|
-
id: string;
|
|
1268
1266
|
createdAt: string;
|
|
1269
1267
|
updatedAt: string;
|
|
1268
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1269
|
+
id: string;
|
|
1270
1270
|
userId: string;
|
|
1271
1271
|
company?: {
|
|
1272
|
-
id: string;
|
|
1273
1272
|
createdAt: string;
|
|
1274
1273
|
updatedAt: string;
|
|
1274
|
+
id: string;
|
|
1275
1275
|
name: string;
|
|
1276
1276
|
} | null | undefined;
|
|
1277
1277
|
client?: {
|
|
1278
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1279
|
-
id: string;
|
|
1280
1278
|
createdAt: string;
|
|
1281
1279
|
updatedAt: string;
|
|
1280
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1281
|
+
id: string;
|
|
1282
1282
|
name: string;
|
|
1283
1283
|
crn: string | null;
|
|
1284
1284
|
govLink: string;
|
|
@@ -1296,9 +1296,9 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1296
1296
|
} | null | undefined;
|
|
1297
1297
|
} | null | undefined;
|
|
1298
1298
|
user?: {
|
|
1299
|
-
id: string;
|
|
1300
1299
|
createdAt: string;
|
|
1301
1300
|
updatedAt: string;
|
|
1301
|
+
id: string;
|
|
1302
1302
|
firstName: string;
|
|
1303
1303
|
lastName: string;
|
|
1304
1304
|
email: string;
|
|
@@ -1308,22 +1308,22 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1308
1308
|
} | null | undefined;
|
|
1309
1309
|
} | null | undefined;
|
|
1310
1310
|
}, {
|
|
1311
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1312
|
-
id: string;
|
|
1313
1311
|
createdAt: string | Date;
|
|
1314
1312
|
updatedAt: string | Date;
|
|
1313
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1314
|
+
id: string;
|
|
1315
1315
|
userId: string;
|
|
1316
1316
|
company?: {
|
|
1317
|
-
id: string;
|
|
1318
1317
|
createdAt: string | Date;
|
|
1319
1318
|
updatedAt: string | Date;
|
|
1319
|
+
id: string;
|
|
1320
1320
|
name: string;
|
|
1321
1321
|
} | null | undefined;
|
|
1322
1322
|
client?: {
|
|
1323
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1324
|
-
id: string;
|
|
1325
1323
|
createdAt: string | Date;
|
|
1326
1324
|
updatedAt: string | Date;
|
|
1325
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1326
|
+
id: string;
|
|
1327
1327
|
name: string;
|
|
1328
1328
|
crn: string | null;
|
|
1329
1329
|
govLink: string;
|
|
@@ -1341,9 +1341,9 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1341
1341
|
} | null | undefined;
|
|
1342
1342
|
} | null | undefined;
|
|
1343
1343
|
user?: {
|
|
1344
|
-
id: string;
|
|
1345
1344
|
createdAt: string | Date;
|
|
1346
1345
|
updatedAt: string | Date;
|
|
1346
|
+
id: string;
|
|
1347
1347
|
firstName: string;
|
|
1348
1348
|
lastName: string;
|
|
1349
1349
|
email: string;
|
|
@@ -1352,22 +1352,22 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1352
1352
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1353
1353
|
} | null | undefined;
|
|
1354
1354
|
newCollaboration?: {
|
|
1355
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1356
|
-
id: string;
|
|
1357
1355
|
createdAt: string | Date;
|
|
1358
1356
|
updatedAt: string | Date;
|
|
1357
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1358
|
+
id: string;
|
|
1359
1359
|
userId: string;
|
|
1360
1360
|
company?: {
|
|
1361
|
-
id: string;
|
|
1362
1361
|
createdAt: string | Date;
|
|
1363
1362
|
updatedAt: string | Date;
|
|
1363
|
+
id: string;
|
|
1364
1364
|
name: string;
|
|
1365
1365
|
} | null | undefined;
|
|
1366
1366
|
client?: {
|
|
1367
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1368
|
-
id: string;
|
|
1369
1367
|
createdAt: string | Date;
|
|
1370
1368
|
updatedAt: string | Date;
|
|
1369
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1370
|
+
id: string;
|
|
1371
1371
|
name: string;
|
|
1372
1372
|
crn: string | null;
|
|
1373
1373
|
govLink: string;
|
|
@@ -1385,9 +1385,9 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1385
1385
|
} | null | undefined;
|
|
1386
1386
|
} | null | undefined;
|
|
1387
1387
|
user?: {
|
|
1388
|
-
id: string;
|
|
1389
1388
|
createdAt: string | Date;
|
|
1390
1389
|
updatedAt: string | Date;
|
|
1390
|
+
id: string;
|
|
1391
1391
|
firstName: string;
|
|
1392
1392
|
lastName: string;
|
|
1393
1393
|
email: string;
|
|
@@ -1413,35 +1413,35 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1413
1413
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1414
1414
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1415
1415
|
}, "strip", z.ZodTypeAny, {
|
|
1416
|
-
id: string;
|
|
1417
1416
|
createdAt: string;
|
|
1418
1417
|
updatedAt: string;
|
|
1419
|
-
|
|
1418
|
+
id: string;
|
|
1420
1419
|
email: string;
|
|
1420
|
+
collaborationId: string;
|
|
1421
1421
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
1422
|
-
decision: "
|
|
1422
|
+
decision: "REJECTED" | "APPROVED" | "PENDING";
|
|
1423
1423
|
isTermsAndConditionsConfirmed: boolean;
|
|
1424
1424
|
emailType: "INTRODUCTION" | "COLLABORATION" | "BOTH";
|
|
1425
1425
|
introductionEmailSent: boolean;
|
|
1426
1426
|
collaborationEmailSent: boolean;
|
|
1427
1427
|
clientContactId?: string | null | undefined;
|
|
1428
1428
|
collaboration?: {
|
|
1429
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1430
|
-
id: string;
|
|
1431
1429
|
createdAt: string;
|
|
1432
1430
|
updatedAt: string;
|
|
1431
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1432
|
+
id: string;
|
|
1433
1433
|
userId: string;
|
|
1434
1434
|
company?: {
|
|
1435
|
-
id: string;
|
|
1436
1435
|
createdAt: string;
|
|
1437
1436
|
updatedAt: string;
|
|
1437
|
+
id: string;
|
|
1438
1438
|
name: string;
|
|
1439
1439
|
} | null | undefined;
|
|
1440
1440
|
client?: {
|
|
1441
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1442
|
-
id: string;
|
|
1443
1441
|
createdAt: string;
|
|
1444
1442
|
updatedAt: string;
|
|
1443
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1444
|
+
id: string;
|
|
1445
1445
|
name: string;
|
|
1446
1446
|
crn: string | null;
|
|
1447
1447
|
govLink: string;
|
|
@@ -1459,9 +1459,9 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1459
1459
|
} | null | undefined;
|
|
1460
1460
|
} | null | undefined;
|
|
1461
1461
|
user?: {
|
|
1462
|
-
id: string;
|
|
1463
1462
|
createdAt: string;
|
|
1464
1463
|
updatedAt: string;
|
|
1464
|
+
id: string;
|
|
1465
1465
|
firstName: string;
|
|
1466
1466
|
lastName: string;
|
|
1467
1467
|
email: string;
|
|
@@ -1470,22 +1470,22 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1470
1470
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1471
1471
|
} | null | undefined;
|
|
1472
1472
|
newCollaboration?: {
|
|
1473
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1474
|
-
id: string;
|
|
1475
1473
|
createdAt: string;
|
|
1476
1474
|
updatedAt: string;
|
|
1475
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1476
|
+
id: string;
|
|
1477
1477
|
userId: string;
|
|
1478
1478
|
company?: {
|
|
1479
|
-
id: string;
|
|
1480
1479
|
createdAt: string;
|
|
1481
1480
|
updatedAt: string;
|
|
1481
|
+
id: string;
|
|
1482
1482
|
name: string;
|
|
1483
1483
|
} | null | undefined;
|
|
1484
1484
|
client?: {
|
|
1485
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1486
|
-
id: string;
|
|
1487
1485
|
createdAt: string;
|
|
1488
1486
|
updatedAt: string;
|
|
1487
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1488
|
+
id: string;
|
|
1489
1489
|
name: string;
|
|
1490
1490
|
crn: string | null;
|
|
1491
1491
|
govLink: string;
|
|
@@ -1503,9 +1503,9 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1503
1503
|
} | null | undefined;
|
|
1504
1504
|
} | null | undefined;
|
|
1505
1505
|
user?: {
|
|
1506
|
-
id: string;
|
|
1507
1506
|
createdAt: string;
|
|
1508
1507
|
updatedAt: string;
|
|
1508
|
+
id: string;
|
|
1509
1509
|
firstName: string;
|
|
1510
1510
|
lastName: string;
|
|
1511
1511
|
email: string;
|
|
@@ -1522,35 +1522,35 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1522
1522
|
collaborationEmailTimestamp?: string | null | undefined;
|
|
1523
1523
|
checkingComment?: string | null | undefined;
|
|
1524
1524
|
}, {
|
|
1525
|
-
id: string;
|
|
1526
1525
|
createdAt: string | Date;
|
|
1527
1526
|
updatedAt: string | Date;
|
|
1528
|
-
|
|
1527
|
+
id: string;
|
|
1529
1528
|
email: string;
|
|
1529
|
+
collaborationId: string;
|
|
1530
1530
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
1531
|
-
decision: "
|
|
1531
|
+
decision: "REJECTED" | "APPROVED" | "PENDING";
|
|
1532
1532
|
isTermsAndConditionsConfirmed: boolean;
|
|
1533
1533
|
emailType: "INTRODUCTION" | "COLLABORATION" | "BOTH";
|
|
1534
1534
|
introductionEmailSent: boolean;
|
|
1535
1535
|
collaborationEmailSent: boolean;
|
|
1536
1536
|
clientContactId?: string | null | undefined;
|
|
1537
1537
|
collaboration?: {
|
|
1538
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1539
|
-
id: string;
|
|
1540
1538
|
createdAt: string | Date;
|
|
1541
1539
|
updatedAt: string | Date;
|
|
1540
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1541
|
+
id: string;
|
|
1542
1542
|
userId: string;
|
|
1543
1543
|
company?: {
|
|
1544
|
-
id: string;
|
|
1545
1544
|
createdAt: string | Date;
|
|
1546
1545
|
updatedAt: string | Date;
|
|
1546
|
+
id: string;
|
|
1547
1547
|
name: string;
|
|
1548
1548
|
} | null | undefined;
|
|
1549
1549
|
client?: {
|
|
1550
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1551
|
-
id: string;
|
|
1552
1550
|
createdAt: string | Date;
|
|
1553
1551
|
updatedAt: string | Date;
|
|
1552
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1553
|
+
id: string;
|
|
1554
1554
|
name: string;
|
|
1555
1555
|
crn: string | null;
|
|
1556
1556
|
govLink: string;
|
|
@@ -1568,9 +1568,9 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1568
1568
|
} | null | undefined;
|
|
1569
1569
|
} | null | undefined;
|
|
1570
1570
|
user?: {
|
|
1571
|
-
id: string;
|
|
1572
1571
|
createdAt: string | Date;
|
|
1573
1572
|
updatedAt: string | Date;
|
|
1573
|
+
id: string;
|
|
1574
1574
|
firstName: string;
|
|
1575
1575
|
lastName: string;
|
|
1576
1576
|
email: string;
|
|
@@ -1579,22 +1579,22 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1579
1579
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1580
1580
|
} | null | undefined;
|
|
1581
1581
|
newCollaboration?: {
|
|
1582
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1583
|
-
id: string;
|
|
1584
1582
|
createdAt: string | Date;
|
|
1585
1583
|
updatedAt: string | Date;
|
|
1584
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1585
|
+
id: string;
|
|
1586
1586
|
userId: string;
|
|
1587
1587
|
company?: {
|
|
1588
|
-
id: string;
|
|
1589
1588
|
createdAt: string | Date;
|
|
1590
1589
|
updatedAt: string | Date;
|
|
1590
|
+
id: string;
|
|
1591
1591
|
name: string;
|
|
1592
1592
|
} | null | undefined;
|
|
1593
1593
|
client?: {
|
|
1594
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1595
|
-
id: string;
|
|
1596
1594
|
createdAt: string | Date;
|
|
1597
1595
|
updatedAt: string | Date;
|
|
1596
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1597
|
+
id: string;
|
|
1598
1598
|
name: string;
|
|
1599
1599
|
crn: string | null;
|
|
1600
1600
|
govLink: string;
|
|
@@ -1612,9 +1612,9 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1612
1612
|
} | null | undefined;
|
|
1613
1613
|
} | null | undefined;
|
|
1614
1614
|
user?: {
|
|
1615
|
-
id: string;
|
|
1616
1615
|
createdAt: string | Date;
|
|
1617
1616
|
updatedAt: string | Date;
|
|
1617
|
+
id: string;
|
|
1618
1618
|
firstName: string;
|
|
1619
1619
|
lastName: string;
|
|
1620
1620
|
email: string;
|
|
@@ -1639,35 +1639,35 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1639
1639
|
}, "strip", z.ZodTypeAny, {
|
|
1640
1640
|
limit: number;
|
|
1641
1641
|
items: {
|
|
1642
|
-
id: string;
|
|
1643
1642
|
createdAt: string;
|
|
1644
1643
|
updatedAt: string;
|
|
1645
|
-
|
|
1644
|
+
id: string;
|
|
1646
1645
|
email: string;
|
|
1646
|
+
collaborationId: string;
|
|
1647
1647
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
1648
|
-
decision: "
|
|
1648
|
+
decision: "REJECTED" | "APPROVED" | "PENDING";
|
|
1649
1649
|
isTermsAndConditionsConfirmed: boolean;
|
|
1650
1650
|
emailType: "INTRODUCTION" | "COLLABORATION" | "BOTH";
|
|
1651
1651
|
introductionEmailSent: boolean;
|
|
1652
1652
|
collaborationEmailSent: boolean;
|
|
1653
1653
|
clientContactId?: string | null | undefined;
|
|
1654
1654
|
collaboration?: {
|
|
1655
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1656
|
-
id: string;
|
|
1657
1655
|
createdAt: string;
|
|
1658
1656
|
updatedAt: string;
|
|
1657
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1658
|
+
id: string;
|
|
1659
1659
|
userId: string;
|
|
1660
1660
|
company?: {
|
|
1661
|
-
id: string;
|
|
1662
1661
|
createdAt: string;
|
|
1663
1662
|
updatedAt: string;
|
|
1663
|
+
id: string;
|
|
1664
1664
|
name: string;
|
|
1665
1665
|
} | null | undefined;
|
|
1666
1666
|
client?: {
|
|
1667
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1668
|
-
id: string;
|
|
1669
1667
|
createdAt: string;
|
|
1670
1668
|
updatedAt: string;
|
|
1669
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1670
|
+
id: string;
|
|
1671
1671
|
name: string;
|
|
1672
1672
|
crn: string | null;
|
|
1673
1673
|
govLink: string;
|
|
@@ -1685,9 +1685,9 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1685
1685
|
} | null | undefined;
|
|
1686
1686
|
} | null | undefined;
|
|
1687
1687
|
user?: {
|
|
1688
|
-
id: string;
|
|
1689
1688
|
createdAt: string;
|
|
1690
1689
|
updatedAt: string;
|
|
1690
|
+
id: string;
|
|
1691
1691
|
firstName: string;
|
|
1692
1692
|
lastName: string;
|
|
1693
1693
|
email: string;
|
|
@@ -1696,22 +1696,22 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1696
1696
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1697
1697
|
} | null | undefined;
|
|
1698
1698
|
newCollaboration?: {
|
|
1699
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1700
|
-
id: string;
|
|
1701
1699
|
createdAt: string;
|
|
1702
1700
|
updatedAt: string;
|
|
1701
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1702
|
+
id: string;
|
|
1703
1703
|
userId: string;
|
|
1704
1704
|
company?: {
|
|
1705
|
-
id: string;
|
|
1706
1705
|
createdAt: string;
|
|
1707
1706
|
updatedAt: string;
|
|
1707
|
+
id: string;
|
|
1708
1708
|
name: string;
|
|
1709
1709
|
} | null | undefined;
|
|
1710
1710
|
client?: {
|
|
1711
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1712
|
-
id: string;
|
|
1713
1711
|
createdAt: string;
|
|
1714
1712
|
updatedAt: string;
|
|
1713
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1714
|
+
id: string;
|
|
1715
1715
|
name: string;
|
|
1716
1716
|
crn: string | null;
|
|
1717
1717
|
govLink: string;
|
|
@@ -1729,9 +1729,9 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1729
1729
|
} | null | undefined;
|
|
1730
1730
|
} | null | undefined;
|
|
1731
1731
|
user?: {
|
|
1732
|
-
id: string;
|
|
1733
1732
|
createdAt: string;
|
|
1734
1733
|
updatedAt: string;
|
|
1734
|
+
id: string;
|
|
1735
1735
|
firstName: string;
|
|
1736
1736
|
lastName: string;
|
|
1737
1737
|
email: string;
|
|
@@ -1755,35 +1755,35 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1755
1755
|
}, {
|
|
1756
1756
|
limit: number;
|
|
1757
1757
|
items: {
|
|
1758
|
-
id: string;
|
|
1759
1758
|
createdAt: string | Date;
|
|
1760
1759
|
updatedAt: string | Date;
|
|
1761
|
-
|
|
1760
|
+
id: string;
|
|
1762
1761
|
email: string;
|
|
1762
|
+
collaborationId: string;
|
|
1763
1763
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
1764
|
-
decision: "
|
|
1764
|
+
decision: "REJECTED" | "APPROVED" | "PENDING";
|
|
1765
1765
|
isTermsAndConditionsConfirmed: boolean;
|
|
1766
1766
|
emailType: "INTRODUCTION" | "COLLABORATION" | "BOTH";
|
|
1767
1767
|
introductionEmailSent: boolean;
|
|
1768
1768
|
collaborationEmailSent: boolean;
|
|
1769
1769
|
clientContactId?: string | null | undefined;
|
|
1770
1770
|
collaboration?: {
|
|
1771
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1772
|
-
id: string;
|
|
1773
1771
|
createdAt: string | Date;
|
|
1774
1772
|
updatedAt: string | Date;
|
|
1773
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1774
|
+
id: string;
|
|
1775
1775
|
userId: string;
|
|
1776
1776
|
company?: {
|
|
1777
|
-
id: string;
|
|
1778
1777
|
createdAt: string | Date;
|
|
1779
1778
|
updatedAt: string | Date;
|
|
1779
|
+
id: string;
|
|
1780
1780
|
name: string;
|
|
1781
1781
|
} | null | undefined;
|
|
1782
1782
|
client?: {
|
|
1783
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1784
|
-
id: string;
|
|
1785
1783
|
createdAt: string | Date;
|
|
1786
1784
|
updatedAt: string | Date;
|
|
1785
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1786
|
+
id: string;
|
|
1787
1787
|
name: string;
|
|
1788
1788
|
crn: string | null;
|
|
1789
1789
|
govLink: string;
|
|
@@ -1801,9 +1801,9 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1801
1801
|
} | null | undefined;
|
|
1802
1802
|
} | null | undefined;
|
|
1803
1803
|
user?: {
|
|
1804
|
-
id: string;
|
|
1805
1804
|
createdAt: string | Date;
|
|
1806
1805
|
updatedAt: string | Date;
|
|
1806
|
+
id: string;
|
|
1807
1807
|
firstName: string;
|
|
1808
1808
|
lastName: string;
|
|
1809
1809
|
email: string;
|
|
@@ -1812,22 +1812,22 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
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
|
} | null | undefined;
|
|
1814
1814
|
newCollaboration?: {
|
|
1815
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1816
|
-
id: string;
|
|
1817
1815
|
createdAt: string | Date;
|
|
1818
1816
|
updatedAt: string | Date;
|
|
1817
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1818
|
+
id: string;
|
|
1819
1819
|
userId: string;
|
|
1820
1820
|
company?: {
|
|
1821
|
-
id: string;
|
|
1822
1821
|
createdAt: string | Date;
|
|
1823
1822
|
updatedAt: string | Date;
|
|
1823
|
+
id: string;
|
|
1824
1824
|
name: string;
|
|
1825
1825
|
} | null | undefined;
|
|
1826
1826
|
client?: {
|
|
1827
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1828
|
-
id: string;
|
|
1829
1827
|
createdAt: string | Date;
|
|
1830
1828
|
updatedAt: string | Date;
|
|
1829
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1830
|
+
id: string;
|
|
1831
1831
|
name: string;
|
|
1832
1832
|
crn: string | null;
|
|
1833
1833
|
govLink: string;
|
|
@@ -1845,9 +1845,9 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
1845
1845
|
} | null | undefined;
|
|
1846
1846
|
} | null | undefined;
|
|
1847
1847
|
user?: {
|
|
1848
|
-
id: string;
|
|
1849
1848
|
createdAt: string | Date;
|
|
1850
1849
|
updatedAt: string | Date;
|
|
1850
|
+
id: string;
|
|
1851
1851
|
firstName: string;
|
|
1852
1852
|
lastName: string;
|
|
1853
1853
|
email: string;
|
|
@@ -2037,14 +2037,14 @@ export declare const collaborationCheckingsContract: {
|
|
|
2037
2037
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2038
2038
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2039
2039
|
}, "strip", z.ZodTypeAny, {
|
|
2040
|
-
id: string;
|
|
2041
2040
|
createdAt: string;
|
|
2042
2041
|
updatedAt: string;
|
|
2042
|
+
id: string;
|
|
2043
2043
|
name: string;
|
|
2044
2044
|
}, {
|
|
2045
|
-
id: string;
|
|
2046
2045
|
createdAt: string | Date;
|
|
2047
2046
|
updatedAt: string | Date;
|
|
2047
|
+
id: string;
|
|
2048
2048
|
name: string;
|
|
2049
2049
|
}>>>;
|
|
2050
2050
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -2082,10 +2082,10 @@ export declare const collaborationCheckingsContract: {
|
|
|
2082
2082
|
agentId: string;
|
|
2083
2083
|
}>>>;
|
|
2084
2084
|
}, "strip", z.ZodTypeAny, {
|
|
2085
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2086
|
-
id: string;
|
|
2087
2085
|
createdAt: string;
|
|
2088
2086
|
updatedAt: string;
|
|
2087
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2088
|
+
id: string;
|
|
2089
2089
|
name: string;
|
|
2090
2090
|
crn: string | null;
|
|
2091
2091
|
govLink: string;
|
|
@@ -2102,10 +2102,10 @@ export declare const collaborationCheckingsContract: {
|
|
|
2102
2102
|
agentId: string;
|
|
2103
2103
|
} | null | undefined;
|
|
2104
2104
|
}, {
|
|
2105
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2106
|
-
id: string;
|
|
2107
2105
|
createdAt: string | Date;
|
|
2108
2106
|
updatedAt: string | Date;
|
|
2107
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2108
|
+
id: string;
|
|
2109
2109
|
name: string;
|
|
2110
2110
|
crn: string | null;
|
|
2111
2111
|
govLink: string;
|
|
@@ -2127,15 +2127,15 @@ export declare const collaborationCheckingsContract: {
|
|
|
2127
2127
|
firstName: z.ZodString;
|
|
2128
2128
|
lastName: z.ZodString;
|
|
2129
2129
|
email: z.ZodString;
|
|
2130
|
-
phone: z.
|
|
2130
|
+
phone: z.ZodString;
|
|
2131
2131
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
2132
2132
|
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"]>>>;
|
|
2133
2133
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2134
2134
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2135
2135
|
}, "strip", z.ZodTypeAny, {
|
|
2136
|
-
id: string;
|
|
2137
2136
|
createdAt: string;
|
|
2138
2137
|
updatedAt: string;
|
|
2138
|
+
id: string;
|
|
2139
2139
|
firstName: string;
|
|
2140
2140
|
lastName: string;
|
|
2141
2141
|
email: string;
|
|
@@ -2143,9 +2143,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
2143
2143
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2144
2144
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2145
2145
|
}, {
|
|
2146
|
-
id: string;
|
|
2147
2146
|
createdAt: string | Date;
|
|
2148
2147
|
updatedAt: string | Date;
|
|
2148
|
+
id: string;
|
|
2149
2149
|
firstName: string;
|
|
2150
2150
|
lastName: string;
|
|
2151
2151
|
email: string;
|
|
@@ -2153,7 +2153,7 @@ export declare const collaborationCheckingsContract: {
|
|
|
2153
2153
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2154
2154
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2155
2155
|
}>>>;
|
|
2156
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
2156
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
2157
2157
|
userId: z.ZodString;
|
|
2158
2158
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2159
2159
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -2166,14 +2166,14 @@ export declare const collaborationCheckingsContract: {
|
|
|
2166
2166
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2167
2167
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2168
2168
|
}, "strip", z.ZodTypeAny, {
|
|
2169
|
-
id: string;
|
|
2170
2169
|
createdAt: string;
|
|
2171
2170
|
updatedAt: string;
|
|
2171
|
+
id: string;
|
|
2172
2172
|
name: string;
|
|
2173
2173
|
}, {
|
|
2174
|
-
id: string;
|
|
2175
2174
|
createdAt: string | Date;
|
|
2176
2175
|
updatedAt: string | Date;
|
|
2176
|
+
id: string;
|
|
2177
2177
|
name: string;
|
|
2178
2178
|
}>>>;
|
|
2179
2179
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -2211,10 +2211,10 @@ export declare const collaborationCheckingsContract: {
|
|
|
2211
2211
|
agentId: string;
|
|
2212
2212
|
}>>>;
|
|
2213
2213
|
}, "strip", z.ZodTypeAny, {
|
|
2214
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2215
|
-
id: string;
|
|
2216
2214
|
createdAt: string;
|
|
2217
2215
|
updatedAt: string;
|
|
2216
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2217
|
+
id: string;
|
|
2218
2218
|
name: string;
|
|
2219
2219
|
crn: string | null;
|
|
2220
2220
|
govLink: string;
|
|
@@ -2231,10 +2231,10 @@ export declare const collaborationCheckingsContract: {
|
|
|
2231
2231
|
agentId: string;
|
|
2232
2232
|
} | null | undefined;
|
|
2233
2233
|
}, {
|
|
2234
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2235
|
-
id: string;
|
|
2236
2234
|
createdAt: string | Date;
|
|
2237
2235
|
updatedAt: string | Date;
|
|
2236
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2237
|
+
id: string;
|
|
2238
2238
|
name: string;
|
|
2239
2239
|
crn: string | null;
|
|
2240
2240
|
govLink: string;
|
|
@@ -2256,15 +2256,15 @@ export declare const collaborationCheckingsContract: {
|
|
|
2256
2256
|
firstName: z.ZodString;
|
|
2257
2257
|
lastName: z.ZodString;
|
|
2258
2258
|
email: z.ZodString;
|
|
2259
|
-
phone: z.
|
|
2259
|
+
phone: z.ZodString;
|
|
2260
2260
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
2261
2261
|
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"]>>>;
|
|
2262
2262
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2263
2263
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2264
2264
|
}, "strip", z.ZodTypeAny, {
|
|
2265
|
-
id: string;
|
|
2266
2265
|
createdAt: string;
|
|
2267
2266
|
updatedAt: string;
|
|
2267
|
+
id: string;
|
|
2268
2268
|
firstName: string;
|
|
2269
2269
|
lastName: string;
|
|
2270
2270
|
email: string;
|
|
@@ -2272,9 +2272,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
2272
2272
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2273
2273
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2274
2274
|
}, {
|
|
2275
|
-
id: string;
|
|
2276
2275
|
createdAt: string | Date;
|
|
2277
2276
|
updatedAt: string | Date;
|
|
2277
|
+
id: string;
|
|
2278
2278
|
firstName: string;
|
|
2279
2279
|
lastName: string;
|
|
2280
2280
|
email: string;
|
|
@@ -2282,27 +2282,27 @@ export declare const collaborationCheckingsContract: {
|
|
|
2282
2282
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2283
2283
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2284
2284
|
}>>>;
|
|
2285
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
2285
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
2286
2286
|
userId: z.ZodString;
|
|
2287
2287
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2288
2288
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2289
2289
|
}, "strip", z.ZodTypeAny, {
|
|
2290
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2291
|
-
id: string;
|
|
2292
2290
|
createdAt: string;
|
|
2293
2291
|
updatedAt: string;
|
|
2292
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2293
|
+
id: string;
|
|
2294
2294
|
userId: string;
|
|
2295
2295
|
company?: {
|
|
2296
|
-
id: string;
|
|
2297
2296
|
createdAt: string;
|
|
2298
2297
|
updatedAt: string;
|
|
2298
|
+
id: string;
|
|
2299
2299
|
name: string;
|
|
2300
2300
|
} | null | undefined;
|
|
2301
2301
|
client?: {
|
|
2302
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2303
|
-
id: string;
|
|
2304
2302
|
createdAt: string;
|
|
2305
2303
|
updatedAt: string;
|
|
2304
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2305
|
+
id: string;
|
|
2306
2306
|
name: string;
|
|
2307
2307
|
crn: string | null;
|
|
2308
2308
|
govLink: string;
|
|
@@ -2320,9 +2320,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
2320
2320
|
} | null | undefined;
|
|
2321
2321
|
} | null | undefined;
|
|
2322
2322
|
user?: {
|
|
2323
|
-
id: string;
|
|
2324
2323
|
createdAt: string;
|
|
2325
2324
|
updatedAt: string;
|
|
2325
|
+
id: string;
|
|
2326
2326
|
firstName: string;
|
|
2327
2327
|
lastName: string;
|
|
2328
2328
|
email: string;
|
|
@@ -2331,22 +2331,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
2331
2331
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2332
2332
|
} | null | undefined;
|
|
2333
2333
|
}, {
|
|
2334
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2335
|
-
id: string;
|
|
2336
2334
|
createdAt: string | Date;
|
|
2337
2335
|
updatedAt: string | Date;
|
|
2336
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2337
|
+
id: string;
|
|
2338
2338
|
userId: string;
|
|
2339
2339
|
company?: {
|
|
2340
|
-
id: string;
|
|
2341
2340
|
createdAt: string | Date;
|
|
2342
2341
|
updatedAt: string | Date;
|
|
2342
|
+
id: string;
|
|
2343
2343
|
name: string;
|
|
2344
2344
|
} | null | undefined;
|
|
2345
2345
|
client?: {
|
|
2346
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2347
|
-
id: string;
|
|
2348
2346
|
createdAt: string | Date;
|
|
2349
2347
|
updatedAt: string | Date;
|
|
2348
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2349
|
+
id: string;
|
|
2350
2350
|
name: string;
|
|
2351
2351
|
crn: string | null;
|
|
2352
2352
|
govLink: string;
|
|
@@ -2364,9 +2364,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
2364
2364
|
} | null | undefined;
|
|
2365
2365
|
} | null | undefined;
|
|
2366
2366
|
user?: {
|
|
2367
|
-
id: string;
|
|
2368
2367
|
createdAt: string | Date;
|
|
2369
2368
|
updatedAt: string | Date;
|
|
2369
|
+
id: string;
|
|
2370
2370
|
firstName: string;
|
|
2371
2371
|
lastName: string;
|
|
2372
2372
|
email: string;
|
|
@@ -2376,22 +2376,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
2376
2376
|
} | null | undefined;
|
|
2377
2377
|
}>>>;
|
|
2378
2378
|
}, "strip", z.ZodTypeAny, {
|
|
2379
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2380
|
-
id: string;
|
|
2381
2379
|
createdAt: string;
|
|
2382
2380
|
updatedAt: string;
|
|
2381
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2382
|
+
id: string;
|
|
2383
2383
|
userId: string;
|
|
2384
2384
|
company?: {
|
|
2385
|
-
id: string;
|
|
2386
2385
|
createdAt: string;
|
|
2387
2386
|
updatedAt: string;
|
|
2387
|
+
id: string;
|
|
2388
2388
|
name: string;
|
|
2389
2389
|
} | null | undefined;
|
|
2390
2390
|
client?: {
|
|
2391
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2392
|
-
id: string;
|
|
2393
2391
|
createdAt: string;
|
|
2394
2392
|
updatedAt: string;
|
|
2393
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2394
|
+
id: string;
|
|
2395
2395
|
name: string;
|
|
2396
2396
|
crn: string | null;
|
|
2397
2397
|
govLink: string;
|
|
@@ -2409,9 +2409,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
2409
2409
|
} | null | undefined;
|
|
2410
2410
|
} | null | undefined;
|
|
2411
2411
|
user?: {
|
|
2412
|
-
id: string;
|
|
2413
2412
|
createdAt: string;
|
|
2414
2413
|
updatedAt: string;
|
|
2414
|
+
id: string;
|
|
2415
2415
|
firstName: string;
|
|
2416
2416
|
lastName: string;
|
|
2417
2417
|
email: string;
|
|
@@ -2420,22 +2420,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
2420
2420
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2421
2421
|
} | null | undefined;
|
|
2422
2422
|
newCollaboration?: {
|
|
2423
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2424
|
-
id: string;
|
|
2425
2423
|
createdAt: string;
|
|
2426
2424
|
updatedAt: string;
|
|
2425
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2426
|
+
id: string;
|
|
2427
2427
|
userId: string;
|
|
2428
2428
|
company?: {
|
|
2429
|
-
id: string;
|
|
2430
2429
|
createdAt: string;
|
|
2431
2430
|
updatedAt: string;
|
|
2431
|
+
id: string;
|
|
2432
2432
|
name: string;
|
|
2433
2433
|
} | null | undefined;
|
|
2434
2434
|
client?: {
|
|
2435
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2436
|
-
id: string;
|
|
2437
2435
|
createdAt: string;
|
|
2438
2436
|
updatedAt: string;
|
|
2437
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2438
|
+
id: string;
|
|
2439
2439
|
name: string;
|
|
2440
2440
|
crn: string | null;
|
|
2441
2441
|
govLink: string;
|
|
@@ -2453,9 +2453,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
2453
2453
|
} | null | undefined;
|
|
2454
2454
|
} | null | undefined;
|
|
2455
2455
|
user?: {
|
|
2456
|
-
id: string;
|
|
2457
2456
|
createdAt: string;
|
|
2458
2457
|
updatedAt: string;
|
|
2458
|
+
id: string;
|
|
2459
2459
|
firstName: string;
|
|
2460
2460
|
lastName: string;
|
|
2461
2461
|
email: string;
|
|
@@ -2465,22 +2465,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
2465
2465
|
} | null | undefined;
|
|
2466
2466
|
} | null | undefined;
|
|
2467
2467
|
}, {
|
|
2468
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2469
|
-
id: string;
|
|
2470
2468
|
createdAt: string | Date;
|
|
2471
2469
|
updatedAt: string | Date;
|
|
2470
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2471
|
+
id: string;
|
|
2472
2472
|
userId: string;
|
|
2473
2473
|
company?: {
|
|
2474
|
-
id: string;
|
|
2475
2474
|
createdAt: string | Date;
|
|
2476
2475
|
updatedAt: string | Date;
|
|
2476
|
+
id: string;
|
|
2477
2477
|
name: string;
|
|
2478
2478
|
} | null | undefined;
|
|
2479
2479
|
client?: {
|
|
2480
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2481
|
-
id: string;
|
|
2482
2480
|
createdAt: string | Date;
|
|
2483
2481
|
updatedAt: string | Date;
|
|
2482
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2483
|
+
id: string;
|
|
2484
2484
|
name: string;
|
|
2485
2485
|
crn: string | null;
|
|
2486
2486
|
govLink: string;
|
|
@@ -2498,9 +2498,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
2498
2498
|
} | null | undefined;
|
|
2499
2499
|
} | null | undefined;
|
|
2500
2500
|
user?: {
|
|
2501
|
-
id: string;
|
|
2502
2501
|
createdAt: string | Date;
|
|
2503
2502
|
updatedAt: string | Date;
|
|
2503
|
+
id: string;
|
|
2504
2504
|
firstName: string;
|
|
2505
2505
|
lastName: string;
|
|
2506
2506
|
email: string;
|
|
@@ -2509,22 +2509,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
2509
2509
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2510
2510
|
} | null | undefined;
|
|
2511
2511
|
newCollaboration?: {
|
|
2512
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2513
|
-
id: string;
|
|
2514
2512
|
createdAt: string | Date;
|
|
2515
2513
|
updatedAt: string | Date;
|
|
2514
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2515
|
+
id: string;
|
|
2516
2516
|
userId: string;
|
|
2517
2517
|
company?: {
|
|
2518
|
-
id: string;
|
|
2519
2518
|
createdAt: string | Date;
|
|
2520
2519
|
updatedAt: string | Date;
|
|
2520
|
+
id: string;
|
|
2521
2521
|
name: string;
|
|
2522
2522
|
} | null | undefined;
|
|
2523
2523
|
client?: {
|
|
2524
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2525
|
-
id: string;
|
|
2526
2524
|
createdAt: string | Date;
|
|
2527
2525
|
updatedAt: string | Date;
|
|
2526
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2527
|
+
id: string;
|
|
2528
2528
|
name: string;
|
|
2529
2529
|
crn: string | null;
|
|
2530
2530
|
govLink: string;
|
|
@@ -2542,9 +2542,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
2542
2542
|
} | null | undefined;
|
|
2543
2543
|
} | null | undefined;
|
|
2544
2544
|
user?: {
|
|
2545
|
-
id: string;
|
|
2546
2545
|
createdAt: string | Date;
|
|
2547
2546
|
updatedAt: string | Date;
|
|
2547
|
+
id: string;
|
|
2548
2548
|
firstName: string;
|
|
2549
2549
|
lastName: string;
|
|
2550
2550
|
email: string;
|
|
@@ -2570,35 +2570,35 @@ export declare const collaborationCheckingsContract: {
|
|
|
2570
2570
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2571
2571
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2572
2572
|
}, "strip", z.ZodTypeAny, {
|
|
2573
|
-
id: string;
|
|
2574
2573
|
createdAt: string;
|
|
2575
2574
|
updatedAt: string;
|
|
2576
|
-
|
|
2575
|
+
id: string;
|
|
2577
2576
|
email: string;
|
|
2577
|
+
collaborationId: string;
|
|
2578
2578
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
2579
|
-
decision: "
|
|
2579
|
+
decision: "REJECTED" | "APPROVED" | "PENDING";
|
|
2580
2580
|
isTermsAndConditionsConfirmed: boolean;
|
|
2581
2581
|
emailType: "INTRODUCTION" | "COLLABORATION" | "BOTH";
|
|
2582
2582
|
introductionEmailSent: boolean;
|
|
2583
2583
|
collaborationEmailSent: boolean;
|
|
2584
2584
|
clientContactId?: string | null | undefined;
|
|
2585
2585
|
collaboration?: {
|
|
2586
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2587
|
-
id: string;
|
|
2588
2586
|
createdAt: string;
|
|
2589
2587
|
updatedAt: string;
|
|
2588
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2589
|
+
id: string;
|
|
2590
2590
|
userId: string;
|
|
2591
2591
|
company?: {
|
|
2592
|
-
id: string;
|
|
2593
2592
|
createdAt: string;
|
|
2594
2593
|
updatedAt: string;
|
|
2594
|
+
id: string;
|
|
2595
2595
|
name: string;
|
|
2596
2596
|
} | null | undefined;
|
|
2597
2597
|
client?: {
|
|
2598
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2599
|
-
id: string;
|
|
2600
2598
|
createdAt: string;
|
|
2601
2599
|
updatedAt: string;
|
|
2600
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2601
|
+
id: string;
|
|
2602
2602
|
name: string;
|
|
2603
2603
|
crn: string | null;
|
|
2604
2604
|
govLink: string;
|
|
@@ -2616,9 +2616,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
2616
2616
|
} | null | undefined;
|
|
2617
2617
|
} | null | undefined;
|
|
2618
2618
|
user?: {
|
|
2619
|
-
id: string;
|
|
2620
2619
|
createdAt: string;
|
|
2621
2620
|
updatedAt: string;
|
|
2621
|
+
id: string;
|
|
2622
2622
|
firstName: string;
|
|
2623
2623
|
lastName: string;
|
|
2624
2624
|
email: string;
|
|
@@ -2627,22 +2627,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
2627
2627
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2628
2628
|
} | null | undefined;
|
|
2629
2629
|
newCollaboration?: {
|
|
2630
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2631
|
-
id: string;
|
|
2632
2630
|
createdAt: string;
|
|
2633
2631
|
updatedAt: string;
|
|
2632
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2633
|
+
id: string;
|
|
2634
2634
|
userId: string;
|
|
2635
2635
|
company?: {
|
|
2636
|
-
id: string;
|
|
2637
2636
|
createdAt: string;
|
|
2638
2637
|
updatedAt: string;
|
|
2638
|
+
id: string;
|
|
2639
2639
|
name: string;
|
|
2640
2640
|
} | null | undefined;
|
|
2641
2641
|
client?: {
|
|
2642
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2643
|
-
id: string;
|
|
2644
2642
|
createdAt: string;
|
|
2645
2643
|
updatedAt: string;
|
|
2644
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2645
|
+
id: string;
|
|
2646
2646
|
name: string;
|
|
2647
2647
|
crn: string | null;
|
|
2648
2648
|
govLink: string;
|
|
@@ -2660,9 +2660,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
2660
2660
|
} | null | undefined;
|
|
2661
2661
|
} | null | undefined;
|
|
2662
2662
|
user?: {
|
|
2663
|
-
id: string;
|
|
2664
2663
|
createdAt: string;
|
|
2665
2664
|
updatedAt: string;
|
|
2665
|
+
id: string;
|
|
2666
2666
|
firstName: string;
|
|
2667
2667
|
lastName: string;
|
|
2668
2668
|
email: string;
|
|
@@ -2679,35 +2679,35 @@ export declare const collaborationCheckingsContract: {
|
|
|
2679
2679
|
collaborationEmailTimestamp?: string | null | undefined;
|
|
2680
2680
|
checkingComment?: string | null | undefined;
|
|
2681
2681
|
}, {
|
|
2682
|
-
id: string;
|
|
2683
2682
|
createdAt: string | Date;
|
|
2684
2683
|
updatedAt: string | Date;
|
|
2685
|
-
|
|
2684
|
+
id: string;
|
|
2686
2685
|
email: string;
|
|
2686
|
+
collaborationId: string;
|
|
2687
2687
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
2688
|
-
decision: "
|
|
2688
|
+
decision: "REJECTED" | "APPROVED" | "PENDING";
|
|
2689
2689
|
isTermsAndConditionsConfirmed: boolean;
|
|
2690
2690
|
emailType: "INTRODUCTION" | "COLLABORATION" | "BOTH";
|
|
2691
2691
|
introductionEmailSent: boolean;
|
|
2692
2692
|
collaborationEmailSent: boolean;
|
|
2693
2693
|
clientContactId?: string | null | undefined;
|
|
2694
2694
|
collaboration?: {
|
|
2695
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2696
|
-
id: string;
|
|
2697
2695
|
createdAt: string | Date;
|
|
2698
2696
|
updatedAt: string | Date;
|
|
2697
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2698
|
+
id: string;
|
|
2699
2699
|
userId: string;
|
|
2700
2700
|
company?: {
|
|
2701
|
-
id: string;
|
|
2702
2701
|
createdAt: string | Date;
|
|
2703
2702
|
updatedAt: string | Date;
|
|
2703
|
+
id: string;
|
|
2704
2704
|
name: string;
|
|
2705
2705
|
} | null | undefined;
|
|
2706
2706
|
client?: {
|
|
2707
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2708
|
-
id: string;
|
|
2709
2707
|
createdAt: string | Date;
|
|
2710
2708
|
updatedAt: string | Date;
|
|
2709
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2710
|
+
id: string;
|
|
2711
2711
|
name: string;
|
|
2712
2712
|
crn: string | null;
|
|
2713
2713
|
govLink: string;
|
|
@@ -2725,9 +2725,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
2725
2725
|
} | null | undefined;
|
|
2726
2726
|
} | null | undefined;
|
|
2727
2727
|
user?: {
|
|
2728
|
-
id: string;
|
|
2729
2728
|
createdAt: string | Date;
|
|
2730
2729
|
updatedAt: string | Date;
|
|
2730
|
+
id: string;
|
|
2731
2731
|
firstName: string;
|
|
2732
2732
|
lastName: string;
|
|
2733
2733
|
email: string;
|
|
@@ -2736,22 +2736,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
2736
2736
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2737
2737
|
} | null | undefined;
|
|
2738
2738
|
newCollaboration?: {
|
|
2739
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2740
|
-
id: string;
|
|
2741
2739
|
createdAt: string | Date;
|
|
2742
2740
|
updatedAt: string | Date;
|
|
2741
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2742
|
+
id: string;
|
|
2743
2743
|
userId: string;
|
|
2744
2744
|
company?: {
|
|
2745
|
-
id: string;
|
|
2746
2745
|
createdAt: string | Date;
|
|
2747
2746
|
updatedAt: string | Date;
|
|
2747
|
+
id: string;
|
|
2748
2748
|
name: string;
|
|
2749
2749
|
} | null | undefined;
|
|
2750
2750
|
client?: {
|
|
2751
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2752
|
-
id: string;
|
|
2753
2751
|
createdAt: string | Date;
|
|
2754
2752
|
updatedAt: string | Date;
|
|
2753
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2754
|
+
id: string;
|
|
2755
2755
|
name: string;
|
|
2756
2756
|
crn: string | null;
|
|
2757
2757
|
govLink: string;
|
|
@@ -2769,9 +2769,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
2769
2769
|
} | null | undefined;
|
|
2770
2770
|
} | null | undefined;
|
|
2771
2771
|
user?: {
|
|
2772
|
-
id: string;
|
|
2773
2772
|
createdAt: string | Date;
|
|
2774
2773
|
updatedAt: string | Date;
|
|
2774
|
+
id: string;
|
|
2775
2775
|
firstName: string;
|
|
2776
2776
|
lastName: string;
|
|
2777
2777
|
email: string;
|
|
@@ -2816,6 +2816,12 @@ export declare const collaborationCheckingsContract: {
|
|
|
2816
2816
|
};
|
|
2817
2817
|
};
|
|
2818
2818
|
findAll: {
|
|
2819
|
+
metadata: {
|
|
2820
|
+
tags: string[];
|
|
2821
|
+
openApi: {
|
|
2822
|
+
operationId: string;
|
|
2823
|
+
};
|
|
2824
|
+
};
|
|
2819
2825
|
query: z.ZodObject<{
|
|
2820
2826
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
2821
2827
|
page: z.ZodDefault<z.ZodNumber>;
|
|
@@ -2832,28 +2838,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
2832
2838
|
page: number;
|
|
2833
2839
|
sortBy: "createdAt" | "updatedAt" | "urgency" | "decision" | "decisionTimestamp";
|
|
2834
2840
|
sortOrder: "ASC" | "DESC";
|
|
2835
|
-
urgency?: "LOW" | "MEDIUM" | "HIGH" | undefined;
|
|
2836
|
-
decision?: "APPROVED" | "REJECTED" | "PENDING" | undefined;
|
|
2837
2841
|
companyId?: string | undefined;
|
|
2838
2842
|
clientId?: string | undefined;
|
|
2843
|
+
urgency?: "LOW" | "MEDIUM" | "HIGH" | undefined;
|
|
2844
|
+
decision?: "REJECTED" | "APPROVED" | "PENDING" | undefined;
|
|
2839
2845
|
createdById?: string | undefined;
|
|
2840
2846
|
}, {
|
|
2841
2847
|
limit?: number | undefined;
|
|
2842
2848
|
page?: number | undefined;
|
|
2849
|
+
companyId?: string | undefined;
|
|
2850
|
+
clientId?: string | undefined;
|
|
2843
2851
|
sortBy?: "createdAt" | "updatedAt" | "urgency" | "decision" | "decisionTimestamp" | undefined;
|
|
2844
2852
|
sortOrder?: "ASC" | "DESC" | undefined;
|
|
2845
2853
|
urgency?: "LOW" | "MEDIUM" | "HIGH" | undefined;
|
|
2846
|
-
decision?: "
|
|
2847
|
-
companyId?: string | undefined;
|
|
2848
|
-
clientId?: string | undefined;
|
|
2854
|
+
decision?: "REJECTED" | "APPROVED" | "PENDING" | undefined;
|
|
2849
2855
|
createdById?: string | undefined;
|
|
2850
2856
|
}>;
|
|
2851
|
-
metadata: {
|
|
2852
|
-
tags: string[];
|
|
2853
|
-
openApi: {
|
|
2854
|
-
operationId: string;
|
|
2855
|
-
};
|
|
2856
|
-
};
|
|
2857
2857
|
summary: "Get all collaboration checkings";
|
|
2858
2858
|
method: "GET";
|
|
2859
2859
|
path: "/v2/collaboration-checkings";
|
|
@@ -2971,14 +2971,14 @@ export declare const collaborationCheckingsContract: {
|
|
|
2971
2971
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2972
2972
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2973
2973
|
}, "strip", z.ZodTypeAny, {
|
|
2974
|
-
id: string;
|
|
2975
2974
|
createdAt: string;
|
|
2976
2975
|
updatedAt: string;
|
|
2976
|
+
id: string;
|
|
2977
2977
|
name: string;
|
|
2978
2978
|
}, {
|
|
2979
|
-
id: string;
|
|
2980
2979
|
createdAt: string | Date;
|
|
2981
2980
|
updatedAt: string | Date;
|
|
2981
|
+
id: string;
|
|
2982
2982
|
name: string;
|
|
2983
2983
|
}>>>;
|
|
2984
2984
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -3016,10 +3016,10 @@ export declare const collaborationCheckingsContract: {
|
|
|
3016
3016
|
agentId: string;
|
|
3017
3017
|
}>>>;
|
|
3018
3018
|
}, "strip", z.ZodTypeAny, {
|
|
3019
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3020
|
-
id: string;
|
|
3021
3019
|
createdAt: string;
|
|
3022
3020
|
updatedAt: string;
|
|
3021
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3022
|
+
id: string;
|
|
3023
3023
|
name: string;
|
|
3024
3024
|
crn: string | null;
|
|
3025
3025
|
govLink: string;
|
|
@@ -3036,10 +3036,10 @@ export declare const collaborationCheckingsContract: {
|
|
|
3036
3036
|
agentId: string;
|
|
3037
3037
|
} | null | undefined;
|
|
3038
3038
|
}, {
|
|
3039
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3040
|
-
id: string;
|
|
3041
3039
|
createdAt: string | Date;
|
|
3042
3040
|
updatedAt: string | Date;
|
|
3041
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3042
|
+
id: string;
|
|
3043
3043
|
name: string;
|
|
3044
3044
|
crn: string | null;
|
|
3045
3045
|
govLink: string;
|
|
@@ -3061,15 +3061,15 @@ export declare const collaborationCheckingsContract: {
|
|
|
3061
3061
|
firstName: z.ZodString;
|
|
3062
3062
|
lastName: z.ZodString;
|
|
3063
3063
|
email: z.ZodString;
|
|
3064
|
-
phone: z.
|
|
3064
|
+
phone: z.ZodString;
|
|
3065
3065
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
3066
3066
|
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"]>>>;
|
|
3067
3067
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3068
3068
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3069
3069
|
}, "strip", z.ZodTypeAny, {
|
|
3070
|
-
id: string;
|
|
3071
3070
|
createdAt: string;
|
|
3072
3071
|
updatedAt: string;
|
|
3072
|
+
id: string;
|
|
3073
3073
|
firstName: string;
|
|
3074
3074
|
lastName: string;
|
|
3075
3075
|
email: string;
|
|
@@ -3077,9 +3077,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
3077
3077
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3078
3078
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3079
3079
|
}, {
|
|
3080
|
-
id: string;
|
|
3081
3080
|
createdAt: string | Date;
|
|
3082
3081
|
updatedAt: string | Date;
|
|
3082
|
+
id: string;
|
|
3083
3083
|
firstName: string;
|
|
3084
3084
|
lastName: string;
|
|
3085
3085
|
email: string;
|
|
@@ -3087,7 +3087,7 @@ export declare const collaborationCheckingsContract: {
|
|
|
3087
3087
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3088
3088
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3089
3089
|
}>>>;
|
|
3090
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
3090
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
3091
3091
|
userId: z.ZodString;
|
|
3092
3092
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3093
3093
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -3100,14 +3100,14 @@ export declare const collaborationCheckingsContract: {
|
|
|
3100
3100
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3101
3101
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3102
3102
|
}, "strip", z.ZodTypeAny, {
|
|
3103
|
-
id: string;
|
|
3104
3103
|
createdAt: string;
|
|
3105
3104
|
updatedAt: string;
|
|
3105
|
+
id: string;
|
|
3106
3106
|
name: string;
|
|
3107
3107
|
}, {
|
|
3108
|
-
id: string;
|
|
3109
3108
|
createdAt: string | Date;
|
|
3110
3109
|
updatedAt: string | Date;
|
|
3110
|
+
id: string;
|
|
3111
3111
|
name: string;
|
|
3112
3112
|
}>>>;
|
|
3113
3113
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -3145,10 +3145,10 @@ export declare const collaborationCheckingsContract: {
|
|
|
3145
3145
|
agentId: string;
|
|
3146
3146
|
}>>>;
|
|
3147
3147
|
}, "strip", z.ZodTypeAny, {
|
|
3148
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3149
|
-
id: string;
|
|
3150
3148
|
createdAt: string;
|
|
3151
3149
|
updatedAt: string;
|
|
3150
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3151
|
+
id: string;
|
|
3152
3152
|
name: string;
|
|
3153
3153
|
crn: string | null;
|
|
3154
3154
|
govLink: string;
|
|
@@ -3165,10 +3165,10 @@ export declare const collaborationCheckingsContract: {
|
|
|
3165
3165
|
agentId: string;
|
|
3166
3166
|
} | null | undefined;
|
|
3167
3167
|
}, {
|
|
3168
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3169
|
-
id: string;
|
|
3170
3168
|
createdAt: string | Date;
|
|
3171
3169
|
updatedAt: string | Date;
|
|
3170
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3171
|
+
id: string;
|
|
3172
3172
|
name: string;
|
|
3173
3173
|
crn: string | null;
|
|
3174
3174
|
govLink: string;
|
|
@@ -3190,15 +3190,15 @@ export declare const collaborationCheckingsContract: {
|
|
|
3190
3190
|
firstName: z.ZodString;
|
|
3191
3191
|
lastName: z.ZodString;
|
|
3192
3192
|
email: z.ZodString;
|
|
3193
|
-
phone: z.
|
|
3193
|
+
phone: z.ZodString;
|
|
3194
3194
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
3195
3195
|
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"]>>>;
|
|
3196
3196
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3197
3197
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3198
3198
|
}, "strip", z.ZodTypeAny, {
|
|
3199
|
-
id: string;
|
|
3200
3199
|
createdAt: string;
|
|
3201
3200
|
updatedAt: string;
|
|
3201
|
+
id: string;
|
|
3202
3202
|
firstName: string;
|
|
3203
3203
|
lastName: string;
|
|
3204
3204
|
email: string;
|
|
@@ -3206,9 +3206,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
3206
3206
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3207
3207
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3208
3208
|
}, {
|
|
3209
|
-
id: string;
|
|
3210
3209
|
createdAt: string | Date;
|
|
3211
3210
|
updatedAt: string | Date;
|
|
3211
|
+
id: string;
|
|
3212
3212
|
firstName: string;
|
|
3213
3213
|
lastName: string;
|
|
3214
3214
|
email: string;
|
|
@@ -3216,27 +3216,27 @@ export declare const collaborationCheckingsContract: {
|
|
|
3216
3216
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3217
3217
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3218
3218
|
}>>>;
|
|
3219
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
3219
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
3220
3220
|
userId: z.ZodString;
|
|
3221
3221
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3222
3222
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3223
3223
|
}, "strip", z.ZodTypeAny, {
|
|
3224
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3225
|
-
id: string;
|
|
3226
3224
|
createdAt: string;
|
|
3227
3225
|
updatedAt: string;
|
|
3226
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3227
|
+
id: string;
|
|
3228
3228
|
userId: string;
|
|
3229
3229
|
company?: {
|
|
3230
|
-
id: string;
|
|
3231
3230
|
createdAt: string;
|
|
3232
3231
|
updatedAt: string;
|
|
3232
|
+
id: string;
|
|
3233
3233
|
name: string;
|
|
3234
3234
|
} | null | undefined;
|
|
3235
3235
|
client?: {
|
|
3236
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3237
|
-
id: string;
|
|
3238
3236
|
createdAt: string;
|
|
3239
3237
|
updatedAt: string;
|
|
3238
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3239
|
+
id: string;
|
|
3240
3240
|
name: string;
|
|
3241
3241
|
crn: string | null;
|
|
3242
3242
|
govLink: string;
|
|
@@ -3254,9 +3254,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
3254
3254
|
} | null | undefined;
|
|
3255
3255
|
} | null | undefined;
|
|
3256
3256
|
user?: {
|
|
3257
|
-
id: string;
|
|
3258
3257
|
createdAt: string;
|
|
3259
3258
|
updatedAt: string;
|
|
3259
|
+
id: string;
|
|
3260
3260
|
firstName: string;
|
|
3261
3261
|
lastName: string;
|
|
3262
3262
|
email: string;
|
|
@@ -3265,22 +3265,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
3265
3265
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3266
3266
|
} | null | undefined;
|
|
3267
3267
|
}, {
|
|
3268
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3269
|
-
id: string;
|
|
3270
3268
|
createdAt: string | Date;
|
|
3271
3269
|
updatedAt: string | Date;
|
|
3270
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3271
|
+
id: string;
|
|
3272
3272
|
userId: string;
|
|
3273
3273
|
company?: {
|
|
3274
|
-
id: string;
|
|
3275
3274
|
createdAt: string | Date;
|
|
3276
3275
|
updatedAt: string | Date;
|
|
3276
|
+
id: string;
|
|
3277
3277
|
name: string;
|
|
3278
3278
|
} | null | undefined;
|
|
3279
3279
|
client?: {
|
|
3280
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3281
|
-
id: string;
|
|
3282
3280
|
createdAt: string | Date;
|
|
3283
3281
|
updatedAt: string | Date;
|
|
3282
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3283
|
+
id: string;
|
|
3284
3284
|
name: string;
|
|
3285
3285
|
crn: string | null;
|
|
3286
3286
|
govLink: string;
|
|
@@ -3298,9 +3298,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
3298
3298
|
} | null | undefined;
|
|
3299
3299
|
} | null | undefined;
|
|
3300
3300
|
user?: {
|
|
3301
|
-
id: string;
|
|
3302
3301
|
createdAt: string | Date;
|
|
3303
3302
|
updatedAt: string | Date;
|
|
3303
|
+
id: string;
|
|
3304
3304
|
firstName: string;
|
|
3305
3305
|
lastName: string;
|
|
3306
3306
|
email: string;
|
|
@@ -3310,22 +3310,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
3310
3310
|
} | null | undefined;
|
|
3311
3311
|
}>>>;
|
|
3312
3312
|
}, "strip", z.ZodTypeAny, {
|
|
3313
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3314
|
-
id: string;
|
|
3315
3313
|
createdAt: string;
|
|
3316
3314
|
updatedAt: string;
|
|
3315
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3316
|
+
id: string;
|
|
3317
3317
|
userId: string;
|
|
3318
3318
|
company?: {
|
|
3319
|
-
id: string;
|
|
3320
3319
|
createdAt: string;
|
|
3321
3320
|
updatedAt: string;
|
|
3321
|
+
id: string;
|
|
3322
3322
|
name: string;
|
|
3323
3323
|
} | null | undefined;
|
|
3324
3324
|
client?: {
|
|
3325
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3326
|
-
id: string;
|
|
3327
3325
|
createdAt: string;
|
|
3328
3326
|
updatedAt: string;
|
|
3327
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3328
|
+
id: string;
|
|
3329
3329
|
name: string;
|
|
3330
3330
|
crn: string | null;
|
|
3331
3331
|
govLink: string;
|
|
@@ -3343,9 +3343,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
3343
3343
|
} | null | undefined;
|
|
3344
3344
|
} | null | undefined;
|
|
3345
3345
|
user?: {
|
|
3346
|
-
id: string;
|
|
3347
3346
|
createdAt: string;
|
|
3348
3347
|
updatedAt: string;
|
|
3348
|
+
id: string;
|
|
3349
3349
|
firstName: string;
|
|
3350
3350
|
lastName: string;
|
|
3351
3351
|
email: string;
|
|
@@ -3354,22 +3354,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
3354
3354
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3355
3355
|
} | null | undefined;
|
|
3356
3356
|
newCollaboration?: {
|
|
3357
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3358
|
-
id: string;
|
|
3359
3357
|
createdAt: string;
|
|
3360
3358
|
updatedAt: string;
|
|
3359
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3360
|
+
id: string;
|
|
3361
3361
|
userId: string;
|
|
3362
3362
|
company?: {
|
|
3363
|
-
id: string;
|
|
3364
3363
|
createdAt: string;
|
|
3365
3364
|
updatedAt: string;
|
|
3365
|
+
id: string;
|
|
3366
3366
|
name: string;
|
|
3367
3367
|
} | null | undefined;
|
|
3368
3368
|
client?: {
|
|
3369
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3370
|
-
id: string;
|
|
3371
3369
|
createdAt: string;
|
|
3372
3370
|
updatedAt: string;
|
|
3371
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3372
|
+
id: string;
|
|
3373
3373
|
name: string;
|
|
3374
3374
|
crn: string | null;
|
|
3375
3375
|
govLink: string;
|
|
@@ -3387,9 +3387,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
3387
3387
|
} | null | undefined;
|
|
3388
3388
|
} | null | undefined;
|
|
3389
3389
|
user?: {
|
|
3390
|
-
id: string;
|
|
3391
3390
|
createdAt: string;
|
|
3392
3391
|
updatedAt: string;
|
|
3392
|
+
id: string;
|
|
3393
3393
|
firstName: string;
|
|
3394
3394
|
lastName: string;
|
|
3395
3395
|
email: string;
|
|
@@ -3399,22 +3399,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
3399
3399
|
} | null | undefined;
|
|
3400
3400
|
} | null | undefined;
|
|
3401
3401
|
}, {
|
|
3402
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3403
|
-
id: string;
|
|
3404
3402
|
createdAt: string | Date;
|
|
3405
3403
|
updatedAt: string | Date;
|
|
3404
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3405
|
+
id: string;
|
|
3406
3406
|
userId: string;
|
|
3407
3407
|
company?: {
|
|
3408
|
-
id: string;
|
|
3409
3408
|
createdAt: string | Date;
|
|
3410
3409
|
updatedAt: string | Date;
|
|
3410
|
+
id: string;
|
|
3411
3411
|
name: string;
|
|
3412
3412
|
} | null | undefined;
|
|
3413
3413
|
client?: {
|
|
3414
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3415
|
-
id: string;
|
|
3416
3414
|
createdAt: string | Date;
|
|
3417
3415
|
updatedAt: string | Date;
|
|
3416
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3417
|
+
id: string;
|
|
3418
3418
|
name: string;
|
|
3419
3419
|
crn: string | null;
|
|
3420
3420
|
govLink: string;
|
|
@@ -3432,9 +3432,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
3432
3432
|
} | null | undefined;
|
|
3433
3433
|
} | null | undefined;
|
|
3434
3434
|
user?: {
|
|
3435
|
-
id: string;
|
|
3436
3435
|
createdAt: string | Date;
|
|
3437
3436
|
updatedAt: string | Date;
|
|
3437
|
+
id: string;
|
|
3438
3438
|
firstName: string;
|
|
3439
3439
|
lastName: string;
|
|
3440
3440
|
email: string;
|
|
@@ -3443,22 +3443,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
3443
3443
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3444
3444
|
} | null | undefined;
|
|
3445
3445
|
newCollaboration?: {
|
|
3446
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3447
|
-
id: string;
|
|
3448
3446
|
createdAt: string | Date;
|
|
3449
3447
|
updatedAt: string | Date;
|
|
3448
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3449
|
+
id: string;
|
|
3450
3450
|
userId: string;
|
|
3451
3451
|
company?: {
|
|
3452
|
-
id: string;
|
|
3453
3452
|
createdAt: string | Date;
|
|
3454
3453
|
updatedAt: string | Date;
|
|
3454
|
+
id: string;
|
|
3455
3455
|
name: string;
|
|
3456
3456
|
} | null | undefined;
|
|
3457
3457
|
client?: {
|
|
3458
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3459
|
-
id: string;
|
|
3460
3458
|
createdAt: string | Date;
|
|
3461
3459
|
updatedAt: string | Date;
|
|
3460
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3461
|
+
id: string;
|
|
3462
3462
|
name: string;
|
|
3463
3463
|
crn: string | null;
|
|
3464
3464
|
govLink: string;
|
|
@@ -3476,9 +3476,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
3476
3476
|
} | null | undefined;
|
|
3477
3477
|
} | null | undefined;
|
|
3478
3478
|
user?: {
|
|
3479
|
-
id: string;
|
|
3480
3479
|
createdAt: string | Date;
|
|
3481
3480
|
updatedAt: string | Date;
|
|
3481
|
+
id: string;
|
|
3482
3482
|
firstName: string;
|
|
3483
3483
|
lastName: string;
|
|
3484
3484
|
email: string;
|
|
@@ -3504,35 +3504,35 @@ export declare const collaborationCheckingsContract: {
|
|
|
3504
3504
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3505
3505
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3506
3506
|
}, "strip", z.ZodTypeAny, {
|
|
3507
|
-
id: string;
|
|
3508
3507
|
createdAt: string;
|
|
3509
3508
|
updatedAt: string;
|
|
3510
|
-
|
|
3509
|
+
id: string;
|
|
3511
3510
|
email: string;
|
|
3511
|
+
collaborationId: string;
|
|
3512
3512
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
3513
|
-
decision: "
|
|
3513
|
+
decision: "REJECTED" | "APPROVED" | "PENDING";
|
|
3514
3514
|
isTermsAndConditionsConfirmed: boolean;
|
|
3515
3515
|
emailType: "INTRODUCTION" | "COLLABORATION" | "BOTH";
|
|
3516
3516
|
introductionEmailSent: boolean;
|
|
3517
3517
|
collaborationEmailSent: boolean;
|
|
3518
3518
|
clientContactId?: string | null | undefined;
|
|
3519
3519
|
collaboration?: {
|
|
3520
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3521
|
-
id: string;
|
|
3522
3520
|
createdAt: string;
|
|
3523
3521
|
updatedAt: string;
|
|
3522
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3523
|
+
id: string;
|
|
3524
3524
|
userId: string;
|
|
3525
3525
|
company?: {
|
|
3526
|
-
id: string;
|
|
3527
3526
|
createdAt: string;
|
|
3528
3527
|
updatedAt: string;
|
|
3528
|
+
id: string;
|
|
3529
3529
|
name: string;
|
|
3530
3530
|
} | null | undefined;
|
|
3531
3531
|
client?: {
|
|
3532
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3533
|
-
id: string;
|
|
3534
3532
|
createdAt: string;
|
|
3535
3533
|
updatedAt: string;
|
|
3534
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3535
|
+
id: string;
|
|
3536
3536
|
name: string;
|
|
3537
3537
|
crn: string | null;
|
|
3538
3538
|
govLink: string;
|
|
@@ -3550,9 +3550,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
3550
3550
|
} | null | undefined;
|
|
3551
3551
|
} | null | undefined;
|
|
3552
3552
|
user?: {
|
|
3553
|
-
id: string;
|
|
3554
3553
|
createdAt: string;
|
|
3555
3554
|
updatedAt: string;
|
|
3555
|
+
id: string;
|
|
3556
3556
|
firstName: string;
|
|
3557
3557
|
lastName: string;
|
|
3558
3558
|
email: string;
|
|
@@ -3561,22 +3561,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
3561
3561
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3562
3562
|
} | null | undefined;
|
|
3563
3563
|
newCollaboration?: {
|
|
3564
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3565
|
-
id: string;
|
|
3566
3564
|
createdAt: string;
|
|
3567
3565
|
updatedAt: string;
|
|
3566
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3567
|
+
id: string;
|
|
3568
3568
|
userId: string;
|
|
3569
3569
|
company?: {
|
|
3570
|
-
id: string;
|
|
3571
3570
|
createdAt: string;
|
|
3572
3571
|
updatedAt: string;
|
|
3572
|
+
id: string;
|
|
3573
3573
|
name: string;
|
|
3574
3574
|
} | null | undefined;
|
|
3575
3575
|
client?: {
|
|
3576
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3577
|
-
id: string;
|
|
3578
3576
|
createdAt: string;
|
|
3579
3577
|
updatedAt: string;
|
|
3578
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3579
|
+
id: string;
|
|
3580
3580
|
name: string;
|
|
3581
3581
|
crn: string | null;
|
|
3582
3582
|
govLink: string;
|
|
@@ -3594,9 +3594,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
3594
3594
|
} | null | undefined;
|
|
3595
3595
|
} | null | undefined;
|
|
3596
3596
|
user?: {
|
|
3597
|
-
id: string;
|
|
3598
3597
|
createdAt: string;
|
|
3599
3598
|
updatedAt: string;
|
|
3599
|
+
id: string;
|
|
3600
3600
|
firstName: string;
|
|
3601
3601
|
lastName: string;
|
|
3602
3602
|
email: string;
|
|
@@ -3613,35 +3613,35 @@ export declare const collaborationCheckingsContract: {
|
|
|
3613
3613
|
collaborationEmailTimestamp?: string | null | undefined;
|
|
3614
3614
|
checkingComment?: string | null | undefined;
|
|
3615
3615
|
}, {
|
|
3616
|
-
id: string;
|
|
3617
3616
|
createdAt: string | Date;
|
|
3618
3617
|
updatedAt: string | Date;
|
|
3619
|
-
|
|
3618
|
+
id: string;
|
|
3620
3619
|
email: string;
|
|
3620
|
+
collaborationId: string;
|
|
3621
3621
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
3622
|
-
decision: "
|
|
3622
|
+
decision: "REJECTED" | "APPROVED" | "PENDING";
|
|
3623
3623
|
isTermsAndConditionsConfirmed: boolean;
|
|
3624
3624
|
emailType: "INTRODUCTION" | "COLLABORATION" | "BOTH";
|
|
3625
3625
|
introductionEmailSent: boolean;
|
|
3626
3626
|
collaborationEmailSent: boolean;
|
|
3627
3627
|
clientContactId?: string | null | undefined;
|
|
3628
3628
|
collaboration?: {
|
|
3629
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3630
|
-
id: string;
|
|
3631
3629
|
createdAt: string | Date;
|
|
3632
3630
|
updatedAt: string | Date;
|
|
3631
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3632
|
+
id: string;
|
|
3633
3633
|
userId: string;
|
|
3634
3634
|
company?: {
|
|
3635
|
-
id: string;
|
|
3636
3635
|
createdAt: string | Date;
|
|
3637
3636
|
updatedAt: string | Date;
|
|
3637
|
+
id: string;
|
|
3638
3638
|
name: string;
|
|
3639
3639
|
} | null | undefined;
|
|
3640
3640
|
client?: {
|
|
3641
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3642
|
-
id: string;
|
|
3643
3641
|
createdAt: string | Date;
|
|
3644
3642
|
updatedAt: string | Date;
|
|
3643
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3644
|
+
id: string;
|
|
3645
3645
|
name: string;
|
|
3646
3646
|
crn: string | null;
|
|
3647
3647
|
govLink: string;
|
|
@@ -3659,9 +3659,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
3659
3659
|
} | null | undefined;
|
|
3660
3660
|
} | null | undefined;
|
|
3661
3661
|
user?: {
|
|
3662
|
-
id: string;
|
|
3663
3662
|
createdAt: string | Date;
|
|
3664
3663
|
updatedAt: string | Date;
|
|
3664
|
+
id: string;
|
|
3665
3665
|
firstName: string;
|
|
3666
3666
|
lastName: string;
|
|
3667
3667
|
email: string;
|
|
@@ -3670,22 +3670,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
3670
3670
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3671
3671
|
} | null | undefined;
|
|
3672
3672
|
newCollaboration?: {
|
|
3673
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3674
|
-
id: string;
|
|
3675
3673
|
createdAt: string | Date;
|
|
3676
3674
|
updatedAt: string | Date;
|
|
3675
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3676
|
+
id: string;
|
|
3677
3677
|
userId: string;
|
|
3678
3678
|
company?: {
|
|
3679
|
-
id: string;
|
|
3680
3679
|
createdAt: string | Date;
|
|
3681
3680
|
updatedAt: string | Date;
|
|
3681
|
+
id: string;
|
|
3682
3682
|
name: string;
|
|
3683
3683
|
} | null | undefined;
|
|
3684
3684
|
client?: {
|
|
3685
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3686
|
-
id: string;
|
|
3687
3685
|
createdAt: string | Date;
|
|
3688
3686
|
updatedAt: string | Date;
|
|
3687
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3688
|
+
id: string;
|
|
3689
3689
|
name: string;
|
|
3690
3690
|
crn: string | null;
|
|
3691
3691
|
govLink: string;
|
|
@@ -3703,9 +3703,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
3703
3703
|
} | null | undefined;
|
|
3704
3704
|
} | null | undefined;
|
|
3705
3705
|
user?: {
|
|
3706
|
-
id: string;
|
|
3707
3706
|
createdAt: string | Date;
|
|
3708
3707
|
updatedAt: string | Date;
|
|
3708
|
+
id: string;
|
|
3709
3709
|
firstName: string;
|
|
3710
3710
|
lastName: string;
|
|
3711
3711
|
email: string;
|
|
@@ -3730,35 +3730,35 @@ export declare const collaborationCheckingsContract: {
|
|
|
3730
3730
|
}, "strip", z.ZodTypeAny, {
|
|
3731
3731
|
limit: number;
|
|
3732
3732
|
items: {
|
|
3733
|
-
id: string;
|
|
3734
3733
|
createdAt: string;
|
|
3735
3734
|
updatedAt: string;
|
|
3736
|
-
|
|
3735
|
+
id: string;
|
|
3737
3736
|
email: string;
|
|
3737
|
+
collaborationId: string;
|
|
3738
3738
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
3739
|
-
decision: "
|
|
3739
|
+
decision: "REJECTED" | "APPROVED" | "PENDING";
|
|
3740
3740
|
isTermsAndConditionsConfirmed: boolean;
|
|
3741
3741
|
emailType: "INTRODUCTION" | "COLLABORATION" | "BOTH";
|
|
3742
3742
|
introductionEmailSent: boolean;
|
|
3743
3743
|
collaborationEmailSent: boolean;
|
|
3744
3744
|
clientContactId?: string | null | undefined;
|
|
3745
3745
|
collaboration?: {
|
|
3746
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3747
|
-
id: string;
|
|
3748
3746
|
createdAt: string;
|
|
3749
3747
|
updatedAt: string;
|
|
3748
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3749
|
+
id: string;
|
|
3750
3750
|
userId: string;
|
|
3751
3751
|
company?: {
|
|
3752
|
-
id: string;
|
|
3753
3752
|
createdAt: string;
|
|
3754
3753
|
updatedAt: string;
|
|
3754
|
+
id: string;
|
|
3755
3755
|
name: string;
|
|
3756
3756
|
} | null | undefined;
|
|
3757
3757
|
client?: {
|
|
3758
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3759
|
-
id: string;
|
|
3760
3758
|
createdAt: string;
|
|
3761
3759
|
updatedAt: string;
|
|
3760
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3761
|
+
id: string;
|
|
3762
3762
|
name: string;
|
|
3763
3763
|
crn: string | null;
|
|
3764
3764
|
govLink: string;
|
|
@@ -3776,9 +3776,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
3776
3776
|
} | null | undefined;
|
|
3777
3777
|
} | null | undefined;
|
|
3778
3778
|
user?: {
|
|
3779
|
-
id: string;
|
|
3780
3779
|
createdAt: string;
|
|
3781
3780
|
updatedAt: string;
|
|
3781
|
+
id: string;
|
|
3782
3782
|
firstName: string;
|
|
3783
3783
|
lastName: string;
|
|
3784
3784
|
email: string;
|
|
@@ -3787,22 +3787,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
3787
3787
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3788
3788
|
} | null | undefined;
|
|
3789
3789
|
newCollaboration?: {
|
|
3790
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3791
|
-
id: string;
|
|
3792
3790
|
createdAt: string;
|
|
3793
3791
|
updatedAt: string;
|
|
3792
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3793
|
+
id: string;
|
|
3794
3794
|
userId: string;
|
|
3795
3795
|
company?: {
|
|
3796
|
-
id: string;
|
|
3797
3796
|
createdAt: string;
|
|
3798
3797
|
updatedAt: string;
|
|
3798
|
+
id: string;
|
|
3799
3799
|
name: string;
|
|
3800
3800
|
} | null | undefined;
|
|
3801
3801
|
client?: {
|
|
3802
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3803
|
-
id: string;
|
|
3804
3802
|
createdAt: string;
|
|
3805
3803
|
updatedAt: string;
|
|
3804
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3805
|
+
id: string;
|
|
3806
3806
|
name: string;
|
|
3807
3807
|
crn: string | null;
|
|
3808
3808
|
govLink: string;
|
|
@@ -3820,9 +3820,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
3820
3820
|
} | null | undefined;
|
|
3821
3821
|
} | null | undefined;
|
|
3822
3822
|
user?: {
|
|
3823
|
-
id: string;
|
|
3824
3823
|
createdAt: string;
|
|
3825
3824
|
updatedAt: string;
|
|
3825
|
+
id: string;
|
|
3826
3826
|
firstName: string;
|
|
3827
3827
|
lastName: string;
|
|
3828
3828
|
email: string;
|
|
@@ -3846,35 +3846,35 @@ export declare const collaborationCheckingsContract: {
|
|
|
3846
3846
|
}, {
|
|
3847
3847
|
limit: number;
|
|
3848
3848
|
items: {
|
|
3849
|
-
id: string;
|
|
3850
3849
|
createdAt: string | Date;
|
|
3851
3850
|
updatedAt: string | Date;
|
|
3852
|
-
|
|
3851
|
+
id: string;
|
|
3853
3852
|
email: string;
|
|
3853
|
+
collaborationId: string;
|
|
3854
3854
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
3855
|
-
decision: "
|
|
3855
|
+
decision: "REJECTED" | "APPROVED" | "PENDING";
|
|
3856
3856
|
isTermsAndConditionsConfirmed: boolean;
|
|
3857
3857
|
emailType: "INTRODUCTION" | "COLLABORATION" | "BOTH";
|
|
3858
3858
|
introductionEmailSent: boolean;
|
|
3859
3859
|
collaborationEmailSent: boolean;
|
|
3860
3860
|
clientContactId?: string | null | undefined;
|
|
3861
3861
|
collaboration?: {
|
|
3862
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3863
|
-
id: string;
|
|
3864
3862
|
createdAt: string | Date;
|
|
3865
3863
|
updatedAt: string | Date;
|
|
3864
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3865
|
+
id: string;
|
|
3866
3866
|
userId: string;
|
|
3867
3867
|
company?: {
|
|
3868
|
-
id: string;
|
|
3869
3868
|
createdAt: string | Date;
|
|
3870
3869
|
updatedAt: string | Date;
|
|
3870
|
+
id: string;
|
|
3871
3871
|
name: string;
|
|
3872
3872
|
} | null | undefined;
|
|
3873
3873
|
client?: {
|
|
3874
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3875
|
-
id: string;
|
|
3876
3874
|
createdAt: string | Date;
|
|
3877
3875
|
updatedAt: string | Date;
|
|
3876
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3877
|
+
id: string;
|
|
3878
3878
|
name: string;
|
|
3879
3879
|
crn: string | null;
|
|
3880
3880
|
govLink: string;
|
|
@@ -3892,9 +3892,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
3892
3892
|
} | null | undefined;
|
|
3893
3893
|
} | null | undefined;
|
|
3894
3894
|
user?: {
|
|
3895
|
-
id: string;
|
|
3896
3895
|
createdAt: string | Date;
|
|
3897
3896
|
updatedAt: string | Date;
|
|
3897
|
+
id: string;
|
|
3898
3898
|
firstName: string;
|
|
3899
3899
|
lastName: string;
|
|
3900
3900
|
email: string;
|
|
@@ -3903,22 +3903,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
3903
3903
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3904
3904
|
} | null | undefined;
|
|
3905
3905
|
newCollaboration?: {
|
|
3906
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3907
|
-
id: string;
|
|
3908
3906
|
createdAt: string | Date;
|
|
3909
3907
|
updatedAt: string | Date;
|
|
3908
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3909
|
+
id: string;
|
|
3910
3910
|
userId: string;
|
|
3911
3911
|
company?: {
|
|
3912
|
-
id: string;
|
|
3913
3912
|
createdAt: string | Date;
|
|
3914
3913
|
updatedAt: string | Date;
|
|
3914
|
+
id: string;
|
|
3915
3915
|
name: string;
|
|
3916
3916
|
} | null | undefined;
|
|
3917
3917
|
client?: {
|
|
3918
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3919
|
-
id: string;
|
|
3920
3918
|
createdAt: string | Date;
|
|
3921
3919
|
updatedAt: string | Date;
|
|
3920
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3921
|
+
id: string;
|
|
3922
3922
|
name: string;
|
|
3923
3923
|
crn: string | null;
|
|
3924
3924
|
govLink: string;
|
|
@@ -3936,9 +3936,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
3936
3936
|
} | null | undefined;
|
|
3937
3937
|
} | null | undefined;
|
|
3938
3938
|
user?: {
|
|
3939
|
-
id: string;
|
|
3940
3939
|
createdAt: string | Date;
|
|
3941
3940
|
updatedAt: string | Date;
|
|
3941
|
+
id: string;
|
|
3942
3942
|
firstName: string;
|
|
3943
3943
|
lastName: string;
|
|
3944
3944
|
email: string;
|
|
@@ -4092,14 +4092,14 @@ export declare const collaborationCheckingsContract: {
|
|
|
4092
4092
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4093
4093
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4094
4094
|
}, "strip", z.ZodTypeAny, {
|
|
4095
|
-
id: string;
|
|
4096
4095
|
createdAt: string;
|
|
4097
4096
|
updatedAt: string;
|
|
4097
|
+
id: string;
|
|
4098
4098
|
name: string;
|
|
4099
4099
|
}, {
|
|
4100
|
-
id: string;
|
|
4101
4100
|
createdAt: string | Date;
|
|
4102
4101
|
updatedAt: string | Date;
|
|
4102
|
+
id: string;
|
|
4103
4103
|
name: string;
|
|
4104
4104
|
}>>>;
|
|
4105
4105
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -4137,10 +4137,10 @@ export declare const collaborationCheckingsContract: {
|
|
|
4137
4137
|
agentId: string;
|
|
4138
4138
|
}>>>;
|
|
4139
4139
|
}, "strip", z.ZodTypeAny, {
|
|
4140
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4141
|
-
id: string;
|
|
4142
4140
|
createdAt: string;
|
|
4143
4141
|
updatedAt: string;
|
|
4142
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4143
|
+
id: string;
|
|
4144
4144
|
name: string;
|
|
4145
4145
|
crn: string | null;
|
|
4146
4146
|
govLink: string;
|
|
@@ -4157,10 +4157,10 @@ export declare const collaborationCheckingsContract: {
|
|
|
4157
4157
|
agentId: string;
|
|
4158
4158
|
} | null | undefined;
|
|
4159
4159
|
}, {
|
|
4160
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4161
|
-
id: string;
|
|
4162
4160
|
createdAt: string | Date;
|
|
4163
4161
|
updatedAt: string | Date;
|
|
4162
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4163
|
+
id: string;
|
|
4164
4164
|
name: string;
|
|
4165
4165
|
crn: string | null;
|
|
4166
4166
|
govLink: string;
|
|
@@ -4182,15 +4182,15 @@ export declare const collaborationCheckingsContract: {
|
|
|
4182
4182
|
firstName: z.ZodString;
|
|
4183
4183
|
lastName: z.ZodString;
|
|
4184
4184
|
email: z.ZodString;
|
|
4185
|
-
phone: z.
|
|
4185
|
+
phone: z.ZodString;
|
|
4186
4186
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
4187
4187
|
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"]>>>;
|
|
4188
4188
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4189
4189
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4190
4190
|
}, "strip", z.ZodTypeAny, {
|
|
4191
|
-
id: string;
|
|
4192
4191
|
createdAt: string;
|
|
4193
4192
|
updatedAt: string;
|
|
4193
|
+
id: string;
|
|
4194
4194
|
firstName: string;
|
|
4195
4195
|
lastName: string;
|
|
4196
4196
|
email: string;
|
|
@@ -4198,9 +4198,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
4198
4198
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
4199
4199
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4200
4200
|
}, {
|
|
4201
|
-
id: string;
|
|
4202
4201
|
createdAt: string | Date;
|
|
4203
4202
|
updatedAt: string | Date;
|
|
4203
|
+
id: string;
|
|
4204
4204
|
firstName: string;
|
|
4205
4205
|
lastName: string;
|
|
4206
4206
|
email: string;
|
|
@@ -4208,7 +4208,7 @@ export declare const collaborationCheckingsContract: {
|
|
|
4208
4208
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
4209
4209
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4210
4210
|
}>>>;
|
|
4211
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
4211
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
4212
4212
|
userId: z.ZodString;
|
|
4213
4213
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4214
4214
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -4221,14 +4221,14 @@ export declare const collaborationCheckingsContract: {
|
|
|
4221
4221
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4222
4222
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4223
4223
|
}, "strip", z.ZodTypeAny, {
|
|
4224
|
-
id: string;
|
|
4225
4224
|
createdAt: string;
|
|
4226
4225
|
updatedAt: string;
|
|
4226
|
+
id: string;
|
|
4227
4227
|
name: string;
|
|
4228
4228
|
}, {
|
|
4229
|
-
id: string;
|
|
4230
4229
|
createdAt: string | Date;
|
|
4231
4230
|
updatedAt: string | Date;
|
|
4231
|
+
id: string;
|
|
4232
4232
|
name: string;
|
|
4233
4233
|
}>>>;
|
|
4234
4234
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -4266,10 +4266,10 @@ export declare const collaborationCheckingsContract: {
|
|
|
4266
4266
|
agentId: string;
|
|
4267
4267
|
}>>>;
|
|
4268
4268
|
}, "strip", z.ZodTypeAny, {
|
|
4269
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4270
|
-
id: string;
|
|
4271
4269
|
createdAt: string;
|
|
4272
4270
|
updatedAt: string;
|
|
4271
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4272
|
+
id: string;
|
|
4273
4273
|
name: string;
|
|
4274
4274
|
crn: string | null;
|
|
4275
4275
|
govLink: string;
|
|
@@ -4286,10 +4286,10 @@ export declare const collaborationCheckingsContract: {
|
|
|
4286
4286
|
agentId: string;
|
|
4287
4287
|
} | null | undefined;
|
|
4288
4288
|
}, {
|
|
4289
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4290
|
-
id: string;
|
|
4291
4289
|
createdAt: string | Date;
|
|
4292
4290
|
updatedAt: string | Date;
|
|
4291
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4292
|
+
id: string;
|
|
4293
4293
|
name: string;
|
|
4294
4294
|
crn: string | null;
|
|
4295
4295
|
govLink: string;
|
|
@@ -4311,15 +4311,15 @@ export declare const collaborationCheckingsContract: {
|
|
|
4311
4311
|
firstName: z.ZodString;
|
|
4312
4312
|
lastName: z.ZodString;
|
|
4313
4313
|
email: z.ZodString;
|
|
4314
|
-
phone: z.
|
|
4314
|
+
phone: z.ZodString;
|
|
4315
4315
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
4316
4316
|
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"]>>>;
|
|
4317
4317
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4318
4318
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4319
4319
|
}, "strip", z.ZodTypeAny, {
|
|
4320
|
-
id: string;
|
|
4321
4320
|
createdAt: string;
|
|
4322
4321
|
updatedAt: string;
|
|
4322
|
+
id: string;
|
|
4323
4323
|
firstName: string;
|
|
4324
4324
|
lastName: string;
|
|
4325
4325
|
email: string;
|
|
@@ -4327,9 +4327,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
4327
4327
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
4328
4328
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4329
4329
|
}, {
|
|
4330
|
-
id: string;
|
|
4331
4330
|
createdAt: string | Date;
|
|
4332
4331
|
updatedAt: string | Date;
|
|
4332
|
+
id: string;
|
|
4333
4333
|
firstName: string;
|
|
4334
4334
|
lastName: string;
|
|
4335
4335
|
email: string;
|
|
@@ -4337,27 +4337,27 @@ export declare const collaborationCheckingsContract: {
|
|
|
4337
4337
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
4338
4338
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4339
4339
|
}>>>;
|
|
4340
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
4340
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
4341
4341
|
userId: z.ZodString;
|
|
4342
4342
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4343
4343
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4344
4344
|
}, "strip", z.ZodTypeAny, {
|
|
4345
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4346
|
-
id: string;
|
|
4347
4345
|
createdAt: string;
|
|
4348
4346
|
updatedAt: string;
|
|
4347
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4348
|
+
id: string;
|
|
4349
4349
|
userId: string;
|
|
4350
4350
|
company?: {
|
|
4351
|
-
id: string;
|
|
4352
4351
|
createdAt: string;
|
|
4353
4352
|
updatedAt: string;
|
|
4353
|
+
id: string;
|
|
4354
4354
|
name: string;
|
|
4355
4355
|
} | null | undefined;
|
|
4356
4356
|
client?: {
|
|
4357
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4358
|
-
id: string;
|
|
4359
4357
|
createdAt: string;
|
|
4360
4358
|
updatedAt: string;
|
|
4359
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4360
|
+
id: string;
|
|
4361
4361
|
name: string;
|
|
4362
4362
|
crn: string | null;
|
|
4363
4363
|
govLink: string;
|
|
@@ -4375,9 +4375,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
4375
4375
|
} | null | undefined;
|
|
4376
4376
|
} | null | undefined;
|
|
4377
4377
|
user?: {
|
|
4378
|
-
id: string;
|
|
4379
4378
|
createdAt: string;
|
|
4380
4379
|
updatedAt: string;
|
|
4380
|
+
id: string;
|
|
4381
4381
|
firstName: string;
|
|
4382
4382
|
lastName: string;
|
|
4383
4383
|
email: string;
|
|
@@ -4386,22 +4386,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
4386
4386
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4387
4387
|
} | null | undefined;
|
|
4388
4388
|
}, {
|
|
4389
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4390
|
-
id: string;
|
|
4391
4389
|
createdAt: string | Date;
|
|
4392
4390
|
updatedAt: string | Date;
|
|
4391
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4392
|
+
id: string;
|
|
4393
4393
|
userId: string;
|
|
4394
4394
|
company?: {
|
|
4395
|
-
id: string;
|
|
4396
4395
|
createdAt: string | Date;
|
|
4397
4396
|
updatedAt: string | Date;
|
|
4397
|
+
id: string;
|
|
4398
4398
|
name: string;
|
|
4399
4399
|
} | null | undefined;
|
|
4400
4400
|
client?: {
|
|
4401
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4402
|
-
id: string;
|
|
4403
4401
|
createdAt: string | Date;
|
|
4404
4402
|
updatedAt: string | Date;
|
|
4403
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4404
|
+
id: string;
|
|
4405
4405
|
name: string;
|
|
4406
4406
|
crn: string | null;
|
|
4407
4407
|
govLink: string;
|
|
@@ -4419,9 +4419,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
4419
4419
|
} | null | undefined;
|
|
4420
4420
|
} | null | undefined;
|
|
4421
4421
|
user?: {
|
|
4422
|
-
id: string;
|
|
4423
4422
|
createdAt: string | Date;
|
|
4424
4423
|
updatedAt: string | Date;
|
|
4424
|
+
id: string;
|
|
4425
4425
|
firstName: string;
|
|
4426
4426
|
lastName: string;
|
|
4427
4427
|
email: string;
|
|
@@ -4431,22 +4431,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
4431
4431
|
} | null | undefined;
|
|
4432
4432
|
}>>>;
|
|
4433
4433
|
}, "strip", z.ZodTypeAny, {
|
|
4434
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4435
|
-
id: string;
|
|
4436
4434
|
createdAt: string;
|
|
4437
4435
|
updatedAt: string;
|
|
4436
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4437
|
+
id: string;
|
|
4438
4438
|
userId: string;
|
|
4439
4439
|
company?: {
|
|
4440
|
-
id: string;
|
|
4441
4440
|
createdAt: string;
|
|
4442
4441
|
updatedAt: string;
|
|
4442
|
+
id: string;
|
|
4443
4443
|
name: string;
|
|
4444
4444
|
} | null | undefined;
|
|
4445
4445
|
client?: {
|
|
4446
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4447
|
-
id: string;
|
|
4448
4446
|
createdAt: string;
|
|
4449
4447
|
updatedAt: string;
|
|
4448
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4449
|
+
id: string;
|
|
4450
4450
|
name: string;
|
|
4451
4451
|
crn: string | null;
|
|
4452
4452
|
govLink: string;
|
|
@@ -4464,9 +4464,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
4464
4464
|
} | null | undefined;
|
|
4465
4465
|
} | null | undefined;
|
|
4466
4466
|
user?: {
|
|
4467
|
-
id: string;
|
|
4468
4467
|
createdAt: string;
|
|
4469
4468
|
updatedAt: string;
|
|
4469
|
+
id: string;
|
|
4470
4470
|
firstName: string;
|
|
4471
4471
|
lastName: string;
|
|
4472
4472
|
email: string;
|
|
@@ -4475,22 +4475,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
4475
4475
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4476
4476
|
} | null | undefined;
|
|
4477
4477
|
newCollaboration?: {
|
|
4478
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4479
|
-
id: string;
|
|
4480
4478
|
createdAt: string;
|
|
4481
4479
|
updatedAt: string;
|
|
4480
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4481
|
+
id: string;
|
|
4482
4482
|
userId: string;
|
|
4483
4483
|
company?: {
|
|
4484
|
-
id: string;
|
|
4485
4484
|
createdAt: string;
|
|
4486
4485
|
updatedAt: string;
|
|
4486
|
+
id: string;
|
|
4487
4487
|
name: string;
|
|
4488
4488
|
} | null | undefined;
|
|
4489
4489
|
client?: {
|
|
4490
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4491
|
-
id: string;
|
|
4492
4490
|
createdAt: string;
|
|
4493
4491
|
updatedAt: string;
|
|
4492
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4493
|
+
id: string;
|
|
4494
4494
|
name: string;
|
|
4495
4495
|
crn: string | null;
|
|
4496
4496
|
govLink: string;
|
|
@@ -4508,9 +4508,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
4508
4508
|
} | null | undefined;
|
|
4509
4509
|
} | null | undefined;
|
|
4510
4510
|
user?: {
|
|
4511
|
-
id: string;
|
|
4512
4511
|
createdAt: string;
|
|
4513
4512
|
updatedAt: string;
|
|
4513
|
+
id: string;
|
|
4514
4514
|
firstName: string;
|
|
4515
4515
|
lastName: string;
|
|
4516
4516
|
email: string;
|
|
@@ -4520,22 +4520,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
4520
4520
|
} | null | undefined;
|
|
4521
4521
|
} | null | undefined;
|
|
4522
4522
|
}, {
|
|
4523
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4524
|
-
id: string;
|
|
4525
4523
|
createdAt: string | Date;
|
|
4526
4524
|
updatedAt: string | Date;
|
|
4525
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4526
|
+
id: string;
|
|
4527
4527
|
userId: string;
|
|
4528
4528
|
company?: {
|
|
4529
|
-
id: string;
|
|
4530
4529
|
createdAt: string | Date;
|
|
4531
4530
|
updatedAt: string | Date;
|
|
4531
|
+
id: string;
|
|
4532
4532
|
name: string;
|
|
4533
4533
|
} | null | undefined;
|
|
4534
4534
|
client?: {
|
|
4535
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4536
|
-
id: string;
|
|
4537
4535
|
createdAt: string | Date;
|
|
4538
4536
|
updatedAt: string | Date;
|
|
4537
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4538
|
+
id: string;
|
|
4539
4539
|
name: string;
|
|
4540
4540
|
crn: string | null;
|
|
4541
4541
|
govLink: string;
|
|
@@ -4553,9 +4553,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
4553
4553
|
} | null | undefined;
|
|
4554
4554
|
} | null | undefined;
|
|
4555
4555
|
user?: {
|
|
4556
|
-
id: string;
|
|
4557
4556
|
createdAt: string | Date;
|
|
4558
4557
|
updatedAt: string | Date;
|
|
4558
|
+
id: string;
|
|
4559
4559
|
firstName: string;
|
|
4560
4560
|
lastName: string;
|
|
4561
4561
|
email: string;
|
|
@@ -4564,22 +4564,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
4564
4564
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4565
4565
|
} | null | undefined;
|
|
4566
4566
|
newCollaboration?: {
|
|
4567
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4568
|
-
id: string;
|
|
4569
4567
|
createdAt: string | Date;
|
|
4570
4568
|
updatedAt: string | Date;
|
|
4569
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4570
|
+
id: string;
|
|
4571
4571
|
userId: string;
|
|
4572
4572
|
company?: {
|
|
4573
|
-
id: string;
|
|
4574
4573
|
createdAt: string | Date;
|
|
4575
4574
|
updatedAt: string | Date;
|
|
4575
|
+
id: string;
|
|
4576
4576
|
name: string;
|
|
4577
4577
|
} | null | undefined;
|
|
4578
4578
|
client?: {
|
|
4579
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4580
|
-
id: string;
|
|
4581
4579
|
createdAt: string | Date;
|
|
4582
4580
|
updatedAt: string | Date;
|
|
4581
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4582
|
+
id: string;
|
|
4583
4583
|
name: string;
|
|
4584
4584
|
crn: string | null;
|
|
4585
4585
|
govLink: string;
|
|
@@ -4597,9 +4597,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
4597
4597
|
} | null | undefined;
|
|
4598
4598
|
} | null | undefined;
|
|
4599
4599
|
user?: {
|
|
4600
|
-
id: string;
|
|
4601
4600
|
createdAt: string | Date;
|
|
4602
4601
|
updatedAt: string | Date;
|
|
4602
|
+
id: string;
|
|
4603
4603
|
firstName: string;
|
|
4604
4604
|
lastName: string;
|
|
4605
4605
|
email: string;
|
|
@@ -4625,35 +4625,35 @@ export declare const collaborationCheckingsContract: {
|
|
|
4625
4625
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4626
4626
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4627
4627
|
}, "strip", z.ZodTypeAny, {
|
|
4628
|
-
id: string;
|
|
4629
4628
|
createdAt: string;
|
|
4630
4629
|
updatedAt: string;
|
|
4631
|
-
|
|
4630
|
+
id: string;
|
|
4632
4631
|
email: string;
|
|
4632
|
+
collaborationId: string;
|
|
4633
4633
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
4634
|
-
decision: "
|
|
4634
|
+
decision: "REJECTED" | "APPROVED" | "PENDING";
|
|
4635
4635
|
isTermsAndConditionsConfirmed: boolean;
|
|
4636
4636
|
emailType: "INTRODUCTION" | "COLLABORATION" | "BOTH";
|
|
4637
4637
|
introductionEmailSent: boolean;
|
|
4638
4638
|
collaborationEmailSent: boolean;
|
|
4639
4639
|
clientContactId?: string | null | undefined;
|
|
4640
4640
|
collaboration?: {
|
|
4641
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4642
|
-
id: string;
|
|
4643
4641
|
createdAt: string;
|
|
4644
4642
|
updatedAt: string;
|
|
4643
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4644
|
+
id: string;
|
|
4645
4645
|
userId: string;
|
|
4646
4646
|
company?: {
|
|
4647
|
-
id: string;
|
|
4648
4647
|
createdAt: string;
|
|
4649
4648
|
updatedAt: string;
|
|
4649
|
+
id: string;
|
|
4650
4650
|
name: string;
|
|
4651
4651
|
} | null | undefined;
|
|
4652
4652
|
client?: {
|
|
4653
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4654
|
-
id: string;
|
|
4655
4653
|
createdAt: string;
|
|
4656
4654
|
updatedAt: string;
|
|
4655
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4656
|
+
id: string;
|
|
4657
4657
|
name: string;
|
|
4658
4658
|
crn: string | null;
|
|
4659
4659
|
govLink: string;
|
|
@@ -4671,9 +4671,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
4671
4671
|
} | null | undefined;
|
|
4672
4672
|
} | null | undefined;
|
|
4673
4673
|
user?: {
|
|
4674
|
-
id: string;
|
|
4675
4674
|
createdAt: string;
|
|
4676
4675
|
updatedAt: string;
|
|
4676
|
+
id: string;
|
|
4677
4677
|
firstName: string;
|
|
4678
4678
|
lastName: string;
|
|
4679
4679
|
email: string;
|
|
@@ -4682,22 +4682,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
4682
4682
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4683
4683
|
} | null | undefined;
|
|
4684
4684
|
newCollaboration?: {
|
|
4685
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4686
|
-
id: string;
|
|
4687
4685
|
createdAt: string;
|
|
4688
4686
|
updatedAt: string;
|
|
4687
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4688
|
+
id: string;
|
|
4689
4689
|
userId: string;
|
|
4690
4690
|
company?: {
|
|
4691
|
-
id: string;
|
|
4692
4691
|
createdAt: string;
|
|
4693
4692
|
updatedAt: string;
|
|
4693
|
+
id: string;
|
|
4694
4694
|
name: string;
|
|
4695
4695
|
} | null | undefined;
|
|
4696
4696
|
client?: {
|
|
4697
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4698
|
-
id: string;
|
|
4699
4697
|
createdAt: string;
|
|
4700
4698
|
updatedAt: string;
|
|
4699
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4700
|
+
id: string;
|
|
4701
4701
|
name: string;
|
|
4702
4702
|
crn: string | null;
|
|
4703
4703
|
govLink: string;
|
|
@@ -4715,9 +4715,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
4715
4715
|
} | null | undefined;
|
|
4716
4716
|
} | null | undefined;
|
|
4717
4717
|
user?: {
|
|
4718
|
-
id: string;
|
|
4719
4718
|
createdAt: string;
|
|
4720
4719
|
updatedAt: string;
|
|
4720
|
+
id: string;
|
|
4721
4721
|
firstName: string;
|
|
4722
4722
|
lastName: string;
|
|
4723
4723
|
email: string;
|
|
@@ -4734,35 +4734,35 @@ export declare const collaborationCheckingsContract: {
|
|
|
4734
4734
|
collaborationEmailTimestamp?: string | null | undefined;
|
|
4735
4735
|
checkingComment?: string | null | undefined;
|
|
4736
4736
|
}, {
|
|
4737
|
-
id: string;
|
|
4738
4737
|
createdAt: string | Date;
|
|
4739
4738
|
updatedAt: string | Date;
|
|
4740
|
-
|
|
4739
|
+
id: string;
|
|
4741
4740
|
email: string;
|
|
4741
|
+
collaborationId: string;
|
|
4742
4742
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
4743
|
-
decision: "
|
|
4743
|
+
decision: "REJECTED" | "APPROVED" | "PENDING";
|
|
4744
4744
|
isTermsAndConditionsConfirmed: boolean;
|
|
4745
4745
|
emailType: "INTRODUCTION" | "COLLABORATION" | "BOTH";
|
|
4746
4746
|
introductionEmailSent: boolean;
|
|
4747
4747
|
collaborationEmailSent: boolean;
|
|
4748
4748
|
clientContactId?: string | null | undefined;
|
|
4749
4749
|
collaboration?: {
|
|
4750
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4751
|
-
id: string;
|
|
4752
4750
|
createdAt: string | Date;
|
|
4753
4751
|
updatedAt: string | Date;
|
|
4752
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4753
|
+
id: string;
|
|
4754
4754
|
userId: string;
|
|
4755
4755
|
company?: {
|
|
4756
|
-
id: string;
|
|
4757
4756
|
createdAt: string | Date;
|
|
4758
4757
|
updatedAt: string | Date;
|
|
4758
|
+
id: string;
|
|
4759
4759
|
name: string;
|
|
4760
4760
|
} | null | undefined;
|
|
4761
4761
|
client?: {
|
|
4762
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4763
|
-
id: string;
|
|
4764
4762
|
createdAt: string | Date;
|
|
4765
4763
|
updatedAt: string | Date;
|
|
4764
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4765
|
+
id: string;
|
|
4766
4766
|
name: string;
|
|
4767
4767
|
crn: string | null;
|
|
4768
4768
|
govLink: string;
|
|
@@ -4780,9 +4780,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
4780
4780
|
} | null | undefined;
|
|
4781
4781
|
} | null | undefined;
|
|
4782
4782
|
user?: {
|
|
4783
|
-
id: string;
|
|
4784
4783
|
createdAt: string | Date;
|
|
4785
4784
|
updatedAt: string | Date;
|
|
4785
|
+
id: string;
|
|
4786
4786
|
firstName: string;
|
|
4787
4787
|
lastName: string;
|
|
4788
4788
|
email: string;
|
|
@@ -4791,22 +4791,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
4791
4791
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4792
4792
|
} | null | undefined;
|
|
4793
4793
|
newCollaboration?: {
|
|
4794
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4795
|
-
id: string;
|
|
4796
4794
|
createdAt: string | Date;
|
|
4797
4795
|
updatedAt: string | Date;
|
|
4796
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4797
|
+
id: string;
|
|
4798
4798
|
userId: string;
|
|
4799
4799
|
company?: {
|
|
4800
|
-
id: string;
|
|
4801
4800
|
createdAt: string | Date;
|
|
4802
4801
|
updatedAt: string | Date;
|
|
4802
|
+
id: string;
|
|
4803
4803
|
name: string;
|
|
4804
4804
|
} | null | undefined;
|
|
4805
4805
|
client?: {
|
|
4806
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4807
|
-
id: string;
|
|
4808
4806
|
createdAt: string | Date;
|
|
4809
4807
|
updatedAt: string | Date;
|
|
4808
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4809
|
+
id: string;
|
|
4810
4810
|
name: string;
|
|
4811
4811
|
crn: string | null;
|
|
4812
4812
|
govLink: string;
|
|
@@ -4824,9 +4824,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
4824
4824
|
} | null | undefined;
|
|
4825
4825
|
} | null | undefined;
|
|
4826
4826
|
user?: {
|
|
4827
|
-
id: string;
|
|
4828
4827
|
createdAt: string | Date;
|
|
4829
4828
|
updatedAt: string | Date;
|
|
4829
|
+
id: string;
|
|
4830
4830
|
firstName: string;
|
|
4831
4831
|
lastName: string;
|
|
4832
4832
|
email: string;
|
|
@@ -4898,10 +4898,10 @@ export declare const collaborationCheckingsContract: {
|
|
|
4898
4898
|
checkingComment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4899
4899
|
clientContactId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4900
4900
|
}, "strip", z.ZodTypeAny, {
|
|
4901
|
-
clientContactId?: string | null | undefined;
|
|
4902
4901
|
email?: string | null | undefined;
|
|
4902
|
+
clientContactId?: string | null | undefined;
|
|
4903
4903
|
urgency?: "LOW" | "MEDIUM" | "HIGH" | null | undefined;
|
|
4904
|
-
decision?: "
|
|
4904
|
+
decision?: "REJECTED" | "APPROVED" | "PENDING" | null | undefined;
|
|
4905
4905
|
decisionComment?: string | null | undefined;
|
|
4906
4906
|
isTermsAndConditionsConfirmed?: boolean | null | undefined;
|
|
4907
4907
|
emailType?: "INTRODUCTION" | "COLLABORATION" | "BOTH" | null | undefined;
|
|
@@ -4909,10 +4909,10 @@ export declare const collaborationCheckingsContract: {
|
|
|
4909
4909
|
collaborationEmailSent?: boolean | null | undefined;
|
|
4910
4910
|
checkingComment?: string | null | undefined;
|
|
4911
4911
|
}, {
|
|
4912
|
-
clientContactId?: string | null | undefined;
|
|
4913
4912
|
email?: string | null | undefined;
|
|
4913
|
+
clientContactId?: string | null | undefined;
|
|
4914
4914
|
urgency?: "LOW" | "MEDIUM" | "HIGH" | null | undefined;
|
|
4915
|
-
decision?: "
|
|
4915
|
+
decision?: "REJECTED" | "APPROVED" | "PENDING" | null | undefined;
|
|
4916
4916
|
decisionComment?: string | null | undefined;
|
|
4917
4917
|
isTermsAndConditionsConfirmed?: boolean | null | undefined;
|
|
4918
4918
|
emailType?: "INTRODUCTION" | "COLLABORATION" | "BOTH" | null | undefined;
|
|
@@ -5034,14 +5034,14 @@ export declare const collaborationCheckingsContract: {
|
|
|
5034
5034
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5035
5035
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5036
5036
|
}, "strip", z.ZodTypeAny, {
|
|
5037
|
-
id: string;
|
|
5038
5037
|
createdAt: string;
|
|
5039
5038
|
updatedAt: string;
|
|
5039
|
+
id: string;
|
|
5040
5040
|
name: string;
|
|
5041
5041
|
}, {
|
|
5042
|
-
id: string;
|
|
5043
5042
|
createdAt: string | Date;
|
|
5044
5043
|
updatedAt: string | Date;
|
|
5044
|
+
id: string;
|
|
5045
5045
|
name: string;
|
|
5046
5046
|
}>>>;
|
|
5047
5047
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -5079,10 +5079,10 @@ export declare const collaborationCheckingsContract: {
|
|
|
5079
5079
|
agentId: string;
|
|
5080
5080
|
}>>>;
|
|
5081
5081
|
}, "strip", z.ZodTypeAny, {
|
|
5082
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5083
|
-
id: string;
|
|
5084
5082
|
createdAt: string;
|
|
5085
5083
|
updatedAt: string;
|
|
5084
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5085
|
+
id: string;
|
|
5086
5086
|
name: string;
|
|
5087
5087
|
crn: string | null;
|
|
5088
5088
|
govLink: string;
|
|
@@ -5099,10 +5099,10 @@ export declare const collaborationCheckingsContract: {
|
|
|
5099
5099
|
agentId: string;
|
|
5100
5100
|
} | null | undefined;
|
|
5101
5101
|
}, {
|
|
5102
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5103
|
-
id: string;
|
|
5104
5102
|
createdAt: string | Date;
|
|
5105
5103
|
updatedAt: string | Date;
|
|
5104
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5105
|
+
id: string;
|
|
5106
5106
|
name: string;
|
|
5107
5107
|
crn: string | null;
|
|
5108
5108
|
govLink: string;
|
|
@@ -5124,15 +5124,15 @@ export declare const collaborationCheckingsContract: {
|
|
|
5124
5124
|
firstName: z.ZodString;
|
|
5125
5125
|
lastName: z.ZodString;
|
|
5126
5126
|
email: z.ZodString;
|
|
5127
|
-
phone: z.
|
|
5127
|
+
phone: z.ZodString;
|
|
5128
5128
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
5129
5129
|
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"]>>>;
|
|
5130
5130
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5131
5131
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5132
5132
|
}, "strip", z.ZodTypeAny, {
|
|
5133
|
-
id: string;
|
|
5134
5133
|
createdAt: string;
|
|
5135
5134
|
updatedAt: string;
|
|
5135
|
+
id: string;
|
|
5136
5136
|
firstName: string;
|
|
5137
5137
|
lastName: string;
|
|
5138
5138
|
email: string;
|
|
@@ -5140,9 +5140,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
5140
5140
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
5141
5141
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
5142
5142
|
}, {
|
|
5143
|
-
id: string;
|
|
5144
5143
|
createdAt: string | Date;
|
|
5145
5144
|
updatedAt: string | Date;
|
|
5145
|
+
id: string;
|
|
5146
5146
|
firstName: string;
|
|
5147
5147
|
lastName: string;
|
|
5148
5148
|
email: string;
|
|
@@ -5150,7 +5150,7 @@ export declare const collaborationCheckingsContract: {
|
|
|
5150
5150
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
5151
5151
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
5152
5152
|
}>>>;
|
|
5153
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
5153
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
5154
5154
|
userId: z.ZodString;
|
|
5155
5155
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5156
5156
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -5163,14 +5163,14 @@ export declare const collaborationCheckingsContract: {
|
|
|
5163
5163
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5164
5164
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5165
5165
|
}, "strip", z.ZodTypeAny, {
|
|
5166
|
-
id: string;
|
|
5167
5166
|
createdAt: string;
|
|
5168
5167
|
updatedAt: string;
|
|
5168
|
+
id: string;
|
|
5169
5169
|
name: string;
|
|
5170
5170
|
}, {
|
|
5171
|
-
id: string;
|
|
5172
5171
|
createdAt: string | Date;
|
|
5173
5172
|
updatedAt: string | Date;
|
|
5173
|
+
id: string;
|
|
5174
5174
|
name: string;
|
|
5175
5175
|
}>>>;
|
|
5176
5176
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -5208,10 +5208,10 @@ export declare const collaborationCheckingsContract: {
|
|
|
5208
5208
|
agentId: string;
|
|
5209
5209
|
}>>>;
|
|
5210
5210
|
}, "strip", z.ZodTypeAny, {
|
|
5211
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5212
|
-
id: string;
|
|
5213
5211
|
createdAt: string;
|
|
5214
5212
|
updatedAt: string;
|
|
5213
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5214
|
+
id: string;
|
|
5215
5215
|
name: string;
|
|
5216
5216
|
crn: string | null;
|
|
5217
5217
|
govLink: string;
|
|
@@ -5228,10 +5228,10 @@ export declare const collaborationCheckingsContract: {
|
|
|
5228
5228
|
agentId: string;
|
|
5229
5229
|
} | null | undefined;
|
|
5230
5230
|
}, {
|
|
5231
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5232
|
-
id: string;
|
|
5233
5231
|
createdAt: string | Date;
|
|
5234
5232
|
updatedAt: string | Date;
|
|
5233
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5234
|
+
id: string;
|
|
5235
5235
|
name: string;
|
|
5236
5236
|
crn: string | null;
|
|
5237
5237
|
govLink: string;
|
|
@@ -5253,15 +5253,15 @@ export declare const collaborationCheckingsContract: {
|
|
|
5253
5253
|
firstName: z.ZodString;
|
|
5254
5254
|
lastName: z.ZodString;
|
|
5255
5255
|
email: z.ZodString;
|
|
5256
|
-
phone: z.
|
|
5256
|
+
phone: z.ZodString;
|
|
5257
5257
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
5258
5258
|
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"]>>>;
|
|
5259
5259
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5260
5260
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5261
5261
|
}, "strip", z.ZodTypeAny, {
|
|
5262
|
-
id: string;
|
|
5263
5262
|
createdAt: string;
|
|
5264
5263
|
updatedAt: string;
|
|
5264
|
+
id: string;
|
|
5265
5265
|
firstName: string;
|
|
5266
5266
|
lastName: string;
|
|
5267
5267
|
email: string;
|
|
@@ -5269,9 +5269,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
5269
5269
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
5270
5270
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
5271
5271
|
}, {
|
|
5272
|
-
id: string;
|
|
5273
5272
|
createdAt: string | Date;
|
|
5274
5273
|
updatedAt: string | Date;
|
|
5274
|
+
id: string;
|
|
5275
5275
|
firstName: string;
|
|
5276
5276
|
lastName: string;
|
|
5277
5277
|
email: string;
|
|
@@ -5279,27 +5279,27 @@ export declare const collaborationCheckingsContract: {
|
|
|
5279
5279
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
5280
5280
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
5281
5281
|
}>>>;
|
|
5282
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
5282
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
5283
5283
|
userId: z.ZodString;
|
|
5284
5284
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5285
5285
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5286
5286
|
}, "strip", z.ZodTypeAny, {
|
|
5287
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5288
|
-
id: string;
|
|
5289
5287
|
createdAt: string;
|
|
5290
5288
|
updatedAt: string;
|
|
5289
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5290
|
+
id: string;
|
|
5291
5291
|
userId: string;
|
|
5292
5292
|
company?: {
|
|
5293
|
-
id: string;
|
|
5294
5293
|
createdAt: string;
|
|
5295
5294
|
updatedAt: string;
|
|
5295
|
+
id: string;
|
|
5296
5296
|
name: string;
|
|
5297
5297
|
} | null | undefined;
|
|
5298
5298
|
client?: {
|
|
5299
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5300
|
-
id: string;
|
|
5301
5299
|
createdAt: string;
|
|
5302
5300
|
updatedAt: string;
|
|
5301
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5302
|
+
id: string;
|
|
5303
5303
|
name: string;
|
|
5304
5304
|
crn: string | null;
|
|
5305
5305
|
govLink: string;
|
|
@@ -5317,9 +5317,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
5317
5317
|
} | null | undefined;
|
|
5318
5318
|
} | null | undefined;
|
|
5319
5319
|
user?: {
|
|
5320
|
-
id: string;
|
|
5321
5320
|
createdAt: string;
|
|
5322
5321
|
updatedAt: string;
|
|
5322
|
+
id: string;
|
|
5323
5323
|
firstName: string;
|
|
5324
5324
|
lastName: string;
|
|
5325
5325
|
email: string;
|
|
@@ -5328,22 +5328,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
5328
5328
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
5329
5329
|
} | null | undefined;
|
|
5330
5330
|
}, {
|
|
5331
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5332
|
-
id: string;
|
|
5333
5331
|
createdAt: string | Date;
|
|
5334
5332
|
updatedAt: string | Date;
|
|
5333
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5334
|
+
id: string;
|
|
5335
5335
|
userId: string;
|
|
5336
5336
|
company?: {
|
|
5337
|
-
id: string;
|
|
5338
5337
|
createdAt: string | Date;
|
|
5339
5338
|
updatedAt: string | Date;
|
|
5339
|
+
id: string;
|
|
5340
5340
|
name: string;
|
|
5341
5341
|
} | null | undefined;
|
|
5342
5342
|
client?: {
|
|
5343
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5344
|
-
id: string;
|
|
5345
5343
|
createdAt: string | Date;
|
|
5346
5344
|
updatedAt: string | Date;
|
|
5345
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5346
|
+
id: string;
|
|
5347
5347
|
name: string;
|
|
5348
5348
|
crn: string | null;
|
|
5349
5349
|
govLink: string;
|
|
@@ -5361,9 +5361,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
5361
5361
|
} | null | undefined;
|
|
5362
5362
|
} | null | undefined;
|
|
5363
5363
|
user?: {
|
|
5364
|
-
id: string;
|
|
5365
5364
|
createdAt: string | Date;
|
|
5366
5365
|
updatedAt: string | Date;
|
|
5366
|
+
id: string;
|
|
5367
5367
|
firstName: string;
|
|
5368
5368
|
lastName: string;
|
|
5369
5369
|
email: string;
|
|
@@ -5373,22 +5373,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
5373
5373
|
} | null | undefined;
|
|
5374
5374
|
}>>>;
|
|
5375
5375
|
}, "strip", z.ZodTypeAny, {
|
|
5376
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5377
|
-
id: string;
|
|
5378
5376
|
createdAt: string;
|
|
5379
5377
|
updatedAt: string;
|
|
5378
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5379
|
+
id: string;
|
|
5380
5380
|
userId: string;
|
|
5381
5381
|
company?: {
|
|
5382
|
-
id: string;
|
|
5383
5382
|
createdAt: string;
|
|
5384
5383
|
updatedAt: string;
|
|
5384
|
+
id: string;
|
|
5385
5385
|
name: string;
|
|
5386
5386
|
} | null | undefined;
|
|
5387
5387
|
client?: {
|
|
5388
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5389
|
-
id: string;
|
|
5390
5388
|
createdAt: string;
|
|
5391
5389
|
updatedAt: string;
|
|
5390
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5391
|
+
id: string;
|
|
5392
5392
|
name: string;
|
|
5393
5393
|
crn: string | null;
|
|
5394
5394
|
govLink: string;
|
|
@@ -5406,9 +5406,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
5406
5406
|
} | null | undefined;
|
|
5407
5407
|
} | null | undefined;
|
|
5408
5408
|
user?: {
|
|
5409
|
-
id: string;
|
|
5410
5409
|
createdAt: string;
|
|
5411
5410
|
updatedAt: string;
|
|
5411
|
+
id: string;
|
|
5412
5412
|
firstName: string;
|
|
5413
5413
|
lastName: string;
|
|
5414
5414
|
email: string;
|
|
@@ -5417,22 +5417,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
5417
5417
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
5418
5418
|
} | null | undefined;
|
|
5419
5419
|
newCollaboration?: {
|
|
5420
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5421
|
-
id: string;
|
|
5422
5420
|
createdAt: string;
|
|
5423
5421
|
updatedAt: string;
|
|
5422
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5423
|
+
id: string;
|
|
5424
5424
|
userId: string;
|
|
5425
5425
|
company?: {
|
|
5426
|
-
id: string;
|
|
5427
5426
|
createdAt: string;
|
|
5428
5427
|
updatedAt: string;
|
|
5428
|
+
id: string;
|
|
5429
5429
|
name: string;
|
|
5430
5430
|
} | null | undefined;
|
|
5431
5431
|
client?: {
|
|
5432
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5433
|
-
id: string;
|
|
5434
5432
|
createdAt: string;
|
|
5435
5433
|
updatedAt: string;
|
|
5434
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5435
|
+
id: string;
|
|
5436
5436
|
name: string;
|
|
5437
5437
|
crn: string | null;
|
|
5438
5438
|
govLink: string;
|
|
@@ -5450,9 +5450,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
5450
5450
|
} | null | undefined;
|
|
5451
5451
|
} | null | undefined;
|
|
5452
5452
|
user?: {
|
|
5453
|
-
id: string;
|
|
5454
5453
|
createdAt: string;
|
|
5455
5454
|
updatedAt: string;
|
|
5455
|
+
id: string;
|
|
5456
5456
|
firstName: string;
|
|
5457
5457
|
lastName: string;
|
|
5458
5458
|
email: string;
|
|
@@ -5462,22 +5462,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
5462
5462
|
} | null | undefined;
|
|
5463
5463
|
} | null | undefined;
|
|
5464
5464
|
}, {
|
|
5465
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5466
|
-
id: string;
|
|
5467
5465
|
createdAt: string | Date;
|
|
5468
5466
|
updatedAt: string | Date;
|
|
5467
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5468
|
+
id: string;
|
|
5469
5469
|
userId: string;
|
|
5470
5470
|
company?: {
|
|
5471
|
-
id: string;
|
|
5472
5471
|
createdAt: string | Date;
|
|
5473
5472
|
updatedAt: string | Date;
|
|
5473
|
+
id: string;
|
|
5474
5474
|
name: string;
|
|
5475
5475
|
} | null | undefined;
|
|
5476
5476
|
client?: {
|
|
5477
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5478
|
-
id: string;
|
|
5479
5477
|
createdAt: string | Date;
|
|
5480
5478
|
updatedAt: string | Date;
|
|
5479
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5480
|
+
id: string;
|
|
5481
5481
|
name: string;
|
|
5482
5482
|
crn: string | null;
|
|
5483
5483
|
govLink: string;
|
|
@@ -5495,9 +5495,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
5495
5495
|
} | null | undefined;
|
|
5496
5496
|
} | null | undefined;
|
|
5497
5497
|
user?: {
|
|
5498
|
-
id: string;
|
|
5499
5498
|
createdAt: string | Date;
|
|
5500
5499
|
updatedAt: string | Date;
|
|
5500
|
+
id: string;
|
|
5501
5501
|
firstName: string;
|
|
5502
5502
|
lastName: string;
|
|
5503
5503
|
email: string;
|
|
@@ -5506,22 +5506,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
5506
5506
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
5507
5507
|
} | null | undefined;
|
|
5508
5508
|
newCollaboration?: {
|
|
5509
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5510
|
-
id: string;
|
|
5511
5509
|
createdAt: string | Date;
|
|
5512
5510
|
updatedAt: string | Date;
|
|
5511
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5512
|
+
id: string;
|
|
5513
5513
|
userId: string;
|
|
5514
5514
|
company?: {
|
|
5515
|
-
id: string;
|
|
5516
5515
|
createdAt: string | Date;
|
|
5517
5516
|
updatedAt: string | Date;
|
|
5517
|
+
id: string;
|
|
5518
5518
|
name: string;
|
|
5519
5519
|
} | null | undefined;
|
|
5520
5520
|
client?: {
|
|
5521
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5522
|
-
id: string;
|
|
5523
5521
|
createdAt: string | Date;
|
|
5524
5522
|
updatedAt: string | Date;
|
|
5523
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5524
|
+
id: string;
|
|
5525
5525
|
name: string;
|
|
5526
5526
|
crn: string | null;
|
|
5527
5527
|
govLink: string;
|
|
@@ -5539,9 +5539,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
5539
5539
|
} | null | undefined;
|
|
5540
5540
|
} | null | undefined;
|
|
5541
5541
|
user?: {
|
|
5542
|
-
id: string;
|
|
5543
5542
|
createdAt: string | Date;
|
|
5544
5543
|
updatedAt: string | Date;
|
|
5544
|
+
id: string;
|
|
5545
5545
|
firstName: string;
|
|
5546
5546
|
lastName: string;
|
|
5547
5547
|
email: string;
|
|
@@ -5567,35 +5567,35 @@ export declare const collaborationCheckingsContract: {
|
|
|
5567
5567
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5568
5568
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5569
5569
|
}, "strip", z.ZodTypeAny, {
|
|
5570
|
-
id: string;
|
|
5571
5570
|
createdAt: string;
|
|
5572
5571
|
updatedAt: string;
|
|
5573
|
-
|
|
5572
|
+
id: string;
|
|
5574
5573
|
email: string;
|
|
5574
|
+
collaborationId: string;
|
|
5575
5575
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
5576
|
-
decision: "
|
|
5576
|
+
decision: "REJECTED" | "APPROVED" | "PENDING";
|
|
5577
5577
|
isTermsAndConditionsConfirmed: boolean;
|
|
5578
5578
|
emailType: "INTRODUCTION" | "COLLABORATION" | "BOTH";
|
|
5579
5579
|
introductionEmailSent: boolean;
|
|
5580
5580
|
collaborationEmailSent: boolean;
|
|
5581
5581
|
clientContactId?: string | null | undefined;
|
|
5582
5582
|
collaboration?: {
|
|
5583
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5584
|
-
id: string;
|
|
5585
5583
|
createdAt: string;
|
|
5586
5584
|
updatedAt: string;
|
|
5585
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5586
|
+
id: string;
|
|
5587
5587
|
userId: string;
|
|
5588
5588
|
company?: {
|
|
5589
|
-
id: string;
|
|
5590
5589
|
createdAt: string;
|
|
5591
5590
|
updatedAt: string;
|
|
5591
|
+
id: string;
|
|
5592
5592
|
name: string;
|
|
5593
5593
|
} | null | undefined;
|
|
5594
5594
|
client?: {
|
|
5595
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5596
|
-
id: string;
|
|
5597
5595
|
createdAt: string;
|
|
5598
5596
|
updatedAt: string;
|
|
5597
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5598
|
+
id: string;
|
|
5599
5599
|
name: string;
|
|
5600
5600
|
crn: string | null;
|
|
5601
5601
|
govLink: string;
|
|
@@ -5613,9 +5613,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
5613
5613
|
} | null | undefined;
|
|
5614
5614
|
} | null | undefined;
|
|
5615
5615
|
user?: {
|
|
5616
|
-
id: string;
|
|
5617
5616
|
createdAt: string;
|
|
5618
5617
|
updatedAt: string;
|
|
5618
|
+
id: string;
|
|
5619
5619
|
firstName: string;
|
|
5620
5620
|
lastName: string;
|
|
5621
5621
|
email: string;
|
|
@@ -5624,22 +5624,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
5624
5624
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
5625
5625
|
} | null | undefined;
|
|
5626
5626
|
newCollaboration?: {
|
|
5627
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5628
|
-
id: string;
|
|
5629
5627
|
createdAt: string;
|
|
5630
5628
|
updatedAt: string;
|
|
5629
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5630
|
+
id: string;
|
|
5631
5631
|
userId: string;
|
|
5632
5632
|
company?: {
|
|
5633
|
-
id: string;
|
|
5634
5633
|
createdAt: string;
|
|
5635
5634
|
updatedAt: string;
|
|
5635
|
+
id: string;
|
|
5636
5636
|
name: string;
|
|
5637
5637
|
} | null | undefined;
|
|
5638
5638
|
client?: {
|
|
5639
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5640
|
-
id: string;
|
|
5641
5639
|
createdAt: string;
|
|
5642
5640
|
updatedAt: string;
|
|
5641
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5642
|
+
id: string;
|
|
5643
5643
|
name: string;
|
|
5644
5644
|
crn: string | null;
|
|
5645
5645
|
govLink: string;
|
|
@@ -5657,9 +5657,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
5657
5657
|
} | null | undefined;
|
|
5658
5658
|
} | null | undefined;
|
|
5659
5659
|
user?: {
|
|
5660
|
-
id: string;
|
|
5661
5660
|
createdAt: string;
|
|
5662
5661
|
updatedAt: string;
|
|
5662
|
+
id: string;
|
|
5663
5663
|
firstName: string;
|
|
5664
5664
|
lastName: string;
|
|
5665
5665
|
email: string;
|
|
@@ -5676,35 +5676,35 @@ export declare const collaborationCheckingsContract: {
|
|
|
5676
5676
|
collaborationEmailTimestamp?: string | null | undefined;
|
|
5677
5677
|
checkingComment?: string | null | undefined;
|
|
5678
5678
|
}, {
|
|
5679
|
-
id: string;
|
|
5680
5679
|
createdAt: string | Date;
|
|
5681
5680
|
updatedAt: string | Date;
|
|
5682
|
-
|
|
5681
|
+
id: string;
|
|
5683
5682
|
email: string;
|
|
5683
|
+
collaborationId: string;
|
|
5684
5684
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
5685
|
-
decision: "
|
|
5685
|
+
decision: "REJECTED" | "APPROVED" | "PENDING";
|
|
5686
5686
|
isTermsAndConditionsConfirmed: boolean;
|
|
5687
5687
|
emailType: "INTRODUCTION" | "COLLABORATION" | "BOTH";
|
|
5688
5688
|
introductionEmailSent: boolean;
|
|
5689
5689
|
collaborationEmailSent: boolean;
|
|
5690
5690
|
clientContactId?: string | null | undefined;
|
|
5691
5691
|
collaboration?: {
|
|
5692
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5693
|
-
id: string;
|
|
5694
5692
|
createdAt: string | Date;
|
|
5695
5693
|
updatedAt: string | Date;
|
|
5694
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5695
|
+
id: string;
|
|
5696
5696
|
userId: string;
|
|
5697
5697
|
company?: {
|
|
5698
|
-
id: string;
|
|
5699
5698
|
createdAt: string | Date;
|
|
5700
5699
|
updatedAt: string | Date;
|
|
5700
|
+
id: string;
|
|
5701
5701
|
name: string;
|
|
5702
5702
|
} | null | undefined;
|
|
5703
5703
|
client?: {
|
|
5704
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5705
|
-
id: string;
|
|
5706
5704
|
createdAt: string | Date;
|
|
5707
5705
|
updatedAt: string | Date;
|
|
5706
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5707
|
+
id: string;
|
|
5708
5708
|
name: string;
|
|
5709
5709
|
crn: string | null;
|
|
5710
5710
|
govLink: string;
|
|
@@ -5722,9 +5722,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
5722
5722
|
} | null | undefined;
|
|
5723
5723
|
} | null | undefined;
|
|
5724
5724
|
user?: {
|
|
5725
|
-
id: string;
|
|
5726
5725
|
createdAt: string | Date;
|
|
5727
5726
|
updatedAt: string | Date;
|
|
5727
|
+
id: string;
|
|
5728
5728
|
firstName: string;
|
|
5729
5729
|
lastName: string;
|
|
5730
5730
|
email: string;
|
|
@@ -5733,22 +5733,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
5733
5733
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
5734
5734
|
} | null | undefined;
|
|
5735
5735
|
newCollaboration?: {
|
|
5736
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5737
|
-
id: string;
|
|
5738
5736
|
createdAt: string | Date;
|
|
5739
5737
|
updatedAt: string | Date;
|
|
5738
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5739
|
+
id: string;
|
|
5740
5740
|
userId: string;
|
|
5741
5741
|
company?: {
|
|
5742
|
-
id: string;
|
|
5743
5742
|
createdAt: string | Date;
|
|
5744
5743
|
updatedAt: string | Date;
|
|
5744
|
+
id: string;
|
|
5745
5745
|
name: string;
|
|
5746
5746
|
} | null | undefined;
|
|
5747
5747
|
client?: {
|
|
5748
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5749
|
-
id: string;
|
|
5750
5748
|
createdAt: string | Date;
|
|
5751
5749
|
updatedAt: string | Date;
|
|
5750
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5751
|
+
id: string;
|
|
5752
5752
|
name: string;
|
|
5753
5753
|
crn: string | null;
|
|
5754
5754
|
govLink: string;
|
|
@@ -5766,9 +5766,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
5766
5766
|
} | null | undefined;
|
|
5767
5767
|
} | null | undefined;
|
|
5768
5768
|
user?: {
|
|
5769
|
-
id: string;
|
|
5770
5769
|
createdAt: string | Date;
|
|
5771
5770
|
updatedAt: string | Date;
|
|
5771
|
+
id: string;
|
|
5772
5772
|
firstName: string;
|
|
5773
5773
|
lastName: string;
|
|
5774
5774
|
email: string;
|