@dakkitor/api-contracts 1.1.79 → 1.1.80
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/abilities/first-agent.abilities.json +2 -0
- package/dist/actives/actives.contract.d.ts +2517 -2227
- package/dist/actives/actives.contract.d.ts.map +1 -1
- package/dist/agent-client-links/agent-client-links.contract.d.ts +34 -34
- package/dist/bookings/bookings.contract.d.ts +2216 -1951
- package/dist/bookings/bookings.contract.d.ts.map +1 -1
- package/dist/call-history/call-history.contract.d.ts +74 -74
- package/dist/client-contacts/client-contacts.contract.d.ts +32 -32
- package/dist/clients/clients.contract.d.ts +18 -18
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +600 -600
- package/dist/collaborations/collaborations.contract.d.ts +766 -491
- package/dist/collaborations/collaborations.contract.d.ts.map +1 -1
- package/dist/collaborations/collaborations.contract.js +10 -5
- package/dist/common/common-schemas.d.ts +69 -2
- package/dist/common/common-schemas.d.ts.map +1 -1
- package/dist/common/common-schemas.js +72 -1
- package/dist/companies/companies.contract.d.ts +2 -2
- package/dist/cron-executions/cron-executions.contract.d.ts +26 -26
- package/dist/curated-workers/curated-workers.contract.d.ts +312 -285
- package/dist/curated-workers/curated-workers.contract.d.ts.map +1 -1
- package/dist/curated-workers/curated-workers.contract.js +7 -20
- package/dist/jobs/jobs.contract.d.ts +687 -687
- package/dist/lead-assignments/lead-assignments.contract.d.ts +74 -74
- package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +16 -16
- package/dist/leads/leads.contract.d.ts +48 -48
- package/dist/locations/locations.contract.d.ts +12 -12
- package/dist/users/users.contract.d.ts +12 -18
- package/dist/users/users.contract.d.ts.map +1 -1
- package/dist/users/users.contract.js +3 -12
- package/dist/workers/workers.contract.d.ts +351 -181
- package/dist/workers/workers.contract.d.ts.map +1 -1
- package/dist/workers/workers.contract.js +27 -42
- 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
|
-
rate: number;
|
|
22
21
|
rateUnit: "DAILY" | "HOURLY";
|
|
22
|
+
rate: number;
|
|
23
23
|
receivedRate: number;
|
|
24
24
|
rateMax?: number | null | undefined;
|
|
25
25
|
}, {
|
|
26
|
-
rate: number;
|
|
27
26
|
rateUnit: "DAILY" | "HOURLY";
|
|
27
|
+
rate: number;
|
|
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
|
-
rate: number;
|
|
38
37
|
rateUnit: "DAILY" | "HOURLY";
|
|
38
|
+
rate: number;
|
|
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
|
-
rate: number;
|
|
93
92
|
rateUnit: "DAILY" | "HOURLY";
|
|
93
|
+
rate: number;
|
|
94
94
|
receivedRate: number;
|
|
95
95
|
rateMax?: number | null | undefined;
|
|
96
96
|
}, {
|
|
97
|
-
rate: number;
|
|
98
97
|
rateUnit: "DAILY" | "HOURLY";
|
|
98
|
+
rate: number;
|
|
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;
|
|
150
149
|
createdAt: string;
|
|
151
150
|
updatedAt: string;
|
|
151
|
+
id: string;
|
|
152
152
|
name: string;
|
|
153
153
|
}, {
|
|
154
|
-
id: string;
|
|
155
154
|
createdAt: string | Date;
|
|
156
155
|
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: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
195
|
-
id: string;
|
|
196
194
|
createdAt: string;
|
|
197
195
|
updatedAt: string;
|
|
196
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
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: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
215
|
-
id: string;
|
|
216
214
|
createdAt: string | Date;
|
|
217
215
|
updatedAt: string | Date;
|
|
216
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
217
|
+
id: string;
|
|
218
218
|
name: string;
|
|
219
219
|
crn: string | null;
|
|
220
220
|
govLink: string;
|
|
@@ -236,15 +236,15 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
236
236
|
firstName: z.ZodString;
|
|
237
237
|
lastName: z.ZodString;
|
|
238
238
|
email: z.ZodString;
|
|
239
|
-
phone: z.
|
|
239
|
+
phone: z.ZodString;
|
|
240
240
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
241
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
242
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
243
243
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
244
244
|
}, "strip", z.ZodTypeAny, {
|
|
245
|
-
id: string;
|
|
246
245
|
createdAt: string;
|
|
247
246
|
updatedAt: string;
|
|
247
|
+
id: string;
|
|
248
248
|
firstName: string;
|
|
249
249
|
lastName: string;
|
|
250
250
|
email: string;
|
|
@@ -252,9 +252,9 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
252
252
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
253
253
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
254
254
|
}, {
|
|
255
|
-
id: string;
|
|
256
255
|
createdAt: string | Date;
|
|
257
256
|
updatedAt: string | Date;
|
|
257
|
+
id: string;
|
|
258
258
|
firstName: string;
|
|
259
259
|
lastName: string;
|
|
260
260
|
email: string;
|
|
@@ -262,7 +262,7 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
262
262
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
263
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;
|
|
264
264
|
}>>>;
|
|
265
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
265
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
266
266
|
userId: z.ZodString;
|
|
267
267
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
268
268
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -275,14 +275,14 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
275
275
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
276
276
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
277
277
|
}, "strip", z.ZodTypeAny, {
|
|
278
|
-
id: string;
|
|
279
278
|
createdAt: string;
|
|
280
279
|
updatedAt: string;
|
|
280
|
+
id: string;
|
|
281
281
|
name: string;
|
|
282
282
|
}, {
|
|
283
|
-
id: string;
|
|
284
283
|
createdAt: string | Date;
|
|
285
284
|
updatedAt: string | Date;
|
|
285
|
+
id: string;
|
|
286
286
|
name: string;
|
|
287
287
|
}>>>;
|
|
288
288
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -320,10 +320,10 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
320
320
|
agentId: string;
|
|
321
321
|
}>>>;
|
|
322
322
|
}, "strip", z.ZodTypeAny, {
|
|
323
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
324
|
-
id: string;
|
|
325
323
|
createdAt: string;
|
|
326
324
|
updatedAt: string;
|
|
325
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
326
|
+
id: string;
|
|
327
327
|
name: string;
|
|
328
328
|
crn: string | null;
|
|
329
329
|
govLink: string;
|
|
@@ -340,10 +340,10 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
340
340
|
agentId: string;
|
|
341
341
|
} | null | undefined;
|
|
342
342
|
}, {
|
|
343
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
344
|
-
id: string;
|
|
345
343
|
createdAt: string | Date;
|
|
346
344
|
updatedAt: string | Date;
|
|
345
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
346
|
+
id: string;
|
|
347
347
|
name: string;
|
|
348
348
|
crn: string | null;
|
|
349
349
|
govLink: string;
|
|
@@ -365,15 +365,15 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
365
365
|
firstName: z.ZodString;
|
|
366
366
|
lastName: z.ZodString;
|
|
367
367
|
email: z.ZodString;
|
|
368
|
-
phone: z.
|
|
368
|
+
phone: z.ZodString;
|
|
369
369
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
370
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
371
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
372
372
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
373
373
|
}, "strip", z.ZodTypeAny, {
|
|
374
|
-
id: string;
|
|
375
374
|
createdAt: string;
|
|
376
375
|
updatedAt: string;
|
|
376
|
+
id: string;
|
|
377
377
|
firstName: string;
|
|
378
378
|
lastName: string;
|
|
379
379
|
email: string;
|
|
@@ -381,9 +381,9 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
381
381
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
382
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;
|
|
383
383
|
}, {
|
|
384
|
-
id: string;
|
|
385
384
|
createdAt: string | Date;
|
|
386
385
|
updatedAt: string | Date;
|
|
386
|
+
id: string;
|
|
387
387
|
firstName: string;
|
|
388
388
|
lastName: string;
|
|
389
389
|
email: string;
|
|
@@ -391,27 +391,27 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
391
391
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
392
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;
|
|
393
393
|
}>>>;
|
|
394
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
394
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
395
395
|
userId: z.ZodString;
|
|
396
396
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
397
397
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
398
398
|
}, "strip", z.ZodTypeAny, {
|
|
399
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
400
|
-
id: string;
|
|
401
399
|
createdAt: string;
|
|
402
400
|
updatedAt: string;
|
|
401
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
402
|
+
id: string;
|
|
403
403
|
userId: string;
|
|
404
404
|
company?: {
|
|
405
|
-
id: string;
|
|
406
405
|
createdAt: string;
|
|
407
406
|
updatedAt: string;
|
|
407
|
+
id: string;
|
|
408
408
|
name: string;
|
|
409
409
|
} | null | undefined;
|
|
410
410
|
client?: {
|
|
411
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
412
|
-
id: string;
|
|
413
411
|
createdAt: string;
|
|
414
412
|
updatedAt: string;
|
|
413
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
414
|
+
id: string;
|
|
415
415
|
name: string;
|
|
416
416
|
crn: string | null;
|
|
417
417
|
govLink: string;
|
|
@@ -429,9 +429,9 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
429
429
|
} | null | undefined;
|
|
430
430
|
} | null | undefined;
|
|
431
431
|
user?: {
|
|
432
|
-
id: string;
|
|
433
432
|
createdAt: string;
|
|
434
433
|
updatedAt: string;
|
|
434
|
+
id: string;
|
|
435
435
|
firstName: string;
|
|
436
436
|
lastName: string;
|
|
437
437
|
email: string;
|
|
@@ -440,22 +440,22 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
440
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;
|
|
441
441
|
} | null | undefined;
|
|
442
442
|
}, {
|
|
443
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
444
|
-
id: string;
|
|
445
443
|
createdAt: string | Date;
|
|
446
444
|
updatedAt: string | Date;
|
|
445
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
446
|
+
id: string;
|
|
447
447
|
userId: string;
|
|
448
448
|
company?: {
|
|
449
|
-
id: string;
|
|
450
449
|
createdAt: string | Date;
|
|
451
450
|
updatedAt: string | Date;
|
|
451
|
+
id: string;
|
|
452
452
|
name: string;
|
|
453
453
|
} | null | undefined;
|
|
454
454
|
client?: {
|
|
455
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
456
|
-
id: string;
|
|
457
455
|
createdAt: string | Date;
|
|
458
456
|
updatedAt: string | Date;
|
|
457
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
458
|
+
id: string;
|
|
459
459
|
name: string;
|
|
460
460
|
crn: string | null;
|
|
461
461
|
govLink: string;
|
|
@@ -473,9 +473,9 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
473
473
|
} | null | undefined;
|
|
474
474
|
} | null | undefined;
|
|
475
475
|
user?: {
|
|
476
|
-
id: string;
|
|
477
476
|
createdAt: string | Date;
|
|
478
477
|
updatedAt: string | Date;
|
|
478
|
+
id: string;
|
|
479
479
|
firstName: string;
|
|
480
480
|
lastName: string;
|
|
481
481
|
email: string;
|
|
@@ -485,22 +485,22 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
485
485
|
} | null | undefined;
|
|
486
486
|
}>>>;
|
|
487
487
|
}, "strip", z.ZodTypeAny, {
|
|
488
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
489
|
-
id: string;
|
|
490
488
|
createdAt: string;
|
|
491
489
|
updatedAt: string;
|
|
490
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
491
|
+
id: string;
|
|
492
492
|
userId: string;
|
|
493
493
|
company?: {
|
|
494
|
-
id: string;
|
|
495
494
|
createdAt: string;
|
|
496
495
|
updatedAt: string;
|
|
496
|
+
id: string;
|
|
497
497
|
name: string;
|
|
498
498
|
} | null | undefined;
|
|
499
499
|
client?: {
|
|
500
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
501
|
-
id: string;
|
|
502
500
|
createdAt: string;
|
|
503
501
|
updatedAt: string;
|
|
502
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
503
|
+
id: string;
|
|
504
504
|
name: string;
|
|
505
505
|
crn: string | null;
|
|
506
506
|
govLink: string;
|
|
@@ -518,9 +518,9 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
518
518
|
} | null | undefined;
|
|
519
519
|
} | null | undefined;
|
|
520
520
|
user?: {
|
|
521
|
-
id: string;
|
|
522
521
|
createdAt: string;
|
|
523
522
|
updatedAt: string;
|
|
523
|
+
id: string;
|
|
524
524
|
firstName: string;
|
|
525
525
|
lastName: string;
|
|
526
526
|
email: string;
|
|
@@ -529,22 +529,22 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
529
529
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
530
530
|
} | null | undefined;
|
|
531
531
|
newCollaboration?: {
|
|
532
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
533
|
-
id: string;
|
|
534
532
|
createdAt: string;
|
|
535
533
|
updatedAt: string;
|
|
534
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
535
|
+
id: string;
|
|
536
536
|
userId: string;
|
|
537
537
|
company?: {
|
|
538
|
-
id: string;
|
|
539
538
|
createdAt: string;
|
|
540
539
|
updatedAt: string;
|
|
540
|
+
id: string;
|
|
541
541
|
name: string;
|
|
542
542
|
} | null | undefined;
|
|
543
543
|
client?: {
|
|
544
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
545
|
-
id: string;
|
|
546
544
|
createdAt: string;
|
|
547
545
|
updatedAt: string;
|
|
546
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
547
|
+
id: string;
|
|
548
548
|
name: string;
|
|
549
549
|
crn: string | null;
|
|
550
550
|
govLink: string;
|
|
@@ -562,9 +562,9 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
562
562
|
} | null | undefined;
|
|
563
563
|
} | null | undefined;
|
|
564
564
|
user?: {
|
|
565
|
-
id: string;
|
|
566
565
|
createdAt: string;
|
|
567
566
|
updatedAt: string;
|
|
567
|
+
id: string;
|
|
568
568
|
firstName: string;
|
|
569
569
|
lastName: string;
|
|
570
570
|
email: string;
|
|
@@ -574,22 +574,22 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
574
574
|
} | null | undefined;
|
|
575
575
|
} | null | undefined;
|
|
576
576
|
}, {
|
|
577
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
578
|
-
id: string;
|
|
579
577
|
createdAt: string | Date;
|
|
580
578
|
updatedAt: string | Date;
|
|
579
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
580
|
+
id: string;
|
|
581
581
|
userId: string;
|
|
582
582
|
company?: {
|
|
583
|
-
id: string;
|
|
584
583
|
createdAt: string | Date;
|
|
585
584
|
updatedAt: string | Date;
|
|
585
|
+
id: string;
|
|
586
586
|
name: string;
|
|
587
587
|
} | null | undefined;
|
|
588
588
|
client?: {
|
|
589
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
590
|
-
id: string;
|
|
591
589
|
createdAt: string | Date;
|
|
592
590
|
updatedAt: string | Date;
|
|
591
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
592
|
+
id: string;
|
|
593
593
|
name: string;
|
|
594
594
|
crn: string | null;
|
|
595
595
|
govLink: string;
|
|
@@ -607,9 +607,9 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
607
607
|
} | null | undefined;
|
|
608
608
|
} | null | undefined;
|
|
609
609
|
user?: {
|
|
610
|
-
id: string;
|
|
611
610
|
createdAt: string | Date;
|
|
612
611
|
updatedAt: string | Date;
|
|
612
|
+
id: string;
|
|
613
613
|
firstName: string;
|
|
614
614
|
lastName: string;
|
|
615
615
|
email: string;
|
|
@@ -618,22 +618,22 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
618
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;
|
|
619
619
|
} | null | undefined;
|
|
620
620
|
newCollaboration?: {
|
|
621
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
622
|
-
id: string;
|
|
623
621
|
createdAt: string | Date;
|
|
624
622
|
updatedAt: string | Date;
|
|
623
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
624
|
+
id: string;
|
|
625
625
|
userId: string;
|
|
626
626
|
company?: {
|
|
627
|
-
id: string;
|
|
628
627
|
createdAt: string | Date;
|
|
629
628
|
updatedAt: string | Date;
|
|
629
|
+
id: string;
|
|
630
630
|
name: string;
|
|
631
631
|
} | null | undefined;
|
|
632
632
|
client?: {
|
|
633
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
634
|
-
id: string;
|
|
635
633
|
createdAt: string | Date;
|
|
636
634
|
updatedAt: string | Date;
|
|
635
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
636
|
+
id: string;
|
|
637
637
|
name: string;
|
|
638
638
|
crn: string | null;
|
|
639
639
|
govLink: string;
|
|
@@ -651,9 +651,9 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
651
651
|
} | null | undefined;
|
|
652
652
|
} | null | undefined;
|
|
653
653
|
user?: {
|
|
654
|
-
id: string;
|
|
655
654
|
createdAt: string | Date;
|
|
656
655
|
updatedAt: string | Date;
|
|
656
|
+
id: string;
|
|
657
657
|
firstName: string;
|
|
658
658
|
lastName: string;
|
|
659
659
|
email: string;
|
|
@@ -666,24 +666,25 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
666
666
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
667
667
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
668
668
|
}, "strip", z.ZodTypeAny, {
|
|
669
|
-
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
670
|
-
id: string;
|
|
671
669
|
createdAt: string;
|
|
672
670
|
updatedAt: string;
|
|
671
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
672
|
+
id: string;
|
|
673
673
|
description: string;
|
|
674
|
+
numberOfPositions: number;
|
|
674
675
|
pay: {
|
|
675
|
-
rate: number;
|
|
676
676
|
rateUnit: "DAILY" | "HOURLY";
|
|
677
|
+
rate: number;
|
|
677
678
|
receivedRate: number;
|
|
678
679
|
rateMax?: number | null | undefined;
|
|
679
680
|
};
|
|
680
681
|
tradeId: string;
|
|
681
|
-
numberOfPositions: number;
|
|
682
682
|
jobQualifications: {
|
|
683
683
|
id: string;
|
|
684
684
|
qualificationId: string;
|
|
685
685
|
qualificationTypeId?: string | null | undefined;
|
|
686
686
|
}[];
|
|
687
|
+
workHours?: number | null | undefined;
|
|
687
688
|
location?: {
|
|
688
689
|
address?: string | null | undefined;
|
|
689
690
|
postcode?: string | null | undefined;
|
|
@@ -693,24 +694,23 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
693
694
|
postTown?: string | null | undefined;
|
|
694
695
|
areaCovered?: string | null | undefined;
|
|
695
696
|
} | null | undefined;
|
|
696
|
-
workHours?: number | null | undefined;
|
|
697
697
|
currentCollaboration?: {
|
|
698
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
699
|
-
id: string;
|
|
700
698
|
createdAt: string;
|
|
701
699
|
updatedAt: string;
|
|
700
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
701
|
+
id: string;
|
|
702
702
|
userId: string;
|
|
703
703
|
company?: {
|
|
704
|
-
id: string;
|
|
705
704
|
createdAt: string;
|
|
706
705
|
updatedAt: string;
|
|
706
|
+
id: string;
|
|
707
707
|
name: string;
|
|
708
708
|
} | null | undefined;
|
|
709
709
|
client?: {
|
|
710
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
711
|
-
id: string;
|
|
712
710
|
createdAt: string;
|
|
713
711
|
updatedAt: string;
|
|
712
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
713
|
+
id: string;
|
|
714
714
|
name: string;
|
|
715
715
|
crn: string | null;
|
|
716
716
|
govLink: string;
|
|
@@ -728,9 +728,9 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
728
728
|
} | null | undefined;
|
|
729
729
|
} | null | undefined;
|
|
730
730
|
user?: {
|
|
731
|
-
id: string;
|
|
732
731
|
createdAt: string;
|
|
733
732
|
updatedAt: string;
|
|
733
|
+
id: string;
|
|
734
734
|
firstName: string;
|
|
735
735
|
lastName: string;
|
|
736
736
|
email: string;
|
|
@@ -739,22 +739,22 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
739
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;
|
|
740
740
|
} | null | undefined;
|
|
741
741
|
newCollaboration?: {
|
|
742
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
743
|
-
id: string;
|
|
744
742
|
createdAt: string;
|
|
745
743
|
updatedAt: string;
|
|
744
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
745
|
+
id: string;
|
|
746
746
|
userId: string;
|
|
747
747
|
company?: {
|
|
748
|
-
id: string;
|
|
749
748
|
createdAt: string;
|
|
750
749
|
updatedAt: string;
|
|
750
|
+
id: string;
|
|
751
751
|
name: string;
|
|
752
752
|
} | null | undefined;
|
|
753
753
|
client?: {
|
|
754
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
755
|
-
id: string;
|
|
756
754
|
createdAt: string;
|
|
757
755
|
updatedAt: string;
|
|
756
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
757
|
+
id: string;
|
|
758
758
|
name: string;
|
|
759
759
|
crn: string | null;
|
|
760
760
|
govLink: string;
|
|
@@ -772,9 +772,9 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
772
772
|
} | null | undefined;
|
|
773
773
|
} | null | undefined;
|
|
774
774
|
user?: {
|
|
775
|
-
id: string;
|
|
776
775
|
createdAt: string;
|
|
777
776
|
updatedAt: string;
|
|
777
|
+
id: string;
|
|
778
778
|
firstName: string;
|
|
779
779
|
lastName: string;
|
|
780
780
|
email: string;
|
|
@@ -785,19 +785,20 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
785
785
|
} | null | undefined;
|
|
786
786
|
} | null | undefined;
|
|
787
787
|
}, {
|
|
788
|
-
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
789
|
-
id: string;
|
|
790
788
|
createdAt: string | Date;
|
|
791
789
|
updatedAt: string | Date;
|
|
790
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
791
|
+
id: string;
|
|
792
792
|
description: string;
|
|
793
|
+
numberOfPositions: number;
|
|
793
794
|
pay: {
|
|
794
|
-
rate: number;
|
|
795
795
|
rateUnit: "DAILY" | "HOURLY";
|
|
796
|
+
rate: number;
|
|
796
797
|
receivedRate: number;
|
|
797
798
|
rateMax?: number | null | undefined;
|
|
798
799
|
};
|
|
799
800
|
tradeId: string;
|
|
800
|
-
|
|
801
|
+
workHours?: number | null | undefined;
|
|
801
802
|
location?: {
|
|
802
803
|
address?: string | null | undefined;
|
|
803
804
|
postcode?: string | null | undefined;
|
|
@@ -807,29 +808,28 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
807
808
|
postTown?: string | null | undefined;
|
|
808
809
|
areaCovered?: string | null | undefined;
|
|
809
810
|
} | null | undefined;
|
|
810
|
-
workHours?: number | null | undefined;
|
|
811
811
|
jobQualifications?: {
|
|
812
812
|
id: string;
|
|
813
813
|
qualificationId: string;
|
|
814
814
|
qualificationTypeId?: string | null | undefined;
|
|
815
815
|
}[] | undefined;
|
|
816
816
|
currentCollaboration?: {
|
|
817
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
818
|
-
id: string;
|
|
819
817
|
createdAt: string | Date;
|
|
820
818
|
updatedAt: string | Date;
|
|
819
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
820
|
+
id: string;
|
|
821
821
|
userId: string;
|
|
822
822
|
company?: {
|
|
823
|
-
id: string;
|
|
824
823
|
createdAt: string | Date;
|
|
825
824
|
updatedAt: string | Date;
|
|
825
|
+
id: string;
|
|
826
826
|
name: string;
|
|
827
827
|
} | null | undefined;
|
|
828
828
|
client?: {
|
|
829
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
830
|
-
id: string;
|
|
831
829
|
createdAt: string | Date;
|
|
832
830
|
updatedAt: string | Date;
|
|
831
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
832
|
+
id: string;
|
|
833
833
|
name: string;
|
|
834
834
|
crn: string | null;
|
|
835
835
|
govLink: string;
|
|
@@ -847,9 +847,9 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
847
847
|
} | null | undefined;
|
|
848
848
|
} | null | undefined;
|
|
849
849
|
user?: {
|
|
850
|
-
id: string;
|
|
851
850
|
createdAt: string | Date;
|
|
852
851
|
updatedAt: string | Date;
|
|
852
|
+
id: string;
|
|
853
853
|
firstName: string;
|
|
854
854
|
lastName: string;
|
|
855
855
|
email: string;
|
|
@@ -858,22 +858,22 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
858
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;
|
|
859
859
|
} | null | undefined;
|
|
860
860
|
newCollaboration?: {
|
|
861
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
862
|
-
id: string;
|
|
863
861
|
createdAt: string | Date;
|
|
864
862
|
updatedAt: string | Date;
|
|
863
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
864
|
+
id: string;
|
|
865
865
|
userId: string;
|
|
866
866
|
company?: {
|
|
867
|
-
id: string;
|
|
868
867
|
createdAt: string | Date;
|
|
869
868
|
updatedAt: string | Date;
|
|
869
|
+
id: string;
|
|
870
870
|
name: string;
|
|
871
871
|
} | null | undefined;
|
|
872
872
|
client?: {
|
|
873
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
874
|
-
id: string;
|
|
875
873
|
createdAt: string | Date;
|
|
876
874
|
updatedAt: string | Date;
|
|
875
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
876
|
+
id: string;
|
|
877
877
|
name: string;
|
|
878
878
|
crn: string | null;
|
|
879
879
|
govLink: string;
|
|
@@ -891,9 +891,9 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
891
891
|
} | null | undefined;
|
|
892
892
|
} | null | undefined;
|
|
893
893
|
user?: {
|
|
894
|
-
id: string;
|
|
895
894
|
createdAt: string | Date;
|
|
896
895
|
updatedAt: string | Date;
|
|
896
|
+
id: string;
|
|
897
897
|
firstName: string;
|
|
898
898
|
lastName: string;
|
|
899
899
|
email: string;
|
|
@@ -927,8 +927,8 @@ export declare const CreateJobSchema: z.ZodObject<{
|
|
|
927
927
|
rateMax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
928
928
|
receivedRate: z.ZodNumber;
|
|
929
929
|
}, "strip", z.ZodTypeAny, {
|
|
930
|
-
rate: number;
|
|
931
930
|
rateUnit: "DAILY" | "HOURLY";
|
|
931
|
+
rate: number;
|
|
932
932
|
receivedRate: number;
|
|
933
933
|
rateMax?: number | null | undefined;
|
|
934
934
|
}, {
|
|
@@ -957,17 +957,17 @@ export declare const CreateJobSchema: z.ZodObject<{
|
|
|
957
957
|
}>, "many">>;
|
|
958
958
|
status: z.ZodDefault<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE"]>>;
|
|
959
959
|
}, "strip", z.ZodTypeAny, {
|
|
960
|
-
status: "
|
|
960
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
961
961
|
description: string;
|
|
962
|
+
numberOfPositions: number;
|
|
963
|
+
workHours: number;
|
|
962
964
|
pay: {
|
|
963
|
-
rate: number;
|
|
964
965
|
rateUnit: "DAILY" | "HOURLY";
|
|
966
|
+
rate: number;
|
|
965
967
|
receivedRate: number;
|
|
966
968
|
rateMax?: number | null | undefined;
|
|
967
969
|
};
|
|
968
970
|
tradeId: string;
|
|
969
|
-
numberOfPositions: number;
|
|
970
|
-
workHours: number;
|
|
971
971
|
currentCollaboration: {
|
|
972
972
|
id: string;
|
|
973
973
|
};
|
|
@@ -981,6 +981,7 @@ export declare const CreateJobSchema: z.ZodObject<{
|
|
|
981
981
|
}[] | undefined;
|
|
982
982
|
}, {
|
|
983
983
|
description: string;
|
|
984
|
+
numberOfPositions: number;
|
|
984
985
|
pay: {
|
|
985
986
|
rate: number;
|
|
986
987
|
receivedRate: number;
|
|
@@ -988,16 +989,15 @@ export declare const CreateJobSchema: z.ZodObject<{
|
|
|
988
989
|
rateMax?: number | null | undefined;
|
|
989
990
|
};
|
|
990
991
|
tradeId: string;
|
|
991
|
-
numberOfPositions: number;
|
|
992
992
|
currentCollaboration: {
|
|
993
993
|
id: string;
|
|
994
994
|
};
|
|
995
|
-
status?: "
|
|
995
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | undefined;
|
|
996
|
+
workHours?: number | undefined;
|
|
996
997
|
location?: {
|
|
997
998
|
address?: string | null | undefined;
|
|
998
999
|
postcode?: string | null | undefined;
|
|
999
1000
|
} | undefined;
|
|
1000
|
-
workHours?: number | undefined;
|
|
1001
1001
|
jobQualifications?: {
|
|
1002
1002
|
qualificationId: string;
|
|
1003
1003
|
qualificationTypeId?: string | null | undefined;
|
|
@@ -1026,8 +1026,8 @@ export declare const UpdateJobSchema: z.ZodObject<{
|
|
|
1026
1026
|
rateMax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1027
1027
|
receivedRate: z.ZodNumber;
|
|
1028
1028
|
}, "strip", z.ZodTypeAny, {
|
|
1029
|
-
rate: number;
|
|
1030
1029
|
rateUnit: "DAILY" | "HOURLY";
|
|
1030
|
+
rate: number;
|
|
1031
1031
|
receivedRate: number;
|
|
1032
1032
|
rateMax?: number | null | undefined;
|
|
1033
1033
|
}, {
|
|
@@ -1056,21 +1056,21 @@ export declare const UpdateJobSchema: z.ZodObject<{
|
|
|
1056
1056
|
}>, "many">>;
|
|
1057
1057
|
status: z.ZodOptional<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE"]>>;
|
|
1058
1058
|
}, "strip", z.ZodTypeAny, {
|
|
1059
|
-
status?: "
|
|
1059
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | undefined;
|
|
1060
1060
|
description?: string | undefined;
|
|
1061
|
+
numberOfPositions?: number | undefined;
|
|
1062
|
+
workHours?: number | undefined;
|
|
1061
1063
|
pay?: {
|
|
1062
|
-
rate: number;
|
|
1063
1064
|
rateUnit: "DAILY" | "HOURLY";
|
|
1065
|
+
rate: number;
|
|
1064
1066
|
receivedRate: number;
|
|
1065
1067
|
rateMax?: number | null | undefined;
|
|
1066
1068
|
} | undefined;
|
|
1067
|
-
tradeId?: string | undefined;
|
|
1068
1069
|
location?: {
|
|
1069
1070
|
address?: string | null | undefined;
|
|
1070
1071
|
postcode?: string | null | undefined;
|
|
1071
1072
|
} | undefined;
|
|
1072
|
-
|
|
1073
|
-
workHours?: number | undefined;
|
|
1073
|
+
tradeId?: string | undefined;
|
|
1074
1074
|
jobQualifications?: {
|
|
1075
1075
|
qualificationId: string;
|
|
1076
1076
|
qualificationTypeId?: string | null | undefined;
|
|
@@ -1079,21 +1079,21 @@ export declare const UpdateJobSchema: z.ZodObject<{
|
|
|
1079
1079
|
id: string;
|
|
1080
1080
|
} | undefined;
|
|
1081
1081
|
}, {
|
|
1082
|
-
status?: "
|
|
1082
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | undefined;
|
|
1083
1083
|
description?: string | undefined;
|
|
1084
|
+
numberOfPositions?: number | undefined;
|
|
1085
|
+
workHours?: number | undefined;
|
|
1084
1086
|
pay?: {
|
|
1085
1087
|
rate: number;
|
|
1086
1088
|
receivedRate: number;
|
|
1087
1089
|
rateUnit?: "DAILY" | "HOURLY" | undefined;
|
|
1088
1090
|
rateMax?: number | null | undefined;
|
|
1089
1091
|
} | undefined;
|
|
1090
|
-
tradeId?: string | undefined;
|
|
1091
1092
|
location?: {
|
|
1092
1093
|
address?: string | null | undefined;
|
|
1093
1094
|
postcode?: string | null | undefined;
|
|
1094
1095
|
} | undefined;
|
|
1095
|
-
|
|
1096
|
-
workHours?: number | undefined;
|
|
1096
|
+
tradeId?: string | undefined;
|
|
1097
1097
|
jobQualifications?: {
|
|
1098
1098
|
qualificationId: string;
|
|
1099
1099
|
qualificationTypeId?: string | null | undefined;
|
|
@@ -1151,51 +1151,51 @@ export declare const FilterJobSchema: z.ZodObject<{
|
|
|
1151
1151
|
}, "strip", z.ZodTypeAny, {
|
|
1152
1152
|
limit: number;
|
|
1153
1153
|
page: number;
|
|
1154
|
-
status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | null | undefined;
|
|
1155
|
-
postcode?: string | null | undefined;
|
|
1156
1154
|
createdAt?: {
|
|
1157
1155
|
from?: string | null | undefined;
|
|
1158
1156
|
to?: string | null | undefined;
|
|
1159
1157
|
} | null | undefined;
|
|
1160
|
-
|
|
1161
|
-
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
1158
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | null | undefined;
|
|
1162
1159
|
userId?: string | null | undefined;
|
|
1163
1160
|
companyId?: string | null | undefined;
|
|
1164
1161
|
clientId?: string | null | undefined;
|
|
1162
|
+
sortBy?: "createdAt" | "updatedAt" | "status" | "description" | "numberOfPositions" | null | undefined;
|
|
1163
|
+
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
1165
1164
|
pay?: {
|
|
1166
1165
|
minRate?: number | null | undefined;
|
|
1167
1166
|
maxRate?: number | null | undefined;
|
|
1168
1167
|
} | null | undefined;
|
|
1168
|
+
postcode?: string | null | undefined;
|
|
1169
1169
|
tradeId?: string | null | undefined;
|
|
1170
|
-
distance?: number | null | undefined;
|
|
1171
1170
|
qualificationFilters?: {
|
|
1172
1171
|
qualificationId?: string | undefined;
|
|
1173
1172
|
qualificationTypeId?: string | undefined;
|
|
1174
1173
|
}[] | undefined;
|
|
1174
|
+
distance?: number | null | undefined;
|
|
1175
1175
|
}, {
|
|
1176
|
-
status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | null | undefined;
|
|
1177
|
-
postcode?: string | null | undefined;
|
|
1178
1176
|
createdAt?: {
|
|
1179
1177
|
from?: string | null | undefined;
|
|
1180
1178
|
to?: string | null | undefined;
|
|
1181
1179
|
} | null | undefined;
|
|
1180
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | null | undefined;
|
|
1181
|
+
userId?: string | null | undefined;
|
|
1182
1182
|
limit?: number | undefined;
|
|
1183
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
1184
|
companyId?: string | null | undefined;
|
|
1188
1185
|
clientId?: string | null | undefined;
|
|
1186
|
+
sortBy?: "createdAt" | "updatedAt" | "status" | "description" | "numberOfPositions" | null | undefined;
|
|
1187
|
+
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
1189
1188
|
pay?: {
|
|
1190
1189
|
minRate?: number | null | undefined;
|
|
1191
1190
|
maxRate?: number | null | undefined;
|
|
1192
1191
|
} | null | undefined;
|
|
1192
|
+
postcode?: string | null | undefined;
|
|
1193
1193
|
tradeId?: string | null | undefined;
|
|
1194
|
-
distance?: number | null | undefined;
|
|
1195
1194
|
qualificationFilters?: {
|
|
1196
1195
|
qualificationId?: string | undefined;
|
|
1197
1196
|
qualificationTypeId?: string | undefined;
|
|
1198
1197
|
}[] | undefined;
|
|
1198
|
+
distance?: number | null | undefined;
|
|
1199
1199
|
}>;
|
|
1200
1200
|
export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
1201
1201
|
items: z.ZodArray<z.ZodObject<{
|
|
@@ -1210,13 +1210,13 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1210
1210
|
rateMax: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
1211
1211
|
receivedRate: z.ZodNumber;
|
|
1212
1212
|
}, "strip", z.ZodTypeAny, {
|
|
1213
|
-
rate: number;
|
|
1214
1213
|
rateUnit: "DAILY" | "HOURLY";
|
|
1214
|
+
rate: number;
|
|
1215
1215
|
receivedRate: number;
|
|
1216
1216
|
rateMax?: number | null | undefined;
|
|
1217
1217
|
}, {
|
|
1218
|
-
rate: number;
|
|
1219
1218
|
rateUnit: "DAILY" | "HOURLY";
|
|
1219
|
+
rate: number;
|
|
1220
1220
|
receivedRate: number;
|
|
1221
1221
|
rateMax?: number | null | undefined;
|
|
1222
1222
|
}>;
|
|
@@ -1267,14 +1267,14 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1267
1267
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1268
1268
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1269
1269
|
}, "strip", z.ZodTypeAny, {
|
|
1270
|
-
id: string;
|
|
1271
1270
|
createdAt: string;
|
|
1272
1271
|
updatedAt: string;
|
|
1272
|
+
id: string;
|
|
1273
1273
|
name: string;
|
|
1274
1274
|
}, {
|
|
1275
|
-
id: string;
|
|
1276
1275
|
createdAt: string | Date;
|
|
1277
1276
|
updatedAt: string | Date;
|
|
1277
|
+
id: string;
|
|
1278
1278
|
name: string;
|
|
1279
1279
|
}>>>;
|
|
1280
1280
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -1312,10 +1312,10 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1312
1312
|
agentId: string;
|
|
1313
1313
|
}>>>;
|
|
1314
1314
|
}, "strip", z.ZodTypeAny, {
|
|
1315
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1316
|
-
id: string;
|
|
1317
1315
|
createdAt: string;
|
|
1318
1316
|
updatedAt: string;
|
|
1317
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1318
|
+
id: string;
|
|
1319
1319
|
name: string;
|
|
1320
1320
|
crn: string | null;
|
|
1321
1321
|
govLink: string;
|
|
@@ -1332,10 +1332,10 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1332
1332
|
agentId: string;
|
|
1333
1333
|
} | null | undefined;
|
|
1334
1334
|
}, {
|
|
1335
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1336
|
-
id: string;
|
|
1337
1335
|
createdAt: string | Date;
|
|
1338
1336
|
updatedAt: string | Date;
|
|
1337
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1338
|
+
id: string;
|
|
1339
1339
|
name: string;
|
|
1340
1340
|
crn: string | null;
|
|
1341
1341
|
govLink: string;
|
|
@@ -1357,15 +1357,15 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1357
1357
|
firstName: z.ZodString;
|
|
1358
1358
|
lastName: z.ZodString;
|
|
1359
1359
|
email: z.ZodString;
|
|
1360
|
-
phone: z.
|
|
1360
|
+
phone: z.ZodString;
|
|
1361
1361
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
1362
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
1363
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1364
1364
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1365
1365
|
}, "strip", z.ZodTypeAny, {
|
|
1366
|
-
id: string;
|
|
1367
1366
|
createdAt: string;
|
|
1368
1367
|
updatedAt: string;
|
|
1368
|
+
id: string;
|
|
1369
1369
|
firstName: string;
|
|
1370
1370
|
lastName: string;
|
|
1371
1371
|
email: string;
|
|
@@ -1373,9 +1373,9 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1373
1373
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1374
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;
|
|
1375
1375
|
}, {
|
|
1376
|
-
id: string;
|
|
1377
1376
|
createdAt: string | Date;
|
|
1378
1377
|
updatedAt: string | Date;
|
|
1378
|
+
id: string;
|
|
1379
1379
|
firstName: string;
|
|
1380
1380
|
lastName: string;
|
|
1381
1381
|
email: string;
|
|
@@ -1383,7 +1383,7 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1383
1383
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1384
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;
|
|
1385
1385
|
}>>>;
|
|
1386
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
1386
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
1387
1387
|
userId: z.ZodString;
|
|
1388
1388
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1389
1389
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -1396,14 +1396,14 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1396
1396
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1397
1397
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1398
1398
|
}, "strip", z.ZodTypeAny, {
|
|
1399
|
-
id: string;
|
|
1400
1399
|
createdAt: string;
|
|
1401
1400
|
updatedAt: string;
|
|
1401
|
+
id: string;
|
|
1402
1402
|
name: string;
|
|
1403
1403
|
}, {
|
|
1404
|
-
id: string;
|
|
1405
1404
|
createdAt: string | Date;
|
|
1406
1405
|
updatedAt: string | Date;
|
|
1406
|
+
id: string;
|
|
1407
1407
|
name: string;
|
|
1408
1408
|
}>>>;
|
|
1409
1409
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -1441,10 +1441,10 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1441
1441
|
agentId: string;
|
|
1442
1442
|
}>>>;
|
|
1443
1443
|
}, "strip", z.ZodTypeAny, {
|
|
1444
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1445
|
-
id: string;
|
|
1446
1444
|
createdAt: string;
|
|
1447
1445
|
updatedAt: string;
|
|
1446
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1447
|
+
id: string;
|
|
1448
1448
|
name: string;
|
|
1449
1449
|
crn: string | null;
|
|
1450
1450
|
govLink: string;
|
|
@@ -1461,10 +1461,10 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1461
1461
|
agentId: string;
|
|
1462
1462
|
} | null | undefined;
|
|
1463
1463
|
}, {
|
|
1464
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1465
|
-
id: string;
|
|
1466
1464
|
createdAt: string | Date;
|
|
1467
1465
|
updatedAt: string | Date;
|
|
1466
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1467
|
+
id: string;
|
|
1468
1468
|
name: string;
|
|
1469
1469
|
crn: string | null;
|
|
1470
1470
|
govLink: string;
|
|
@@ -1486,15 +1486,15 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1486
1486
|
firstName: z.ZodString;
|
|
1487
1487
|
lastName: z.ZodString;
|
|
1488
1488
|
email: z.ZodString;
|
|
1489
|
-
phone: z.
|
|
1489
|
+
phone: z.ZodString;
|
|
1490
1490
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
1491
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
1492
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1493
1493
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1494
1494
|
}, "strip", z.ZodTypeAny, {
|
|
1495
|
-
id: string;
|
|
1496
1495
|
createdAt: string;
|
|
1497
1496
|
updatedAt: string;
|
|
1497
|
+
id: string;
|
|
1498
1498
|
firstName: string;
|
|
1499
1499
|
lastName: string;
|
|
1500
1500
|
email: string;
|
|
@@ -1502,9 +1502,9 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1502
1502
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1503
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;
|
|
1504
1504
|
}, {
|
|
1505
|
-
id: string;
|
|
1506
1505
|
createdAt: string | Date;
|
|
1507
1506
|
updatedAt: string | Date;
|
|
1507
|
+
id: string;
|
|
1508
1508
|
firstName: string;
|
|
1509
1509
|
lastName: string;
|
|
1510
1510
|
email: string;
|
|
@@ -1512,27 +1512,27 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1512
1512
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1513
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;
|
|
1514
1514
|
}>>>;
|
|
1515
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
1515
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
1516
1516
|
userId: z.ZodString;
|
|
1517
1517
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1518
1518
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1519
1519
|
}, "strip", z.ZodTypeAny, {
|
|
1520
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1521
|
-
id: string;
|
|
1522
1520
|
createdAt: string;
|
|
1523
1521
|
updatedAt: string;
|
|
1522
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1523
|
+
id: string;
|
|
1524
1524
|
userId: string;
|
|
1525
1525
|
company?: {
|
|
1526
|
-
id: string;
|
|
1527
1526
|
createdAt: string;
|
|
1528
1527
|
updatedAt: string;
|
|
1528
|
+
id: string;
|
|
1529
1529
|
name: string;
|
|
1530
1530
|
} | null | undefined;
|
|
1531
1531
|
client?: {
|
|
1532
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1533
|
-
id: string;
|
|
1534
1532
|
createdAt: string;
|
|
1535
1533
|
updatedAt: string;
|
|
1534
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1535
|
+
id: string;
|
|
1536
1536
|
name: string;
|
|
1537
1537
|
crn: string | null;
|
|
1538
1538
|
govLink: string;
|
|
@@ -1550,9 +1550,9 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1550
1550
|
} | null | undefined;
|
|
1551
1551
|
} | null | undefined;
|
|
1552
1552
|
user?: {
|
|
1553
|
-
id: string;
|
|
1554
1553
|
createdAt: string;
|
|
1555
1554
|
updatedAt: string;
|
|
1555
|
+
id: string;
|
|
1556
1556
|
firstName: string;
|
|
1557
1557
|
lastName: string;
|
|
1558
1558
|
email: string;
|
|
@@ -1561,22 +1561,22 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1561
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;
|
|
1562
1562
|
} | null | undefined;
|
|
1563
1563
|
}, {
|
|
1564
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1565
|
-
id: string;
|
|
1566
1564
|
createdAt: string | Date;
|
|
1567
1565
|
updatedAt: string | Date;
|
|
1566
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1567
|
+
id: string;
|
|
1568
1568
|
userId: string;
|
|
1569
1569
|
company?: {
|
|
1570
|
-
id: string;
|
|
1571
1570
|
createdAt: string | Date;
|
|
1572
1571
|
updatedAt: string | Date;
|
|
1572
|
+
id: string;
|
|
1573
1573
|
name: string;
|
|
1574
1574
|
} | null | undefined;
|
|
1575
1575
|
client?: {
|
|
1576
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1577
|
-
id: string;
|
|
1578
1576
|
createdAt: string | Date;
|
|
1579
1577
|
updatedAt: string | Date;
|
|
1578
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1579
|
+
id: string;
|
|
1580
1580
|
name: string;
|
|
1581
1581
|
crn: string | null;
|
|
1582
1582
|
govLink: string;
|
|
@@ -1594,9 +1594,9 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1594
1594
|
} | null | undefined;
|
|
1595
1595
|
} | null | undefined;
|
|
1596
1596
|
user?: {
|
|
1597
|
-
id: string;
|
|
1598
1597
|
createdAt: string | Date;
|
|
1599
1598
|
updatedAt: string | Date;
|
|
1599
|
+
id: string;
|
|
1600
1600
|
firstName: string;
|
|
1601
1601
|
lastName: string;
|
|
1602
1602
|
email: string;
|
|
@@ -1606,22 +1606,22 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1606
1606
|
} | null | undefined;
|
|
1607
1607
|
}>>>;
|
|
1608
1608
|
}, "strip", z.ZodTypeAny, {
|
|
1609
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1610
|
-
id: string;
|
|
1611
1609
|
createdAt: string;
|
|
1612
1610
|
updatedAt: string;
|
|
1611
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1612
|
+
id: string;
|
|
1613
1613
|
userId: string;
|
|
1614
1614
|
company?: {
|
|
1615
|
-
id: string;
|
|
1616
1615
|
createdAt: string;
|
|
1617
1616
|
updatedAt: string;
|
|
1617
|
+
id: string;
|
|
1618
1618
|
name: string;
|
|
1619
1619
|
} | null | undefined;
|
|
1620
1620
|
client?: {
|
|
1621
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1622
|
-
id: string;
|
|
1623
1621
|
createdAt: string;
|
|
1624
1622
|
updatedAt: string;
|
|
1623
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1624
|
+
id: string;
|
|
1625
1625
|
name: string;
|
|
1626
1626
|
crn: string | null;
|
|
1627
1627
|
govLink: string;
|
|
@@ -1639,9 +1639,9 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1639
1639
|
} | null | undefined;
|
|
1640
1640
|
} | null | undefined;
|
|
1641
1641
|
user?: {
|
|
1642
|
-
id: string;
|
|
1643
1642
|
createdAt: string;
|
|
1644
1643
|
updatedAt: string;
|
|
1644
|
+
id: string;
|
|
1645
1645
|
firstName: string;
|
|
1646
1646
|
lastName: string;
|
|
1647
1647
|
email: string;
|
|
@@ -1650,22 +1650,22 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1650
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;
|
|
1651
1651
|
} | null | undefined;
|
|
1652
1652
|
newCollaboration?: {
|
|
1653
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1654
|
-
id: string;
|
|
1655
1653
|
createdAt: string;
|
|
1656
1654
|
updatedAt: string;
|
|
1655
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1656
|
+
id: string;
|
|
1657
1657
|
userId: string;
|
|
1658
1658
|
company?: {
|
|
1659
|
-
id: string;
|
|
1660
1659
|
createdAt: string;
|
|
1661
1660
|
updatedAt: string;
|
|
1661
|
+
id: string;
|
|
1662
1662
|
name: string;
|
|
1663
1663
|
} | null | undefined;
|
|
1664
1664
|
client?: {
|
|
1665
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1666
|
-
id: string;
|
|
1667
1665
|
createdAt: string;
|
|
1668
1666
|
updatedAt: string;
|
|
1667
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1668
|
+
id: string;
|
|
1669
1669
|
name: string;
|
|
1670
1670
|
crn: string | null;
|
|
1671
1671
|
govLink: string;
|
|
@@ -1683,9 +1683,9 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1683
1683
|
} | null | undefined;
|
|
1684
1684
|
} | null | undefined;
|
|
1685
1685
|
user?: {
|
|
1686
|
-
id: string;
|
|
1687
1686
|
createdAt: string;
|
|
1688
1687
|
updatedAt: string;
|
|
1688
|
+
id: string;
|
|
1689
1689
|
firstName: string;
|
|
1690
1690
|
lastName: string;
|
|
1691
1691
|
email: string;
|
|
@@ -1695,22 +1695,22 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1695
1695
|
} | null | undefined;
|
|
1696
1696
|
} | null | undefined;
|
|
1697
1697
|
}, {
|
|
1698
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1699
|
-
id: string;
|
|
1700
1698
|
createdAt: string | Date;
|
|
1701
1699
|
updatedAt: string | Date;
|
|
1700
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1701
|
+
id: string;
|
|
1702
1702
|
userId: string;
|
|
1703
1703
|
company?: {
|
|
1704
|
-
id: string;
|
|
1705
1704
|
createdAt: string | Date;
|
|
1706
1705
|
updatedAt: string | Date;
|
|
1706
|
+
id: string;
|
|
1707
1707
|
name: string;
|
|
1708
1708
|
} | null | undefined;
|
|
1709
1709
|
client?: {
|
|
1710
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1711
|
-
id: string;
|
|
1712
1710
|
createdAt: string | Date;
|
|
1713
1711
|
updatedAt: string | Date;
|
|
1712
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1713
|
+
id: string;
|
|
1714
1714
|
name: string;
|
|
1715
1715
|
crn: string | null;
|
|
1716
1716
|
govLink: string;
|
|
@@ -1728,9 +1728,9 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1728
1728
|
} | null | undefined;
|
|
1729
1729
|
} | null | undefined;
|
|
1730
1730
|
user?: {
|
|
1731
|
-
id: string;
|
|
1732
1731
|
createdAt: string | Date;
|
|
1733
1732
|
updatedAt: string | Date;
|
|
1733
|
+
id: string;
|
|
1734
1734
|
firstName: string;
|
|
1735
1735
|
lastName: string;
|
|
1736
1736
|
email: string;
|
|
@@ -1739,22 +1739,22 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1739
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;
|
|
1740
1740
|
} | null | undefined;
|
|
1741
1741
|
newCollaboration?: {
|
|
1742
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1743
|
-
id: string;
|
|
1744
1742
|
createdAt: string | Date;
|
|
1745
1743
|
updatedAt: string | Date;
|
|
1744
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1745
|
+
id: string;
|
|
1746
1746
|
userId: string;
|
|
1747
1747
|
company?: {
|
|
1748
|
-
id: string;
|
|
1749
1748
|
createdAt: string | Date;
|
|
1750
1749
|
updatedAt: string | Date;
|
|
1750
|
+
id: string;
|
|
1751
1751
|
name: string;
|
|
1752
1752
|
} | null | undefined;
|
|
1753
1753
|
client?: {
|
|
1754
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1755
|
-
id: string;
|
|
1756
1754
|
createdAt: string | Date;
|
|
1757
1755
|
updatedAt: string | Date;
|
|
1756
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1757
|
+
id: string;
|
|
1758
1758
|
name: string;
|
|
1759
1759
|
crn: string | null;
|
|
1760
1760
|
govLink: string;
|
|
@@ -1772,9 +1772,9 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1772
1772
|
} | null | undefined;
|
|
1773
1773
|
} | null | undefined;
|
|
1774
1774
|
user?: {
|
|
1775
|
-
id: string;
|
|
1776
1775
|
createdAt: string | Date;
|
|
1777
1776
|
updatedAt: string | Date;
|
|
1777
|
+
id: string;
|
|
1778
1778
|
firstName: string;
|
|
1779
1779
|
lastName: string;
|
|
1780
1780
|
email: string;
|
|
@@ -1787,24 +1787,25 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1787
1787
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1788
1788
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1789
1789
|
}, "strip", z.ZodTypeAny, {
|
|
1790
|
-
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
1791
|
-
id: string;
|
|
1792
1790
|
createdAt: string;
|
|
1793
1791
|
updatedAt: string;
|
|
1792
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
1793
|
+
id: string;
|
|
1794
1794
|
description: string;
|
|
1795
|
+
numberOfPositions: number;
|
|
1795
1796
|
pay: {
|
|
1796
|
-
rate: number;
|
|
1797
1797
|
rateUnit: "DAILY" | "HOURLY";
|
|
1798
|
+
rate: number;
|
|
1798
1799
|
receivedRate: number;
|
|
1799
1800
|
rateMax?: number | null | undefined;
|
|
1800
1801
|
};
|
|
1801
1802
|
tradeId: string;
|
|
1802
|
-
numberOfPositions: number;
|
|
1803
1803
|
jobQualifications: {
|
|
1804
1804
|
id: string;
|
|
1805
1805
|
qualificationId: string;
|
|
1806
1806
|
qualificationTypeId?: string | null | undefined;
|
|
1807
1807
|
}[];
|
|
1808
|
+
workHours?: number | null | undefined;
|
|
1808
1809
|
location?: {
|
|
1809
1810
|
address?: string | null | undefined;
|
|
1810
1811
|
postcode?: string | null | undefined;
|
|
@@ -1814,24 +1815,23 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1814
1815
|
postTown?: string | null | undefined;
|
|
1815
1816
|
areaCovered?: string | null | undefined;
|
|
1816
1817
|
} | null | undefined;
|
|
1817
|
-
workHours?: number | null | undefined;
|
|
1818
1818
|
currentCollaboration?: {
|
|
1819
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1820
|
-
id: string;
|
|
1821
1819
|
createdAt: string;
|
|
1822
1820
|
updatedAt: string;
|
|
1821
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1822
|
+
id: string;
|
|
1823
1823
|
userId: string;
|
|
1824
1824
|
company?: {
|
|
1825
|
-
id: string;
|
|
1826
1825
|
createdAt: string;
|
|
1827
1826
|
updatedAt: string;
|
|
1827
|
+
id: string;
|
|
1828
1828
|
name: string;
|
|
1829
1829
|
} | null | undefined;
|
|
1830
1830
|
client?: {
|
|
1831
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1832
|
-
id: string;
|
|
1833
1831
|
createdAt: string;
|
|
1834
1832
|
updatedAt: string;
|
|
1833
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1834
|
+
id: string;
|
|
1835
1835
|
name: string;
|
|
1836
1836
|
crn: string | null;
|
|
1837
1837
|
govLink: string;
|
|
@@ -1849,9 +1849,9 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1849
1849
|
} | null | undefined;
|
|
1850
1850
|
} | null | undefined;
|
|
1851
1851
|
user?: {
|
|
1852
|
-
id: string;
|
|
1853
1852
|
createdAt: string;
|
|
1854
1853
|
updatedAt: string;
|
|
1854
|
+
id: string;
|
|
1855
1855
|
firstName: string;
|
|
1856
1856
|
lastName: string;
|
|
1857
1857
|
email: string;
|
|
@@ -1860,22 +1860,22 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1860
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;
|
|
1861
1861
|
} | null | undefined;
|
|
1862
1862
|
newCollaboration?: {
|
|
1863
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1864
|
-
id: string;
|
|
1865
1863
|
createdAt: string;
|
|
1866
1864
|
updatedAt: string;
|
|
1865
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1866
|
+
id: string;
|
|
1867
1867
|
userId: string;
|
|
1868
1868
|
company?: {
|
|
1869
|
-
id: string;
|
|
1870
1869
|
createdAt: string;
|
|
1871
1870
|
updatedAt: string;
|
|
1871
|
+
id: string;
|
|
1872
1872
|
name: string;
|
|
1873
1873
|
} | null | undefined;
|
|
1874
1874
|
client?: {
|
|
1875
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1876
|
-
id: string;
|
|
1877
1875
|
createdAt: string;
|
|
1878
1876
|
updatedAt: string;
|
|
1877
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1878
|
+
id: string;
|
|
1879
1879
|
name: string;
|
|
1880
1880
|
crn: string | null;
|
|
1881
1881
|
govLink: string;
|
|
@@ -1893,9 +1893,9 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1893
1893
|
} | null | undefined;
|
|
1894
1894
|
} | null | undefined;
|
|
1895
1895
|
user?: {
|
|
1896
|
-
id: string;
|
|
1897
1896
|
createdAt: string;
|
|
1898
1897
|
updatedAt: string;
|
|
1898
|
+
id: string;
|
|
1899
1899
|
firstName: string;
|
|
1900
1900
|
lastName: string;
|
|
1901
1901
|
email: string;
|
|
@@ -1906,19 +1906,20 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1906
1906
|
} | null | undefined;
|
|
1907
1907
|
} | null | undefined;
|
|
1908
1908
|
}, {
|
|
1909
|
-
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
1910
|
-
id: string;
|
|
1911
1909
|
createdAt: string | Date;
|
|
1912
1910
|
updatedAt: string | Date;
|
|
1911
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
1912
|
+
id: string;
|
|
1913
1913
|
description: string;
|
|
1914
|
+
numberOfPositions: number;
|
|
1914
1915
|
pay: {
|
|
1915
|
-
rate: number;
|
|
1916
1916
|
rateUnit: "DAILY" | "HOURLY";
|
|
1917
|
+
rate: number;
|
|
1917
1918
|
receivedRate: number;
|
|
1918
1919
|
rateMax?: number | null | undefined;
|
|
1919
1920
|
};
|
|
1920
1921
|
tradeId: string;
|
|
1921
|
-
|
|
1922
|
+
workHours?: number | null | undefined;
|
|
1922
1923
|
location?: {
|
|
1923
1924
|
address?: string | null | undefined;
|
|
1924
1925
|
postcode?: string | null | undefined;
|
|
@@ -1928,29 +1929,28 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1928
1929
|
postTown?: string | null | undefined;
|
|
1929
1930
|
areaCovered?: string | null | undefined;
|
|
1930
1931
|
} | null | undefined;
|
|
1931
|
-
workHours?: number | null | undefined;
|
|
1932
1932
|
jobQualifications?: {
|
|
1933
1933
|
id: string;
|
|
1934
1934
|
qualificationId: string;
|
|
1935
1935
|
qualificationTypeId?: string | null | undefined;
|
|
1936
1936
|
}[] | undefined;
|
|
1937
1937
|
currentCollaboration?: {
|
|
1938
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1939
|
-
id: string;
|
|
1940
1938
|
createdAt: string | Date;
|
|
1941
1939
|
updatedAt: string | Date;
|
|
1940
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1941
|
+
id: string;
|
|
1942
1942
|
userId: string;
|
|
1943
1943
|
company?: {
|
|
1944
|
-
id: string;
|
|
1945
1944
|
createdAt: string | Date;
|
|
1946
1945
|
updatedAt: string | Date;
|
|
1946
|
+
id: string;
|
|
1947
1947
|
name: string;
|
|
1948
1948
|
} | null | undefined;
|
|
1949
1949
|
client?: {
|
|
1950
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1951
|
-
id: string;
|
|
1952
1950
|
createdAt: string | Date;
|
|
1953
1951
|
updatedAt: string | Date;
|
|
1952
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1953
|
+
id: string;
|
|
1954
1954
|
name: string;
|
|
1955
1955
|
crn: string | null;
|
|
1956
1956
|
govLink: string;
|
|
@@ -1968,9 +1968,9 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1968
1968
|
} | null | undefined;
|
|
1969
1969
|
} | null | undefined;
|
|
1970
1970
|
user?: {
|
|
1971
|
-
id: string;
|
|
1972
1971
|
createdAt: string | Date;
|
|
1973
1972
|
updatedAt: string | Date;
|
|
1973
|
+
id: string;
|
|
1974
1974
|
firstName: string;
|
|
1975
1975
|
lastName: string;
|
|
1976
1976
|
email: string;
|
|
@@ -1979,22 +1979,22 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1979
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;
|
|
1980
1980
|
} | null | undefined;
|
|
1981
1981
|
newCollaboration?: {
|
|
1982
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1983
|
-
id: string;
|
|
1984
1982
|
createdAt: string | Date;
|
|
1985
1983
|
updatedAt: string | Date;
|
|
1984
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
1985
|
+
id: string;
|
|
1986
1986
|
userId: string;
|
|
1987
1987
|
company?: {
|
|
1988
|
-
id: string;
|
|
1989
1988
|
createdAt: string | Date;
|
|
1990
1989
|
updatedAt: string | Date;
|
|
1990
|
+
id: string;
|
|
1991
1991
|
name: string;
|
|
1992
1992
|
} | null | undefined;
|
|
1993
1993
|
client?: {
|
|
1994
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
1995
|
-
id: string;
|
|
1996
1994
|
createdAt: string | Date;
|
|
1997
1995
|
updatedAt: string | Date;
|
|
1996
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1997
|
+
id: string;
|
|
1998
1998
|
name: string;
|
|
1999
1999
|
crn: string | null;
|
|
2000
2000
|
govLink: string;
|
|
@@ -2012,9 +2012,9 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
2012
2012
|
} | null | undefined;
|
|
2013
2013
|
} | null | undefined;
|
|
2014
2014
|
user?: {
|
|
2015
|
-
id: string;
|
|
2016
2015
|
createdAt: string | Date;
|
|
2017
2016
|
updatedAt: string | Date;
|
|
2017
|
+
id: string;
|
|
2018
2018
|
firstName: string;
|
|
2019
2019
|
lastName: string;
|
|
2020
2020
|
email: string;
|
|
@@ -2033,24 +2033,25 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
2033
2033
|
}, "strip", z.ZodTypeAny, {
|
|
2034
2034
|
limit: number;
|
|
2035
2035
|
items: {
|
|
2036
|
-
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
2037
|
-
id: string;
|
|
2038
2036
|
createdAt: string;
|
|
2039
2037
|
updatedAt: string;
|
|
2038
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
2039
|
+
id: string;
|
|
2040
2040
|
description: string;
|
|
2041
|
+
numberOfPositions: number;
|
|
2041
2042
|
pay: {
|
|
2042
|
-
rate: number;
|
|
2043
2043
|
rateUnit: "DAILY" | "HOURLY";
|
|
2044
|
+
rate: number;
|
|
2044
2045
|
receivedRate: number;
|
|
2045
2046
|
rateMax?: number | null | undefined;
|
|
2046
2047
|
};
|
|
2047
2048
|
tradeId: string;
|
|
2048
|
-
numberOfPositions: number;
|
|
2049
2049
|
jobQualifications: {
|
|
2050
2050
|
id: string;
|
|
2051
2051
|
qualificationId: string;
|
|
2052
2052
|
qualificationTypeId?: string | null | undefined;
|
|
2053
2053
|
}[];
|
|
2054
|
+
workHours?: number | null | undefined;
|
|
2054
2055
|
location?: {
|
|
2055
2056
|
address?: string | null | undefined;
|
|
2056
2057
|
postcode?: string | null | undefined;
|
|
@@ -2060,24 +2061,23 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
2060
2061
|
postTown?: string | null | undefined;
|
|
2061
2062
|
areaCovered?: string | null | undefined;
|
|
2062
2063
|
} | null | undefined;
|
|
2063
|
-
workHours?: number | null | undefined;
|
|
2064
2064
|
currentCollaboration?: {
|
|
2065
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2066
|
-
id: string;
|
|
2067
2065
|
createdAt: string;
|
|
2068
2066
|
updatedAt: string;
|
|
2067
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2068
|
+
id: string;
|
|
2069
2069
|
userId: string;
|
|
2070
2070
|
company?: {
|
|
2071
|
-
id: string;
|
|
2072
2071
|
createdAt: string;
|
|
2073
2072
|
updatedAt: string;
|
|
2073
|
+
id: string;
|
|
2074
2074
|
name: string;
|
|
2075
2075
|
} | null | undefined;
|
|
2076
2076
|
client?: {
|
|
2077
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2078
|
-
id: string;
|
|
2079
2077
|
createdAt: string;
|
|
2080
2078
|
updatedAt: string;
|
|
2079
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2080
|
+
id: string;
|
|
2081
2081
|
name: string;
|
|
2082
2082
|
crn: string | null;
|
|
2083
2083
|
govLink: string;
|
|
@@ -2095,9 +2095,9 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
2095
2095
|
} | null | undefined;
|
|
2096
2096
|
} | null | undefined;
|
|
2097
2097
|
user?: {
|
|
2098
|
-
id: string;
|
|
2099
2098
|
createdAt: string;
|
|
2100
2099
|
updatedAt: string;
|
|
2100
|
+
id: string;
|
|
2101
2101
|
firstName: string;
|
|
2102
2102
|
lastName: string;
|
|
2103
2103
|
email: string;
|
|
@@ -2106,22 +2106,22 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
2106
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;
|
|
2107
2107
|
} | null | undefined;
|
|
2108
2108
|
newCollaboration?: {
|
|
2109
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2110
|
-
id: string;
|
|
2111
2109
|
createdAt: string;
|
|
2112
2110
|
updatedAt: string;
|
|
2111
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2112
|
+
id: string;
|
|
2113
2113
|
userId: string;
|
|
2114
2114
|
company?: {
|
|
2115
|
-
id: string;
|
|
2116
2115
|
createdAt: string;
|
|
2117
2116
|
updatedAt: string;
|
|
2117
|
+
id: string;
|
|
2118
2118
|
name: string;
|
|
2119
2119
|
} | null | undefined;
|
|
2120
2120
|
client?: {
|
|
2121
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2122
|
-
id: string;
|
|
2123
2121
|
createdAt: string;
|
|
2124
2122
|
updatedAt: string;
|
|
2123
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2124
|
+
id: string;
|
|
2125
2125
|
name: string;
|
|
2126
2126
|
crn: string | null;
|
|
2127
2127
|
govLink: string;
|
|
@@ -2139,9 +2139,9 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
2139
2139
|
} | null | undefined;
|
|
2140
2140
|
} | null | undefined;
|
|
2141
2141
|
user?: {
|
|
2142
|
-
id: string;
|
|
2143
2142
|
createdAt: string;
|
|
2144
2143
|
updatedAt: string;
|
|
2144
|
+
id: string;
|
|
2145
2145
|
firstName: string;
|
|
2146
2146
|
lastName: string;
|
|
2147
2147
|
email: string;
|
|
@@ -2159,19 +2159,20 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
2159
2159
|
}, {
|
|
2160
2160
|
limit: number;
|
|
2161
2161
|
items: {
|
|
2162
|
-
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
2163
|
-
id: string;
|
|
2164
2162
|
createdAt: string | Date;
|
|
2165
2163
|
updatedAt: string | Date;
|
|
2164
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
2165
|
+
id: string;
|
|
2166
2166
|
description: string;
|
|
2167
|
+
numberOfPositions: number;
|
|
2167
2168
|
pay: {
|
|
2168
|
-
rate: number;
|
|
2169
2169
|
rateUnit: "DAILY" | "HOURLY";
|
|
2170
|
+
rate: number;
|
|
2170
2171
|
receivedRate: number;
|
|
2171
2172
|
rateMax?: number | null | undefined;
|
|
2172
2173
|
};
|
|
2173
2174
|
tradeId: string;
|
|
2174
|
-
|
|
2175
|
+
workHours?: number | null | undefined;
|
|
2175
2176
|
location?: {
|
|
2176
2177
|
address?: string | null | undefined;
|
|
2177
2178
|
postcode?: string | null | undefined;
|
|
@@ -2181,29 +2182,28 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
2181
2182
|
postTown?: string | null | undefined;
|
|
2182
2183
|
areaCovered?: string | null | undefined;
|
|
2183
2184
|
} | null | undefined;
|
|
2184
|
-
workHours?: number | null | undefined;
|
|
2185
2185
|
jobQualifications?: {
|
|
2186
2186
|
id: string;
|
|
2187
2187
|
qualificationId: string;
|
|
2188
2188
|
qualificationTypeId?: string | null | undefined;
|
|
2189
2189
|
}[] | undefined;
|
|
2190
2190
|
currentCollaboration?: {
|
|
2191
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2192
|
-
id: string;
|
|
2193
2191
|
createdAt: string | Date;
|
|
2194
2192
|
updatedAt: string | Date;
|
|
2193
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2194
|
+
id: string;
|
|
2195
2195
|
userId: string;
|
|
2196
2196
|
company?: {
|
|
2197
|
-
id: string;
|
|
2198
2197
|
createdAt: string | Date;
|
|
2199
2198
|
updatedAt: string | Date;
|
|
2199
|
+
id: string;
|
|
2200
2200
|
name: string;
|
|
2201
2201
|
} | null | undefined;
|
|
2202
2202
|
client?: {
|
|
2203
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2204
|
-
id: string;
|
|
2205
2203
|
createdAt: string | Date;
|
|
2206
2204
|
updatedAt: string | Date;
|
|
2205
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2206
|
+
id: string;
|
|
2207
2207
|
name: string;
|
|
2208
2208
|
crn: string | null;
|
|
2209
2209
|
govLink: string;
|
|
@@ -2221,9 +2221,9 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
2221
2221
|
} | null | undefined;
|
|
2222
2222
|
} | null | undefined;
|
|
2223
2223
|
user?: {
|
|
2224
|
-
id: string;
|
|
2225
2224
|
createdAt: string | Date;
|
|
2226
2225
|
updatedAt: string | Date;
|
|
2226
|
+
id: string;
|
|
2227
2227
|
firstName: string;
|
|
2228
2228
|
lastName: string;
|
|
2229
2229
|
email: string;
|
|
@@ -2232,22 +2232,22 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
2232
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;
|
|
2233
2233
|
} | null | undefined;
|
|
2234
2234
|
newCollaboration?: {
|
|
2235
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2236
|
-
id: string;
|
|
2237
2235
|
createdAt: string | Date;
|
|
2238
2236
|
updatedAt: string | Date;
|
|
2237
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2238
|
+
id: string;
|
|
2239
2239
|
userId: string;
|
|
2240
2240
|
company?: {
|
|
2241
|
-
id: string;
|
|
2242
2241
|
createdAt: string | Date;
|
|
2243
2242
|
updatedAt: string | Date;
|
|
2243
|
+
id: string;
|
|
2244
2244
|
name: string;
|
|
2245
2245
|
} | null | undefined;
|
|
2246
2246
|
client?: {
|
|
2247
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2248
|
-
id: string;
|
|
2249
2247
|
createdAt: string | Date;
|
|
2250
2248
|
updatedAt: string | Date;
|
|
2249
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2250
|
+
id: string;
|
|
2251
2251
|
name: string;
|
|
2252
2252
|
crn: string | null;
|
|
2253
2253
|
govLink: string;
|
|
@@ -2265,9 +2265,9 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
2265
2265
|
} | null | undefined;
|
|
2266
2266
|
} | null | undefined;
|
|
2267
2267
|
user?: {
|
|
2268
|
-
id: string;
|
|
2269
2268
|
createdAt: string | Date;
|
|
2270
2269
|
updatedAt: string | Date;
|
|
2270
|
+
id: string;
|
|
2271
2271
|
firstName: string;
|
|
2272
2272
|
lastName: string;
|
|
2273
2273
|
email: string;
|
|
@@ -2318,8 +2318,8 @@ export declare const jobsContractRouter: {
|
|
|
2318
2318
|
rateMax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
2319
2319
|
receivedRate: z.ZodNumber;
|
|
2320
2320
|
}, "strip", z.ZodTypeAny, {
|
|
2321
|
-
rate: number;
|
|
2322
2321
|
rateUnit: "DAILY" | "HOURLY";
|
|
2322
|
+
rate: number;
|
|
2323
2323
|
receivedRate: number;
|
|
2324
2324
|
rateMax?: number | null | undefined;
|
|
2325
2325
|
}, {
|
|
@@ -2348,17 +2348,17 @@ export declare const jobsContractRouter: {
|
|
|
2348
2348
|
}>, "many">>;
|
|
2349
2349
|
status: z.ZodDefault<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE"]>>;
|
|
2350
2350
|
}, "strip", z.ZodTypeAny, {
|
|
2351
|
-
status: "
|
|
2351
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
2352
2352
|
description: string;
|
|
2353
|
+
numberOfPositions: number;
|
|
2354
|
+
workHours: number;
|
|
2353
2355
|
pay: {
|
|
2354
|
-
rate: number;
|
|
2355
2356
|
rateUnit: "DAILY" | "HOURLY";
|
|
2357
|
+
rate: number;
|
|
2356
2358
|
receivedRate: number;
|
|
2357
2359
|
rateMax?: number | null | undefined;
|
|
2358
2360
|
};
|
|
2359
2361
|
tradeId: string;
|
|
2360
|
-
numberOfPositions: number;
|
|
2361
|
-
workHours: number;
|
|
2362
2362
|
currentCollaboration: {
|
|
2363
2363
|
id: string;
|
|
2364
2364
|
};
|
|
@@ -2372,6 +2372,7 @@ export declare const jobsContractRouter: {
|
|
|
2372
2372
|
}[] | undefined;
|
|
2373
2373
|
}, {
|
|
2374
2374
|
description: string;
|
|
2375
|
+
numberOfPositions: number;
|
|
2375
2376
|
pay: {
|
|
2376
2377
|
rate: number;
|
|
2377
2378
|
receivedRate: number;
|
|
@@ -2379,16 +2380,15 @@ export declare const jobsContractRouter: {
|
|
|
2379
2380
|
rateMax?: number | null | undefined;
|
|
2380
2381
|
};
|
|
2381
2382
|
tradeId: string;
|
|
2382
|
-
numberOfPositions: number;
|
|
2383
2383
|
currentCollaboration: {
|
|
2384
2384
|
id: string;
|
|
2385
2385
|
};
|
|
2386
|
-
status?: "
|
|
2386
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | undefined;
|
|
2387
|
+
workHours?: number | undefined;
|
|
2387
2388
|
location?: {
|
|
2388
2389
|
address?: string | null | undefined;
|
|
2389
2390
|
postcode?: string | null | undefined;
|
|
2390
2391
|
} | undefined;
|
|
2391
|
-
workHours?: number | undefined;
|
|
2392
2392
|
jobQualifications?: {
|
|
2393
2393
|
qualificationId: string;
|
|
2394
2394
|
qualificationTypeId?: string | null | undefined;
|
|
@@ -2508,13 +2508,13 @@ export declare const jobsContractRouter: {
|
|
|
2508
2508
|
rateMax: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
2509
2509
|
receivedRate: z.ZodNumber;
|
|
2510
2510
|
}, "strip", z.ZodTypeAny, {
|
|
2511
|
-
rate: number;
|
|
2512
2511
|
rateUnit: "DAILY" | "HOURLY";
|
|
2512
|
+
rate: number;
|
|
2513
2513
|
receivedRate: number;
|
|
2514
2514
|
rateMax?: number | null | undefined;
|
|
2515
2515
|
}, {
|
|
2516
|
-
rate: number;
|
|
2517
2516
|
rateUnit: "DAILY" | "HOURLY";
|
|
2517
|
+
rate: number;
|
|
2518
2518
|
receivedRate: number;
|
|
2519
2519
|
rateMax?: number | null | undefined;
|
|
2520
2520
|
}>;
|
|
@@ -2565,14 +2565,14 @@ export declare const jobsContractRouter: {
|
|
|
2565
2565
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2566
2566
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2567
2567
|
}, "strip", z.ZodTypeAny, {
|
|
2568
|
-
id: string;
|
|
2569
2568
|
createdAt: string;
|
|
2570
2569
|
updatedAt: string;
|
|
2570
|
+
id: string;
|
|
2571
2571
|
name: string;
|
|
2572
2572
|
}, {
|
|
2573
|
-
id: string;
|
|
2574
2573
|
createdAt: string | Date;
|
|
2575
2574
|
updatedAt: string | Date;
|
|
2575
|
+
id: string;
|
|
2576
2576
|
name: string;
|
|
2577
2577
|
}>>>;
|
|
2578
2578
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -2610,10 +2610,10 @@ export declare const jobsContractRouter: {
|
|
|
2610
2610
|
agentId: string;
|
|
2611
2611
|
}>>>;
|
|
2612
2612
|
}, "strip", z.ZodTypeAny, {
|
|
2613
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2614
|
-
id: string;
|
|
2615
2613
|
createdAt: string;
|
|
2616
2614
|
updatedAt: string;
|
|
2615
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2616
|
+
id: string;
|
|
2617
2617
|
name: string;
|
|
2618
2618
|
crn: string | null;
|
|
2619
2619
|
govLink: string;
|
|
@@ -2630,10 +2630,10 @@ export declare const jobsContractRouter: {
|
|
|
2630
2630
|
agentId: string;
|
|
2631
2631
|
} | null | undefined;
|
|
2632
2632
|
}, {
|
|
2633
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2634
|
-
id: string;
|
|
2635
2633
|
createdAt: string | Date;
|
|
2636
2634
|
updatedAt: string | Date;
|
|
2635
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2636
|
+
id: string;
|
|
2637
2637
|
name: string;
|
|
2638
2638
|
crn: string | null;
|
|
2639
2639
|
govLink: string;
|
|
@@ -2655,15 +2655,15 @@ export declare const jobsContractRouter: {
|
|
|
2655
2655
|
firstName: z.ZodString;
|
|
2656
2656
|
lastName: z.ZodString;
|
|
2657
2657
|
email: z.ZodString;
|
|
2658
|
-
phone: z.
|
|
2658
|
+
phone: z.ZodString;
|
|
2659
2659
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
2660
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
2661
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2662
2662
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2663
2663
|
}, "strip", z.ZodTypeAny, {
|
|
2664
|
-
id: string;
|
|
2665
2664
|
createdAt: string;
|
|
2666
2665
|
updatedAt: string;
|
|
2666
|
+
id: string;
|
|
2667
2667
|
firstName: string;
|
|
2668
2668
|
lastName: string;
|
|
2669
2669
|
email: string;
|
|
@@ -2671,9 +2671,9 @@ export declare const jobsContractRouter: {
|
|
|
2671
2671
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2672
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;
|
|
2673
2673
|
}, {
|
|
2674
|
-
id: string;
|
|
2675
2674
|
createdAt: string | Date;
|
|
2676
2675
|
updatedAt: string | Date;
|
|
2676
|
+
id: string;
|
|
2677
2677
|
firstName: string;
|
|
2678
2678
|
lastName: string;
|
|
2679
2679
|
email: string;
|
|
@@ -2681,7 +2681,7 @@ export declare const jobsContractRouter: {
|
|
|
2681
2681
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2682
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;
|
|
2683
2683
|
}>>>;
|
|
2684
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
2684
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
2685
2685
|
userId: z.ZodString;
|
|
2686
2686
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2687
2687
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -2694,14 +2694,14 @@ export declare const jobsContractRouter: {
|
|
|
2694
2694
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2695
2695
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2696
2696
|
}, "strip", z.ZodTypeAny, {
|
|
2697
|
-
id: string;
|
|
2698
2697
|
createdAt: string;
|
|
2699
2698
|
updatedAt: string;
|
|
2699
|
+
id: string;
|
|
2700
2700
|
name: string;
|
|
2701
2701
|
}, {
|
|
2702
|
-
id: string;
|
|
2703
2702
|
createdAt: string | Date;
|
|
2704
2703
|
updatedAt: string | Date;
|
|
2704
|
+
id: string;
|
|
2705
2705
|
name: string;
|
|
2706
2706
|
}>>>;
|
|
2707
2707
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -2739,10 +2739,10 @@ export declare const jobsContractRouter: {
|
|
|
2739
2739
|
agentId: string;
|
|
2740
2740
|
}>>>;
|
|
2741
2741
|
}, "strip", z.ZodTypeAny, {
|
|
2742
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2743
|
-
id: string;
|
|
2744
2742
|
createdAt: string;
|
|
2745
2743
|
updatedAt: string;
|
|
2744
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2745
|
+
id: string;
|
|
2746
2746
|
name: string;
|
|
2747
2747
|
crn: string | null;
|
|
2748
2748
|
govLink: string;
|
|
@@ -2759,10 +2759,10 @@ export declare const jobsContractRouter: {
|
|
|
2759
2759
|
agentId: string;
|
|
2760
2760
|
} | null | undefined;
|
|
2761
2761
|
}, {
|
|
2762
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2763
|
-
id: string;
|
|
2764
2762
|
createdAt: string | Date;
|
|
2765
2763
|
updatedAt: string | Date;
|
|
2764
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2765
|
+
id: string;
|
|
2766
2766
|
name: string;
|
|
2767
2767
|
crn: string | null;
|
|
2768
2768
|
govLink: string;
|
|
@@ -2784,15 +2784,15 @@ export declare const jobsContractRouter: {
|
|
|
2784
2784
|
firstName: z.ZodString;
|
|
2785
2785
|
lastName: z.ZodString;
|
|
2786
2786
|
email: z.ZodString;
|
|
2787
|
-
phone: z.
|
|
2787
|
+
phone: z.ZodString;
|
|
2788
2788
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
2789
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
2790
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2791
2791
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2792
2792
|
}, "strip", z.ZodTypeAny, {
|
|
2793
|
-
id: string;
|
|
2794
2793
|
createdAt: string;
|
|
2795
2794
|
updatedAt: string;
|
|
2795
|
+
id: string;
|
|
2796
2796
|
firstName: string;
|
|
2797
2797
|
lastName: string;
|
|
2798
2798
|
email: string;
|
|
@@ -2800,9 +2800,9 @@ export declare const jobsContractRouter: {
|
|
|
2800
2800
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2801
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;
|
|
2802
2802
|
}, {
|
|
2803
|
-
id: string;
|
|
2804
2803
|
createdAt: string | Date;
|
|
2805
2804
|
updatedAt: string | Date;
|
|
2805
|
+
id: string;
|
|
2806
2806
|
firstName: string;
|
|
2807
2807
|
lastName: string;
|
|
2808
2808
|
email: string;
|
|
@@ -2810,27 +2810,27 @@ export declare const jobsContractRouter: {
|
|
|
2810
2810
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2811
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;
|
|
2812
2812
|
}>>>;
|
|
2813
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
2813
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
2814
2814
|
userId: z.ZodString;
|
|
2815
2815
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2816
2816
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2817
2817
|
}, "strip", z.ZodTypeAny, {
|
|
2818
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2819
|
-
id: string;
|
|
2820
2818
|
createdAt: string;
|
|
2821
2819
|
updatedAt: string;
|
|
2820
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2821
|
+
id: string;
|
|
2822
2822
|
userId: string;
|
|
2823
2823
|
company?: {
|
|
2824
|
-
id: string;
|
|
2825
2824
|
createdAt: string;
|
|
2826
2825
|
updatedAt: string;
|
|
2826
|
+
id: string;
|
|
2827
2827
|
name: string;
|
|
2828
2828
|
} | null | undefined;
|
|
2829
2829
|
client?: {
|
|
2830
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2831
|
-
id: string;
|
|
2832
2830
|
createdAt: string;
|
|
2833
2831
|
updatedAt: string;
|
|
2832
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2833
|
+
id: string;
|
|
2834
2834
|
name: string;
|
|
2835
2835
|
crn: string | null;
|
|
2836
2836
|
govLink: string;
|
|
@@ -2848,9 +2848,9 @@ export declare const jobsContractRouter: {
|
|
|
2848
2848
|
} | null | undefined;
|
|
2849
2849
|
} | null | undefined;
|
|
2850
2850
|
user?: {
|
|
2851
|
-
id: string;
|
|
2852
2851
|
createdAt: string;
|
|
2853
2852
|
updatedAt: string;
|
|
2853
|
+
id: string;
|
|
2854
2854
|
firstName: string;
|
|
2855
2855
|
lastName: string;
|
|
2856
2856
|
email: string;
|
|
@@ -2859,22 +2859,22 @@ export declare const jobsContractRouter: {
|
|
|
2859
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;
|
|
2860
2860
|
} | null | undefined;
|
|
2861
2861
|
}, {
|
|
2862
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2863
|
-
id: string;
|
|
2864
2862
|
createdAt: string | Date;
|
|
2865
2863
|
updatedAt: string | Date;
|
|
2864
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2865
|
+
id: string;
|
|
2866
2866
|
userId: string;
|
|
2867
2867
|
company?: {
|
|
2868
|
-
id: string;
|
|
2869
2868
|
createdAt: string | Date;
|
|
2870
2869
|
updatedAt: string | Date;
|
|
2870
|
+
id: string;
|
|
2871
2871
|
name: string;
|
|
2872
2872
|
} | null | undefined;
|
|
2873
2873
|
client?: {
|
|
2874
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2875
|
-
id: string;
|
|
2876
2874
|
createdAt: string | Date;
|
|
2877
2875
|
updatedAt: string | Date;
|
|
2876
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2877
|
+
id: string;
|
|
2878
2878
|
name: string;
|
|
2879
2879
|
crn: string | null;
|
|
2880
2880
|
govLink: string;
|
|
@@ -2892,9 +2892,9 @@ export declare const jobsContractRouter: {
|
|
|
2892
2892
|
} | null | undefined;
|
|
2893
2893
|
} | null | undefined;
|
|
2894
2894
|
user?: {
|
|
2895
|
-
id: string;
|
|
2896
2895
|
createdAt: string | Date;
|
|
2897
2896
|
updatedAt: string | Date;
|
|
2897
|
+
id: string;
|
|
2898
2898
|
firstName: string;
|
|
2899
2899
|
lastName: string;
|
|
2900
2900
|
email: string;
|
|
@@ -2904,22 +2904,22 @@ export declare const jobsContractRouter: {
|
|
|
2904
2904
|
} | null | undefined;
|
|
2905
2905
|
}>>>;
|
|
2906
2906
|
}, "strip", z.ZodTypeAny, {
|
|
2907
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2908
|
-
id: string;
|
|
2909
2907
|
createdAt: string;
|
|
2910
2908
|
updatedAt: string;
|
|
2909
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2910
|
+
id: string;
|
|
2911
2911
|
userId: string;
|
|
2912
2912
|
company?: {
|
|
2913
|
-
id: string;
|
|
2914
2913
|
createdAt: string;
|
|
2915
2914
|
updatedAt: string;
|
|
2915
|
+
id: string;
|
|
2916
2916
|
name: string;
|
|
2917
2917
|
} | null | undefined;
|
|
2918
2918
|
client?: {
|
|
2919
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2920
|
-
id: string;
|
|
2921
2919
|
createdAt: string;
|
|
2922
2920
|
updatedAt: string;
|
|
2921
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2922
|
+
id: string;
|
|
2923
2923
|
name: string;
|
|
2924
2924
|
crn: string | null;
|
|
2925
2925
|
govLink: string;
|
|
@@ -2937,9 +2937,9 @@ export declare const jobsContractRouter: {
|
|
|
2937
2937
|
} | null | undefined;
|
|
2938
2938
|
} | null | undefined;
|
|
2939
2939
|
user?: {
|
|
2940
|
-
id: string;
|
|
2941
2940
|
createdAt: string;
|
|
2942
2941
|
updatedAt: string;
|
|
2942
|
+
id: string;
|
|
2943
2943
|
firstName: string;
|
|
2944
2944
|
lastName: string;
|
|
2945
2945
|
email: string;
|
|
@@ -2948,22 +2948,22 @@ export declare const jobsContractRouter: {
|
|
|
2948
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;
|
|
2949
2949
|
} | null | undefined;
|
|
2950
2950
|
newCollaboration?: {
|
|
2951
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2952
|
-
id: string;
|
|
2953
2951
|
createdAt: string;
|
|
2954
2952
|
updatedAt: string;
|
|
2953
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2954
|
+
id: string;
|
|
2955
2955
|
userId: string;
|
|
2956
2956
|
company?: {
|
|
2957
|
-
id: string;
|
|
2958
2957
|
createdAt: string;
|
|
2959
2958
|
updatedAt: string;
|
|
2959
|
+
id: string;
|
|
2960
2960
|
name: string;
|
|
2961
2961
|
} | null | undefined;
|
|
2962
2962
|
client?: {
|
|
2963
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
2964
|
-
id: string;
|
|
2965
2963
|
createdAt: string;
|
|
2966
2964
|
updatedAt: string;
|
|
2965
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2966
|
+
id: string;
|
|
2967
2967
|
name: string;
|
|
2968
2968
|
crn: string | null;
|
|
2969
2969
|
govLink: string;
|
|
@@ -2981,9 +2981,9 @@ export declare const jobsContractRouter: {
|
|
|
2981
2981
|
} | null | undefined;
|
|
2982
2982
|
} | null | undefined;
|
|
2983
2983
|
user?: {
|
|
2984
|
-
id: string;
|
|
2985
2984
|
createdAt: string;
|
|
2986
2985
|
updatedAt: string;
|
|
2986
|
+
id: string;
|
|
2987
2987
|
firstName: string;
|
|
2988
2988
|
lastName: string;
|
|
2989
2989
|
email: string;
|
|
@@ -2993,22 +2993,22 @@ export declare const jobsContractRouter: {
|
|
|
2993
2993
|
} | null | undefined;
|
|
2994
2994
|
} | null | undefined;
|
|
2995
2995
|
}, {
|
|
2996
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2997
|
-
id: string;
|
|
2998
2996
|
createdAt: string | Date;
|
|
2999
2997
|
updatedAt: string | Date;
|
|
2998
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
2999
|
+
id: string;
|
|
3000
3000
|
userId: string;
|
|
3001
3001
|
company?: {
|
|
3002
|
-
id: string;
|
|
3003
3002
|
createdAt: string | Date;
|
|
3004
3003
|
updatedAt: string | Date;
|
|
3004
|
+
id: string;
|
|
3005
3005
|
name: string;
|
|
3006
3006
|
} | null | undefined;
|
|
3007
3007
|
client?: {
|
|
3008
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3009
|
-
id: string;
|
|
3010
3008
|
createdAt: string | Date;
|
|
3011
3009
|
updatedAt: string | Date;
|
|
3010
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3011
|
+
id: string;
|
|
3012
3012
|
name: string;
|
|
3013
3013
|
crn: string | null;
|
|
3014
3014
|
govLink: string;
|
|
@@ -3026,9 +3026,9 @@ export declare const jobsContractRouter: {
|
|
|
3026
3026
|
} | null | undefined;
|
|
3027
3027
|
} | null | undefined;
|
|
3028
3028
|
user?: {
|
|
3029
|
-
id: string;
|
|
3030
3029
|
createdAt: string | Date;
|
|
3031
3030
|
updatedAt: string | Date;
|
|
3031
|
+
id: string;
|
|
3032
3032
|
firstName: string;
|
|
3033
3033
|
lastName: string;
|
|
3034
3034
|
email: string;
|
|
@@ -3037,22 +3037,22 @@ export declare const jobsContractRouter: {
|
|
|
3037
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;
|
|
3038
3038
|
} | null | undefined;
|
|
3039
3039
|
newCollaboration?: {
|
|
3040
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3041
|
-
id: string;
|
|
3042
3040
|
createdAt: string | Date;
|
|
3043
3041
|
updatedAt: string | Date;
|
|
3042
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3043
|
+
id: string;
|
|
3044
3044
|
userId: string;
|
|
3045
3045
|
company?: {
|
|
3046
|
-
id: string;
|
|
3047
3046
|
createdAt: string | Date;
|
|
3048
3047
|
updatedAt: string | Date;
|
|
3048
|
+
id: string;
|
|
3049
3049
|
name: string;
|
|
3050
3050
|
} | null | undefined;
|
|
3051
3051
|
client?: {
|
|
3052
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3053
|
-
id: string;
|
|
3054
3052
|
createdAt: string | Date;
|
|
3055
3053
|
updatedAt: string | Date;
|
|
3054
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3055
|
+
id: string;
|
|
3056
3056
|
name: string;
|
|
3057
3057
|
crn: string | null;
|
|
3058
3058
|
govLink: string;
|
|
@@ -3070,9 +3070,9 @@ export declare const jobsContractRouter: {
|
|
|
3070
3070
|
} | null | undefined;
|
|
3071
3071
|
} | null | undefined;
|
|
3072
3072
|
user?: {
|
|
3073
|
-
id: string;
|
|
3074
3073
|
createdAt: string | Date;
|
|
3075
3074
|
updatedAt: string | Date;
|
|
3075
|
+
id: string;
|
|
3076
3076
|
firstName: string;
|
|
3077
3077
|
lastName: string;
|
|
3078
3078
|
email: string;
|
|
@@ -3085,24 +3085,25 @@ export declare const jobsContractRouter: {
|
|
|
3085
3085
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3086
3086
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3087
3087
|
}, "strip", z.ZodTypeAny, {
|
|
3088
|
-
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
3089
|
-
id: string;
|
|
3090
3088
|
createdAt: string;
|
|
3091
3089
|
updatedAt: string;
|
|
3090
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
3091
|
+
id: string;
|
|
3092
3092
|
description: string;
|
|
3093
|
+
numberOfPositions: number;
|
|
3093
3094
|
pay: {
|
|
3094
|
-
rate: number;
|
|
3095
3095
|
rateUnit: "DAILY" | "HOURLY";
|
|
3096
|
+
rate: number;
|
|
3096
3097
|
receivedRate: number;
|
|
3097
3098
|
rateMax?: number | null | undefined;
|
|
3098
3099
|
};
|
|
3099
3100
|
tradeId: string;
|
|
3100
|
-
numberOfPositions: number;
|
|
3101
3101
|
jobQualifications: {
|
|
3102
3102
|
id: string;
|
|
3103
3103
|
qualificationId: string;
|
|
3104
3104
|
qualificationTypeId?: string | null | undefined;
|
|
3105
3105
|
}[];
|
|
3106
|
+
workHours?: number | null | undefined;
|
|
3106
3107
|
location?: {
|
|
3107
3108
|
address?: string | null | undefined;
|
|
3108
3109
|
postcode?: string | null | undefined;
|
|
@@ -3112,24 +3113,23 @@ export declare const jobsContractRouter: {
|
|
|
3112
3113
|
postTown?: string | null | undefined;
|
|
3113
3114
|
areaCovered?: string | null | undefined;
|
|
3114
3115
|
} | null | undefined;
|
|
3115
|
-
workHours?: number | null | undefined;
|
|
3116
3116
|
currentCollaboration?: {
|
|
3117
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3118
|
-
id: string;
|
|
3119
3117
|
createdAt: string;
|
|
3120
3118
|
updatedAt: string;
|
|
3119
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3120
|
+
id: string;
|
|
3121
3121
|
userId: string;
|
|
3122
3122
|
company?: {
|
|
3123
|
-
id: string;
|
|
3124
3123
|
createdAt: string;
|
|
3125
3124
|
updatedAt: string;
|
|
3125
|
+
id: string;
|
|
3126
3126
|
name: string;
|
|
3127
3127
|
} | null | undefined;
|
|
3128
3128
|
client?: {
|
|
3129
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3130
|
-
id: string;
|
|
3131
3129
|
createdAt: string;
|
|
3132
3130
|
updatedAt: string;
|
|
3131
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3132
|
+
id: string;
|
|
3133
3133
|
name: string;
|
|
3134
3134
|
crn: string | null;
|
|
3135
3135
|
govLink: string;
|
|
@@ -3147,9 +3147,9 @@ export declare const jobsContractRouter: {
|
|
|
3147
3147
|
} | null | undefined;
|
|
3148
3148
|
} | null | undefined;
|
|
3149
3149
|
user?: {
|
|
3150
|
-
id: string;
|
|
3151
3150
|
createdAt: string;
|
|
3152
3151
|
updatedAt: string;
|
|
3152
|
+
id: string;
|
|
3153
3153
|
firstName: string;
|
|
3154
3154
|
lastName: string;
|
|
3155
3155
|
email: string;
|
|
@@ -3158,22 +3158,22 @@ export declare const jobsContractRouter: {
|
|
|
3158
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;
|
|
3159
3159
|
} | null | undefined;
|
|
3160
3160
|
newCollaboration?: {
|
|
3161
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3162
|
-
id: string;
|
|
3163
3161
|
createdAt: string;
|
|
3164
3162
|
updatedAt: string;
|
|
3163
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3164
|
+
id: string;
|
|
3165
3165
|
userId: string;
|
|
3166
3166
|
company?: {
|
|
3167
|
-
id: string;
|
|
3168
3167
|
createdAt: string;
|
|
3169
3168
|
updatedAt: string;
|
|
3169
|
+
id: string;
|
|
3170
3170
|
name: string;
|
|
3171
3171
|
} | null | undefined;
|
|
3172
3172
|
client?: {
|
|
3173
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3174
|
-
id: string;
|
|
3175
3173
|
createdAt: string;
|
|
3176
3174
|
updatedAt: string;
|
|
3175
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3176
|
+
id: string;
|
|
3177
3177
|
name: string;
|
|
3178
3178
|
crn: string | null;
|
|
3179
3179
|
govLink: string;
|
|
@@ -3191,9 +3191,9 @@ export declare const jobsContractRouter: {
|
|
|
3191
3191
|
} | null | undefined;
|
|
3192
3192
|
} | null | undefined;
|
|
3193
3193
|
user?: {
|
|
3194
|
-
id: string;
|
|
3195
3194
|
createdAt: string;
|
|
3196
3195
|
updatedAt: string;
|
|
3196
|
+
id: string;
|
|
3197
3197
|
firstName: string;
|
|
3198
3198
|
lastName: string;
|
|
3199
3199
|
email: string;
|
|
@@ -3204,19 +3204,20 @@ export declare const jobsContractRouter: {
|
|
|
3204
3204
|
} | null | undefined;
|
|
3205
3205
|
} | null | undefined;
|
|
3206
3206
|
}, {
|
|
3207
|
-
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
3208
|
-
id: string;
|
|
3209
3207
|
createdAt: string | Date;
|
|
3210
3208
|
updatedAt: string | Date;
|
|
3209
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
3210
|
+
id: string;
|
|
3211
3211
|
description: string;
|
|
3212
|
+
numberOfPositions: number;
|
|
3212
3213
|
pay: {
|
|
3213
|
-
rate: number;
|
|
3214
3214
|
rateUnit: "DAILY" | "HOURLY";
|
|
3215
|
+
rate: number;
|
|
3215
3216
|
receivedRate: number;
|
|
3216
3217
|
rateMax?: number | null | undefined;
|
|
3217
3218
|
};
|
|
3218
3219
|
tradeId: string;
|
|
3219
|
-
|
|
3220
|
+
workHours?: number | null | undefined;
|
|
3220
3221
|
location?: {
|
|
3221
3222
|
address?: string | null | undefined;
|
|
3222
3223
|
postcode?: string | null | undefined;
|
|
@@ -3226,29 +3227,28 @@ export declare const jobsContractRouter: {
|
|
|
3226
3227
|
postTown?: string | null | undefined;
|
|
3227
3228
|
areaCovered?: string | null | undefined;
|
|
3228
3229
|
} | null | undefined;
|
|
3229
|
-
workHours?: number | null | undefined;
|
|
3230
3230
|
jobQualifications?: {
|
|
3231
3231
|
id: string;
|
|
3232
3232
|
qualificationId: string;
|
|
3233
3233
|
qualificationTypeId?: string | null | undefined;
|
|
3234
3234
|
}[] | undefined;
|
|
3235
3235
|
currentCollaboration?: {
|
|
3236
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3237
|
-
id: string;
|
|
3238
3236
|
createdAt: string | Date;
|
|
3239
3237
|
updatedAt: string | Date;
|
|
3238
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3239
|
+
id: string;
|
|
3240
3240
|
userId: string;
|
|
3241
3241
|
company?: {
|
|
3242
|
-
id: string;
|
|
3243
3242
|
createdAt: string | Date;
|
|
3244
3243
|
updatedAt: string | Date;
|
|
3244
|
+
id: string;
|
|
3245
3245
|
name: string;
|
|
3246
3246
|
} | null | undefined;
|
|
3247
3247
|
client?: {
|
|
3248
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3249
|
-
id: string;
|
|
3250
3248
|
createdAt: string | Date;
|
|
3251
3249
|
updatedAt: string | Date;
|
|
3250
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3251
|
+
id: string;
|
|
3252
3252
|
name: string;
|
|
3253
3253
|
crn: string | null;
|
|
3254
3254
|
govLink: string;
|
|
@@ -3266,9 +3266,9 @@ export declare const jobsContractRouter: {
|
|
|
3266
3266
|
} | null | undefined;
|
|
3267
3267
|
} | null | undefined;
|
|
3268
3268
|
user?: {
|
|
3269
|
-
id: string;
|
|
3270
3269
|
createdAt: string | Date;
|
|
3271
3270
|
updatedAt: string | Date;
|
|
3271
|
+
id: string;
|
|
3272
3272
|
firstName: string;
|
|
3273
3273
|
lastName: string;
|
|
3274
3274
|
email: string;
|
|
@@ -3277,22 +3277,22 @@ export declare const jobsContractRouter: {
|
|
|
3277
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;
|
|
3278
3278
|
} | null | undefined;
|
|
3279
3279
|
newCollaboration?: {
|
|
3280
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3281
|
-
id: string;
|
|
3282
3280
|
createdAt: string | Date;
|
|
3283
3281
|
updatedAt: string | Date;
|
|
3282
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3283
|
+
id: string;
|
|
3284
3284
|
userId: string;
|
|
3285
3285
|
company?: {
|
|
3286
|
-
id: string;
|
|
3287
3286
|
createdAt: string | Date;
|
|
3288
3287
|
updatedAt: string | Date;
|
|
3288
|
+
id: string;
|
|
3289
3289
|
name: string;
|
|
3290
3290
|
} | null | undefined;
|
|
3291
3291
|
client?: {
|
|
3292
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3293
|
-
id: string;
|
|
3294
3292
|
createdAt: string | Date;
|
|
3295
3293
|
updatedAt: string | Date;
|
|
3294
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3295
|
+
id: string;
|
|
3296
3296
|
name: string;
|
|
3297
3297
|
crn: string | null;
|
|
3298
3298
|
govLink: string;
|
|
@@ -3310,9 +3310,9 @@ export declare const jobsContractRouter: {
|
|
|
3310
3310
|
} | null | undefined;
|
|
3311
3311
|
} | null | undefined;
|
|
3312
3312
|
user?: {
|
|
3313
|
-
id: string;
|
|
3314
3313
|
createdAt: string | Date;
|
|
3315
3314
|
updatedAt: string | Date;
|
|
3315
|
+
id: string;
|
|
3316
3316
|
firstName: string;
|
|
3317
3317
|
lastName: string;
|
|
3318
3318
|
email: string;
|
|
@@ -3351,6 +3351,12 @@ export declare const jobsContractRouter: {
|
|
|
3351
3351
|
};
|
|
3352
3352
|
};
|
|
3353
3353
|
findAll: {
|
|
3354
|
+
metadata: {
|
|
3355
|
+
tags: string[];
|
|
3356
|
+
openApi: {
|
|
3357
|
+
operationId: string;
|
|
3358
|
+
};
|
|
3359
|
+
};
|
|
3354
3360
|
query: z.ZodObject<{
|
|
3355
3361
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
3356
3362
|
page: z.ZodDefault<z.ZodNumber>;
|
|
@@ -3397,58 +3403,52 @@ export declare const jobsContractRouter: {
|
|
|
3397
3403
|
}, "strip", z.ZodTypeAny, {
|
|
3398
3404
|
limit: number;
|
|
3399
3405
|
page: number;
|
|
3400
|
-
status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | null | undefined;
|
|
3401
|
-
postcode?: string | null | undefined;
|
|
3402
3406
|
createdAt?: {
|
|
3403
3407
|
from?: string | null | undefined;
|
|
3404
3408
|
to?: string | null | undefined;
|
|
3405
3409
|
} | null | undefined;
|
|
3406
|
-
|
|
3407
|
-
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
3410
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | null | undefined;
|
|
3408
3411
|
userId?: string | null | undefined;
|
|
3409
3412
|
companyId?: string | null | undefined;
|
|
3410
3413
|
clientId?: string | null | undefined;
|
|
3414
|
+
sortBy?: "createdAt" | "updatedAt" | "status" | "description" | "numberOfPositions" | null | undefined;
|
|
3415
|
+
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
3411
3416
|
pay?: {
|
|
3412
3417
|
minRate?: number | null | undefined;
|
|
3413
3418
|
maxRate?: number | null | undefined;
|
|
3414
3419
|
} | null | undefined;
|
|
3420
|
+
postcode?: string | null | undefined;
|
|
3415
3421
|
tradeId?: string | null | undefined;
|
|
3416
|
-
distance?: number | null | undefined;
|
|
3417
3422
|
qualificationFilters?: {
|
|
3418
3423
|
qualificationId?: string | undefined;
|
|
3419
3424
|
qualificationTypeId?: string | undefined;
|
|
3420
3425
|
}[] | undefined;
|
|
3426
|
+
distance?: number | null | undefined;
|
|
3421
3427
|
}, {
|
|
3422
|
-
status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | null | undefined;
|
|
3423
|
-
postcode?: string | null | undefined;
|
|
3424
3428
|
createdAt?: {
|
|
3425
3429
|
from?: string | null | undefined;
|
|
3426
3430
|
to?: string | null | undefined;
|
|
3427
3431
|
} | null | undefined;
|
|
3432
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | null | undefined;
|
|
3433
|
+
userId?: string | null | undefined;
|
|
3428
3434
|
limit?: number | undefined;
|
|
3429
3435
|
page?: number | undefined;
|
|
3430
|
-
sortBy?: "status" | "createdAt" | "updatedAt" | "description" | "numberOfPositions" | null | undefined;
|
|
3431
|
-
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
3432
|
-
userId?: string | null | undefined;
|
|
3433
3436
|
companyId?: string | null | undefined;
|
|
3434
3437
|
clientId?: string | null | undefined;
|
|
3438
|
+
sortBy?: "createdAt" | "updatedAt" | "status" | "description" | "numberOfPositions" | null | undefined;
|
|
3439
|
+
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
3435
3440
|
pay?: {
|
|
3436
3441
|
minRate?: number | null | undefined;
|
|
3437
3442
|
maxRate?: number | null | undefined;
|
|
3438
3443
|
} | null | undefined;
|
|
3444
|
+
postcode?: string | null | undefined;
|
|
3439
3445
|
tradeId?: string | null | undefined;
|
|
3440
|
-
distance?: number | null | undefined;
|
|
3441
3446
|
qualificationFilters?: {
|
|
3442
3447
|
qualificationId?: string | undefined;
|
|
3443
3448
|
qualificationTypeId?: string | undefined;
|
|
3444
3449
|
}[] | undefined;
|
|
3450
|
+
distance?: number | null | undefined;
|
|
3445
3451
|
}>;
|
|
3446
|
-
metadata: {
|
|
3447
|
-
tags: string[];
|
|
3448
|
-
openApi: {
|
|
3449
|
-
operationId: string;
|
|
3450
|
-
};
|
|
3451
|
-
};
|
|
3452
3452
|
summary: "Get all jobs";
|
|
3453
3453
|
method: "GET";
|
|
3454
3454
|
path: "/v2/jobs";
|
|
@@ -3566,13 +3566,13 @@ export declare const jobsContractRouter: {
|
|
|
3566
3566
|
rateMax: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
3567
3567
|
receivedRate: z.ZodNumber;
|
|
3568
3568
|
}, "strip", z.ZodTypeAny, {
|
|
3569
|
-
rate: number;
|
|
3570
3569
|
rateUnit: "DAILY" | "HOURLY";
|
|
3570
|
+
rate: number;
|
|
3571
3571
|
receivedRate: number;
|
|
3572
3572
|
rateMax?: number | null | undefined;
|
|
3573
3573
|
}, {
|
|
3574
|
-
rate: number;
|
|
3575
3574
|
rateUnit: "DAILY" | "HOURLY";
|
|
3575
|
+
rate: number;
|
|
3576
3576
|
receivedRate: number;
|
|
3577
3577
|
rateMax?: number | null | undefined;
|
|
3578
3578
|
}>;
|
|
@@ -3623,14 +3623,14 @@ export declare const jobsContractRouter: {
|
|
|
3623
3623
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3624
3624
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3625
3625
|
}, "strip", z.ZodTypeAny, {
|
|
3626
|
-
id: string;
|
|
3627
3626
|
createdAt: string;
|
|
3628
3627
|
updatedAt: string;
|
|
3628
|
+
id: string;
|
|
3629
3629
|
name: string;
|
|
3630
3630
|
}, {
|
|
3631
|
-
id: string;
|
|
3632
3631
|
createdAt: string | Date;
|
|
3633
3632
|
updatedAt: string | Date;
|
|
3633
|
+
id: string;
|
|
3634
3634
|
name: string;
|
|
3635
3635
|
}>>>;
|
|
3636
3636
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -3668,10 +3668,10 @@ export declare const jobsContractRouter: {
|
|
|
3668
3668
|
agentId: string;
|
|
3669
3669
|
}>>>;
|
|
3670
3670
|
}, "strip", z.ZodTypeAny, {
|
|
3671
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3672
|
-
id: string;
|
|
3673
3671
|
createdAt: string;
|
|
3674
3672
|
updatedAt: string;
|
|
3673
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3674
|
+
id: string;
|
|
3675
3675
|
name: string;
|
|
3676
3676
|
crn: string | null;
|
|
3677
3677
|
govLink: string;
|
|
@@ -3688,10 +3688,10 @@ export declare const jobsContractRouter: {
|
|
|
3688
3688
|
agentId: string;
|
|
3689
3689
|
} | null | undefined;
|
|
3690
3690
|
}, {
|
|
3691
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3692
|
-
id: string;
|
|
3693
3691
|
createdAt: string | Date;
|
|
3694
3692
|
updatedAt: string | Date;
|
|
3693
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3694
|
+
id: string;
|
|
3695
3695
|
name: string;
|
|
3696
3696
|
crn: string | null;
|
|
3697
3697
|
govLink: string;
|
|
@@ -3713,15 +3713,15 @@ export declare const jobsContractRouter: {
|
|
|
3713
3713
|
firstName: z.ZodString;
|
|
3714
3714
|
lastName: z.ZodString;
|
|
3715
3715
|
email: z.ZodString;
|
|
3716
|
-
phone: z.
|
|
3716
|
+
phone: z.ZodString;
|
|
3717
3717
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
3718
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
3719
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3720
3720
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3721
3721
|
}, "strip", z.ZodTypeAny, {
|
|
3722
|
-
id: string;
|
|
3723
3722
|
createdAt: string;
|
|
3724
3723
|
updatedAt: string;
|
|
3724
|
+
id: string;
|
|
3725
3725
|
firstName: string;
|
|
3726
3726
|
lastName: string;
|
|
3727
3727
|
email: string;
|
|
@@ -3729,9 +3729,9 @@ export declare const jobsContractRouter: {
|
|
|
3729
3729
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3730
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;
|
|
3731
3731
|
}, {
|
|
3732
|
-
id: string;
|
|
3733
3732
|
createdAt: string | Date;
|
|
3734
3733
|
updatedAt: string | Date;
|
|
3734
|
+
id: string;
|
|
3735
3735
|
firstName: string;
|
|
3736
3736
|
lastName: string;
|
|
3737
3737
|
email: string;
|
|
@@ -3739,7 +3739,7 @@ export declare const jobsContractRouter: {
|
|
|
3739
3739
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3740
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;
|
|
3741
3741
|
}>>>;
|
|
3742
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
3742
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
3743
3743
|
userId: z.ZodString;
|
|
3744
3744
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3745
3745
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -3752,14 +3752,14 @@ export declare const jobsContractRouter: {
|
|
|
3752
3752
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3753
3753
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3754
3754
|
}, "strip", z.ZodTypeAny, {
|
|
3755
|
-
id: string;
|
|
3756
3755
|
createdAt: string;
|
|
3757
3756
|
updatedAt: string;
|
|
3757
|
+
id: string;
|
|
3758
3758
|
name: string;
|
|
3759
3759
|
}, {
|
|
3760
|
-
id: string;
|
|
3761
3760
|
createdAt: string | Date;
|
|
3762
3761
|
updatedAt: string | Date;
|
|
3762
|
+
id: string;
|
|
3763
3763
|
name: string;
|
|
3764
3764
|
}>>>;
|
|
3765
3765
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -3797,10 +3797,10 @@ export declare const jobsContractRouter: {
|
|
|
3797
3797
|
agentId: string;
|
|
3798
3798
|
}>>>;
|
|
3799
3799
|
}, "strip", z.ZodTypeAny, {
|
|
3800
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3801
|
-
id: string;
|
|
3802
3800
|
createdAt: string;
|
|
3803
3801
|
updatedAt: string;
|
|
3802
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3803
|
+
id: string;
|
|
3804
3804
|
name: string;
|
|
3805
3805
|
crn: string | null;
|
|
3806
3806
|
govLink: string;
|
|
@@ -3817,10 +3817,10 @@ export declare const jobsContractRouter: {
|
|
|
3817
3817
|
agentId: string;
|
|
3818
3818
|
} | null | undefined;
|
|
3819
3819
|
}, {
|
|
3820
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3821
|
-
id: string;
|
|
3822
3820
|
createdAt: string | Date;
|
|
3823
3821
|
updatedAt: string | Date;
|
|
3822
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3823
|
+
id: string;
|
|
3824
3824
|
name: string;
|
|
3825
3825
|
crn: string | null;
|
|
3826
3826
|
govLink: string;
|
|
@@ -3842,15 +3842,15 @@ export declare const jobsContractRouter: {
|
|
|
3842
3842
|
firstName: z.ZodString;
|
|
3843
3843
|
lastName: z.ZodString;
|
|
3844
3844
|
email: z.ZodString;
|
|
3845
|
-
phone: z.
|
|
3845
|
+
phone: z.ZodString;
|
|
3846
3846
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
3847
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
3848
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3849
3849
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3850
3850
|
}, "strip", z.ZodTypeAny, {
|
|
3851
|
-
id: string;
|
|
3852
3851
|
createdAt: string;
|
|
3853
3852
|
updatedAt: string;
|
|
3853
|
+
id: string;
|
|
3854
3854
|
firstName: string;
|
|
3855
3855
|
lastName: string;
|
|
3856
3856
|
email: string;
|
|
@@ -3858,9 +3858,9 @@ export declare const jobsContractRouter: {
|
|
|
3858
3858
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3859
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;
|
|
3860
3860
|
}, {
|
|
3861
|
-
id: string;
|
|
3862
3861
|
createdAt: string | Date;
|
|
3863
3862
|
updatedAt: string | Date;
|
|
3863
|
+
id: string;
|
|
3864
3864
|
firstName: string;
|
|
3865
3865
|
lastName: string;
|
|
3866
3866
|
email: string;
|
|
@@ -3868,27 +3868,27 @@ export declare const jobsContractRouter: {
|
|
|
3868
3868
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3869
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;
|
|
3870
3870
|
}>>>;
|
|
3871
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
3871
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
3872
3872
|
userId: z.ZodString;
|
|
3873
3873
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3874
3874
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3875
3875
|
}, "strip", z.ZodTypeAny, {
|
|
3876
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3877
|
-
id: string;
|
|
3878
3876
|
createdAt: string;
|
|
3879
3877
|
updatedAt: string;
|
|
3878
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3879
|
+
id: string;
|
|
3880
3880
|
userId: string;
|
|
3881
3881
|
company?: {
|
|
3882
|
-
id: string;
|
|
3883
3882
|
createdAt: string;
|
|
3884
3883
|
updatedAt: string;
|
|
3884
|
+
id: string;
|
|
3885
3885
|
name: string;
|
|
3886
3886
|
} | null | undefined;
|
|
3887
3887
|
client?: {
|
|
3888
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3889
|
-
id: string;
|
|
3890
3888
|
createdAt: string;
|
|
3891
3889
|
updatedAt: string;
|
|
3890
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3891
|
+
id: string;
|
|
3892
3892
|
name: string;
|
|
3893
3893
|
crn: string | null;
|
|
3894
3894
|
govLink: string;
|
|
@@ -3906,9 +3906,9 @@ export declare const jobsContractRouter: {
|
|
|
3906
3906
|
} | null | undefined;
|
|
3907
3907
|
} | null | undefined;
|
|
3908
3908
|
user?: {
|
|
3909
|
-
id: string;
|
|
3910
3909
|
createdAt: string;
|
|
3911
3910
|
updatedAt: string;
|
|
3911
|
+
id: string;
|
|
3912
3912
|
firstName: string;
|
|
3913
3913
|
lastName: string;
|
|
3914
3914
|
email: string;
|
|
@@ -3917,22 +3917,22 @@ export declare const jobsContractRouter: {
|
|
|
3917
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;
|
|
3918
3918
|
} | null | undefined;
|
|
3919
3919
|
}, {
|
|
3920
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3921
|
-
id: string;
|
|
3922
3920
|
createdAt: string | Date;
|
|
3923
3921
|
updatedAt: string | Date;
|
|
3922
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3923
|
+
id: string;
|
|
3924
3924
|
userId: string;
|
|
3925
3925
|
company?: {
|
|
3926
|
-
id: string;
|
|
3927
3926
|
createdAt: string | Date;
|
|
3928
3927
|
updatedAt: string | Date;
|
|
3928
|
+
id: string;
|
|
3929
3929
|
name: string;
|
|
3930
3930
|
} | null | undefined;
|
|
3931
3931
|
client?: {
|
|
3932
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3933
|
-
id: string;
|
|
3934
3932
|
createdAt: string | Date;
|
|
3935
3933
|
updatedAt: string | Date;
|
|
3934
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3935
|
+
id: string;
|
|
3936
3936
|
name: string;
|
|
3937
3937
|
crn: string | null;
|
|
3938
3938
|
govLink: string;
|
|
@@ -3950,9 +3950,9 @@ export declare const jobsContractRouter: {
|
|
|
3950
3950
|
} | null | undefined;
|
|
3951
3951
|
} | null | undefined;
|
|
3952
3952
|
user?: {
|
|
3953
|
-
id: string;
|
|
3954
3953
|
createdAt: string | Date;
|
|
3955
3954
|
updatedAt: string | Date;
|
|
3955
|
+
id: string;
|
|
3956
3956
|
firstName: string;
|
|
3957
3957
|
lastName: string;
|
|
3958
3958
|
email: string;
|
|
@@ -3962,22 +3962,22 @@ export declare const jobsContractRouter: {
|
|
|
3962
3962
|
} | null | undefined;
|
|
3963
3963
|
}>>>;
|
|
3964
3964
|
}, "strip", z.ZodTypeAny, {
|
|
3965
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3966
|
-
id: string;
|
|
3967
3965
|
createdAt: string;
|
|
3968
3966
|
updatedAt: string;
|
|
3967
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
3968
|
+
id: string;
|
|
3969
3969
|
userId: string;
|
|
3970
3970
|
company?: {
|
|
3971
|
-
id: string;
|
|
3972
3971
|
createdAt: string;
|
|
3973
3972
|
updatedAt: string;
|
|
3973
|
+
id: string;
|
|
3974
3974
|
name: string;
|
|
3975
3975
|
} | null | undefined;
|
|
3976
3976
|
client?: {
|
|
3977
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
3978
|
-
id: string;
|
|
3979
3977
|
createdAt: string;
|
|
3980
3978
|
updatedAt: string;
|
|
3979
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3980
|
+
id: string;
|
|
3981
3981
|
name: string;
|
|
3982
3982
|
crn: string | null;
|
|
3983
3983
|
govLink: string;
|
|
@@ -3995,9 +3995,9 @@ export declare const jobsContractRouter: {
|
|
|
3995
3995
|
} | null | undefined;
|
|
3996
3996
|
} | null | undefined;
|
|
3997
3997
|
user?: {
|
|
3998
|
-
id: string;
|
|
3999
3998
|
createdAt: string;
|
|
4000
3999
|
updatedAt: string;
|
|
4000
|
+
id: string;
|
|
4001
4001
|
firstName: string;
|
|
4002
4002
|
lastName: string;
|
|
4003
4003
|
email: string;
|
|
@@ -4006,22 +4006,22 @@ export declare const jobsContractRouter: {
|
|
|
4006
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;
|
|
4007
4007
|
} | null | undefined;
|
|
4008
4008
|
newCollaboration?: {
|
|
4009
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4010
|
-
id: string;
|
|
4011
4009
|
createdAt: string;
|
|
4012
4010
|
updatedAt: string;
|
|
4011
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4012
|
+
id: string;
|
|
4013
4013
|
userId: string;
|
|
4014
4014
|
company?: {
|
|
4015
|
-
id: string;
|
|
4016
4015
|
createdAt: string;
|
|
4017
4016
|
updatedAt: string;
|
|
4017
|
+
id: string;
|
|
4018
4018
|
name: string;
|
|
4019
4019
|
} | null | undefined;
|
|
4020
4020
|
client?: {
|
|
4021
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4022
|
-
id: string;
|
|
4023
4021
|
createdAt: string;
|
|
4024
4022
|
updatedAt: string;
|
|
4023
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4024
|
+
id: string;
|
|
4025
4025
|
name: string;
|
|
4026
4026
|
crn: string | null;
|
|
4027
4027
|
govLink: string;
|
|
@@ -4039,9 +4039,9 @@ export declare const jobsContractRouter: {
|
|
|
4039
4039
|
} | null | undefined;
|
|
4040
4040
|
} | null | undefined;
|
|
4041
4041
|
user?: {
|
|
4042
|
-
id: string;
|
|
4043
4042
|
createdAt: string;
|
|
4044
4043
|
updatedAt: string;
|
|
4044
|
+
id: string;
|
|
4045
4045
|
firstName: string;
|
|
4046
4046
|
lastName: string;
|
|
4047
4047
|
email: string;
|
|
@@ -4051,22 +4051,22 @@ export declare const jobsContractRouter: {
|
|
|
4051
4051
|
} | null | undefined;
|
|
4052
4052
|
} | null | undefined;
|
|
4053
4053
|
}, {
|
|
4054
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4055
|
-
id: string;
|
|
4056
4054
|
createdAt: string | Date;
|
|
4057
4055
|
updatedAt: string | Date;
|
|
4056
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4057
|
+
id: string;
|
|
4058
4058
|
userId: string;
|
|
4059
4059
|
company?: {
|
|
4060
|
-
id: string;
|
|
4061
4060
|
createdAt: string | Date;
|
|
4062
4061
|
updatedAt: string | Date;
|
|
4062
|
+
id: string;
|
|
4063
4063
|
name: string;
|
|
4064
4064
|
} | null | undefined;
|
|
4065
4065
|
client?: {
|
|
4066
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4067
|
-
id: string;
|
|
4068
4066
|
createdAt: string | Date;
|
|
4069
4067
|
updatedAt: string | Date;
|
|
4068
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4069
|
+
id: string;
|
|
4070
4070
|
name: string;
|
|
4071
4071
|
crn: string | null;
|
|
4072
4072
|
govLink: string;
|
|
@@ -4084,9 +4084,9 @@ export declare const jobsContractRouter: {
|
|
|
4084
4084
|
} | null | undefined;
|
|
4085
4085
|
} | null | undefined;
|
|
4086
4086
|
user?: {
|
|
4087
|
-
id: string;
|
|
4088
4087
|
createdAt: string | Date;
|
|
4089
4088
|
updatedAt: string | Date;
|
|
4089
|
+
id: string;
|
|
4090
4090
|
firstName: string;
|
|
4091
4091
|
lastName: string;
|
|
4092
4092
|
email: string;
|
|
@@ -4095,22 +4095,22 @@ export declare const jobsContractRouter: {
|
|
|
4095
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;
|
|
4096
4096
|
} | null | undefined;
|
|
4097
4097
|
newCollaboration?: {
|
|
4098
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4099
|
-
id: string;
|
|
4100
4098
|
createdAt: string | Date;
|
|
4101
4099
|
updatedAt: string | Date;
|
|
4100
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4101
|
+
id: string;
|
|
4102
4102
|
userId: string;
|
|
4103
4103
|
company?: {
|
|
4104
|
-
id: string;
|
|
4105
4104
|
createdAt: string | Date;
|
|
4106
4105
|
updatedAt: string | Date;
|
|
4106
|
+
id: string;
|
|
4107
4107
|
name: string;
|
|
4108
4108
|
} | null | undefined;
|
|
4109
4109
|
client?: {
|
|
4110
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4111
|
-
id: string;
|
|
4112
4110
|
createdAt: string | Date;
|
|
4113
4111
|
updatedAt: string | Date;
|
|
4112
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4113
|
+
id: string;
|
|
4114
4114
|
name: string;
|
|
4115
4115
|
crn: string | null;
|
|
4116
4116
|
govLink: string;
|
|
@@ -4128,9 +4128,9 @@ export declare const jobsContractRouter: {
|
|
|
4128
4128
|
} | null | undefined;
|
|
4129
4129
|
} | null | undefined;
|
|
4130
4130
|
user?: {
|
|
4131
|
-
id: string;
|
|
4132
4131
|
createdAt: string | Date;
|
|
4133
4132
|
updatedAt: string | Date;
|
|
4133
|
+
id: string;
|
|
4134
4134
|
firstName: string;
|
|
4135
4135
|
lastName: string;
|
|
4136
4136
|
email: string;
|
|
@@ -4143,24 +4143,25 @@ export declare const jobsContractRouter: {
|
|
|
4143
4143
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4144
4144
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4145
4145
|
}, "strip", z.ZodTypeAny, {
|
|
4146
|
-
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
4147
|
-
id: string;
|
|
4148
4146
|
createdAt: string;
|
|
4149
4147
|
updatedAt: string;
|
|
4148
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
4149
|
+
id: string;
|
|
4150
4150
|
description: string;
|
|
4151
|
+
numberOfPositions: number;
|
|
4151
4152
|
pay: {
|
|
4152
|
-
rate: number;
|
|
4153
4153
|
rateUnit: "DAILY" | "HOURLY";
|
|
4154
|
+
rate: number;
|
|
4154
4155
|
receivedRate: number;
|
|
4155
4156
|
rateMax?: number | null | undefined;
|
|
4156
4157
|
};
|
|
4157
4158
|
tradeId: string;
|
|
4158
|
-
numberOfPositions: number;
|
|
4159
4159
|
jobQualifications: {
|
|
4160
4160
|
id: string;
|
|
4161
4161
|
qualificationId: string;
|
|
4162
4162
|
qualificationTypeId?: string | null | undefined;
|
|
4163
4163
|
}[];
|
|
4164
|
+
workHours?: number | null | undefined;
|
|
4164
4165
|
location?: {
|
|
4165
4166
|
address?: string | null | undefined;
|
|
4166
4167
|
postcode?: string | null | undefined;
|
|
@@ -4170,24 +4171,23 @@ export declare const jobsContractRouter: {
|
|
|
4170
4171
|
postTown?: string | null | undefined;
|
|
4171
4172
|
areaCovered?: string | null | undefined;
|
|
4172
4173
|
} | null | undefined;
|
|
4173
|
-
workHours?: number | null | undefined;
|
|
4174
4174
|
currentCollaboration?: {
|
|
4175
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4176
|
-
id: string;
|
|
4177
4175
|
createdAt: string;
|
|
4178
4176
|
updatedAt: string;
|
|
4177
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4178
|
+
id: string;
|
|
4179
4179
|
userId: string;
|
|
4180
4180
|
company?: {
|
|
4181
|
-
id: string;
|
|
4182
4181
|
createdAt: string;
|
|
4183
4182
|
updatedAt: string;
|
|
4183
|
+
id: string;
|
|
4184
4184
|
name: string;
|
|
4185
4185
|
} | null | undefined;
|
|
4186
4186
|
client?: {
|
|
4187
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4188
|
-
id: string;
|
|
4189
4187
|
createdAt: string;
|
|
4190
4188
|
updatedAt: string;
|
|
4189
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4190
|
+
id: string;
|
|
4191
4191
|
name: string;
|
|
4192
4192
|
crn: string | null;
|
|
4193
4193
|
govLink: string;
|
|
@@ -4205,9 +4205,9 @@ export declare const jobsContractRouter: {
|
|
|
4205
4205
|
} | null | undefined;
|
|
4206
4206
|
} | null | undefined;
|
|
4207
4207
|
user?: {
|
|
4208
|
-
id: string;
|
|
4209
4208
|
createdAt: string;
|
|
4210
4209
|
updatedAt: string;
|
|
4210
|
+
id: string;
|
|
4211
4211
|
firstName: string;
|
|
4212
4212
|
lastName: string;
|
|
4213
4213
|
email: string;
|
|
@@ -4216,22 +4216,22 @@ export declare const jobsContractRouter: {
|
|
|
4216
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;
|
|
4217
4217
|
} | null | undefined;
|
|
4218
4218
|
newCollaboration?: {
|
|
4219
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4220
|
-
id: string;
|
|
4221
4219
|
createdAt: string;
|
|
4222
4220
|
updatedAt: string;
|
|
4221
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4222
|
+
id: string;
|
|
4223
4223
|
userId: string;
|
|
4224
4224
|
company?: {
|
|
4225
|
-
id: string;
|
|
4226
4225
|
createdAt: string;
|
|
4227
4226
|
updatedAt: string;
|
|
4227
|
+
id: string;
|
|
4228
4228
|
name: string;
|
|
4229
4229
|
} | null | undefined;
|
|
4230
4230
|
client?: {
|
|
4231
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4232
|
-
id: string;
|
|
4233
4231
|
createdAt: string;
|
|
4234
4232
|
updatedAt: string;
|
|
4233
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4234
|
+
id: string;
|
|
4235
4235
|
name: string;
|
|
4236
4236
|
crn: string | null;
|
|
4237
4237
|
govLink: string;
|
|
@@ -4249,9 +4249,9 @@ export declare const jobsContractRouter: {
|
|
|
4249
4249
|
} | null | undefined;
|
|
4250
4250
|
} | null | undefined;
|
|
4251
4251
|
user?: {
|
|
4252
|
-
id: string;
|
|
4253
4252
|
createdAt: string;
|
|
4254
4253
|
updatedAt: string;
|
|
4254
|
+
id: string;
|
|
4255
4255
|
firstName: string;
|
|
4256
4256
|
lastName: string;
|
|
4257
4257
|
email: string;
|
|
@@ -4262,19 +4262,20 @@ export declare const jobsContractRouter: {
|
|
|
4262
4262
|
} | null | undefined;
|
|
4263
4263
|
} | null | undefined;
|
|
4264
4264
|
}, {
|
|
4265
|
-
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
4266
|
-
id: string;
|
|
4267
4265
|
createdAt: string | Date;
|
|
4268
4266
|
updatedAt: string | Date;
|
|
4267
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
4268
|
+
id: string;
|
|
4269
4269
|
description: string;
|
|
4270
|
+
numberOfPositions: number;
|
|
4270
4271
|
pay: {
|
|
4271
|
-
rate: number;
|
|
4272
4272
|
rateUnit: "DAILY" | "HOURLY";
|
|
4273
|
+
rate: number;
|
|
4273
4274
|
receivedRate: number;
|
|
4274
4275
|
rateMax?: number | null | undefined;
|
|
4275
4276
|
};
|
|
4276
4277
|
tradeId: string;
|
|
4277
|
-
|
|
4278
|
+
workHours?: number | null | undefined;
|
|
4278
4279
|
location?: {
|
|
4279
4280
|
address?: string | null | undefined;
|
|
4280
4281
|
postcode?: string | null | undefined;
|
|
@@ -4284,29 +4285,28 @@ export declare const jobsContractRouter: {
|
|
|
4284
4285
|
postTown?: string | null | undefined;
|
|
4285
4286
|
areaCovered?: string | null | undefined;
|
|
4286
4287
|
} | null | undefined;
|
|
4287
|
-
workHours?: number | null | undefined;
|
|
4288
4288
|
jobQualifications?: {
|
|
4289
4289
|
id: string;
|
|
4290
4290
|
qualificationId: string;
|
|
4291
4291
|
qualificationTypeId?: string | null | undefined;
|
|
4292
4292
|
}[] | undefined;
|
|
4293
4293
|
currentCollaboration?: {
|
|
4294
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4295
|
-
id: string;
|
|
4296
4294
|
createdAt: string | Date;
|
|
4297
4295
|
updatedAt: string | Date;
|
|
4296
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4297
|
+
id: string;
|
|
4298
4298
|
userId: string;
|
|
4299
4299
|
company?: {
|
|
4300
|
-
id: string;
|
|
4301
4300
|
createdAt: string | Date;
|
|
4302
4301
|
updatedAt: string | Date;
|
|
4302
|
+
id: string;
|
|
4303
4303
|
name: string;
|
|
4304
4304
|
} | null | undefined;
|
|
4305
4305
|
client?: {
|
|
4306
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4307
|
-
id: string;
|
|
4308
4306
|
createdAt: string | Date;
|
|
4309
4307
|
updatedAt: string | Date;
|
|
4308
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4309
|
+
id: string;
|
|
4310
4310
|
name: string;
|
|
4311
4311
|
crn: string | null;
|
|
4312
4312
|
govLink: string;
|
|
@@ -4324,9 +4324,9 @@ export declare const jobsContractRouter: {
|
|
|
4324
4324
|
} | null | undefined;
|
|
4325
4325
|
} | null | undefined;
|
|
4326
4326
|
user?: {
|
|
4327
|
-
id: string;
|
|
4328
4327
|
createdAt: string | Date;
|
|
4329
4328
|
updatedAt: string | Date;
|
|
4329
|
+
id: string;
|
|
4330
4330
|
firstName: string;
|
|
4331
4331
|
lastName: string;
|
|
4332
4332
|
email: string;
|
|
@@ -4335,22 +4335,22 @@ export declare const jobsContractRouter: {
|
|
|
4335
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;
|
|
4336
4336
|
} | null | undefined;
|
|
4337
4337
|
newCollaboration?: {
|
|
4338
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4339
|
-
id: string;
|
|
4340
4338
|
createdAt: string | Date;
|
|
4341
4339
|
updatedAt: string | Date;
|
|
4340
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4341
|
+
id: string;
|
|
4342
4342
|
userId: string;
|
|
4343
4343
|
company?: {
|
|
4344
|
-
id: string;
|
|
4345
4344
|
createdAt: string | Date;
|
|
4346
4345
|
updatedAt: string | Date;
|
|
4346
|
+
id: string;
|
|
4347
4347
|
name: string;
|
|
4348
4348
|
} | null | undefined;
|
|
4349
4349
|
client?: {
|
|
4350
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4351
|
-
id: string;
|
|
4352
4350
|
createdAt: string | Date;
|
|
4353
4351
|
updatedAt: string | Date;
|
|
4352
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4353
|
+
id: string;
|
|
4354
4354
|
name: string;
|
|
4355
4355
|
crn: string | null;
|
|
4356
4356
|
govLink: string;
|
|
@@ -4368,9 +4368,9 @@ export declare const jobsContractRouter: {
|
|
|
4368
4368
|
} | null | undefined;
|
|
4369
4369
|
} | null | undefined;
|
|
4370
4370
|
user?: {
|
|
4371
|
-
id: string;
|
|
4372
4371
|
createdAt: string | Date;
|
|
4373
4372
|
updatedAt: string | Date;
|
|
4373
|
+
id: string;
|
|
4374
4374
|
firstName: string;
|
|
4375
4375
|
lastName: string;
|
|
4376
4376
|
email: string;
|
|
@@ -4389,24 +4389,25 @@ export declare const jobsContractRouter: {
|
|
|
4389
4389
|
}, "strip", z.ZodTypeAny, {
|
|
4390
4390
|
limit: number;
|
|
4391
4391
|
items: {
|
|
4392
|
-
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
4393
|
-
id: string;
|
|
4394
4392
|
createdAt: string;
|
|
4395
4393
|
updatedAt: string;
|
|
4394
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
4395
|
+
id: string;
|
|
4396
4396
|
description: string;
|
|
4397
|
+
numberOfPositions: number;
|
|
4397
4398
|
pay: {
|
|
4398
|
-
rate: number;
|
|
4399
4399
|
rateUnit: "DAILY" | "HOURLY";
|
|
4400
|
+
rate: number;
|
|
4400
4401
|
receivedRate: number;
|
|
4401
4402
|
rateMax?: number | null | undefined;
|
|
4402
4403
|
};
|
|
4403
4404
|
tradeId: string;
|
|
4404
|
-
numberOfPositions: number;
|
|
4405
4405
|
jobQualifications: {
|
|
4406
4406
|
id: string;
|
|
4407
4407
|
qualificationId: string;
|
|
4408
4408
|
qualificationTypeId?: string | null | undefined;
|
|
4409
4409
|
}[];
|
|
4410
|
+
workHours?: number | null | undefined;
|
|
4410
4411
|
location?: {
|
|
4411
4412
|
address?: string | null | undefined;
|
|
4412
4413
|
postcode?: string | null | undefined;
|
|
@@ -4416,24 +4417,23 @@ export declare const jobsContractRouter: {
|
|
|
4416
4417
|
postTown?: string | null | undefined;
|
|
4417
4418
|
areaCovered?: string | null | undefined;
|
|
4418
4419
|
} | null | undefined;
|
|
4419
|
-
workHours?: number | null | undefined;
|
|
4420
4420
|
currentCollaboration?: {
|
|
4421
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4422
|
-
id: string;
|
|
4423
4421
|
createdAt: string;
|
|
4424
4422
|
updatedAt: string;
|
|
4423
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4424
|
+
id: string;
|
|
4425
4425
|
userId: string;
|
|
4426
4426
|
company?: {
|
|
4427
|
-
id: string;
|
|
4428
4427
|
createdAt: string;
|
|
4429
4428
|
updatedAt: string;
|
|
4429
|
+
id: string;
|
|
4430
4430
|
name: string;
|
|
4431
4431
|
} | null | undefined;
|
|
4432
4432
|
client?: {
|
|
4433
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4434
|
-
id: string;
|
|
4435
4433
|
createdAt: string;
|
|
4436
4434
|
updatedAt: string;
|
|
4435
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4436
|
+
id: string;
|
|
4437
4437
|
name: string;
|
|
4438
4438
|
crn: string | null;
|
|
4439
4439
|
govLink: string;
|
|
@@ -4451,9 +4451,9 @@ export declare const jobsContractRouter: {
|
|
|
4451
4451
|
} | null | undefined;
|
|
4452
4452
|
} | null | undefined;
|
|
4453
4453
|
user?: {
|
|
4454
|
-
id: string;
|
|
4455
4454
|
createdAt: string;
|
|
4456
4455
|
updatedAt: string;
|
|
4456
|
+
id: string;
|
|
4457
4457
|
firstName: string;
|
|
4458
4458
|
lastName: string;
|
|
4459
4459
|
email: string;
|
|
@@ -4462,22 +4462,22 @@ export declare const jobsContractRouter: {
|
|
|
4462
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;
|
|
4463
4463
|
} | null | undefined;
|
|
4464
4464
|
newCollaboration?: {
|
|
4465
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4466
|
-
id: string;
|
|
4467
4465
|
createdAt: string;
|
|
4468
4466
|
updatedAt: string;
|
|
4467
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4468
|
+
id: string;
|
|
4469
4469
|
userId: string;
|
|
4470
4470
|
company?: {
|
|
4471
|
-
id: string;
|
|
4472
4471
|
createdAt: string;
|
|
4473
4472
|
updatedAt: string;
|
|
4473
|
+
id: string;
|
|
4474
4474
|
name: string;
|
|
4475
4475
|
} | null | undefined;
|
|
4476
4476
|
client?: {
|
|
4477
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4478
|
-
id: string;
|
|
4479
4477
|
createdAt: string;
|
|
4480
4478
|
updatedAt: string;
|
|
4479
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4480
|
+
id: string;
|
|
4481
4481
|
name: string;
|
|
4482
4482
|
crn: string | null;
|
|
4483
4483
|
govLink: string;
|
|
@@ -4495,9 +4495,9 @@ export declare const jobsContractRouter: {
|
|
|
4495
4495
|
} | null | undefined;
|
|
4496
4496
|
} | null | undefined;
|
|
4497
4497
|
user?: {
|
|
4498
|
-
id: string;
|
|
4499
4498
|
createdAt: string;
|
|
4500
4499
|
updatedAt: string;
|
|
4500
|
+
id: string;
|
|
4501
4501
|
firstName: string;
|
|
4502
4502
|
lastName: string;
|
|
4503
4503
|
email: string;
|
|
@@ -4515,19 +4515,20 @@ export declare const jobsContractRouter: {
|
|
|
4515
4515
|
}, {
|
|
4516
4516
|
limit: number;
|
|
4517
4517
|
items: {
|
|
4518
|
-
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
4519
|
-
id: string;
|
|
4520
4518
|
createdAt: string | Date;
|
|
4521
4519
|
updatedAt: string | Date;
|
|
4520
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
4521
|
+
id: string;
|
|
4522
4522
|
description: string;
|
|
4523
|
+
numberOfPositions: number;
|
|
4523
4524
|
pay: {
|
|
4524
|
-
rate: number;
|
|
4525
4525
|
rateUnit: "DAILY" | "HOURLY";
|
|
4526
|
+
rate: number;
|
|
4526
4527
|
receivedRate: number;
|
|
4527
4528
|
rateMax?: number | null | undefined;
|
|
4528
4529
|
};
|
|
4529
4530
|
tradeId: string;
|
|
4530
|
-
|
|
4531
|
+
workHours?: number | null | undefined;
|
|
4531
4532
|
location?: {
|
|
4532
4533
|
address?: string | null | undefined;
|
|
4533
4534
|
postcode?: string | null | undefined;
|
|
@@ -4537,29 +4538,28 @@ export declare const jobsContractRouter: {
|
|
|
4537
4538
|
postTown?: string | null | undefined;
|
|
4538
4539
|
areaCovered?: string | null | undefined;
|
|
4539
4540
|
} | null | undefined;
|
|
4540
|
-
workHours?: number | null | undefined;
|
|
4541
4541
|
jobQualifications?: {
|
|
4542
4542
|
id: string;
|
|
4543
4543
|
qualificationId: string;
|
|
4544
4544
|
qualificationTypeId?: string | null | undefined;
|
|
4545
4545
|
}[] | undefined;
|
|
4546
4546
|
currentCollaboration?: {
|
|
4547
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4548
|
-
id: string;
|
|
4549
4547
|
createdAt: string | Date;
|
|
4550
4548
|
updatedAt: string | Date;
|
|
4549
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4550
|
+
id: string;
|
|
4551
4551
|
userId: string;
|
|
4552
4552
|
company?: {
|
|
4553
|
-
id: string;
|
|
4554
4553
|
createdAt: string | Date;
|
|
4555
4554
|
updatedAt: string | Date;
|
|
4555
|
+
id: string;
|
|
4556
4556
|
name: string;
|
|
4557
4557
|
} | null | undefined;
|
|
4558
4558
|
client?: {
|
|
4559
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4560
|
-
id: string;
|
|
4561
4559
|
createdAt: string | Date;
|
|
4562
4560
|
updatedAt: string | Date;
|
|
4561
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4562
|
+
id: string;
|
|
4563
4563
|
name: string;
|
|
4564
4564
|
crn: string | null;
|
|
4565
4565
|
govLink: string;
|
|
@@ -4577,9 +4577,9 @@ export declare const jobsContractRouter: {
|
|
|
4577
4577
|
} | null | undefined;
|
|
4578
4578
|
} | null | undefined;
|
|
4579
4579
|
user?: {
|
|
4580
|
-
id: string;
|
|
4581
4580
|
createdAt: string | Date;
|
|
4582
4581
|
updatedAt: string | Date;
|
|
4582
|
+
id: string;
|
|
4583
4583
|
firstName: string;
|
|
4584
4584
|
lastName: string;
|
|
4585
4585
|
email: string;
|
|
@@ -4588,22 +4588,22 @@ export declare const jobsContractRouter: {
|
|
|
4588
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;
|
|
4589
4589
|
} | null | undefined;
|
|
4590
4590
|
newCollaboration?: {
|
|
4591
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4592
|
-
id: string;
|
|
4593
4591
|
createdAt: string | Date;
|
|
4594
4592
|
updatedAt: string | Date;
|
|
4593
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
4594
|
+
id: string;
|
|
4595
4595
|
userId: string;
|
|
4596
4596
|
company?: {
|
|
4597
|
-
id: string;
|
|
4598
4597
|
createdAt: string | Date;
|
|
4599
4598
|
updatedAt: string | Date;
|
|
4599
|
+
id: string;
|
|
4600
4600
|
name: string;
|
|
4601
4601
|
} | null | undefined;
|
|
4602
4602
|
client?: {
|
|
4603
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4604
|
-
id: string;
|
|
4605
4603
|
createdAt: string | Date;
|
|
4606
4604
|
updatedAt: string | Date;
|
|
4605
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4606
|
+
id: string;
|
|
4607
4607
|
name: string;
|
|
4608
4608
|
crn: string | null;
|
|
4609
4609
|
govLink: string;
|
|
@@ -4621,9 +4621,9 @@ export declare const jobsContractRouter: {
|
|
|
4621
4621
|
} | null | undefined;
|
|
4622
4622
|
} | null | undefined;
|
|
4623
4623
|
user?: {
|
|
4624
|
-
id: string;
|
|
4625
4624
|
createdAt: string | Date;
|
|
4626
4625
|
updatedAt: string | Date;
|
|
4626
|
+
id: string;
|
|
4627
4627
|
firstName: string;
|
|
4628
4628
|
lastName: string;
|
|
4629
4629
|
email: string;
|
|
@@ -4771,13 +4771,13 @@ export declare const jobsContractRouter: {
|
|
|
4771
4771
|
rateMax: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
4772
4772
|
receivedRate: z.ZodNumber;
|
|
4773
4773
|
}, "strip", z.ZodTypeAny, {
|
|
4774
|
-
rate: number;
|
|
4775
4774
|
rateUnit: "DAILY" | "HOURLY";
|
|
4775
|
+
rate: number;
|
|
4776
4776
|
receivedRate: number;
|
|
4777
4777
|
rateMax?: number | null | undefined;
|
|
4778
4778
|
}, {
|
|
4779
|
-
rate: number;
|
|
4780
4779
|
rateUnit: "DAILY" | "HOURLY";
|
|
4780
|
+
rate: number;
|
|
4781
4781
|
receivedRate: number;
|
|
4782
4782
|
rateMax?: number | null | undefined;
|
|
4783
4783
|
}>;
|
|
@@ -4828,14 +4828,14 @@ export declare const jobsContractRouter: {
|
|
|
4828
4828
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4829
4829
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4830
4830
|
}, "strip", z.ZodTypeAny, {
|
|
4831
|
-
id: string;
|
|
4832
4831
|
createdAt: string;
|
|
4833
4832
|
updatedAt: string;
|
|
4833
|
+
id: string;
|
|
4834
4834
|
name: string;
|
|
4835
4835
|
}, {
|
|
4836
|
-
id: string;
|
|
4837
4836
|
createdAt: string | Date;
|
|
4838
4837
|
updatedAt: string | Date;
|
|
4838
|
+
id: string;
|
|
4839
4839
|
name: string;
|
|
4840
4840
|
}>>>;
|
|
4841
4841
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -4873,10 +4873,10 @@ export declare const jobsContractRouter: {
|
|
|
4873
4873
|
agentId: string;
|
|
4874
4874
|
}>>>;
|
|
4875
4875
|
}, "strip", z.ZodTypeAny, {
|
|
4876
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4877
|
-
id: string;
|
|
4878
4876
|
createdAt: string;
|
|
4879
4877
|
updatedAt: string;
|
|
4878
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4879
|
+
id: string;
|
|
4880
4880
|
name: string;
|
|
4881
4881
|
crn: string | null;
|
|
4882
4882
|
govLink: string;
|
|
@@ -4893,10 +4893,10 @@ export declare const jobsContractRouter: {
|
|
|
4893
4893
|
agentId: string;
|
|
4894
4894
|
} | null | undefined;
|
|
4895
4895
|
}, {
|
|
4896
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
4897
|
-
id: string;
|
|
4898
4896
|
createdAt: string | Date;
|
|
4899
4897
|
updatedAt: string | Date;
|
|
4898
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4899
|
+
id: string;
|
|
4900
4900
|
name: string;
|
|
4901
4901
|
crn: string | null;
|
|
4902
4902
|
govLink: string;
|
|
@@ -4918,15 +4918,15 @@ export declare const jobsContractRouter: {
|
|
|
4918
4918
|
firstName: z.ZodString;
|
|
4919
4919
|
lastName: z.ZodString;
|
|
4920
4920
|
email: z.ZodString;
|
|
4921
|
-
phone: z.
|
|
4921
|
+
phone: z.ZodString;
|
|
4922
4922
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
4923
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
4924
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4925
4925
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4926
4926
|
}, "strip", z.ZodTypeAny, {
|
|
4927
|
-
id: string;
|
|
4928
4927
|
createdAt: string;
|
|
4929
4928
|
updatedAt: string;
|
|
4929
|
+
id: string;
|
|
4930
4930
|
firstName: string;
|
|
4931
4931
|
lastName: string;
|
|
4932
4932
|
email: string;
|
|
@@ -4934,9 +4934,9 @@ export declare const jobsContractRouter: {
|
|
|
4934
4934
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
4935
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;
|
|
4936
4936
|
}, {
|
|
4937
|
-
id: string;
|
|
4938
4937
|
createdAt: string | Date;
|
|
4939
4938
|
updatedAt: string | Date;
|
|
4939
|
+
id: string;
|
|
4940
4940
|
firstName: string;
|
|
4941
4941
|
lastName: string;
|
|
4942
4942
|
email: string;
|
|
@@ -4944,7 +4944,7 @@ export declare const jobsContractRouter: {
|
|
|
4944
4944
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
4945
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;
|
|
4946
4946
|
}>>>;
|
|
4947
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
4947
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
4948
4948
|
userId: z.ZodString;
|
|
4949
4949
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4950
4950
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -4957,14 +4957,14 @@ export declare const jobsContractRouter: {
|
|
|
4957
4957
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4958
4958
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4959
4959
|
}, "strip", z.ZodTypeAny, {
|
|
4960
|
-
id: string;
|
|
4961
4960
|
createdAt: string;
|
|
4962
4961
|
updatedAt: string;
|
|
4962
|
+
id: string;
|
|
4963
4963
|
name: string;
|
|
4964
4964
|
}, {
|
|
4965
|
-
id: string;
|
|
4966
4965
|
createdAt: string | Date;
|
|
4967
4966
|
updatedAt: string | Date;
|
|
4967
|
+
id: string;
|
|
4968
4968
|
name: string;
|
|
4969
4969
|
}>>>;
|
|
4970
4970
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -5002,10 +5002,10 @@ export declare const jobsContractRouter: {
|
|
|
5002
5002
|
agentId: string;
|
|
5003
5003
|
}>>>;
|
|
5004
5004
|
}, "strip", z.ZodTypeAny, {
|
|
5005
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5006
|
-
id: string;
|
|
5007
5005
|
createdAt: string;
|
|
5008
5006
|
updatedAt: string;
|
|
5007
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5008
|
+
id: string;
|
|
5009
5009
|
name: string;
|
|
5010
5010
|
crn: string | null;
|
|
5011
5011
|
govLink: string;
|
|
@@ -5022,10 +5022,10 @@ export declare const jobsContractRouter: {
|
|
|
5022
5022
|
agentId: string;
|
|
5023
5023
|
} | null | undefined;
|
|
5024
5024
|
}, {
|
|
5025
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5026
|
-
id: string;
|
|
5027
5025
|
createdAt: string | Date;
|
|
5028
5026
|
updatedAt: string | Date;
|
|
5027
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5028
|
+
id: string;
|
|
5029
5029
|
name: string;
|
|
5030
5030
|
crn: string | null;
|
|
5031
5031
|
govLink: string;
|
|
@@ -5047,15 +5047,15 @@ export declare const jobsContractRouter: {
|
|
|
5047
5047
|
firstName: z.ZodString;
|
|
5048
5048
|
lastName: z.ZodString;
|
|
5049
5049
|
email: z.ZodString;
|
|
5050
|
-
phone: z.
|
|
5050
|
+
phone: z.ZodString;
|
|
5051
5051
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
5052
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
5053
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5054
5054
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5055
5055
|
}, "strip", z.ZodTypeAny, {
|
|
5056
|
-
id: string;
|
|
5057
5056
|
createdAt: string;
|
|
5058
5057
|
updatedAt: string;
|
|
5058
|
+
id: string;
|
|
5059
5059
|
firstName: string;
|
|
5060
5060
|
lastName: string;
|
|
5061
5061
|
email: string;
|
|
@@ -5063,9 +5063,9 @@ export declare const jobsContractRouter: {
|
|
|
5063
5063
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
5064
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;
|
|
5065
5065
|
}, {
|
|
5066
|
-
id: string;
|
|
5067
5066
|
createdAt: string | Date;
|
|
5068
5067
|
updatedAt: string | Date;
|
|
5068
|
+
id: string;
|
|
5069
5069
|
firstName: string;
|
|
5070
5070
|
lastName: string;
|
|
5071
5071
|
email: string;
|
|
@@ -5073,27 +5073,27 @@ export declare const jobsContractRouter: {
|
|
|
5073
5073
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
5074
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;
|
|
5075
5075
|
}>>>;
|
|
5076
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
5076
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
5077
5077
|
userId: z.ZodString;
|
|
5078
5078
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5079
5079
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5080
5080
|
}, "strip", z.ZodTypeAny, {
|
|
5081
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5082
|
-
id: string;
|
|
5083
5081
|
createdAt: string;
|
|
5084
5082
|
updatedAt: string;
|
|
5083
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5084
|
+
id: string;
|
|
5085
5085
|
userId: string;
|
|
5086
5086
|
company?: {
|
|
5087
|
-
id: string;
|
|
5088
5087
|
createdAt: string;
|
|
5089
5088
|
updatedAt: string;
|
|
5089
|
+
id: string;
|
|
5090
5090
|
name: string;
|
|
5091
5091
|
} | null | undefined;
|
|
5092
5092
|
client?: {
|
|
5093
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5094
|
-
id: string;
|
|
5095
5093
|
createdAt: string;
|
|
5096
5094
|
updatedAt: string;
|
|
5095
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5096
|
+
id: string;
|
|
5097
5097
|
name: string;
|
|
5098
5098
|
crn: string | null;
|
|
5099
5099
|
govLink: string;
|
|
@@ -5111,9 +5111,9 @@ export declare const jobsContractRouter: {
|
|
|
5111
5111
|
} | null | undefined;
|
|
5112
5112
|
} | null | undefined;
|
|
5113
5113
|
user?: {
|
|
5114
|
-
id: string;
|
|
5115
5114
|
createdAt: string;
|
|
5116
5115
|
updatedAt: string;
|
|
5116
|
+
id: string;
|
|
5117
5117
|
firstName: string;
|
|
5118
5118
|
lastName: string;
|
|
5119
5119
|
email: string;
|
|
@@ -5122,22 +5122,22 @@ export declare const jobsContractRouter: {
|
|
|
5122
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;
|
|
5123
5123
|
} | null | undefined;
|
|
5124
5124
|
}, {
|
|
5125
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5126
|
-
id: string;
|
|
5127
5125
|
createdAt: string | Date;
|
|
5128
5126
|
updatedAt: string | Date;
|
|
5127
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5128
|
+
id: string;
|
|
5129
5129
|
userId: string;
|
|
5130
5130
|
company?: {
|
|
5131
|
-
id: string;
|
|
5132
5131
|
createdAt: string | Date;
|
|
5133
5132
|
updatedAt: string | Date;
|
|
5133
|
+
id: string;
|
|
5134
5134
|
name: string;
|
|
5135
5135
|
} | null | undefined;
|
|
5136
5136
|
client?: {
|
|
5137
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5138
|
-
id: string;
|
|
5139
5137
|
createdAt: string | Date;
|
|
5140
5138
|
updatedAt: string | Date;
|
|
5139
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5140
|
+
id: string;
|
|
5141
5141
|
name: string;
|
|
5142
5142
|
crn: string | null;
|
|
5143
5143
|
govLink: string;
|
|
@@ -5155,9 +5155,9 @@ export declare const jobsContractRouter: {
|
|
|
5155
5155
|
} | null | undefined;
|
|
5156
5156
|
} | null | undefined;
|
|
5157
5157
|
user?: {
|
|
5158
|
-
id: string;
|
|
5159
5158
|
createdAt: string | Date;
|
|
5160
5159
|
updatedAt: string | Date;
|
|
5160
|
+
id: string;
|
|
5161
5161
|
firstName: string;
|
|
5162
5162
|
lastName: string;
|
|
5163
5163
|
email: string;
|
|
@@ -5167,22 +5167,22 @@ export declare const jobsContractRouter: {
|
|
|
5167
5167
|
} | null | undefined;
|
|
5168
5168
|
}>>>;
|
|
5169
5169
|
}, "strip", z.ZodTypeAny, {
|
|
5170
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5171
|
-
id: string;
|
|
5172
5170
|
createdAt: string;
|
|
5173
5171
|
updatedAt: string;
|
|
5172
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5173
|
+
id: string;
|
|
5174
5174
|
userId: string;
|
|
5175
5175
|
company?: {
|
|
5176
|
-
id: string;
|
|
5177
5176
|
createdAt: string;
|
|
5178
5177
|
updatedAt: string;
|
|
5178
|
+
id: string;
|
|
5179
5179
|
name: string;
|
|
5180
5180
|
} | null | undefined;
|
|
5181
5181
|
client?: {
|
|
5182
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5183
|
-
id: string;
|
|
5184
5182
|
createdAt: string;
|
|
5185
5183
|
updatedAt: string;
|
|
5184
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5185
|
+
id: string;
|
|
5186
5186
|
name: string;
|
|
5187
5187
|
crn: string | null;
|
|
5188
5188
|
govLink: string;
|
|
@@ -5200,9 +5200,9 @@ export declare const jobsContractRouter: {
|
|
|
5200
5200
|
} | null | undefined;
|
|
5201
5201
|
} | null | undefined;
|
|
5202
5202
|
user?: {
|
|
5203
|
-
id: string;
|
|
5204
5203
|
createdAt: string;
|
|
5205
5204
|
updatedAt: string;
|
|
5205
|
+
id: string;
|
|
5206
5206
|
firstName: string;
|
|
5207
5207
|
lastName: string;
|
|
5208
5208
|
email: string;
|
|
@@ -5211,22 +5211,22 @@ export declare const jobsContractRouter: {
|
|
|
5211
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;
|
|
5212
5212
|
} | null | undefined;
|
|
5213
5213
|
newCollaboration?: {
|
|
5214
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5215
|
-
id: string;
|
|
5216
5214
|
createdAt: string;
|
|
5217
5215
|
updatedAt: string;
|
|
5216
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5217
|
+
id: string;
|
|
5218
5218
|
userId: string;
|
|
5219
5219
|
company?: {
|
|
5220
|
-
id: string;
|
|
5221
5220
|
createdAt: string;
|
|
5222
5221
|
updatedAt: string;
|
|
5222
|
+
id: string;
|
|
5223
5223
|
name: string;
|
|
5224
5224
|
} | null | undefined;
|
|
5225
5225
|
client?: {
|
|
5226
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5227
|
-
id: string;
|
|
5228
5226
|
createdAt: string;
|
|
5229
5227
|
updatedAt: string;
|
|
5228
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5229
|
+
id: string;
|
|
5230
5230
|
name: string;
|
|
5231
5231
|
crn: string | null;
|
|
5232
5232
|
govLink: string;
|
|
@@ -5244,9 +5244,9 @@ export declare const jobsContractRouter: {
|
|
|
5244
5244
|
} | null | undefined;
|
|
5245
5245
|
} | null | undefined;
|
|
5246
5246
|
user?: {
|
|
5247
|
-
id: string;
|
|
5248
5247
|
createdAt: string;
|
|
5249
5248
|
updatedAt: string;
|
|
5249
|
+
id: string;
|
|
5250
5250
|
firstName: string;
|
|
5251
5251
|
lastName: string;
|
|
5252
5252
|
email: string;
|
|
@@ -5256,22 +5256,22 @@ export declare const jobsContractRouter: {
|
|
|
5256
5256
|
} | null | undefined;
|
|
5257
5257
|
} | null | undefined;
|
|
5258
5258
|
}, {
|
|
5259
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5260
|
-
id: string;
|
|
5261
5259
|
createdAt: string | Date;
|
|
5262
5260
|
updatedAt: string | Date;
|
|
5261
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5262
|
+
id: string;
|
|
5263
5263
|
userId: string;
|
|
5264
5264
|
company?: {
|
|
5265
|
-
id: string;
|
|
5266
5265
|
createdAt: string | Date;
|
|
5267
5266
|
updatedAt: string | Date;
|
|
5267
|
+
id: string;
|
|
5268
5268
|
name: string;
|
|
5269
5269
|
} | null | undefined;
|
|
5270
5270
|
client?: {
|
|
5271
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5272
|
-
id: string;
|
|
5273
5271
|
createdAt: string | Date;
|
|
5274
5272
|
updatedAt: string | Date;
|
|
5273
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5274
|
+
id: string;
|
|
5275
5275
|
name: string;
|
|
5276
5276
|
crn: string | null;
|
|
5277
5277
|
govLink: string;
|
|
@@ -5289,9 +5289,9 @@ export declare const jobsContractRouter: {
|
|
|
5289
5289
|
} | null | undefined;
|
|
5290
5290
|
} | null | undefined;
|
|
5291
5291
|
user?: {
|
|
5292
|
-
id: string;
|
|
5293
5292
|
createdAt: string | Date;
|
|
5294
5293
|
updatedAt: string | Date;
|
|
5294
|
+
id: string;
|
|
5295
5295
|
firstName: string;
|
|
5296
5296
|
lastName: string;
|
|
5297
5297
|
email: string;
|
|
@@ -5300,22 +5300,22 @@ export declare const jobsContractRouter: {
|
|
|
5300
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;
|
|
5301
5301
|
} | null | undefined;
|
|
5302
5302
|
newCollaboration?: {
|
|
5303
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5304
|
-
id: string;
|
|
5305
5303
|
createdAt: string | Date;
|
|
5306
5304
|
updatedAt: string | Date;
|
|
5305
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5306
|
+
id: string;
|
|
5307
5307
|
userId: string;
|
|
5308
5308
|
company?: {
|
|
5309
|
-
id: string;
|
|
5310
5309
|
createdAt: string | Date;
|
|
5311
5310
|
updatedAt: string | Date;
|
|
5311
|
+
id: string;
|
|
5312
5312
|
name: string;
|
|
5313
5313
|
} | null | undefined;
|
|
5314
5314
|
client?: {
|
|
5315
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5316
|
-
id: string;
|
|
5317
5315
|
createdAt: string | Date;
|
|
5318
5316
|
updatedAt: string | Date;
|
|
5317
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5318
|
+
id: string;
|
|
5319
5319
|
name: string;
|
|
5320
5320
|
crn: string | null;
|
|
5321
5321
|
govLink: string;
|
|
@@ -5333,9 +5333,9 @@ export declare const jobsContractRouter: {
|
|
|
5333
5333
|
} | null | undefined;
|
|
5334
5334
|
} | null | undefined;
|
|
5335
5335
|
user?: {
|
|
5336
|
-
id: string;
|
|
5337
5336
|
createdAt: string | Date;
|
|
5338
5337
|
updatedAt: string | Date;
|
|
5338
|
+
id: string;
|
|
5339
5339
|
firstName: string;
|
|
5340
5340
|
lastName: string;
|
|
5341
5341
|
email: string;
|
|
@@ -5348,24 +5348,25 @@ export declare const jobsContractRouter: {
|
|
|
5348
5348
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5349
5349
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5350
5350
|
}, "strip", z.ZodTypeAny, {
|
|
5351
|
-
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
5352
|
-
id: string;
|
|
5353
5351
|
createdAt: string;
|
|
5354
5352
|
updatedAt: string;
|
|
5353
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
5354
|
+
id: string;
|
|
5355
5355
|
description: string;
|
|
5356
|
+
numberOfPositions: number;
|
|
5356
5357
|
pay: {
|
|
5357
|
-
rate: number;
|
|
5358
5358
|
rateUnit: "DAILY" | "HOURLY";
|
|
5359
|
+
rate: number;
|
|
5359
5360
|
receivedRate: number;
|
|
5360
5361
|
rateMax?: number | null | undefined;
|
|
5361
5362
|
};
|
|
5362
5363
|
tradeId: string;
|
|
5363
|
-
numberOfPositions: number;
|
|
5364
5364
|
jobQualifications: {
|
|
5365
5365
|
id: string;
|
|
5366
5366
|
qualificationId: string;
|
|
5367
5367
|
qualificationTypeId?: string | null | undefined;
|
|
5368
5368
|
}[];
|
|
5369
|
+
workHours?: number | null | undefined;
|
|
5369
5370
|
location?: {
|
|
5370
5371
|
address?: string | null | undefined;
|
|
5371
5372
|
postcode?: string | null | undefined;
|
|
@@ -5375,24 +5376,23 @@ export declare const jobsContractRouter: {
|
|
|
5375
5376
|
postTown?: string | null | undefined;
|
|
5376
5377
|
areaCovered?: string | null | undefined;
|
|
5377
5378
|
} | null | undefined;
|
|
5378
|
-
workHours?: number | null | undefined;
|
|
5379
5379
|
currentCollaboration?: {
|
|
5380
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5381
|
-
id: string;
|
|
5382
5380
|
createdAt: string;
|
|
5383
5381
|
updatedAt: string;
|
|
5382
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5383
|
+
id: string;
|
|
5384
5384
|
userId: string;
|
|
5385
5385
|
company?: {
|
|
5386
|
-
id: string;
|
|
5387
5386
|
createdAt: string;
|
|
5388
5387
|
updatedAt: string;
|
|
5388
|
+
id: string;
|
|
5389
5389
|
name: string;
|
|
5390
5390
|
} | null | undefined;
|
|
5391
5391
|
client?: {
|
|
5392
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5393
|
-
id: string;
|
|
5394
5392
|
createdAt: string;
|
|
5395
5393
|
updatedAt: string;
|
|
5394
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5395
|
+
id: string;
|
|
5396
5396
|
name: string;
|
|
5397
5397
|
crn: string | null;
|
|
5398
5398
|
govLink: string;
|
|
@@ -5410,9 +5410,9 @@ export declare const jobsContractRouter: {
|
|
|
5410
5410
|
} | null | undefined;
|
|
5411
5411
|
} | null | undefined;
|
|
5412
5412
|
user?: {
|
|
5413
|
-
id: string;
|
|
5414
5413
|
createdAt: string;
|
|
5415
5414
|
updatedAt: string;
|
|
5415
|
+
id: string;
|
|
5416
5416
|
firstName: string;
|
|
5417
5417
|
lastName: string;
|
|
5418
5418
|
email: string;
|
|
@@ -5421,22 +5421,22 @@ export declare const jobsContractRouter: {
|
|
|
5421
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;
|
|
5422
5422
|
} | null | undefined;
|
|
5423
5423
|
newCollaboration?: {
|
|
5424
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5425
|
-
id: string;
|
|
5426
5424
|
createdAt: string;
|
|
5427
5425
|
updatedAt: string;
|
|
5426
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5427
|
+
id: string;
|
|
5428
5428
|
userId: string;
|
|
5429
5429
|
company?: {
|
|
5430
|
-
id: string;
|
|
5431
5430
|
createdAt: string;
|
|
5432
5431
|
updatedAt: string;
|
|
5432
|
+
id: string;
|
|
5433
5433
|
name: string;
|
|
5434
5434
|
} | null | undefined;
|
|
5435
5435
|
client?: {
|
|
5436
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5437
|
-
id: string;
|
|
5438
5436
|
createdAt: string;
|
|
5439
5437
|
updatedAt: string;
|
|
5438
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5439
|
+
id: string;
|
|
5440
5440
|
name: string;
|
|
5441
5441
|
crn: string | null;
|
|
5442
5442
|
govLink: string;
|
|
@@ -5454,9 +5454,9 @@ export declare const jobsContractRouter: {
|
|
|
5454
5454
|
} | null | undefined;
|
|
5455
5455
|
} | null | undefined;
|
|
5456
5456
|
user?: {
|
|
5457
|
-
id: string;
|
|
5458
5457
|
createdAt: string;
|
|
5459
5458
|
updatedAt: string;
|
|
5459
|
+
id: string;
|
|
5460
5460
|
firstName: string;
|
|
5461
5461
|
lastName: string;
|
|
5462
5462
|
email: string;
|
|
@@ -5467,19 +5467,20 @@ export declare const jobsContractRouter: {
|
|
|
5467
5467
|
} | null | undefined;
|
|
5468
5468
|
} | null | undefined;
|
|
5469
5469
|
}, {
|
|
5470
|
-
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
5471
|
-
id: string;
|
|
5472
5470
|
createdAt: string | Date;
|
|
5473
5471
|
updatedAt: string | Date;
|
|
5472
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
5473
|
+
id: string;
|
|
5474
5474
|
description: string;
|
|
5475
|
+
numberOfPositions: number;
|
|
5475
5476
|
pay: {
|
|
5476
|
-
rate: number;
|
|
5477
5477
|
rateUnit: "DAILY" | "HOURLY";
|
|
5478
|
+
rate: number;
|
|
5478
5479
|
receivedRate: number;
|
|
5479
5480
|
rateMax?: number | null | undefined;
|
|
5480
5481
|
};
|
|
5481
5482
|
tradeId: string;
|
|
5482
|
-
|
|
5483
|
+
workHours?: number | null | undefined;
|
|
5483
5484
|
location?: {
|
|
5484
5485
|
address?: string | null | undefined;
|
|
5485
5486
|
postcode?: string | null | undefined;
|
|
@@ -5489,29 +5490,28 @@ export declare const jobsContractRouter: {
|
|
|
5489
5490
|
postTown?: string | null | undefined;
|
|
5490
5491
|
areaCovered?: string | null | undefined;
|
|
5491
5492
|
} | null | undefined;
|
|
5492
|
-
workHours?: number | null | undefined;
|
|
5493
5493
|
jobQualifications?: {
|
|
5494
5494
|
id: string;
|
|
5495
5495
|
qualificationId: string;
|
|
5496
5496
|
qualificationTypeId?: string | null | undefined;
|
|
5497
5497
|
}[] | undefined;
|
|
5498
5498
|
currentCollaboration?: {
|
|
5499
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5500
|
-
id: string;
|
|
5501
5499
|
createdAt: string | Date;
|
|
5502
5500
|
updatedAt: string | Date;
|
|
5501
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5502
|
+
id: string;
|
|
5503
5503
|
userId: string;
|
|
5504
5504
|
company?: {
|
|
5505
|
-
id: string;
|
|
5506
5505
|
createdAt: string | Date;
|
|
5507
5506
|
updatedAt: string | Date;
|
|
5507
|
+
id: string;
|
|
5508
5508
|
name: string;
|
|
5509
5509
|
} | null | undefined;
|
|
5510
5510
|
client?: {
|
|
5511
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5512
|
-
id: string;
|
|
5513
5511
|
createdAt: string | Date;
|
|
5514
5512
|
updatedAt: string | Date;
|
|
5513
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5514
|
+
id: string;
|
|
5515
5515
|
name: string;
|
|
5516
5516
|
crn: string | null;
|
|
5517
5517
|
govLink: string;
|
|
@@ -5529,9 +5529,9 @@ export declare const jobsContractRouter: {
|
|
|
5529
5529
|
} | null | undefined;
|
|
5530
5530
|
} | null | undefined;
|
|
5531
5531
|
user?: {
|
|
5532
|
-
id: string;
|
|
5533
5532
|
createdAt: string | Date;
|
|
5534
5533
|
updatedAt: string | Date;
|
|
5534
|
+
id: string;
|
|
5535
5535
|
firstName: string;
|
|
5536
5536
|
lastName: string;
|
|
5537
5537
|
email: string;
|
|
@@ -5540,22 +5540,22 @@ export declare const jobsContractRouter: {
|
|
|
5540
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;
|
|
5541
5541
|
} | null | undefined;
|
|
5542
5542
|
newCollaboration?: {
|
|
5543
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5544
|
-
id: string;
|
|
5545
5543
|
createdAt: string | Date;
|
|
5546
5544
|
updatedAt: string | Date;
|
|
5545
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
5546
|
+
id: string;
|
|
5547
5547
|
userId: string;
|
|
5548
5548
|
company?: {
|
|
5549
|
-
id: string;
|
|
5550
5549
|
createdAt: string | Date;
|
|
5551
5550
|
updatedAt: string | Date;
|
|
5551
|
+
id: string;
|
|
5552
5552
|
name: string;
|
|
5553
5553
|
} | null | undefined;
|
|
5554
5554
|
client?: {
|
|
5555
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5556
|
-
id: string;
|
|
5557
5555
|
createdAt: string | Date;
|
|
5558
5556
|
updatedAt: string | Date;
|
|
5557
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5558
|
+
id: string;
|
|
5559
5559
|
name: string;
|
|
5560
5560
|
crn: string | null;
|
|
5561
5561
|
govLink: string;
|
|
@@ -5573,9 +5573,9 @@ export declare const jobsContractRouter: {
|
|
|
5573
5573
|
} | null | undefined;
|
|
5574
5574
|
} | null | undefined;
|
|
5575
5575
|
user?: {
|
|
5576
|
-
id: string;
|
|
5577
5576
|
createdAt: string | Date;
|
|
5578
5577
|
updatedAt: string | Date;
|
|
5578
|
+
id: string;
|
|
5579
5579
|
firstName: string;
|
|
5580
5580
|
lastName: string;
|
|
5581
5581
|
email: string;
|
|
@@ -5649,8 +5649,8 @@ export declare const jobsContractRouter: {
|
|
|
5649
5649
|
rateMax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
5650
5650
|
receivedRate: z.ZodNumber;
|
|
5651
5651
|
}, "strip", z.ZodTypeAny, {
|
|
5652
|
-
rate: number;
|
|
5653
5652
|
rateUnit: "DAILY" | "HOURLY";
|
|
5653
|
+
rate: number;
|
|
5654
5654
|
receivedRate: number;
|
|
5655
5655
|
rateMax?: number | null | undefined;
|
|
5656
5656
|
}, {
|
|
@@ -5679,21 +5679,21 @@ export declare const jobsContractRouter: {
|
|
|
5679
5679
|
}>, "many">>;
|
|
5680
5680
|
status: z.ZodOptional<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE"]>>;
|
|
5681
5681
|
}, "strip", z.ZodTypeAny, {
|
|
5682
|
-
status?: "
|
|
5682
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | undefined;
|
|
5683
5683
|
description?: string | undefined;
|
|
5684
|
+
numberOfPositions?: number | undefined;
|
|
5685
|
+
workHours?: number | undefined;
|
|
5684
5686
|
pay?: {
|
|
5685
|
-
rate: number;
|
|
5686
5687
|
rateUnit: "DAILY" | "HOURLY";
|
|
5688
|
+
rate: number;
|
|
5687
5689
|
receivedRate: number;
|
|
5688
5690
|
rateMax?: number | null | undefined;
|
|
5689
5691
|
} | undefined;
|
|
5690
|
-
tradeId?: string | undefined;
|
|
5691
5692
|
location?: {
|
|
5692
5693
|
address?: string | null | undefined;
|
|
5693
5694
|
postcode?: string | null | undefined;
|
|
5694
5695
|
} | undefined;
|
|
5695
|
-
|
|
5696
|
-
workHours?: number | undefined;
|
|
5696
|
+
tradeId?: string | undefined;
|
|
5697
5697
|
jobQualifications?: {
|
|
5698
5698
|
qualificationId: string;
|
|
5699
5699
|
qualificationTypeId?: string | null | undefined;
|
|
@@ -5702,21 +5702,21 @@ export declare const jobsContractRouter: {
|
|
|
5702
5702
|
id: string;
|
|
5703
5703
|
} | undefined;
|
|
5704
5704
|
}, {
|
|
5705
|
-
status?: "
|
|
5705
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | undefined;
|
|
5706
5706
|
description?: string | undefined;
|
|
5707
|
+
numberOfPositions?: number | undefined;
|
|
5708
|
+
workHours?: number | undefined;
|
|
5707
5709
|
pay?: {
|
|
5708
5710
|
rate: number;
|
|
5709
5711
|
receivedRate: number;
|
|
5710
5712
|
rateUnit?: "DAILY" | "HOURLY" | undefined;
|
|
5711
5713
|
rateMax?: number | null | undefined;
|
|
5712
5714
|
} | undefined;
|
|
5713
|
-
tradeId?: string | undefined;
|
|
5714
5715
|
location?: {
|
|
5715
5716
|
address?: string | null | undefined;
|
|
5716
5717
|
postcode?: string | null | undefined;
|
|
5717
5718
|
} | undefined;
|
|
5718
|
-
|
|
5719
|
-
workHours?: number | undefined;
|
|
5719
|
+
tradeId?: string | undefined;
|
|
5720
5720
|
jobQualifications?: {
|
|
5721
5721
|
qualificationId: string;
|
|
5722
5722
|
qualificationTypeId?: string | null | undefined;
|
|
@@ -5839,13 +5839,13 @@ export declare const jobsContractRouter: {
|
|
|
5839
5839
|
rateMax: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
5840
5840
|
receivedRate: z.ZodNumber;
|
|
5841
5841
|
}, "strip", z.ZodTypeAny, {
|
|
5842
|
-
rate: number;
|
|
5843
5842
|
rateUnit: "DAILY" | "HOURLY";
|
|
5843
|
+
rate: number;
|
|
5844
5844
|
receivedRate: number;
|
|
5845
5845
|
rateMax?: number | null | undefined;
|
|
5846
5846
|
}, {
|
|
5847
|
-
rate: number;
|
|
5848
5847
|
rateUnit: "DAILY" | "HOURLY";
|
|
5848
|
+
rate: number;
|
|
5849
5849
|
receivedRate: number;
|
|
5850
5850
|
rateMax?: number | null | undefined;
|
|
5851
5851
|
}>;
|
|
@@ -5896,14 +5896,14 @@ export declare const jobsContractRouter: {
|
|
|
5896
5896
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5897
5897
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5898
5898
|
}, "strip", z.ZodTypeAny, {
|
|
5899
|
-
id: string;
|
|
5900
5899
|
createdAt: string;
|
|
5901
5900
|
updatedAt: string;
|
|
5901
|
+
id: string;
|
|
5902
5902
|
name: string;
|
|
5903
5903
|
}, {
|
|
5904
|
-
id: string;
|
|
5905
5904
|
createdAt: string | Date;
|
|
5906
5905
|
updatedAt: string | Date;
|
|
5906
|
+
id: string;
|
|
5907
5907
|
name: string;
|
|
5908
5908
|
}>>>;
|
|
5909
5909
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -5941,10 +5941,10 @@ export declare const jobsContractRouter: {
|
|
|
5941
5941
|
agentId: string;
|
|
5942
5942
|
}>>>;
|
|
5943
5943
|
}, "strip", z.ZodTypeAny, {
|
|
5944
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5945
|
-
id: string;
|
|
5946
5944
|
createdAt: string;
|
|
5947
5945
|
updatedAt: string;
|
|
5946
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5947
|
+
id: string;
|
|
5948
5948
|
name: string;
|
|
5949
5949
|
crn: string | null;
|
|
5950
5950
|
govLink: string;
|
|
@@ -5961,10 +5961,10 @@ export declare const jobsContractRouter: {
|
|
|
5961
5961
|
agentId: string;
|
|
5962
5962
|
} | null | undefined;
|
|
5963
5963
|
}, {
|
|
5964
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
5965
|
-
id: string;
|
|
5966
5964
|
createdAt: string | Date;
|
|
5967
5965
|
updatedAt: string | Date;
|
|
5966
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5967
|
+
id: string;
|
|
5968
5968
|
name: string;
|
|
5969
5969
|
crn: string | null;
|
|
5970
5970
|
govLink: string;
|
|
@@ -5986,15 +5986,15 @@ export declare const jobsContractRouter: {
|
|
|
5986
5986
|
firstName: z.ZodString;
|
|
5987
5987
|
lastName: z.ZodString;
|
|
5988
5988
|
email: z.ZodString;
|
|
5989
|
-
phone: z.
|
|
5989
|
+
phone: z.ZodString;
|
|
5990
5990
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
5991
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
5992
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5993
5993
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5994
5994
|
}, "strip", z.ZodTypeAny, {
|
|
5995
|
-
id: string;
|
|
5996
5995
|
createdAt: string;
|
|
5997
5996
|
updatedAt: string;
|
|
5997
|
+
id: string;
|
|
5998
5998
|
firstName: string;
|
|
5999
5999
|
lastName: string;
|
|
6000
6000
|
email: string;
|
|
@@ -6002,9 +6002,9 @@ export declare const jobsContractRouter: {
|
|
|
6002
6002
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
6003
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;
|
|
6004
6004
|
}, {
|
|
6005
|
-
id: string;
|
|
6006
6005
|
createdAt: string | Date;
|
|
6007
6006
|
updatedAt: string | Date;
|
|
6007
|
+
id: string;
|
|
6008
6008
|
firstName: string;
|
|
6009
6009
|
lastName: string;
|
|
6010
6010
|
email: string;
|
|
@@ -6012,7 +6012,7 @@ export declare const jobsContractRouter: {
|
|
|
6012
6012
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
6013
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;
|
|
6014
6014
|
}>>>;
|
|
6015
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
6015
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
6016
6016
|
userId: z.ZodString;
|
|
6017
6017
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
6018
6018
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -6025,14 +6025,14 @@ export declare const jobsContractRouter: {
|
|
|
6025
6025
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
6026
6026
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
6027
6027
|
}, "strip", z.ZodTypeAny, {
|
|
6028
|
-
id: string;
|
|
6029
6028
|
createdAt: string;
|
|
6030
6029
|
updatedAt: string;
|
|
6030
|
+
id: string;
|
|
6031
6031
|
name: string;
|
|
6032
6032
|
}, {
|
|
6033
|
-
id: string;
|
|
6034
6033
|
createdAt: string | Date;
|
|
6035
6034
|
updatedAt: string | Date;
|
|
6035
|
+
id: string;
|
|
6036
6036
|
name: string;
|
|
6037
6037
|
}>>>;
|
|
6038
6038
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -6070,10 +6070,10 @@ export declare const jobsContractRouter: {
|
|
|
6070
6070
|
agentId: string;
|
|
6071
6071
|
}>>>;
|
|
6072
6072
|
}, "strip", z.ZodTypeAny, {
|
|
6073
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6074
|
-
id: string;
|
|
6075
6073
|
createdAt: string;
|
|
6076
6074
|
updatedAt: string;
|
|
6075
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
6076
|
+
id: string;
|
|
6077
6077
|
name: string;
|
|
6078
6078
|
crn: string | null;
|
|
6079
6079
|
govLink: string;
|
|
@@ -6090,10 +6090,10 @@ export declare const jobsContractRouter: {
|
|
|
6090
6090
|
agentId: string;
|
|
6091
6091
|
} | null | undefined;
|
|
6092
6092
|
}, {
|
|
6093
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6094
|
-
id: string;
|
|
6095
6093
|
createdAt: string | Date;
|
|
6096
6094
|
updatedAt: string | Date;
|
|
6095
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
6096
|
+
id: string;
|
|
6097
6097
|
name: string;
|
|
6098
6098
|
crn: string | null;
|
|
6099
6099
|
govLink: string;
|
|
@@ -6115,15 +6115,15 @@ export declare const jobsContractRouter: {
|
|
|
6115
6115
|
firstName: z.ZodString;
|
|
6116
6116
|
lastName: z.ZodString;
|
|
6117
6117
|
email: z.ZodString;
|
|
6118
|
-
phone: z.
|
|
6118
|
+
phone: z.ZodString;
|
|
6119
6119
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
6120
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
6121
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
6122
6122
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
6123
6123
|
}, "strip", z.ZodTypeAny, {
|
|
6124
|
-
id: string;
|
|
6125
6124
|
createdAt: string;
|
|
6126
6125
|
updatedAt: string;
|
|
6126
|
+
id: string;
|
|
6127
6127
|
firstName: string;
|
|
6128
6128
|
lastName: string;
|
|
6129
6129
|
email: string;
|
|
@@ -6131,9 +6131,9 @@ export declare const jobsContractRouter: {
|
|
|
6131
6131
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
6132
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;
|
|
6133
6133
|
}, {
|
|
6134
|
-
id: string;
|
|
6135
6134
|
createdAt: string | Date;
|
|
6136
6135
|
updatedAt: string | Date;
|
|
6136
|
+
id: string;
|
|
6137
6137
|
firstName: string;
|
|
6138
6138
|
lastName: string;
|
|
6139
6139
|
email: string;
|
|
@@ -6141,27 +6141,27 @@ export declare const jobsContractRouter: {
|
|
|
6141
6141
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
6142
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;
|
|
6143
6143
|
}>>>;
|
|
6144
|
-
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
|
|
6144
|
+
status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
|
|
6145
6145
|
userId: z.ZodString;
|
|
6146
6146
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
6147
6147
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
6148
6148
|
}, "strip", z.ZodTypeAny, {
|
|
6149
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
6150
|
-
id: string;
|
|
6151
6149
|
createdAt: string;
|
|
6152
6150
|
updatedAt: string;
|
|
6151
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
6152
|
+
id: string;
|
|
6153
6153
|
userId: string;
|
|
6154
6154
|
company?: {
|
|
6155
|
-
id: string;
|
|
6156
6155
|
createdAt: string;
|
|
6157
6156
|
updatedAt: string;
|
|
6157
|
+
id: string;
|
|
6158
6158
|
name: string;
|
|
6159
6159
|
} | null | undefined;
|
|
6160
6160
|
client?: {
|
|
6161
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6162
|
-
id: string;
|
|
6163
6161
|
createdAt: string;
|
|
6164
6162
|
updatedAt: string;
|
|
6163
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
6164
|
+
id: string;
|
|
6165
6165
|
name: string;
|
|
6166
6166
|
crn: string | null;
|
|
6167
6167
|
govLink: string;
|
|
@@ -6179,9 +6179,9 @@ export declare const jobsContractRouter: {
|
|
|
6179
6179
|
} | null | undefined;
|
|
6180
6180
|
} | null | undefined;
|
|
6181
6181
|
user?: {
|
|
6182
|
-
id: string;
|
|
6183
6182
|
createdAt: string;
|
|
6184
6183
|
updatedAt: string;
|
|
6184
|
+
id: string;
|
|
6185
6185
|
firstName: string;
|
|
6186
6186
|
lastName: string;
|
|
6187
6187
|
email: string;
|
|
@@ -6190,22 +6190,22 @@ export declare const jobsContractRouter: {
|
|
|
6190
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;
|
|
6191
6191
|
} | null | undefined;
|
|
6192
6192
|
}, {
|
|
6193
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
6194
|
-
id: string;
|
|
6195
6193
|
createdAt: string | Date;
|
|
6196
6194
|
updatedAt: string | Date;
|
|
6195
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
6196
|
+
id: string;
|
|
6197
6197
|
userId: string;
|
|
6198
6198
|
company?: {
|
|
6199
|
-
id: string;
|
|
6200
6199
|
createdAt: string | Date;
|
|
6201
6200
|
updatedAt: string | Date;
|
|
6201
|
+
id: string;
|
|
6202
6202
|
name: string;
|
|
6203
6203
|
} | null | undefined;
|
|
6204
6204
|
client?: {
|
|
6205
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6206
|
-
id: string;
|
|
6207
6205
|
createdAt: string | Date;
|
|
6208
6206
|
updatedAt: string | Date;
|
|
6207
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
6208
|
+
id: string;
|
|
6209
6209
|
name: string;
|
|
6210
6210
|
crn: string | null;
|
|
6211
6211
|
govLink: string;
|
|
@@ -6223,9 +6223,9 @@ export declare const jobsContractRouter: {
|
|
|
6223
6223
|
} | null | undefined;
|
|
6224
6224
|
} | null | undefined;
|
|
6225
6225
|
user?: {
|
|
6226
|
-
id: string;
|
|
6227
6226
|
createdAt: string | Date;
|
|
6228
6227
|
updatedAt: string | Date;
|
|
6228
|
+
id: string;
|
|
6229
6229
|
firstName: string;
|
|
6230
6230
|
lastName: string;
|
|
6231
6231
|
email: string;
|
|
@@ -6235,22 +6235,22 @@ export declare const jobsContractRouter: {
|
|
|
6235
6235
|
} | null | undefined;
|
|
6236
6236
|
}>>>;
|
|
6237
6237
|
}, "strip", z.ZodTypeAny, {
|
|
6238
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
6239
|
-
id: string;
|
|
6240
6238
|
createdAt: string;
|
|
6241
6239
|
updatedAt: string;
|
|
6240
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
6241
|
+
id: string;
|
|
6242
6242
|
userId: string;
|
|
6243
6243
|
company?: {
|
|
6244
|
-
id: string;
|
|
6245
6244
|
createdAt: string;
|
|
6246
6245
|
updatedAt: string;
|
|
6246
|
+
id: string;
|
|
6247
6247
|
name: string;
|
|
6248
6248
|
} | null | undefined;
|
|
6249
6249
|
client?: {
|
|
6250
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6251
|
-
id: string;
|
|
6252
6250
|
createdAt: string;
|
|
6253
6251
|
updatedAt: string;
|
|
6252
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
6253
|
+
id: string;
|
|
6254
6254
|
name: string;
|
|
6255
6255
|
crn: string | null;
|
|
6256
6256
|
govLink: string;
|
|
@@ -6268,9 +6268,9 @@ export declare const jobsContractRouter: {
|
|
|
6268
6268
|
} | null | undefined;
|
|
6269
6269
|
} | null | undefined;
|
|
6270
6270
|
user?: {
|
|
6271
|
-
id: string;
|
|
6272
6271
|
createdAt: string;
|
|
6273
6272
|
updatedAt: string;
|
|
6273
|
+
id: string;
|
|
6274
6274
|
firstName: string;
|
|
6275
6275
|
lastName: string;
|
|
6276
6276
|
email: string;
|
|
@@ -6279,22 +6279,22 @@ export declare const jobsContractRouter: {
|
|
|
6279
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;
|
|
6280
6280
|
} | null | undefined;
|
|
6281
6281
|
newCollaboration?: {
|
|
6282
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
6283
|
-
id: string;
|
|
6284
6282
|
createdAt: string;
|
|
6285
6283
|
updatedAt: string;
|
|
6284
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
6285
|
+
id: string;
|
|
6286
6286
|
userId: string;
|
|
6287
6287
|
company?: {
|
|
6288
|
-
id: string;
|
|
6289
6288
|
createdAt: string;
|
|
6290
6289
|
updatedAt: string;
|
|
6290
|
+
id: string;
|
|
6291
6291
|
name: string;
|
|
6292
6292
|
} | null | undefined;
|
|
6293
6293
|
client?: {
|
|
6294
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6295
|
-
id: string;
|
|
6296
6294
|
createdAt: string;
|
|
6297
6295
|
updatedAt: string;
|
|
6296
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
6297
|
+
id: string;
|
|
6298
6298
|
name: string;
|
|
6299
6299
|
crn: string | null;
|
|
6300
6300
|
govLink: string;
|
|
@@ -6312,9 +6312,9 @@ export declare const jobsContractRouter: {
|
|
|
6312
6312
|
} | null | undefined;
|
|
6313
6313
|
} | null | undefined;
|
|
6314
6314
|
user?: {
|
|
6315
|
-
id: string;
|
|
6316
6315
|
createdAt: string;
|
|
6317
6316
|
updatedAt: string;
|
|
6317
|
+
id: string;
|
|
6318
6318
|
firstName: string;
|
|
6319
6319
|
lastName: string;
|
|
6320
6320
|
email: string;
|
|
@@ -6324,22 +6324,22 @@ export declare const jobsContractRouter: {
|
|
|
6324
6324
|
} | null | undefined;
|
|
6325
6325
|
} | null | undefined;
|
|
6326
6326
|
}, {
|
|
6327
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
6328
|
-
id: string;
|
|
6329
6327
|
createdAt: string | Date;
|
|
6330
6328
|
updatedAt: string | Date;
|
|
6329
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
6330
|
+
id: string;
|
|
6331
6331
|
userId: string;
|
|
6332
6332
|
company?: {
|
|
6333
|
-
id: string;
|
|
6334
6333
|
createdAt: string | Date;
|
|
6335
6334
|
updatedAt: string | Date;
|
|
6335
|
+
id: string;
|
|
6336
6336
|
name: string;
|
|
6337
6337
|
} | null | undefined;
|
|
6338
6338
|
client?: {
|
|
6339
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6340
|
-
id: string;
|
|
6341
6339
|
createdAt: string | Date;
|
|
6342
6340
|
updatedAt: string | Date;
|
|
6341
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
6342
|
+
id: string;
|
|
6343
6343
|
name: string;
|
|
6344
6344
|
crn: string | null;
|
|
6345
6345
|
govLink: string;
|
|
@@ -6357,9 +6357,9 @@ export declare const jobsContractRouter: {
|
|
|
6357
6357
|
} | null | undefined;
|
|
6358
6358
|
} | null | undefined;
|
|
6359
6359
|
user?: {
|
|
6360
|
-
id: string;
|
|
6361
6360
|
createdAt: string | Date;
|
|
6362
6361
|
updatedAt: string | Date;
|
|
6362
|
+
id: string;
|
|
6363
6363
|
firstName: string;
|
|
6364
6364
|
lastName: string;
|
|
6365
6365
|
email: string;
|
|
@@ -6368,22 +6368,22 @@ export declare const jobsContractRouter: {
|
|
|
6368
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;
|
|
6369
6369
|
} | null | undefined;
|
|
6370
6370
|
newCollaboration?: {
|
|
6371
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
6372
|
-
id: string;
|
|
6373
6371
|
createdAt: string | Date;
|
|
6374
6372
|
updatedAt: string | Date;
|
|
6373
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
6374
|
+
id: string;
|
|
6375
6375
|
userId: string;
|
|
6376
6376
|
company?: {
|
|
6377
|
-
id: string;
|
|
6378
6377
|
createdAt: string | Date;
|
|
6379
6378
|
updatedAt: string | Date;
|
|
6379
|
+
id: string;
|
|
6380
6380
|
name: string;
|
|
6381
6381
|
} | null | undefined;
|
|
6382
6382
|
client?: {
|
|
6383
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6384
|
-
id: string;
|
|
6385
6383
|
createdAt: string | Date;
|
|
6386
6384
|
updatedAt: string | Date;
|
|
6385
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
6386
|
+
id: string;
|
|
6387
6387
|
name: string;
|
|
6388
6388
|
crn: string | null;
|
|
6389
6389
|
govLink: string;
|
|
@@ -6401,9 +6401,9 @@ export declare const jobsContractRouter: {
|
|
|
6401
6401
|
} | null | undefined;
|
|
6402
6402
|
} | null | undefined;
|
|
6403
6403
|
user?: {
|
|
6404
|
-
id: string;
|
|
6405
6404
|
createdAt: string | Date;
|
|
6406
6405
|
updatedAt: string | Date;
|
|
6406
|
+
id: string;
|
|
6407
6407
|
firstName: string;
|
|
6408
6408
|
lastName: string;
|
|
6409
6409
|
email: string;
|
|
@@ -6416,24 +6416,25 @@ export declare const jobsContractRouter: {
|
|
|
6416
6416
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
6417
6417
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
6418
6418
|
}, "strip", z.ZodTypeAny, {
|
|
6419
|
-
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
6420
|
-
id: string;
|
|
6421
6419
|
createdAt: string;
|
|
6422
6420
|
updatedAt: string;
|
|
6421
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
6422
|
+
id: string;
|
|
6423
6423
|
description: string;
|
|
6424
|
+
numberOfPositions: number;
|
|
6424
6425
|
pay: {
|
|
6425
|
-
rate: number;
|
|
6426
6426
|
rateUnit: "DAILY" | "HOURLY";
|
|
6427
|
+
rate: number;
|
|
6427
6428
|
receivedRate: number;
|
|
6428
6429
|
rateMax?: number | null | undefined;
|
|
6429
6430
|
};
|
|
6430
6431
|
tradeId: string;
|
|
6431
|
-
numberOfPositions: number;
|
|
6432
6432
|
jobQualifications: {
|
|
6433
6433
|
id: string;
|
|
6434
6434
|
qualificationId: string;
|
|
6435
6435
|
qualificationTypeId?: string | null | undefined;
|
|
6436
6436
|
}[];
|
|
6437
|
+
workHours?: number | null | undefined;
|
|
6437
6438
|
location?: {
|
|
6438
6439
|
address?: string | null | undefined;
|
|
6439
6440
|
postcode?: string | null | undefined;
|
|
@@ -6443,24 +6444,23 @@ export declare const jobsContractRouter: {
|
|
|
6443
6444
|
postTown?: string | null | undefined;
|
|
6444
6445
|
areaCovered?: string | null | undefined;
|
|
6445
6446
|
} | null | undefined;
|
|
6446
|
-
workHours?: number | null | undefined;
|
|
6447
6447
|
currentCollaboration?: {
|
|
6448
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
6449
|
-
id: string;
|
|
6450
6448
|
createdAt: string;
|
|
6451
6449
|
updatedAt: string;
|
|
6450
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
6451
|
+
id: string;
|
|
6452
6452
|
userId: string;
|
|
6453
6453
|
company?: {
|
|
6454
|
-
id: string;
|
|
6455
6454
|
createdAt: string;
|
|
6456
6455
|
updatedAt: string;
|
|
6456
|
+
id: string;
|
|
6457
6457
|
name: string;
|
|
6458
6458
|
} | null | undefined;
|
|
6459
6459
|
client?: {
|
|
6460
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6461
|
-
id: string;
|
|
6462
6460
|
createdAt: string;
|
|
6463
6461
|
updatedAt: string;
|
|
6462
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
6463
|
+
id: string;
|
|
6464
6464
|
name: string;
|
|
6465
6465
|
crn: string | null;
|
|
6466
6466
|
govLink: string;
|
|
@@ -6478,9 +6478,9 @@ export declare const jobsContractRouter: {
|
|
|
6478
6478
|
} | null | undefined;
|
|
6479
6479
|
} | null | undefined;
|
|
6480
6480
|
user?: {
|
|
6481
|
-
id: string;
|
|
6482
6481
|
createdAt: string;
|
|
6483
6482
|
updatedAt: string;
|
|
6483
|
+
id: string;
|
|
6484
6484
|
firstName: string;
|
|
6485
6485
|
lastName: string;
|
|
6486
6486
|
email: string;
|
|
@@ -6489,22 +6489,22 @@ export declare const jobsContractRouter: {
|
|
|
6489
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;
|
|
6490
6490
|
} | null | undefined;
|
|
6491
6491
|
newCollaboration?: {
|
|
6492
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
6493
|
-
id: string;
|
|
6494
6492
|
createdAt: string;
|
|
6495
6493
|
updatedAt: string;
|
|
6494
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
6495
|
+
id: string;
|
|
6496
6496
|
userId: string;
|
|
6497
6497
|
company?: {
|
|
6498
|
-
id: string;
|
|
6499
6498
|
createdAt: string;
|
|
6500
6499
|
updatedAt: string;
|
|
6500
|
+
id: string;
|
|
6501
6501
|
name: string;
|
|
6502
6502
|
} | null | undefined;
|
|
6503
6503
|
client?: {
|
|
6504
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6505
|
-
id: string;
|
|
6506
6504
|
createdAt: string;
|
|
6507
6505
|
updatedAt: string;
|
|
6506
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
6507
|
+
id: string;
|
|
6508
6508
|
name: string;
|
|
6509
6509
|
crn: string | null;
|
|
6510
6510
|
govLink: string;
|
|
@@ -6522,9 +6522,9 @@ export declare const jobsContractRouter: {
|
|
|
6522
6522
|
} | null | undefined;
|
|
6523
6523
|
} | null | undefined;
|
|
6524
6524
|
user?: {
|
|
6525
|
-
id: string;
|
|
6526
6525
|
createdAt: string;
|
|
6527
6526
|
updatedAt: string;
|
|
6527
|
+
id: string;
|
|
6528
6528
|
firstName: string;
|
|
6529
6529
|
lastName: string;
|
|
6530
6530
|
email: string;
|
|
@@ -6535,19 +6535,20 @@ export declare const jobsContractRouter: {
|
|
|
6535
6535
|
} | null | undefined;
|
|
6536
6536
|
} | null | undefined;
|
|
6537
6537
|
}, {
|
|
6538
|
-
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
6539
|
-
id: string;
|
|
6540
6538
|
createdAt: string | Date;
|
|
6541
6539
|
updatedAt: string | Date;
|
|
6540
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
6541
|
+
id: string;
|
|
6542
6542
|
description: string;
|
|
6543
|
+
numberOfPositions: number;
|
|
6543
6544
|
pay: {
|
|
6544
|
-
rate: number;
|
|
6545
6545
|
rateUnit: "DAILY" | "HOURLY";
|
|
6546
|
+
rate: number;
|
|
6546
6547
|
receivedRate: number;
|
|
6547
6548
|
rateMax?: number | null | undefined;
|
|
6548
6549
|
};
|
|
6549
6550
|
tradeId: string;
|
|
6550
|
-
|
|
6551
|
+
workHours?: number | null | undefined;
|
|
6551
6552
|
location?: {
|
|
6552
6553
|
address?: string | null | undefined;
|
|
6553
6554
|
postcode?: string | null | undefined;
|
|
@@ -6557,29 +6558,28 @@ export declare const jobsContractRouter: {
|
|
|
6557
6558
|
postTown?: string | null | undefined;
|
|
6558
6559
|
areaCovered?: string | null | undefined;
|
|
6559
6560
|
} | null | undefined;
|
|
6560
|
-
workHours?: number | null | undefined;
|
|
6561
6561
|
jobQualifications?: {
|
|
6562
6562
|
id: string;
|
|
6563
6563
|
qualificationId: string;
|
|
6564
6564
|
qualificationTypeId?: string | null | undefined;
|
|
6565
6565
|
}[] | undefined;
|
|
6566
6566
|
currentCollaboration?: {
|
|
6567
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
6568
|
-
id: string;
|
|
6569
6567
|
createdAt: string | Date;
|
|
6570
6568
|
updatedAt: string | Date;
|
|
6569
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
6570
|
+
id: string;
|
|
6571
6571
|
userId: string;
|
|
6572
6572
|
company?: {
|
|
6573
|
-
id: string;
|
|
6574
6573
|
createdAt: string | Date;
|
|
6575
6574
|
updatedAt: string | Date;
|
|
6575
|
+
id: string;
|
|
6576
6576
|
name: string;
|
|
6577
6577
|
} | null | undefined;
|
|
6578
6578
|
client?: {
|
|
6579
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6580
|
-
id: string;
|
|
6581
6579
|
createdAt: string | Date;
|
|
6582
6580
|
updatedAt: string | Date;
|
|
6581
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
6582
|
+
id: string;
|
|
6583
6583
|
name: string;
|
|
6584
6584
|
crn: string | null;
|
|
6585
6585
|
govLink: string;
|
|
@@ -6597,9 +6597,9 @@ export declare const jobsContractRouter: {
|
|
|
6597
6597
|
} | null | undefined;
|
|
6598
6598
|
} | null | undefined;
|
|
6599
6599
|
user?: {
|
|
6600
|
-
id: string;
|
|
6601
6600
|
createdAt: string | Date;
|
|
6602
6601
|
updatedAt: string | Date;
|
|
6602
|
+
id: string;
|
|
6603
6603
|
firstName: string;
|
|
6604
6604
|
lastName: string;
|
|
6605
6605
|
email: string;
|
|
@@ -6608,22 +6608,22 @@ export declare const jobsContractRouter: {
|
|
|
6608
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;
|
|
6609
6609
|
} | null | undefined;
|
|
6610
6610
|
newCollaboration?: {
|
|
6611
|
-
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
6612
|
-
id: string;
|
|
6613
6611
|
createdAt: string | Date;
|
|
6614
6612
|
updatedAt: string | Date;
|
|
6613
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
|
|
6614
|
+
id: string;
|
|
6615
6615
|
userId: string;
|
|
6616
6616
|
company?: {
|
|
6617
|
-
id: string;
|
|
6618
6617
|
createdAt: string | Date;
|
|
6619
6618
|
updatedAt: string | Date;
|
|
6619
|
+
id: string;
|
|
6620
6620
|
name: string;
|
|
6621
6621
|
} | null | undefined;
|
|
6622
6622
|
client?: {
|
|
6623
|
-
status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
|
|
6624
|
-
id: string;
|
|
6625
6623
|
createdAt: string | Date;
|
|
6626
6624
|
updatedAt: string | Date;
|
|
6625
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
6626
|
+
id: string;
|
|
6627
6627
|
name: string;
|
|
6628
6628
|
crn: string | null;
|
|
6629
6629
|
govLink: string;
|
|
@@ -6641,9 +6641,9 @@ export declare const jobsContractRouter: {
|
|
|
6641
6641
|
} | null | undefined;
|
|
6642
6642
|
} | null | undefined;
|
|
6643
6643
|
user?: {
|
|
6644
|
-
id: string;
|
|
6645
6644
|
createdAt: string | Date;
|
|
6646
6645
|
updatedAt: string | Date;
|
|
6646
|
+
id: string;
|
|
6647
6647
|
firstName: string;
|
|
6648
6648
|
lastName: string;
|
|
6649
6649
|
email: string;
|