@dakkitor/api-contracts 1.1.73 → 1.1.75
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/actives/actives.contract.d.ts +2959 -2199
- package/dist/actives/actives.contract.d.ts.map +1 -1
- package/dist/agent-client-links/agent-client-links.contract.d.ts +416 -416
- package/dist/auth/auth.contract.d.ts +4 -4
- package/dist/bookings/bookings.contract.d.ts +2634 -1894
- package/dist/bookings/bookings.contract.d.ts.map +1 -1
- package/dist/bookings/bookings.contract.js +0 -2
- package/dist/call-history/call-history.contract.d.ts +409 -409
- package/dist/client-contacts/client-contacts.contract.d.ts +231 -231
- package/dist/clients/clients.contract.d.ts +98 -98
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +1269 -749
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts.map +1 -1
- package/dist/collaborations/collaborations.contract.d.ts +1069 -609
- package/dist/collaborations/collaborations.contract.d.ts.map +1 -1
- package/dist/collaborations/collaborations.contract.js +2 -11
- package/dist/common/common-schemas.d.ts +0 -17
- package/dist/common/common-schemas.d.ts.map +1 -1
- package/dist/common/common-schemas.js +1 -9
- package/dist/companies/companies.contract.d.ts +36 -36
- package/dist/curated-workers/curated-workers.contract.d.ts +213 -213
- package/dist/jobs/jobs.contract.d.ts +1053 -533
- package/dist/jobs/jobs.contract.d.ts.map +1 -1
- package/dist/lead-assignments/lead-assignments.contract.d.ts +344 -344
- package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +111 -111
- package/dist/leads/leads.contract.d.ts +101 -101
- package/dist/users/users.contract.d.ts +132 -132
- package/dist/workers/workers.contract.d.ts +200 -200
- package/package.json +1 -1
|
@@ -18,13 +18,13 @@ export declare const PaySchema: z.ZodObject<{
|
|
|
18
18
|
rateMax: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
19
19
|
receivedRate: z.ZodNumber;
|
|
20
20
|
}, "strip", z.ZodTypeAny, {
|
|
21
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
22
21
|
rate: number;
|
|
22
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
23
23
|
receivedRate: number;
|
|
24
24
|
rateMax?: number | null | undefined;
|
|
25
25
|
}, {
|
|
26
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
27
26
|
rate: number;
|
|
27
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
28
28
|
receivedRate: number;
|
|
29
29
|
rateMax?: number | null | undefined;
|
|
30
30
|
}>;
|
|
@@ -34,8 +34,8 @@ export declare const CreatePaySchema: z.ZodObject<{
|
|
|
34
34
|
rateMax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
35
35
|
receivedRate: z.ZodNumber;
|
|
36
36
|
}, "strip", z.ZodTypeAny, {
|
|
37
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
38
37
|
rate: number;
|
|
38
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
39
39
|
receivedRate: number;
|
|
40
40
|
rateMax?: number | null | undefined;
|
|
41
41
|
}, {
|
|
@@ -89,13 +89,13 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
89
89
|
rateMax: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
90
90
|
receivedRate: z.ZodNumber;
|
|
91
91
|
}, "strip", z.ZodTypeAny, {
|
|
92
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
93
92
|
rate: number;
|
|
93
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
94
94
|
receivedRate: number;
|
|
95
95
|
rateMax?: number | null | undefined;
|
|
96
96
|
}, {
|
|
97
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
98
97
|
rate: number;
|
|
98
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
99
99
|
receivedRate: number;
|
|
100
100
|
rateMax?: number | null | undefined;
|
|
101
101
|
}>;
|
|
@@ -146,14 +146,14 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
146
146
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
147
147
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
148
148
|
}, "strip", z.ZodTypeAny, {
|
|
149
|
+
id: string;
|
|
149
150
|
createdAt: string;
|
|
150
151
|
updatedAt: string;
|
|
151
|
-
id: string;
|
|
152
152
|
name: string;
|
|
153
153
|
}, {
|
|
154
|
+
id: string;
|
|
154
155
|
createdAt: string | Date;
|
|
155
156
|
updatedAt: string | Date;
|
|
156
|
-
id: string;
|
|
157
157
|
name: string;
|
|
158
158
|
}>>>;
|
|
159
159
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -191,10 +191,10 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
191
191
|
agentId: string;
|
|
192
192
|
}>>>;
|
|
193
193
|
}, "strip", z.ZodTypeAny, {
|
|
194
|
-
status: "
|
|
194
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
195
|
+
id: string;
|
|
195
196
|
createdAt: string;
|
|
196
197
|
updatedAt: string;
|
|
197
|
-
id: string;
|
|
198
198
|
name: string;
|
|
199
199
|
crn: string | null;
|
|
200
200
|
govLink: string;
|
|
@@ -211,10 +211,10 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
211
211
|
agentId: string;
|
|
212
212
|
} | null | undefined;
|
|
213
213
|
}, {
|
|
214
|
-
status: "
|
|
214
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
215
|
+
id: string;
|
|
215
216
|
createdAt: string | Date;
|
|
216
217
|
updatedAt: string | Date;
|
|
217
|
-
id: string;
|
|
218
218
|
name: string;
|
|
219
219
|
crn: string | null;
|
|
220
220
|
govLink: string;
|
|
@@ -236,16 +236,31 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
236
236
|
firstName: z.ZodString;
|
|
237
237
|
lastName: z.ZodString;
|
|
238
238
|
email: z.ZodString;
|
|
239
|
+
phone: z.ZodEffects<z.ZodString, string, string>;
|
|
240
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
241
|
+
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
242
|
+
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
243
|
+
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
239
244
|
}, "strip", z.ZodTypeAny, {
|
|
240
245
|
id: string;
|
|
246
|
+
createdAt: string;
|
|
247
|
+
updatedAt: string;
|
|
241
248
|
firstName: string;
|
|
242
249
|
lastName: string;
|
|
243
250
|
email: string;
|
|
251
|
+
phone: string;
|
|
252
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
253
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
244
254
|
}, {
|
|
245
255
|
id: string;
|
|
256
|
+
createdAt: string | Date;
|
|
257
|
+
updatedAt: string | Date;
|
|
246
258
|
firstName: string;
|
|
247
259
|
lastName: string;
|
|
248
260
|
email: string;
|
|
261
|
+
phone: string;
|
|
262
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
263
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
249
264
|
}>>>;
|
|
250
265
|
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
251
266
|
userId: z.ZodString;
|
|
@@ -260,14 +275,14 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
260
275
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
261
276
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
262
277
|
}, "strip", z.ZodTypeAny, {
|
|
278
|
+
id: string;
|
|
263
279
|
createdAt: string;
|
|
264
280
|
updatedAt: string;
|
|
265
|
-
id: string;
|
|
266
281
|
name: string;
|
|
267
282
|
}, {
|
|
283
|
+
id: string;
|
|
268
284
|
createdAt: string | Date;
|
|
269
285
|
updatedAt: string | Date;
|
|
270
|
-
id: string;
|
|
271
286
|
name: string;
|
|
272
287
|
}>>>;
|
|
273
288
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -305,10 +320,10 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
305
320
|
agentId: string;
|
|
306
321
|
}>>>;
|
|
307
322
|
}, "strip", z.ZodTypeAny, {
|
|
308
|
-
status: "
|
|
323
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
324
|
+
id: string;
|
|
309
325
|
createdAt: string;
|
|
310
326
|
updatedAt: string;
|
|
311
|
-
id: string;
|
|
312
327
|
name: string;
|
|
313
328
|
crn: string | null;
|
|
314
329
|
govLink: string;
|
|
@@ -325,10 +340,10 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
325
340
|
agentId: string;
|
|
326
341
|
} | null | undefined;
|
|
327
342
|
}, {
|
|
328
|
-
status: "
|
|
343
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
344
|
+
id: string;
|
|
329
345
|
createdAt: string | Date;
|
|
330
346
|
updatedAt: string | Date;
|
|
331
|
-
id: string;
|
|
332
347
|
name: string;
|
|
333
348
|
crn: string | null;
|
|
334
349
|
govLink: string;
|
|
@@ -350,16 +365,31 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
350
365
|
firstName: z.ZodString;
|
|
351
366
|
lastName: z.ZodString;
|
|
352
367
|
email: z.ZodString;
|
|
368
|
+
phone: z.ZodEffects<z.ZodString, string, string>;
|
|
369
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
370
|
+
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
371
|
+
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
372
|
+
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
353
373
|
}, "strip", z.ZodTypeAny, {
|
|
354
374
|
id: string;
|
|
375
|
+
createdAt: string;
|
|
376
|
+
updatedAt: string;
|
|
355
377
|
firstName: string;
|
|
356
378
|
lastName: string;
|
|
357
379
|
email: string;
|
|
380
|
+
phone: string;
|
|
381
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
382
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
358
383
|
}, {
|
|
359
384
|
id: string;
|
|
385
|
+
createdAt: string | Date;
|
|
386
|
+
updatedAt: string | Date;
|
|
360
387
|
firstName: string;
|
|
361
388
|
lastName: string;
|
|
362
389
|
email: string;
|
|
390
|
+
phone: string;
|
|
391
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
392
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
363
393
|
}>>>;
|
|
364
394
|
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
365
395
|
userId: z.ZodString;
|
|
@@ -367,21 +397,21 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
367
397
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
368
398
|
}, "strip", z.ZodTypeAny, {
|
|
369
399
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
400
|
+
id: string;
|
|
370
401
|
createdAt: string;
|
|
371
402
|
updatedAt: string;
|
|
372
|
-
id: string;
|
|
373
403
|
userId: string;
|
|
374
404
|
company?: {
|
|
405
|
+
id: string;
|
|
375
406
|
createdAt: string;
|
|
376
407
|
updatedAt: string;
|
|
377
|
-
id: string;
|
|
378
408
|
name: string;
|
|
379
409
|
} | null | undefined;
|
|
380
410
|
client?: {
|
|
381
|
-
status: "
|
|
411
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
412
|
+
id: string;
|
|
382
413
|
createdAt: string;
|
|
383
414
|
updatedAt: string;
|
|
384
|
-
id: string;
|
|
385
415
|
name: string;
|
|
386
416
|
crn: string | null;
|
|
387
417
|
govLink: string;
|
|
@@ -400,27 +430,32 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
400
430
|
} | null | undefined;
|
|
401
431
|
user?: {
|
|
402
432
|
id: string;
|
|
433
|
+
createdAt: string;
|
|
434
|
+
updatedAt: string;
|
|
403
435
|
firstName: string;
|
|
404
436
|
lastName: string;
|
|
405
437
|
email: string;
|
|
438
|
+
phone: string;
|
|
439
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
440
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
406
441
|
} | null | undefined;
|
|
407
442
|
}, {
|
|
408
443
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
444
|
+
id: string;
|
|
409
445
|
createdAt: string | Date;
|
|
410
446
|
updatedAt: string | Date;
|
|
411
|
-
id: string;
|
|
412
447
|
userId: string;
|
|
413
448
|
company?: {
|
|
449
|
+
id: string;
|
|
414
450
|
createdAt: string | Date;
|
|
415
451
|
updatedAt: string | Date;
|
|
416
|
-
id: string;
|
|
417
452
|
name: string;
|
|
418
453
|
} | null | undefined;
|
|
419
454
|
client?: {
|
|
420
|
-
status: "
|
|
455
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
456
|
+
id: string;
|
|
421
457
|
createdAt: string | Date;
|
|
422
458
|
updatedAt: string | Date;
|
|
423
|
-
id: string;
|
|
424
459
|
name: string;
|
|
425
460
|
crn: string | null;
|
|
426
461
|
govLink: string;
|
|
@@ -439,28 +474,33 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
439
474
|
} | null | undefined;
|
|
440
475
|
user?: {
|
|
441
476
|
id: string;
|
|
477
|
+
createdAt: string | Date;
|
|
478
|
+
updatedAt: string | Date;
|
|
442
479
|
firstName: string;
|
|
443
480
|
lastName: string;
|
|
444
481
|
email: string;
|
|
482
|
+
phone: string;
|
|
483
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
484
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
445
485
|
} | null | undefined;
|
|
446
486
|
}>>>;
|
|
447
487
|
}, "strip", z.ZodTypeAny, {
|
|
448
488
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
489
|
+
id: string;
|
|
449
490
|
createdAt: string;
|
|
450
491
|
updatedAt: string;
|
|
451
|
-
id: string;
|
|
452
492
|
userId: string;
|
|
453
493
|
company?: {
|
|
494
|
+
id: string;
|
|
454
495
|
createdAt: string;
|
|
455
496
|
updatedAt: string;
|
|
456
|
-
id: string;
|
|
457
497
|
name: string;
|
|
458
498
|
} | null | undefined;
|
|
459
499
|
client?: {
|
|
460
|
-
status: "
|
|
500
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
501
|
+
id: string;
|
|
461
502
|
createdAt: string;
|
|
462
503
|
updatedAt: string;
|
|
463
|
-
id: string;
|
|
464
504
|
name: string;
|
|
465
505
|
crn: string | null;
|
|
466
506
|
govLink: string;
|
|
@@ -479,27 +519,32 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
479
519
|
} | null | undefined;
|
|
480
520
|
user?: {
|
|
481
521
|
id: string;
|
|
522
|
+
createdAt: string;
|
|
523
|
+
updatedAt: string;
|
|
482
524
|
firstName: string;
|
|
483
525
|
lastName: string;
|
|
484
526
|
email: string;
|
|
527
|
+
phone: string;
|
|
528
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
529
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
485
530
|
} | null | undefined;
|
|
486
531
|
newCollaboration?: {
|
|
487
532
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
533
|
+
id: string;
|
|
488
534
|
createdAt: string;
|
|
489
535
|
updatedAt: string;
|
|
490
|
-
id: string;
|
|
491
536
|
userId: string;
|
|
492
537
|
company?: {
|
|
538
|
+
id: string;
|
|
493
539
|
createdAt: string;
|
|
494
540
|
updatedAt: string;
|
|
495
|
-
id: string;
|
|
496
541
|
name: string;
|
|
497
542
|
} | null | undefined;
|
|
498
543
|
client?: {
|
|
499
|
-
status: "
|
|
544
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
545
|
+
id: string;
|
|
500
546
|
createdAt: string;
|
|
501
547
|
updatedAt: string;
|
|
502
|
-
id: string;
|
|
503
548
|
name: string;
|
|
504
549
|
crn: string | null;
|
|
505
550
|
govLink: string;
|
|
@@ -518,28 +563,33 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
518
563
|
} | null | undefined;
|
|
519
564
|
user?: {
|
|
520
565
|
id: string;
|
|
566
|
+
createdAt: string;
|
|
567
|
+
updatedAt: string;
|
|
521
568
|
firstName: string;
|
|
522
569
|
lastName: string;
|
|
523
570
|
email: string;
|
|
571
|
+
phone: string;
|
|
572
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
573
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
524
574
|
} | null | undefined;
|
|
525
575
|
} | null | undefined;
|
|
526
576
|
}, {
|
|
527
577
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
578
|
+
id: string;
|
|
528
579
|
createdAt: string | Date;
|
|
529
580
|
updatedAt: string | Date;
|
|
530
|
-
id: string;
|
|
531
581
|
userId: string;
|
|
532
582
|
company?: {
|
|
583
|
+
id: string;
|
|
533
584
|
createdAt: string | Date;
|
|
534
585
|
updatedAt: string | Date;
|
|
535
|
-
id: string;
|
|
536
586
|
name: string;
|
|
537
587
|
} | null | undefined;
|
|
538
588
|
client?: {
|
|
539
|
-
status: "
|
|
589
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
590
|
+
id: string;
|
|
540
591
|
createdAt: string | Date;
|
|
541
592
|
updatedAt: string | Date;
|
|
542
|
-
id: string;
|
|
543
593
|
name: string;
|
|
544
594
|
crn: string | null;
|
|
545
595
|
govLink: string;
|
|
@@ -558,27 +608,32 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
558
608
|
} | null | undefined;
|
|
559
609
|
user?: {
|
|
560
610
|
id: string;
|
|
611
|
+
createdAt: string | Date;
|
|
612
|
+
updatedAt: string | Date;
|
|
561
613
|
firstName: string;
|
|
562
614
|
lastName: string;
|
|
563
615
|
email: string;
|
|
616
|
+
phone: string;
|
|
617
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
618
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
564
619
|
} | null | undefined;
|
|
565
620
|
newCollaboration?: {
|
|
566
621
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
622
|
+
id: string;
|
|
567
623
|
createdAt: string | Date;
|
|
568
624
|
updatedAt: string | Date;
|
|
569
|
-
id: string;
|
|
570
625
|
userId: string;
|
|
571
626
|
company?: {
|
|
627
|
+
id: string;
|
|
572
628
|
createdAt: string | Date;
|
|
573
629
|
updatedAt: string | Date;
|
|
574
|
-
id: string;
|
|
575
630
|
name: string;
|
|
576
631
|
} | null | undefined;
|
|
577
632
|
client?: {
|
|
578
|
-
status: "
|
|
633
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
634
|
+
id: string;
|
|
579
635
|
createdAt: string | Date;
|
|
580
636
|
updatedAt: string | Date;
|
|
581
|
-
id: string;
|
|
582
637
|
name: string;
|
|
583
638
|
crn: string | null;
|
|
584
639
|
govLink: string;
|
|
@@ -597,34 +652,38 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
597
652
|
} | null | undefined;
|
|
598
653
|
user?: {
|
|
599
654
|
id: string;
|
|
655
|
+
createdAt: string | Date;
|
|
656
|
+
updatedAt: string | Date;
|
|
600
657
|
firstName: string;
|
|
601
658
|
lastName: string;
|
|
602
659
|
email: string;
|
|
660
|
+
phone: string;
|
|
661
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
662
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
603
663
|
} | null | undefined;
|
|
604
664
|
} | null | undefined;
|
|
605
665
|
}>>>;
|
|
606
666
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
607
667
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
608
668
|
}, "strip", z.ZodTypeAny, {
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
669
|
+
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
670
|
+
id: string;
|
|
612
671
|
createdAt: string;
|
|
613
672
|
updatedAt: string;
|
|
614
|
-
|
|
673
|
+
description: string;
|
|
615
674
|
pay: {
|
|
616
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
617
675
|
rate: number;
|
|
676
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
618
677
|
receivedRate: number;
|
|
619
678
|
rateMax?: number | null | undefined;
|
|
620
679
|
};
|
|
621
680
|
tradeId: string;
|
|
681
|
+
numberOfPositions: number;
|
|
622
682
|
jobQualifications: {
|
|
623
683
|
id: string;
|
|
624
684
|
qualificationId: string;
|
|
625
685
|
qualificationTypeId?: string | null | undefined;
|
|
626
686
|
}[];
|
|
627
|
-
workHours?: number | null | undefined;
|
|
628
687
|
location?: {
|
|
629
688
|
address?: string | null | undefined;
|
|
630
689
|
postcode?: string | null | undefined;
|
|
@@ -634,23 +693,24 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
634
693
|
postTown?: string | null | undefined;
|
|
635
694
|
areaCovered?: string | null | undefined;
|
|
636
695
|
} | null | undefined;
|
|
696
|
+
workHours?: number | null | undefined;
|
|
637
697
|
currentCollaboration?: {
|
|
638
698
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
699
|
+
id: string;
|
|
639
700
|
createdAt: string;
|
|
640
701
|
updatedAt: string;
|
|
641
|
-
id: string;
|
|
642
702
|
userId: string;
|
|
643
703
|
company?: {
|
|
704
|
+
id: string;
|
|
644
705
|
createdAt: string;
|
|
645
706
|
updatedAt: string;
|
|
646
|
-
id: string;
|
|
647
707
|
name: string;
|
|
648
708
|
} | null | undefined;
|
|
649
709
|
client?: {
|
|
650
|
-
status: "
|
|
710
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
711
|
+
id: string;
|
|
651
712
|
createdAt: string;
|
|
652
713
|
updatedAt: string;
|
|
653
|
-
id: string;
|
|
654
714
|
name: string;
|
|
655
715
|
crn: string | null;
|
|
656
716
|
govLink: string;
|
|
@@ -669,27 +729,32 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
669
729
|
} | null | undefined;
|
|
670
730
|
user?: {
|
|
671
731
|
id: string;
|
|
732
|
+
createdAt: string;
|
|
733
|
+
updatedAt: string;
|
|
672
734
|
firstName: string;
|
|
673
735
|
lastName: string;
|
|
674
736
|
email: string;
|
|
737
|
+
phone: string;
|
|
738
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
739
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
675
740
|
} | null | undefined;
|
|
676
741
|
newCollaboration?: {
|
|
677
742
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
743
|
+
id: string;
|
|
678
744
|
createdAt: string;
|
|
679
745
|
updatedAt: string;
|
|
680
|
-
id: string;
|
|
681
746
|
userId: string;
|
|
682
747
|
company?: {
|
|
748
|
+
id: string;
|
|
683
749
|
createdAt: string;
|
|
684
750
|
updatedAt: string;
|
|
685
|
-
id: string;
|
|
686
751
|
name: string;
|
|
687
752
|
} | null | undefined;
|
|
688
753
|
client?: {
|
|
689
|
-
status: "
|
|
754
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
755
|
+
id: string;
|
|
690
756
|
createdAt: string;
|
|
691
757
|
updatedAt: string;
|
|
692
|
-
id: string;
|
|
693
758
|
name: string;
|
|
694
759
|
crn: string | null;
|
|
695
760
|
govLink: string;
|
|
@@ -708,27 +773,31 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
708
773
|
} | null | undefined;
|
|
709
774
|
user?: {
|
|
710
775
|
id: string;
|
|
776
|
+
createdAt: string;
|
|
777
|
+
updatedAt: string;
|
|
711
778
|
firstName: string;
|
|
712
779
|
lastName: string;
|
|
713
780
|
email: string;
|
|
781
|
+
phone: string;
|
|
782
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
783
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
714
784
|
} | null | undefined;
|
|
715
785
|
} | null | undefined;
|
|
716
786
|
} | null | undefined;
|
|
717
787
|
}, {
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
788
|
+
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
789
|
+
id: string;
|
|
721
790
|
createdAt: string | Date;
|
|
722
791
|
updatedAt: string | Date;
|
|
723
|
-
|
|
792
|
+
description: string;
|
|
724
793
|
pay: {
|
|
725
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
726
794
|
rate: number;
|
|
795
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
727
796
|
receivedRate: number;
|
|
728
797
|
rateMax?: number | null | undefined;
|
|
729
798
|
};
|
|
730
799
|
tradeId: string;
|
|
731
|
-
|
|
800
|
+
numberOfPositions: number;
|
|
732
801
|
location?: {
|
|
733
802
|
address?: string | null | undefined;
|
|
734
803
|
postcode?: string | null | undefined;
|
|
@@ -738,6 +807,7 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
738
807
|
postTown?: string | null | undefined;
|
|
739
808
|
areaCovered?: string | null | undefined;
|
|
740
809
|
} | null | undefined;
|
|
810
|
+
workHours?: number | null | undefined;
|
|
741
811
|
jobQualifications?: {
|
|
742
812
|
id: string;
|
|
743
813
|
qualificationId: string;
|
|
@@ -745,21 +815,21 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
745
815
|
}[] | undefined;
|
|
746
816
|
currentCollaboration?: {
|
|
747
817
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
818
|
+
id: string;
|
|
748
819
|
createdAt: string | Date;
|
|
749
820
|
updatedAt: string | Date;
|
|
750
|
-
id: string;
|
|
751
821
|
userId: string;
|
|
752
822
|
company?: {
|
|
823
|
+
id: string;
|
|
753
824
|
createdAt: string | Date;
|
|
754
825
|
updatedAt: string | Date;
|
|
755
|
-
id: string;
|
|
756
826
|
name: string;
|
|
757
827
|
} | null | undefined;
|
|
758
828
|
client?: {
|
|
759
|
-
status: "
|
|
829
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
830
|
+
id: string;
|
|
760
831
|
createdAt: string | Date;
|
|
761
832
|
updatedAt: string | Date;
|
|
762
|
-
id: string;
|
|
763
833
|
name: string;
|
|
764
834
|
crn: string | null;
|
|
765
835
|
govLink: string;
|
|
@@ -778,27 +848,32 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
778
848
|
} | null | undefined;
|
|
779
849
|
user?: {
|
|
780
850
|
id: string;
|
|
851
|
+
createdAt: string | Date;
|
|
852
|
+
updatedAt: string | Date;
|
|
781
853
|
firstName: string;
|
|
782
854
|
lastName: string;
|
|
783
855
|
email: string;
|
|
856
|
+
phone: string;
|
|
857
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
858
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
784
859
|
} | null | undefined;
|
|
785
860
|
newCollaboration?: {
|
|
786
861
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
862
|
+
id: string;
|
|
787
863
|
createdAt: string | Date;
|
|
788
864
|
updatedAt: string | Date;
|
|
789
|
-
id: string;
|
|
790
865
|
userId: string;
|
|
791
866
|
company?: {
|
|
867
|
+
id: string;
|
|
792
868
|
createdAt: string | Date;
|
|
793
869
|
updatedAt: string | Date;
|
|
794
|
-
id: string;
|
|
795
870
|
name: string;
|
|
796
871
|
} | null | undefined;
|
|
797
872
|
client?: {
|
|
798
|
-
status: "
|
|
873
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
874
|
+
id: string;
|
|
799
875
|
createdAt: string | Date;
|
|
800
876
|
updatedAt: string | Date;
|
|
801
|
-
id: string;
|
|
802
877
|
name: string;
|
|
803
878
|
crn: string | null;
|
|
804
879
|
govLink: string;
|
|
@@ -817,9 +892,14 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
817
892
|
} | null | undefined;
|
|
818
893
|
user?: {
|
|
819
894
|
id: string;
|
|
895
|
+
createdAt: string | Date;
|
|
896
|
+
updatedAt: string | Date;
|
|
820
897
|
firstName: string;
|
|
821
898
|
lastName: string;
|
|
822
899
|
email: string;
|
|
900
|
+
phone: string;
|
|
901
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
902
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
823
903
|
} | null | undefined;
|
|
824
904
|
} | null | undefined;
|
|
825
905
|
} | null | undefined;
|
|
@@ -847,8 +927,8 @@ export declare const CreateJobSchema: z.ZodObject<{
|
|
|
847
927
|
rateMax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
848
928
|
receivedRate: z.ZodNumber;
|
|
849
929
|
}, "strip", z.ZodTypeAny, {
|
|
850
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
851
930
|
rate: number;
|
|
931
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
852
932
|
receivedRate: number;
|
|
853
933
|
rateMax?: number | null | undefined;
|
|
854
934
|
}, {
|
|
@@ -877,17 +957,17 @@ export declare const CreateJobSchema: z.ZodObject<{
|
|
|
877
957
|
}>, "many">>;
|
|
878
958
|
status: z.ZodDefault<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE"]>>;
|
|
879
959
|
}, "strip", z.ZodTypeAny, {
|
|
960
|
+
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
880
961
|
description: string;
|
|
881
|
-
numberOfPositions: number;
|
|
882
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
883
|
-
workHours: number;
|
|
884
962
|
pay: {
|
|
885
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
886
963
|
rate: number;
|
|
964
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
887
965
|
receivedRate: number;
|
|
888
966
|
rateMax?: number | null | undefined;
|
|
889
967
|
};
|
|
890
968
|
tradeId: string;
|
|
969
|
+
numberOfPositions: number;
|
|
970
|
+
workHours: number;
|
|
891
971
|
currentCollaboration: {
|
|
892
972
|
id: string;
|
|
893
973
|
};
|
|
@@ -901,7 +981,6 @@ export declare const CreateJobSchema: z.ZodObject<{
|
|
|
901
981
|
}[] | undefined;
|
|
902
982
|
}, {
|
|
903
983
|
description: string;
|
|
904
|
-
numberOfPositions: number;
|
|
905
984
|
pay: {
|
|
906
985
|
rate: number;
|
|
907
986
|
receivedRate: number;
|
|
@@ -909,15 +988,16 @@ export declare const CreateJobSchema: z.ZodObject<{
|
|
|
909
988
|
rateMax?: number | null | undefined;
|
|
910
989
|
};
|
|
911
990
|
tradeId: string;
|
|
991
|
+
numberOfPositions: number;
|
|
912
992
|
currentCollaboration: {
|
|
913
993
|
id: string;
|
|
914
994
|
};
|
|
915
|
-
status?: "
|
|
916
|
-
workHours?: number | undefined;
|
|
995
|
+
status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | undefined;
|
|
917
996
|
location?: {
|
|
918
997
|
address?: string | null | undefined;
|
|
919
998
|
postcode?: string | null | undefined;
|
|
920
999
|
} | undefined;
|
|
1000
|
+
workHours?: number | undefined;
|
|
921
1001
|
jobQualifications?: {
|
|
922
1002
|
qualificationId: string;
|
|
923
1003
|
qualificationTypeId?: string | null | undefined;
|
|
@@ -946,8 +1026,8 @@ export declare const UpdateJobSchema: z.ZodObject<{
|
|
|
946
1026
|
rateMax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
947
1027
|
receivedRate: z.ZodNumber;
|
|
948
1028
|
}, "strip", z.ZodTypeAny, {
|
|
949
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
950
1029
|
rate: number;
|
|
1030
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
951
1031
|
receivedRate: number;
|
|
952
1032
|
rateMax?: number | null | undefined;
|
|
953
1033
|
}, {
|
|
@@ -976,21 +1056,21 @@ export declare const UpdateJobSchema: z.ZodObject<{
|
|
|
976
1056
|
}>, "many">>;
|
|
977
1057
|
status: z.ZodOptional<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE"]>>;
|
|
978
1058
|
}, "strip", z.ZodTypeAny, {
|
|
1059
|
+
status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | undefined;
|
|
979
1060
|
description?: string | undefined;
|
|
980
|
-
numberOfPositions?: number | undefined;
|
|
981
|
-
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | undefined;
|
|
982
|
-
workHours?: number | undefined;
|
|
983
1061
|
pay?: {
|
|
984
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
985
1062
|
rate: number;
|
|
1063
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
986
1064
|
receivedRate: number;
|
|
987
1065
|
rateMax?: number | null | undefined;
|
|
988
1066
|
} | undefined;
|
|
1067
|
+
tradeId?: string | undefined;
|
|
989
1068
|
location?: {
|
|
990
1069
|
address?: string | null | undefined;
|
|
991
1070
|
postcode?: string | null | undefined;
|
|
992
1071
|
} | undefined;
|
|
993
|
-
|
|
1072
|
+
numberOfPositions?: number | undefined;
|
|
1073
|
+
workHours?: number | undefined;
|
|
994
1074
|
jobQualifications?: {
|
|
995
1075
|
qualificationId: string;
|
|
996
1076
|
qualificationTypeId?: string | null | undefined;
|
|
@@ -999,21 +1079,21 @@ export declare const UpdateJobSchema: z.ZodObject<{
|
|
|
999
1079
|
id: string;
|
|
1000
1080
|
} | undefined;
|
|
1001
1081
|
}, {
|
|
1082
|
+
status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | undefined;
|
|
1002
1083
|
description?: string | undefined;
|
|
1003
|
-
numberOfPositions?: number | undefined;
|
|
1004
|
-
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | undefined;
|
|
1005
|
-
workHours?: number | undefined;
|
|
1006
1084
|
pay?: {
|
|
1007
1085
|
rate: number;
|
|
1008
1086
|
receivedRate: number;
|
|
1009
1087
|
rateUnit?: "DAILY" | "HOURLY" | undefined;
|
|
1010
1088
|
rateMax?: number | null | undefined;
|
|
1011
1089
|
} | undefined;
|
|
1090
|
+
tradeId?: string | undefined;
|
|
1012
1091
|
location?: {
|
|
1013
1092
|
address?: string | null | undefined;
|
|
1014
1093
|
postcode?: string | null | undefined;
|
|
1015
1094
|
} | undefined;
|
|
1016
|
-
|
|
1095
|
+
numberOfPositions?: number | undefined;
|
|
1096
|
+
workHours?: number | undefined;
|
|
1017
1097
|
jobQualifications?: {
|
|
1018
1098
|
qualificationId: string;
|
|
1019
1099
|
qualificationTypeId?: string | null | undefined;
|
|
@@ -1071,51 +1151,51 @@ export declare const FilterJobSchema: z.ZodObject<{
|
|
|
1071
1151
|
}, "strip", z.ZodTypeAny, {
|
|
1072
1152
|
limit: number;
|
|
1073
1153
|
page: number;
|
|
1074
|
-
status?: "
|
|
1154
|
+
status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | null | undefined;
|
|
1155
|
+
postcode?: string | null | undefined;
|
|
1075
1156
|
createdAt?: {
|
|
1076
1157
|
from?: string | null | undefined;
|
|
1077
1158
|
to?: string | null | undefined;
|
|
1078
1159
|
} | null | undefined;
|
|
1160
|
+
sortBy?: "status" | "createdAt" | "updatedAt" | "description" | "numberOfPositions" | null | undefined;
|
|
1161
|
+
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
1162
|
+
userId?: string | null | undefined;
|
|
1163
|
+
companyId?: string | null | undefined;
|
|
1164
|
+
clientId?: string | null | undefined;
|
|
1079
1165
|
pay?: {
|
|
1080
1166
|
minRate?: number | null | undefined;
|
|
1081
1167
|
maxRate?: number | null | undefined;
|
|
1082
1168
|
} | null | undefined;
|
|
1083
|
-
postcode?: string | null | undefined;
|
|
1084
1169
|
tradeId?: string | null | undefined;
|
|
1085
|
-
|
|
1170
|
+
distance?: number | null | undefined;
|
|
1086
1171
|
qualificationFilters?: {
|
|
1087
1172
|
qualificationId?: string | undefined;
|
|
1088
1173
|
qualificationTypeId?: string | undefined;
|
|
1089
1174
|
}[] | undefined;
|
|
1090
|
-
clientId?: string | null | undefined;
|
|
1091
|
-
companyId?: string | null | undefined;
|
|
1092
|
-
distance?: number | null | undefined;
|
|
1093
|
-
sortBy?: "description" | "numberOfPositions" | "status" | "createdAt" | "updatedAt" | null | undefined;
|
|
1094
|
-
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
1095
1175
|
}, {
|
|
1096
|
-
status?: "
|
|
1176
|
+
status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | null | undefined;
|
|
1177
|
+
postcode?: string | null | undefined;
|
|
1097
1178
|
createdAt?: {
|
|
1098
1179
|
from?: string | null | undefined;
|
|
1099
1180
|
to?: string | null | undefined;
|
|
1100
1181
|
} | null | undefined;
|
|
1182
|
+
limit?: number | undefined;
|
|
1183
|
+
page?: number | undefined;
|
|
1184
|
+
sortBy?: "status" | "createdAt" | "updatedAt" | "description" | "numberOfPositions" | null | undefined;
|
|
1185
|
+
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
1186
|
+
userId?: string | null | undefined;
|
|
1187
|
+
companyId?: string | null | undefined;
|
|
1188
|
+
clientId?: string | null | undefined;
|
|
1101
1189
|
pay?: {
|
|
1102
1190
|
minRate?: number | null | undefined;
|
|
1103
1191
|
maxRate?: number | null | undefined;
|
|
1104
1192
|
} | null | undefined;
|
|
1105
|
-
postcode?: string | null | undefined;
|
|
1106
1193
|
tradeId?: string | null | undefined;
|
|
1107
|
-
|
|
1108
|
-
limit?: number | undefined;
|
|
1109
|
-
page?: number | undefined;
|
|
1194
|
+
distance?: number | null | undefined;
|
|
1110
1195
|
qualificationFilters?: {
|
|
1111
1196
|
qualificationId?: string | undefined;
|
|
1112
1197
|
qualificationTypeId?: string | undefined;
|
|
1113
1198
|
}[] | undefined;
|
|
1114
|
-
clientId?: string | null | undefined;
|
|
1115
|
-
companyId?: string | null | undefined;
|
|
1116
|
-
distance?: number | null | undefined;
|
|
1117
|
-
sortBy?: "description" | "numberOfPositions" | "status" | "createdAt" | "updatedAt" | null | undefined;
|
|
1118
|
-
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
1119
1199
|
}>;
|
|
1120
1200
|
export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
1121
1201
|
items: z.ZodArray<z.ZodObject<{
|
|
@@ -1130,13 +1210,13 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1130
1210
|
rateMax: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
1131
1211
|
receivedRate: z.ZodNumber;
|
|
1132
1212
|
}, "strip", z.ZodTypeAny, {
|
|
1133
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
1134
1213
|
rate: number;
|
|
1214
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
1135
1215
|
receivedRate: number;
|
|
1136
1216
|
rateMax?: number | null | undefined;
|
|
1137
1217
|
}, {
|
|
1138
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
1139
1218
|
rate: number;
|
|
1219
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
1140
1220
|
receivedRate: number;
|
|
1141
1221
|
rateMax?: number | null | undefined;
|
|
1142
1222
|
}>;
|
|
@@ -1187,14 +1267,14 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1187
1267
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1188
1268
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1189
1269
|
}, "strip", z.ZodTypeAny, {
|
|
1270
|
+
id: string;
|
|
1190
1271
|
createdAt: string;
|
|
1191
1272
|
updatedAt: string;
|
|
1192
|
-
id: string;
|
|
1193
1273
|
name: string;
|
|
1194
1274
|
}, {
|
|
1275
|
+
id: string;
|
|
1195
1276
|
createdAt: string | Date;
|
|
1196
1277
|
updatedAt: string | Date;
|
|
1197
|
-
id: string;
|
|
1198
1278
|
name: string;
|
|
1199
1279
|
}>>>;
|
|
1200
1280
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -1232,10 +1312,10 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1232
1312
|
agentId: string;
|
|
1233
1313
|
}>>>;
|
|
1234
1314
|
}, "strip", z.ZodTypeAny, {
|
|
1235
|
-
status: "
|
|
1315
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1316
|
+
id: string;
|
|
1236
1317
|
createdAt: string;
|
|
1237
1318
|
updatedAt: string;
|
|
1238
|
-
id: string;
|
|
1239
1319
|
name: string;
|
|
1240
1320
|
crn: string | null;
|
|
1241
1321
|
govLink: string;
|
|
@@ -1252,10 +1332,10 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1252
1332
|
agentId: string;
|
|
1253
1333
|
} | null | undefined;
|
|
1254
1334
|
}, {
|
|
1255
|
-
status: "
|
|
1335
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1336
|
+
id: string;
|
|
1256
1337
|
createdAt: string | Date;
|
|
1257
1338
|
updatedAt: string | Date;
|
|
1258
|
-
id: string;
|
|
1259
1339
|
name: string;
|
|
1260
1340
|
crn: string | null;
|
|
1261
1341
|
govLink: string;
|
|
@@ -1277,16 +1357,31 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1277
1357
|
firstName: z.ZodString;
|
|
1278
1358
|
lastName: z.ZodString;
|
|
1279
1359
|
email: z.ZodString;
|
|
1360
|
+
phone: z.ZodEffects<z.ZodString, string, string>;
|
|
1361
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
1362
|
+
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
1363
|
+
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1364
|
+
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1280
1365
|
}, "strip", z.ZodTypeAny, {
|
|
1281
1366
|
id: string;
|
|
1367
|
+
createdAt: string;
|
|
1368
|
+
updatedAt: string;
|
|
1282
1369
|
firstName: string;
|
|
1283
1370
|
lastName: string;
|
|
1284
1371
|
email: string;
|
|
1372
|
+
phone: string;
|
|
1373
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1374
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1285
1375
|
}, {
|
|
1286
1376
|
id: string;
|
|
1377
|
+
createdAt: string | Date;
|
|
1378
|
+
updatedAt: string | Date;
|
|
1287
1379
|
firstName: string;
|
|
1288
1380
|
lastName: string;
|
|
1289
1381
|
email: string;
|
|
1382
|
+
phone: string;
|
|
1383
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1384
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1290
1385
|
}>>>;
|
|
1291
1386
|
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
1292
1387
|
userId: z.ZodString;
|
|
@@ -1301,14 +1396,14 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1301
1396
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1302
1397
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1303
1398
|
}, "strip", z.ZodTypeAny, {
|
|
1399
|
+
id: string;
|
|
1304
1400
|
createdAt: string;
|
|
1305
1401
|
updatedAt: string;
|
|
1306
|
-
id: string;
|
|
1307
1402
|
name: string;
|
|
1308
1403
|
}, {
|
|
1404
|
+
id: string;
|
|
1309
1405
|
createdAt: string | Date;
|
|
1310
1406
|
updatedAt: string | Date;
|
|
1311
|
-
id: string;
|
|
1312
1407
|
name: string;
|
|
1313
1408
|
}>>>;
|
|
1314
1409
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -1346,10 +1441,10 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1346
1441
|
agentId: string;
|
|
1347
1442
|
}>>>;
|
|
1348
1443
|
}, "strip", z.ZodTypeAny, {
|
|
1349
|
-
status: "
|
|
1444
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1445
|
+
id: string;
|
|
1350
1446
|
createdAt: string;
|
|
1351
1447
|
updatedAt: string;
|
|
1352
|
-
id: string;
|
|
1353
1448
|
name: string;
|
|
1354
1449
|
crn: string | null;
|
|
1355
1450
|
govLink: string;
|
|
@@ -1366,10 +1461,10 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1366
1461
|
agentId: string;
|
|
1367
1462
|
} | null | undefined;
|
|
1368
1463
|
}, {
|
|
1369
|
-
status: "
|
|
1464
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1465
|
+
id: string;
|
|
1370
1466
|
createdAt: string | Date;
|
|
1371
1467
|
updatedAt: string | Date;
|
|
1372
|
-
id: string;
|
|
1373
1468
|
name: string;
|
|
1374
1469
|
crn: string | null;
|
|
1375
1470
|
govLink: string;
|
|
@@ -1391,16 +1486,31 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1391
1486
|
firstName: z.ZodString;
|
|
1392
1487
|
lastName: z.ZodString;
|
|
1393
1488
|
email: z.ZodString;
|
|
1489
|
+
phone: z.ZodEffects<z.ZodString, string, string>;
|
|
1490
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
1491
|
+
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
1492
|
+
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1493
|
+
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1394
1494
|
}, "strip", z.ZodTypeAny, {
|
|
1395
1495
|
id: string;
|
|
1496
|
+
createdAt: string;
|
|
1497
|
+
updatedAt: string;
|
|
1396
1498
|
firstName: string;
|
|
1397
1499
|
lastName: string;
|
|
1398
1500
|
email: string;
|
|
1501
|
+
phone: string;
|
|
1502
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1503
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1399
1504
|
}, {
|
|
1400
1505
|
id: string;
|
|
1506
|
+
createdAt: string | Date;
|
|
1507
|
+
updatedAt: string | Date;
|
|
1401
1508
|
firstName: string;
|
|
1402
1509
|
lastName: string;
|
|
1403
1510
|
email: string;
|
|
1511
|
+
phone: string;
|
|
1512
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1513
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1404
1514
|
}>>>;
|
|
1405
1515
|
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
1406
1516
|
userId: z.ZodString;
|
|
@@ -1408,21 +1518,21 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1408
1518
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1409
1519
|
}, "strip", z.ZodTypeAny, {
|
|
1410
1520
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1521
|
+
id: string;
|
|
1411
1522
|
createdAt: string;
|
|
1412
1523
|
updatedAt: string;
|
|
1413
|
-
id: string;
|
|
1414
1524
|
userId: string;
|
|
1415
1525
|
company?: {
|
|
1526
|
+
id: string;
|
|
1416
1527
|
createdAt: string;
|
|
1417
1528
|
updatedAt: string;
|
|
1418
|
-
id: string;
|
|
1419
1529
|
name: string;
|
|
1420
1530
|
} | null | undefined;
|
|
1421
1531
|
client?: {
|
|
1422
|
-
status: "
|
|
1532
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1533
|
+
id: string;
|
|
1423
1534
|
createdAt: string;
|
|
1424
1535
|
updatedAt: string;
|
|
1425
|
-
id: string;
|
|
1426
1536
|
name: string;
|
|
1427
1537
|
crn: string | null;
|
|
1428
1538
|
govLink: string;
|
|
@@ -1441,27 +1551,32 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1441
1551
|
} | null | undefined;
|
|
1442
1552
|
user?: {
|
|
1443
1553
|
id: string;
|
|
1554
|
+
createdAt: string;
|
|
1555
|
+
updatedAt: string;
|
|
1444
1556
|
firstName: string;
|
|
1445
1557
|
lastName: string;
|
|
1446
1558
|
email: string;
|
|
1559
|
+
phone: string;
|
|
1560
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1561
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1447
1562
|
} | null | undefined;
|
|
1448
1563
|
}, {
|
|
1449
1564
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1565
|
+
id: string;
|
|
1450
1566
|
createdAt: string | Date;
|
|
1451
1567
|
updatedAt: string | Date;
|
|
1452
|
-
id: string;
|
|
1453
1568
|
userId: string;
|
|
1454
1569
|
company?: {
|
|
1570
|
+
id: string;
|
|
1455
1571
|
createdAt: string | Date;
|
|
1456
1572
|
updatedAt: string | Date;
|
|
1457
|
-
id: string;
|
|
1458
1573
|
name: string;
|
|
1459
1574
|
} | null | undefined;
|
|
1460
1575
|
client?: {
|
|
1461
|
-
status: "
|
|
1576
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1577
|
+
id: string;
|
|
1462
1578
|
createdAt: string | Date;
|
|
1463
1579
|
updatedAt: string | Date;
|
|
1464
|
-
id: string;
|
|
1465
1580
|
name: string;
|
|
1466
1581
|
crn: string | null;
|
|
1467
1582
|
govLink: string;
|
|
@@ -1480,28 +1595,33 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1480
1595
|
} | null | undefined;
|
|
1481
1596
|
user?: {
|
|
1482
1597
|
id: string;
|
|
1598
|
+
createdAt: string | Date;
|
|
1599
|
+
updatedAt: string | Date;
|
|
1483
1600
|
firstName: string;
|
|
1484
1601
|
lastName: string;
|
|
1485
1602
|
email: string;
|
|
1603
|
+
phone: string;
|
|
1604
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1605
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1486
1606
|
} | null | undefined;
|
|
1487
1607
|
}>>>;
|
|
1488
1608
|
}, "strip", z.ZodTypeAny, {
|
|
1489
1609
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1610
|
+
id: string;
|
|
1490
1611
|
createdAt: string;
|
|
1491
1612
|
updatedAt: string;
|
|
1492
|
-
id: string;
|
|
1493
1613
|
userId: string;
|
|
1494
1614
|
company?: {
|
|
1615
|
+
id: string;
|
|
1495
1616
|
createdAt: string;
|
|
1496
1617
|
updatedAt: string;
|
|
1497
|
-
id: string;
|
|
1498
1618
|
name: string;
|
|
1499
1619
|
} | null | undefined;
|
|
1500
1620
|
client?: {
|
|
1501
|
-
status: "
|
|
1621
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1622
|
+
id: string;
|
|
1502
1623
|
createdAt: string;
|
|
1503
1624
|
updatedAt: string;
|
|
1504
|
-
id: string;
|
|
1505
1625
|
name: string;
|
|
1506
1626
|
crn: string | null;
|
|
1507
1627
|
govLink: string;
|
|
@@ -1520,27 +1640,32 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1520
1640
|
} | null | undefined;
|
|
1521
1641
|
user?: {
|
|
1522
1642
|
id: string;
|
|
1643
|
+
createdAt: string;
|
|
1644
|
+
updatedAt: string;
|
|
1523
1645
|
firstName: string;
|
|
1524
1646
|
lastName: string;
|
|
1525
1647
|
email: string;
|
|
1648
|
+
phone: string;
|
|
1649
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1650
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1526
1651
|
} | null | undefined;
|
|
1527
1652
|
newCollaboration?: {
|
|
1528
1653
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1654
|
+
id: string;
|
|
1529
1655
|
createdAt: string;
|
|
1530
1656
|
updatedAt: string;
|
|
1531
|
-
id: string;
|
|
1532
1657
|
userId: string;
|
|
1533
1658
|
company?: {
|
|
1659
|
+
id: string;
|
|
1534
1660
|
createdAt: string;
|
|
1535
1661
|
updatedAt: string;
|
|
1536
|
-
id: string;
|
|
1537
1662
|
name: string;
|
|
1538
1663
|
} | null | undefined;
|
|
1539
1664
|
client?: {
|
|
1540
|
-
status: "
|
|
1665
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1666
|
+
id: string;
|
|
1541
1667
|
createdAt: string;
|
|
1542
1668
|
updatedAt: string;
|
|
1543
|
-
id: string;
|
|
1544
1669
|
name: string;
|
|
1545
1670
|
crn: string | null;
|
|
1546
1671
|
govLink: string;
|
|
@@ -1559,28 +1684,33 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1559
1684
|
} | null | undefined;
|
|
1560
1685
|
user?: {
|
|
1561
1686
|
id: string;
|
|
1687
|
+
createdAt: string;
|
|
1688
|
+
updatedAt: string;
|
|
1562
1689
|
firstName: string;
|
|
1563
1690
|
lastName: string;
|
|
1564
1691
|
email: string;
|
|
1692
|
+
phone: string;
|
|
1693
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1694
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1565
1695
|
} | null | undefined;
|
|
1566
1696
|
} | null | undefined;
|
|
1567
1697
|
}, {
|
|
1568
1698
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1699
|
+
id: string;
|
|
1569
1700
|
createdAt: string | Date;
|
|
1570
1701
|
updatedAt: string | Date;
|
|
1571
|
-
id: string;
|
|
1572
1702
|
userId: string;
|
|
1573
1703
|
company?: {
|
|
1704
|
+
id: string;
|
|
1574
1705
|
createdAt: string | Date;
|
|
1575
1706
|
updatedAt: string | Date;
|
|
1576
|
-
id: string;
|
|
1577
1707
|
name: string;
|
|
1578
1708
|
} | null | undefined;
|
|
1579
1709
|
client?: {
|
|
1580
|
-
status: "
|
|
1710
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1711
|
+
id: string;
|
|
1581
1712
|
createdAt: string | Date;
|
|
1582
1713
|
updatedAt: string | Date;
|
|
1583
|
-
id: string;
|
|
1584
1714
|
name: string;
|
|
1585
1715
|
crn: string | null;
|
|
1586
1716
|
govLink: string;
|
|
@@ -1599,27 +1729,32 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1599
1729
|
} | null | undefined;
|
|
1600
1730
|
user?: {
|
|
1601
1731
|
id: string;
|
|
1732
|
+
createdAt: string | Date;
|
|
1733
|
+
updatedAt: string | Date;
|
|
1602
1734
|
firstName: string;
|
|
1603
1735
|
lastName: string;
|
|
1604
1736
|
email: string;
|
|
1737
|
+
phone: string;
|
|
1738
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1739
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1605
1740
|
} | null | undefined;
|
|
1606
1741
|
newCollaboration?: {
|
|
1607
1742
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1743
|
+
id: string;
|
|
1608
1744
|
createdAt: string | Date;
|
|
1609
1745
|
updatedAt: string | Date;
|
|
1610
|
-
id: string;
|
|
1611
1746
|
userId: string;
|
|
1612
1747
|
company?: {
|
|
1748
|
+
id: string;
|
|
1613
1749
|
createdAt: string | Date;
|
|
1614
1750
|
updatedAt: string | Date;
|
|
1615
|
-
id: string;
|
|
1616
1751
|
name: string;
|
|
1617
1752
|
} | null | undefined;
|
|
1618
1753
|
client?: {
|
|
1619
|
-
status: "
|
|
1754
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1755
|
+
id: string;
|
|
1620
1756
|
createdAt: string | Date;
|
|
1621
1757
|
updatedAt: string | Date;
|
|
1622
|
-
id: string;
|
|
1623
1758
|
name: string;
|
|
1624
1759
|
crn: string | null;
|
|
1625
1760
|
govLink: string;
|
|
@@ -1638,34 +1773,38 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1638
1773
|
} | null | undefined;
|
|
1639
1774
|
user?: {
|
|
1640
1775
|
id: string;
|
|
1776
|
+
createdAt: string | Date;
|
|
1777
|
+
updatedAt: string | Date;
|
|
1641
1778
|
firstName: string;
|
|
1642
1779
|
lastName: string;
|
|
1643
1780
|
email: string;
|
|
1781
|
+
phone: string;
|
|
1782
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1783
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1644
1784
|
} | null | undefined;
|
|
1645
1785
|
} | null | undefined;
|
|
1646
1786
|
}>>>;
|
|
1647
1787
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1648
1788
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1649
1789
|
}, "strip", z.ZodTypeAny, {
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
1790
|
+
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
1791
|
+
id: string;
|
|
1653
1792
|
createdAt: string;
|
|
1654
1793
|
updatedAt: string;
|
|
1655
|
-
|
|
1794
|
+
description: string;
|
|
1656
1795
|
pay: {
|
|
1657
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
1658
1796
|
rate: number;
|
|
1797
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
1659
1798
|
receivedRate: number;
|
|
1660
1799
|
rateMax?: number | null | undefined;
|
|
1661
1800
|
};
|
|
1662
1801
|
tradeId: string;
|
|
1802
|
+
numberOfPositions: number;
|
|
1663
1803
|
jobQualifications: {
|
|
1664
1804
|
id: string;
|
|
1665
1805
|
qualificationId: string;
|
|
1666
1806
|
qualificationTypeId?: string | null | undefined;
|
|
1667
1807
|
}[];
|
|
1668
|
-
workHours?: number | null | undefined;
|
|
1669
1808
|
location?: {
|
|
1670
1809
|
address?: string | null | undefined;
|
|
1671
1810
|
postcode?: string | null | undefined;
|
|
@@ -1675,23 +1814,24 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1675
1814
|
postTown?: string | null | undefined;
|
|
1676
1815
|
areaCovered?: string | null | undefined;
|
|
1677
1816
|
} | null | undefined;
|
|
1817
|
+
workHours?: number | null | undefined;
|
|
1678
1818
|
currentCollaboration?: {
|
|
1679
1819
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1820
|
+
id: string;
|
|
1680
1821
|
createdAt: string;
|
|
1681
1822
|
updatedAt: string;
|
|
1682
|
-
id: string;
|
|
1683
1823
|
userId: string;
|
|
1684
1824
|
company?: {
|
|
1825
|
+
id: string;
|
|
1685
1826
|
createdAt: string;
|
|
1686
1827
|
updatedAt: string;
|
|
1687
|
-
id: string;
|
|
1688
1828
|
name: string;
|
|
1689
1829
|
} | null | undefined;
|
|
1690
1830
|
client?: {
|
|
1691
|
-
status: "
|
|
1831
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1832
|
+
id: string;
|
|
1692
1833
|
createdAt: string;
|
|
1693
1834
|
updatedAt: string;
|
|
1694
|
-
id: string;
|
|
1695
1835
|
name: string;
|
|
1696
1836
|
crn: string | null;
|
|
1697
1837
|
govLink: string;
|
|
@@ -1710,27 +1850,32 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1710
1850
|
} | null | undefined;
|
|
1711
1851
|
user?: {
|
|
1712
1852
|
id: string;
|
|
1853
|
+
createdAt: string;
|
|
1854
|
+
updatedAt: string;
|
|
1713
1855
|
firstName: string;
|
|
1714
1856
|
lastName: string;
|
|
1715
1857
|
email: string;
|
|
1858
|
+
phone: string;
|
|
1859
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1860
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1716
1861
|
} | null | undefined;
|
|
1717
1862
|
newCollaboration?: {
|
|
1718
1863
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1864
|
+
id: string;
|
|
1719
1865
|
createdAt: string;
|
|
1720
1866
|
updatedAt: string;
|
|
1721
|
-
id: string;
|
|
1722
1867
|
userId: string;
|
|
1723
1868
|
company?: {
|
|
1869
|
+
id: string;
|
|
1724
1870
|
createdAt: string;
|
|
1725
1871
|
updatedAt: string;
|
|
1726
|
-
id: string;
|
|
1727
1872
|
name: string;
|
|
1728
1873
|
} | null | undefined;
|
|
1729
1874
|
client?: {
|
|
1730
|
-
status: "
|
|
1875
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1876
|
+
id: string;
|
|
1731
1877
|
createdAt: string;
|
|
1732
1878
|
updatedAt: string;
|
|
1733
|
-
id: string;
|
|
1734
1879
|
name: string;
|
|
1735
1880
|
crn: string | null;
|
|
1736
1881
|
govLink: string;
|
|
@@ -1749,27 +1894,31 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1749
1894
|
} | null | undefined;
|
|
1750
1895
|
user?: {
|
|
1751
1896
|
id: string;
|
|
1897
|
+
createdAt: string;
|
|
1898
|
+
updatedAt: string;
|
|
1752
1899
|
firstName: string;
|
|
1753
1900
|
lastName: string;
|
|
1754
1901
|
email: string;
|
|
1902
|
+
phone: string;
|
|
1903
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1904
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1755
1905
|
} | null | undefined;
|
|
1756
1906
|
} | null | undefined;
|
|
1757
1907
|
} | null | undefined;
|
|
1758
1908
|
}, {
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
1909
|
+
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
1910
|
+
id: string;
|
|
1762
1911
|
createdAt: string | Date;
|
|
1763
1912
|
updatedAt: string | Date;
|
|
1764
|
-
|
|
1913
|
+
description: string;
|
|
1765
1914
|
pay: {
|
|
1766
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
1767
1915
|
rate: number;
|
|
1916
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
1768
1917
|
receivedRate: number;
|
|
1769
1918
|
rateMax?: number | null | undefined;
|
|
1770
1919
|
};
|
|
1771
1920
|
tradeId: string;
|
|
1772
|
-
|
|
1921
|
+
numberOfPositions: number;
|
|
1773
1922
|
location?: {
|
|
1774
1923
|
address?: string | null | undefined;
|
|
1775
1924
|
postcode?: string | null | undefined;
|
|
@@ -1779,6 +1928,7 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1779
1928
|
postTown?: string | null | undefined;
|
|
1780
1929
|
areaCovered?: string | null | undefined;
|
|
1781
1930
|
} | null | undefined;
|
|
1931
|
+
workHours?: number | null | undefined;
|
|
1782
1932
|
jobQualifications?: {
|
|
1783
1933
|
id: string;
|
|
1784
1934
|
qualificationId: string;
|
|
@@ -1786,21 +1936,21 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1786
1936
|
}[] | undefined;
|
|
1787
1937
|
currentCollaboration?: {
|
|
1788
1938
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1939
|
+
id: string;
|
|
1789
1940
|
createdAt: string | Date;
|
|
1790
1941
|
updatedAt: string | Date;
|
|
1791
|
-
id: string;
|
|
1792
1942
|
userId: string;
|
|
1793
1943
|
company?: {
|
|
1944
|
+
id: string;
|
|
1794
1945
|
createdAt: string | Date;
|
|
1795
1946
|
updatedAt: string | Date;
|
|
1796
|
-
id: string;
|
|
1797
1947
|
name: string;
|
|
1798
1948
|
} | null | undefined;
|
|
1799
1949
|
client?: {
|
|
1800
|
-
status: "
|
|
1950
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1951
|
+
id: string;
|
|
1801
1952
|
createdAt: string | Date;
|
|
1802
1953
|
updatedAt: string | Date;
|
|
1803
|
-
id: string;
|
|
1804
1954
|
name: string;
|
|
1805
1955
|
crn: string | null;
|
|
1806
1956
|
govLink: string;
|
|
@@ -1819,27 +1969,32 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1819
1969
|
} | null | undefined;
|
|
1820
1970
|
user?: {
|
|
1821
1971
|
id: string;
|
|
1972
|
+
createdAt: string | Date;
|
|
1973
|
+
updatedAt: string | Date;
|
|
1822
1974
|
firstName: string;
|
|
1823
1975
|
lastName: string;
|
|
1824
1976
|
email: string;
|
|
1977
|
+
phone: string;
|
|
1978
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1979
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1825
1980
|
} | null | undefined;
|
|
1826
1981
|
newCollaboration?: {
|
|
1827
1982
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1983
|
+
id: string;
|
|
1828
1984
|
createdAt: string | Date;
|
|
1829
1985
|
updatedAt: string | Date;
|
|
1830
|
-
id: string;
|
|
1831
1986
|
userId: string;
|
|
1832
1987
|
company?: {
|
|
1988
|
+
id: string;
|
|
1833
1989
|
createdAt: string | Date;
|
|
1834
1990
|
updatedAt: string | Date;
|
|
1835
|
-
id: string;
|
|
1836
1991
|
name: string;
|
|
1837
1992
|
} | null | undefined;
|
|
1838
1993
|
client?: {
|
|
1839
|
-
status: "
|
|
1994
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1995
|
+
id: string;
|
|
1840
1996
|
createdAt: string | Date;
|
|
1841
1997
|
updatedAt: string | Date;
|
|
1842
|
-
id: string;
|
|
1843
1998
|
name: string;
|
|
1844
1999
|
crn: string | null;
|
|
1845
2000
|
govLink: string;
|
|
@@ -1858,9 +2013,14 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1858
2013
|
} | null | undefined;
|
|
1859
2014
|
user?: {
|
|
1860
2015
|
id: string;
|
|
2016
|
+
createdAt: string | Date;
|
|
2017
|
+
updatedAt: string | Date;
|
|
1861
2018
|
firstName: string;
|
|
1862
2019
|
lastName: string;
|
|
1863
2020
|
email: string;
|
|
2021
|
+
phone: string;
|
|
2022
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2023
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1864
2024
|
} | null | undefined;
|
|
1865
2025
|
} | null | undefined;
|
|
1866
2026
|
} | null | undefined;
|
|
@@ -1873,25 +2033,24 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1873
2033
|
}, "strip", z.ZodTypeAny, {
|
|
1874
2034
|
limit: number;
|
|
1875
2035
|
items: {
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
2036
|
+
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
2037
|
+
id: string;
|
|
1879
2038
|
createdAt: string;
|
|
1880
2039
|
updatedAt: string;
|
|
1881
|
-
|
|
2040
|
+
description: string;
|
|
1882
2041
|
pay: {
|
|
1883
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
1884
2042
|
rate: number;
|
|
2043
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
1885
2044
|
receivedRate: number;
|
|
1886
2045
|
rateMax?: number | null | undefined;
|
|
1887
2046
|
};
|
|
1888
2047
|
tradeId: string;
|
|
2048
|
+
numberOfPositions: number;
|
|
1889
2049
|
jobQualifications: {
|
|
1890
2050
|
id: string;
|
|
1891
2051
|
qualificationId: string;
|
|
1892
2052
|
qualificationTypeId?: string | null | undefined;
|
|
1893
2053
|
}[];
|
|
1894
|
-
workHours?: number | null | undefined;
|
|
1895
2054
|
location?: {
|
|
1896
2055
|
address?: string | null | undefined;
|
|
1897
2056
|
postcode?: string | null | undefined;
|
|
@@ -1901,23 +2060,24 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1901
2060
|
postTown?: string | null | undefined;
|
|
1902
2061
|
areaCovered?: string | null | undefined;
|
|
1903
2062
|
} | null | undefined;
|
|
2063
|
+
workHours?: number | null | undefined;
|
|
1904
2064
|
currentCollaboration?: {
|
|
1905
2065
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2066
|
+
id: string;
|
|
1906
2067
|
createdAt: string;
|
|
1907
2068
|
updatedAt: string;
|
|
1908
|
-
id: string;
|
|
1909
2069
|
userId: string;
|
|
1910
2070
|
company?: {
|
|
2071
|
+
id: string;
|
|
1911
2072
|
createdAt: string;
|
|
1912
2073
|
updatedAt: string;
|
|
1913
|
-
id: string;
|
|
1914
2074
|
name: string;
|
|
1915
2075
|
} | null | undefined;
|
|
1916
2076
|
client?: {
|
|
1917
|
-
status: "
|
|
2077
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2078
|
+
id: string;
|
|
1918
2079
|
createdAt: string;
|
|
1919
2080
|
updatedAt: string;
|
|
1920
|
-
id: string;
|
|
1921
2081
|
name: string;
|
|
1922
2082
|
crn: string | null;
|
|
1923
2083
|
govLink: string;
|
|
@@ -1936,27 +2096,32 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1936
2096
|
} | null | undefined;
|
|
1937
2097
|
user?: {
|
|
1938
2098
|
id: string;
|
|
2099
|
+
createdAt: string;
|
|
2100
|
+
updatedAt: string;
|
|
1939
2101
|
firstName: string;
|
|
1940
2102
|
lastName: string;
|
|
1941
2103
|
email: string;
|
|
2104
|
+
phone: string;
|
|
2105
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2106
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1942
2107
|
} | null | undefined;
|
|
1943
2108
|
newCollaboration?: {
|
|
1944
2109
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2110
|
+
id: string;
|
|
1945
2111
|
createdAt: string;
|
|
1946
2112
|
updatedAt: string;
|
|
1947
|
-
id: string;
|
|
1948
2113
|
userId: string;
|
|
1949
2114
|
company?: {
|
|
2115
|
+
id: string;
|
|
1950
2116
|
createdAt: string;
|
|
1951
2117
|
updatedAt: string;
|
|
1952
|
-
id: string;
|
|
1953
2118
|
name: string;
|
|
1954
2119
|
} | null | undefined;
|
|
1955
2120
|
client?: {
|
|
1956
|
-
status: "
|
|
2121
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2122
|
+
id: string;
|
|
1957
2123
|
createdAt: string;
|
|
1958
2124
|
updatedAt: string;
|
|
1959
|
-
id: string;
|
|
1960
2125
|
name: string;
|
|
1961
2126
|
crn: string | null;
|
|
1962
2127
|
govLink: string;
|
|
@@ -1975,9 +2140,14 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1975
2140
|
} | null | undefined;
|
|
1976
2141
|
user?: {
|
|
1977
2142
|
id: string;
|
|
2143
|
+
createdAt: string;
|
|
2144
|
+
updatedAt: string;
|
|
1978
2145
|
firstName: string;
|
|
1979
2146
|
lastName: string;
|
|
1980
2147
|
email: string;
|
|
2148
|
+
phone: string;
|
|
2149
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2150
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1981
2151
|
} | null | undefined;
|
|
1982
2152
|
} | null | undefined;
|
|
1983
2153
|
} | null | undefined;
|
|
@@ -1989,20 +2159,19 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1989
2159
|
}, {
|
|
1990
2160
|
limit: number;
|
|
1991
2161
|
items: {
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
2162
|
+
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
2163
|
+
id: string;
|
|
1995
2164
|
createdAt: string | Date;
|
|
1996
2165
|
updatedAt: string | Date;
|
|
1997
|
-
|
|
2166
|
+
description: string;
|
|
1998
2167
|
pay: {
|
|
1999
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
2000
2168
|
rate: number;
|
|
2169
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2001
2170
|
receivedRate: number;
|
|
2002
2171
|
rateMax?: number | null | undefined;
|
|
2003
2172
|
};
|
|
2004
2173
|
tradeId: string;
|
|
2005
|
-
|
|
2174
|
+
numberOfPositions: number;
|
|
2006
2175
|
location?: {
|
|
2007
2176
|
address?: string | null | undefined;
|
|
2008
2177
|
postcode?: string | null | undefined;
|
|
@@ -2012,6 +2181,7 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
2012
2181
|
postTown?: string | null | undefined;
|
|
2013
2182
|
areaCovered?: string | null | undefined;
|
|
2014
2183
|
} | null | undefined;
|
|
2184
|
+
workHours?: number | null | undefined;
|
|
2015
2185
|
jobQualifications?: {
|
|
2016
2186
|
id: string;
|
|
2017
2187
|
qualificationId: string;
|
|
@@ -2019,21 +2189,21 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
2019
2189
|
}[] | undefined;
|
|
2020
2190
|
currentCollaboration?: {
|
|
2021
2191
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2192
|
+
id: string;
|
|
2022
2193
|
createdAt: string | Date;
|
|
2023
2194
|
updatedAt: string | Date;
|
|
2024
|
-
id: string;
|
|
2025
2195
|
userId: string;
|
|
2026
2196
|
company?: {
|
|
2197
|
+
id: string;
|
|
2027
2198
|
createdAt: string | Date;
|
|
2028
2199
|
updatedAt: string | Date;
|
|
2029
|
-
id: string;
|
|
2030
2200
|
name: string;
|
|
2031
2201
|
} | null | undefined;
|
|
2032
2202
|
client?: {
|
|
2033
|
-
status: "
|
|
2203
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2204
|
+
id: string;
|
|
2034
2205
|
createdAt: string | Date;
|
|
2035
2206
|
updatedAt: string | Date;
|
|
2036
|
-
id: string;
|
|
2037
2207
|
name: string;
|
|
2038
2208
|
crn: string | null;
|
|
2039
2209
|
govLink: string;
|
|
@@ -2052,27 +2222,32 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
2052
2222
|
} | null | undefined;
|
|
2053
2223
|
user?: {
|
|
2054
2224
|
id: string;
|
|
2225
|
+
createdAt: string | Date;
|
|
2226
|
+
updatedAt: string | Date;
|
|
2055
2227
|
firstName: string;
|
|
2056
2228
|
lastName: string;
|
|
2057
2229
|
email: string;
|
|
2230
|
+
phone: string;
|
|
2231
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2232
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2058
2233
|
} | null | undefined;
|
|
2059
2234
|
newCollaboration?: {
|
|
2060
2235
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2236
|
+
id: string;
|
|
2061
2237
|
createdAt: string | Date;
|
|
2062
2238
|
updatedAt: string | Date;
|
|
2063
|
-
id: string;
|
|
2064
2239
|
userId: string;
|
|
2065
2240
|
company?: {
|
|
2241
|
+
id: string;
|
|
2066
2242
|
createdAt: string | Date;
|
|
2067
2243
|
updatedAt: string | Date;
|
|
2068
|
-
id: string;
|
|
2069
2244
|
name: string;
|
|
2070
2245
|
} | null | undefined;
|
|
2071
2246
|
client?: {
|
|
2072
|
-
status: "
|
|
2247
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2248
|
+
id: string;
|
|
2073
2249
|
createdAt: string | Date;
|
|
2074
2250
|
updatedAt: string | Date;
|
|
2075
|
-
id: string;
|
|
2076
2251
|
name: string;
|
|
2077
2252
|
crn: string | null;
|
|
2078
2253
|
govLink: string;
|
|
@@ -2091,9 +2266,14 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
2091
2266
|
} | null | undefined;
|
|
2092
2267
|
user?: {
|
|
2093
2268
|
id: string;
|
|
2269
|
+
createdAt: string | Date;
|
|
2270
|
+
updatedAt: string | Date;
|
|
2094
2271
|
firstName: string;
|
|
2095
2272
|
lastName: string;
|
|
2096
2273
|
email: string;
|
|
2274
|
+
phone: string;
|
|
2275
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2276
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2097
2277
|
} | null | undefined;
|
|
2098
2278
|
} | null | undefined;
|
|
2099
2279
|
} | null | undefined;
|
|
@@ -2138,8 +2318,8 @@ export declare const jobsContractRouter: {
|
|
|
2138
2318
|
rateMax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
2139
2319
|
receivedRate: z.ZodNumber;
|
|
2140
2320
|
}, "strip", z.ZodTypeAny, {
|
|
2141
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
2142
2321
|
rate: number;
|
|
2322
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2143
2323
|
receivedRate: number;
|
|
2144
2324
|
rateMax?: number | null | undefined;
|
|
2145
2325
|
}, {
|
|
@@ -2168,17 +2348,17 @@ export declare const jobsContractRouter: {
|
|
|
2168
2348
|
}>, "many">>;
|
|
2169
2349
|
status: z.ZodDefault<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE"]>>;
|
|
2170
2350
|
}, "strip", z.ZodTypeAny, {
|
|
2351
|
+
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
2171
2352
|
description: string;
|
|
2172
|
-
numberOfPositions: number;
|
|
2173
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
2174
|
-
workHours: number;
|
|
2175
2353
|
pay: {
|
|
2176
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
2177
2354
|
rate: number;
|
|
2355
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2178
2356
|
receivedRate: number;
|
|
2179
2357
|
rateMax?: number | null | undefined;
|
|
2180
2358
|
};
|
|
2181
2359
|
tradeId: string;
|
|
2360
|
+
numberOfPositions: number;
|
|
2361
|
+
workHours: number;
|
|
2182
2362
|
currentCollaboration: {
|
|
2183
2363
|
id: string;
|
|
2184
2364
|
};
|
|
@@ -2192,7 +2372,6 @@ export declare const jobsContractRouter: {
|
|
|
2192
2372
|
}[] | undefined;
|
|
2193
2373
|
}, {
|
|
2194
2374
|
description: string;
|
|
2195
|
-
numberOfPositions: number;
|
|
2196
2375
|
pay: {
|
|
2197
2376
|
rate: number;
|
|
2198
2377
|
receivedRate: number;
|
|
@@ -2200,15 +2379,16 @@ export declare const jobsContractRouter: {
|
|
|
2200
2379
|
rateMax?: number | null | undefined;
|
|
2201
2380
|
};
|
|
2202
2381
|
tradeId: string;
|
|
2382
|
+
numberOfPositions: number;
|
|
2203
2383
|
currentCollaboration: {
|
|
2204
2384
|
id: string;
|
|
2205
2385
|
};
|
|
2206
|
-
status?: "
|
|
2207
|
-
workHours?: number | undefined;
|
|
2386
|
+
status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | undefined;
|
|
2208
2387
|
location?: {
|
|
2209
2388
|
address?: string | null | undefined;
|
|
2210
2389
|
postcode?: string | null | undefined;
|
|
2211
2390
|
} | undefined;
|
|
2391
|
+
workHours?: number | undefined;
|
|
2212
2392
|
jobQualifications?: {
|
|
2213
2393
|
qualificationId: string;
|
|
2214
2394
|
qualificationTypeId?: string | null | undefined;
|
|
@@ -2328,13 +2508,13 @@ export declare const jobsContractRouter: {
|
|
|
2328
2508
|
rateMax: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
2329
2509
|
receivedRate: z.ZodNumber;
|
|
2330
2510
|
}, "strip", z.ZodTypeAny, {
|
|
2331
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
2332
2511
|
rate: number;
|
|
2512
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2333
2513
|
receivedRate: number;
|
|
2334
2514
|
rateMax?: number | null | undefined;
|
|
2335
2515
|
}, {
|
|
2336
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
2337
2516
|
rate: number;
|
|
2517
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2338
2518
|
receivedRate: number;
|
|
2339
2519
|
rateMax?: number | null | undefined;
|
|
2340
2520
|
}>;
|
|
@@ -2385,14 +2565,14 @@ export declare const jobsContractRouter: {
|
|
|
2385
2565
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2386
2566
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2387
2567
|
}, "strip", z.ZodTypeAny, {
|
|
2568
|
+
id: string;
|
|
2388
2569
|
createdAt: string;
|
|
2389
2570
|
updatedAt: string;
|
|
2390
|
-
id: string;
|
|
2391
2571
|
name: string;
|
|
2392
2572
|
}, {
|
|
2573
|
+
id: string;
|
|
2393
2574
|
createdAt: string | Date;
|
|
2394
2575
|
updatedAt: string | Date;
|
|
2395
|
-
id: string;
|
|
2396
2576
|
name: string;
|
|
2397
2577
|
}>>>;
|
|
2398
2578
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -2430,10 +2610,10 @@ export declare const jobsContractRouter: {
|
|
|
2430
2610
|
agentId: string;
|
|
2431
2611
|
}>>>;
|
|
2432
2612
|
}, "strip", z.ZodTypeAny, {
|
|
2433
|
-
status: "
|
|
2613
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2614
|
+
id: string;
|
|
2434
2615
|
createdAt: string;
|
|
2435
2616
|
updatedAt: string;
|
|
2436
|
-
id: string;
|
|
2437
2617
|
name: string;
|
|
2438
2618
|
crn: string | null;
|
|
2439
2619
|
govLink: string;
|
|
@@ -2450,10 +2630,10 @@ export declare const jobsContractRouter: {
|
|
|
2450
2630
|
agentId: string;
|
|
2451
2631
|
} | null | undefined;
|
|
2452
2632
|
}, {
|
|
2453
|
-
status: "
|
|
2633
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2634
|
+
id: string;
|
|
2454
2635
|
createdAt: string | Date;
|
|
2455
2636
|
updatedAt: string | Date;
|
|
2456
|
-
id: string;
|
|
2457
2637
|
name: string;
|
|
2458
2638
|
crn: string | null;
|
|
2459
2639
|
govLink: string;
|
|
@@ -2475,16 +2655,31 @@ export declare const jobsContractRouter: {
|
|
|
2475
2655
|
firstName: z.ZodString;
|
|
2476
2656
|
lastName: z.ZodString;
|
|
2477
2657
|
email: z.ZodString;
|
|
2658
|
+
phone: z.ZodEffects<z.ZodString, string, string>;
|
|
2659
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
2660
|
+
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
2661
|
+
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2662
|
+
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2478
2663
|
}, "strip", z.ZodTypeAny, {
|
|
2479
2664
|
id: string;
|
|
2665
|
+
createdAt: string;
|
|
2666
|
+
updatedAt: string;
|
|
2480
2667
|
firstName: string;
|
|
2481
2668
|
lastName: string;
|
|
2482
2669
|
email: string;
|
|
2670
|
+
phone: string;
|
|
2671
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2672
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2483
2673
|
}, {
|
|
2484
2674
|
id: string;
|
|
2675
|
+
createdAt: string | Date;
|
|
2676
|
+
updatedAt: string | Date;
|
|
2485
2677
|
firstName: string;
|
|
2486
2678
|
lastName: string;
|
|
2487
2679
|
email: string;
|
|
2680
|
+
phone: string;
|
|
2681
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2682
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2488
2683
|
}>>>;
|
|
2489
2684
|
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
2490
2685
|
userId: z.ZodString;
|
|
@@ -2499,14 +2694,14 @@ export declare const jobsContractRouter: {
|
|
|
2499
2694
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2500
2695
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2501
2696
|
}, "strip", z.ZodTypeAny, {
|
|
2697
|
+
id: string;
|
|
2502
2698
|
createdAt: string;
|
|
2503
2699
|
updatedAt: string;
|
|
2504
|
-
id: string;
|
|
2505
2700
|
name: string;
|
|
2506
2701
|
}, {
|
|
2702
|
+
id: string;
|
|
2507
2703
|
createdAt: string | Date;
|
|
2508
2704
|
updatedAt: string | Date;
|
|
2509
|
-
id: string;
|
|
2510
2705
|
name: string;
|
|
2511
2706
|
}>>>;
|
|
2512
2707
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -2544,10 +2739,10 @@ export declare const jobsContractRouter: {
|
|
|
2544
2739
|
agentId: string;
|
|
2545
2740
|
}>>>;
|
|
2546
2741
|
}, "strip", z.ZodTypeAny, {
|
|
2547
|
-
status: "
|
|
2742
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2743
|
+
id: string;
|
|
2548
2744
|
createdAt: string;
|
|
2549
2745
|
updatedAt: string;
|
|
2550
|
-
id: string;
|
|
2551
2746
|
name: string;
|
|
2552
2747
|
crn: string | null;
|
|
2553
2748
|
govLink: string;
|
|
@@ -2564,10 +2759,10 @@ export declare const jobsContractRouter: {
|
|
|
2564
2759
|
agentId: string;
|
|
2565
2760
|
} | null | undefined;
|
|
2566
2761
|
}, {
|
|
2567
|
-
status: "
|
|
2762
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2763
|
+
id: string;
|
|
2568
2764
|
createdAt: string | Date;
|
|
2569
2765
|
updatedAt: string | Date;
|
|
2570
|
-
id: string;
|
|
2571
2766
|
name: string;
|
|
2572
2767
|
crn: string | null;
|
|
2573
2768
|
govLink: string;
|
|
@@ -2589,16 +2784,31 @@ export declare const jobsContractRouter: {
|
|
|
2589
2784
|
firstName: z.ZodString;
|
|
2590
2785
|
lastName: z.ZodString;
|
|
2591
2786
|
email: z.ZodString;
|
|
2787
|
+
phone: z.ZodEffects<z.ZodString, string, string>;
|
|
2788
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
2789
|
+
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
2790
|
+
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2791
|
+
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2592
2792
|
}, "strip", z.ZodTypeAny, {
|
|
2593
2793
|
id: string;
|
|
2794
|
+
createdAt: string;
|
|
2795
|
+
updatedAt: string;
|
|
2594
2796
|
firstName: string;
|
|
2595
2797
|
lastName: string;
|
|
2596
2798
|
email: string;
|
|
2799
|
+
phone: string;
|
|
2800
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2801
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2597
2802
|
}, {
|
|
2598
2803
|
id: string;
|
|
2804
|
+
createdAt: string | Date;
|
|
2805
|
+
updatedAt: string | Date;
|
|
2599
2806
|
firstName: string;
|
|
2600
2807
|
lastName: string;
|
|
2601
2808
|
email: string;
|
|
2809
|
+
phone: string;
|
|
2810
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2811
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2602
2812
|
}>>>;
|
|
2603
2813
|
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
2604
2814
|
userId: z.ZodString;
|
|
@@ -2606,21 +2816,21 @@ export declare const jobsContractRouter: {
|
|
|
2606
2816
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2607
2817
|
}, "strip", z.ZodTypeAny, {
|
|
2608
2818
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2819
|
+
id: string;
|
|
2609
2820
|
createdAt: string;
|
|
2610
2821
|
updatedAt: string;
|
|
2611
|
-
id: string;
|
|
2612
2822
|
userId: string;
|
|
2613
2823
|
company?: {
|
|
2824
|
+
id: string;
|
|
2614
2825
|
createdAt: string;
|
|
2615
2826
|
updatedAt: string;
|
|
2616
|
-
id: string;
|
|
2617
2827
|
name: string;
|
|
2618
2828
|
} | null | undefined;
|
|
2619
2829
|
client?: {
|
|
2620
|
-
status: "
|
|
2830
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2831
|
+
id: string;
|
|
2621
2832
|
createdAt: string;
|
|
2622
2833
|
updatedAt: string;
|
|
2623
|
-
id: string;
|
|
2624
2834
|
name: string;
|
|
2625
2835
|
crn: string | null;
|
|
2626
2836
|
govLink: string;
|
|
@@ -2639,27 +2849,32 @@ export declare const jobsContractRouter: {
|
|
|
2639
2849
|
} | null | undefined;
|
|
2640
2850
|
user?: {
|
|
2641
2851
|
id: string;
|
|
2852
|
+
createdAt: string;
|
|
2853
|
+
updatedAt: string;
|
|
2642
2854
|
firstName: string;
|
|
2643
2855
|
lastName: string;
|
|
2644
2856
|
email: string;
|
|
2857
|
+
phone: string;
|
|
2858
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2859
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2645
2860
|
} | null | undefined;
|
|
2646
2861
|
}, {
|
|
2647
2862
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2863
|
+
id: string;
|
|
2648
2864
|
createdAt: string | Date;
|
|
2649
2865
|
updatedAt: string | Date;
|
|
2650
|
-
id: string;
|
|
2651
2866
|
userId: string;
|
|
2652
2867
|
company?: {
|
|
2868
|
+
id: string;
|
|
2653
2869
|
createdAt: string | Date;
|
|
2654
2870
|
updatedAt: string | Date;
|
|
2655
|
-
id: string;
|
|
2656
2871
|
name: string;
|
|
2657
2872
|
} | null | undefined;
|
|
2658
2873
|
client?: {
|
|
2659
|
-
status: "
|
|
2874
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2875
|
+
id: string;
|
|
2660
2876
|
createdAt: string | Date;
|
|
2661
2877
|
updatedAt: string | Date;
|
|
2662
|
-
id: string;
|
|
2663
2878
|
name: string;
|
|
2664
2879
|
crn: string | null;
|
|
2665
2880
|
govLink: string;
|
|
@@ -2678,28 +2893,33 @@ export declare const jobsContractRouter: {
|
|
|
2678
2893
|
} | null | undefined;
|
|
2679
2894
|
user?: {
|
|
2680
2895
|
id: string;
|
|
2896
|
+
createdAt: string | Date;
|
|
2897
|
+
updatedAt: string | Date;
|
|
2681
2898
|
firstName: string;
|
|
2682
2899
|
lastName: string;
|
|
2683
2900
|
email: string;
|
|
2901
|
+
phone: string;
|
|
2902
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2903
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2684
2904
|
} | null | undefined;
|
|
2685
2905
|
}>>>;
|
|
2686
2906
|
}, "strip", z.ZodTypeAny, {
|
|
2687
2907
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2908
|
+
id: string;
|
|
2688
2909
|
createdAt: string;
|
|
2689
2910
|
updatedAt: string;
|
|
2690
|
-
id: string;
|
|
2691
2911
|
userId: string;
|
|
2692
2912
|
company?: {
|
|
2913
|
+
id: string;
|
|
2693
2914
|
createdAt: string;
|
|
2694
2915
|
updatedAt: string;
|
|
2695
|
-
id: string;
|
|
2696
2916
|
name: string;
|
|
2697
2917
|
} | null | undefined;
|
|
2698
2918
|
client?: {
|
|
2699
|
-
status: "
|
|
2919
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2920
|
+
id: string;
|
|
2700
2921
|
createdAt: string;
|
|
2701
2922
|
updatedAt: string;
|
|
2702
|
-
id: string;
|
|
2703
2923
|
name: string;
|
|
2704
2924
|
crn: string | null;
|
|
2705
2925
|
govLink: string;
|
|
@@ -2718,27 +2938,32 @@ export declare const jobsContractRouter: {
|
|
|
2718
2938
|
} | null | undefined;
|
|
2719
2939
|
user?: {
|
|
2720
2940
|
id: string;
|
|
2941
|
+
createdAt: string;
|
|
2942
|
+
updatedAt: string;
|
|
2721
2943
|
firstName: string;
|
|
2722
2944
|
lastName: string;
|
|
2723
2945
|
email: string;
|
|
2946
|
+
phone: string;
|
|
2947
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2948
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2724
2949
|
} | null | undefined;
|
|
2725
2950
|
newCollaboration?: {
|
|
2726
2951
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2952
|
+
id: string;
|
|
2727
2953
|
createdAt: string;
|
|
2728
2954
|
updatedAt: string;
|
|
2729
|
-
id: string;
|
|
2730
2955
|
userId: string;
|
|
2731
2956
|
company?: {
|
|
2957
|
+
id: string;
|
|
2732
2958
|
createdAt: string;
|
|
2733
2959
|
updatedAt: string;
|
|
2734
|
-
id: string;
|
|
2735
2960
|
name: string;
|
|
2736
2961
|
} | null | undefined;
|
|
2737
2962
|
client?: {
|
|
2738
|
-
status: "
|
|
2963
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2964
|
+
id: string;
|
|
2739
2965
|
createdAt: string;
|
|
2740
2966
|
updatedAt: string;
|
|
2741
|
-
id: string;
|
|
2742
2967
|
name: string;
|
|
2743
2968
|
crn: string | null;
|
|
2744
2969
|
govLink: string;
|
|
@@ -2757,28 +2982,33 @@ export declare const jobsContractRouter: {
|
|
|
2757
2982
|
} | null | undefined;
|
|
2758
2983
|
user?: {
|
|
2759
2984
|
id: string;
|
|
2985
|
+
createdAt: string;
|
|
2986
|
+
updatedAt: string;
|
|
2760
2987
|
firstName: string;
|
|
2761
2988
|
lastName: string;
|
|
2762
2989
|
email: string;
|
|
2990
|
+
phone: string;
|
|
2991
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2992
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2763
2993
|
} | null | undefined;
|
|
2764
2994
|
} | null | undefined;
|
|
2765
2995
|
}, {
|
|
2766
2996
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2997
|
+
id: string;
|
|
2767
2998
|
createdAt: string | Date;
|
|
2768
2999
|
updatedAt: string | Date;
|
|
2769
|
-
id: string;
|
|
2770
3000
|
userId: string;
|
|
2771
3001
|
company?: {
|
|
3002
|
+
id: string;
|
|
2772
3003
|
createdAt: string | Date;
|
|
2773
3004
|
updatedAt: string | Date;
|
|
2774
|
-
id: string;
|
|
2775
3005
|
name: string;
|
|
2776
3006
|
} | null | undefined;
|
|
2777
3007
|
client?: {
|
|
2778
|
-
status: "
|
|
3008
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3009
|
+
id: string;
|
|
2779
3010
|
createdAt: string | Date;
|
|
2780
3011
|
updatedAt: string | Date;
|
|
2781
|
-
id: string;
|
|
2782
3012
|
name: string;
|
|
2783
3013
|
crn: string | null;
|
|
2784
3014
|
govLink: string;
|
|
@@ -2797,27 +3027,32 @@ export declare const jobsContractRouter: {
|
|
|
2797
3027
|
} | null | undefined;
|
|
2798
3028
|
user?: {
|
|
2799
3029
|
id: string;
|
|
3030
|
+
createdAt: string | Date;
|
|
3031
|
+
updatedAt: string | Date;
|
|
2800
3032
|
firstName: string;
|
|
2801
3033
|
lastName: string;
|
|
2802
3034
|
email: string;
|
|
3035
|
+
phone: string;
|
|
3036
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3037
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2803
3038
|
} | null | undefined;
|
|
2804
3039
|
newCollaboration?: {
|
|
2805
3040
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3041
|
+
id: string;
|
|
2806
3042
|
createdAt: string | Date;
|
|
2807
3043
|
updatedAt: string | Date;
|
|
2808
|
-
id: string;
|
|
2809
3044
|
userId: string;
|
|
2810
3045
|
company?: {
|
|
3046
|
+
id: string;
|
|
2811
3047
|
createdAt: string | Date;
|
|
2812
3048
|
updatedAt: string | Date;
|
|
2813
|
-
id: string;
|
|
2814
3049
|
name: string;
|
|
2815
3050
|
} | null | undefined;
|
|
2816
3051
|
client?: {
|
|
2817
|
-
status: "
|
|
3052
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3053
|
+
id: string;
|
|
2818
3054
|
createdAt: string | Date;
|
|
2819
3055
|
updatedAt: string | Date;
|
|
2820
|
-
id: string;
|
|
2821
3056
|
name: string;
|
|
2822
3057
|
crn: string | null;
|
|
2823
3058
|
govLink: string;
|
|
@@ -2836,34 +3071,38 @@ export declare const jobsContractRouter: {
|
|
|
2836
3071
|
} | null | undefined;
|
|
2837
3072
|
user?: {
|
|
2838
3073
|
id: string;
|
|
3074
|
+
createdAt: string | Date;
|
|
3075
|
+
updatedAt: string | Date;
|
|
2839
3076
|
firstName: string;
|
|
2840
3077
|
lastName: string;
|
|
2841
3078
|
email: string;
|
|
3079
|
+
phone: string;
|
|
3080
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3081
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2842
3082
|
} | null | undefined;
|
|
2843
3083
|
} | null | undefined;
|
|
2844
3084
|
}>>>;
|
|
2845
3085
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2846
3086
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2847
3087
|
}, "strip", z.ZodTypeAny, {
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
3088
|
+
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
3089
|
+
id: string;
|
|
2851
3090
|
createdAt: string;
|
|
2852
3091
|
updatedAt: string;
|
|
2853
|
-
|
|
3092
|
+
description: string;
|
|
2854
3093
|
pay: {
|
|
2855
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
2856
3094
|
rate: number;
|
|
3095
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2857
3096
|
receivedRate: number;
|
|
2858
3097
|
rateMax?: number | null | undefined;
|
|
2859
3098
|
};
|
|
2860
3099
|
tradeId: string;
|
|
3100
|
+
numberOfPositions: number;
|
|
2861
3101
|
jobQualifications: {
|
|
2862
3102
|
id: string;
|
|
2863
3103
|
qualificationId: string;
|
|
2864
3104
|
qualificationTypeId?: string | null | undefined;
|
|
2865
3105
|
}[];
|
|
2866
|
-
workHours?: number | null | undefined;
|
|
2867
3106
|
location?: {
|
|
2868
3107
|
address?: string | null | undefined;
|
|
2869
3108
|
postcode?: string | null | undefined;
|
|
@@ -2873,23 +3112,24 @@ export declare const jobsContractRouter: {
|
|
|
2873
3112
|
postTown?: string | null | undefined;
|
|
2874
3113
|
areaCovered?: string | null | undefined;
|
|
2875
3114
|
} | null | undefined;
|
|
3115
|
+
workHours?: number | null | undefined;
|
|
2876
3116
|
currentCollaboration?: {
|
|
2877
3117
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3118
|
+
id: string;
|
|
2878
3119
|
createdAt: string;
|
|
2879
3120
|
updatedAt: string;
|
|
2880
|
-
id: string;
|
|
2881
3121
|
userId: string;
|
|
2882
3122
|
company?: {
|
|
3123
|
+
id: string;
|
|
2883
3124
|
createdAt: string;
|
|
2884
3125
|
updatedAt: string;
|
|
2885
|
-
id: string;
|
|
2886
3126
|
name: string;
|
|
2887
3127
|
} | null | undefined;
|
|
2888
3128
|
client?: {
|
|
2889
|
-
status: "
|
|
3129
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3130
|
+
id: string;
|
|
2890
3131
|
createdAt: string;
|
|
2891
3132
|
updatedAt: string;
|
|
2892
|
-
id: string;
|
|
2893
3133
|
name: string;
|
|
2894
3134
|
crn: string | null;
|
|
2895
3135
|
govLink: string;
|
|
@@ -2908,27 +3148,32 @@ export declare const jobsContractRouter: {
|
|
|
2908
3148
|
} | null | undefined;
|
|
2909
3149
|
user?: {
|
|
2910
3150
|
id: string;
|
|
3151
|
+
createdAt: string;
|
|
3152
|
+
updatedAt: string;
|
|
2911
3153
|
firstName: string;
|
|
2912
3154
|
lastName: string;
|
|
2913
3155
|
email: string;
|
|
3156
|
+
phone: string;
|
|
3157
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3158
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2914
3159
|
} | null | undefined;
|
|
2915
3160
|
newCollaboration?: {
|
|
2916
3161
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3162
|
+
id: string;
|
|
2917
3163
|
createdAt: string;
|
|
2918
3164
|
updatedAt: string;
|
|
2919
|
-
id: string;
|
|
2920
3165
|
userId: string;
|
|
2921
3166
|
company?: {
|
|
3167
|
+
id: string;
|
|
2922
3168
|
createdAt: string;
|
|
2923
3169
|
updatedAt: string;
|
|
2924
|
-
id: string;
|
|
2925
3170
|
name: string;
|
|
2926
3171
|
} | null | undefined;
|
|
2927
3172
|
client?: {
|
|
2928
|
-
status: "
|
|
3173
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3174
|
+
id: string;
|
|
2929
3175
|
createdAt: string;
|
|
2930
3176
|
updatedAt: string;
|
|
2931
|
-
id: string;
|
|
2932
3177
|
name: string;
|
|
2933
3178
|
crn: string | null;
|
|
2934
3179
|
govLink: string;
|
|
@@ -2947,27 +3192,31 @@ export declare const jobsContractRouter: {
|
|
|
2947
3192
|
} | null | undefined;
|
|
2948
3193
|
user?: {
|
|
2949
3194
|
id: string;
|
|
3195
|
+
createdAt: string;
|
|
3196
|
+
updatedAt: string;
|
|
2950
3197
|
firstName: string;
|
|
2951
3198
|
lastName: string;
|
|
2952
3199
|
email: string;
|
|
3200
|
+
phone: string;
|
|
3201
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3202
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2953
3203
|
} | null | undefined;
|
|
2954
3204
|
} | null | undefined;
|
|
2955
3205
|
} | null | undefined;
|
|
2956
3206
|
}, {
|
|
2957
|
-
|
|
2958
|
-
|
|
2959
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
3207
|
+
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
3208
|
+
id: string;
|
|
2960
3209
|
createdAt: string | Date;
|
|
2961
3210
|
updatedAt: string | Date;
|
|
2962
|
-
|
|
3211
|
+
description: string;
|
|
2963
3212
|
pay: {
|
|
2964
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
2965
3213
|
rate: number;
|
|
3214
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2966
3215
|
receivedRate: number;
|
|
2967
3216
|
rateMax?: number | null | undefined;
|
|
2968
3217
|
};
|
|
2969
3218
|
tradeId: string;
|
|
2970
|
-
|
|
3219
|
+
numberOfPositions: number;
|
|
2971
3220
|
location?: {
|
|
2972
3221
|
address?: string | null | undefined;
|
|
2973
3222
|
postcode?: string | null | undefined;
|
|
@@ -2977,6 +3226,7 @@ export declare const jobsContractRouter: {
|
|
|
2977
3226
|
postTown?: string | null | undefined;
|
|
2978
3227
|
areaCovered?: string | null | undefined;
|
|
2979
3228
|
} | null | undefined;
|
|
3229
|
+
workHours?: number | null | undefined;
|
|
2980
3230
|
jobQualifications?: {
|
|
2981
3231
|
id: string;
|
|
2982
3232
|
qualificationId: string;
|
|
@@ -2984,21 +3234,21 @@ export declare const jobsContractRouter: {
|
|
|
2984
3234
|
}[] | undefined;
|
|
2985
3235
|
currentCollaboration?: {
|
|
2986
3236
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3237
|
+
id: string;
|
|
2987
3238
|
createdAt: string | Date;
|
|
2988
3239
|
updatedAt: string | Date;
|
|
2989
|
-
id: string;
|
|
2990
3240
|
userId: string;
|
|
2991
3241
|
company?: {
|
|
3242
|
+
id: string;
|
|
2992
3243
|
createdAt: string | Date;
|
|
2993
3244
|
updatedAt: string | Date;
|
|
2994
|
-
id: string;
|
|
2995
3245
|
name: string;
|
|
2996
3246
|
} | null | undefined;
|
|
2997
3247
|
client?: {
|
|
2998
|
-
status: "
|
|
3248
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3249
|
+
id: string;
|
|
2999
3250
|
createdAt: string | Date;
|
|
3000
3251
|
updatedAt: string | Date;
|
|
3001
|
-
id: string;
|
|
3002
3252
|
name: string;
|
|
3003
3253
|
crn: string | null;
|
|
3004
3254
|
govLink: string;
|
|
@@ -3017,27 +3267,32 @@ export declare const jobsContractRouter: {
|
|
|
3017
3267
|
} | null | undefined;
|
|
3018
3268
|
user?: {
|
|
3019
3269
|
id: string;
|
|
3270
|
+
createdAt: string | Date;
|
|
3271
|
+
updatedAt: string | Date;
|
|
3020
3272
|
firstName: string;
|
|
3021
3273
|
lastName: string;
|
|
3022
3274
|
email: string;
|
|
3275
|
+
phone: string;
|
|
3276
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3277
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3023
3278
|
} | null | undefined;
|
|
3024
3279
|
newCollaboration?: {
|
|
3025
3280
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3281
|
+
id: string;
|
|
3026
3282
|
createdAt: string | Date;
|
|
3027
3283
|
updatedAt: string | Date;
|
|
3028
|
-
id: string;
|
|
3029
3284
|
userId: string;
|
|
3030
3285
|
company?: {
|
|
3286
|
+
id: string;
|
|
3031
3287
|
createdAt: string | Date;
|
|
3032
3288
|
updatedAt: string | Date;
|
|
3033
|
-
id: string;
|
|
3034
3289
|
name: string;
|
|
3035
3290
|
} | null | undefined;
|
|
3036
3291
|
client?: {
|
|
3037
|
-
status: "
|
|
3292
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3293
|
+
id: string;
|
|
3038
3294
|
createdAt: string | Date;
|
|
3039
3295
|
updatedAt: string | Date;
|
|
3040
|
-
id: string;
|
|
3041
3296
|
name: string;
|
|
3042
3297
|
crn: string | null;
|
|
3043
3298
|
govLink: string;
|
|
@@ -3056,9 +3311,14 @@ export declare const jobsContractRouter: {
|
|
|
3056
3311
|
} | null | undefined;
|
|
3057
3312
|
user?: {
|
|
3058
3313
|
id: string;
|
|
3314
|
+
createdAt: string | Date;
|
|
3315
|
+
updatedAt: string | Date;
|
|
3059
3316
|
firstName: string;
|
|
3060
3317
|
lastName: string;
|
|
3061
3318
|
email: string;
|
|
3319
|
+
phone: string;
|
|
3320
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3321
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3062
3322
|
} | null | undefined;
|
|
3063
3323
|
} | null | undefined;
|
|
3064
3324
|
} | null | undefined;
|
|
@@ -3091,12 +3351,6 @@ export declare const jobsContractRouter: {
|
|
|
3091
3351
|
};
|
|
3092
3352
|
};
|
|
3093
3353
|
findAll: {
|
|
3094
|
-
metadata: {
|
|
3095
|
-
tags: string[];
|
|
3096
|
-
openApi: {
|
|
3097
|
-
operationId: string;
|
|
3098
|
-
};
|
|
3099
|
-
};
|
|
3100
3354
|
query: z.ZodObject<{
|
|
3101
3355
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
3102
3356
|
page: z.ZodDefault<z.ZodNumber>;
|
|
@@ -3143,52 +3397,58 @@ export declare const jobsContractRouter: {
|
|
|
3143
3397
|
}, "strip", z.ZodTypeAny, {
|
|
3144
3398
|
limit: number;
|
|
3145
3399
|
page: number;
|
|
3146
|
-
status?: "
|
|
3400
|
+
status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | null | undefined;
|
|
3401
|
+
postcode?: string | null | undefined;
|
|
3147
3402
|
createdAt?: {
|
|
3148
3403
|
from?: string | null | undefined;
|
|
3149
3404
|
to?: string | null | undefined;
|
|
3150
3405
|
} | null | undefined;
|
|
3406
|
+
sortBy?: "status" | "createdAt" | "updatedAt" | "description" | "numberOfPositions" | null | undefined;
|
|
3407
|
+
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
3408
|
+
userId?: string | null | undefined;
|
|
3409
|
+
companyId?: string | null | undefined;
|
|
3410
|
+
clientId?: string | null | undefined;
|
|
3151
3411
|
pay?: {
|
|
3152
3412
|
minRate?: number | null | undefined;
|
|
3153
3413
|
maxRate?: number | null | undefined;
|
|
3154
3414
|
} | null | undefined;
|
|
3155
|
-
postcode?: string | null | undefined;
|
|
3156
3415
|
tradeId?: string | null | undefined;
|
|
3157
|
-
|
|
3416
|
+
distance?: number | null | undefined;
|
|
3158
3417
|
qualificationFilters?: {
|
|
3159
3418
|
qualificationId?: string | undefined;
|
|
3160
3419
|
qualificationTypeId?: string | undefined;
|
|
3161
3420
|
}[] | undefined;
|
|
3162
|
-
clientId?: string | null | undefined;
|
|
3163
|
-
companyId?: string | null | undefined;
|
|
3164
|
-
distance?: number | null | undefined;
|
|
3165
|
-
sortBy?: "description" | "numberOfPositions" | "status" | "createdAt" | "updatedAt" | null | undefined;
|
|
3166
|
-
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
3167
3421
|
}, {
|
|
3168
|
-
status?: "
|
|
3422
|
+
status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | null | undefined;
|
|
3423
|
+
postcode?: string | null | undefined;
|
|
3169
3424
|
createdAt?: {
|
|
3170
3425
|
from?: string | null | undefined;
|
|
3171
3426
|
to?: string | null | undefined;
|
|
3172
3427
|
} | null | undefined;
|
|
3428
|
+
limit?: number | undefined;
|
|
3429
|
+
page?: number | undefined;
|
|
3430
|
+
sortBy?: "status" | "createdAt" | "updatedAt" | "description" | "numberOfPositions" | null | undefined;
|
|
3431
|
+
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
3432
|
+
userId?: string | null | undefined;
|
|
3433
|
+
companyId?: string | null | undefined;
|
|
3434
|
+
clientId?: string | null | undefined;
|
|
3173
3435
|
pay?: {
|
|
3174
3436
|
minRate?: number | null | undefined;
|
|
3175
3437
|
maxRate?: number | null | undefined;
|
|
3176
3438
|
} | null | undefined;
|
|
3177
|
-
postcode?: string | null | undefined;
|
|
3178
3439
|
tradeId?: string | null | undefined;
|
|
3179
|
-
|
|
3180
|
-
limit?: number | undefined;
|
|
3181
|
-
page?: number | undefined;
|
|
3440
|
+
distance?: number | null | undefined;
|
|
3182
3441
|
qualificationFilters?: {
|
|
3183
3442
|
qualificationId?: string | undefined;
|
|
3184
3443
|
qualificationTypeId?: string | undefined;
|
|
3185
3444
|
}[] | undefined;
|
|
3186
|
-
clientId?: string | null | undefined;
|
|
3187
|
-
companyId?: string | null | undefined;
|
|
3188
|
-
distance?: number | null | undefined;
|
|
3189
|
-
sortBy?: "description" | "numberOfPositions" | "status" | "createdAt" | "updatedAt" | null | undefined;
|
|
3190
|
-
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
3191
3445
|
}>;
|
|
3446
|
+
metadata: {
|
|
3447
|
+
tags: string[];
|
|
3448
|
+
openApi: {
|
|
3449
|
+
operationId: string;
|
|
3450
|
+
};
|
|
3451
|
+
};
|
|
3192
3452
|
summary: "Get all jobs";
|
|
3193
3453
|
method: "GET";
|
|
3194
3454
|
path: "/v2/jobs";
|
|
@@ -3306,13 +3566,13 @@ export declare const jobsContractRouter: {
|
|
|
3306
3566
|
rateMax: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
3307
3567
|
receivedRate: z.ZodNumber;
|
|
3308
3568
|
}, "strip", z.ZodTypeAny, {
|
|
3309
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
3310
3569
|
rate: number;
|
|
3570
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
3311
3571
|
receivedRate: number;
|
|
3312
3572
|
rateMax?: number | null | undefined;
|
|
3313
3573
|
}, {
|
|
3314
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
3315
3574
|
rate: number;
|
|
3575
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
3316
3576
|
receivedRate: number;
|
|
3317
3577
|
rateMax?: number | null | undefined;
|
|
3318
3578
|
}>;
|
|
@@ -3363,14 +3623,14 @@ export declare const jobsContractRouter: {
|
|
|
3363
3623
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3364
3624
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3365
3625
|
}, "strip", z.ZodTypeAny, {
|
|
3626
|
+
id: string;
|
|
3366
3627
|
createdAt: string;
|
|
3367
3628
|
updatedAt: string;
|
|
3368
|
-
id: string;
|
|
3369
3629
|
name: string;
|
|
3370
3630
|
}, {
|
|
3631
|
+
id: string;
|
|
3371
3632
|
createdAt: string | Date;
|
|
3372
3633
|
updatedAt: string | Date;
|
|
3373
|
-
id: string;
|
|
3374
3634
|
name: string;
|
|
3375
3635
|
}>>>;
|
|
3376
3636
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -3408,10 +3668,10 @@ export declare const jobsContractRouter: {
|
|
|
3408
3668
|
agentId: string;
|
|
3409
3669
|
}>>>;
|
|
3410
3670
|
}, "strip", z.ZodTypeAny, {
|
|
3411
|
-
status: "
|
|
3671
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3672
|
+
id: string;
|
|
3412
3673
|
createdAt: string;
|
|
3413
3674
|
updatedAt: string;
|
|
3414
|
-
id: string;
|
|
3415
3675
|
name: string;
|
|
3416
3676
|
crn: string | null;
|
|
3417
3677
|
govLink: string;
|
|
@@ -3428,10 +3688,10 @@ export declare const jobsContractRouter: {
|
|
|
3428
3688
|
agentId: string;
|
|
3429
3689
|
} | null | undefined;
|
|
3430
3690
|
}, {
|
|
3431
|
-
status: "
|
|
3691
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3692
|
+
id: string;
|
|
3432
3693
|
createdAt: string | Date;
|
|
3433
3694
|
updatedAt: string | Date;
|
|
3434
|
-
id: string;
|
|
3435
3695
|
name: string;
|
|
3436
3696
|
crn: string | null;
|
|
3437
3697
|
govLink: string;
|
|
@@ -3453,16 +3713,31 @@ export declare const jobsContractRouter: {
|
|
|
3453
3713
|
firstName: z.ZodString;
|
|
3454
3714
|
lastName: z.ZodString;
|
|
3455
3715
|
email: z.ZodString;
|
|
3716
|
+
phone: z.ZodEffects<z.ZodString, string, string>;
|
|
3717
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
3718
|
+
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
3719
|
+
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3720
|
+
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3456
3721
|
}, "strip", z.ZodTypeAny, {
|
|
3457
3722
|
id: string;
|
|
3723
|
+
createdAt: string;
|
|
3724
|
+
updatedAt: string;
|
|
3458
3725
|
firstName: string;
|
|
3459
3726
|
lastName: string;
|
|
3460
3727
|
email: string;
|
|
3728
|
+
phone: string;
|
|
3729
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3730
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3461
3731
|
}, {
|
|
3462
3732
|
id: string;
|
|
3733
|
+
createdAt: string | Date;
|
|
3734
|
+
updatedAt: string | Date;
|
|
3463
3735
|
firstName: string;
|
|
3464
3736
|
lastName: string;
|
|
3465
3737
|
email: string;
|
|
3738
|
+
phone: string;
|
|
3739
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3740
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3466
3741
|
}>>>;
|
|
3467
3742
|
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
3468
3743
|
userId: z.ZodString;
|
|
@@ -3477,14 +3752,14 @@ export declare const jobsContractRouter: {
|
|
|
3477
3752
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3478
3753
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3479
3754
|
}, "strip", z.ZodTypeAny, {
|
|
3755
|
+
id: string;
|
|
3480
3756
|
createdAt: string;
|
|
3481
3757
|
updatedAt: string;
|
|
3482
|
-
id: string;
|
|
3483
3758
|
name: string;
|
|
3484
3759
|
}, {
|
|
3760
|
+
id: string;
|
|
3485
3761
|
createdAt: string | Date;
|
|
3486
3762
|
updatedAt: string | Date;
|
|
3487
|
-
id: string;
|
|
3488
3763
|
name: string;
|
|
3489
3764
|
}>>>;
|
|
3490
3765
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -3522,10 +3797,10 @@ export declare const jobsContractRouter: {
|
|
|
3522
3797
|
agentId: string;
|
|
3523
3798
|
}>>>;
|
|
3524
3799
|
}, "strip", z.ZodTypeAny, {
|
|
3525
|
-
status: "
|
|
3800
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3801
|
+
id: string;
|
|
3526
3802
|
createdAt: string;
|
|
3527
3803
|
updatedAt: string;
|
|
3528
|
-
id: string;
|
|
3529
3804
|
name: string;
|
|
3530
3805
|
crn: string | null;
|
|
3531
3806
|
govLink: string;
|
|
@@ -3542,10 +3817,10 @@ export declare const jobsContractRouter: {
|
|
|
3542
3817
|
agentId: string;
|
|
3543
3818
|
} | null | undefined;
|
|
3544
3819
|
}, {
|
|
3545
|
-
status: "
|
|
3820
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3821
|
+
id: string;
|
|
3546
3822
|
createdAt: string | Date;
|
|
3547
3823
|
updatedAt: string | Date;
|
|
3548
|
-
id: string;
|
|
3549
3824
|
name: string;
|
|
3550
3825
|
crn: string | null;
|
|
3551
3826
|
govLink: string;
|
|
@@ -3567,16 +3842,31 @@ export declare const jobsContractRouter: {
|
|
|
3567
3842
|
firstName: z.ZodString;
|
|
3568
3843
|
lastName: z.ZodString;
|
|
3569
3844
|
email: z.ZodString;
|
|
3845
|
+
phone: z.ZodEffects<z.ZodString, string, string>;
|
|
3846
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
3847
|
+
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
3848
|
+
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3849
|
+
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3570
3850
|
}, "strip", z.ZodTypeAny, {
|
|
3571
3851
|
id: string;
|
|
3852
|
+
createdAt: string;
|
|
3853
|
+
updatedAt: string;
|
|
3572
3854
|
firstName: string;
|
|
3573
3855
|
lastName: string;
|
|
3574
3856
|
email: string;
|
|
3857
|
+
phone: string;
|
|
3858
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3859
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3575
3860
|
}, {
|
|
3576
3861
|
id: string;
|
|
3862
|
+
createdAt: string | Date;
|
|
3863
|
+
updatedAt: string | Date;
|
|
3577
3864
|
firstName: string;
|
|
3578
3865
|
lastName: string;
|
|
3579
3866
|
email: string;
|
|
3867
|
+
phone: string;
|
|
3868
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3869
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3580
3870
|
}>>>;
|
|
3581
3871
|
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
3582
3872
|
userId: z.ZodString;
|
|
@@ -3584,21 +3874,21 @@ export declare const jobsContractRouter: {
|
|
|
3584
3874
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3585
3875
|
}, "strip", z.ZodTypeAny, {
|
|
3586
3876
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3877
|
+
id: string;
|
|
3587
3878
|
createdAt: string;
|
|
3588
3879
|
updatedAt: string;
|
|
3589
|
-
id: string;
|
|
3590
3880
|
userId: string;
|
|
3591
3881
|
company?: {
|
|
3882
|
+
id: string;
|
|
3592
3883
|
createdAt: string;
|
|
3593
3884
|
updatedAt: string;
|
|
3594
|
-
id: string;
|
|
3595
3885
|
name: string;
|
|
3596
3886
|
} | null | undefined;
|
|
3597
3887
|
client?: {
|
|
3598
|
-
status: "
|
|
3888
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3889
|
+
id: string;
|
|
3599
3890
|
createdAt: string;
|
|
3600
3891
|
updatedAt: string;
|
|
3601
|
-
id: string;
|
|
3602
3892
|
name: string;
|
|
3603
3893
|
crn: string | null;
|
|
3604
3894
|
govLink: string;
|
|
@@ -3617,27 +3907,32 @@ export declare const jobsContractRouter: {
|
|
|
3617
3907
|
} | null | undefined;
|
|
3618
3908
|
user?: {
|
|
3619
3909
|
id: string;
|
|
3910
|
+
createdAt: string;
|
|
3911
|
+
updatedAt: string;
|
|
3620
3912
|
firstName: string;
|
|
3621
3913
|
lastName: string;
|
|
3622
3914
|
email: string;
|
|
3915
|
+
phone: string;
|
|
3916
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3917
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3623
3918
|
} | null | undefined;
|
|
3624
3919
|
}, {
|
|
3625
3920
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3921
|
+
id: string;
|
|
3626
3922
|
createdAt: string | Date;
|
|
3627
3923
|
updatedAt: string | Date;
|
|
3628
|
-
id: string;
|
|
3629
3924
|
userId: string;
|
|
3630
3925
|
company?: {
|
|
3926
|
+
id: string;
|
|
3631
3927
|
createdAt: string | Date;
|
|
3632
3928
|
updatedAt: string | Date;
|
|
3633
|
-
id: string;
|
|
3634
3929
|
name: string;
|
|
3635
3930
|
} | null | undefined;
|
|
3636
3931
|
client?: {
|
|
3637
|
-
status: "
|
|
3932
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3933
|
+
id: string;
|
|
3638
3934
|
createdAt: string | Date;
|
|
3639
3935
|
updatedAt: string | Date;
|
|
3640
|
-
id: string;
|
|
3641
3936
|
name: string;
|
|
3642
3937
|
crn: string | null;
|
|
3643
3938
|
govLink: string;
|
|
@@ -3656,28 +3951,33 @@ export declare const jobsContractRouter: {
|
|
|
3656
3951
|
} | null | undefined;
|
|
3657
3952
|
user?: {
|
|
3658
3953
|
id: string;
|
|
3954
|
+
createdAt: string | Date;
|
|
3955
|
+
updatedAt: string | Date;
|
|
3659
3956
|
firstName: string;
|
|
3660
3957
|
lastName: string;
|
|
3661
3958
|
email: string;
|
|
3959
|
+
phone: string;
|
|
3960
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3961
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3662
3962
|
} | null | undefined;
|
|
3663
3963
|
}>>>;
|
|
3664
3964
|
}, "strip", z.ZodTypeAny, {
|
|
3665
3965
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3966
|
+
id: string;
|
|
3666
3967
|
createdAt: string;
|
|
3667
3968
|
updatedAt: string;
|
|
3668
|
-
id: string;
|
|
3669
3969
|
userId: string;
|
|
3670
3970
|
company?: {
|
|
3971
|
+
id: string;
|
|
3671
3972
|
createdAt: string;
|
|
3672
3973
|
updatedAt: string;
|
|
3673
|
-
id: string;
|
|
3674
3974
|
name: string;
|
|
3675
3975
|
} | null | undefined;
|
|
3676
3976
|
client?: {
|
|
3677
|
-
status: "
|
|
3977
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3978
|
+
id: string;
|
|
3678
3979
|
createdAt: string;
|
|
3679
3980
|
updatedAt: string;
|
|
3680
|
-
id: string;
|
|
3681
3981
|
name: string;
|
|
3682
3982
|
crn: string | null;
|
|
3683
3983
|
govLink: string;
|
|
@@ -3696,27 +3996,32 @@ export declare const jobsContractRouter: {
|
|
|
3696
3996
|
} | null | undefined;
|
|
3697
3997
|
user?: {
|
|
3698
3998
|
id: string;
|
|
3999
|
+
createdAt: string;
|
|
4000
|
+
updatedAt: string;
|
|
3699
4001
|
firstName: string;
|
|
3700
4002
|
lastName: string;
|
|
3701
4003
|
email: string;
|
|
4004
|
+
phone: string;
|
|
4005
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
4006
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3702
4007
|
} | null | undefined;
|
|
3703
4008
|
newCollaboration?: {
|
|
3704
4009
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4010
|
+
id: string;
|
|
3705
4011
|
createdAt: string;
|
|
3706
4012
|
updatedAt: string;
|
|
3707
|
-
id: string;
|
|
3708
4013
|
userId: string;
|
|
3709
4014
|
company?: {
|
|
4015
|
+
id: string;
|
|
3710
4016
|
createdAt: string;
|
|
3711
4017
|
updatedAt: string;
|
|
3712
|
-
id: string;
|
|
3713
4018
|
name: string;
|
|
3714
4019
|
} | null | undefined;
|
|
3715
4020
|
client?: {
|
|
3716
|
-
status: "
|
|
4021
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4022
|
+
id: string;
|
|
3717
4023
|
createdAt: string;
|
|
3718
4024
|
updatedAt: string;
|
|
3719
|
-
id: string;
|
|
3720
4025
|
name: string;
|
|
3721
4026
|
crn: string | null;
|
|
3722
4027
|
govLink: string;
|
|
@@ -3735,28 +4040,33 @@ export declare const jobsContractRouter: {
|
|
|
3735
4040
|
} | null | undefined;
|
|
3736
4041
|
user?: {
|
|
3737
4042
|
id: string;
|
|
4043
|
+
createdAt: string;
|
|
4044
|
+
updatedAt: string;
|
|
3738
4045
|
firstName: string;
|
|
3739
4046
|
lastName: string;
|
|
3740
4047
|
email: string;
|
|
4048
|
+
phone: string;
|
|
4049
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
4050
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3741
4051
|
} | null | undefined;
|
|
3742
4052
|
} | null | undefined;
|
|
3743
4053
|
}, {
|
|
3744
4054
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4055
|
+
id: string;
|
|
3745
4056
|
createdAt: string | Date;
|
|
3746
4057
|
updatedAt: string | Date;
|
|
3747
|
-
id: string;
|
|
3748
4058
|
userId: string;
|
|
3749
4059
|
company?: {
|
|
4060
|
+
id: string;
|
|
3750
4061
|
createdAt: string | Date;
|
|
3751
4062
|
updatedAt: string | Date;
|
|
3752
|
-
id: string;
|
|
3753
4063
|
name: string;
|
|
3754
4064
|
} | null | undefined;
|
|
3755
4065
|
client?: {
|
|
3756
|
-
status: "
|
|
4066
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4067
|
+
id: string;
|
|
3757
4068
|
createdAt: string | Date;
|
|
3758
4069
|
updatedAt: string | Date;
|
|
3759
|
-
id: string;
|
|
3760
4070
|
name: string;
|
|
3761
4071
|
crn: string | null;
|
|
3762
4072
|
govLink: string;
|
|
@@ -3775,27 +4085,32 @@ export declare const jobsContractRouter: {
|
|
|
3775
4085
|
} | null | undefined;
|
|
3776
4086
|
user?: {
|
|
3777
4087
|
id: string;
|
|
4088
|
+
createdAt: string | Date;
|
|
4089
|
+
updatedAt: string | Date;
|
|
3778
4090
|
firstName: string;
|
|
3779
4091
|
lastName: string;
|
|
3780
4092
|
email: string;
|
|
4093
|
+
phone: string;
|
|
4094
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
4095
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3781
4096
|
} | null | undefined;
|
|
3782
4097
|
newCollaboration?: {
|
|
3783
4098
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4099
|
+
id: string;
|
|
3784
4100
|
createdAt: string | Date;
|
|
3785
4101
|
updatedAt: string | Date;
|
|
3786
|
-
id: string;
|
|
3787
4102
|
userId: string;
|
|
3788
4103
|
company?: {
|
|
4104
|
+
id: string;
|
|
3789
4105
|
createdAt: string | Date;
|
|
3790
4106
|
updatedAt: string | Date;
|
|
3791
|
-
id: string;
|
|
3792
4107
|
name: string;
|
|
3793
4108
|
} | null | undefined;
|
|
3794
4109
|
client?: {
|
|
3795
|
-
status: "
|
|
4110
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4111
|
+
id: string;
|
|
3796
4112
|
createdAt: string | Date;
|
|
3797
4113
|
updatedAt: string | Date;
|
|
3798
|
-
id: string;
|
|
3799
4114
|
name: string;
|
|
3800
4115
|
crn: string | null;
|
|
3801
4116
|
govLink: string;
|
|
@@ -3814,34 +4129,38 @@ export declare const jobsContractRouter: {
|
|
|
3814
4129
|
} | null | undefined;
|
|
3815
4130
|
user?: {
|
|
3816
4131
|
id: string;
|
|
4132
|
+
createdAt: string | Date;
|
|
4133
|
+
updatedAt: string | Date;
|
|
3817
4134
|
firstName: string;
|
|
3818
4135
|
lastName: string;
|
|
3819
4136
|
email: string;
|
|
4137
|
+
phone: string;
|
|
4138
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
4139
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3820
4140
|
} | null | undefined;
|
|
3821
4141
|
} | null | undefined;
|
|
3822
4142
|
}>>>;
|
|
3823
4143
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3824
4144
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3825
4145
|
}, "strip", z.ZodTypeAny, {
|
|
3826
|
-
|
|
3827
|
-
|
|
3828
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
4146
|
+
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
4147
|
+
id: string;
|
|
3829
4148
|
createdAt: string;
|
|
3830
4149
|
updatedAt: string;
|
|
3831
|
-
|
|
4150
|
+
description: string;
|
|
3832
4151
|
pay: {
|
|
3833
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
3834
4152
|
rate: number;
|
|
4153
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
3835
4154
|
receivedRate: number;
|
|
3836
4155
|
rateMax?: number | null | undefined;
|
|
3837
4156
|
};
|
|
3838
4157
|
tradeId: string;
|
|
4158
|
+
numberOfPositions: number;
|
|
3839
4159
|
jobQualifications: {
|
|
3840
4160
|
id: string;
|
|
3841
4161
|
qualificationId: string;
|
|
3842
4162
|
qualificationTypeId?: string | null | undefined;
|
|
3843
4163
|
}[];
|
|
3844
|
-
workHours?: number | null | undefined;
|
|
3845
4164
|
location?: {
|
|
3846
4165
|
address?: string | null | undefined;
|
|
3847
4166
|
postcode?: string | null | undefined;
|
|
@@ -3851,23 +4170,24 @@ export declare const jobsContractRouter: {
|
|
|
3851
4170
|
postTown?: string | null | undefined;
|
|
3852
4171
|
areaCovered?: string | null | undefined;
|
|
3853
4172
|
} | null | undefined;
|
|
4173
|
+
workHours?: number | null | undefined;
|
|
3854
4174
|
currentCollaboration?: {
|
|
3855
4175
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4176
|
+
id: string;
|
|
3856
4177
|
createdAt: string;
|
|
3857
4178
|
updatedAt: string;
|
|
3858
|
-
id: string;
|
|
3859
4179
|
userId: string;
|
|
3860
4180
|
company?: {
|
|
4181
|
+
id: string;
|
|
3861
4182
|
createdAt: string;
|
|
3862
4183
|
updatedAt: string;
|
|
3863
|
-
id: string;
|
|
3864
4184
|
name: string;
|
|
3865
4185
|
} | null | undefined;
|
|
3866
4186
|
client?: {
|
|
3867
|
-
status: "
|
|
4187
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4188
|
+
id: string;
|
|
3868
4189
|
createdAt: string;
|
|
3869
4190
|
updatedAt: string;
|
|
3870
|
-
id: string;
|
|
3871
4191
|
name: string;
|
|
3872
4192
|
crn: string | null;
|
|
3873
4193
|
govLink: string;
|
|
@@ -3886,27 +4206,32 @@ export declare const jobsContractRouter: {
|
|
|
3886
4206
|
} | null | undefined;
|
|
3887
4207
|
user?: {
|
|
3888
4208
|
id: string;
|
|
4209
|
+
createdAt: string;
|
|
4210
|
+
updatedAt: string;
|
|
3889
4211
|
firstName: string;
|
|
3890
4212
|
lastName: string;
|
|
3891
4213
|
email: string;
|
|
4214
|
+
phone: string;
|
|
4215
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
4216
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3892
4217
|
} | null | undefined;
|
|
3893
4218
|
newCollaboration?: {
|
|
3894
4219
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4220
|
+
id: string;
|
|
3895
4221
|
createdAt: string;
|
|
3896
4222
|
updatedAt: string;
|
|
3897
|
-
id: string;
|
|
3898
4223
|
userId: string;
|
|
3899
4224
|
company?: {
|
|
4225
|
+
id: string;
|
|
3900
4226
|
createdAt: string;
|
|
3901
4227
|
updatedAt: string;
|
|
3902
|
-
id: string;
|
|
3903
4228
|
name: string;
|
|
3904
4229
|
} | null | undefined;
|
|
3905
4230
|
client?: {
|
|
3906
|
-
status: "
|
|
4231
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4232
|
+
id: string;
|
|
3907
4233
|
createdAt: string;
|
|
3908
4234
|
updatedAt: string;
|
|
3909
|
-
id: string;
|
|
3910
4235
|
name: string;
|
|
3911
4236
|
crn: string | null;
|
|
3912
4237
|
govLink: string;
|
|
@@ -3925,27 +4250,31 @@ export declare const jobsContractRouter: {
|
|
|
3925
4250
|
} | null | undefined;
|
|
3926
4251
|
user?: {
|
|
3927
4252
|
id: string;
|
|
4253
|
+
createdAt: string;
|
|
4254
|
+
updatedAt: string;
|
|
3928
4255
|
firstName: string;
|
|
3929
4256
|
lastName: string;
|
|
3930
4257
|
email: string;
|
|
4258
|
+
phone: string;
|
|
4259
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
4260
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3931
4261
|
} | null | undefined;
|
|
3932
4262
|
} | null | undefined;
|
|
3933
4263
|
} | null | undefined;
|
|
3934
4264
|
}, {
|
|
3935
|
-
|
|
3936
|
-
|
|
3937
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
4265
|
+
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
4266
|
+
id: string;
|
|
3938
4267
|
createdAt: string | Date;
|
|
3939
4268
|
updatedAt: string | Date;
|
|
3940
|
-
|
|
4269
|
+
description: string;
|
|
3941
4270
|
pay: {
|
|
3942
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
3943
4271
|
rate: number;
|
|
4272
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
3944
4273
|
receivedRate: number;
|
|
3945
4274
|
rateMax?: number | null | undefined;
|
|
3946
4275
|
};
|
|
3947
4276
|
tradeId: string;
|
|
3948
|
-
|
|
4277
|
+
numberOfPositions: number;
|
|
3949
4278
|
location?: {
|
|
3950
4279
|
address?: string | null | undefined;
|
|
3951
4280
|
postcode?: string | null | undefined;
|
|
@@ -3955,6 +4284,7 @@ export declare const jobsContractRouter: {
|
|
|
3955
4284
|
postTown?: string | null | undefined;
|
|
3956
4285
|
areaCovered?: string | null | undefined;
|
|
3957
4286
|
} | null | undefined;
|
|
4287
|
+
workHours?: number | null | undefined;
|
|
3958
4288
|
jobQualifications?: {
|
|
3959
4289
|
id: string;
|
|
3960
4290
|
qualificationId: string;
|
|
@@ -3962,21 +4292,21 @@ export declare const jobsContractRouter: {
|
|
|
3962
4292
|
}[] | undefined;
|
|
3963
4293
|
currentCollaboration?: {
|
|
3964
4294
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4295
|
+
id: string;
|
|
3965
4296
|
createdAt: string | Date;
|
|
3966
4297
|
updatedAt: string | Date;
|
|
3967
|
-
id: string;
|
|
3968
4298
|
userId: string;
|
|
3969
4299
|
company?: {
|
|
4300
|
+
id: string;
|
|
3970
4301
|
createdAt: string | Date;
|
|
3971
4302
|
updatedAt: string | Date;
|
|
3972
|
-
id: string;
|
|
3973
4303
|
name: string;
|
|
3974
4304
|
} | null | undefined;
|
|
3975
4305
|
client?: {
|
|
3976
|
-
status: "
|
|
4306
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4307
|
+
id: string;
|
|
3977
4308
|
createdAt: string | Date;
|
|
3978
4309
|
updatedAt: string | Date;
|
|
3979
|
-
id: string;
|
|
3980
4310
|
name: string;
|
|
3981
4311
|
crn: string | null;
|
|
3982
4312
|
govLink: string;
|
|
@@ -3995,27 +4325,32 @@ export declare const jobsContractRouter: {
|
|
|
3995
4325
|
} | null | undefined;
|
|
3996
4326
|
user?: {
|
|
3997
4327
|
id: string;
|
|
4328
|
+
createdAt: string | Date;
|
|
4329
|
+
updatedAt: string | Date;
|
|
3998
4330
|
firstName: string;
|
|
3999
4331
|
lastName: string;
|
|
4000
4332
|
email: string;
|
|
4333
|
+
phone: string;
|
|
4334
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
4335
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4001
4336
|
} | null | undefined;
|
|
4002
4337
|
newCollaboration?: {
|
|
4003
4338
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4339
|
+
id: string;
|
|
4004
4340
|
createdAt: string | Date;
|
|
4005
4341
|
updatedAt: string | Date;
|
|
4006
|
-
id: string;
|
|
4007
4342
|
userId: string;
|
|
4008
4343
|
company?: {
|
|
4344
|
+
id: string;
|
|
4009
4345
|
createdAt: string | Date;
|
|
4010
4346
|
updatedAt: string | Date;
|
|
4011
|
-
id: string;
|
|
4012
4347
|
name: string;
|
|
4013
4348
|
} | null | undefined;
|
|
4014
4349
|
client?: {
|
|
4015
|
-
status: "
|
|
4350
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4351
|
+
id: string;
|
|
4016
4352
|
createdAt: string | Date;
|
|
4017
4353
|
updatedAt: string | Date;
|
|
4018
|
-
id: string;
|
|
4019
4354
|
name: string;
|
|
4020
4355
|
crn: string | null;
|
|
4021
4356
|
govLink: string;
|
|
@@ -4034,9 +4369,14 @@ export declare const jobsContractRouter: {
|
|
|
4034
4369
|
} | null | undefined;
|
|
4035
4370
|
user?: {
|
|
4036
4371
|
id: string;
|
|
4372
|
+
createdAt: string | Date;
|
|
4373
|
+
updatedAt: string | Date;
|
|
4037
4374
|
firstName: string;
|
|
4038
4375
|
lastName: string;
|
|
4039
4376
|
email: string;
|
|
4377
|
+
phone: string;
|
|
4378
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
4379
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4040
4380
|
} | null | undefined;
|
|
4041
4381
|
} | null | undefined;
|
|
4042
4382
|
} | null | undefined;
|
|
@@ -4049,25 +4389,24 @@ export declare const jobsContractRouter: {
|
|
|
4049
4389
|
}, "strip", z.ZodTypeAny, {
|
|
4050
4390
|
limit: number;
|
|
4051
4391
|
items: {
|
|
4052
|
-
|
|
4053
|
-
|
|
4054
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
4392
|
+
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
4393
|
+
id: string;
|
|
4055
4394
|
createdAt: string;
|
|
4056
4395
|
updatedAt: string;
|
|
4057
|
-
|
|
4396
|
+
description: string;
|
|
4058
4397
|
pay: {
|
|
4059
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
4060
4398
|
rate: number;
|
|
4399
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
4061
4400
|
receivedRate: number;
|
|
4062
4401
|
rateMax?: number | null | undefined;
|
|
4063
4402
|
};
|
|
4064
4403
|
tradeId: string;
|
|
4404
|
+
numberOfPositions: number;
|
|
4065
4405
|
jobQualifications: {
|
|
4066
4406
|
id: string;
|
|
4067
4407
|
qualificationId: string;
|
|
4068
4408
|
qualificationTypeId?: string | null | undefined;
|
|
4069
4409
|
}[];
|
|
4070
|
-
workHours?: number | null | undefined;
|
|
4071
4410
|
location?: {
|
|
4072
4411
|
address?: string | null | undefined;
|
|
4073
4412
|
postcode?: string | null | undefined;
|
|
@@ -4077,23 +4416,24 @@ export declare const jobsContractRouter: {
|
|
|
4077
4416
|
postTown?: string | null | undefined;
|
|
4078
4417
|
areaCovered?: string | null | undefined;
|
|
4079
4418
|
} | null | undefined;
|
|
4419
|
+
workHours?: number | null | undefined;
|
|
4080
4420
|
currentCollaboration?: {
|
|
4081
4421
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4422
|
+
id: string;
|
|
4082
4423
|
createdAt: string;
|
|
4083
4424
|
updatedAt: string;
|
|
4084
|
-
id: string;
|
|
4085
4425
|
userId: string;
|
|
4086
4426
|
company?: {
|
|
4427
|
+
id: string;
|
|
4087
4428
|
createdAt: string;
|
|
4088
4429
|
updatedAt: string;
|
|
4089
|
-
id: string;
|
|
4090
4430
|
name: string;
|
|
4091
4431
|
} | null | undefined;
|
|
4092
4432
|
client?: {
|
|
4093
|
-
status: "
|
|
4433
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4434
|
+
id: string;
|
|
4094
4435
|
createdAt: string;
|
|
4095
4436
|
updatedAt: string;
|
|
4096
|
-
id: string;
|
|
4097
4437
|
name: string;
|
|
4098
4438
|
crn: string | null;
|
|
4099
4439
|
govLink: string;
|
|
@@ -4112,27 +4452,32 @@ export declare const jobsContractRouter: {
|
|
|
4112
4452
|
} | null | undefined;
|
|
4113
4453
|
user?: {
|
|
4114
4454
|
id: string;
|
|
4455
|
+
createdAt: string;
|
|
4456
|
+
updatedAt: string;
|
|
4115
4457
|
firstName: string;
|
|
4116
4458
|
lastName: string;
|
|
4117
4459
|
email: string;
|
|
4460
|
+
phone: string;
|
|
4461
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
4462
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4118
4463
|
} | null | undefined;
|
|
4119
4464
|
newCollaboration?: {
|
|
4120
4465
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4466
|
+
id: string;
|
|
4121
4467
|
createdAt: string;
|
|
4122
4468
|
updatedAt: string;
|
|
4123
|
-
id: string;
|
|
4124
4469
|
userId: string;
|
|
4125
4470
|
company?: {
|
|
4471
|
+
id: string;
|
|
4126
4472
|
createdAt: string;
|
|
4127
4473
|
updatedAt: string;
|
|
4128
|
-
id: string;
|
|
4129
4474
|
name: string;
|
|
4130
4475
|
} | null | undefined;
|
|
4131
4476
|
client?: {
|
|
4132
|
-
status: "
|
|
4477
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4478
|
+
id: string;
|
|
4133
4479
|
createdAt: string;
|
|
4134
4480
|
updatedAt: string;
|
|
4135
|
-
id: string;
|
|
4136
4481
|
name: string;
|
|
4137
4482
|
crn: string | null;
|
|
4138
4483
|
govLink: string;
|
|
@@ -4151,9 +4496,14 @@ export declare const jobsContractRouter: {
|
|
|
4151
4496
|
} | null | undefined;
|
|
4152
4497
|
user?: {
|
|
4153
4498
|
id: string;
|
|
4499
|
+
createdAt: string;
|
|
4500
|
+
updatedAt: string;
|
|
4154
4501
|
firstName: string;
|
|
4155
4502
|
lastName: string;
|
|
4156
4503
|
email: string;
|
|
4504
|
+
phone: string;
|
|
4505
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
4506
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4157
4507
|
} | null | undefined;
|
|
4158
4508
|
} | null | undefined;
|
|
4159
4509
|
} | null | undefined;
|
|
@@ -4165,20 +4515,19 @@ export declare const jobsContractRouter: {
|
|
|
4165
4515
|
}, {
|
|
4166
4516
|
limit: number;
|
|
4167
4517
|
items: {
|
|
4168
|
-
|
|
4169
|
-
|
|
4170
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
4518
|
+
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
4519
|
+
id: string;
|
|
4171
4520
|
createdAt: string | Date;
|
|
4172
4521
|
updatedAt: string | Date;
|
|
4173
|
-
|
|
4522
|
+
description: string;
|
|
4174
4523
|
pay: {
|
|
4175
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
4176
4524
|
rate: number;
|
|
4525
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
4177
4526
|
receivedRate: number;
|
|
4178
4527
|
rateMax?: number | null | undefined;
|
|
4179
4528
|
};
|
|
4180
4529
|
tradeId: string;
|
|
4181
|
-
|
|
4530
|
+
numberOfPositions: number;
|
|
4182
4531
|
location?: {
|
|
4183
4532
|
address?: string | null | undefined;
|
|
4184
4533
|
postcode?: string | null | undefined;
|
|
@@ -4188,6 +4537,7 @@ export declare const jobsContractRouter: {
|
|
|
4188
4537
|
postTown?: string | null | undefined;
|
|
4189
4538
|
areaCovered?: string | null | undefined;
|
|
4190
4539
|
} | null | undefined;
|
|
4540
|
+
workHours?: number | null | undefined;
|
|
4191
4541
|
jobQualifications?: {
|
|
4192
4542
|
id: string;
|
|
4193
4543
|
qualificationId: string;
|
|
@@ -4195,21 +4545,21 @@ export declare const jobsContractRouter: {
|
|
|
4195
4545
|
}[] | undefined;
|
|
4196
4546
|
currentCollaboration?: {
|
|
4197
4547
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4548
|
+
id: string;
|
|
4198
4549
|
createdAt: string | Date;
|
|
4199
4550
|
updatedAt: string | Date;
|
|
4200
|
-
id: string;
|
|
4201
4551
|
userId: string;
|
|
4202
4552
|
company?: {
|
|
4553
|
+
id: string;
|
|
4203
4554
|
createdAt: string | Date;
|
|
4204
4555
|
updatedAt: string | Date;
|
|
4205
|
-
id: string;
|
|
4206
4556
|
name: string;
|
|
4207
4557
|
} | null | undefined;
|
|
4208
4558
|
client?: {
|
|
4209
|
-
status: "
|
|
4559
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4560
|
+
id: string;
|
|
4210
4561
|
createdAt: string | Date;
|
|
4211
4562
|
updatedAt: string | Date;
|
|
4212
|
-
id: string;
|
|
4213
4563
|
name: string;
|
|
4214
4564
|
crn: string | null;
|
|
4215
4565
|
govLink: string;
|
|
@@ -4228,27 +4578,32 @@ export declare const jobsContractRouter: {
|
|
|
4228
4578
|
} | null | undefined;
|
|
4229
4579
|
user?: {
|
|
4230
4580
|
id: string;
|
|
4581
|
+
createdAt: string | Date;
|
|
4582
|
+
updatedAt: string | Date;
|
|
4231
4583
|
firstName: string;
|
|
4232
4584
|
lastName: string;
|
|
4233
4585
|
email: string;
|
|
4586
|
+
phone: string;
|
|
4587
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
4588
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4234
4589
|
} | null | undefined;
|
|
4235
4590
|
newCollaboration?: {
|
|
4236
4591
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4592
|
+
id: string;
|
|
4237
4593
|
createdAt: string | Date;
|
|
4238
4594
|
updatedAt: string | Date;
|
|
4239
|
-
id: string;
|
|
4240
4595
|
userId: string;
|
|
4241
4596
|
company?: {
|
|
4597
|
+
id: string;
|
|
4242
4598
|
createdAt: string | Date;
|
|
4243
4599
|
updatedAt: string | Date;
|
|
4244
|
-
id: string;
|
|
4245
4600
|
name: string;
|
|
4246
4601
|
} | null | undefined;
|
|
4247
4602
|
client?: {
|
|
4248
|
-
status: "
|
|
4603
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4604
|
+
id: string;
|
|
4249
4605
|
createdAt: string | Date;
|
|
4250
4606
|
updatedAt: string | Date;
|
|
4251
|
-
id: string;
|
|
4252
4607
|
name: string;
|
|
4253
4608
|
crn: string | null;
|
|
4254
4609
|
govLink: string;
|
|
@@ -4267,9 +4622,14 @@ export declare const jobsContractRouter: {
|
|
|
4267
4622
|
} | null | undefined;
|
|
4268
4623
|
user?: {
|
|
4269
4624
|
id: string;
|
|
4625
|
+
createdAt: string | Date;
|
|
4626
|
+
updatedAt: string | Date;
|
|
4270
4627
|
firstName: string;
|
|
4271
4628
|
lastName: string;
|
|
4272
4629
|
email: string;
|
|
4630
|
+
phone: string;
|
|
4631
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
4632
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4273
4633
|
} | null | undefined;
|
|
4274
4634
|
} | null | undefined;
|
|
4275
4635
|
} | null | undefined;
|
|
@@ -4411,13 +4771,13 @@ export declare const jobsContractRouter: {
|
|
|
4411
4771
|
rateMax: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
4412
4772
|
receivedRate: z.ZodNumber;
|
|
4413
4773
|
}, "strip", z.ZodTypeAny, {
|
|
4414
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
4415
4774
|
rate: number;
|
|
4775
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
4416
4776
|
receivedRate: number;
|
|
4417
4777
|
rateMax?: number | null | undefined;
|
|
4418
4778
|
}, {
|
|
4419
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
4420
4779
|
rate: number;
|
|
4780
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
4421
4781
|
receivedRate: number;
|
|
4422
4782
|
rateMax?: number | null | undefined;
|
|
4423
4783
|
}>;
|
|
@@ -4468,14 +4828,14 @@ export declare const jobsContractRouter: {
|
|
|
4468
4828
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4469
4829
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4470
4830
|
}, "strip", z.ZodTypeAny, {
|
|
4831
|
+
id: string;
|
|
4471
4832
|
createdAt: string;
|
|
4472
4833
|
updatedAt: string;
|
|
4473
|
-
id: string;
|
|
4474
4834
|
name: string;
|
|
4475
4835
|
}, {
|
|
4836
|
+
id: string;
|
|
4476
4837
|
createdAt: string | Date;
|
|
4477
4838
|
updatedAt: string | Date;
|
|
4478
|
-
id: string;
|
|
4479
4839
|
name: string;
|
|
4480
4840
|
}>>>;
|
|
4481
4841
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -4513,10 +4873,10 @@ export declare const jobsContractRouter: {
|
|
|
4513
4873
|
agentId: string;
|
|
4514
4874
|
}>>>;
|
|
4515
4875
|
}, "strip", z.ZodTypeAny, {
|
|
4516
|
-
status: "
|
|
4876
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4877
|
+
id: string;
|
|
4517
4878
|
createdAt: string;
|
|
4518
4879
|
updatedAt: string;
|
|
4519
|
-
id: string;
|
|
4520
4880
|
name: string;
|
|
4521
4881
|
crn: string | null;
|
|
4522
4882
|
govLink: string;
|
|
@@ -4533,10 +4893,10 @@ export declare const jobsContractRouter: {
|
|
|
4533
4893
|
agentId: string;
|
|
4534
4894
|
} | null | undefined;
|
|
4535
4895
|
}, {
|
|
4536
|
-
status: "
|
|
4896
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4897
|
+
id: string;
|
|
4537
4898
|
createdAt: string | Date;
|
|
4538
4899
|
updatedAt: string | Date;
|
|
4539
|
-
id: string;
|
|
4540
4900
|
name: string;
|
|
4541
4901
|
crn: string | null;
|
|
4542
4902
|
govLink: string;
|
|
@@ -4558,16 +4918,31 @@ export declare const jobsContractRouter: {
|
|
|
4558
4918
|
firstName: z.ZodString;
|
|
4559
4919
|
lastName: z.ZodString;
|
|
4560
4920
|
email: z.ZodString;
|
|
4921
|
+
phone: z.ZodEffects<z.ZodString, string, string>;
|
|
4922
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
4923
|
+
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
4924
|
+
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4925
|
+
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4561
4926
|
}, "strip", z.ZodTypeAny, {
|
|
4562
4927
|
id: string;
|
|
4928
|
+
createdAt: string;
|
|
4929
|
+
updatedAt: string;
|
|
4563
4930
|
firstName: string;
|
|
4564
4931
|
lastName: string;
|
|
4565
4932
|
email: string;
|
|
4933
|
+
phone: string;
|
|
4934
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
4935
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4566
4936
|
}, {
|
|
4567
4937
|
id: string;
|
|
4938
|
+
createdAt: string | Date;
|
|
4939
|
+
updatedAt: string | Date;
|
|
4568
4940
|
firstName: string;
|
|
4569
4941
|
lastName: string;
|
|
4570
4942
|
email: string;
|
|
4943
|
+
phone: string;
|
|
4944
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
4945
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4571
4946
|
}>>>;
|
|
4572
4947
|
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
4573
4948
|
userId: z.ZodString;
|
|
@@ -4582,14 +4957,14 @@ export declare const jobsContractRouter: {
|
|
|
4582
4957
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4583
4958
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4584
4959
|
}, "strip", z.ZodTypeAny, {
|
|
4960
|
+
id: string;
|
|
4585
4961
|
createdAt: string;
|
|
4586
4962
|
updatedAt: string;
|
|
4587
|
-
id: string;
|
|
4588
4963
|
name: string;
|
|
4589
4964
|
}, {
|
|
4965
|
+
id: string;
|
|
4590
4966
|
createdAt: string | Date;
|
|
4591
4967
|
updatedAt: string | Date;
|
|
4592
|
-
id: string;
|
|
4593
4968
|
name: string;
|
|
4594
4969
|
}>>>;
|
|
4595
4970
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -4627,10 +5002,10 @@ export declare const jobsContractRouter: {
|
|
|
4627
5002
|
agentId: string;
|
|
4628
5003
|
}>>>;
|
|
4629
5004
|
}, "strip", z.ZodTypeAny, {
|
|
4630
|
-
status: "
|
|
5005
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5006
|
+
id: string;
|
|
4631
5007
|
createdAt: string;
|
|
4632
5008
|
updatedAt: string;
|
|
4633
|
-
id: string;
|
|
4634
5009
|
name: string;
|
|
4635
5010
|
crn: string | null;
|
|
4636
5011
|
govLink: string;
|
|
@@ -4647,10 +5022,10 @@ export declare const jobsContractRouter: {
|
|
|
4647
5022
|
agentId: string;
|
|
4648
5023
|
} | null | undefined;
|
|
4649
5024
|
}, {
|
|
4650
|
-
status: "
|
|
5025
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5026
|
+
id: string;
|
|
4651
5027
|
createdAt: string | Date;
|
|
4652
5028
|
updatedAt: string | Date;
|
|
4653
|
-
id: string;
|
|
4654
5029
|
name: string;
|
|
4655
5030
|
crn: string | null;
|
|
4656
5031
|
govLink: string;
|
|
@@ -4672,16 +5047,31 @@ export declare const jobsContractRouter: {
|
|
|
4672
5047
|
firstName: z.ZodString;
|
|
4673
5048
|
lastName: z.ZodString;
|
|
4674
5049
|
email: z.ZodString;
|
|
5050
|
+
phone: z.ZodEffects<z.ZodString, string, string>;
|
|
5051
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
5052
|
+
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
5053
|
+
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5054
|
+
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4675
5055
|
}, "strip", z.ZodTypeAny, {
|
|
4676
5056
|
id: string;
|
|
5057
|
+
createdAt: string;
|
|
5058
|
+
updatedAt: string;
|
|
4677
5059
|
firstName: string;
|
|
4678
5060
|
lastName: string;
|
|
4679
5061
|
email: string;
|
|
5062
|
+
phone: string;
|
|
5063
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
5064
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4680
5065
|
}, {
|
|
4681
5066
|
id: string;
|
|
5067
|
+
createdAt: string | Date;
|
|
5068
|
+
updatedAt: string | Date;
|
|
4682
5069
|
firstName: string;
|
|
4683
5070
|
lastName: string;
|
|
4684
5071
|
email: string;
|
|
5072
|
+
phone: string;
|
|
5073
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
5074
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4685
5075
|
}>>>;
|
|
4686
5076
|
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
4687
5077
|
userId: z.ZodString;
|
|
@@ -4689,21 +5079,21 @@ export declare const jobsContractRouter: {
|
|
|
4689
5079
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4690
5080
|
}, "strip", z.ZodTypeAny, {
|
|
4691
5081
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5082
|
+
id: string;
|
|
4692
5083
|
createdAt: string;
|
|
4693
5084
|
updatedAt: string;
|
|
4694
|
-
id: string;
|
|
4695
5085
|
userId: string;
|
|
4696
5086
|
company?: {
|
|
5087
|
+
id: string;
|
|
4697
5088
|
createdAt: string;
|
|
4698
5089
|
updatedAt: string;
|
|
4699
|
-
id: string;
|
|
4700
5090
|
name: string;
|
|
4701
5091
|
} | null | undefined;
|
|
4702
5092
|
client?: {
|
|
4703
|
-
status: "
|
|
5093
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5094
|
+
id: string;
|
|
4704
5095
|
createdAt: string;
|
|
4705
5096
|
updatedAt: string;
|
|
4706
|
-
id: string;
|
|
4707
5097
|
name: string;
|
|
4708
5098
|
crn: string | null;
|
|
4709
5099
|
govLink: string;
|
|
@@ -4722,27 +5112,32 @@ export declare const jobsContractRouter: {
|
|
|
4722
5112
|
} | null | undefined;
|
|
4723
5113
|
user?: {
|
|
4724
5114
|
id: string;
|
|
5115
|
+
createdAt: string;
|
|
5116
|
+
updatedAt: string;
|
|
4725
5117
|
firstName: string;
|
|
4726
5118
|
lastName: string;
|
|
4727
5119
|
email: string;
|
|
5120
|
+
phone: string;
|
|
5121
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
5122
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4728
5123
|
} | null | undefined;
|
|
4729
5124
|
}, {
|
|
4730
5125
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5126
|
+
id: string;
|
|
4731
5127
|
createdAt: string | Date;
|
|
4732
5128
|
updatedAt: string | Date;
|
|
4733
|
-
id: string;
|
|
4734
5129
|
userId: string;
|
|
4735
5130
|
company?: {
|
|
5131
|
+
id: string;
|
|
4736
5132
|
createdAt: string | Date;
|
|
4737
5133
|
updatedAt: string | Date;
|
|
4738
|
-
id: string;
|
|
4739
5134
|
name: string;
|
|
4740
5135
|
} | null | undefined;
|
|
4741
5136
|
client?: {
|
|
4742
|
-
status: "
|
|
5137
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5138
|
+
id: string;
|
|
4743
5139
|
createdAt: string | Date;
|
|
4744
5140
|
updatedAt: string | Date;
|
|
4745
|
-
id: string;
|
|
4746
5141
|
name: string;
|
|
4747
5142
|
crn: string | null;
|
|
4748
5143
|
govLink: string;
|
|
@@ -4761,28 +5156,33 @@ export declare const jobsContractRouter: {
|
|
|
4761
5156
|
} | null | undefined;
|
|
4762
5157
|
user?: {
|
|
4763
5158
|
id: string;
|
|
5159
|
+
createdAt: string | Date;
|
|
5160
|
+
updatedAt: string | Date;
|
|
4764
5161
|
firstName: string;
|
|
4765
5162
|
lastName: string;
|
|
4766
5163
|
email: string;
|
|
5164
|
+
phone: string;
|
|
5165
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
5166
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4767
5167
|
} | null | undefined;
|
|
4768
5168
|
}>>>;
|
|
4769
5169
|
}, "strip", z.ZodTypeAny, {
|
|
4770
5170
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5171
|
+
id: string;
|
|
4771
5172
|
createdAt: string;
|
|
4772
5173
|
updatedAt: string;
|
|
4773
|
-
id: string;
|
|
4774
5174
|
userId: string;
|
|
4775
5175
|
company?: {
|
|
5176
|
+
id: string;
|
|
4776
5177
|
createdAt: string;
|
|
4777
5178
|
updatedAt: string;
|
|
4778
|
-
id: string;
|
|
4779
5179
|
name: string;
|
|
4780
5180
|
} | null | undefined;
|
|
4781
5181
|
client?: {
|
|
4782
|
-
status: "
|
|
5182
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5183
|
+
id: string;
|
|
4783
5184
|
createdAt: string;
|
|
4784
5185
|
updatedAt: string;
|
|
4785
|
-
id: string;
|
|
4786
5186
|
name: string;
|
|
4787
5187
|
crn: string | null;
|
|
4788
5188
|
govLink: string;
|
|
@@ -4801,27 +5201,32 @@ export declare const jobsContractRouter: {
|
|
|
4801
5201
|
} | null | undefined;
|
|
4802
5202
|
user?: {
|
|
4803
5203
|
id: string;
|
|
5204
|
+
createdAt: string;
|
|
5205
|
+
updatedAt: string;
|
|
4804
5206
|
firstName: string;
|
|
4805
5207
|
lastName: string;
|
|
4806
5208
|
email: string;
|
|
5209
|
+
phone: string;
|
|
5210
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
5211
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4807
5212
|
} | null | undefined;
|
|
4808
5213
|
newCollaboration?: {
|
|
4809
5214
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5215
|
+
id: string;
|
|
4810
5216
|
createdAt: string;
|
|
4811
5217
|
updatedAt: string;
|
|
4812
|
-
id: string;
|
|
4813
5218
|
userId: string;
|
|
4814
5219
|
company?: {
|
|
5220
|
+
id: string;
|
|
4815
5221
|
createdAt: string;
|
|
4816
5222
|
updatedAt: string;
|
|
4817
|
-
id: string;
|
|
4818
5223
|
name: string;
|
|
4819
5224
|
} | null | undefined;
|
|
4820
5225
|
client?: {
|
|
4821
|
-
status: "
|
|
5226
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5227
|
+
id: string;
|
|
4822
5228
|
createdAt: string;
|
|
4823
5229
|
updatedAt: string;
|
|
4824
|
-
id: string;
|
|
4825
5230
|
name: string;
|
|
4826
5231
|
crn: string | null;
|
|
4827
5232
|
govLink: string;
|
|
@@ -4840,28 +5245,33 @@ export declare const jobsContractRouter: {
|
|
|
4840
5245
|
} | null | undefined;
|
|
4841
5246
|
user?: {
|
|
4842
5247
|
id: string;
|
|
5248
|
+
createdAt: string;
|
|
5249
|
+
updatedAt: string;
|
|
4843
5250
|
firstName: string;
|
|
4844
5251
|
lastName: string;
|
|
4845
5252
|
email: string;
|
|
5253
|
+
phone: string;
|
|
5254
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
5255
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4846
5256
|
} | null | undefined;
|
|
4847
5257
|
} | null | undefined;
|
|
4848
5258
|
}, {
|
|
4849
5259
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5260
|
+
id: string;
|
|
4850
5261
|
createdAt: string | Date;
|
|
4851
5262
|
updatedAt: string | Date;
|
|
4852
|
-
id: string;
|
|
4853
5263
|
userId: string;
|
|
4854
5264
|
company?: {
|
|
5265
|
+
id: string;
|
|
4855
5266
|
createdAt: string | Date;
|
|
4856
5267
|
updatedAt: string | Date;
|
|
4857
|
-
id: string;
|
|
4858
5268
|
name: string;
|
|
4859
5269
|
} | null | undefined;
|
|
4860
5270
|
client?: {
|
|
4861
|
-
status: "
|
|
5271
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5272
|
+
id: string;
|
|
4862
5273
|
createdAt: string | Date;
|
|
4863
5274
|
updatedAt: string | Date;
|
|
4864
|
-
id: string;
|
|
4865
5275
|
name: string;
|
|
4866
5276
|
crn: string | null;
|
|
4867
5277
|
govLink: string;
|
|
@@ -4880,27 +5290,32 @@ export declare const jobsContractRouter: {
|
|
|
4880
5290
|
} | null | undefined;
|
|
4881
5291
|
user?: {
|
|
4882
5292
|
id: string;
|
|
5293
|
+
createdAt: string | Date;
|
|
5294
|
+
updatedAt: string | Date;
|
|
4883
5295
|
firstName: string;
|
|
4884
5296
|
lastName: string;
|
|
4885
5297
|
email: string;
|
|
5298
|
+
phone: string;
|
|
5299
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
5300
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4886
5301
|
} | null | undefined;
|
|
4887
5302
|
newCollaboration?: {
|
|
4888
5303
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5304
|
+
id: string;
|
|
4889
5305
|
createdAt: string | Date;
|
|
4890
5306
|
updatedAt: string | Date;
|
|
4891
|
-
id: string;
|
|
4892
5307
|
userId: string;
|
|
4893
5308
|
company?: {
|
|
5309
|
+
id: string;
|
|
4894
5310
|
createdAt: string | Date;
|
|
4895
5311
|
updatedAt: string | Date;
|
|
4896
|
-
id: string;
|
|
4897
5312
|
name: string;
|
|
4898
5313
|
} | null | undefined;
|
|
4899
5314
|
client?: {
|
|
4900
|
-
status: "
|
|
5315
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5316
|
+
id: string;
|
|
4901
5317
|
createdAt: string | Date;
|
|
4902
5318
|
updatedAt: string | Date;
|
|
4903
|
-
id: string;
|
|
4904
5319
|
name: string;
|
|
4905
5320
|
crn: string | null;
|
|
4906
5321
|
govLink: string;
|
|
@@ -4919,34 +5334,38 @@ export declare const jobsContractRouter: {
|
|
|
4919
5334
|
} | null | undefined;
|
|
4920
5335
|
user?: {
|
|
4921
5336
|
id: string;
|
|
5337
|
+
createdAt: string | Date;
|
|
5338
|
+
updatedAt: string | Date;
|
|
4922
5339
|
firstName: string;
|
|
4923
5340
|
lastName: string;
|
|
4924
5341
|
email: string;
|
|
5342
|
+
phone: string;
|
|
5343
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
5344
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4925
5345
|
} | null | undefined;
|
|
4926
5346
|
} | null | undefined;
|
|
4927
5347
|
}>>>;
|
|
4928
5348
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4929
5349
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4930
5350
|
}, "strip", z.ZodTypeAny, {
|
|
4931
|
-
|
|
4932
|
-
|
|
4933
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
5351
|
+
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
5352
|
+
id: string;
|
|
4934
5353
|
createdAt: string;
|
|
4935
5354
|
updatedAt: string;
|
|
4936
|
-
|
|
5355
|
+
description: string;
|
|
4937
5356
|
pay: {
|
|
4938
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
4939
5357
|
rate: number;
|
|
5358
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
4940
5359
|
receivedRate: number;
|
|
4941
5360
|
rateMax?: number | null | undefined;
|
|
4942
5361
|
};
|
|
4943
5362
|
tradeId: string;
|
|
5363
|
+
numberOfPositions: number;
|
|
4944
5364
|
jobQualifications: {
|
|
4945
5365
|
id: string;
|
|
4946
5366
|
qualificationId: string;
|
|
4947
5367
|
qualificationTypeId?: string | null | undefined;
|
|
4948
5368
|
}[];
|
|
4949
|
-
workHours?: number | null | undefined;
|
|
4950
5369
|
location?: {
|
|
4951
5370
|
address?: string | null | undefined;
|
|
4952
5371
|
postcode?: string | null | undefined;
|
|
@@ -4956,23 +5375,24 @@ export declare const jobsContractRouter: {
|
|
|
4956
5375
|
postTown?: string | null | undefined;
|
|
4957
5376
|
areaCovered?: string | null | undefined;
|
|
4958
5377
|
} | null | undefined;
|
|
5378
|
+
workHours?: number | null | undefined;
|
|
4959
5379
|
currentCollaboration?: {
|
|
4960
5380
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5381
|
+
id: string;
|
|
4961
5382
|
createdAt: string;
|
|
4962
5383
|
updatedAt: string;
|
|
4963
|
-
id: string;
|
|
4964
5384
|
userId: string;
|
|
4965
5385
|
company?: {
|
|
5386
|
+
id: string;
|
|
4966
5387
|
createdAt: string;
|
|
4967
5388
|
updatedAt: string;
|
|
4968
|
-
id: string;
|
|
4969
5389
|
name: string;
|
|
4970
5390
|
} | null | undefined;
|
|
4971
5391
|
client?: {
|
|
4972
|
-
status: "
|
|
5392
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5393
|
+
id: string;
|
|
4973
5394
|
createdAt: string;
|
|
4974
5395
|
updatedAt: string;
|
|
4975
|
-
id: string;
|
|
4976
5396
|
name: string;
|
|
4977
5397
|
crn: string | null;
|
|
4978
5398
|
govLink: string;
|
|
@@ -4991,27 +5411,32 @@ export declare const jobsContractRouter: {
|
|
|
4991
5411
|
} | null | undefined;
|
|
4992
5412
|
user?: {
|
|
4993
5413
|
id: string;
|
|
5414
|
+
createdAt: string;
|
|
5415
|
+
updatedAt: string;
|
|
4994
5416
|
firstName: string;
|
|
4995
5417
|
lastName: string;
|
|
4996
5418
|
email: string;
|
|
5419
|
+
phone: string;
|
|
5420
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
5421
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
4997
5422
|
} | null | undefined;
|
|
4998
5423
|
newCollaboration?: {
|
|
4999
5424
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5425
|
+
id: string;
|
|
5000
5426
|
createdAt: string;
|
|
5001
5427
|
updatedAt: string;
|
|
5002
|
-
id: string;
|
|
5003
5428
|
userId: string;
|
|
5004
5429
|
company?: {
|
|
5430
|
+
id: string;
|
|
5005
5431
|
createdAt: string;
|
|
5006
5432
|
updatedAt: string;
|
|
5007
|
-
id: string;
|
|
5008
5433
|
name: string;
|
|
5009
5434
|
} | null | undefined;
|
|
5010
5435
|
client?: {
|
|
5011
|
-
status: "
|
|
5436
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5437
|
+
id: string;
|
|
5012
5438
|
createdAt: string;
|
|
5013
5439
|
updatedAt: string;
|
|
5014
|
-
id: string;
|
|
5015
5440
|
name: string;
|
|
5016
5441
|
crn: string | null;
|
|
5017
5442
|
govLink: string;
|
|
@@ -5030,27 +5455,31 @@ export declare const jobsContractRouter: {
|
|
|
5030
5455
|
} | null | undefined;
|
|
5031
5456
|
user?: {
|
|
5032
5457
|
id: string;
|
|
5458
|
+
createdAt: string;
|
|
5459
|
+
updatedAt: string;
|
|
5033
5460
|
firstName: string;
|
|
5034
5461
|
lastName: string;
|
|
5035
5462
|
email: string;
|
|
5463
|
+
phone: string;
|
|
5464
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
5465
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
5036
5466
|
} | null | undefined;
|
|
5037
5467
|
} | null | undefined;
|
|
5038
5468
|
} | null | undefined;
|
|
5039
5469
|
}, {
|
|
5040
|
-
|
|
5041
|
-
|
|
5042
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
5470
|
+
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
5471
|
+
id: string;
|
|
5043
5472
|
createdAt: string | Date;
|
|
5044
5473
|
updatedAt: string | Date;
|
|
5045
|
-
|
|
5474
|
+
description: string;
|
|
5046
5475
|
pay: {
|
|
5047
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
5048
5476
|
rate: number;
|
|
5477
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
5049
5478
|
receivedRate: number;
|
|
5050
5479
|
rateMax?: number | null | undefined;
|
|
5051
5480
|
};
|
|
5052
5481
|
tradeId: string;
|
|
5053
|
-
|
|
5482
|
+
numberOfPositions: number;
|
|
5054
5483
|
location?: {
|
|
5055
5484
|
address?: string | null | undefined;
|
|
5056
5485
|
postcode?: string | null | undefined;
|
|
@@ -5060,6 +5489,7 @@ export declare const jobsContractRouter: {
|
|
|
5060
5489
|
postTown?: string | null | undefined;
|
|
5061
5490
|
areaCovered?: string | null | undefined;
|
|
5062
5491
|
} | null | undefined;
|
|
5492
|
+
workHours?: number | null | undefined;
|
|
5063
5493
|
jobQualifications?: {
|
|
5064
5494
|
id: string;
|
|
5065
5495
|
qualificationId: string;
|
|
@@ -5067,21 +5497,21 @@ export declare const jobsContractRouter: {
|
|
|
5067
5497
|
}[] | undefined;
|
|
5068
5498
|
currentCollaboration?: {
|
|
5069
5499
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5500
|
+
id: string;
|
|
5070
5501
|
createdAt: string | Date;
|
|
5071
5502
|
updatedAt: string | Date;
|
|
5072
|
-
id: string;
|
|
5073
5503
|
userId: string;
|
|
5074
5504
|
company?: {
|
|
5505
|
+
id: string;
|
|
5075
5506
|
createdAt: string | Date;
|
|
5076
5507
|
updatedAt: string | Date;
|
|
5077
|
-
id: string;
|
|
5078
5508
|
name: string;
|
|
5079
5509
|
} | null | undefined;
|
|
5080
5510
|
client?: {
|
|
5081
|
-
status: "
|
|
5511
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5512
|
+
id: string;
|
|
5082
5513
|
createdAt: string | Date;
|
|
5083
5514
|
updatedAt: string | Date;
|
|
5084
|
-
id: string;
|
|
5085
5515
|
name: string;
|
|
5086
5516
|
crn: string | null;
|
|
5087
5517
|
govLink: string;
|
|
@@ -5100,27 +5530,32 @@ export declare const jobsContractRouter: {
|
|
|
5100
5530
|
} | null | undefined;
|
|
5101
5531
|
user?: {
|
|
5102
5532
|
id: string;
|
|
5533
|
+
createdAt: string | Date;
|
|
5534
|
+
updatedAt: string | Date;
|
|
5103
5535
|
firstName: string;
|
|
5104
5536
|
lastName: string;
|
|
5105
5537
|
email: string;
|
|
5538
|
+
phone: string;
|
|
5539
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
5540
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
5106
5541
|
} | null | undefined;
|
|
5107
5542
|
newCollaboration?: {
|
|
5108
5543
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5544
|
+
id: string;
|
|
5109
5545
|
createdAt: string | Date;
|
|
5110
5546
|
updatedAt: string | Date;
|
|
5111
|
-
id: string;
|
|
5112
5547
|
userId: string;
|
|
5113
5548
|
company?: {
|
|
5549
|
+
id: string;
|
|
5114
5550
|
createdAt: string | Date;
|
|
5115
5551
|
updatedAt: string | Date;
|
|
5116
|
-
id: string;
|
|
5117
5552
|
name: string;
|
|
5118
5553
|
} | null | undefined;
|
|
5119
5554
|
client?: {
|
|
5120
|
-
status: "
|
|
5555
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5556
|
+
id: string;
|
|
5121
5557
|
createdAt: string | Date;
|
|
5122
5558
|
updatedAt: string | Date;
|
|
5123
|
-
id: string;
|
|
5124
5559
|
name: string;
|
|
5125
5560
|
crn: string | null;
|
|
5126
5561
|
govLink: string;
|
|
@@ -5139,9 +5574,14 @@ export declare const jobsContractRouter: {
|
|
|
5139
5574
|
} | null | undefined;
|
|
5140
5575
|
user?: {
|
|
5141
5576
|
id: string;
|
|
5577
|
+
createdAt: string | Date;
|
|
5578
|
+
updatedAt: string | Date;
|
|
5142
5579
|
firstName: string;
|
|
5143
5580
|
lastName: string;
|
|
5144
5581
|
email: string;
|
|
5582
|
+
phone: string;
|
|
5583
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
5584
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
5145
5585
|
} | null | undefined;
|
|
5146
5586
|
} | null | undefined;
|
|
5147
5587
|
} | null | undefined;
|
|
@@ -5209,8 +5649,8 @@ export declare const jobsContractRouter: {
|
|
|
5209
5649
|
rateMax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
5210
5650
|
receivedRate: z.ZodNumber;
|
|
5211
5651
|
}, "strip", z.ZodTypeAny, {
|
|
5212
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
5213
5652
|
rate: number;
|
|
5653
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
5214
5654
|
receivedRate: number;
|
|
5215
5655
|
rateMax?: number | null | undefined;
|
|
5216
5656
|
}, {
|
|
@@ -5239,21 +5679,21 @@ export declare const jobsContractRouter: {
|
|
|
5239
5679
|
}>, "many">>;
|
|
5240
5680
|
status: z.ZodOptional<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE"]>>;
|
|
5241
5681
|
}, "strip", z.ZodTypeAny, {
|
|
5682
|
+
status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | undefined;
|
|
5242
5683
|
description?: string | undefined;
|
|
5243
|
-
numberOfPositions?: number | undefined;
|
|
5244
|
-
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | undefined;
|
|
5245
|
-
workHours?: number | undefined;
|
|
5246
5684
|
pay?: {
|
|
5247
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
5248
5685
|
rate: number;
|
|
5686
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
5249
5687
|
receivedRate: number;
|
|
5250
5688
|
rateMax?: number | null | undefined;
|
|
5251
5689
|
} | undefined;
|
|
5690
|
+
tradeId?: string | undefined;
|
|
5252
5691
|
location?: {
|
|
5253
5692
|
address?: string | null | undefined;
|
|
5254
5693
|
postcode?: string | null | undefined;
|
|
5255
5694
|
} | undefined;
|
|
5256
|
-
|
|
5695
|
+
numberOfPositions?: number | undefined;
|
|
5696
|
+
workHours?: number | undefined;
|
|
5257
5697
|
jobQualifications?: {
|
|
5258
5698
|
qualificationId: string;
|
|
5259
5699
|
qualificationTypeId?: string | null | undefined;
|
|
@@ -5262,21 +5702,21 @@ export declare const jobsContractRouter: {
|
|
|
5262
5702
|
id: string;
|
|
5263
5703
|
} | undefined;
|
|
5264
5704
|
}, {
|
|
5705
|
+
status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | undefined;
|
|
5265
5706
|
description?: string | undefined;
|
|
5266
|
-
numberOfPositions?: number | undefined;
|
|
5267
|
-
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | undefined;
|
|
5268
|
-
workHours?: number | undefined;
|
|
5269
5707
|
pay?: {
|
|
5270
5708
|
rate: number;
|
|
5271
5709
|
receivedRate: number;
|
|
5272
5710
|
rateUnit?: "DAILY" | "HOURLY" | undefined;
|
|
5273
5711
|
rateMax?: number | null | undefined;
|
|
5274
5712
|
} | undefined;
|
|
5713
|
+
tradeId?: string | undefined;
|
|
5275
5714
|
location?: {
|
|
5276
5715
|
address?: string | null | undefined;
|
|
5277
5716
|
postcode?: string | null | undefined;
|
|
5278
5717
|
} | undefined;
|
|
5279
|
-
|
|
5718
|
+
numberOfPositions?: number | undefined;
|
|
5719
|
+
workHours?: number | undefined;
|
|
5280
5720
|
jobQualifications?: {
|
|
5281
5721
|
qualificationId: string;
|
|
5282
5722
|
qualificationTypeId?: string | null | undefined;
|
|
@@ -5399,13 +5839,13 @@ export declare const jobsContractRouter: {
|
|
|
5399
5839
|
rateMax: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
5400
5840
|
receivedRate: z.ZodNumber;
|
|
5401
5841
|
}, "strip", z.ZodTypeAny, {
|
|
5402
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
5403
5842
|
rate: number;
|
|
5843
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
5404
5844
|
receivedRate: number;
|
|
5405
5845
|
rateMax?: number | null | undefined;
|
|
5406
5846
|
}, {
|
|
5407
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
5408
5847
|
rate: number;
|
|
5848
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
5409
5849
|
receivedRate: number;
|
|
5410
5850
|
rateMax?: number | null | undefined;
|
|
5411
5851
|
}>;
|
|
@@ -5456,14 +5896,14 @@ export declare const jobsContractRouter: {
|
|
|
5456
5896
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5457
5897
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5458
5898
|
}, "strip", z.ZodTypeAny, {
|
|
5899
|
+
id: string;
|
|
5459
5900
|
createdAt: string;
|
|
5460
5901
|
updatedAt: string;
|
|
5461
|
-
id: string;
|
|
5462
5902
|
name: string;
|
|
5463
5903
|
}, {
|
|
5904
|
+
id: string;
|
|
5464
5905
|
createdAt: string | Date;
|
|
5465
5906
|
updatedAt: string | Date;
|
|
5466
|
-
id: string;
|
|
5467
5907
|
name: string;
|
|
5468
5908
|
}>>>;
|
|
5469
5909
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -5501,10 +5941,10 @@ export declare const jobsContractRouter: {
|
|
|
5501
5941
|
agentId: string;
|
|
5502
5942
|
}>>>;
|
|
5503
5943
|
}, "strip", z.ZodTypeAny, {
|
|
5504
|
-
status: "
|
|
5944
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5945
|
+
id: string;
|
|
5505
5946
|
createdAt: string;
|
|
5506
5947
|
updatedAt: string;
|
|
5507
|
-
id: string;
|
|
5508
5948
|
name: string;
|
|
5509
5949
|
crn: string | null;
|
|
5510
5950
|
govLink: string;
|
|
@@ -5521,10 +5961,10 @@ export declare const jobsContractRouter: {
|
|
|
5521
5961
|
agentId: string;
|
|
5522
5962
|
} | null | undefined;
|
|
5523
5963
|
}, {
|
|
5524
|
-
status: "
|
|
5964
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5965
|
+
id: string;
|
|
5525
5966
|
createdAt: string | Date;
|
|
5526
5967
|
updatedAt: string | Date;
|
|
5527
|
-
id: string;
|
|
5528
5968
|
name: string;
|
|
5529
5969
|
crn: string | null;
|
|
5530
5970
|
govLink: string;
|
|
@@ -5546,16 +5986,31 @@ export declare const jobsContractRouter: {
|
|
|
5546
5986
|
firstName: z.ZodString;
|
|
5547
5987
|
lastName: z.ZodString;
|
|
5548
5988
|
email: z.ZodString;
|
|
5989
|
+
phone: z.ZodEffects<z.ZodString, string, string>;
|
|
5990
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
5991
|
+
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
5992
|
+
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5993
|
+
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5549
5994
|
}, "strip", z.ZodTypeAny, {
|
|
5550
5995
|
id: string;
|
|
5996
|
+
createdAt: string;
|
|
5997
|
+
updatedAt: string;
|
|
5551
5998
|
firstName: string;
|
|
5552
5999
|
lastName: string;
|
|
5553
6000
|
email: string;
|
|
6001
|
+
phone: string;
|
|
6002
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
6003
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
5554
6004
|
}, {
|
|
5555
6005
|
id: string;
|
|
6006
|
+
createdAt: string | Date;
|
|
6007
|
+
updatedAt: string | Date;
|
|
5556
6008
|
firstName: string;
|
|
5557
6009
|
lastName: string;
|
|
5558
6010
|
email: string;
|
|
6011
|
+
phone: string;
|
|
6012
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
6013
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
5559
6014
|
}>>>;
|
|
5560
6015
|
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
5561
6016
|
userId: z.ZodString;
|
|
@@ -5570,14 +6025,14 @@ export declare const jobsContractRouter: {
|
|
|
5570
6025
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5571
6026
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5572
6027
|
}, "strip", z.ZodTypeAny, {
|
|
6028
|
+
id: string;
|
|
5573
6029
|
createdAt: string;
|
|
5574
6030
|
updatedAt: string;
|
|
5575
|
-
id: string;
|
|
5576
6031
|
name: string;
|
|
5577
6032
|
}, {
|
|
6033
|
+
id: string;
|
|
5578
6034
|
createdAt: string | Date;
|
|
5579
6035
|
updatedAt: string | Date;
|
|
5580
|
-
id: string;
|
|
5581
6036
|
name: string;
|
|
5582
6037
|
}>>>;
|
|
5583
6038
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -5615,10 +6070,10 @@ export declare const jobsContractRouter: {
|
|
|
5615
6070
|
agentId: string;
|
|
5616
6071
|
}>>>;
|
|
5617
6072
|
}, "strip", z.ZodTypeAny, {
|
|
5618
|
-
status: "
|
|
6073
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6074
|
+
id: string;
|
|
5619
6075
|
createdAt: string;
|
|
5620
6076
|
updatedAt: string;
|
|
5621
|
-
id: string;
|
|
5622
6077
|
name: string;
|
|
5623
6078
|
crn: string | null;
|
|
5624
6079
|
govLink: string;
|
|
@@ -5635,10 +6090,10 @@ export declare const jobsContractRouter: {
|
|
|
5635
6090
|
agentId: string;
|
|
5636
6091
|
} | null | undefined;
|
|
5637
6092
|
}, {
|
|
5638
|
-
status: "
|
|
6093
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6094
|
+
id: string;
|
|
5639
6095
|
createdAt: string | Date;
|
|
5640
6096
|
updatedAt: string | Date;
|
|
5641
|
-
id: string;
|
|
5642
6097
|
name: string;
|
|
5643
6098
|
crn: string | null;
|
|
5644
6099
|
govLink: string;
|
|
@@ -5660,16 +6115,31 @@ export declare const jobsContractRouter: {
|
|
|
5660
6115
|
firstName: z.ZodString;
|
|
5661
6116
|
lastName: z.ZodString;
|
|
5662
6117
|
email: z.ZodString;
|
|
6118
|
+
phone: z.ZodEffects<z.ZodString, string, string>;
|
|
6119
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
6120
|
+
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
6121
|
+
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
6122
|
+
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5663
6123
|
}, "strip", z.ZodTypeAny, {
|
|
5664
6124
|
id: string;
|
|
6125
|
+
createdAt: string;
|
|
6126
|
+
updatedAt: string;
|
|
5665
6127
|
firstName: string;
|
|
5666
6128
|
lastName: string;
|
|
5667
6129
|
email: string;
|
|
6130
|
+
phone: string;
|
|
6131
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
6132
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
5668
6133
|
}, {
|
|
5669
6134
|
id: string;
|
|
6135
|
+
createdAt: string | Date;
|
|
6136
|
+
updatedAt: string | Date;
|
|
5670
6137
|
firstName: string;
|
|
5671
6138
|
lastName: string;
|
|
5672
6139
|
email: string;
|
|
6140
|
+
phone: string;
|
|
6141
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
6142
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
5673
6143
|
}>>>;
|
|
5674
6144
|
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
5675
6145
|
userId: z.ZodString;
|
|
@@ -5677,21 +6147,21 @@ export declare const jobsContractRouter: {
|
|
|
5677
6147
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5678
6148
|
}, "strip", z.ZodTypeAny, {
|
|
5679
6149
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
6150
|
+
id: string;
|
|
5680
6151
|
createdAt: string;
|
|
5681
6152
|
updatedAt: string;
|
|
5682
|
-
id: string;
|
|
5683
6153
|
userId: string;
|
|
5684
6154
|
company?: {
|
|
6155
|
+
id: string;
|
|
5685
6156
|
createdAt: string;
|
|
5686
6157
|
updatedAt: string;
|
|
5687
|
-
id: string;
|
|
5688
6158
|
name: string;
|
|
5689
6159
|
} | null | undefined;
|
|
5690
6160
|
client?: {
|
|
5691
|
-
status: "
|
|
6161
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6162
|
+
id: string;
|
|
5692
6163
|
createdAt: string;
|
|
5693
6164
|
updatedAt: string;
|
|
5694
|
-
id: string;
|
|
5695
6165
|
name: string;
|
|
5696
6166
|
crn: string | null;
|
|
5697
6167
|
govLink: string;
|
|
@@ -5710,27 +6180,32 @@ export declare const jobsContractRouter: {
|
|
|
5710
6180
|
} | null | undefined;
|
|
5711
6181
|
user?: {
|
|
5712
6182
|
id: string;
|
|
6183
|
+
createdAt: string;
|
|
6184
|
+
updatedAt: string;
|
|
5713
6185
|
firstName: string;
|
|
5714
6186
|
lastName: string;
|
|
5715
6187
|
email: string;
|
|
6188
|
+
phone: string;
|
|
6189
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
6190
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
5716
6191
|
} | null | undefined;
|
|
5717
6192
|
}, {
|
|
5718
6193
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
6194
|
+
id: string;
|
|
5719
6195
|
createdAt: string | Date;
|
|
5720
6196
|
updatedAt: string | Date;
|
|
5721
|
-
id: string;
|
|
5722
6197
|
userId: string;
|
|
5723
6198
|
company?: {
|
|
6199
|
+
id: string;
|
|
5724
6200
|
createdAt: string | Date;
|
|
5725
6201
|
updatedAt: string | Date;
|
|
5726
|
-
id: string;
|
|
5727
6202
|
name: string;
|
|
5728
6203
|
} | null | undefined;
|
|
5729
6204
|
client?: {
|
|
5730
|
-
status: "
|
|
6205
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6206
|
+
id: string;
|
|
5731
6207
|
createdAt: string | Date;
|
|
5732
6208
|
updatedAt: string | Date;
|
|
5733
|
-
id: string;
|
|
5734
6209
|
name: string;
|
|
5735
6210
|
crn: string | null;
|
|
5736
6211
|
govLink: string;
|
|
@@ -5749,28 +6224,33 @@ export declare const jobsContractRouter: {
|
|
|
5749
6224
|
} | null | undefined;
|
|
5750
6225
|
user?: {
|
|
5751
6226
|
id: string;
|
|
6227
|
+
createdAt: string | Date;
|
|
6228
|
+
updatedAt: string | Date;
|
|
5752
6229
|
firstName: string;
|
|
5753
6230
|
lastName: string;
|
|
5754
6231
|
email: string;
|
|
6232
|
+
phone: string;
|
|
6233
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
6234
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
5755
6235
|
} | null | undefined;
|
|
5756
6236
|
}>>>;
|
|
5757
6237
|
}, "strip", z.ZodTypeAny, {
|
|
5758
6238
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
6239
|
+
id: string;
|
|
5759
6240
|
createdAt: string;
|
|
5760
6241
|
updatedAt: string;
|
|
5761
|
-
id: string;
|
|
5762
6242
|
userId: string;
|
|
5763
6243
|
company?: {
|
|
6244
|
+
id: string;
|
|
5764
6245
|
createdAt: string;
|
|
5765
6246
|
updatedAt: string;
|
|
5766
|
-
id: string;
|
|
5767
6247
|
name: string;
|
|
5768
6248
|
} | null | undefined;
|
|
5769
6249
|
client?: {
|
|
5770
|
-
status: "
|
|
6250
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6251
|
+
id: string;
|
|
5771
6252
|
createdAt: string;
|
|
5772
6253
|
updatedAt: string;
|
|
5773
|
-
id: string;
|
|
5774
6254
|
name: string;
|
|
5775
6255
|
crn: string | null;
|
|
5776
6256
|
govLink: string;
|
|
@@ -5789,27 +6269,32 @@ export declare const jobsContractRouter: {
|
|
|
5789
6269
|
} | null | undefined;
|
|
5790
6270
|
user?: {
|
|
5791
6271
|
id: string;
|
|
6272
|
+
createdAt: string;
|
|
6273
|
+
updatedAt: string;
|
|
5792
6274
|
firstName: string;
|
|
5793
6275
|
lastName: string;
|
|
5794
6276
|
email: string;
|
|
6277
|
+
phone: string;
|
|
6278
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
6279
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
5795
6280
|
} | null | undefined;
|
|
5796
6281
|
newCollaboration?: {
|
|
5797
6282
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
6283
|
+
id: string;
|
|
5798
6284
|
createdAt: string;
|
|
5799
6285
|
updatedAt: string;
|
|
5800
|
-
id: string;
|
|
5801
6286
|
userId: string;
|
|
5802
6287
|
company?: {
|
|
6288
|
+
id: string;
|
|
5803
6289
|
createdAt: string;
|
|
5804
6290
|
updatedAt: string;
|
|
5805
|
-
id: string;
|
|
5806
6291
|
name: string;
|
|
5807
6292
|
} | null | undefined;
|
|
5808
6293
|
client?: {
|
|
5809
|
-
status: "
|
|
6294
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6295
|
+
id: string;
|
|
5810
6296
|
createdAt: string;
|
|
5811
6297
|
updatedAt: string;
|
|
5812
|
-
id: string;
|
|
5813
6298
|
name: string;
|
|
5814
6299
|
crn: string | null;
|
|
5815
6300
|
govLink: string;
|
|
@@ -5828,28 +6313,33 @@ export declare const jobsContractRouter: {
|
|
|
5828
6313
|
} | null | undefined;
|
|
5829
6314
|
user?: {
|
|
5830
6315
|
id: string;
|
|
6316
|
+
createdAt: string;
|
|
6317
|
+
updatedAt: string;
|
|
5831
6318
|
firstName: string;
|
|
5832
6319
|
lastName: string;
|
|
5833
6320
|
email: string;
|
|
6321
|
+
phone: string;
|
|
6322
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
6323
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
5834
6324
|
} | null | undefined;
|
|
5835
6325
|
} | null | undefined;
|
|
5836
6326
|
}, {
|
|
5837
6327
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
6328
|
+
id: string;
|
|
5838
6329
|
createdAt: string | Date;
|
|
5839
6330
|
updatedAt: string | Date;
|
|
5840
|
-
id: string;
|
|
5841
6331
|
userId: string;
|
|
5842
6332
|
company?: {
|
|
6333
|
+
id: string;
|
|
5843
6334
|
createdAt: string | Date;
|
|
5844
6335
|
updatedAt: string | Date;
|
|
5845
|
-
id: string;
|
|
5846
6336
|
name: string;
|
|
5847
6337
|
} | null | undefined;
|
|
5848
6338
|
client?: {
|
|
5849
|
-
status: "
|
|
6339
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6340
|
+
id: string;
|
|
5850
6341
|
createdAt: string | Date;
|
|
5851
6342
|
updatedAt: string | Date;
|
|
5852
|
-
id: string;
|
|
5853
6343
|
name: string;
|
|
5854
6344
|
crn: string | null;
|
|
5855
6345
|
govLink: string;
|
|
@@ -5868,27 +6358,32 @@ export declare const jobsContractRouter: {
|
|
|
5868
6358
|
} | null | undefined;
|
|
5869
6359
|
user?: {
|
|
5870
6360
|
id: string;
|
|
6361
|
+
createdAt: string | Date;
|
|
6362
|
+
updatedAt: string | Date;
|
|
5871
6363
|
firstName: string;
|
|
5872
6364
|
lastName: string;
|
|
5873
6365
|
email: string;
|
|
6366
|
+
phone: string;
|
|
6367
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
6368
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
5874
6369
|
} | null | undefined;
|
|
5875
6370
|
newCollaboration?: {
|
|
5876
6371
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
6372
|
+
id: string;
|
|
5877
6373
|
createdAt: string | Date;
|
|
5878
6374
|
updatedAt: string | Date;
|
|
5879
|
-
id: string;
|
|
5880
6375
|
userId: string;
|
|
5881
6376
|
company?: {
|
|
6377
|
+
id: string;
|
|
5882
6378
|
createdAt: string | Date;
|
|
5883
6379
|
updatedAt: string | Date;
|
|
5884
|
-
id: string;
|
|
5885
6380
|
name: string;
|
|
5886
6381
|
} | null | undefined;
|
|
5887
6382
|
client?: {
|
|
5888
|
-
status: "
|
|
6383
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6384
|
+
id: string;
|
|
5889
6385
|
createdAt: string | Date;
|
|
5890
6386
|
updatedAt: string | Date;
|
|
5891
|
-
id: string;
|
|
5892
6387
|
name: string;
|
|
5893
6388
|
crn: string | null;
|
|
5894
6389
|
govLink: string;
|
|
@@ -5907,34 +6402,38 @@ export declare const jobsContractRouter: {
|
|
|
5907
6402
|
} | null | undefined;
|
|
5908
6403
|
user?: {
|
|
5909
6404
|
id: string;
|
|
6405
|
+
createdAt: string | Date;
|
|
6406
|
+
updatedAt: string | Date;
|
|
5910
6407
|
firstName: string;
|
|
5911
6408
|
lastName: string;
|
|
5912
6409
|
email: string;
|
|
6410
|
+
phone: string;
|
|
6411
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
6412
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
5913
6413
|
} | null | undefined;
|
|
5914
6414
|
} | null | undefined;
|
|
5915
6415
|
}>>>;
|
|
5916
6416
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5917
6417
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5918
6418
|
}, "strip", z.ZodTypeAny, {
|
|
5919
|
-
|
|
5920
|
-
|
|
5921
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
6419
|
+
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
6420
|
+
id: string;
|
|
5922
6421
|
createdAt: string;
|
|
5923
6422
|
updatedAt: string;
|
|
5924
|
-
|
|
6423
|
+
description: string;
|
|
5925
6424
|
pay: {
|
|
5926
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
5927
6425
|
rate: number;
|
|
6426
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
5928
6427
|
receivedRate: number;
|
|
5929
6428
|
rateMax?: number | null | undefined;
|
|
5930
6429
|
};
|
|
5931
6430
|
tradeId: string;
|
|
6431
|
+
numberOfPositions: number;
|
|
5932
6432
|
jobQualifications: {
|
|
5933
6433
|
id: string;
|
|
5934
6434
|
qualificationId: string;
|
|
5935
6435
|
qualificationTypeId?: string | null | undefined;
|
|
5936
6436
|
}[];
|
|
5937
|
-
workHours?: number | null | undefined;
|
|
5938
6437
|
location?: {
|
|
5939
6438
|
address?: string | null | undefined;
|
|
5940
6439
|
postcode?: string | null | undefined;
|
|
@@ -5944,23 +6443,24 @@ export declare const jobsContractRouter: {
|
|
|
5944
6443
|
postTown?: string | null | undefined;
|
|
5945
6444
|
areaCovered?: string | null | undefined;
|
|
5946
6445
|
} | null | undefined;
|
|
6446
|
+
workHours?: number | null | undefined;
|
|
5947
6447
|
currentCollaboration?: {
|
|
5948
6448
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
6449
|
+
id: string;
|
|
5949
6450
|
createdAt: string;
|
|
5950
6451
|
updatedAt: string;
|
|
5951
|
-
id: string;
|
|
5952
6452
|
userId: string;
|
|
5953
6453
|
company?: {
|
|
6454
|
+
id: string;
|
|
5954
6455
|
createdAt: string;
|
|
5955
6456
|
updatedAt: string;
|
|
5956
|
-
id: string;
|
|
5957
6457
|
name: string;
|
|
5958
6458
|
} | null | undefined;
|
|
5959
6459
|
client?: {
|
|
5960
|
-
status: "
|
|
6460
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6461
|
+
id: string;
|
|
5961
6462
|
createdAt: string;
|
|
5962
6463
|
updatedAt: string;
|
|
5963
|
-
id: string;
|
|
5964
6464
|
name: string;
|
|
5965
6465
|
crn: string | null;
|
|
5966
6466
|
govLink: string;
|
|
@@ -5979,27 +6479,32 @@ export declare const jobsContractRouter: {
|
|
|
5979
6479
|
} | null | undefined;
|
|
5980
6480
|
user?: {
|
|
5981
6481
|
id: string;
|
|
6482
|
+
createdAt: string;
|
|
6483
|
+
updatedAt: string;
|
|
5982
6484
|
firstName: string;
|
|
5983
6485
|
lastName: string;
|
|
5984
6486
|
email: string;
|
|
6487
|
+
phone: string;
|
|
6488
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
6489
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
5985
6490
|
} | null | undefined;
|
|
5986
6491
|
newCollaboration?: {
|
|
5987
6492
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
6493
|
+
id: string;
|
|
5988
6494
|
createdAt: string;
|
|
5989
6495
|
updatedAt: string;
|
|
5990
|
-
id: string;
|
|
5991
6496
|
userId: string;
|
|
5992
6497
|
company?: {
|
|
6498
|
+
id: string;
|
|
5993
6499
|
createdAt: string;
|
|
5994
6500
|
updatedAt: string;
|
|
5995
|
-
id: string;
|
|
5996
6501
|
name: string;
|
|
5997
6502
|
} | null | undefined;
|
|
5998
6503
|
client?: {
|
|
5999
|
-
status: "
|
|
6504
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6505
|
+
id: string;
|
|
6000
6506
|
createdAt: string;
|
|
6001
6507
|
updatedAt: string;
|
|
6002
|
-
id: string;
|
|
6003
6508
|
name: string;
|
|
6004
6509
|
crn: string | null;
|
|
6005
6510
|
govLink: string;
|
|
@@ -6018,27 +6523,31 @@ export declare const jobsContractRouter: {
|
|
|
6018
6523
|
} | null | undefined;
|
|
6019
6524
|
user?: {
|
|
6020
6525
|
id: string;
|
|
6526
|
+
createdAt: string;
|
|
6527
|
+
updatedAt: string;
|
|
6021
6528
|
firstName: string;
|
|
6022
6529
|
lastName: string;
|
|
6023
6530
|
email: string;
|
|
6531
|
+
phone: string;
|
|
6532
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
6533
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
6024
6534
|
} | null | undefined;
|
|
6025
6535
|
} | null | undefined;
|
|
6026
6536
|
} | null | undefined;
|
|
6027
6537
|
}, {
|
|
6028
|
-
|
|
6029
|
-
|
|
6030
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
6538
|
+
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
6539
|
+
id: string;
|
|
6031
6540
|
createdAt: string | Date;
|
|
6032
6541
|
updatedAt: string | Date;
|
|
6033
|
-
|
|
6542
|
+
description: string;
|
|
6034
6543
|
pay: {
|
|
6035
|
-
rateUnit: "DAILY" | "HOURLY";
|
|
6036
6544
|
rate: number;
|
|
6545
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
6037
6546
|
receivedRate: number;
|
|
6038
6547
|
rateMax?: number | null | undefined;
|
|
6039
6548
|
};
|
|
6040
6549
|
tradeId: string;
|
|
6041
|
-
|
|
6550
|
+
numberOfPositions: number;
|
|
6042
6551
|
location?: {
|
|
6043
6552
|
address?: string | null | undefined;
|
|
6044
6553
|
postcode?: string | null | undefined;
|
|
@@ -6048,6 +6557,7 @@ export declare const jobsContractRouter: {
|
|
|
6048
6557
|
postTown?: string | null | undefined;
|
|
6049
6558
|
areaCovered?: string | null | undefined;
|
|
6050
6559
|
} | null | undefined;
|
|
6560
|
+
workHours?: number | null | undefined;
|
|
6051
6561
|
jobQualifications?: {
|
|
6052
6562
|
id: string;
|
|
6053
6563
|
qualificationId: string;
|
|
@@ -6055,21 +6565,21 @@ export declare const jobsContractRouter: {
|
|
|
6055
6565
|
}[] | undefined;
|
|
6056
6566
|
currentCollaboration?: {
|
|
6057
6567
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
6568
|
+
id: string;
|
|
6058
6569
|
createdAt: string | Date;
|
|
6059
6570
|
updatedAt: string | Date;
|
|
6060
|
-
id: string;
|
|
6061
6571
|
userId: string;
|
|
6062
6572
|
company?: {
|
|
6573
|
+
id: string;
|
|
6063
6574
|
createdAt: string | Date;
|
|
6064
6575
|
updatedAt: string | Date;
|
|
6065
|
-
id: string;
|
|
6066
6576
|
name: string;
|
|
6067
6577
|
} | null | undefined;
|
|
6068
6578
|
client?: {
|
|
6069
|
-
status: "
|
|
6579
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6580
|
+
id: string;
|
|
6070
6581
|
createdAt: string | Date;
|
|
6071
6582
|
updatedAt: string | Date;
|
|
6072
|
-
id: string;
|
|
6073
6583
|
name: string;
|
|
6074
6584
|
crn: string | null;
|
|
6075
6585
|
govLink: string;
|
|
@@ -6088,27 +6598,32 @@ export declare const jobsContractRouter: {
|
|
|
6088
6598
|
} | null | undefined;
|
|
6089
6599
|
user?: {
|
|
6090
6600
|
id: string;
|
|
6601
|
+
createdAt: string | Date;
|
|
6602
|
+
updatedAt: string | Date;
|
|
6091
6603
|
firstName: string;
|
|
6092
6604
|
lastName: string;
|
|
6093
6605
|
email: string;
|
|
6606
|
+
phone: string;
|
|
6607
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
6608
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
6094
6609
|
} | null | undefined;
|
|
6095
6610
|
newCollaboration?: {
|
|
6096
6611
|
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
6612
|
+
id: string;
|
|
6097
6613
|
createdAt: string | Date;
|
|
6098
6614
|
updatedAt: string | Date;
|
|
6099
|
-
id: string;
|
|
6100
6615
|
userId: string;
|
|
6101
6616
|
company?: {
|
|
6617
|
+
id: string;
|
|
6102
6618
|
createdAt: string | Date;
|
|
6103
6619
|
updatedAt: string | Date;
|
|
6104
|
-
id: string;
|
|
6105
6620
|
name: string;
|
|
6106
6621
|
} | null | undefined;
|
|
6107
6622
|
client?: {
|
|
6108
|
-
status: "
|
|
6623
|
+
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6624
|
+
id: string;
|
|
6109
6625
|
createdAt: string | Date;
|
|
6110
6626
|
updatedAt: string | Date;
|
|
6111
|
-
id: string;
|
|
6112
6627
|
name: string;
|
|
6113
6628
|
crn: string | null;
|
|
6114
6629
|
govLink: string;
|
|
@@ -6127,9 +6642,14 @@ export declare const jobsContractRouter: {
|
|
|
6127
6642
|
} | null | undefined;
|
|
6128
6643
|
user?: {
|
|
6129
6644
|
id: string;
|
|
6645
|
+
createdAt: string | Date;
|
|
6646
|
+
updatedAt: string | Date;
|
|
6130
6647
|
firstName: string;
|
|
6131
6648
|
lastName: string;
|
|
6132
6649
|
email: string;
|
|
6650
|
+
phone: string;
|
|
6651
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
6652
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
6133
6653
|
} | null | undefined;
|
|
6134
6654
|
} | null | undefined;
|
|
6135
6655
|
} | null | undefined;
|