@dakkitor/api-contracts 1.1.83 → 1.1.84
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/actives/actives.contract.d.ts +3475 -3475
- package/dist/bookings/bookings.contract.d.ts +2990 -2990
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +576 -576
- package/dist/collaborations/collaborations.contract.d.ts +470 -470
- package/dist/common/common-schemas.d.ts +11 -0
- package/dist/common/common-schemas.d.ts.map +1 -1
- package/dist/common/common-schemas.js +13 -2
- package/dist/curated-workers/curated-workers.contract.d.ts +20 -20
- package/dist/curated-workers/curated-workers.contract.d.ts.map +1 -1
- package/dist/curated-workers/curated-workers.contract.js +1 -11
- package/dist/dashboards/dashboard.contract.d.ts +28 -28
- package/dist/jobs/jobs.contract.d.ts.map +1 -1
- package/dist/jobs/jobs.contract.js +1 -11
- package/dist/workers/workers.contract.d.ts +227 -227
- package/dist/workers/workers.contract.d.ts.map +1 -1
- package/dist/workers/workers.contract.js +17 -15
- 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;
|
|
14
15
|
createdAt: string;
|
|
15
16
|
updatedAt: string;
|
|
16
|
-
id: string;
|
|
17
17
|
name: string;
|
|
18
18
|
}, {
|
|
19
|
+
id: string;
|
|
19
20
|
createdAt: string | Date;
|
|
20
21
|
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
|
+
id: string;
|
|
60
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
59
61
|
createdAt: string;
|
|
60
62
|
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
|
+
id: string;
|
|
80
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
79
81
|
createdAt: string | Date;
|
|
80
82
|
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;
|
|
@@ -107,9 +107,9 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
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;
|
|
110
111
|
createdAt: string;
|
|
111
112
|
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;
|
|
120
121
|
createdAt: string | Date;
|
|
121
122
|
updatedAt: string | Date;
|
|
122
|
-
id: string;
|
|
123
123
|
firstName: string;
|
|
124
124
|
lastName: string;
|
|
125
125
|
email: string;
|
|
@@ -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;
|
|
143
144
|
createdAt: string;
|
|
144
145
|
updatedAt: string;
|
|
145
|
-
id: string;
|
|
146
146
|
name: string;
|
|
147
147
|
}, {
|
|
148
|
+
id: string;
|
|
148
149
|
createdAt: string | Date;
|
|
149
150
|
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
|
+
id: string;
|
|
189
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
188
190
|
createdAt: string;
|
|
189
191
|
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
|
+
id: string;
|
|
209
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
208
210
|
createdAt: string | Date;
|
|
209
211
|
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;
|
|
@@ -236,9 +236,9 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
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;
|
|
239
240
|
createdAt: string;
|
|
240
241
|
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;
|
|
249
250
|
createdAt: string | Date;
|
|
250
251
|
updatedAt: string | Date;
|
|
251
|
-
id: string;
|
|
252
252
|
firstName: string;
|
|
253
253
|
lastName: string;
|
|
254
254
|
email: string;
|
|
@@ -261,22 +261,22 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
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
|
+
id: string;
|
|
265
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
264
266
|
createdAt: string;
|
|
265
267
|
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;
|
|
270
271
|
createdAt: string;
|
|
271
272
|
updatedAt: string;
|
|
272
|
-
id: string;
|
|
273
273
|
name: string;
|
|
274
274
|
} | null | undefined;
|
|
275
275
|
client?: {
|
|
276
|
+
id: string;
|
|
277
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
276
278
|
createdAt: string;
|
|
277
279
|
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;
|
|
297
298
|
createdAt: string;
|
|
298
299
|
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
|
+
id: string;
|
|
309
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
308
310
|
createdAt: string | Date;
|
|
309
311
|
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;
|
|
314
315
|
createdAt: string | Date;
|
|
315
316
|
updatedAt: string | Date;
|
|
316
|
-
id: string;
|
|
317
317
|
name: string;
|
|
318
318
|
} | null | undefined;
|
|
319
319
|
client?: {
|
|
320
|
+
id: string;
|
|
321
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
320
322
|
createdAt: string | Date;
|
|
321
323
|
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;
|
|
341
342
|
createdAt: string | Date;
|
|
342
343
|
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
|
+
id: string;
|
|
354
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
353
355
|
createdAt: string;
|
|
354
356
|
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;
|
|
359
360
|
createdAt: string;
|
|
360
361
|
updatedAt: string;
|
|
361
|
-
id: string;
|
|
362
362
|
name: string;
|
|
363
363
|
} | null | undefined;
|
|
364
364
|
client?: {
|
|
365
|
+
id: string;
|
|
366
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
365
367
|
createdAt: string;
|
|
366
368
|
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;
|
|
386
387
|
createdAt: string;
|
|
387
388
|
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
|
+
id: string;
|
|
398
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
397
399
|
createdAt: string;
|
|
398
400
|
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;
|
|
403
404
|
createdAt: string;
|
|
404
405
|
updatedAt: string;
|
|
405
|
-
id: string;
|
|
406
406
|
name: string;
|
|
407
407
|
} | null | undefined;
|
|
408
408
|
client?: {
|
|
409
|
+
id: string;
|
|
410
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
409
411
|
createdAt: string;
|
|
410
412
|
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;
|
|
430
431
|
createdAt: string;
|
|
431
432
|
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
|
+
id: string;
|
|
443
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
442
444
|
createdAt: string | Date;
|
|
443
445
|
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;
|
|
448
449
|
createdAt: string | Date;
|
|
449
450
|
updatedAt: string | Date;
|
|
450
|
-
id: string;
|
|
451
451
|
name: string;
|
|
452
452
|
} | null | undefined;
|
|
453
453
|
client?: {
|
|
454
|
+
id: string;
|
|
455
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
454
456
|
createdAt: string | Date;
|
|
455
457
|
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;
|
|
475
476
|
createdAt: string | Date;
|
|
476
477
|
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
|
+
id: string;
|
|
487
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
486
488
|
createdAt: string | Date;
|
|
487
489
|
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;
|
|
492
493
|
createdAt: string | Date;
|
|
493
494
|
updatedAt: string | Date;
|
|
494
|
-
id: string;
|
|
495
495
|
name: string;
|
|
496
496
|
} | null | undefined;
|
|
497
497
|
client?: {
|
|
498
|
+
id: string;
|
|
499
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
498
500
|
createdAt: string | Date;
|
|
499
501
|
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;
|
|
519
520
|
createdAt: string | Date;
|
|
520
521
|
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;
|
|
547
548
|
createdAt: string;
|
|
548
549
|
updatedAt: string;
|
|
549
|
-
id: string;
|
|
550
|
-
email: string;
|
|
551
550
|
collaborationId: string;
|
|
551
|
+
email: string;
|
|
552
552
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
553
|
-
decision: "
|
|
553
|
+
decision: "APPROVED" | "REJECTED" | "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
|
+
id: string;
|
|
561
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
560
562
|
createdAt: string;
|
|
561
563
|
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;
|
|
566
567
|
createdAt: string;
|
|
567
568
|
updatedAt: string;
|
|
568
|
-
id: string;
|
|
569
569
|
name: string;
|
|
570
570
|
} | null | undefined;
|
|
571
571
|
client?: {
|
|
572
|
+
id: string;
|
|
573
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
572
574
|
createdAt: string;
|
|
573
575
|
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;
|
|
593
594
|
createdAt: string;
|
|
594
595
|
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
|
+
id: string;
|
|
605
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
604
606
|
createdAt: string;
|
|
605
607
|
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;
|
|
610
611
|
createdAt: string;
|
|
611
612
|
updatedAt: string;
|
|
612
|
-
id: string;
|
|
613
613
|
name: string;
|
|
614
614
|
} | null | undefined;
|
|
615
615
|
client?: {
|
|
616
|
+
id: string;
|
|
617
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
616
618
|
createdAt: string;
|
|
617
619
|
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;
|
|
637
638
|
createdAt: string;
|
|
638
639
|
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;
|
|
656
657
|
createdAt: string | Date;
|
|
657
658
|
updatedAt: string | Date;
|
|
658
|
-
id: string;
|
|
659
|
-
email: string;
|
|
660
659
|
collaborationId: string;
|
|
660
|
+
email: string;
|
|
661
661
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
662
|
-
decision: "
|
|
662
|
+
decision: "APPROVED" | "REJECTED" | "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
|
+
id: string;
|
|
670
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
669
671
|
createdAt: string | Date;
|
|
670
672
|
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;
|
|
675
676
|
createdAt: string | Date;
|
|
676
677
|
updatedAt: string | Date;
|
|
677
|
-
id: string;
|
|
678
678
|
name: string;
|
|
679
679
|
} | null | undefined;
|
|
680
680
|
client?: {
|
|
681
|
+
id: string;
|
|
682
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
681
683
|
createdAt: string | Date;
|
|
682
684
|
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;
|
|
702
703
|
createdAt: string | Date;
|
|
703
704
|
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
|
+
id: string;
|
|
714
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
713
715
|
createdAt: string | Date;
|
|
714
716
|
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;
|
|
719
720
|
createdAt: string | Date;
|
|
720
721
|
updatedAt: string | Date;
|
|
721
|
-
id: string;
|
|
722
722
|
name: string;
|
|
723
723
|
} | null | undefined;
|
|
724
724
|
client?: {
|
|
725
|
+
id: string;
|
|
726
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
725
727
|
createdAt: string | Date;
|
|
726
728
|
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;
|
|
746
747
|
createdAt: string | Date;
|
|
747
748
|
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
|
-
email?: string | null | undefined;
|
|
817
816
|
clientContactId?: string | null | undefined;
|
|
817
|
+
email?: string | null | undefined;
|
|
818
818
|
urgency?: "LOW" | "MEDIUM" | "HIGH" | null | undefined;
|
|
819
|
-
decision?: "
|
|
819
|
+
decision?: "APPROVED" | "REJECTED" | "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
|
-
email?: string | null | undefined;
|
|
828
827
|
clientContactId?: string | null | undefined;
|
|
828
|
+
email?: string | null | undefined;
|
|
829
829
|
urgency?: "LOW" | "MEDIUM" | "HIGH" | null | undefined;
|
|
830
|
-
decision?: "
|
|
830
|
+
decision?: "APPROVED" | "REJECTED" | "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;
|
|
854
856
|
companyId?: string | undefined;
|
|
855
857
|
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;
|
|
864
862
|
sortBy?: "createdAt" | "updatedAt" | "urgency" | "decision" | "decisionTimestamp" | undefined;
|
|
865
863
|
sortOrder?: "ASC" | "DESC" | undefined;
|
|
866
864
|
urgency?: "LOW" | "MEDIUM" | "HIGH" | undefined;
|
|
867
|
-
decision?: "
|
|
865
|
+
decision?: "APPROVED" | "REJECTED" | "PENDING" | undefined;
|
|
866
|
+
companyId?: string | undefined;
|
|
867
|
+
clientId?: string | 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;
|
|
883
884
|
createdAt: string;
|
|
884
885
|
updatedAt: string;
|
|
885
|
-
id: string;
|
|
886
886
|
name: string;
|
|
887
887
|
}, {
|
|
888
|
+
id: string;
|
|
888
889
|
createdAt: string | Date;
|
|
889
890
|
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
|
+
id: string;
|
|
929
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
928
930
|
createdAt: string;
|
|
929
931
|
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
|
+
id: string;
|
|
949
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
948
950
|
createdAt: string | Date;
|
|
949
951
|
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;
|
|
@@ -976,9 +976,9 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
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;
|
|
979
980
|
createdAt: string;
|
|
980
981
|
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;
|
|
989
990
|
createdAt: string | Date;
|
|
990
991
|
updatedAt: string | Date;
|
|
991
|
-
id: string;
|
|
992
992
|
firstName: string;
|
|
993
993
|
lastName: string;
|
|
994
994
|
email: string;
|
|
@@ -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;
|
|
1012
1013
|
createdAt: string;
|
|
1013
1014
|
updatedAt: string;
|
|
1014
|
-
id: string;
|
|
1015
1015
|
name: string;
|
|
1016
1016
|
}, {
|
|
1017
|
+
id: string;
|
|
1017
1018
|
createdAt: string | Date;
|
|
1018
1019
|
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
|
+
id: string;
|
|
1058
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1057
1059
|
createdAt: string;
|
|
1058
1060
|
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
|
+
id: string;
|
|
1078
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1077
1079
|
createdAt: string | Date;
|
|
1078
1080
|
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;
|
|
@@ -1105,9 +1105,9 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
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;
|
|
1108
1109
|
createdAt: string;
|
|
1109
1110
|
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;
|
|
1118
1119
|
createdAt: string | Date;
|
|
1119
1120
|
updatedAt: string | Date;
|
|
1120
|
-
id: string;
|
|
1121
1121
|
firstName: string;
|
|
1122
1122
|
lastName: string;
|
|
1123
1123
|
email: string;
|
|
@@ -1130,22 +1130,22 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
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
|
+
id: string;
|
|
1134
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1133
1135
|
createdAt: string;
|
|
1134
1136
|
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;
|
|
1139
1140
|
createdAt: string;
|
|
1140
1141
|
updatedAt: string;
|
|
1141
|
-
id: string;
|
|
1142
1142
|
name: string;
|
|
1143
1143
|
} | null | undefined;
|
|
1144
1144
|
client?: {
|
|
1145
|
+
id: string;
|
|
1146
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1145
1147
|
createdAt: string;
|
|
1146
1148
|
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;
|
|
1166
1167
|
createdAt: string;
|
|
1167
1168
|
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
|
+
id: string;
|
|
1178
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1177
1179
|
createdAt: string | Date;
|
|
1178
1180
|
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;
|
|
1183
1184
|
createdAt: string | Date;
|
|
1184
1185
|
updatedAt: string | Date;
|
|
1185
|
-
id: string;
|
|
1186
1186
|
name: string;
|
|
1187
1187
|
} | null | undefined;
|
|
1188
1188
|
client?: {
|
|
1189
|
+
id: string;
|
|
1190
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1189
1191
|
createdAt: string | Date;
|
|
1190
1192
|
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;
|
|
1210
1211
|
createdAt: string | Date;
|
|
1211
1212
|
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
|
+
id: string;
|
|
1223
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1222
1224
|
createdAt: string;
|
|
1223
1225
|
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;
|
|
1228
1229
|
createdAt: string;
|
|
1229
1230
|
updatedAt: string;
|
|
1230
|
-
id: string;
|
|
1231
1231
|
name: string;
|
|
1232
1232
|
} | null | undefined;
|
|
1233
1233
|
client?: {
|
|
1234
|
+
id: string;
|
|
1235
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1234
1236
|
createdAt: string;
|
|
1235
1237
|
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;
|
|
1255
1256
|
createdAt: string;
|
|
1256
1257
|
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
|
+
id: string;
|
|
1267
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1266
1268
|
createdAt: string;
|
|
1267
1269
|
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;
|
|
1272
1273
|
createdAt: string;
|
|
1273
1274
|
updatedAt: string;
|
|
1274
|
-
id: string;
|
|
1275
1275
|
name: string;
|
|
1276
1276
|
} | null | undefined;
|
|
1277
1277
|
client?: {
|
|
1278
|
+
id: string;
|
|
1279
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1278
1280
|
createdAt: string;
|
|
1279
1281
|
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;
|
|
1299
1300
|
createdAt: string;
|
|
1300
1301
|
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
|
+
id: string;
|
|
1312
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1311
1313
|
createdAt: string | Date;
|
|
1312
1314
|
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;
|
|
1317
1318
|
createdAt: string | Date;
|
|
1318
1319
|
updatedAt: string | Date;
|
|
1319
|
-
id: string;
|
|
1320
1320
|
name: string;
|
|
1321
1321
|
} | null | undefined;
|
|
1322
1322
|
client?: {
|
|
1323
|
+
id: string;
|
|
1324
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1323
1325
|
createdAt: string | Date;
|
|
1324
1326
|
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;
|
|
1344
1345
|
createdAt: string | Date;
|
|
1345
1346
|
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
|
+
id: string;
|
|
1356
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1355
1357
|
createdAt: string | Date;
|
|
1356
1358
|
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;
|
|
1361
1362
|
createdAt: string | Date;
|
|
1362
1363
|
updatedAt: string | Date;
|
|
1363
|
-
id: string;
|
|
1364
1364
|
name: string;
|
|
1365
1365
|
} | null | undefined;
|
|
1366
1366
|
client?: {
|
|
1367
|
+
id: string;
|
|
1368
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1367
1369
|
createdAt: string | Date;
|
|
1368
1370
|
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;
|
|
1388
1389
|
createdAt: string | Date;
|
|
1389
1390
|
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;
|
|
1416
1417
|
createdAt: string;
|
|
1417
1418
|
updatedAt: string;
|
|
1418
|
-
id: string;
|
|
1419
|
-
email: string;
|
|
1420
1419
|
collaborationId: string;
|
|
1420
|
+
email: string;
|
|
1421
1421
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
1422
|
-
decision: "
|
|
1422
|
+
decision: "APPROVED" | "REJECTED" | "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
|
+
id: string;
|
|
1430
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1429
1431
|
createdAt: string;
|
|
1430
1432
|
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;
|
|
1435
1436
|
createdAt: string;
|
|
1436
1437
|
updatedAt: string;
|
|
1437
|
-
id: string;
|
|
1438
1438
|
name: string;
|
|
1439
1439
|
} | null | undefined;
|
|
1440
1440
|
client?: {
|
|
1441
|
+
id: string;
|
|
1442
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1441
1443
|
createdAt: string;
|
|
1442
1444
|
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;
|
|
1462
1463
|
createdAt: string;
|
|
1463
1464
|
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
|
+
id: string;
|
|
1474
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1473
1475
|
createdAt: string;
|
|
1474
1476
|
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;
|
|
1479
1480
|
createdAt: string;
|
|
1480
1481
|
updatedAt: string;
|
|
1481
|
-
id: string;
|
|
1482
1482
|
name: string;
|
|
1483
1483
|
} | null | undefined;
|
|
1484
1484
|
client?: {
|
|
1485
|
+
id: string;
|
|
1486
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1485
1487
|
createdAt: string;
|
|
1486
1488
|
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;
|
|
1506
1507
|
createdAt: string;
|
|
1507
1508
|
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;
|
|
1525
1526
|
createdAt: string | Date;
|
|
1526
1527
|
updatedAt: string | Date;
|
|
1527
|
-
id: string;
|
|
1528
|
-
email: string;
|
|
1529
1528
|
collaborationId: string;
|
|
1529
|
+
email: string;
|
|
1530
1530
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
1531
|
-
decision: "
|
|
1531
|
+
decision: "APPROVED" | "REJECTED" | "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
|
+
id: string;
|
|
1539
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1538
1540
|
createdAt: string | Date;
|
|
1539
1541
|
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;
|
|
1544
1545
|
createdAt: string | Date;
|
|
1545
1546
|
updatedAt: string | Date;
|
|
1546
|
-
id: string;
|
|
1547
1547
|
name: string;
|
|
1548
1548
|
} | null | undefined;
|
|
1549
1549
|
client?: {
|
|
1550
|
+
id: string;
|
|
1551
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1550
1552
|
createdAt: string | Date;
|
|
1551
1553
|
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;
|
|
1571
1572
|
createdAt: string | Date;
|
|
1572
1573
|
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
|
+
id: string;
|
|
1583
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1582
1584
|
createdAt: string | Date;
|
|
1583
1585
|
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;
|
|
1588
1589
|
createdAt: string | Date;
|
|
1589
1590
|
updatedAt: string | Date;
|
|
1590
|
-
id: string;
|
|
1591
1591
|
name: string;
|
|
1592
1592
|
} | null | undefined;
|
|
1593
1593
|
client?: {
|
|
1594
|
+
id: string;
|
|
1595
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1594
1596
|
createdAt: string | Date;
|
|
1595
1597
|
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;
|
|
1615
1616
|
createdAt: string | Date;
|
|
1616
1617
|
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;
|
|
1642
1643
|
createdAt: string;
|
|
1643
1644
|
updatedAt: string;
|
|
1644
|
-
id: string;
|
|
1645
|
-
email: string;
|
|
1646
1645
|
collaborationId: string;
|
|
1646
|
+
email: string;
|
|
1647
1647
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
1648
|
-
decision: "
|
|
1648
|
+
decision: "APPROVED" | "REJECTED" | "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
|
+
id: string;
|
|
1656
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1655
1657
|
createdAt: string;
|
|
1656
1658
|
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;
|
|
1661
1662
|
createdAt: string;
|
|
1662
1663
|
updatedAt: string;
|
|
1663
|
-
id: string;
|
|
1664
1664
|
name: string;
|
|
1665
1665
|
} | null | undefined;
|
|
1666
1666
|
client?: {
|
|
1667
|
+
id: string;
|
|
1668
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1667
1669
|
createdAt: string;
|
|
1668
1670
|
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;
|
|
1688
1689
|
createdAt: string;
|
|
1689
1690
|
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
|
+
id: string;
|
|
1700
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1699
1701
|
createdAt: string;
|
|
1700
1702
|
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;
|
|
1705
1706
|
createdAt: string;
|
|
1706
1707
|
updatedAt: string;
|
|
1707
|
-
id: string;
|
|
1708
1708
|
name: string;
|
|
1709
1709
|
} | null | undefined;
|
|
1710
1710
|
client?: {
|
|
1711
|
+
id: string;
|
|
1712
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1711
1713
|
createdAt: string;
|
|
1712
1714
|
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;
|
|
1732
1733
|
createdAt: string;
|
|
1733
1734
|
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;
|
|
1758
1759
|
createdAt: string | Date;
|
|
1759
1760
|
updatedAt: string | Date;
|
|
1760
|
-
id: string;
|
|
1761
|
-
email: string;
|
|
1762
1761
|
collaborationId: string;
|
|
1762
|
+
email: string;
|
|
1763
1763
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
1764
|
-
decision: "
|
|
1764
|
+
decision: "APPROVED" | "REJECTED" | "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
|
+
id: string;
|
|
1772
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1771
1773
|
createdAt: string | Date;
|
|
1772
1774
|
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;
|
|
1777
1778
|
createdAt: string | Date;
|
|
1778
1779
|
updatedAt: string | Date;
|
|
1779
|
-
id: string;
|
|
1780
1780
|
name: string;
|
|
1781
1781
|
} | null | undefined;
|
|
1782
1782
|
client?: {
|
|
1783
|
+
id: string;
|
|
1784
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1783
1785
|
createdAt: string | Date;
|
|
1784
1786
|
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;
|
|
1804
1805
|
createdAt: string | Date;
|
|
1805
1806
|
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
|
+
id: string;
|
|
1816
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1815
1817
|
createdAt: string | Date;
|
|
1816
1818
|
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;
|
|
1821
1822
|
createdAt: string | Date;
|
|
1822
1823
|
updatedAt: string | Date;
|
|
1823
|
-
id: string;
|
|
1824
1824
|
name: string;
|
|
1825
1825
|
} | null | undefined;
|
|
1826
1826
|
client?: {
|
|
1827
|
+
id: string;
|
|
1828
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1827
1829
|
createdAt: string | Date;
|
|
1828
1830
|
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;
|
|
1848
1849
|
createdAt: string | Date;
|
|
1849
1850
|
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;
|
|
2040
2041
|
createdAt: string;
|
|
2041
2042
|
updatedAt: string;
|
|
2042
|
-
id: string;
|
|
2043
2043
|
name: string;
|
|
2044
2044
|
}, {
|
|
2045
|
+
id: string;
|
|
2045
2046
|
createdAt: string | Date;
|
|
2046
2047
|
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
|
+
id: string;
|
|
2086
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2085
2087
|
createdAt: string;
|
|
2086
2088
|
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
|
+
id: string;
|
|
2106
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2105
2107
|
createdAt: string | Date;
|
|
2106
2108
|
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;
|
|
@@ -2133,9 +2133,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
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;
|
|
2136
2137
|
createdAt: string;
|
|
2137
2138
|
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;
|
|
2146
2147
|
createdAt: string | Date;
|
|
2147
2148
|
updatedAt: string | Date;
|
|
2148
|
-
id: string;
|
|
2149
2149
|
firstName: string;
|
|
2150
2150
|
lastName: string;
|
|
2151
2151
|
email: string;
|
|
@@ -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;
|
|
2169
2170
|
createdAt: string;
|
|
2170
2171
|
updatedAt: string;
|
|
2171
|
-
id: string;
|
|
2172
2172
|
name: string;
|
|
2173
2173
|
}, {
|
|
2174
|
+
id: string;
|
|
2174
2175
|
createdAt: string | Date;
|
|
2175
2176
|
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
|
+
id: string;
|
|
2215
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2214
2216
|
createdAt: string;
|
|
2215
2217
|
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
|
+
id: string;
|
|
2235
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2234
2236
|
createdAt: string | Date;
|
|
2235
2237
|
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;
|
|
@@ -2262,9 +2262,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
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;
|
|
2265
2266
|
createdAt: string;
|
|
2266
2267
|
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;
|
|
2275
2276
|
createdAt: string | Date;
|
|
2276
2277
|
updatedAt: string | Date;
|
|
2277
|
-
id: string;
|
|
2278
2278
|
firstName: string;
|
|
2279
2279
|
lastName: string;
|
|
2280
2280
|
email: string;
|
|
@@ -2287,22 +2287,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
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
|
+
id: string;
|
|
2291
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2290
2292
|
createdAt: string;
|
|
2291
2293
|
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;
|
|
2296
2297
|
createdAt: string;
|
|
2297
2298
|
updatedAt: string;
|
|
2298
|
-
id: string;
|
|
2299
2299
|
name: string;
|
|
2300
2300
|
} | null | undefined;
|
|
2301
2301
|
client?: {
|
|
2302
|
+
id: string;
|
|
2303
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2302
2304
|
createdAt: string;
|
|
2303
2305
|
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;
|
|
2323
2324
|
createdAt: string;
|
|
2324
2325
|
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
|
+
id: string;
|
|
2335
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2334
2336
|
createdAt: string | Date;
|
|
2335
2337
|
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;
|
|
2340
2341
|
createdAt: string | Date;
|
|
2341
2342
|
updatedAt: string | Date;
|
|
2342
|
-
id: string;
|
|
2343
2343
|
name: string;
|
|
2344
2344
|
} | null | undefined;
|
|
2345
2345
|
client?: {
|
|
2346
|
+
id: string;
|
|
2347
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2346
2348
|
createdAt: string | Date;
|
|
2347
2349
|
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;
|
|
2367
2368
|
createdAt: string | Date;
|
|
2368
2369
|
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
|
+
id: string;
|
|
2380
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2379
2381
|
createdAt: string;
|
|
2380
2382
|
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;
|
|
2385
2386
|
createdAt: string;
|
|
2386
2387
|
updatedAt: string;
|
|
2387
|
-
id: string;
|
|
2388
2388
|
name: string;
|
|
2389
2389
|
} | null | undefined;
|
|
2390
2390
|
client?: {
|
|
2391
|
+
id: string;
|
|
2392
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2391
2393
|
createdAt: string;
|
|
2392
2394
|
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;
|
|
2412
2413
|
createdAt: string;
|
|
2413
2414
|
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
|
+
id: string;
|
|
2424
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2423
2425
|
createdAt: string;
|
|
2424
2426
|
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;
|
|
2429
2430
|
createdAt: string;
|
|
2430
2431
|
updatedAt: string;
|
|
2431
|
-
id: string;
|
|
2432
2432
|
name: string;
|
|
2433
2433
|
} | null | undefined;
|
|
2434
2434
|
client?: {
|
|
2435
|
+
id: string;
|
|
2436
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2435
2437
|
createdAt: string;
|
|
2436
2438
|
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;
|
|
2456
2457
|
createdAt: string;
|
|
2457
2458
|
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
|
+
id: string;
|
|
2469
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2468
2470
|
createdAt: string | Date;
|
|
2469
2471
|
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;
|
|
2474
2475
|
createdAt: string | Date;
|
|
2475
2476
|
updatedAt: string | Date;
|
|
2476
|
-
id: string;
|
|
2477
2477
|
name: string;
|
|
2478
2478
|
} | null | undefined;
|
|
2479
2479
|
client?: {
|
|
2480
|
+
id: string;
|
|
2481
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2480
2482
|
createdAt: string | Date;
|
|
2481
2483
|
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;
|
|
2501
2502
|
createdAt: string | Date;
|
|
2502
2503
|
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
|
+
id: string;
|
|
2513
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2512
2514
|
createdAt: string | Date;
|
|
2513
2515
|
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;
|
|
2518
2519
|
createdAt: string | Date;
|
|
2519
2520
|
updatedAt: string | Date;
|
|
2520
|
-
id: string;
|
|
2521
2521
|
name: string;
|
|
2522
2522
|
} | null | undefined;
|
|
2523
2523
|
client?: {
|
|
2524
|
+
id: string;
|
|
2525
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2524
2526
|
createdAt: string | Date;
|
|
2525
2527
|
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;
|
|
2545
2546
|
createdAt: string | Date;
|
|
2546
2547
|
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;
|
|
2573
2574
|
createdAt: string;
|
|
2574
2575
|
updatedAt: string;
|
|
2575
|
-
id: string;
|
|
2576
|
-
email: string;
|
|
2577
2576
|
collaborationId: string;
|
|
2577
|
+
email: string;
|
|
2578
2578
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
2579
|
-
decision: "
|
|
2579
|
+
decision: "APPROVED" | "REJECTED" | "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
|
+
id: string;
|
|
2587
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2586
2588
|
createdAt: string;
|
|
2587
2589
|
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;
|
|
2592
2593
|
createdAt: string;
|
|
2593
2594
|
updatedAt: string;
|
|
2594
|
-
id: string;
|
|
2595
2595
|
name: string;
|
|
2596
2596
|
} | null | undefined;
|
|
2597
2597
|
client?: {
|
|
2598
|
+
id: string;
|
|
2599
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2598
2600
|
createdAt: string;
|
|
2599
2601
|
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;
|
|
2619
2620
|
createdAt: string;
|
|
2620
2621
|
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
|
+
id: string;
|
|
2631
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2630
2632
|
createdAt: string;
|
|
2631
2633
|
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;
|
|
2636
2637
|
createdAt: string;
|
|
2637
2638
|
updatedAt: string;
|
|
2638
|
-
id: string;
|
|
2639
2639
|
name: string;
|
|
2640
2640
|
} | null | undefined;
|
|
2641
2641
|
client?: {
|
|
2642
|
+
id: string;
|
|
2643
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2642
2644
|
createdAt: string;
|
|
2643
2645
|
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;
|
|
2663
2664
|
createdAt: string;
|
|
2664
2665
|
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;
|
|
2682
2683
|
createdAt: string | Date;
|
|
2683
2684
|
updatedAt: string | Date;
|
|
2684
|
-
id: string;
|
|
2685
|
-
email: string;
|
|
2686
2685
|
collaborationId: string;
|
|
2686
|
+
email: string;
|
|
2687
2687
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
2688
|
-
decision: "
|
|
2688
|
+
decision: "APPROVED" | "REJECTED" | "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
|
+
id: string;
|
|
2696
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2695
2697
|
createdAt: string | Date;
|
|
2696
2698
|
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;
|
|
2701
2702
|
createdAt: string | Date;
|
|
2702
2703
|
updatedAt: string | Date;
|
|
2703
|
-
id: string;
|
|
2704
2704
|
name: string;
|
|
2705
2705
|
} | null | undefined;
|
|
2706
2706
|
client?: {
|
|
2707
|
+
id: string;
|
|
2708
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2707
2709
|
createdAt: string | Date;
|
|
2708
2710
|
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;
|
|
2728
2729
|
createdAt: string | Date;
|
|
2729
2730
|
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
|
+
id: string;
|
|
2740
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2739
2741
|
createdAt: string | Date;
|
|
2740
2742
|
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;
|
|
2745
2746
|
createdAt: string | Date;
|
|
2746
2747
|
updatedAt: string | Date;
|
|
2747
|
-
id: string;
|
|
2748
2748
|
name: string;
|
|
2749
2749
|
} | null | undefined;
|
|
2750
2750
|
client?: {
|
|
2751
|
+
id: string;
|
|
2752
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2751
2753
|
createdAt: string | Date;
|
|
2752
2754
|
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;
|
|
2772
2773
|
createdAt: string | Date;
|
|
2773
2774
|
updatedAt: string | Date;
|
|
2774
|
-
id: string;
|
|
2775
2775
|
firstName: string;
|
|
2776
2776
|
lastName: string;
|
|
2777
2777
|
email: string;
|
|
@@ -2816,12 +2816,6 @@ export declare const collaborationCheckingsContract: {
|
|
|
2816
2816
|
};
|
|
2817
2817
|
};
|
|
2818
2818
|
findAll: {
|
|
2819
|
-
metadata: {
|
|
2820
|
-
tags: string[];
|
|
2821
|
-
openApi: {
|
|
2822
|
-
operationId: string;
|
|
2823
|
-
};
|
|
2824
|
-
};
|
|
2825
2819
|
query: z.ZodObject<{
|
|
2826
2820
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
2827
2821
|
page: z.ZodDefault<z.ZodNumber>;
|
|
@@ -2838,22 +2832,28 @@ export declare const collaborationCheckingsContract: {
|
|
|
2838
2832
|
page: number;
|
|
2839
2833
|
sortBy: "createdAt" | "updatedAt" | "urgency" | "decision" | "decisionTimestamp";
|
|
2840
2834
|
sortOrder: "ASC" | "DESC";
|
|
2835
|
+
urgency?: "LOW" | "MEDIUM" | "HIGH" | undefined;
|
|
2836
|
+
decision?: "APPROVED" | "REJECTED" | "PENDING" | undefined;
|
|
2841
2837
|
companyId?: string | undefined;
|
|
2842
2838
|
clientId?: string | undefined;
|
|
2843
|
-
urgency?: "LOW" | "MEDIUM" | "HIGH" | undefined;
|
|
2844
|
-
decision?: "REJECTED" | "APPROVED" | "PENDING" | undefined;
|
|
2845
2839
|
createdById?: string | undefined;
|
|
2846
2840
|
}, {
|
|
2847
2841
|
limit?: number | undefined;
|
|
2848
2842
|
page?: number | undefined;
|
|
2849
|
-
companyId?: string | undefined;
|
|
2850
|
-
clientId?: string | undefined;
|
|
2851
2843
|
sortBy?: "createdAt" | "updatedAt" | "urgency" | "decision" | "decisionTimestamp" | undefined;
|
|
2852
2844
|
sortOrder?: "ASC" | "DESC" | undefined;
|
|
2853
2845
|
urgency?: "LOW" | "MEDIUM" | "HIGH" | undefined;
|
|
2854
|
-
decision?: "
|
|
2846
|
+
decision?: "APPROVED" | "REJECTED" | "PENDING" | undefined;
|
|
2847
|
+
companyId?: string | undefined;
|
|
2848
|
+
clientId?: string | undefined;
|
|
2855
2849
|
createdById?: string | undefined;
|
|
2856
2850
|
}>;
|
|
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;
|
|
2974
2975
|
createdAt: string;
|
|
2975
2976
|
updatedAt: string;
|
|
2976
|
-
id: string;
|
|
2977
2977
|
name: string;
|
|
2978
2978
|
}, {
|
|
2979
|
+
id: string;
|
|
2979
2980
|
createdAt: string | Date;
|
|
2980
2981
|
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
|
+
id: string;
|
|
3020
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3019
3021
|
createdAt: string;
|
|
3020
3022
|
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
|
+
id: string;
|
|
3040
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3039
3041
|
createdAt: string | Date;
|
|
3040
3042
|
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;
|
|
@@ -3067,9 +3067,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
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;
|
|
3070
3071
|
createdAt: string;
|
|
3071
3072
|
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;
|
|
3080
3081
|
createdAt: string | Date;
|
|
3081
3082
|
updatedAt: string | Date;
|
|
3082
|
-
id: string;
|
|
3083
3083
|
firstName: string;
|
|
3084
3084
|
lastName: string;
|
|
3085
3085
|
email: string;
|
|
@@ -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;
|
|
3103
3104
|
createdAt: string;
|
|
3104
3105
|
updatedAt: string;
|
|
3105
|
-
id: string;
|
|
3106
3106
|
name: string;
|
|
3107
3107
|
}, {
|
|
3108
|
+
id: string;
|
|
3108
3109
|
createdAt: string | Date;
|
|
3109
3110
|
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
|
+
id: string;
|
|
3149
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3148
3150
|
createdAt: string;
|
|
3149
3151
|
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
|
+
id: string;
|
|
3169
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3168
3170
|
createdAt: string | Date;
|
|
3169
3171
|
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;
|
|
@@ -3196,9 +3196,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
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;
|
|
3199
3200
|
createdAt: string;
|
|
3200
3201
|
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;
|
|
3209
3210
|
createdAt: string | Date;
|
|
3210
3211
|
updatedAt: string | Date;
|
|
3211
|
-
id: string;
|
|
3212
3212
|
firstName: string;
|
|
3213
3213
|
lastName: string;
|
|
3214
3214
|
email: string;
|
|
@@ -3221,22 +3221,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
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
|
+
id: string;
|
|
3225
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3224
3226
|
createdAt: string;
|
|
3225
3227
|
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;
|
|
3230
3231
|
createdAt: string;
|
|
3231
3232
|
updatedAt: string;
|
|
3232
|
-
id: string;
|
|
3233
3233
|
name: string;
|
|
3234
3234
|
} | null | undefined;
|
|
3235
3235
|
client?: {
|
|
3236
|
+
id: string;
|
|
3237
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3236
3238
|
createdAt: string;
|
|
3237
3239
|
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;
|
|
3257
3258
|
createdAt: string;
|
|
3258
3259
|
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
|
+
id: string;
|
|
3269
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3268
3270
|
createdAt: string | Date;
|
|
3269
3271
|
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;
|
|
3274
3275
|
createdAt: string | Date;
|
|
3275
3276
|
updatedAt: string | Date;
|
|
3276
|
-
id: string;
|
|
3277
3277
|
name: string;
|
|
3278
3278
|
} | null | undefined;
|
|
3279
3279
|
client?: {
|
|
3280
|
+
id: string;
|
|
3281
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3280
3282
|
createdAt: string | Date;
|
|
3281
3283
|
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;
|
|
3301
3302
|
createdAt: string | Date;
|
|
3302
3303
|
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
|
+
id: string;
|
|
3314
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3313
3315
|
createdAt: string;
|
|
3314
3316
|
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;
|
|
3319
3320
|
createdAt: string;
|
|
3320
3321
|
updatedAt: string;
|
|
3321
|
-
id: string;
|
|
3322
3322
|
name: string;
|
|
3323
3323
|
} | null | undefined;
|
|
3324
3324
|
client?: {
|
|
3325
|
+
id: string;
|
|
3326
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3325
3327
|
createdAt: string;
|
|
3326
3328
|
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;
|
|
3346
3347
|
createdAt: string;
|
|
3347
3348
|
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
|
+
id: string;
|
|
3358
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3357
3359
|
createdAt: string;
|
|
3358
3360
|
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;
|
|
3363
3364
|
createdAt: string;
|
|
3364
3365
|
updatedAt: string;
|
|
3365
|
-
id: string;
|
|
3366
3366
|
name: string;
|
|
3367
3367
|
} | null | undefined;
|
|
3368
3368
|
client?: {
|
|
3369
|
+
id: string;
|
|
3370
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3369
3371
|
createdAt: string;
|
|
3370
3372
|
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;
|
|
3390
3391
|
createdAt: string;
|
|
3391
3392
|
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
|
+
id: string;
|
|
3403
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3402
3404
|
createdAt: string | Date;
|
|
3403
3405
|
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;
|
|
3408
3409
|
createdAt: string | Date;
|
|
3409
3410
|
updatedAt: string | Date;
|
|
3410
|
-
id: string;
|
|
3411
3411
|
name: string;
|
|
3412
3412
|
} | null | undefined;
|
|
3413
3413
|
client?: {
|
|
3414
|
+
id: string;
|
|
3415
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3414
3416
|
createdAt: string | Date;
|
|
3415
3417
|
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;
|
|
3435
3436
|
createdAt: string | Date;
|
|
3436
3437
|
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
|
+
id: string;
|
|
3447
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3446
3448
|
createdAt: string | Date;
|
|
3447
3449
|
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;
|
|
3452
3453
|
createdAt: string | Date;
|
|
3453
3454
|
updatedAt: string | Date;
|
|
3454
|
-
id: string;
|
|
3455
3455
|
name: string;
|
|
3456
3456
|
} | null | undefined;
|
|
3457
3457
|
client?: {
|
|
3458
|
+
id: string;
|
|
3459
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3458
3460
|
createdAt: string | Date;
|
|
3459
3461
|
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;
|
|
3479
3480
|
createdAt: string | Date;
|
|
3480
3481
|
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;
|
|
3507
3508
|
createdAt: string;
|
|
3508
3509
|
updatedAt: string;
|
|
3509
|
-
id: string;
|
|
3510
|
-
email: string;
|
|
3511
3510
|
collaborationId: string;
|
|
3511
|
+
email: string;
|
|
3512
3512
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
3513
|
-
decision: "
|
|
3513
|
+
decision: "APPROVED" | "REJECTED" | "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
|
+
id: string;
|
|
3521
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3520
3522
|
createdAt: string;
|
|
3521
3523
|
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;
|
|
3526
3527
|
createdAt: string;
|
|
3527
3528
|
updatedAt: string;
|
|
3528
|
-
id: string;
|
|
3529
3529
|
name: string;
|
|
3530
3530
|
} | null | undefined;
|
|
3531
3531
|
client?: {
|
|
3532
|
+
id: string;
|
|
3533
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3532
3534
|
createdAt: string;
|
|
3533
3535
|
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;
|
|
3553
3554
|
createdAt: string;
|
|
3554
3555
|
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
|
+
id: string;
|
|
3565
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3564
3566
|
createdAt: string;
|
|
3565
3567
|
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;
|
|
3570
3571
|
createdAt: string;
|
|
3571
3572
|
updatedAt: string;
|
|
3572
|
-
id: string;
|
|
3573
3573
|
name: string;
|
|
3574
3574
|
} | null | undefined;
|
|
3575
3575
|
client?: {
|
|
3576
|
+
id: string;
|
|
3577
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3576
3578
|
createdAt: string;
|
|
3577
3579
|
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;
|
|
3597
3598
|
createdAt: string;
|
|
3598
3599
|
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;
|
|
3616
3617
|
createdAt: string | Date;
|
|
3617
3618
|
updatedAt: string | Date;
|
|
3618
|
-
id: string;
|
|
3619
|
-
email: string;
|
|
3620
3619
|
collaborationId: string;
|
|
3620
|
+
email: string;
|
|
3621
3621
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
3622
|
-
decision: "
|
|
3622
|
+
decision: "APPROVED" | "REJECTED" | "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
|
+
id: string;
|
|
3630
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3629
3631
|
createdAt: string | Date;
|
|
3630
3632
|
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;
|
|
3635
3636
|
createdAt: string | Date;
|
|
3636
3637
|
updatedAt: string | Date;
|
|
3637
|
-
id: string;
|
|
3638
3638
|
name: string;
|
|
3639
3639
|
} | null | undefined;
|
|
3640
3640
|
client?: {
|
|
3641
|
+
id: string;
|
|
3642
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3641
3643
|
createdAt: string | Date;
|
|
3642
3644
|
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;
|
|
3662
3663
|
createdAt: string | Date;
|
|
3663
3664
|
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
|
+
id: string;
|
|
3674
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3673
3675
|
createdAt: string | Date;
|
|
3674
3676
|
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;
|
|
3679
3680
|
createdAt: string | Date;
|
|
3680
3681
|
updatedAt: string | Date;
|
|
3681
|
-
id: string;
|
|
3682
3682
|
name: string;
|
|
3683
3683
|
} | null | undefined;
|
|
3684
3684
|
client?: {
|
|
3685
|
+
id: string;
|
|
3686
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3685
3687
|
createdAt: string | Date;
|
|
3686
3688
|
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;
|
|
3706
3707
|
createdAt: string | Date;
|
|
3707
3708
|
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;
|
|
3733
3734
|
createdAt: string;
|
|
3734
3735
|
updatedAt: string;
|
|
3735
|
-
id: string;
|
|
3736
|
-
email: string;
|
|
3737
3736
|
collaborationId: string;
|
|
3737
|
+
email: string;
|
|
3738
3738
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
3739
|
-
decision: "
|
|
3739
|
+
decision: "APPROVED" | "REJECTED" | "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
|
+
id: string;
|
|
3747
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3746
3748
|
createdAt: string;
|
|
3747
3749
|
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;
|
|
3752
3753
|
createdAt: string;
|
|
3753
3754
|
updatedAt: string;
|
|
3754
|
-
id: string;
|
|
3755
3755
|
name: string;
|
|
3756
3756
|
} | null | undefined;
|
|
3757
3757
|
client?: {
|
|
3758
|
+
id: string;
|
|
3759
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3758
3760
|
createdAt: string;
|
|
3759
3761
|
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;
|
|
3779
3780
|
createdAt: string;
|
|
3780
3781
|
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
|
+
id: string;
|
|
3791
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3790
3792
|
createdAt: string;
|
|
3791
3793
|
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;
|
|
3796
3797
|
createdAt: string;
|
|
3797
3798
|
updatedAt: string;
|
|
3798
|
-
id: string;
|
|
3799
3799
|
name: string;
|
|
3800
3800
|
} | null | undefined;
|
|
3801
3801
|
client?: {
|
|
3802
|
+
id: string;
|
|
3803
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3802
3804
|
createdAt: string;
|
|
3803
3805
|
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;
|
|
3823
3824
|
createdAt: string;
|
|
3824
3825
|
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;
|
|
3849
3850
|
createdAt: string | Date;
|
|
3850
3851
|
updatedAt: string | Date;
|
|
3851
|
-
id: string;
|
|
3852
|
-
email: string;
|
|
3853
3852
|
collaborationId: string;
|
|
3853
|
+
email: string;
|
|
3854
3854
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
3855
|
-
decision: "
|
|
3855
|
+
decision: "APPROVED" | "REJECTED" | "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
|
+
id: string;
|
|
3863
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3862
3864
|
createdAt: string | Date;
|
|
3863
3865
|
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;
|
|
3868
3869
|
createdAt: string | Date;
|
|
3869
3870
|
updatedAt: string | Date;
|
|
3870
|
-
id: string;
|
|
3871
3871
|
name: string;
|
|
3872
3872
|
} | null | undefined;
|
|
3873
3873
|
client?: {
|
|
3874
|
+
id: string;
|
|
3875
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3874
3876
|
createdAt: string | Date;
|
|
3875
3877
|
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;
|
|
3895
3896
|
createdAt: string | Date;
|
|
3896
3897
|
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
|
+
id: string;
|
|
3907
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3906
3908
|
createdAt: string | Date;
|
|
3907
3909
|
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;
|
|
3912
3913
|
createdAt: string | Date;
|
|
3913
3914
|
updatedAt: string | Date;
|
|
3914
|
-
id: string;
|
|
3915
3915
|
name: string;
|
|
3916
3916
|
} | null | undefined;
|
|
3917
3917
|
client?: {
|
|
3918
|
+
id: string;
|
|
3919
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3918
3920
|
createdAt: string | Date;
|
|
3919
3921
|
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;
|
|
3939
3940
|
createdAt: string | Date;
|
|
3940
3941
|
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;
|
|
4095
4096
|
createdAt: string;
|
|
4096
4097
|
updatedAt: string;
|
|
4097
|
-
id: string;
|
|
4098
4098
|
name: string;
|
|
4099
4099
|
}, {
|
|
4100
|
+
id: string;
|
|
4100
4101
|
createdAt: string | Date;
|
|
4101
4102
|
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
|
+
id: string;
|
|
4141
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4140
4142
|
createdAt: string;
|
|
4141
4143
|
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
|
+
id: string;
|
|
4161
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4160
4162
|
createdAt: string | Date;
|
|
4161
4163
|
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;
|
|
@@ -4188,9 +4188,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
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;
|
|
4191
4192
|
createdAt: string;
|
|
4192
4193
|
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;
|
|
4201
4202
|
createdAt: string | Date;
|
|
4202
4203
|
updatedAt: string | Date;
|
|
4203
|
-
id: string;
|
|
4204
4204
|
firstName: string;
|
|
4205
4205
|
lastName: string;
|
|
4206
4206
|
email: string;
|
|
@@ -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;
|
|
4224
4225
|
createdAt: string;
|
|
4225
4226
|
updatedAt: string;
|
|
4226
|
-
id: string;
|
|
4227
4227
|
name: string;
|
|
4228
4228
|
}, {
|
|
4229
|
+
id: string;
|
|
4229
4230
|
createdAt: string | Date;
|
|
4230
4231
|
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
|
+
id: string;
|
|
4270
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4269
4271
|
createdAt: string;
|
|
4270
4272
|
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
|
+
id: string;
|
|
4290
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4289
4291
|
createdAt: string | Date;
|
|
4290
4292
|
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;
|
|
@@ -4317,9 +4317,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
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;
|
|
4320
4321
|
createdAt: string;
|
|
4321
4322
|
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;
|
|
4330
4331
|
createdAt: string | Date;
|
|
4331
4332
|
updatedAt: string | Date;
|
|
4332
|
-
id: string;
|
|
4333
4333
|
firstName: string;
|
|
4334
4334
|
lastName: string;
|
|
4335
4335
|
email: string;
|
|
@@ -4342,22 +4342,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
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
|
+
id: string;
|
|
4346
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4345
4347
|
createdAt: string;
|
|
4346
4348
|
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;
|
|
4351
4352
|
createdAt: string;
|
|
4352
4353
|
updatedAt: string;
|
|
4353
|
-
id: string;
|
|
4354
4354
|
name: string;
|
|
4355
4355
|
} | null | undefined;
|
|
4356
4356
|
client?: {
|
|
4357
|
+
id: string;
|
|
4358
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4357
4359
|
createdAt: string;
|
|
4358
4360
|
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;
|
|
4378
4379
|
createdAt: string;
|
|
4379
4380
|
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
|
+
id: string;
|
|
4390
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4389
4391
|
createdAt: string | Date;
|
|
4390
4392
|
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;
|
|
4395
4396
|
createdAt: string | Date;
|
|
4396
4397
|
updatedAt: string | Date;
|
|
4397
|
-
id: string;
|
|
4398
4398
|
name: string;
|
|
4399
4399
|
} | null | undefined;
|
|
4400
4400
|
client?: {
|
|
4401
|
+
id: string;
|
|
4402
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4401
4403
|
createdAt: string | Date;
|
|
4402
4404
|
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;
|
|
4422
4423
|
createdAt: string | Date;
|
|
4423
4424
|
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
|
+
id: string;
|
|
4435
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4434
4436
|
createdAt: string;
|
|
4435
4437
|
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;
|
|
4440
4441
|
createdAt: string;
|
|
4441
4442
|
updatedAt: string;
|
|
4442
|
-
id: string;
|
|
4443
4443
|
name: string;
|
|
4444
4444
|
} | null | undefined;
|
|
4445
4445
|
client?: {
|
|
4446
|
+
id: string;
|
|
4447
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4446
4448
|
createdAt: string;
|
|
4447
4449
|
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;
|
|
4467
4468
|
createdAt: string;
|
|
4468
4469
|
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
|
+
id: string;
|
|
4479
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4478
4480
|
createdAt: string;
|
|
4479
4481
|
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;
|
|
4484
4485
|
createdAt: string;
|
|
4485
4486
|
updatedAt: string;
|
|
4486
|
-
id: string;
|
|
4487
4487
|
name: string;
|
|
4488
4488
|
} | null | undefined;
|
|
4489
4489
|
client?: {
|
|
4490
|
+
id: string;
|
|
4491
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4490
4492
|
createdAt: string;
|
|
4491
4493
|
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;
|
|
4511
4512
|
createdAt: string;
|
|
4512
4513
|
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
|
+
id: string;
|
|
4524
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4523
4525
|
createdAt: string | Date;
|
|
4524
4526
|
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;
|
|
4529
4530
|
createdAt: string | Date;
|
|
4530
4531
|
updatedAt: string | Date;
|
|
4531
|
-
id: string;
|
|
4532
4532
|
name: string;
|
|
4533
4533
|
} | null | undefined;
|
|
4534
4534
|
client?: {
|
|
4535
|
+
id: string;
|
|
4536
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4535
4537
|
createdAt: string | Date;
|
|
4536
4538
|
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;
|
|
4556
4557
|
createdAt: string | Date;
|
|
4557
4558
|
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
|
+
id: string;
|
|
4568
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4567
4569
|
createdAt: string | Date;
|
|
4568
4570
|
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;
|
|
4573
4574
|
createdAt: string | Date;
|
|
4574
4575
|
updatedAt: string | Date;
|
|
4575
|
-
id: string;
|
|
4576
4576
|
name: string;
|
|
4577
4577
|
} | null | undefined;
|
|
4578
4578
|
client?: {
|
|
4579
|
+
id: string;
|
|
4580
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4579
4581
|
createdAt: string | Date;
|
|
4580
4582
|
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;
|
|
4600
4601
|
createdAt: string | Date;
|
|
4601
4602
|
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;
|
|
4628
4629
|
createdAt: string;
|
|
4629
4630
|
updatedAt: string;
|
|
4630
|
-
id: string;
|
|
4631
|
-
email: string;
|
|
4632
4631
|
collaborationId: string;
|
|
4632
|
+
email: string;
|
|
4633
4633
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
4634
|
-
decision: "
|
|
4634
|
+
decision: "APPROVED" | "REJECTED" | "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
|
+
id: string;
|
|
4642
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4641
4643
|
createdAt: string;
|
|
4642
4644
|
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;
|
|
4647
4648
|
createdAt: string;
|
|
4648
4649
|
updatedAt: string;
|
|
4649
|
-
id: string;
|
|
4650
4650
|
name: string;
|
|
4651
4651
|
} | null | undefined;
|
|
4652
4652
|
client?: {
|
|
4653
|
+
id: string;
|
|
4654
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4653
4655
|
createdAt: string;
|
|
4654
4656
|
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;
|
|
4674
4675
|
createdAt: string;
|
|
4675
4676
|
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
|
+
id: string;
|
|
4686
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4685
4687
|
createdAt: string;
|
|
4686
4688
|
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;
|
|
4691
4692
|
createdAt: string;
|
|
4692
4693
|
updatedAt: string;
|
|
4693
|
-
id: string;
|
|
4694
4694
|
name: string;
|
|
4695
4695
|
} | null | undefined;
|
|
4696
4696
|
client?: {
|
|
4697
|
+
id: string;
|
|
4698
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4697
4699
|
createdAt: string;
|
|
4698
4700
|
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;
|
|
4718
4719
|
createdAt: string;
|
|
4719
4720
|
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;
|
|
4737
4738
|
createdAt: string | Date;
|
|
4738
4739
|
updatedAt: string | Date;
|
|
4739
|
-
id: string;
|
|
4740
|
-
email: string;
|
|
4741
4740
|
collaborationId: string;
|
|
4741
|
+
email: string;
|
|
4742
4742
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
4743
|
-
decision: "
|
|
4743
|
+
decision: "APPROVED" | "REJECTED" | "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
|
+
id: string;
|
|
4751
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4750
4752
|
createdAt: string | Date;
|
|
4751
4753
|
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;
|
|
4756
4757
|
createdAt: string | Date;
|
|
4757
4758
|
updatedAt: string | Date;
|
|
4758
|
-
id: string;
|
|
4759
4759
|
name: string;
|
|
4760
4760
|
} | null | undefined;
|
|
4761
4761
|
client?: {
|
|
4762
|
+
id: string;
|
|
4763
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4762
4764
|
createdAt: string | Date;
|
|
4763
4765
|
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;
|
|
4783
4784
|
createdAt: string | Date;
|
|
4784
4785
|
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
|
+
id: string;
|
|
4795
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4794
4796
|
createdAt: string | Date;
|
|
4795
4797
|
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;
|
|
4800
4801
|
createdAt: string | Date;
|
|
4801
4802
|
updatedAt: string | Date;
|
|
4802
|
-
id: string;
|
|
4803
4803
|
name: string;
|
|
4804
4804
|
} | null | undefined;
|
|
4805
4805
|
client?: {
|
|
4806
|
+
id: string;
|
|
4807
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4806
4808
|
createdAt: string | Date;
|
|
4807
4809
|
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;
|
|
4827
4828
|
createdAt: string | Date;
|
|
4828
4829
|
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
|
-
email?: string | null | undefined;
|
|
4902
4901
|
clientContactId?: string | null | undefined;
|
|
4902
|
+
email?: string | null | undefined;
|
|
4903
4903
|
urgency?: "LOW" | "MEDIUM" | "HIGH" | null | undefined;
|
|
4904
|
-
decision?: "
|
|
4904
|
+
decision?: "APPROVED" | "REJECTED" | "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
|
-
email?: string | null | undefined;
|
|
4913
4912
|
clientContactId?: string | null | undefined;
|
|
4913
|
+
email?: string | null | undefined;
|
|
4914
4914
|
urgency?: "LOW" | "MEDIUM" | "HIGH" | null | undefined;
|
|
4915
|
-
decision?: "
|
|
4915
|
+
decision?: "APPROVED" | "REJECTED" | "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;
|
|
5037
5038
|
createdAt: string;
|
|
5038
5039
|
updatedAt: string;
|
|
5039
|
-
id: string;
|
|
5040
5040
|
name: string;
|
|
5041
5041
|
}, {
|
|
5042
|
+
id: string;
|
|
5042
5043
|
createdAt: string | Date;
|
|
5043
5044
|
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
|
+
id: string;
|
|
5083
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5082
5084
|
createdAt: string;
|
|
5083
5085
|
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
|
+
id: string;
|
|
5103
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5102
5104
|
createdAt: string | Date;
|
|
5103
5105
|
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;
|
|
@@ -5130,9 +5130,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
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;
|
|
5133
5134
|
createdAt: string;
|
|
5134
5135
|
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;
|
|
5143
5144
|
createdAt: string | Date;
|
|
5144
5145
|
updatedAt: string | Date;
|
|
5145
|
-
id: string;
|
|
5146
5146
|
firstName: string;
|
|
5147
5147
|
lastName: string;
|
|
5148
5148
|
email: string;
|
|
@@ -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;
|
|
5166
5167
|
createdAt: string;
|
|
5167
5168
|
updatedAt: string;
|
|
5168
|
-
id: string;
|
|
5169
5169
|
name: string;
|
|
5170
5170
|
}, {
|
|
5171
|
+
id: string;
|
|
5171
5172
|
createdAt: string | Date;
|
|
5172
5173
|
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
|
+
id: string;
|
|
5212
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5211
5213
|
createdAt: string;
|
|
5212
5214
|
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
|
+
id: string;
|
|
5232
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5231
5233
|
createdAt: string | Date;
|
|
5232
5234
|
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;
|
|
@@ -5259,9 +5259,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
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;
|
|
5262
5263
|
createdAt: string;
|
|
5263
5264
|
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;
|
|
5272
5273
|
createdAt: string | Date;
|
|
5273
5274
|
updatedAt: string | Date;
|
|
5274
|
-
id: string;
|
|
5275
5275
|
firstName: string;
|
|
5276
5276
|
lastName: string;
|
|
5277
5277
|
email: string;
|
|
@@ -5284,22 +5284,22 @@ export declare const collaborationCheckingsContract: {
|
|
|
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
|
+
id: string;
|
|
5288
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5287
5289
|
createdAt: string;
|
|
5288
5290
|
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;
|
|
5293
5294
|
createdAt: string;
|
|
5294
5295
|
updatedAt: string;
|
|
5295
|
-
id: string;
|
|
5296
5296
|
name: string;
|
|
5297
5297
|
} | null | undefined;
|
|
5298
5298
|
client?: {
|
|
5299
|
+
id: string;
|
|
5300
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5299
5301
|
createdAt: string;
|
|
5300
5302
|
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;
|
|
5320
5321
|
createdAt: string;
|
|
5321
5322
|
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
|
+
id: string;
|
|
5332
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5331
5333
|
createdAt: string | Date;
|
|
5332
5334
|
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;
|
|
5337
5338
|
createdAt: string | Date;
|
|
5338
5339
|
updatedAt: string | Date;
|
|
5339
|
-
id: string;
|
|
5340
5340
|
name: string;
|
|
5341
5341
|
} | null | undefined;
|
|
5342
5342
|
client?: {
|
|
5343
|
+
id: string;
|
|
5344
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5343
5345
|
createdAt: string | Date;
|
|
5344
5346
|
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;
|
|
5364
5365
|
createdAt: string | Date;
|
|
5365
5366
|
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
|
+
id: string;
|
|
5377
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5376
5378
|
createdAt: string;
|
|
5377
5379
|
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;
|
|
5382
5383
|
createdAt: string;
|
|
5383
5384
|
updatedAt: string;
|
|
5384
|
-
id: string;
|
|
5385
5385
|
name: string;
|
|
5386
5386
|
} | null | undefined;
|
|
5387
5387
|
client?: {
|
|
5388
|
+
id: string;
|
|
5389
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5388
5390
|
createdAt: string;
|
|
5389
5391
|
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;
|
|
5409
5410
|
createdAt: string;
|
|
5410
5411
|
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
|
+
id: string;
|
|
5421
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5420
5422
|
createdAt: string;
|
|
5421
5423
|
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;
|
|
5426
5427
|
createdAt: string;
|
|
5427
5428
|
updatedAt: string;
|
|
5428
|
-
id: string;
|
|
5429
5429
|
name: string;
|
|
5430
5430
|
} | null | undefined;
|
|
5431
5431
|
client?: {
|
|
5432
|
+
id: string;
|
|
5433
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5432
5434
|
createdAt: string;
|
|
5433
5435
|
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;
|
|
5453
5454
|
createdAt: string;
|
|
5454
5455
|
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
|
+
id: string;
|
|
5466
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5465
5467
|
createdAt: string | Date;
|
|
5466
5468
|
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;
|
|
5471
5472
|
createdAt: string | Date;
|
|
5472
5473
|
updatedAt: string | Date;
|
|
5473
|
-
id: string;
|
|
5474
5474
|
name: string;
|
|
5475
5475
|
} | null | undefined;
|
|
5476
5476
|
client?: {
|
|
5477
|
+
id: string;
|
|
5478
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5477
5479
|
createdAt: string | Date;
|
|
5478
5480
|
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;
|
|
5498
5499
|
createdAt: string | Date;
|
|
5499
5500
|
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
|
+
id: string;
|
|
5510
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5509
5511
|
createdAt: string | Date;
|
|
5510
5512
|
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;
|
|
5515
5516
|
createdAt: string | Date;
|
|
5516
5517
|
updatedAt: string | Date;
|
|
5517
|
-
id: string;
|
|
5518
5518
|
name: string;
|
|
5519
5519
|
} | null | undefined;
|
|
5520
5520
|
client?: {
|
|
5521
|
+
id: string;
|
|
5522
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5521
5523
|
createdAt: string | Date;
|
|
5522
5524
|
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;
|
|
5542
5543
|
createdAt: string | Date;
|
|
5543
5544
|
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;
|
|
5570
5571
|
createdAt: string;
|
|
5571
5572
|
updatedAt: string;
|
|
5572
|
-
id: string;
|
|
5573
|
-
email: string;
|
|
5574
5573
|
collaborationId: string;
|
|
5574
|
+
email: string;
|
|
5575
5575
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
5576
|
-
decision: "
|
|
5576
|
+
decision: "APPROVED" | "REJECTED" | "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
|
+
id: string;
|
|
5584
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5583
5585
|
createdAt: string;
|
|
5584
5586
|
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;
|
|
5589
5590
|
createdAt: string;
|
|
5590
5591
|
updatedAt: string;
|
|
5591
|
-
id: string;
|
|
5592
5592
|
name: string;
|
|
5593
5593
|
} | null | undefined;
|
|
5594
5594
|
client?: {
|
|
5595
|
+
id: string;
|
|
5596
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5595
5597
|
createdAt: string;
|
|
5596
5598
|
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;
|
|
5616
5617
|
createdAt: string;
|
|
5617
5618
|
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
|
+
id: string;
|
|
5628
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5627
5629
|
createdAt: string;
|
|
5628
5630
|
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;
|
|
5633
5634
|
createdAt: string;
|
|
5634
5635
|
updatedAt: string;
|
|
5635
|
-
id: string;
|
|
5636
5636
|
name: string;
|
|
5637
5637
|
} | null | undefined;
|
|
5638
5638
|
client?: {
|
|
5639
|
+
id: string;
|
|
5640
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5639
5641
|
createdAt: string;
|
|
5640
5642
|
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;
|
|
5660
5661
|
createdAt: string;
|
|
5661
5662
|
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;
|
|
5679
5680
|
createdAt: string | Date;
|
|
5680
5681
|
updatedAt: string | Date;
|
|
5681
|
-
id: string;
|
|
5682
|
-
email: string;
|
|
5683
5682
|
collaborationId: string;
|
|
5683
|
+
email: string;
|
|
5684
5684
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
5685
|
-
decision: "
|
|
5685
|
+
decision: "APPROVED" | "REJECTED" | "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
|
+
id: string;
|
|
5693
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5692
5694
|
createdAt: string | Date;
|
|
5693
5695
|
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;
|
|
5698
5699
|
createdAt: string | Date;
|
|
5699
5700
|
updatedAt: string | Date;
|
|
5700
|
-
id: string;
|
|
5701
5701
|
name: string;
|
|
5702
5702
|
} | null | undefined;
|
|
5703
5703
|
client?: {
|
|
5704
|
+
id: string;
|
|
5705
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5704
5706
|
createdAt: string | Date;
|
|
5705
5707
|
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;
|
|
5725
5726
|
createdAt: string | Date;
|
|
5726
5727
|
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
|
+
id: string;
|
|
5737
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5736
5738
|
createdAt: string | Date;
|
|
5737
5739
|
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;
|
|
5742
5743
|
createdAt: string | Date;
|
|
5743
5744
|
updatedAt: string | Date;
|
|
5744
|
-
id: string;
|
|
5745
5745
|
name: string;
|
|
5746
5746
|
} | null | undefined;
|
|
5747
5747
|
client?: {
|
|
5748
|
+
id: string;
|
|
5749
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5748
5750
|
createdAt: string | Date;
|
|
5749
5751
|
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;
|
|
5769
5770
|
createdAt: string | Date;
|
|
5770
5771
|
updatedAt: string | Date;
|
|
5771
|
-
id: string;
|
|
5772
5772
|
firstName: string;
|
|
5773
5773
|
lastName: string;
|
|
5774
5774
|
email: string;
|