@dakkitor/api-contracts 1.1.101 → 1.1.103
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/abilities.contract.d.ts +2 -0
- package/dist/abilities/abilities.contract.d.ts.map +1 -1
- package/dist/abilities/abilities.contract.js +4 -1
- package/dist/abilities/interconnection.json +370 -0
- package/dist/abilities/second-agent.abilities copy.json +370 -0
- package/dist/abilities/team-leads.json +88 -0
- package/dist/actives/actives.contract.d.ts +3475 -3475
- package/dist/agent-client-links/agent-client-links.contract.d.ts +489 -489
- package/dist/auth/auth.contract.d.ts +13 -13
- package/dist/bookings/bookings.contract.d.ts +13250 -13250
- package/dist/call-history/call-history.contract.d.ts +620 -620
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +1190 -1190
- package/dist/collaborations/collaborations.contract.d.ts +1047 -1047
- package/dist/curated-workers/curated-workers.contract.d.ts +256 -256
- package/dist/dashboards/dashboard.contract.d.ts +14 -14
- package/dist/jobs/jobs.contract.d.ts +2473 -2289
- package/dist/jobs/jobs.contract.d.ts.map +1 -1
- package/dist/jobs/jobs.contract.js +47 -3
- package/dist/lead-assignments/lead-assignments.contract.d.ts +448 -448
- package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +199 -199
- package/dist/leads/leads.contract.d.ts +150 -150
- package/dist/users/users.contract.d.ts +180 -180
- package/dist/users/users.contract.d.ts.map +1 -1
- package/dist/users/users.contract.js +1 -0
- package/dist/workers/workers.contract.d.ts +377 -377
- package/package.json +1 -1
|
@@ -39,23 +39,23 @@ export declare const UpsertWorkerPhoneNumberSchema: z.ZodEffects<z.ZodObject<{
|
|
|
39
39
|
isPrimary: z.ZodOptional<z.ZodBoolean>;
|
|
40
40
|
}, "strip", z.ZodTypeAny, {
|
|
41
41
|
id?: string | undefined;
|
|
42
|
-
phoneNumber?: string | undefined;
|
|
43
42
|
description?: string | null | undefined;
|
|
43
|
+
phoneNumber?: string | undefined;
|
|
44
44
|
isPrimary?: boolean | undefined;
|
|
45
45
|
}, {
|
|
46
46
|
id?: string | undefined;
|
|
47
|
-
phoneNumber?: string | undefined;
|
|
48
47
|
description?: string | null | undefined;
|
|
48
|
+
phoneNumber?: string | undefined;
|
|
49
49
|
isPrimary?: boolean | undefined;
|
|
50
50
|
}>, {
|
|
51
51
|
id?: string | undefined;
|
|
52
|
-
phoneNumber?: string | undefined;
|
|
53
52
|
description?: string | null | undefined;
|
|
53
|
+
phoneNumber?: string | undefined;
|
|
54
54
|
isPrimary?: boolean | undefined;
|
|
55
55
|
}, {
|
|
56
56
|
id?: string | undefined;
|
|
57
|
-
phoneNumber?: string | undefined;
|
|
58
57
|
description?: string | null | undefined;
|
|
58
|
+
phoneNumber?: string | undefined;
|
|
59
59
|
isPrimary?: boolean | undefined;
|
|
60
60
|
}>;
|
|
61
61
|
export declare const WorkerTradeSchema: z.ZodObject<{
|
|
@@ -154,14 +154,14 @@ export declare const WorkerUserSchema: z.ZodObject<{
|
|
|
154
154
|
lastName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
155
155
|
email: z.ZodString;
|
|
156
156
|
}, "strip", z.ZodTypeAny, {
|
|
157
|
+
firstName: string;
|
|
157
158
|
email: string;
|
|
158
159
|
id: string;
|
|
159
|
-
firstName: string;
|
|
160
160
|
lastName?: string | null | undefined;
|
|
161
161
|
}, {
|
|
162
|
+
firstName: string;
|
|
162
163
|
email: string;
|
|
163
164
|
id: string;
|
|
164
|
-
firstName: string;
|
|
165
165
|
lastName?: string | null | undefined;
|
|
166
166
|
}>;
|
|
167
167
|
export declare const WorkerSchema: z.ZodObject<{
|
|
@@ -273,37 +273,39 @@ export declare const WorkerSchema: z.ZodObject<{
|
|
|
273
273
|
lastName: z.ZodString;
|
|
274
274
|
email: z.ZodString;
|
|
275
275
|
phone: z.ZodString;
|
|
276
|
-
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
276
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEAD"]>, "many">>;
|
|
277
277
|
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"]>>>;
|
|
278
278
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
279
279
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
280
280
|
}, "strip", z.ZodTypeAny, {
|
|
281
|
+
lastName: string;
|
|
282
|
+
firstName: string;
|
|
281
283
|
email: string;
|
|
282
284
|
phone: string;
|
|
283
|
-
id: string;
|
|
284
|
-
firstName: string;
|
|
285
|
-
lastName: string;
|
|
286
285
|
createdAt: string;
|
|
286
|
+
id: string;
|
|
287
287
|
updatedAt: string;
|
|
288
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
288
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
289
289
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
290
290
|
}, {
|
|
291
|
+
lastName: string;
|
|
292
|
+
firstName: string;
|
|
291
293
|
email: string;
|
|
292
294
|
phone: string;
|
|
293
|
-
id: string;
|
|
294
|
-
firstName: string;
|
|
295
|
-
lastName: string;
|
|
296
295
|
createdAt: string | Date;
|
|
296
|
+
id: string;
|
|
297
297
|
updatedAt: string | Date;
|
|
298
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
298
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
299
299
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
300
300
|
}>>>;
|
|
301
301
|
distanceKm: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
302
302
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
303
303
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
304
304
|
}, "strip", z.ZodTypeAny, {
|
|
305
|
-
id: string;
|
|
306
305
|
firstName: string;
|
|
306
|
+
createdAt: string;
|
|
307
|
+
id: string;
|
|
308
|
+
updatedAt: string;
|
|
307
309
|
phoneNumbers: {
|
|
308
310
|
id: string;
|
|
309
311
|
phoneNumber: string;
|
|
@@ -313,10 +315,19 @@ export declare const WorkerSchema: z.ZodObject<{
|
|
|
313
315
|
hasTools: boolean;
|
|
314
316
|
hasPpe: boolean;
|
|
315
317
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
316
|
-
createdAt: string;
|
|
317
|
-
updatedAt: string;
|
|
318
|
-
email?: string | null | undefined;
|
|
319
318
|
lastName?: string | null | undefined;
|
|
319
|
+
email?: string | null | undefined;
|
|
320
|
+
createdBy?: {
|
|
321
|
+
lastName: string;
|
|
322
|
+
firstName: string;
|
|
323
|
+
email: string;
|
|
324
|
+
phone: string;
|
|
325
|
+
createdAt: string;
|
|
326
|
+
id: string;
|
|
327
|
+
updatedAt: string;
|
|
328
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
329
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
330
|
+
} | null | undefined;
|
|
320
331
|
nino?: string | null | undefined;
|
|
321
332
|
dateOfBirth?: string | null | undefined;
|
|
322
333
|
bio?: string | null | undefined;
|
|
@@ -350,28 +361,28 @@ export declare const WorkerSchema: z.ZodObject<{
|
|
|
350
361
|
expiryDate?: string | null | undefined;
|
|
351
362
|
} | null | undefined;
|
|
352
363
|
createdByUserId?: string | null | undefined;
|
|
353
|
-
createdBy?: {
|
|
354
|
-
email: string;
|
|
355
|
-
phone: string;
|
|
356
|
-
id: string;
|
|
357
|
-
firstName: string;
|
|
358
|
-
lastName: string;
|
|
359
|
-
createdAt: string;
|
|
360
|
-
updatedAt: string;
|
|
361
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
362
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
363
|
-
} | null | undefined;
|
|
364
364
|
distanceKm?: number | null | undefined;
|
|
365
365
|
}, {
|
|
366
|
-
id: string;
|
|
367
366
|
firstName: string;
|
|
367
|
+
createdAt: string | Date;
|
|
368
|
+
id: string;
|
|
369
|
+
updatedAt: string | Date;
|
|
368
370
|
hasTools: boolean;
|
|
369
371
|
hasPpe: boolean;
|
|
370
372
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
371
|
-
createdAt: string | Date;
|
|
372
|
-
updatedAt: string | Date;
|
|
373
|
-
email?: string | null | undefined;
|
|
374
373
|
lastName?: string | null | undefined;
|
|
374
|
+
email?: string | null | undefined;
|
|
375
|
+
createdBy?: {
|
|
376
|
+
lastName: string;
|
|
377
|
+
firstName: string;
|
|
378
|
+
email: string;
|
|
379
|
+
phone: string;
|
|
380
|
+
createdAt: string | Date;
|
|
381
|
+
id: string;
|
|
382
|
+
updatedAt: string | Date;
|
|
383
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
384
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
385
|
+
} | null | undefined;
|
|
375
386
|
phoneNumbers?: {
|
|
376
387
|
id: string;
|
|
377
388
|
phoneNumber: string;
|
|
@@ -411,17 +422,6 @@ export declare const WorkerSchema: z.ZodObject<{
|
|
|
411
422
|
expiryDate?: string | Date | null | undefined;
|
|
412
423
|
} | null | undefined;
|
|
413
424
|
createdByUserId?: string | null | undefined;
|
|
414
|
-
createdBy?: {
|
|
415
|
-
email: string;
|
|
416
|
-
phone: string;
|
|
417
|
-
id: string;
|
|
418
|
-
firstName: string;
|
|
419
|
-
lastName: string;
|
|
420
|
-
createdAt: string | Date;
|
|
421
|
-
updatedAt: string | Date;
|
|
422
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
423
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
424
|
-
} | null | undefined;
|
|
425
425
|
distanceKm?: number | null | undefined;
|
|
426
426
|
}>;
|
|
427
427
|
export declare const CreateWorkerSchema: z.ZodObject<{
|
|
@@ -529,8 +529,8 @@ export declare const CreateWorkerSchema: z.ZodObject<{
|
|
|
529
529
|
hasTools: boolean;
|
|
530
530
|
hasPpe: boolean;
|
|
531
531
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
532
|
-
email?: string | null | undefined;
|
|
533
532
|
lastName?: string | null | undefined;
|
|
533
|
+
email?: string | null | undefined;
|
|
534
534
|
nino?: string | null | undefined;
|
|
535
535
|
dateOfBirth?: string | Date | null | undefined;
|
|
536
536
|
bio?: string | null | undefined;
|
|
@@ -565,8 +565,8 @@ export declare const CreateWorkerSchema: z.ZodObject<{
|
|
|
565
565
|
}[];
|
|
566
566
|
hasTools: boolean;
|
|
567
567
|
hasPpe: boolean;
|
|
568
|
-
email?: string | null | undefined;
|
|
569
568
|
lastName?: string | null | undefined;
|
|
569
|
+
email?: string | null | undefined;
|
|
570
570
|
nino?: string | null | undefined;
|
|
571
571
|
dateOfBirth?: string | Date | null | undefined;
|
|
572
572
|
bio?: string | null | undefined;
|
|
@@ -601,33 +601,33 @@ export declare const UpdateWorkerSchema: z.ZodObject<{
|
|
|
601
601
|
isPrimary: z.ZodOptional<z.ZodBoolean>;
|
|
602
602
|
}, "strip", z.ZodTypeAny, {
|
|
603
603
|
id?: string | undefined;
|
|
604
|
-
phoneNumber?: string | undefined;
|
|
605
604
|
description?: string | null | undefined;
|
|
605
|
+
phoneNumber?: string | undefined;
|
|
606
606
|
isPrimary?: boolean | undefined;
|
|
607
607
|
}, {
|
|
608
608
|
id?: string | undefined;
|
|
609
|
-
phoneNumber?: string | undefined;
|
|
610
609
|
description?: string | null | undefined;
|
|
610
|
+
phoneNumber?: string | undefined;
|
|
611
611
|
isPrimary?: boolean | undefined;
|
|
612
612
|
}>, {
|
|
613
613
|
id?: string | undefined;
|
|
614
|
-
phoneNumber?: string | undefined;
|
|
615
614
|
description?: string | null | undefined;
|
|
615
|
+
phoneNumber?: string | undefined;
|
|
616
616
|
isPrimary?: boolean | undefined;
|
|
617
617
|
}, {
|
|
618
618
|
id?: string | undefined;
|
|
619
|
-
phoneNumber?: string | undefined;
|
|
620
619
|
description?: string | null | undefined;
|
|
620
|
+
phoneNumber?: string | undefined;
|
|
621
621
|
isPrimary?: boolean | undefined;
|
|
622
622
|
}>, "many">, {
|
|
623
623
|
id?: string | undefined;
|
|
624
|
-
phoneNumber?: string | undefined;
|
|
625
624
|
description?: string | null | undefined;
|
|
625
|
+
phoneNumber?: string | undefined;
|
|
626
626
|
isPrimary?: boolean | undefined;
|
|
627
627
|
}[], {
|
|
628
628
|
id?: string | undefined;
|
|
629
|
-
phoneNumber?: string | undefined;
|
|
630
629
|
description?: string | null | undefined;
|
|
630
|
+
phoneNumber?: string | undefined;
|
|
631
631
|
isPrimary?: boolean | undefined;
|
|
632
632
|
}[]>>;
|
|
633
633
|
nino: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -705,13 +705,13 @@ export declare const UpdateWorkerSchema: z.ZodObject<{
|
|
|
705
705
|
}>>>;
|
|
706
706
|
availability: z.ZodOptional<z.ZodEnum<["AVAILABLE", "PARTIALLY_AVAILABLE", "UNAVAILABLE"]>>;
|
|
707
707
|
}, "strip", z.ZodTypeAny, {
|
|
708
|
-
email?: string | null | undefined;
|
|
709
|
-
firstName?: string | undefined;
|
|
710
708
|
lastName?: string | null | undefined;
|
|
709
|
+
firstName?: string | undefined;
|
|
710
|
+
email?: string | null | undefined;
|
|
711
711
|
phoneNumbers?: {
|
|
712
712
|
id?: string | undefined;
|
|
713
|
-
phoneNumber?: string | undefined;
|
|
714
713
|
description?: string | null | undefined;
|
|
714
|
+
phoneNumber?: string | undefined;
|
|
715
715
|
isPrimary?: boolean | undefined;
|
|
716
716
|
}[] | undefined;
|
|
717
717
|
nino?: string | null | undefined;
|
|
@@ -745,13 +745,13 @@ export declare const UpdateWorkerSchema: z.ZodObject<{
|
|
|
745
745
|
} | null | undefined;
|
|
746
746
|
availability?: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE" | undefined;
|
|
747
747
|
}, {
|
|
748
|
-
email?: string | null | undefined;
|
|
749
|
-
firstName?: string | undefined;
|
|
750
748
|
lastName?: string | null | undefined;
|
|
749
|
+
firstName?: string | undefined;
|
|
750
|
+
email?: string | null | undefined;
|
|
751
751
|
phoneNumbers?: {
|
|
752
752
|
id?: string | undefined;
|
|
753
|
-
phoneNumber?: string | undefined;
|
|
754
753
|
description?: string | null | undefined;
|
|
754
|
+
phoneNumber?: string | undefined;
|
|
755
755
|
isPrimary?: boolean | undefined;
|
|
756
756
|
}[] | undefined;
|
|
757
757
|
nino?: string | null | undefined;
|
|
@@ -855,15 +855,6 @@ export declare const FilterWorkerSchema: z.ZodObject<{
|
|
|
855
855
|
page: number;
|
|
856
856
|
email?: string | undefined;
|
|
857
857
|
phone?: string | undefined;
|
|
858
|
-
englishLevel?: "NONE" | "BASIC" | "INTERMEDIATE" | "ADVANCED" | "NATIVE" | null | undefined;
|
|
859
|
-
nationality?: "AFGHAN" | "ALBANIAN" | "ALGERIAN" | "AMERICAN" | "ANDORRAN" | "ANGOLAN" | "ANTIGUANS" | "ARGENTINEAN" | "ARMENIAN" | "AUSTRALIAN" | "AUSTRIAN" | "AZERBAIJANI" | "BAHAMIAN" | "BAHRAINI" | "BANGLADESHI" | "BARBADIAN" | "BARBUDANS" | "BELARUSIAN" | "BELGIAN" | "BELIZEAN" | "BENINESE" | "BHUTANESE" | "BOLIVIAN" | "BOSNIAN" | "BRAZILIAN" | "BRITISH" | "BRUNEIAN" | "BULGARIAN" | "BURKINABE" | "BURMESE" | "BURUNDIAN" | "CAMBODIAN" | "CAMEROONIAN" | "CANADIAN" | "CAPE_VERDEAN" | "CENTRAL_AFRICAN" | "CHADIAN" | "CHILEAN" | "CHINESE" | "COLOMBIAN" | "COMORAN" | "CONGOLESE" | "COSTA_RICAN" | "CROATIAN" | "CUBAN" | "CYPRIOT" | "CZECH" | "DANISH" | "DJIBOUTI" | "DOMINICAN" | "DUTCH" | "EAST_TIMORESE" | "ECUADOREAN" | "EGYPTIAN" | "EMIRIAN" | "EQUATORIAL_GUINEAN" | "ERITREAN" | "ESTONIAN" | "ETHIOPIAN" | "FIJIAN" | "FILIPINO" | "FINNISH" | "FRENCH" | "GABONESE" | "GAMBIAN" | "GEORGIAN" | "GERMAN" | "GHANAIAN" | "GREEK" | "GRENADIAN" | "GUATEMALAN" | "GUINEA_BISSAUAN" | "GUINEAN" | "GUYANESE" | "HAITIAN" | "HERZEGOVINIAN" | "HONDURAN" | "HUNGARIAN" | "ICELANDER" | "INDIAN" | "INDONESIAN" | "IRANIAN" | "IRAQI" | "IRISH" | "ISRAELI" | "ITALIAN" | "IVORIAN" | "JAMAICAN" | "JAPANESE" | "JORDANIAN" | "KAZAKHSTANI" | "KENYAN" | "KITTIAN_AND_NEVISIAN" | "KUWAITI" | "KYRGYZ" | "LAOTIAN" | "LATVIAN" | "LEBANESE" | "LIBERIAN" | "LIBYAN" | "LIECHTENSTEINER" | "LITHUANIAN" | "LUXEMBOURGER" | "MACEDONIAN" | "MALAGASY" | "MALAWIAN" | "MALAYSIAN" | "MALDIVAN" | "MALIAN" | "MALTESE" | "MARSHALLESE" | "MAURITANIAN" | "MAURITIAN" | "MEXICAN" | "MICRONESIAN" | "MOLDOVAN" | "MONACAN" | "MONGOLIAN" | "MOROCCAN" | "MOSOTHO" | "MOTSWANA" | "MOZAMBICAN" | "NAMIBIAN" | "NAURUAN" | "NEPALESE" | "NEW_ZEALANDER" | "NI_VANUATU" | "NICARAGUAN" | "NIGERIEN" | "NIGERIAN" | "NORTH_KOREAN" | "NORTHERN_IRISH" | "NORWEGIAN" | "OMANI" | "PAKISTANI" | "PALAUAN" | "PANAMANIAN" | "PAPUA_NEW_GUINEAN" | "PARAGUAYAN" | "PERUVIAN" | "POLISH" | "PORTUGUESE" | "QATARI" | "ROMANIAN" | "RUSSIAN" | "RWANDAN" | "SAINT_LUCIAN" | "SALVADORAN" | "SAMOAN" | "SAN_MARINESE" | "SAO_TOMEAN" | "SAUDI" | "SCOTTISH" | "SENEGALESE" | "SERBIAN" | "SEYCHELLOIS" | "SIERRA_LEONEAN" | "SINGAPOREAN" | "SLOVAKIAN" | "SLOVENIAN" | "SOLOMON_ISLANDER" | "SOMALI" | "SOUTH_AFRICAN" | "SOUTH_KOREAN" | "SOUTH_SUDANESE" | "SPANISH" | "SRI_LANKAN" | "SUDANESE" | "SURINAMER" | "SWAZI" | "SWEDISH" | "SWISS" | "SYRIAN" | "TAIWANESE" | "TAJIK" | "TANZANIAN" | "THAI" | "TOGOLESE" | "TONGAN" | "TRINIDADIAN_OR_TOBAGONIAN" | "TUNISIAN" | "TURKISH" | "TUVALUAN" | "UGANDAN" | "UKRAINIAN" | "URUGUAYAN" | "UZBEKISTANI" | "VENEZUELAN" | "VIETNAMESE" | "WELSH" | "YEMENITE" | "ZAMBIAN" | "ZIMBABWEAN" | null | undefined;
|
|
860
|
-
hasTools?: "only_with" | "only_without" | "all" | undefined;
|
|
861
|
-
hasPpe?: "only_with" | "only_without" | "all" | undefined;
|
|
862
|
-
location?: {
|
|
863
|
-
postcode?: string | null | undefined;
|
|
864
|
-
radius?: number | null | undefined;
|
|
865
|
-
} | undefined;
|
|
866
|
-
availability?: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE" | null | undefined;
|
|
867
858
|
createdAt?: {
|
|
868
859
|
from?: string | null | undefined;
|
|
869
860
|
to?: string | null | undefined;
|
|
@@ -872,8 +863,19 @@ export declare const FilterWorkerSchema: z.ZodObject<{
|
|
|
872
863
|
from?: string | null | undefined;
|
|
873
864
|
to?: string | null | undefined;
|
|
874
865
|
} | undefined;
|
|
875
|
-
createdBy?: string | undefined;
|
|
876
866
|
name?: string | undefined;
|
|
867
|
+
sortBy?: "email" | "phone" | "nameSimilarity" | "fullName" | "distance" | null | undefined;
|
|
868
|
+
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
869
|
+
createdBy?: string | undefined;
|
|
870
|
+
englishLevel?: "NONE" | "BASIC" | "INTERMEDIATE" | "ADVANCED" | "NATIVE" | null | undefined;
|
|
871
|
+
nationality?: "AFGHAN" | "ALBANIAN" | "ALGERIAN" | "AMERICAN" | "ANDORRAN" | "ANGOLAN" | "ANTIGUANS" | "ARGENTINEAN" | "ARMENIAN" | "AUSTRALIAN" | "AUSTRIAN" | "AZERBAIJANI" | "BAHAMIAN" | "BAHRAINI" | "BANGLADESHI" | "BARBADIAN" | "BARBUDANS" | "BELARUSIAN" | "BELGIAN" | "BELIZEAN" | "BENINESE" | "BHUTANESE" | "BOLIVIAN" | "BOSNIAN" | "BRAZILIAN" | "BRITISH" | "BRUNEIAN" | "BULGARIAN" | "BURKINABE" | "BURMESE" | "BURUNDIAN" | "CAMBODIAN" | "CAMEROONIAN" | "CANADIAN" | "CAPE_VERDEAN" | "CENTRAL_AFRICAN" | "CHADIAN" | "CHILEAN" | "CHINESE" | "COLOMBIAN" | "COMORAN" | "CONGOLESE" | "COSTA_RICAN" | "CROATIAN" | "CUBAN" | "CYPRIOT" | "CZECH" | "DANISH" | "DJIBOUTI" | "DOMINICAN" | "DUTCH" | "EAST_TIMORESE" | "ECUADOREAN" | "EGYPTIAN" | "EMIRIAN" | "EQUATORIAL_GUINEAN" | "ERITREAN" | "ESTONIAN" | "ETHIOPIAN" | "FIJIAN" | "FILIPINO" | "FINNISH" | "FRENCH" | "GABONESE" | "GAMBIAN" | "GEORGIAN" | "GERMAN" | "GHANAIAN" | "GREEK" | "GRENADIAN" | "GUATEMALAN" | "GUINEA_BISSAUAN" | "GUINEAN" | "GUYANESE" | "HAITIAN" | "HERZEGOVINIAN" | "HONDURAN" | "HUNGARIAN" | "ICELANDER" | "INDIAN" | "INDONESIAN" | "IRANIAN" | "IRAQI" | "IRISH" | "ISRAELI" | "ITALIAN" | "IVORIAN" | "JAMAICAN" | "JAPANESE" | "JORDANIAN" | "KAZAKHSTANI" | "KENYAN" | "KITTIAN_AND_NEVISIAN" | "KUWAITI" | "KYRGYZ" | "LAOTIAN" | "LATVIAN" | "LEBANESE" | "LIBERIAN" | "LIBYAN" | "LIECHTENSTEINER" | "LITHUANIAN" | "LUXEMBOURGER" | "MACEDONIAN" | "MALAGASY" | "MALAWIAN" | "MALAYSIAN" | "MALDIVAN" | "MALIAN" | "MALTESE" | "MARSHALLESE" | "MAURITANIAN" | "MAURITIAN" | "MEXICAN" | "MICRONESIAN" | "MOLDOVAN" | "MONACAN" | "MONGOLIAN" | "MOROCCAN" | "MOSOTHO" | "MOTSWANA" | "MOZAMBICAN" | "NAMIBIAN" | "NAURUAN" | "NEPALESE" | "NEW_ZEALANDER" | "NI_VANUATU" | "NICARAGUAN" | "NIGERIEN" | "NIGERIAN" | "NORTH_KOREAN" | "NORTHERN_IRISH" | "NORWEGIAN" | "OMANI" | "PAKISTANI" | "PALAUAN" | "PANAMANIAN" | "PAPUA_NEW_GUINEAN" | "PARAGUAYAN" | "PERUVIAN" | "POLISH" | "PORTUGUESE" | "QATARI" | "ROMANIAN" | "RUSSIAN" | "RWANDAN" | "SAINT_LUCIAN" | "SALVADORAN" | "SAMOAN" | "SAN_MARINESE" | "SAO_TOMEAN" | "SAUDI" | "SCOTTISH" | "SENEGALESE" | "SERBIAN" | "SEYCHELLOIS" | "SIERRA_LEONEAN" | "SINGAPOREAN" | "SLOVAKIAN" | "SLOVENIAN" | "SOLOMON_ISLANDER" | "SOMALI" | "SOUTH_AFRICAN" | "SOUTH_KOREAN" | "SOUTH_SUDANESE" | "SPANISH" | "SRI_LANKAN" | "SUDANESE" | "SURINAMER" | "SWAZI" | "SWEDISH" | "SWISS" | "SYRIAN" | "TAIWANESE" | "TAJIK" | "TANZANIAN" | "THAI" | "TOGOLESE" | "TONGAN" | "TRINIDADIAN_OR_TOBAGONIAN" | "TUNISIAN" | "TURKISH" | "TUVALUAN" | "UGANDAN" | "UKRAINIAN" | "URUGUAYAN" | "UZBEKISTANI" | "VENEZUELAN" | "VIETNAMESE" | "WELSH" | "YEMENITE" | "ZAMBIAN" | "ZIMBABWEAN" | null | undefined;
|
|
872
|
+
hasTools?: "only_with" | "only_without" | "all" | undefined;
|
|
873
|
+
hasPpe?: "only_with" | "only_without" | "all" | undefined;
|
|
874
|
+
location?: {
|
|
875
|
+
postcode?: string | null | undefined;
|
|
876
|
+
radius?: number | null | undefined;
|
|
877
|
+
} | undefined;
|
|
878
|
+
availability?: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE" | null | undefined;
|
|
877
879
|
tradeFilters?: {
|
|
878
880
|
tradeId: string;
|
|
879
881
|
mainTrade?: boolean | undefined;
|
|
@@ -882,20 +884,9 @@ export declare const FilterWorkerSchema: z.ZodObject<{
|
|
|
882
884
|
qualificationId?: string | undefined;
|
|
883
885
|
qualificationTypeId?: string | undefined;
|
|
884
886
|
}[] | undefined;
|
|
885
|
-
sortBy?: "nameSimilarity" | "fullName" | "distance" | "email" | "phone" | null | undefined;
|
|
886
|
-
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
887
887
|
}, {
|
|
888
888
|
email?: string | undefined;
|
|
889
889
|
phone?: string | undefined;
|
|
890
|
-
englishLevel?: "NONE" | "BASIC" | "INTERMEDIATE" | "ADVANCED" | "NATIVE" | null | undefined;
|
|
891
|
-
nationality?: "AFGHAN" | "ALBANIAN" | "ALGERIAN" | "AMERICAN" | "ANDORRAN" | "ANGOLAN" | "ANTIGUANS" | "ARGENTINEAN" | "ARMENIAN" | "AUSTRALIAN" | "AUSTRIAN" | "AZERBAIJANI" | "BAHAMIAN" | "BAHRAINI" | "BANGLADESHI" | "BARBADIAN" | "BARBUDANS" | "BELARUSIAN" | "BELGIAN" | "BELIZEAN" | "BENINESE" | "BHUTANESE" | "BOLIVIAN" | "BOSNIAN" | "BRAZILIAN" | "BRITISH" | "BRUNEIAN" | "BULGARIAN" | "BURKINABE" | "BURMESE" | "BURUNDIAN" | "CAMBODIAN" | "CAMEROONIAN" | "CANADIAN" | "CAPE_VERDEAN" | "CENTRAL_AFRICAN" | "CHADIAN" | "CHILEAN" | "CHINESE" | "COLOMBIAN" | "COMORAN" | "CONGOLESE" | "COSTA_RICAN" | "CROATIAN" | "CUBAN" | "CYPRIOT" | "CZECH" | "DANISH" | "DJIBOUTI" | "DOMINICAN" | "DUTCH" | "EAST_TIMORESE" | "ECUADOREAN" | "EGYPTIAN" | "EMIRIAN" | "EQUATORIAL_GUINEAN" | "ERITREAN" | "ESTONIAN" | "ETHIOPIAN" | "FIJIAN" | "FILIPINO" | "FINNISH" | "FRENCH" | "GABONESE" | "GAMBIAN" | "GEORGIAN" | "GERMAN" | "GHANAIAN" | "GREEK" | "GRENADIAN" | "GUATEMALAN" | "GUINEA_BISSAUAN" | "GUINEAN" | "GUYANESE" | "HAITIAN" | "HERZEGOVINIAN" | "HONDURAN" | "HUNGARIAN" | "ICELANDER" | "INDIAN" | "INDONESIAN" | "IRANIAN" | "IRAQI" | "IRISH" | "ISRAELI" | "ITALIAN" | "IVORIAN" | "JAMAICAN" | "JAPANESE" | "JORDANIAN" | "KAZAKHSTANI" | "KENYAN" | "KITTIAN_AND_NEVISIAN" | "KUWAITI" | "KYRGYZ" | "LAOTIAN" | "LATVIAN" | "LEBANESE" | "LIBERIAN" | "LIBYAN" | "LIECHTENSTEINER" | "LITHUANIAN" | "LUXEMBOURGER" | "MACEDONIAN" | "MALAGASY" | "MALAWIAN" | "MALAYSIAN" | "MALDIVAN" | "MALIAN" | "MALTESE" | "MARSHALLESE" | "MAURITANIAN" | "MAURITIAN" | "MEXICAN" | "MICRONESIAN" | "MOLDOVAN" | "MONACAN" | "MONGOLIAN" | "MOROCCAN" | "MOSOTHO" | "MOTSWANA" | "MOZAMBICAN" | "NAMIBIAN" | "NAURUAN" | "NEPALESE" | "NEW_ZEALANDER" | "NI_VANUATU" | "NICARAGUAN" | "NIGERIEN" | "NIGERIAN" | "NORTH_KOREAN" | "NORTHERN_IRISH" | "NORWEGIAN" | "OMANI" | "PAKISTANI" | "PALAUAN" | "PANAMANIAN" | "PAPUA_NEW_GUINEAN" | "PARAGUAYAN" | "PERUVIAN" | "POLISH" | "PORTUGUESE" | "QATARI" | "ROMANIAN" | "RUSSIAN" | "RWANDAN" | "SAINT_LUCIAN" | "SALVADORAN" | "SAMOAN" | "SAN_MARINESE" | "SAO_TOMEAN" | "SAUDI" | "SCOTTISH" | "SENEGALESE" | "SERBIAN" | "SEYCHELLOIS" | "SIERRA_LEONEAN" | "SINGAPOREAN" | "SLOVAKIAN" | "SLOVENIAN" | "SOLOMON_ISLANDER" | "SOMALI" | "SOUTH_AFRICAN" | "SOUTH_KOREAN" | "SOUTH_SUDANESE" | "SPANISH" | "SRI_LANKAN" | "SUDANESE" | "SURINAMER" | "SWAZI" | "SWEDISH" | "SWISS" | "SYRIAN" | "TAIWANESE" | "TAJIK" | "TANZANIAN" | "THAI" | "TOGOLESE" | "TONGAN" | "TRINIDADIAN_OR_TOBAGONIAN" | "TUNISIAN" | "TURKISH" | "TUVALUAN" | "UGANDAN" | "UKRAINIAN" | "URUGUAYAN" | "UZBEKISTANI" | "VENEZUELAN" | "VIETNAMESE" | "WELSH" | "YEMENITE" | "ZAMBIAN" | "ZIMBABWEAN" | null | undefined;
|
|
892
|
-
hasTools?: "only_with" | "only_without" | "all" | undefined;
|
|
893
|
-
hasPpe?: "only_with" | "only_without" | "all" | undefined;
|
|
894
|
-
location?: {
|
|
895
|
-
postcode?: string | null | undefined;
|
|
896
|
-
radius?: number | null | undefined;
|
|
897
|
-
} | undefined;
|
|
898
|
-
availability?: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE" | null | undefined;
|
|
899
890
|
createdAt?: {
|
|
900
891
|
from?: string | null | undefined;
|
|
901
892
|
to?: string | null | undefined;
|
|
@@ -904,10 +895,21 @@ export declare const FilterWorkerSchema: z.ZodObject<{
|
|
|
904
895
|
from?: string | null | undefined;
|
|
905
896
|
to?: string | null | undefined;
|
|
906
897
|
} | undefined;
|
|
907
|
-
createdBy?: string | undefined;
|
|
908
898
|
limit?: number | undefined;
|
|
909
899
|
page?: number | undefined;
|
|
910
900
|
name?: string | undefined;
|
|
901
|
+
sortBy?: "email" | "phone" | "nameSimilarity" | "fullName" | "distance" | null | undefined;
|
|
902
|
+
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
903
|
+
createdBy?: string | undefined;
|
|
904
|
+
englishLevel?: "NONE" | "BASIC" | "INTERMEDIATE" | "ADVANCED" | "NATIVE" | null | undefined;
|
|
905
|
+
nationality?: "AFGHAN" | "ALBANIAN" | "ALGERIAN" | "AMERICAN" | "ANDORRAN" | "ANGOLAN" | "ANTIGUANS" | "ARGENTINEAN" | "ARMENIAN" | "AUSTRALIAN" | "AUSTRIAN" | "AZERBAIJANI" | "BAHAMIAN" | "BAHRAINI" | "BANGLADESHI" | "BARBADIAN" | "BARBUDANS" | "BELARUSIAN" | "BELGIAN" | "BELIZEAN" | "BENINESE" | "BHUTANESE" | "BOLIVIAN" | "BOSNIAN" | "BRAZILIAN" | "BRITISH" | "BRUNEIAN" | "BULGARIAN" | "BURKINABE" | "BURMESE" | "BURUNDIAN" | "CAMBODIAN" | "CAMEROONIAN" | "CANADIAN" | "CAPE_VERDEAN" | "CENTRAL_AFRICAN" | "CHADIAN" | "CHILEAN" | "CHINESE" | "COLOMBIAN" | "COMORAN" | "CONGOLESE" | "COSTA_RICAN" | "CROATIAN" | "CUBAN" | "CYPRIOT" | "CZECH" | "DANISH" | "DJIBOUTI" | "DOMINICAN" | "DUTCH" | "EAST_TIMORESE" | "ECUADOREAN" | "EGYPTIAN" | "EMIRIAN" | "EQUATORIAL_GUINEAN" | "ERITREAN" | "ESTONIAN" | "ETHIOPIAN" | "FIJIAN" | "FILIPINO" | "FINNISH" | "FRENCH" | "GABONESE" | "GAMBIAN" | "GEORGIAN" | "GERMAN" | "GHANAIAN" | "GREEK" | "GRENADIAN" | "GUATEMALAN" | "GUINEA_BISSAUAN" | "GUINEAN" | "GUYANESE" | "HAITIAN" | "HERZEGOVINIAN" | "HONDURAN" | "HUNGARIAN" | "ICELANDER" | "INDIAN" | "INDONESIAN" | "IRANIAN" | "IRAQI" | "IRISH" | "ISRAELI" | "ITALIAN" | "IVORIAN" | "JAMAICAN" | "JAPANESE" | "JORDANIAN" | "KAZAKHSTANI" | "KENYAN" | "KITTIAN_AND_NEVISIAN" | "KUWAITI" | "KYRGYZ" | "LAOTIAN" | "LATVIAN" | "LEBANESE" | "LIBERIAN" | "LIBYAN" | "LIECHTENSTEINER" | "LITHUANIAN" | "LUXEMBOURGER" | "MACEDONIAN" | "MALAGASY" | "MALAWIAN" | "MALAYSIAN" | "MALDIVAN" | "MALIAN" | "MALTESE" | "MARSHALLESE" | "MAURITANIAN" | "MAURITIAN" | "MEXICAN" | "MICRONESIAN" | "MOLDOVAN" | "MONACAN" | "MONGOLIAN" | "MOROCCAN" | "MOSOTHO" | "MOTSWANA" | "MOZAMBICAN" | "NAMIBIAN" | "NAURUAN" | "NEPALESE" | "NEW_ZEALANDER" | "NI_VANUATU" | "NICARAGUAN" | "NIGERIEN" | "NIGERIAN" | "NORTH_KOREAN" | "NORTHERN_IRISH" | "NORWEGIAN" | "OMANI" | "PAKISTANI" | "PALAUAN" | "PANAMANIAN" | "PAPUA_NEW_GUINEAN" | "PARAGUAYAN" | "PERUVIAN" | "POLISH" | "PORTUGUESE" | "QATARI" | "ROMANIAN" | "RUSSIAN" | "RWANDAN" | "SAINT_LUCIAN" | "SALVADORAN" | "SAMOAN" | "SAN_MARINESE" | "SAO_TOMEAN" | "SAUDI" | "SCOTTISH" | "SENEGALESE" | "SERBIAN" | "SEYCHELLOIS" | "SIERRA_LEONEAN" | "SINGAPOREAN" | "SLOVAKIAN" | "SLOVENIAN" | "SOLOMON_ISLANDER" | "SOMALI" | "SOUTH_AFRICAN" | "SOUTH_KOREAN" | "SOUTH_SUDANESE" | "SPANISH" | "SRI_LANKAN" | "SUDANESE" | "SURINAMER" | "SWAZI" | "SWEDISH" | "SWISS" | "SYRIAN" | "TAIWANESE" | "TAJIK" | "TANZANIAN" | "THAI" | "TOGOLESE" | "TONGAN" | "TRINIDADIAN_OR_TOBAGONIAN" | "TUNISIAN" | "TURKISH" | "TUVALUAN" | "UGANDAN" | "UKRAINIAN" | "URUGUAYAN" | "UZBEKISTANI" | "VENEZUELAN" | "VIETNAMESE" | "WELSH" | "YEMENITE" | "ZAMBIAN" | "ZIMBABWEAN" | null | undefined;
|
|
906
|
+
hasTools?: "only_with" | "only_without" | "all" | undefined;
|
|
907
|
+
hasPpe?: "only_with" | "only_without" | "all" | undefined;
|
|
908
|
+
location?: {
|
|
909
|
+
postcode?: string | null | undefined;
|
|
910
|
+
radius?: number | null | undefined;
|
|
911
|
+
} | undefined;
|
|
912
|
+
availability?: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE" | null | undefined;
|
|
911
913
|
tradeFilters?: {
|
|
912
914
|
tradeId: string;
|
|
913
915
|
mainTrade?: unknown;
|
|
@@ -916,8 +918,6 @@ export declare const FilterWorkerSchema: z.ZodObject<{
|
|
|
916
918
|
qualificationId?: string | undefined;
|
|
917
919
|
qualificationTypeId?: string | undefined;
|
|
918
920
|
}[] | undefined;
|
|
919
|
-
sortBy?: "nameSimilarity" | "fullName" | "distance" | "email" | "phone" | null | undefined;
|
|
920
|
-
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
921
921
|
}>;
|
|
922
922
|
export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
|
|
923
923
|
items: z.ZodArray<z.ZodObject<{
|
|
@@ -1029,37 +1029,39 @@ export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
|
|
|
1029
1029
|
lastName: z.ZodString;
|
|
1030
1030
|
email: z.ZodString;
|
|
1031
1031
|
phone: z.ZodString;
|
|
1032
|
-
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
1032
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEAD"]>, "many">>;
|
|
1033
1033
|
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"]>>>;
|
|
1034
1034
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1035
1035
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1036
1036
|
}, "strip", z.ZodTypeAny, {
|
|
1037
|
+
lastName: string;
|
|
1038
|
+
firstName: string;
|
|
1037
1039
|
email: string;
|
|
1038
1040
|
phone: string;
|
|
1039
|
-
id: string;
|
|
1040
|
-
firstName: string;
|
|
1041
|
-
lastName: string;
|
|
1042
1041
|
createdAt: string;
|
|
1042
|
+
id: string;
|
|
1043
1043
|
updatedAt: string;
|
|
1044
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1044
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
1045
1045
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1046
1046
|
}, {
|
|
1047
|
+
lastName: string;
|
|
1048
|
+
firstName: string;
|
|
1047
1049
|
email: string;
|
|
1048
1050
|
phone: string;
|
|
1049
|
-
id: string;
|
|
1050
|
-
firstName: string;
|
|
1051
|
-
lastName: string;
|
|
1052
1051
|
createdAt: string | Date;
|
|
1052
|
+
id: string;
|
|
1053
1053
|
updatedAt: string | Date;
|
|
1054
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1054
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
1055
1055
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1056
1056
|
}>>>;
|
|
1057
1057
|
distanceKm: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1058
1058
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1059
1059
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1060
1060
|
}, "strip", z.ZodTypeAny, {
|
|
1061
|
-
id: string;
|
|
1062
1061
|
firstName: string;
|
|
1062
|
+
createdAt: string;
|
|
1063
|
+
id: string;
|
|
1064
|
+
updatedAt: string;
|
|
1063
1065
|
phoneNumbers: {
|
|
1064
1066
|
id: string;
|
|
1065
1067
|
phoneNumber: string;
|
|
@@ -1069,10 +1071,19 @@ export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
|
|
|
1069
1071
|
hasTools: boolean;
|
|
1070
1072
|
hasPpe: boolean;
|
|
1071
1073
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
1072
|
-
createdAt: string;
|
|
1073
|
-
updatedAt: string;
|
|
1074
|
-
email?: string | null | undefined;
|
|
1075
1074
|
lastName?: string | null | undefined;
|
|
1075
|
+
email?: string | null | undefined;
|
|
1076
|
+
createdBy?: {
|
|
1077
|
+
lastName: string;
|
|
1078
|
+
firstName: string;
|
|
1079
|
+
email: string;
|
|
1080
|
+
phone: string;
|
|
1081
|
+
createdAt: string;
|
|
1082
|
+
id: string;
|
|
1083
|
+
updatedAt: string;
|
|
1084
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
1085
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1086
|
+
} | null | undefined;
|
|
1076
1087
|
nino?: string | null | undefined;
|
|
1077
1088
|
dateOfBirth?: string | null | undefined;
|
|
1078
1089
|
bio?: string | null | undefined;
|
|
@@ -1106,28 +1117,28 @@ export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
|
|
|
1106
1117
|
expiryDate?: string | null | undefined;
|
|
1107
1118
|
} | null | undefined;
|
|
1108
1119
|
createdByUserId?: string | null | undefined;
|
|
1109
|
-
createdBy?: {
|
|
1110
|
-
email: string;
|
|
1111
|
-
phone: string;
|
|
1112
|
-
id: string;
|
|
1113
|
-
firstName: string;
|
|
1114
|
-
lastName: string;
|
|
1115
|
-
createdAt: string;
|
|
1116
|
-
updatedAt: string;
|
|
1117
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1118
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1119
|
-
} | null | undefined;
|
|
1120
1120
|
distanceKm?: number | null | undefined;
|
|
1121
1121
|
}, {
|
|
1122
|
-
id: string;
|
|
1123
1122
|
firstName: string;
|
|
1123
|
+
createdAt: string | Date;
|
|
1124
|
+
id: string;
|
|
1125
|
+
updatedAt: string | Date;
|
|
1124
1126
|
hasTools: boolean;
|
|
1125
1127
|
hasPpe: boolean;
|
|
1126
1128
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
1127
|
-
createdAt: string | Date;
|
|
1128
|
-
updatedAt: string | Date;
|
|
1129
|
-
email?: string | null | undefined;
|
|
1130
1129
|
lastName?: string | null | undefined;
|
|
1130
|
+
email?: string | null | undefined;
|
|
1131
|
+
createdBy?: {
|
|
1132
|
+
lastName: string;
|
|
1133
|
+
firstName: string;
|
|
1134
|
+
email: string;
|
|
1135
|
+
phone: string;
|
|
1136
|
+
createdAt: string | Date;
|
|
1137
|
+
id: string;
|
|
1138
|
+
updatedAt: string | Date;
|
|
1139
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
1140
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1141
|
+
} | null | undefined;
|
|
1131
1142
|
phoneNumbers?: {
|
|
1132
1143
|
id: string;
|
|
1133
1144
|
phoneNumber: string;
|
|
@@ -1167,17 +1178,6 @@ export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
|
|
|
1167
1178
|
expiryDate?: string | Date | null | undefined;
|
|
1168
1179
|
} | null | undefined;
|
|
1169
1180
|
createdByUserId?: string | null | undefined;
|
|
1170
|
-
createdBy?: {
|
|
1171
|
-
email: string;
|
|
1172
|
-
phone: string;
|
|
1173
|
-
id: string;
|
|
1174
|
-
firstName: string;
|
|
1175
|
-
lastName: string;
|
|
1176
|
-
createdAt: string | Date;
|
|
1177
|
-
updatedAt: string | Date;
|
|
1178
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1179
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1180
|
-
} | null | undefined;
|
|
1181
1181
|
distanceKm?: number | null | undefined;
|
|
1182
1182
|
}>, "many">;
|
|
1183
1183
|
totalCount: z.ZodNumber;
|
|
@@ -1188,8 +1188,10 @@ export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
|
|
|
1188
1188
|
}, "strip", z.ZodTypeAny, {
|
|
1189
1189
|
limit: number;
|
|
1190
1190
|
items: {
|
|
1191
|
-
id: string;
|
|
1192
1191
|
firstName: string;
|
|
1192
|
+
createdAt: string;
|
|
1193
|
+
id: string;
|
|
1194
|
+
updatedAt: string;
|
|
1193
1195
|
phoneNumbers: {
|
|
1194
1196
|
id: string;
|
|
1195
1197
|
phoneNumber: string;
|
|
@@ -1199,10 +1201,19 @@ export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
|
|
|
1199
1201
|
hasTools: boolean;
|
|
1200
1202
|
hasPpe: boolean;
|
|
1201
1203
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
1202
|
-
createdAt: string;
|
|
1203
|
-
updatedAt: string;
|
|
1204
|
-
email?: string | null | undefined;
|
|
1205
1204
|
lastName?: string | null | undefined;
|
|
1205
|
+
email?: string | null | undefined;
|
|
1206
|
+
createdBy?: {
|
|
1207
|
+
lastName: string;
|
|
1208
|
+
firstName: string;
|
|
1209
|
+
email: string;
|
|
1210
|
+
phone: string;
|
|
1211
|
+
createdAt: string;
|
|
1212
|
+
id: string;
|
|
1213
|
+
updatedAt: string;
|
|
1214
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
1215
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1216
|
+
} | null | undefined;
|
|
1206
1217
|
nino?: string | null | undefined;
|
|
1207
1218
|
dateOfBirth?: string | null | undefined;
|
|
1208
1219
|
bio?: string | null | undefined;
|
|
@@ -1236,17 +1247,6 @@ export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
|
|
|
1236
1247
|
expiryDate?: string | null | undefined;
|
|
1237
1248
|
} | null | undefined;
|
|
1238
1249
|
createdByUserId?: string | null | undefined;
|
|
1239
|
-
createdBy?: {
|
|
1240
|
-
email: string;
|
|
1241
|
-
phone: string;
|
|
1242
|
-
id: string;
|
|
1243
|
-
firstName: string;
|
|
1244
|
-
lastName: string;
|
|
1245
|
-
createdAt: string;
|
|
1246
|
-
updatedAt: string;
|
|
1247
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1248
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1249
|
-
} | null | undefined;
|
|
1250
1250
|
distanceKm?: number | null | undefined;
|
|
1251
1251
|
}[];
|
|
1252
1252
|
totalCount: number;
|
|
@@ -1256,16 +1256,27 @@ export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
|
|
|
1256
1256
|
}, {
|
|
1257
1257
|
limit: number;
|
|
1258
1258
|
items: {
|
|
1259
|
-
id: string;
|
|
1260
1259
|
firstName: string;
|
|
1260
|
+
createdAt: string | Date;
|
|
1261
|
+
id: string;
|
|
1262
|
+
updatedAt: string | Date;
|
|
1261
1263
|
hasTools: boolean;
|
|
1262
1264
|
hasPpe: boolean;
|
|
1263
1265
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
1264
|
-
createdAt: string | Date;
|
|
1265
|
-
updatedAt: string | Date;
|
|
1266
|
-
email?: string | null | undefined;
|
|
1267
1266
|
lastName?: string | null | undefined;
|
|
1268
|
-
|
|
1267
|
+
email?: string | null | undefined;
|
|
1268
|
+
createdBy?: {
|
|
1269
|
+
lastName: string;
|
|
1270
|
+
firstName: string;
|
|
1271
|
+
email: string;
|
|
1272
|
+
phone: string;
|
|
1273
|
+
createdAt: string | Date;
|
|
1274
|
+
id: string;
|
|
1275
|
+
updatedAt: string | Date;
|
|
1276
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
1277
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1278
|
+
} | null | undefined;
|
|
1279
|
+
phoneNumbers?: {
|
|
1269
1280
|
id: string;
|
|
1270
1281
|
phoneNumber: string;
|
|
1271
1282
|
description?: string | null | undefined;
|
|
@@ -1304,17 +1315,6 @@ export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
|
|
|
1304
1315
|
expiryDate?: string | Date | null | undefined;
|
|
1305
1316
|
} | null | undefined;
|
|
1306
1317
|
createdByUserId?: string | null | undefined;
|
|
1307
|
-
createdBy?: {
|
|
1308
|
-
email: string;
|
|
1309
|
-
phone: string;
|
|
1310
|
-
id: string;
|
|
1311
|
-
firstName: string;
|
|
1312
|
-
lastName: string;
|
|
1313
|
-
createdAt: string | Date;
|
|
1314
|
-
updatedAt: string | Date;
|
|
1315
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1316
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1317
|
-
} | null | undefined;
|
|
1318
1318
|
distanceKm?: number | null | undefined;
|
|
1319
1319
|
}[];
|
|
1320
1320
|
totalCount: number;
|
|
@@ -1454,8 +1454,8 @@ export declare const workersContractRouter: {
|
|
|
1454
1454
|
hasTools: boolean;
|
|
1455
1455
|
hasPpe: boolean;
|
|
1456
1456
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
1457
|
-
email?: string | null | undefined;
|
|
1458
1457
|
lastName?: string | null | undefined;
|
|
1458
|
+
email?: string | null | undefined;
|
|
1459
1459
|
nino?: string | null | undefined;
|
|
1460
1460
|
dateOfBirth?: string | Date | null | undefined;
|
|
1461
1461
|
bio?: string | null | undefined;
|
|
@@ -1490,8 +1490,8 @@ export declare const workersContractRouter: {
|
|
|
1490
1490
|
}[];
|
|
1491
1491
|
hasTools: boolean;
|
|
1492
1492
|
hasPpe: boolean;
|
|
1493
|
-
email?: string | null | undefined;
|
|
1494
1493
|
lastName?: string | null | undefined;
|
|
1494
|
+
email?: string | null | undefined;
|
|
1495
1495
|
nino?: string | null | undefined;
|
|
1496
1496
|
dateOfBirth?: string | Date | null | undefined;
|
|
1497
1497
|
bio?: string | null | undefined;
|
|
@@ -1726,37 +1726,39 @@ export declare const workersContractRouter: {
|
|
|
1726
1726
|
lastName: z.ZodString;
|
|
1727
1727
|
email: z.ZodString;
|
|
1728
1728
|
phone: z.ZodString;
|
|
1729
|
-
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
1729
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEAD"]>, "many">>;
|
|
1730
1730
|
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"]>>>;
|
|
1731
1731
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1732
1732
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1733
1733
|
}, "strip", z.ZodTypeAny, {
|
|
1734
|
+
lastName: string;
|
|
1735
|
+
firstName: string;
|
|
1734
1736
|
email: string;
|
|
1735
1737
|
phone: string;
|
|
1736
|
-
id: string;
|
|
1737
|
-
firstName: string;
|
|
1738
|
-
lastName: string;
|
|
1739
1738
|
createdAt: string;
|
|
1739
|
+
id: string;
|
|
1740
1740
|
updatedAt: string;
|
|
1741
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1741
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
1742
1742
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1743
1743
|
}, {
|
|
1744
|
+
lastName: string;
|
|
1745
|
+
firstName: string;
|
|
1744
1746
|
email: string;
|
|
1745
1747
|
phone: string;
|
|
1746
|
-
id: string;
|
|
1747
|
-
firstName: string;
|
|
1748
|
-
lastName: string;
|
|
1749
1748
|
createdAt: string | Date;
|
|
1749
|
+
id: string;
|
|
1750
1750
|
updatedAt: string | Date;
|
|
1751
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1751
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
1752
1752
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1753
1753
|
}>>>;
|
|
1754
1754
|
distanceKm: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1755
1755
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1756
1756
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1757
1757
|
}, "strip", z.ZodTypeAny, {
|
|
1758
|
-
id: string;
|
|
1759
1758
|
firstName: string;
|
|
1759
|
+
createdAt: string;
|
|
1760
|
+
id: string;
|
|
1761
|
+
updatedAt: string;
|
|
1760
1762
|
phoneNumbers: {
|
|
1761
1763
|
id: string;
|
|
1762
1764
|
phoneNumber: string;
|
|
@@ -1766,10 +1768,19 @@ export declare const workersContractRouter: {
|
|
|
1766
1768
|
hasTools: boolean;
|
|
1767
1769
|
hasPpe: boolean;
|
|
1768
1770
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
1769
|
-
createdAt: string;
|
|
1770
|
-
updatedAt: string;
|
|
1771
|
-
email?: string | null | undefined;
|
|
1772
1771
|
lastName?: string | null | undefined;
|
|
1772
|
+
email?: string | null | undefined;
|
|
1773
|
+
createdBy?: {
|
|
1774
|
+
lastName: string;
|
|
1775
|
+
firstName: string;
|
|
1776
|
+
email: string;
|
|
1777
|
+
phone: string;
|
|
1778
|
+
createdAt: string;
|
|
1779
|
+
id: string;
|
|
1780
|
+
updatedAt: string;
|
|
1781
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
1782
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1783
|
+
} | null | undefined;
|
|
1773
1784
|
nino?: string | null | undefined;
|
|
1774
1785
|
dateOfBirth?: string | null | undefined;
|
|
1775
1786
|
bio?: string | null | undefined;
|
|
@@ -1803,28 +1814,28 @@ export declare const workersContractRouter: {
|
|
|
1803
1814
|
expiryDate?: string | null | undefined;
|
|
1804
1815
|
} | null | undefined;
|
|
1805
1816
|
createdByUserId?: string | null | undefined;
|
|
1806
|
-
createdBy?: {
|
|
1807
|
-
email: string;
|
|
1808
|
-
phone: string;
|
|
1809
|
-
id: string;
|
|
1810
|
-
firstName: string;
|
|
1811
|
-
lastName: string;
|
|
1812
|
-
createdAt: string;
|
|
1813
|
-
updatedAt: string;
|
|
1814
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1815
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1816
|
-
} | null | undefined;
|
|
1817
1817
|
distanceKm?: number | null | undefined;
|
|
1818
1818
|
}, {
|
|
1819
|
-
id: string;
|
|
1820
1819
|
firstName: string;
|
|
1820
|
+
createdAt: string | Date;
|
|
1821
|
+
id: string;
|
|
1822
|
+
updatedAt: string | Date;
|
|
1821
1823
|
hasTools: boolean;
|
|
1822
1824
|
hasPpe: boolean;
|
|
1823
1825
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
1824
|
-
createdAt: string | Date;
|
|
1825
|
-
updatedAt: string | Date;
|
|
1826
|
-
email?: string | null | undefined;
|
|
1827
1826
|
lastName?: string | null | undefined;
|
|
1827
|
+
email?: string | null | undefined;
|
|
1828
|
+
createdBy?: {
|
|
1829
|
+
lastName: string;
|
|
1830
|
+
firstName: string;
|
|
1831
|
+
email: string;
|
|
1832
|
+
phone: string;
|
|
1833
|
+
createdAt: string | Date;
|
|
1834
|
+
id: string;
|
|
1835
|
+
updatedAt: string | Date;
|
|
1836
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
1837
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1838
|
+
} | null | undefined;
|
|
1828
1839
|
phoneNumbers?: {
|
|
1829
1840
|
id: string;
|
|
1830
1841
|
phoneNumber: string;
|
|
@@ -1864,17 +1875,6 @@ export declare const workersContractRouter: {
|
|
|
1864
1875
|
expiryDate?: string | Date | null | undefined;
|
|
1865
1876
|
} | null | undefined;
|
|
1866
1877
|
createdByUserId?: string | null | undefined;
|
|
1867
|
-
createdBy?: {
|
|
1868
|
-
email: string;
|
|
1869
|
-
phone: string;
|
|
1870
|
-
id: string;
|
|
1871
|
-
firstName: string;
|
|
1872
|
-
lastName: string;
|
|
1873
|
-
createdAt: string | Date;
|
|
1874
|
-
updatedAt: string | Date;
|
|
1875
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1876
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1877
|
-
} | null | undefined;
|
|
1878
1878
|
distanceKm?: number | null | undefined;
|
|
1879
1879
|
}>;
|
|
1880
1880
|
409: z.ZodObject<{
|
|
@@ -1981,15 +1981,6 @@ export declare const workersContractRouter: {
|
|
|
1981
1981
|
page: number;
|
|
1982
1982
|
email?: string | undefined;
|
|
1983
1983
|
phone?: string | undefined;
|
|
1984
|
-
englishLevel?: "NONE" | "BASIC" | "INTERMEDIATE" | "ADVANCED" | "NATIVE" | null | undefined;
|
|
1985
|
-
nationality?: "AFGHAN" | "ALBANIAN" | "ALGERIAN" | "AMERICAN" | "ANDORRAN" | "ANGOLAN" | "ANTIGUANS" | "ARGENTINEAN" | "ARMENIAN" | "AUSTRALIAN" | "AUSTRIAN" | "AZERBAIJANI" | "BAHAMIAN" | "BAHRAINI" | "BANGLADESHI" | "BARBADIAN" | "BARBUDANS" | "BELARUSIAN" | "BELGIAN" | "BELIZEAN" | "BENINESE" | "BHUTANESE" | "BOLIVIAN" | "BOSNIAN" | "BRAZILIAN" | "BRITISH" | "BRUNEIAN" | "BULGARIAN" | "BURKINABE" | "BURMESE" | "BURUNDIAN" | "CAMBODIAN" | "CAMEROONIAN" | "CANADIAN" | "CAPE_VERDEAN" | "CENTRAL_AFRICAN" | "CHADIAN" | "CHILEAN" | "CHINESE" | "COLOMBIAN" | "COMORAN" | "CONGOLESE" | "COSTA_RICAN" | "CROATIAN" | "CUBAN" | "CYPRIOT" | "CZECH" | "DANISH" | "DJIBOUTI" | "DOMINICAN" | "DUTCH" | "EAST_TIMORESE" | "ECUADOREAN" | "EGYPTIAN" | "EMIRIAN" | "EQUATORIAL_GUINEAN" | "ERITREAN" | "ESTONIAN" | "ETHIOPIAN" | "FIJIAN" | "FILIPINO" | "FINNISH" | "FRENCH" | "GABONESE" | "GAMBIAN" | "GEORGIAN" | "GERMAN" | "GHANAIAN" | "GREEK" | "GRENADIAN" | "GUATEMALAN" | "GUINEA_BISSAUAN" | "GUINEAN" | "GUYANESE" | "HAITIAN" | "HERZEGOVINIAN" | "HONDURAN" | "HUNGARIAN" | "ICELANDER" | "INDIAN" | "INDONESIAN" | "IRANIAN" | "IRAQI" | "IRISH" | "ISRAELI" | "ITALIAN" | "IVORIAN" | "JAMAICAN" | "JAPANESE" | "JORDANIAN" | "KAZAKHSTANI" | "KENYAN" | "KITTIAN_AND_NEVISIAN" | "KUWAITI" | "KYRGYZ" | "LAOTIAN" | "LATVIAN" | "LEBANESE" | "LIBERIAN" | "LIBYAN" | "LIECHTENSTEINER" | "LITHUANIAN" | "LUXEMBOURGER" | "MACEDONIAN" | "MALAGASY" | "MALAWIAN" | "MALAYSIAN" | "MALDIVAN" | "MALIAN" | "MALTESE" | "MARSHALLESE" | "MAURITANIAN" | "MAURITIAN" | "MEXICAN" | "MICRONESIAN" | "MOLDOVAN" | "MONACAN" | "MONGOLIAN" | "MOROCCAN" | "MOSOTHO" | "MOTSWANA" | "MOZAMBICAN" | "NAMIBIAN" | "NAURUAN" | "NEPALESE" | "NEW_ZEALANDER" | "NI_VANUATU" | "NICARAGUAN" | "NIGERIEN" | "NIGERIAN" | "NORTH_KOREAN" | "NORTHERN_IRISH" | "NORWEGIAN" | "OMANI" | "PAKISTANI" | "PALAUAN" | "PANAMANIAN" | "PAPUA_NEW_GUINEAN" | "PARAGUAYAN" | "PERUVIAN" | "POLISH" | "PORTUGUESE" | "QATARI" | "ROMANIAN" | "RUSSIAN" | "RWANDAN" | "SAINT_LUCIAN" | "SALVADORAN" | "SAMOAN" | "SAN_MARINESE" | "SAO_TOMEAN" | "SAUDI" | "SCOTTISH" | "SENEGALESE" | "SERBIAN" | "SEYCHELLOIS" | "SIERRA_LEONEAN" | "SINGAPOREAN" | "SLOVAKIAN" | "SLOVENIAN" | "SOLOMON_ISLANDER" | "SOMALI" | "SOUTH_AFRICAN" | "SOUTH_KOREAN" | "SOUTH_SUDANESE" | "SPANISH" | "SRI_LANKAN" | "SUDANESE" | "SURINAMER" | "SWAZI" | "SWEDISH" | "SWISS" | "SYRIAN" | "TAIWANESE" | "TAJIK" | "TANZANIAN" | "THAI" | "TOGOLESE" | "TONGAN" | "TRINIDADIAN_OR_TOBAGONIAN" | "TUNISIAN" | "TURKISH" | "TUVALUAN" | "UGANDAN" | "UKRAINIAN" | "URUGUAYAN" | "UZBEKISTANI" | "VENEZUELAN" | "VIETNAMESE" | "WELSH" | "YEMENITE" | "ZAMBIAN" | "ZIMBABWEAN" | null | undefined;
|
|
1986
|
-
hasTools?: "only_with" | "only_without" | "all" | undefined;
|
|
1987
|
-
hasPpe?: "only_with" | "only_without" | "all" | undefined;
|
|
1988
|
-
location?: {
|
|
1989
|
-
postcode?: string | null | undefined;
|
|
1990
|
-
radius?: number | null | undefined;
|
|
1991
|
-
} | undefined;
|
|
1992
|
-
availability?: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE" | null | undefined;
|
|
1993
1984
|
createdAt?: {
|
|
1994
1985
|
from?: string | null | undefined;
|
|
1995
1986
|
to?: string | null | undefined;
|
|
@@ -1998,8 +1989,19 @@ export declare const workersContractRouter: {
|
|
|
1998
1989
|
from?: string | null | undefined;
|
|
1999
1990
|
to?: string | null | undefined;
|
|
2000
1991
|
} | undefined;
|
|
2001
|
-
createdBy?: string | undefined;
|
|
2002
1992
|
name?: string | undefined;
|
|
1993
|
+
sortBy?: "email" | "phone" | "nameSimilarity" | "fullName" | "distance" | null | undefined;
|
|
1994
|
+
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
1995
|
+
createdBy?: string | undefined;
|
|
1996
|
+
englishLevel?: "NONE" | "BASIC" | "INTERMEDIATE" | "ADVANCED" | "NATIVE" | null | undefined;
|
|
1997
|
+
nationality?: "AFGHAN" | "ALBANIAN" | "ALGERIAN" | "AMERICAN" | "ANDORRAN" | "ANGOLAN" | "ANTIGUANS" | "ARGENTINEAN" | "ARMENIAN" | "AUSTRALIAN" | "AUSTRIAN" | "AZERBAIJANI" | "BAHAMIAN" | "BAHRAINI" | "BANGLADESHI" | "BARBADIAN" | "BARBUDANS" | "BELARUSIAN" | "BELGIAN" | "BELIZEAN" | "BENINESE" | "BHUTANESE" | "BOLIVIAN" | "BOSNIAN" | "BRAZILIAN" | "BRITISH" | "BRUNEIAN" | "BULGARIAN" | "BURKINABE" | "BURMESE" | "BURUNDIAN" | "CAMBODIAN" | "CAMEROONIAN" | "CANADIAN" | "CAPE_VERDEAN" | "CENTRAL_AFRICAN" | "CHADIAN" | "CHILEAN" | "CHINESE" | "COLOMBIAN" | "COMORAN" | "CONGOLESE" | "COSTA_RICAN" | "CROATIAN" | "CUBAN" | "CYPRIOT" | "CZECH" | "DANISH" | "DJIBOUTI" | "DOMINICAN" | "DUTCH" | "EAST_TIMORESE" | "ECUADOREAN" | "EGYPTIAN" | "EMIRIAN" | "EQUATORIAL_GUINEAN" | "ERITREAN" | "ESTONIAN" | "ETHIOPIAN" | "FIJIAN" | "FILIPINO" | "FINNISH" | "FRENCH" | "GABONESE" | "GAMBIAN" | "GEORGIAN" | "GERMAN" | "GHANAIAN" | "GREEK" | "GRENADIAN" | "GUATEMALAN" | "GUINEA_BISSAUAN" | "GUINEAN" | "GUYANESE" | "HAITIAN" | "HERZEGOVINIAN" | "HONDURAN" | "HUNGARIAN" | "ICELANDER" | "INDIAN" | "INDONESIAN" | "IRANIAN" | "IRAQI" | "IRISH" | "ISRAELI" | "ITALIAN" | "IVORIAN" | "JAMAICAN" | "JAPANESE" | "JORDANIAN" | "KAZAKHSTANI" | "KENYAN" | "KITTIAN_AND_NEVISIAN" | "KUWAITI" | "KYRGYZ" | "LAOTIAN" | "LATVIAN" | "LEBANESE" | "LIBERIAN" | "LIBYAN" | "LIECHTENSTEINER" | "LITHUANIAN" | "LUXEMBOURGER" | "MACEDONIAN" | "MALAGASY" | "MALAWIAN" | "MALAYSIAN" | "MALDIVAN" | "MALIAN" | "MALTESE" | "MARSHALLESE" | "MAURITANIAN" | "MAURITIAN" | "MEXICAN" | "MICRONESIAN" | "MOLDOVAN" | "MONACAN" | "MONGOLIAN" | "MOROCCAN" | "MOSOTHO" | "MOTSWANA" | "MOZAMBICAN" | "NAMIBIAN" | "NAURUAN" | "NEPALESE" | "NEW_ZEALANDER" | "NI_VANUATU" | "NICARAGUAN" | "NIGERIEN" | "NIGERIAN" | "NORTH_KOREAN" | "NORTHERN_IRISH" | "NORWEGIAN" | "OMANI" | "PAKISTANI" | "PALAUAN" | "PANAMANIAN" | "PAPUA_NEW_GUINEAN" | "PARAGUAYAN" | "PERUVIAN" | "POLISH" | "PORTUGUESE" | "QATARI" | "ROMANIAN" | "RUSSIAN" | "RWANDAN" | "SAINT_LUCIAN" | "SALVADORAN" | "SAMOAN" | "SAN_MARINESE" | "SAO_TOMEAN" | "SAUDI" | "SCOTTISH" | "SENEGALESE" | "SERBIAN" | "SEYCHELLOIS" | "SIERRA_LEONEAN" | "SINGAPOREAN" | "SLOVAKIAN" | "SLOVENIAN" | "SOLOMON_ISLANDER" | "SOMALI" | "SOUTH_AFRICAN" | "SOUTH_KOREAN" | "SOUTH_SUDANESE" | "SPANISH" | "SRI_LANKAN" | "SUDANESE" | "SURINAMER" | "SWAZI" | "SWEDISH" | "SWISS" | "SYRIAN" | "TAIWANESE" | "TAJIK" | "TANZANIAN" | "THAI" | "TOGOLESE" | "TONGAN" | "TRINIDADIAN_OR_TOBAGONIAN" | "TUNISIAN" | "TURKISH" | "TUVALUAN" | "UGANDAN" | "UKRAINIAN" | "URUGUAYAN" | "UZBEKISTANI" | "VENEZUELAN" | "VIETNAMESE" | "WELSH" | "YEMENITE" | "ZAMBIAN" | "ZIMBABWEAN" | null | undefined;
|
|
1998
|
+
hasTools?: "only_with" | "only_without" | "all" | undefined;
|
|
1999
|
+
hasPpe?: "only_with" | "only_without" | "all" | undefined;
|
|
2000
|
+
location?: {
|
|
2001
|
+
postcode?: string | null | undefined;
|
|
2002
|
+
radius?: number | null | undefined;
|
|
2003
|
+
} | undefined;
|
|
2004
|
+
availability?: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE" | null | undefined;
|
|
2003
2005
|
tradeFilters?: {
|
|
2004
2006
|
tradeId: string;
|
|
2005
2007
|
mainTrade?: boolean | undefined;
|
|
@@ -2008,20 +2010,9 @@ export declare const workersContractRouter: {
|
|
|
2008
2010
|
qualificationId?: string | undefined;
|
|
2009
2011
|
qualificationTypeId?: string | undefined;
|
|
2010
2012
|
}[] | undefined;
|
|
2011
|
-
sortBy?: "nameSimilarity" | "fullName" | "distance" | "email" | "phone" | null | undefined;
|
|
2012
|
-
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
2013
2013
|
}, {
|
|
2014
2014
|
email?: string | undefined;
|
|
2015
2015
|
phone?: string | undefined;
|
|
2016
|
-
englishLevel?: "NONE" | "BASIC" | "INTERMEDIATE" | "ADVANCED" | "NATIVE" | null | undefined;
|
|
2017
|
-
nationality?: "AFGHAN" | "ALBANIAN" | "ALGERIAN" | "AMERICAN" | "ANDORRAN" | "ANGOLAN" | "ANTIGUANS" | "ARGENTINEAN" | "ARMENIAN" | "AUSTRALIAN" | "AUSTRIAN" | "AZERBAIJANI" | "BAHAMIAN" | "BAHRAINI" | "BANGLADESHI" | "BARBADIAN" | "BARBUDANS" | "BELARUSIAN" | "BELGIAN" | "BELIZEAN" | "BENINESE" | "BHUTANESE" | "BOLIVIAN" | "BOSNIAN" | "BRAZILIAN" | "BRITISH" | "BRUNEIAN" | "BULGARIAN" | "BURKINABE" | "BURMESE" | "BURUNDIAN" | "CAMBODIAN" | "CAMEROONIAN" | "CANADIAN" | "CAPE_VERDEAN" | "CENTRAL_AFRICAN" | "CHADIAN" | "CHILEAN" | "CHINESE" | "COLOMBIAN" | "COMORAN" | "CONGOLESE" | "COSTA_RICAN" | "CROATIAN" | "CUBAN" | "CYPRIOT" | "CZECH" | "DANISH" | "DJIBOUTI" | "DOMINICAN" | "DUTCH" | "EAST_TIMORESE" | "ECUADOREAN" | "EGYPTIAN" | "EMIRIAN" | "EQUATORIAL_GUINEAN" | "ERITREAN" | "ESTONIAN" | "ETHIOPIAN" | "FIJIAN" | "FILIPINO" | "FINNISH" | "FRENCH" | "GABONESE" | "GAMBIAN" | "GEORGIAN" | "GERMAN" | "GHANAIAN" | "GREEK" | "GRENADIAN" | "GUATEMALAN" | "GUINEA_BISSAUAN" | "GUINEAN" | "GUYANESE" | "HAITIAN" | "HERZEGOVINIAN" | "HONDURAN" | "HUNGARIAN" | "ICELANDER" | "INDIAN" | "INDONESIAN" | "IRANIAN" | "IRAQI" | "IRISH" | "ISRAELI" | "ITALIAN" | "IVORIAN" | "JAMAICAN" | "JAPANESE" | "JORDANIAN" | "KAZAKHSTANI" | "KENYAN" | "KITTIAN_AND_NEVISIAN" | "KUWAITI" | "KYRGYZ" | "LAOTIAN" | "LATVIAN" | "LEBANESE" | "LIBERIAN" | "LIBYAN" | "LIECHTENSTEINER" | "LITHUANIAN" | "LUXEMBOURGER" | "MACEDONIAN" | "MALAGASY" | "MALAWIAN" | "MALAYSIAN" | "MALDIVAN" | "MALIAN" | "MALTESE" | "MARSHALLESE" | "MAURITANIAN" | "MAURITIAN" | "MEXICAN" | "MICRONESIAN" | "MOLDOVAN" | "MONACAN" | "MONGOLIAN" | "MOROCCAN" | "MOSOTHO" | "MOTSWANA" | "MOZAMBICAN" | "NAMIBIAN" | "NAURUAN" | "NEPALESE" | "NEW_ZEALANDER" | "NI_VANUATU" | "NICARAGUAN" | "NIGERIEN" | "NIGERIAN" | "NORTH_KOREAN" | "NORTHERN_IRISH" | "NORWEGIAN" | "OMANI" | "PAKISTANI" | "PALAUAN" | "PANAMANIAN" | "PAPUA_NEW_GUINEAN" | "PARAGUAYAN" | "PERUVIAN" | "POLISH" | "PORTUGUESE" | "QATARI" | "ROMANIAN" | "RUSSIAN" | "RWANDAN" | "SAINT_LUCIAN" | "SALVADORAN" | "SAMOAN" | "SAN_MARINESE" | "SAO_TOMEAN" | "SAUDI" | "SCOTTISH" | "SENEGALESE" | "SERBIAN" | "SEYCHELLOIS" | "SIERRA_LEONEAN" | "SINGAPOREAN" | "SLOVAKIAN" | "SLOVENIAN" | "SOLOMON_ISLANDER" | "SOMALI" | "SOUTH_AFRICAN" | "SOUTH_KOREAN" | "SOUTH_SUDANESE" | "SPANISH" | "SRI_LANKAN" | "SUDANESE" | "SURINAMER" | "SWAZI" | "SWEDISH" | "SWISS" | "SYRIAN" | "TAIWANESE" | "TAJIK" | "TANZANIAN" | "THAI" | "TOGOLESE" | "TONGAN" | "TRINIDADIAN_OR_TOBAGONIAN" | "TUNISIAN" | "TURKISH" | "TUVALUAN" | "UGANDAN" | "UKRAINIAN" | "URUGUAYAN" | "UZBEKISTANI" | "VENEZUELAN" | "VIETNAMESE" | "WELSH" | "YEMENITE" | "ZAMBIAN" | "ZIMBABWEAN" | null | undefined;
|
|
2018
|
-
hasTools?: "only_with" | "only_without" | "all" | undefined;
|
|
2019
|
-
hasPpe?: "only_with" | "only_without" | "all" | undefined;
|
|
2020
|
-
location?: {
|
|
2021
|
-
postcode?: string | null | undefined;
|
|
2022
|
-
radius?: number | null | undefined;
|
|
2023
|
-
} | undefined;
|
|
2024
|
-
availability?: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE" | null | undefined;
|
|
2025
2016
|
createdAt?: {
|
|
2026
2017
|
from?: string | null | undefined;
|
|
2027
2018
|
to?: string | null | undefined;
|
|
@@ -2030,10 +2021,21 @@ export declare const workersContractRouter: {
|
|
|
2030
2021
|
from?: string | null | undefined;
|
|
2031
2022
|
to?: string | null | undefined;
|
|
2032
2023
|
} | undefined;
|
|
2033
|
-
createdBy?: string | undefined;
|
|
2034
2024
|
limit?: number | undefined;
|
|
2035
2025
|
page?: number | undefined;
|
|
2036
2026
|
name?: string | undefined;
|
|
2027
|
+
sortBy?: "email" | "phone" | "nameSimilarity" | "fullName" | "distance" | null | undefined;
|
|
2028
|
+
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
2029
|
+
createdBy?: string | undefined;
|
|
2030
|
+
englishLevel?: "NONE" | "BASIC" | "INTERMEDIATE" | "ADVANCED" | "NATIVE" | null | undefined;
|
|
2031
|
+
nationality?: "AFGHAN" | "ALBANIAN" | "ALGERIAN" | "AMERICAN" | "ANDORRAN" | "ANGOLAN" | "ANTIGUANS" | "ARGENTINEAN" | "ARMENIAN" | "AUSTRALIAN" | "AUSTRIAN" | "AZERBAIJANI" | "BAHAMIAN" | "BAHRAINI" | "BANGLADESHI" | "BARBADIAN" | "BARBUDANS" | "BELARUSIAN" | "BELGIAN" | "BELIZEAN" | "BENINESE" | "BHUTANESE" | "BOLIVIAN" | "BOSNIAN" | "BRAZILIAN" | "BRITISH" | "BRUNEIAN" | "BULGARIAN" | "BURKINABE" | "BURMESE" | "BURUNDIAN" | "CAMBODIAN" | "CAMEROONIAN" | "CANADIAN" | "CAPE_VERDEAN" | "CENTRAL_AFRICAN" | "CHADIAN" | "CHILEAN" | "CHINESE" | "COLOMBIAN" | "COMORAN" | "CONGOLESE" | "COSTA_RICAN" | "CROATIAN" | "CUBAN" | "CYPRIOT" | "CZECH" | "DANISH" | "DJIBOUTI" | "DOMINICAN" | "DUTCH" | "EAST_TIMORESE" | "ECUADOREAN" | "EGYPTIAN" | "EMIRIAN" | "EQUATORIAL_GUINEAN" | "ERITREAN" | "ESTONIAN" | "ETHIOPIAN" | "FIJIAN" | "FILIPINO" | "FINNISH" | "FRENCH" | "GABONESE" | "GAMBIAN" | "GEORGIAN" | "GERMAN" | "GHANAIAN" | "GREEK" | "GRENADIAN" | "GUATEMALAN" | "GUINEA_BISSAUAN" | "GUINEAN" | "GUYANESE" | "HAITIAN" | "HERZEGOVINIAN" | "HONDURAN" | "HUNGARIAN" | "ICELANDER" | "INDIAN" | "INDONESIAN" | "IRANIAN" | "IRAQI" | "IRISH" | "ISRAELI" | "ITALIAN" | "IVORIAN" | "JAMAICAN" | "JAPANESE" | "JORDANIAN" | "KAZAKHSTANI" | "KENYAN" | "KITTIAN_AND_NEVISIAN" | "KUWAITI" | "KYRGYZ" | "LAOTIAN" | "LATVIAN" | "LEBANESE" | "LIBERIAN" | "LIBYAN" | "LIECHTENSTEINER" | "LITHUANIAN" | "LUXEMBOURGER" | "MACEDONIAN" | "MALAGASY" | "MALAWIAN" | "MALAYSIAN" | "MALDIVAN" | "MALIAN" | "MALTESE" | "MARSHALLESE" | "MAURITANIAN" | "MAURITIAN" | "MEXICAN" | "MICRONESIAN" | "MOLDOVAN" | "MONACAN" | "MONGOLIAN" | "MOROCCAN" | "MOSOTHO" | "MOTSWANA" | "MOZAMBICAN" | "NAMIBIAN" | "NAURUAN" | "NEPALESE" | "NEW_ZEALANDER" | "NI_VANUATU" | "NICARAGUAN" | "NIGERIEN" | "NIGERIAN" | "NORTH_KOREAN" | "NORTHERN_IRISH" | "NORWEGIAN" | "OMANI" | "PAKISTANI" | "PALAUAN" | "PANAMANIAN" | "PAPUA_NEW_GUINEAN" | "PARAGUAYAN" | "PERUVIAN" | "POLISH" | "PORTUGUESE" | "QATARI" | "ROMANIAN" | "RUSSIAN" | "RWANDAN" | "SAINT_LUCIAN" | "SALVADORAN" | "SAMOAN" | "SAN_MARINESE" | "SAO_TOMEAN" | "SAUDI" | "SCOTTISH" | "SENEGALESE" | "SERBIAN" | "SEYCHELLOIS" | "SIERRA_LEONEAN" | "SINGAPOREAN" | "SLOVAKIAN" | "SLOVENIAN" | "SOLOMON_ISLANDER" | "SOMALI" | "SOUTH_AFRICAN" | "SOUTH_KOREAN" | "SOUTH_SUDANESE" | "SPANISH" | "SRI_LANKAN" | "SUDANESE" | "SURINAMER" | "SWAZI" | "SWEDISH" | "SWISS" | "SYRIAN" | "TAIWANESE" | "TAJIK" | "TANZANIAN" | "THAI" | "TOGOLESE" | "TONGAN" | "TRINIDADIAN_OR_TOBAGONIAN" | "TUNISIAN" | "TURKISH" | "TUVALUAN" | "UGANDAN" | "UKRAINIAN" | "URUGUAYAN" | "UZBEKISTANI" | "VENEZUELAN" | "VIETNAMESE" | "WELSH" | "YEMENITE" | "ZAMBIAN" | "ZIMBABWEAN" | null | undefined;
|
|
2032
|
+
hasTools?: "only_with" | "only_without" | "all" | undefined;
|
|
2033
|
+
hasPpe?: "only_with" | "only_without" | "all" | undefined;
|
|
2034
|
+
location?: {
|
|
2035
|
+
postcode?: string | null | undefined;
|
|
2036
|
+
radius?: number | null | undefined;
|
|
2037
|
+
} | undefined;
|
|
2038
|
+
availability?: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE" | null | undefined;
|
|
2037
2039
|
tradeFilters?: {
|
|
2038
2040
|
tradeId: string;
|
|
2039
2041
|
mainTrade?: unknown;
|
|
@@ -2042,8 +2044,6 @@ export declare const workersContractRouter: {
|
|
|
2042
2044
|
qualificationId?: string | undefined;
|
|
2043
2045
|
qualificationTypeId?: string | undefined;
|
|
2044
2046
|
}[] | undefined;
|
|
2045
|
-
sortBy?: "nameSimilarity" | "fullName" | "distance" | "email" | "phone" | null | undefined;
|
|
2046
|
-
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
2047
2047
|
}>;
|
|
2048
2048
|
summary: "Get all workers";
|
|
2049
2049
|
method: "GET";
|
|
@@ -2259,37 +2259,39 @@ export declare const workersContractRouter: {
|
|
|
2259
2259
|
lastName: z.ZodString;
|
|
2260
2260
|
email: z.ZodString;
|
|
2261
2261
|
phone: z.ZodString;
|
|
2262
|
-
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
2262
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEAD"]>, "many">>;
|
|
2263
2263
|
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"]>>>;
|
|
2264
2264
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2265
2265
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2266
2266
|
}, "strip", z.ZodTypeAny, {
|
|
2267
|
+
lastName: string;
|
|
2268
|
+
firstName: string;
|
|
2267
2269
|
email: string;
|
|
2268
2270
|
phone: string;
|
|
2269
|
-
id: string;
|
|
2270
|
-
firstName: string;
|
|
2271
|
-
lastName: string;
|
|
2272
2271
|
createdAt: string;
|
|
2272
|
+
id: string;
|
|
2273
2273
|
updatedAt: string;
|
|
2274
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2274
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
2275
2275
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2276
2276
|
}, {
|
|
2277
|
+
lastName: string;
|
|
2278
|
+
firstName: string;
|
|
2277
2279
|
email: string;
|
|
2278
2280
|
phone: string;
|
|
2279
|
-
id: string;
|
|
2280
|
-
firstName: string;
|
|
2281
|
-
lastName: string;
|
|
2282
2281
|
createdAt: string | Date;
|
|
2282
|
+
id: string;
|
|
2283
2283
|
updatedAt: string | Date;
|
|
2284
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2284
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
2285
2285
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2286
2286
|
}>>>;
|
|
2287
2287
|
distanceKm: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2288
2288
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2289
2289
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2290
2290
|
}, "strip", z.ZodTypeAny, {
|
|
2291
|
-
id: string;
|
|
2292
2291
|
firstName: string;
|
|
2292
|
+
createdAt: string;
|
|
2293
|
+
id: string;
|
|
2294
|
+
updatedAt: string;
|
|
2293
2295
|
phoneNumbers: {
|
|
2294
2296
|
id: string;
|
|
2295
2297
|
phoneNumber: string;
|
|
@@ -2299,10 +2301,19 @@ export declare const workersContractRouter: {
|
|
|
2299
2301
|
hasTools: boolean;
|
|
2300
2302
|
hasPpe: boolean;
|
|
2301
2303
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
2302
|
-
createdAt: string;
|
|
2303
|
-
updatedAt: string;
|
|
2304
|
-
email?: string | null | undefined;
|
|
2305
2304
|
lastName?: string | null | undefined;
|
|
2305
|
+
email?: string | null | undefined;
|
|
2306
|
+
createdBy?: {
|
|
2307
|
+
lastName: string;
|
|
2308
|
+
firstName: string;
|
|
2309
|
+
email: string;
|
|
2310
|
+
phone: string;
|
|
2311
|
+
createdAt: string;
|
|
2312
|
+
id: string;
|
|
2313
|
+
updatedAt: string;
|
|
2314
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
2315
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2316
|
+
} | null | undefined;
|
|
2306
2317
|
nino?: string | null | undefined;
|
|
2307
2318
|
dateOfBirth?: string | null | undefined;
|
|
2308
2319
|
bio?: string | null | undefined;
|
|
@@ -2336,28 +2347,28 @@ export declare const workersContractRouter: {
|
|
|
2336
2347
|
expiryDate?: string | null | undefined;
|
|
2337
2348
|
} | null | undefined;
|
|
2338
2349
|
createdByUserId?: string | null | undefined;
|
|
2339
|
-
createdBy?: {
|
|
2340
|
-
email: string;
|
|
2341
|
-
phone: string;
|
|
2342
|
-
id: string;
|
|
2343
|
-
firstName: string;
|
|
2344
|
-
lastName: string;
|
|
2345
|
-
createdAt: string;
|
|
2346
|
-
updatedAt: string;
|
|
2347
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2348
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2349
|
-
} | null | undefined;
|
|
2350
2350
|
distanceKm?: number | null | undefined;
|
|
2351
2351
|
}, {
|
|
2352
|
-
id: string;
|
|
2353
2352
|
firstName: string;
|
|
2353
|
+
createdAt: string | Date;
|
|
2354
|
+
id: string;
|
|
2355
|
+
updatedAt: string | Date;
|
|
2354
2356
|
hasTools: boolean;
|
|
2355
2357
|
hasPpe: boolean;
|
|
2356
2358
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
2357
|
-
createdAt: string | Date;
|
|
2358
|
-
updatedAt: string | Date;
|
|
2359
|
-
email?: string | null | undefined;
|
|
2360
2359
|
lastName?: string | null | undefined;
|
|
2360
|
+
email?: string | null | undefined;
|
|
2361
|
+
createdBy?: {
|
|
2362
|
+
lastName: string;
|
|
2363
|
+
firstName: string;
|
|
2364
|
+
email: string;
|
|
2365
|
+
phone: string;
|
|
2366
|
+
createdAt: string | Date;
|
|
2367
|
+
id: string;
|
|
2368
|
+
updatedAt: string | Date;
|
|
2369
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
2370
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2371
|
+
} | null | undefined;
|
|
2361
2372
|
phoneNumbers?: {
|
|
2362
2373
|
id: string;
|
|
2363
2374
|
phoneNumber: string;
|
|
@@ -2397,17 +2408,6 @@ export declare const workersContractRouter: {
|
|
|
2397
2408
|
expiryDate?: string | Date | null | undefined;
|
|
2398
2409
|
} | null | undefined;
|
|
2399
2410
|
createdByUserId?: string | null | undefined;
|
|
2400
|
-
createdBy?: {
|
|
2401
|
-
email: string;
|
|
2402
|
-
phone: string;
|
|
2403
|
-
id: string;
|
|
2404
|
-
firstName: string;
|
|
2405
|
-
lastName: string;
|
|
2406
|
-
createdAt: string | Date;
|
|
2407
|
-
updatedAt: string | Date;
|
|
2408
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2409
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2410
|
-
} | null | undefined;
|
|
2411
2411
|
distanceKm?: number | null | undefined;
|
|
2412
2412
|
}>, "many">;
|
|
2413
2413
|
totalCount: z.ZodNumber;
|
|
@@ -2418,8 +2418,10 @@ export declare const workersContractRouter: {
|
|
|
2418
2418
|
}, "strip", z.ZodTypeAny, {
|
|
2419
2419
|
limit: number;
|
|
2420
2420
|
items: {
|
|
2421
|
-
id: string;
|
|
2422
2421
|
firstName: string;
|
|
2422
|
+
createdAt: string;
|
|
2423
|
+
id: string;
|
|
2424
|
+
updatedAt: string;
|
|
2423
2425
|
phoneNumbers: {
|
|
2424
2426
|
id: string;
|
|
2425
2427
|
phoneNumber: string;
|
|
@@ -2429,10 +2431,19 @@ export declare const workersContractRouter: {
|
|
|
2429
2431
|
hasTools: boolean;
|
|
2430
2432
|
hasPpe: boolean;
|
|
2431
2433
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
2432
|
-
createdAt: string;
|
|
2433
|
-
updatedAt: string;
|
|
2434
|
-
email?: string | null | undefined;
|
|
2435
2434
|
lastName?: string | null | undefined;
|
|
2435
|
+
email?: string | null | undefined;
|
|
2436
|
+
createdBy?: {
|
|
2437
|
+
lastName: string;
|
|
2438
|
+
firstName: string;
|
|
2439
|
+
email: string;
|
|
2440
|
+
phone: string;
|
|
2441
|
+
createdAt: string;
|
|
2442
|
+
id: string;
|
|
2443
|
+
updatedAt: string;
|
|
2444
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
2445
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2446
|
+
} | null | undefined;
|
|
2436
2447
|
nino?: string | null | undefined;
|
|
2437
2448
|
dateOfBirth?: string | null | undefined;
|
|
2438
2449
|
bio?: string | null | undefined;
|
|
@@ -2466,17 +2477,6 @@ export declare const workersContractRouter: {
|
|
|
2466
2477
|
expiryDate?: string | null | undefined;
|
|
2467
2478
|
} | null | undefined;
|
|
2468
2479
|
createdByUserId?: string | null | undefined;
|
|
2469
|
-
createdBy?: {
|
|
2470
|
-
email: string;
|
|
2471
|
-
phone: string;
|
|
2472
|
-
id: string;
|
|
2473
|
-
firstName: string;
|
|
2474
|
-
lastName: string;
|
|
2475
|
-
createdAt: string;
|
|
2476
|
-
updatedAt: string;
|
|
2477
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2478
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2479
|
-
} | null | undefined;
|
|
2480
2480
|
distanceKm?: number | null | undefined;
|
|
2481
2481
|
}[];
|
|
2482
2482
|
totalCount: number;
|
|
@@ -2486,15 +2486,26 @@ export declare const workersContractRouter: {
|
|
|
2486
2486
|
}, {
|
|
2487
2487
|
limit: number;
|
|
2488
2488
|
items: {
|
|
2489
|
-
id: string;
|
|
2490
2489
|
firstName: string;
|
|
2490
|
+
createdAt: string | Date;
|
|
2491
|
+
id: string;
|
|
2492
|
+
updatedAt: string | Date;
|
|
2491
2493
|
hasTools: boolean;
|
|
2492
2494
|
hasPpe: boolean;
|
|
2493
2495
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
2494
|
-
createdAt: string | Date;
|
|
2495
|
-
updatedAt: string | Date;
|
|
2496
|
-
email?: string | null | undefined;
|
|
2497
2496
|
lastName?: string | null | undefined;
|
|
2497
|
+
email?: string | null | undefined;
|
|
2498
|
+
createdBy?: {
|
|
2499
|
+
lastName: string;
|
|
2500
|
+
firstName: string;
|
|
2501
|
+
email: string;
|
|
2502
|
+
phone: string;
|
|
2503
|
+
createdAt: string | Date;
|
|
2504
|
+
id: string;
|
|
2505
|
+
updatedAt: string | Date;
|
|
2506
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
2507
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2508
|
+
} | null | undefined;
|
|
2498
2509
|
phoneNumbers?: {
|
|
2499
2510
|
id: string;
|
|
2500
2511
|
phoneNumber: string;
|
|
@@ -2534,17 +2545,6 @@ export declare const workersContractRouter: {
|
|
|
2534
2545
|
expiryDate?: string | Date | null | undefined;
|
|
2535
2546
|
} | null | undefined;
|
|
2536
2547
|
createdByUserId?: string | null | undefined;
|
|
2537
|
-
createdBy?: {
|
|
2538
|
-
email: string;
|
|
2539
|
-
phone: string;
|
|
2540
|
-
id: string;
|
|
2541
|
-
firstName: string;
|
|
2542
|
-
lastName: string;
|
|
2543
|
-
createdAt: string | Date;
|
|
2544
|
-
updatedAt: string | Date;
|
|
2545
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2546
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2547
|
-
} | null | undefined;
|
|
2548
2548
|
distanceKm?: number | null | undefined;
|
|
2549
2549
|
}[];
|
|
2550
2550
|
totalCount: number;
|
|
@@ -2781,37 +2781,39 @@ export declare const workersContractRouter: {
|
|
|
2781
2781
|
lastName: z.ZodString;
|
|
2782
2782
|
email: z.ZodString;
|
|
2783
2783
|
phone: z.ZodString;
|
|
2784
|
-
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
2784
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEAD"]>, "many">>;
|
|
2785
2785
|
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"]>>>;
|
|
2786
2786
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2787
2787
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2788
2788
|
}, "strip", z.ZodTypeAny, {
|
|
2789
|
+
lastName: string;
|
|
2790
|
+
firstName: string;
|
|
2789
2791
|
email: string;
|
|
2790
2792
|
phone: string;
|
|
2791
|
-
id: string;
|
|
2792
|
-
firstName: string;
|
|
2793
|
-
lastName: string;
|
|
2794
2793
|
createdAt: string;
|
|
2794
|
+
id: string;
|
|
2795
2795
|
updatedAt: string;
|
|
2796
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2796
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
2797
2797
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2798
2798
|
}, {
|
|
2799
|
+
lastName: string;
|
|
2800
|
+
firstName: string;
|
|
2799
2801
|
email: string;
|
|
2800
2802
|
phone: string;
|
|
2801
|
-
id: string;
|
|
2802
|
-
firstName: string;
|
|
2803
|
-
lastName: string;
|
|
2804
2803
|
createdAt: string | Date;
|
|
2804
|
+
id: string;
|
|
2805
2805
|
updatedAt: string | Date;
|
|
2806
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2806
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
2807
2807
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2808
2808
|
}>>>;
|
|
2809
2809
|
distanceKm: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2810
2810
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2811
2811
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2812
2812
|
}, "strip", z.ZodTypeAny, {
|
|
2813
|
-
id: string;
|
|
2814
2813
|
firstName: string;
|
|
2814
|
+
createdAt: string;
|
|
2815
|
+
id: string;
|
|
2816
|
+
updatedAt: string;
|
|
2815
2817
|
phoneNumbers: {
|
|
2816
2818
|
id: string;
|
|
2817
2819
|
phoneNumber: string;
|
|
@@ -2821,10 +2823,19 @@ export declare const workersContractRouter: {
|
|
|
2821
2823
|
hasTools: boolean;
|
|
2822
2824
|
hasPpe: boolean;
|
|
2823
2825
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
2824
|
-
createdAt: string;
|
|
2825
|
-
updatedAt: string;
|
|
2826
|
-
email?: string | null | undefined;
|
|
2827
2826
|
lastName?: string | null | undefined;
|
|
2827
|
+
email?: string | null | undefined;
|
|
2828
|
+
createdBy?: {
|
|
2829
|
+
lastName: string;
|
|
2830
|
+
firstName: string;
|
|
2831
|
+
email: string;
|
|
2832
|
+
phone: string;
|
|
2833
|
+
createdAt: string;
|
|
2834
|
+
id: string;
|
|
2835
|
+
updatedAt: string;
|
|
2836
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
2837
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2838
|
+
} | null | undefined;
|
|
2828
2839
|
nino?: string | null | undefined;
|
|
2829
2840
|
dateOfBirth?: string | null | undefined;
|
|
2830
2841
|
bio?: string | null | undefined;
|
|
@@ -2858,28 +2869,28 @@ export declare const workersContractRouter: {
|
|
|
2858
2869
|
expiryDate?: string | null | undefined;
|
|
2859
2870
|
} | null | undefined;
|
|
2860
2871
|
createdByUserId?: string | null | undefined;
|
|
2861
|
-
createdBy?: {
|
|
2862
|
-
email: string;
|
|
2863
|
-
phone: string;
|
|
2864
|
-
id: string;
|
|
2865
|
-
firstName: string;
|
|
2866
|
-
lastName: string;
|
|
2867
|
-
createdAt: string;
|
|
2868
|
-
updatedAt: string;
|
|
2869
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2870
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2871
|
-
} | null | undefined;
|
|
2872
2872
|
distanceKm?: number | null | undefined;
|
|
2873
2873
|
}, {
|
|
2874
|
-
id: string;
|
|
2875
2874
|
firstName: string;
|
|
2875
|
+
createdAt: string | Date;
|
|
2876
|
+
id: string;
|
|
2877
|
+
updatedAt: string | Date;
|
|
2876
2878
|
hasTools: boolean;
|
|
2877
2879
|
hasPpe: boolean;
|
|
2878
2880
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
2879
|
-
createdAt: string | Date;
|
|
2880
|
-
updatedAt: string | Date;
|
|
2881
|
-
email?: string | null | undefined;
|
|
2882
2881
|
lastName?: string | null | undefined;
|
|
2882
|
+
email?: string | null | undefined;
|
|
2883
|
+
createdBy?: {
|
|
2884
|
+
lastName: string;
|
|
2885
|
+
firstName: string;
|
|
2886
|
+
email: string;
|
|
2887
|
+
phone: string;
|
|
2888
|
+
createdAt: string | Date;
|
|
2889
|
+
id: string;
|
|
2890
|
+
updatedAt: string | Date;
|
|
2891
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
2892
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2893
|
+
} | null | undefined;
|
|
2883
2894
|
phoneNumbers?: {
|
|
2884
2895
|
id: string;
|
|
2885
2896
|
phoneNumber: string;
|
|
@@ -2919,17 +2930,6 @@ export declare const workersContractRouter: {
|
|
|
2919
2930
|
expiryDate?: string | Date | null | undefined;
|
|
2920
2931
|
} | null | undefined;
|
|
2921
2932
|
createdByUserId?: string | null | undefined;
|
|
2922
|
-
createdBy?: {
|
|
2923
|
-
email: string;
|
|
2924
|
-
phone: string;
|
|
2925
|
-
id: string;
|
|
2926
|
-
firstName: string;
|
|
2927
|
-
lastName: string;
|
|
2928
|
-
createdAt: string | Date;
|
|
2929
|
-
updatedAt: string | Date;
|
|
2930
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
2931
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2932
|
-
} | null | undefined;
|
|
2933
2933
|
distanceKm?: number | null | undefined;
|
|
2934
2934
|
}>;
|
|
2935
2935
|
404: z.ZodObject<{
|
|
@@ -2986,33 +2986,33 @@ export declare const workersContractRouter: {
|
|
|
2986
2986
|
isPrimary: z.ZodOptional<z.ZodBoolean>;
|
|
2987
2987
|
}, "strip", z.ZodTypeAny, {
|
|
2988
2988
|
id?: string | undefined;
|
|
2989
|
-
phoneNumber?: string | undefined;
|
|
2990
2989
|
description?: string | null | undefined;
|
|
2990
|
+
phoneNumber?: string | undefined;
|
|
2991
2991
|
isPrimary?: boolean | undefined;
|
|
2992
2992
|
}, {
|
|
2993
2993
|
id?: string | undefined;
|
|
2994
|
-
phoneNumber?: string | undefined;
|
|
2995
2994
|
description?: string | null | undefined;
|
|
2995
|
+
phoneNumber?: string | undefined;
|
|
2996
2996
|
isPrimary?: boolean | undefined;
|
|
2997
2997
|
}>, {
|
|
2998
2998
|
id?: string | undefined;
|
|
2999
|
-
phoneNumber?: string | undefined;
|
|
3000
2999
|
description?: string | null | undefined;
|
|
3000
|
+
phoneNumber?: string | undefined;
|
|
3001
3001
|
isPrimary?: boolean | undefined;
|
|
3002
3002
|
}, {
|
|
3003
3003
|
id?: string | undefined;
|
|
3004
|
-
phoneNumber?: string | undefined;
|
|
3005
3004
|
description?: string | null | undefined;
|
|
3005
|
+
phoneNumber?: string | undefined;
|
|
3006
3006
|
isPrimary?: boolean | undefined;
|
|
3007
3007
|
}>, "many">, {
|
|
3008
3008
|
id?: string | undefined;
|
|
3009
|
-
phoneNumber?: string | undefined;
|
|
3010
3009
|
description?: string | null | undefined;
|
|
3010
|
+
phoneNumber?: string | undefined;
|
|
3011
3011
|
isPrimary?: boolean | undefined;
|
|
3012
3012
|
}[], {
|
|
3013
3013
|
id?: string | undefined;
|
|
3014
|
-
phoneNumber?: string | undefined;
|
|
3015
3014
|
description?: string | null | undefined;
|
|
3015
|
+
phoneNumber?: string | undefined;
|
|
3016
3016
|
isPrimary?: boolean | undefined;
|
|
3017
3017
|
}[]>>;
|
|
3018
3018
|
nino: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -3090,13 +3090,13 @@ export declare const workersContractRouter: {
|
|
|
3090
3090
|
}>>>;
|
|
3091
3091
|
availability: z.ZodOptional<z.ZodEnum<["AVAILABLE", "PARTIALLY_AVAILABLE", "UNAVAILABLE"]>>;
|
|
3092
3092
|
}, "strip", z.ZodTypeAny, {
|
|
3093
|
-
email?: string | null | undefined;
|
|
3094
|
-
firstName?: string | undefined;
|
|
3095
3093
|
lastName?: string | null | undefined;
|
|
3094
|
+
firstName?: string | undefined;
|
|
3095
|
+
email?: string | null | undefined;
|
|
3096
3096
|
phoneNumbers?: {
|
|
3097
3097
|
id?: string | undefined;
|
|
3098
|
-
phoneNumber?: string | undefined;
|
|
3099
3098
|
description?: string | null | undefined;
|
|
3099
|
+
phoneNumber?: string | undefined;
|
|
3100
3100
|
isPrimary?: boolean | undefined;
|
|
3101
3101
|
}[] | undefined;
|
|
3102
3102
|
nino?: string | null | undefined;
|
|
@@ -3130,13 +3130,13 @@ export declare const workersContractRouter: {
|
|
|
3130
3130
|
} | null | undefined;
|
|
3131
3131
|
availability?: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE" | undefined;
|
|
3132
3132
|
}, {
|
|
3133
|
-
email?: string | null | undefined;
|
|
3134
|
-
firstName?: string | undefined;
|
|
3135
3133
|
lastName?: string | null | undefined;
|
|
3134
|
+
firstName?: string | undefined;
|
|
3135
|
+
email?: string | null | undefined;
|
|
3136
3136
|
phoneNumbers?: {
|
|
3137
3137
|
id?: string | undefined;
|
|
3138
|
-
phoneNumber?: string | undefined;
|
|
3139
3138
|
description?: string | null | undefined;
|
|
3139
|
+
phoneNumber?: string | undefined;
|
|
3140
3140
|
isPrimary?: boolean | undefined;
|
|
3141
3141
|
}[] | undefined;
|
|
3142
3142
|
nino?: string | null | undefined;
|
|
@@ -3381,37 +3381,39 @@ export declare const workersContractRouter: {
|
|
|
3381
3381
|
lastName: z.ZodString;
|
|
3382
3382
|
email: z.ZodString;
|
|
3383
3383
|
phone: z.ZodString;
|
|
3384
|
-
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
3384
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEAD"]>, "many">>;
|
|
3385
3385
|
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"]>>>;
|
|
3386
3386
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3387
3387
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3388
3388
|
}, "strip", z.ZodTypeAny, {
|
|
3389
|
+
lastName: string;
|
|
3390
|
+
firstName: string;
|
|
3389
3391
|
email: string;
|
|
3390
3392
|
phone: string;
|
|
3391
|
-
id: string;
|
|
3392
|
-
firstName: string;
|
|
3393
|
-
lastName: string;
|
|
3394
3393
|
createdAt: string;
|
|
3394
|
+
id: string;
|
|
3395
3395
|
updatedAt: string;
|
|
3396
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3396
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
3397
3397
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3398
3398
|
}, {
|
|
3399
|
+
lastName: string;
|
|
3400
|
+
firstName: string;
|
|
3399
3401
|
email: string;
|
|
3400
3402
|
phone: string;
|
|
3401
|
-
id: string;
|
|
3402
|
-
firstName: string;
|
|
3403
|
-
lastName: string;
|
|
3404
3403
|
createdAt: string | Date;
|
|
3404
|
+
id: string;
|
|
3405
3405
|
updatedAt: string | Date;
|
|
3406
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3406
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
3407
3407
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3408
3408
|
}>>>;
|
|
3409
3409
|
distanceKm: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3410
3410
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3411
3411
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3412
3412
|
}, "strip", z.ZodTypeAny, {
|
|
3413
|
-
id: string;
|
|
3414
3413
|
firstName: string;
|
|
3414
|
+
createdAt: string;
|
|
3415
|
+
id: string;
|
|
3416
|
+
updatedAt: string;
|
|
3415
3417
|
phoneNumbers: {
|
|
3416
3418
|
id: string;
|
|
3417
3419
|
phoneNumber: string;
|
|
@@ -3421,10 +3423,19 @@ export declare const workersContractRouter: {
|
|
|
3421
3423
|
hasTools: boolean;
|
|
3422
3424
|
hasPpe: boolean;
|
|
3423
3425
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
3424
|
-
createdAt: string;
|
|
3425
|
-
updatedAt: string;
|
|
3426
|
-
email?: string | null | undefined;
|
|
3427
3426
|
lastName?: string | null | undefined;
|
|
3427
|
+
email?: string | null | undefined;
|
|
3428
|
+
createdBy?: {
|
|
3429
|
+
lastName: string;
|
|
3430
|
+
firstName: string;
|
|
3431
|
+
email: string;
|
|
3432
|
+
phone: string;
|
|
3433
|
+
createdAt: string;
|
|
3434
|
+
id: string;
|
|
3435
|
+
updatedAt: string;
|
|
3436
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
3437
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3438
|
+
} | null | undefined;
|
|
3428
3439
|
nino?: string | null | undefined;
|
|
3429
3440
|
dateOfBirth?: string | null | undefined;
|
|
3430
3441
|
bio?: string | null | undefined;
|
|
@@ -3458,28 +3469,28 @@ export declare const workersContractRouter: {
|
|
|
3458
3469
|
expiryDate?: string | null | undefined;
|
|
3459
3470
|
} | null | undefined;
|
|
3460
3471
|
createdByUserId?: string | null | undefined;
|
|
3461
|
-
createdBy?: {
|
|
3462
|
-
email: string;
|
|
3463
|
-
phone: string;
|
|
3464
|
-
id: string;
|
|
3465
|
-
firstName: string;
|
|
3466
|
-
lastName: string;
|
|
3467
|
-
createdAt: string;
|
|
3468
|
-
updatedAt: string;
|
|
3469
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3470
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3471
|
-
} | null | undefined;
|
|
3472
3472
|
distanceKm?: number | null | undefined;
|
|
3473
3473
|
}, {
|
|
3474
|
-
id: string;
|
|
3475
3474
|
firstName: string;
|
|
3475
|
+
createdAt: string | Date;
|
|
3476
|
+
id: string;
|
|
3477
|
+
updatedAt: string | Date;
|
|
3476
3478
|
hasTools: boolean;
|
|
3477
3479
|
hasPpe: boolean;
|
|
3478
3480
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
3479
|
-
createdAt: string | Date;
|
|
3480
|
-
updatedAt: string | Date;
|
|
3481
|
-
email?: string | null | undefined;
|
|
3482
3481
|
lastName?: string | null | undefined;
|
|
3482
|
+
email?: string | null | undefined;
|
|
3483
|
+
createdBy?: {
|
|
3484
|
+
lastName: string;
|
|
3485
|
+
firstName: string;
|
|
3486
|
+
email: string;
|
|
3487
|
+
phone: string;
|
|
3488
|
+
createdAt: string | Date;
|
|
3489
|
+
id: string;
|
|
3490
|
+
updatedAt: string | Date;
|
|
3491
|
+
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEAD")[] | undefined;
|
|
3492
|
+
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3493
|
+
} | null | undefined;
|
|
3483
3494
|
phoneNumbers?: {
|
|
3484
3495
|
id: string;
|
|
3485
3496
|
phoneNumber: string;
|
|
@@ -3519,17 +3530,6 @@ export declare const workersContractRouter: {
|
|
|
3519
3530
|
expiryDate?: string | Date | null | undefined;
|
|
3520
3531
|
} | null | undefined;
|
|
3521
3532
|
createdByUserId?: string | null | undefined;
|
|
3522
|
-
createdBy?: {
|
|
3523
|
-
email: string;
|
|
3524
|
-
phone: string;
|
|
3525
|
-
id: string;
|
|
3526
|
-
firstName: string;
|
|
3527
|
-
lastName: string;
|
|
3528
|
-
createdAt: string | Date;
|
|
3529
|
-
updatedAt: string | Date;
|
|
3530
|
-
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
3531
|
-
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3532
|
-
} | null | undefined;
|
|
3533
3533
|
distanceKm?: number | null | undefined;
|
|
3534
3534
|
}>;
|
|
3535
3535
|
404: z.ZodObject<{
|