@dakkitor/api-contracts 1.1.107 → 1.1.108
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/actives/actives.contract.d.ts +2577 -2577
- package/dist/agent-client-links/agent-client-links.contract.d.ts +486 -486
- package/dist/auth/auth.contract.d.ts +16 -16
- package/dist/bookings/bookings.contract.d.ts +9898 -9898
- package/dist/call-history/call-history.contract.d.ts +483 -453
- package/dist/call-history/call-history.contract.d.ts.map +1 -1
- package/dist/call-history/call-history.contract.js +3 -1
- package/dist/client-contacts/client-contacts.contract.d.ts +26 -26
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +994 -994
- package/dist/collaborations/collaborations.contract.d.ts +868 -868
- package/dist/common/common-schemas.d.ts +11 -0
- package/dist/common/common-schemas.d.ts.map +1 -1
- package/dist/common/common-schemas.js +8 -1
- package/dist/dashboards/dashboard.contract.d.ts +14 -14
- package/dist/jobs/jobs.contract.d.ts +1756 -1756
- package/dist/lead-assignments/lead-assignments.contract.d.ts +344 -344
- package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +163 -163
- package/dist/leads/leads.contract.d.ts +65 -65
- package/dist/users/users.contract.d.ts +128 -128
- package/dist/workers/workers.contract.d.ts +172 -172
- package/package.json +1 -1
|
@@ -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
|
+
id: string;
|
|
157
158
|
firstName: string;
|
|
158
159
|
email: string;
|
|
159
|
-
id: string;
|
|
160
160
|
lastName?: string | null | undefined;
|
|
161
161
|
}, {
|
|
162
|
+
id: string;
|
|
162
163
|
firstName: string;
|
|
163
164
|
email: string;
|
|
164
|
-
id: string;
|
|
165
165
|
lastName?: string | null | undefined;
|
|
166
166
|
}>;
|
|
167
167
|
export declare const WorkerSchema: z.ZodObject<{
|
|
@@ -293,27 +293,27 @@ export declare const WorkerSchema: z.ZodObject<{
|
|
|
293
293
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
294
294
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
295
295
|
}, "strip", z.ZodTypeAny, {
|
|
296
|
-
|
|
296
|
+
id: string;
|
|
297
|
+
createdAt: string;
|
|
298
|
+
updatedAt: string;
|
|
297
299
|
firstName: string;
|
|
300
|
+
lastName: string;
|
|
298
301
|
email: string;
|
|
299
|
-
createdAt: string;
|
|
300
|
-
id: string;
|
|
301
302
|
phoneNumbers: {
|
|
302
303
|
id: string;
|
|
303
304
|
phoneNumber: string;
|
|
304
305
|
isPrimary: boolean;
|
|
305
306
|
description?: string | null | undefined;
|
|
306
307
|
}[];
|
|
307
|
-
updatedAt: string;
|
|
308
308
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
309
309
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
310
310
|
}, {
|
|
311
|
-
lastName: string;
|
|
312
|
-
firstName: string;
|
|
313
|
-
email: string;
|
|
314
|
-
createdAt: string | Date;
|
|
315
311
|
id: string;
|
|
312
|
+
createdAt: string | Date;
|
|
316
313
|
updatedAt: string | Date;
|
|
314
|
+
firstName: string;
|
|
315
|
+
lastName: string;
|
|
316
|
+
email: string;
|
|
317
317
|
phoneNumbers?: {
|
|
318
318
|
id: string;
|
|
319
319
|
phoneNumber: string;
|
|
@@ -327,34 +327,34 @@ export declare const WorkerSchema: z.ZodObject<{
|
|
|
327
327
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
328
328
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
329
329
|
}, "strip", z.ZodTypeAny, {
|
|
330
|
-
firstName: string;
|
|
331
|
-
createdAt: string;
|
|
332
330
|
id: string;
|
|
331
|
+
createdAt: string;
|
|
332
|
+
updatedAt: string;
|
|
333
|
+
firstName: string;
|
|
333
334
|
phoneNumbers: {
|
|
334
335
|
id: string;
|
|
335
336
|
phoneNumber: string;
|
|
336
337
|
isPrimary: boolean;
|
|
337
338
|
description?: string | null | undefined;
|
|
338
339
|
}[];
|
|
339
|
-
updatedAt: string;
|
|
340
340
|
hasTools: boolean;
|
|
341
341
|
hasPpe: boolean;
|
|
342
342
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
343
343
|
lastName?: string | null | undefined;
|
|
344
344
|
email?: string | null | undefined;
|
|
345
345
|
createdBy?: {
|
|
346
|
-
|
|
346
|
+
id: string;
|
|
347
|
+
createdAt: string;
|
|
348
|
+
updatedAt: string;
|
|
347
349
|
firstName: string;
|
|
350
|
+
lastName: string;
|
|
348
351
|
email: string;
|
|
349
|
-
createdAt: string;
|
|
350
|
-
id: string;
|
|
351
352
|
phoneNumbers: {
|
|
352
353
|
id: string;
|
|
353
354
|
phoneNumber: string;
|
|
354
355
|
isPrimary: boolean;
|
|
355
356
|
description?: string | null | undefined;
|
|
356
357
|
}[];
|
|
357
|
-
updatedAt: string;
|
|
358
358
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
359
359
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
360
360
|
} | null | undefined;
|
|
@@ -393,10 +393,10 @@ export declare const WorkerSchema: z.ZodObject<{
|
|
|
393
393
|
createdByUserId?: string | null | undefined;
|
|
394
394
|
distanceKm?: number | null | undefined;
|
|
395
395
|
}, {
|
|
396
|
-
firstName: string;
|
|
397
|
-
createdAt: string | Date;
|
|
398
396
|
id: string;
|
|
397
|
+
createdAt: string | Date;
|
|
399
398
|
updatedAt: string | Date;
|
|
399
|
+
firstName: string;
|
|
400
400
|
hasTools: boolean;
|
|
401
401
|
hasPpe: boolean;
|
|
402
402
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
@@ -409,12 +409,12 @@ export declare const WorkerSchema: z.ZodObject<{
|
|
|
409
409
|
isPrimary?: boolean | undefined;
|
|
410
410
|
}[] | undefined;
|
|
411
411
|
createdBy?: {
|
|
412
|
-
lastName: string;
|
|
413
|
-
firstName: string;
|
|
414
|
-
email: string;
|
|
415
|
-
createdAt: string | Date;
|
|
416
412
|
id: string;
|
|
413
|
+
createdAt: string | Date;
|
|
417
414
|
updatedAt: string | Date;
|
|
415
|
+
firstName: string;
|
|
416
|
+
lastName: string;
|
|
417
|
+
email: string;
|
|
418
418
|
phoneNumbers?: {
|
|
419
419
|
id: string;
|
|
420
420
|
phoneNumber: string;
|
|
@@ -740,8 +740,8 @@ export declare const UpdateWorkerSchema: z.ZodObject<{
|
|
|
740
740
|
}>>>;
|
|
741
741
|
availability: z.ZodOptional<z.ZodEnum<["AVAILABLE", "PARTIALLY_AVAILABLE", "UNAVAILABLE"]>>;
|
|
742
742
|
}, "strip", z.ZodTypeAny, {
|
|
743
|
-
lastName?: string | null | undefined;
|
|
744
743
|
firstName?: string | undefined;
|
|
744
|
+
lastName?: string | null | undefined;
|
|
745
745
|
email?: string | null | undefined;
|
|
746
746
|
phoneNumbers?: {
|
|
747
747
|
id?: string | undefined;
|
|
@@ -780,8 +780,8 @@ export declare const UpdateWorkerSchema: z.ZodObject<{
|
|
|
780
780
|
} | null | undefined;
|
|
781
781
|
availability?: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE" | undefined;
|
|
782
782
|
}, {
|
|
783
|
-
lastName?: string | null | undefined;
|
|
784
783
|
firstName?: string | undefined;
|
|
784
|
+
lastName?: string | null | undefined;
|
|
785
785
|
email?: string | null | undefined;
|
|
786
786
|
phoneNumbers?: {
|
|
787
787
|
id?: string | undefined;
|
|
@@ -888,7 +888,6 @@ export declare const FilterWorkerSchema: z.ZodObject<{
|
|
|
888
888
|
}, "strip", z.ZodTypeAny, {
|
|
889
889
|
limit: number;
|
|
890
890
|
page: number;
|
|
891
|
-
email?: string | undefined;
|
|
892
891
|
createdAt?: {
|
|
893
892
|
from?: string | null | undefined;
|
|
894
893
|
to?: string | null | undefined;
|
|
@@ -898,9 +897,10 @@ export declare const FilterWorkerSchema: z.ZodObject<{
|
|
|
898
897
|
to?: string | null | undefined;
|
|
899
898
|
} | undefined;
|
|
900
899
|
name?: string | undefined;
|
|
901
|
-
phone?: string | undefined;
|
|
902
900
|
sortBy?: "email" | "phone" | "nameSimilarity" | "fullName" | "distance" | null | undefined;
|
|
903
901
|
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
902
|
+
email?: string | undefined;
|
|
903
|
+
phone?: string | undefined;
|
|
904
904
|
createdBy?: string | undefined;
|
|
905
905
|
englishLevel?: "NONE" | "BASIC" | "INTERMEDIATE" | "ADVANCED" | "NATIVE" | null | undefined;
|
|
906
906
|
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;
|
|
@@ -920,7 +920,6 @@ export declare const FilterWorkerSchema: z.ZodObject<{
|
|
|
920
920
|
qualificationTypeId?: string | undefined;
|
|
921
921
|
}[] | undefined;
|
|
922
922
|
}, {
|
|
923
|
-
email?: string | undefined;
|
|
924
923
|
createdAt?: {
|
|
925
924
|
from?: string | null | undefined;
|
|
926
925
|
to?: string | null | undefined;
|
|
@@ -932,9 +931,10 @@ export declare const FilterWorkerSchema: z.ZodObject<{
|
|
|
932
931
|
limit?: number | undefined;
|
|
933
932
|
page?: number | undefined;
|
|
934
933
|
name?: string | undefined;
|
|
935
|
-
phone?: string | undefined;
|
|
936
934
|
sortBy?: "email" | "phone" | "nameSimilarity" | "fullName" | "distance" | null | undefined;
|
|
937
935
|
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
936
|
+
email?: string | undefined;
|
|
937
|
+
phone?: string | undefined;
|
|
938
938
|
createdBy?: string | undefined;
|
|
939
939
|
englishLevel?: "NONE" | "BASIC" | "INTERMEDIATE" | "ADVANCED" | "NATIVE" | null | undefined;
|
|
940
940
|
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;
|
|
@@ -1084,27 +1084,27 @@ export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
|
|
|
1084
1084
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1085
1085
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1086
1086
|
}, "strip", z.ZodTypeAny, {
|
|
1087
|
-
|
|
1087
|
+
id: string;
|
|
1088
|
+
createdAt: string;
|
|
1089
|
+
updatedAt: string;
|
|
1088
1090
|
firstName: string;
|
|
1091
|
+
lastName: string;
|
|
1089
1092
|
email: string;
|
|
1090
|
-
createdAt: string;
|
|
1091
|
-
id: string;
|
|
1092
1093
|
phoneNumbers: {
|
|
1093
1094
|
id: string;
|
|
1094
1095
|
phoneNumber: string;
|
|
1095
1096
|
isPrimary: boolean;
|
|
1096
1097
|
description?: string | null | undefined;
|
|
1097
1098
|
}[];
|
|
1098
|
-
updatedAt: string;
|
|
1099
1099
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1100
1100
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1101
1101
|
}, {
|
|
1102
|
-
lastName: string;
|
|
1103
|
-
firstName: string;
|
|
1104
|
-
email: string;
|
|
1105
|
-
createdAt: string | Date;
|
|
1106
1102
|
id: string;
|
|
1103
|
+
createdAt: string | Date;
|
|
1107
1104
|
updatedAt: string | Date;
|
|
1105
|
+
firstName: string;
|
|
1106
|
+
lastName: string;
|
|
1107
|
+
email: string;
|
|
1108
1108
|
phoneNumbers?: {
|
|
1109
1109
|
id: string;
|
|
1110
1110
|
phoneNumber: string;
|
|
@@ -1118,34 +1118,34 @@ export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
|
|
|
1118
1118
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1119
1119
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1120
1120
|
}, "strip", z.ZodTypeAny, {
|
|
1121
|
-
firstName: string;
|
|
1122
|
-
createdAt: string;
|
|
1123
1121
|
id: string;
|
|
1122
|
+
createdAt: string;
|
|
1123
|
+
updatedAt: string;
|
|
1124
|
+
firstName: string;
|
|
1124
1125
|
phoneNumbers: {
|
|
1125
1126
|
id: string;
|
|
1126
1127
|
phoneNumber: string;
|
|
1127
1128
|
isPrimary: boolean;
|
|
1128
1129
|
description?: string | null | undefined;
|
|
1129
1130
|
}[];
|
|
1130
|
-
updatedAt: string;
|
|
1131
1131
|
hasTools: boolean;
|
|
1132
1132
|
hasPpe: boolean;
|
|
1133
1133
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
1134
1134
|
lastName?: string | null | undefined;
|
|
1135
1135
|
email?: string | null | undefined;
|
|
1136
1136
|
createdBy?: {
|
|
1137
|
-
|
|
1137
|
+
id: string;
|
|
1138
|
+
createdAt: string;
|
|
1139
|
+
updatedAt: string;
|
|
1138
1140
|
firstName: string;
|
|
1141
|
+
lastName: string;
|
|
1139
1142
|
email: string;
|
|
1140
|
-
createdAt: string;
|
|
1141
|
-
id: string;
|
|
1142
1143
|
phoneNumbers: {
|
|
1143
1144
|
id: string;
|
|
1144
1145
|
phoneNumber: string;
|
|
1145
1146
|
isPrimary: boolean;
|
|
1146
1147
|
description?: string | null | undefined;
|
|
1147
1148
|
}[];
|
|
1148
|
-
updatedAt: string;
|
|
1149
1149
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1150
1150
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1151
1151
|
} | null | undefined;
|
|
@@ -1184,10 +1184,10 @@ export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
|
|
|
1184
1184
|
createdByUserId?: string | null | undefined;
|
|
1185
1185
|
distanceKm?: number | null | undefined;
|
|
1186
1186
|
}, {
|
|
1187
|
-
firstName: string;
|
|
1188
|
-
createdAt: string | Date;
|
|
1189
1187
|
id: string;
|
|
1188
|
+
createdAt: string | Date;
|
|
1190
1189
|
updatedAt: string | Date;
|
|
1190
|
+
firstName: string;
|
|
1191
1191
|
hasTools: boolean;
|
|
1192
1192
|
hasPpe: boolean;
|
|
1193
1193
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
@@ -1200,12 +1200,12 @@ export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
|
|
|
1200
1200
|
isPrimary?: boolean | undefined;
|
|
1201
1201
|
}[] | undefined;
|
|
1202
1202
|
createdBy?: {
|
|
1203
|
-
lastName: string;
|
|
1204
|
-
firstName: string;
|
|
1205
|
-
email: string;
|
|
1206
|
-
createdAt: string | Date;
|
|
1207
1203
|
id: string;
|
|
1204
|
+
createdAt: string | Date;
|
|
1208
1205
|
updatedAt: string | Date;
|
|
1206
|
+
firstName: string;
|
|
1207
|
+
lastName: string;
|
|
1208
|
+
email: string;
|
|
1209
1209
|
phoneNumbers?: {
|
|
1210
1210
|
id: string;
|
|
1211
1211
|
phoneNumber: string;
|
|
@@ -1258,34 +1258,34 @@ export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
|
|
|
1258
1258
|
}, "strip", z.ZodTypeAny, {
|
|
1259
1259
|
limit: number;
|
|
1260
1260
|
items: {
|
|
1261
|
-
firstName: string;
|
|
1262
|
-
createdAt: string;
|
|
1263
1261
|
id: string;
|
|
1262
|
+
createdAt: string;
|
|
1263
|
+
updatedAt: string;
|
|
1264
|
+
firstName: string;
|
|
1264
1265
|
phoneNumbers: {
|
|
1265
1266
|
id: string;
|
|
1266
1267
|
phoneNumber: string;
|
|
1267
1268
|
isPrimary: boolean;
|
|
1268
1269
|
description?: string | null | undefined;
|
|
1269
1270
|
}[];
|
|
1270
|
-
updatedAt: string;
|
|
1271
1271
|
hasTools: boolean;
|
|
1272
1272
|
hasPpe: boolean;
|
|
1273
1273
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
1274
1274
|
lastName?: string | null | undefined;
|
|
1275
1275
|
email?: string | null | undefined;
|
|
1276
1276
|
createdBy?: {
|
|
1277
|
-
|
|
1277
|
+
id: string;
|
|
1278
|
+
createdAt: string;
|
|
1279
|
+
updatedAt: string;
|
|
1278
1280
|
firstName: string;
|
|
1281
|
+
lastName: string;
|
|
1279
1282
|
email: string;
|
|
1280
|
-
createdAt: string;
|
|
1281
|
-
id: string;
|
|
1282
1283
|
phoneNumbers: {
|
|
1283
1284
|
id: string;
|
|
1284
1285
|
phoneNumber: string;
|
|
1285
1286
|
isPrimary: boolean;
|
|
1286
1287
|
description?: string | null | undefined;
|
|
1287
1288
|
}[];
|
|
1288
|
-
updatedAt: string;
|
|
1289
1289
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1290
1290
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1291
1291
|
} | null | undefined;
|
|
@@ -1331,10 +1331,10 @@ export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
|
|
|
1331
1331
|
}, {
|
|
1332
1332
|
limit: number;
|
|
1333
1333
|
items: {
|
|
1334
|
-
firstName: string;
|
|
1335
|
-
createdAt: string | Date;
|
|
1336
1334
|
id: string;
|
|
1335
|
+
createdAt: string | Date;
|
|
1337
1336
|
updatedAt: string | Date;
|
|
1337
|
+
firstName: string;
|
|
1338
1338
|
hasTools: boolean;
|
|
1339
1339
|
hasPpe: boolean;
|
|
1340
1340
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
@@ -1347,12 +1347,12 @@ export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
|
|
|
1347
1347
|
isPrimary?: boolean | undefined;
|
|
1348
1348
|
}[] | undefined;
|
|
1349
1349
|
createdBy?: {
|
|
1350
|
-
lastName: string;
|
|
1351
|
-
firstName: string;
|
|
1352
|
-
email: string;
|
|
1353
|
-
createdAt: string | Date;
|
|
1354
1350
|
id: string;
|
|
1351
|
+
createdAt: string | Date;
|
|
1355
1352
|
updatedAt: string | Date;
|
|
1353
|
+
firstName: string;
|
|
1354
|
+
lastName: string;
|
|
1355
|
+
email: string;
|
|
1356
1356
|
phoneNumbers?: {
|
|
1357
1357
|
id: string;
|
|
1358
1358
|
phoneNumber: string;
|
|
@@ -1826,27 +1826,27 @@ export declare const workersContractRouter: {
|
|
|
1826
1826
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1827
1827
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1828
1828
|
}, "strip", z.ZodTypeAny, {
|
|
1829
|
-
|
|
1829
|
+
id: string;
|
|
1830
|
+
createdAt: string;
|
|
1831
|
+
updatedAt: string;
|
|
1830
1832
|
firstName: string;
|
|
1833
|
+
lastName: string;
|
|
1831
1834
|
email: string;
|
|
1832
|
-
createdAt: string;
|
|
1833
|
-
id: string;
|
|
1834
1835
|
phoneNumbers: {
|
|
1835
1836
|
id: string;
|
|
1836
1837
|
phoneNumber: string;
|
|
1837
1838
|
isPrimary: boolean;
|
|
1838
1839
|
description?: string | null | undefined;
|
|
1839
1840
|
}[];
|
|
1840
|
-
updatedAt: string;
|
|
1841
1841
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1842
1842
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1843
1843
|
}, {
|
|
1844
|
-
lastName: string;
|
|
1845
|
-
firstName: string;
|
|
1846
|
-
email: string;
|
|
1847
|
-
createdAt: string | Date;
|
|
1848
1844
|
id: string;
|
|
1845
|
+
createdAt: string | Date;
|
|
1849
1846
|
updatedAt: string | Date;
|
|
1847
|
+
firstName: string;
|
|
1848
|
+
lastName: string;
|
|
1849
|
+
email: string;
|
|
1850
1850
|
phoneNumbers?: {
|
|
1851
1851
|
id: string;
|
|
1852
1852
|
phoneNumber: string;
|
|
@@ -1860,34 +1860,34 @@ export declare const workersContractRouter: {
|
|
|
1860
1860
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1861
1861
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1862
1862
|
}, "strip", z.ZodTypeAny, {
|
|
1863
|
-
firstName: string;
|
|
1864
|
-
createdAt: string;
|
|
1865
1863
|
id: string;
|
|
1864
|
+
createdAt: string;
|
|
1865
|
+
updatedAt: string;
|
|
1866
|
+
firstName: string;
|
|
1866
1867
|
phoneNumbers: {
|
|
1867
1868
|
id: string;
|
|
1868
1869
|
phoneNumber: string;
|
|
1869
1870
|
isPrimary: boolean;
|
|
1870
1871
|
description?: string | null | undefined;
|
|
1871
1872
|
}[];
|
|
1872
|
-
updatedAt: string;
|
|
1873
1873
|
hasTools: boolean;
|
|
1874
1874
|
hasPpe: boolean;
|
|
1875
1875
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
1876
1876
|
lastName?: string | null | undefined;
|
|
1877
1877
|
email?: string | null | undefined;
|
|
1878
1878
|
createdBy?: {
|
|
1879
|
-
|
|
1879
|
+
id: string;
|
|
1880
|
+
createdAt: string;
|
|
1881
|
+
updatedAt: string;
|
|
1880
1882
|
firstName: string;
|
|
1883
|
+
lastName: string;
|
|
1881
1884
|
email: string;
|
|
1882
|
-
createdAt: string;
|
|
1883
|
-
id: string;
|
|
1884
1885
|
phoneNumbers: {
|
|
1885
1886
|
id: string;
|
|
1886
1887
|
phoneNumber: string;
|
|
1887
1888
|
isPrimary: boolean;
|
|
1888
1889
|
description?: string | null | undefined;
|
|
1889
1890
|
}[];
|
|
1890
|
-
updatedAt: string;
|
|
1891
1891
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1892
1892
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1893
1893
|
} | null | undefined;
|
|
@@ -1926,10 +1926,10 @@ export declare const workersContractRouter: {
|
|
|
1926
1926
|
createdByUserId?: string | null | undefined;
|
|
1927
1927
|
distanceKm?: number | null | undefined;
|
|
1928
1928
|
}, {
|
|
1929
|
-
firstName: string;
|
|
1930
|
-
createdAt: string | Date;
|
|
1931
1929
|
id: string;
|
|
1930
|
+
createdAt: string | Date;
|
|
1932
1931
|
updatedAt: string | Date;
|
|
1932
|
+
firstName: string;
|
|
1933
1933
|
hasTools: boolean;
|
|
1934
1934
|
hasPpe: boolean;
|
|
1935
1935
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
@@ -1942,12 +1942,12 @@ export declare const workersContractRouter: {
|
|
|
1942
1942
|
isPrimary?: boolean | undefined;
|
|
1943
1943
|
}[] | undefined;
|
|
1944
1944
|
createdBy?: {
|
|
1945
|
-
lastName: string;
|
|
1946
|
-
firstName: string;
|
|
1947
|
-
email: string;
|
|
1948
|
-
createdAt: string | Date;
|
|
1949
1945
|
id: string;
|
|
1946
|
+
createdAt: string | Date;
|
|
1950
1947
|
updatedAt: string | Date;
|
|
1948
|
+
firstName: string;
|
|
1949
|
+
lastName: string;
|
|
1950
|
+
email: string;
|
|
1951
1951
|
phoneNumbers?: {
|
|
1952
1952
|
id: string;
|
|
1953
1953
|
phoneNumber: string;
|
|
@@ -2020,12 +2020,6 @@ export declare const workersContractRouter: {
|
|
|
2020
2020
|
};
|
|
2021
2021
|
};
|
|
2022
2022
|
findAll: {
|
|
2023
|
-
metadata: {
|
|
2024
|
-
tags: string[];
|
|
2025
|
-
openApi: {
|
|
2026
|
-
operationId: string;
|
|
2027
|
-
};
|
|
2028
|
-
};
|
|
2029
2023
|
query: z.ZodObject<{
|
|
2030
2024
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
2031
2025
|
page: z.ZodDefault<z.ZodNumber>;
|
|
@@ -2094,7 +2088,6 @@ export declare const workersContractRouter: {
|
|
|
2094
2088
|
}, "strip", z.ZodTypeAny, {
|
|
2095
2089
|
limit: number;
|
|
2096
2090
|
page: number;
|
|
2097
|
-
email?: string | undefined;
|
|
2098
2091
|
createdAt?: {
|
|
2099
2092
|
from?: string | null | undefined;
|
|
2100
2093
|
to?: string | null | undefined;
|
|
@@ -2104,9 +2097,10 @@ export declare const workersContractRouter: {
|
|
|
2104
2097
|
to?: string | null | undefined;
|
|
2105
2098
|
} | undefined;
|
|
2106
2099
|
name?: string | undefined;
|
|
2107
|
-
phone?: string | undefined;
|
|
2108
2100
|
sortBy?: "email" | "phone" | "nameSimilarity" | "fullName" | "distance" | null | undefined;
|
|
2109
2101
|
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
2102
|
+
email?: string | undefined;
|
|
2103
|
+
phone?: string | undefined;
|
|
2110
2104
|
createdBy?: string | undefined;
|
|
2111
2105
|
englishLevel?: "NONE" | "BASIC" | "INTERMEDIATE" | "ADVANCED" | "NATIVE" | null | undefined;
|
|
2112
2106
|
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;
|
|
@@ -2126,7 +2120,6 @@ export declare const workersContractRouter: {
|
|
|
2126
2120
|
qualificationTypeId?: string | undefined;
|
|
2127
2121
|
}[] | undefined;
|
|
2128
2122
|
}, {
|
|
2129
|
-
email?: string | undefined;
|
|
2130
2123
|
createdAt?: {
|
|
2131
2124
|
from?: string | null | undefined;
|
|
2132
2125
|
to?: string | null | undefined;
|
|
@@ -2138,9 +2131,10 @@ export declare const workersContractRouter: {
|
|
|
2138
2131
|
limit?: number | undefined;
|
|
2139
2132
|
page?: number | undefined;
|
|
2140
2133
|
name?: string | undefined;
|
|
2141
|
-
phone?: string | undefined;
|
|
2142
2134
|
sortBy?: "email" | "phone" | "nameSimilarity" | "fullName" | "distance" | null | undefined;
|
|
2143
2135
|
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
2136
|
+
email?: string | undefined;
|
|
2137
|
+
phone?: string | undefined;
|
|
2144
2138
|
createdBy?: string | undefined;
|
|
2145
2139
|
englishLevel?: "NONE" | "BASIC" | "INTERMEDIATE" | "ADVANCED" | "NATIVE" | null | undefined;
|
|
2146
2140
|
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;
|
|
@@ -2160,6 +2154,12 @@ export declare const workersContractRouter: {
|
|
|
2160
2154
|
qualificationTypeId?: string | undefined;
|
|
2161
2155
|
}[] | undefined;
|
|
2162
2156
|
}>;
|
|
2157
|
+
metadata: {
|
|
2158
|
+
tags: string[];
|
|
2159
|
+
openApi: {
|
|
2160
|
+
operationId: string;
|
|
2161
|
+
};
|
|
2162
|
+
};
|
|
2163
2163
|
summary: "Get all workers";
|
|
2164
2164
|
method: "GET";
|
|
2165
2165
|
path: "/v2/workers";
|
|
@@ -2394,27 +2394,27 @@ export declare const workersContractRouter: {
|
|
|
2394
2394
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2395
2395
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2396
2396
|
}, "strip", z.ZodTypeAny, {
|
|
2397
|
-
|
|
2397
|
+
id: string;
|
|
2398
|
+
createdAt: string;
|
|
2399
|
+
updatedAt: string;
|
|
2398
2400
|
firstName: string;
|
|
2401
|
+
lastName: string;
|
|
2399
2402
|
email: string;
|
|
2400
|
-
createdAt: string;
|
|
2401
|
-
id: string;
|
|
2402
2403
|
phoneNumbers: {
|
|
2403
2404
|
id: string;
|
|
2404
2405
|
phoneNumber: string;
|
|
2405
2406
|
isPrimary: boolean;
|
|
2406
2407
|
description?: string | null | undefined;
|
|
2407
2408
|
}[];
|
|
2408
|
-
updatedAt: string;
|
|
2409
2409
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
2410
2410
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2411
2411
|
}, {
|
|
2412
|
-
lastName: string;
|
|
2413
|
-
firstName: string;
|
|
2414
|
-
email: string;
|
|
2415
|
-
createdAt: string | Date;
|
|
2416
2412
|
id: string;
|
|
2413
|
+
createdAt: string | Date;
|
|
2417
2414
|
updatedAt: string | Date;
|
|
2415
|
+
firstName: string;
|
|
2416
|
+
lastName: string;
|
|
2417
|
+
email: string;
|
|
2418
2418
|
phoneNumbers?: {
|
|
2419
2419
|
id: string;
|
|
2420
2420
|
phoneNumber: string;
|
|
@@ -2428,34 +2428,34 @@ export declare const workersContractRouter: {
|
|
|
2428
2428
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2429
2429
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2430
2430
|
}, "strip", z.ZodTypeAny, {
|
|
2431
|
-
firstName: string;
|
|
2432
|
-
createdAt: string;
|
|
2433
2431
|
id: string;
|
|
2432
|
+
createdAt: string;
|
|
2433
|
+
updatedAt: string;
|
|
2434
|
+
firstName: string;
|
|
2434
2435
|
phoneNumbers: {
|
|
2435
2436
|
id: string;
|
|
2436
2437
|
phoneNumber: string;
|
|
2437
2438
|
isPrimary: boolean;
|
|
2438
2439
|
description?: string | null | undefined;
|
|
2439
2440
|
}[];
|
|
2440
|
-
updatedAt: string;
|
|
2441
2441
|
hasTools: boolean;
|
|
2442
2442
|
hasPpe: boolean;
|
|
2443
2443
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
2444
2444
|
lastName?: string | null | undefined;
|
|
2445
2445
|
email?: string | null | undefined;
|
|
2446
2446
|
createdBy?: {
|
|
2447
|
-
|
|
2447
|
+
id: string;
|
|
2448
|
+
createdAt: string;
|
|
2449
|
+
updatedAt: string;
|
|
2448
2450
|
firstName: string;
|
|
2451
|
+
lastName: string;
|
|
2449
2452
|
email: string;
|
|
2450
|
-
createdAt: string;
|
|
2451
|
-
id: string;
|
|
2452
2453
|
phoneNumbers: {
|
|
2453
2454
|
id: string;
|
|
2454
2455
|
phoneNumber: string;
|
|
2455
2456
|
isPrimary: boolean;
|
|
2456
2457
|
description?: string | null | undefined;
|
|
2457
2458
|
}[];
|
|
2458
|
-
updatedAt: string;
|
|
2459
2459
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
2460
2460
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2461
2461
|
} | null | undefined;
|
|
@@ -2494,10 +2494,10 @@ export declare const workersContractRouter: {
|
|
|
2494
2494
|
createdByUserId?: string | null | undefined;
|
|
2495
2495
|
distanceKm?: number | null | undefined;
|
|
2496
2496
|
}, {
|
|
2497
|
-
firstName: string;
|
|
2498
|
-
createdAt: string | Date;
|
|
2499
2497
|
id: string;
|
|
2498
|
+
createdAt: string | Date;
|
|
2500
2499
|
updatedAt: string | Date;
|
|
2500
|
+
firstName: string;
|
|
2501
2501
|
hasTools: boolean;
|
|
2502
2502
|
hasPpe: boolean;
|
|
2503
2503
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
@@ -2510,12 +2510,12 @@ export declare const workersContractRouter: {
|
|
|
2510
2510
|
isPrimary?: boolean | undefined;
|
|
2511
2511
|
}[] | undefined;
|
|
2512
2512
|
createdBy?: {
|
|
2513
|
-
lastName: string;
|
|
2514
|
-
firstName: string;
|
|
2515
|
-
email: string;
|
|
2516
|
-
createdAt: string | Date;
|
|
2517
2513
|
id: string;
|
|
2514
|
+
createdAt: string | Date;
|
|
2518
2515
|
updatedAt: string | Date;
|
|
2516
|
+
firstName: string;
|
|
2517
|
+
lastName: string;
|
|
2518
|
+
email: string;
|
|
2519
2519
|
phoneNumbers?: {
|
|
2520
2520
|
id: string;
|
|
2521
2521
|
phoneNumber: string;
|
|
@@ -2568,34 +2568,34 @@ export declare const workersContractRouter: {
|
|
|
2568
2568
|
}, "strip", z.ZodTypeAny, {
|
|
2569
2569
|
limit: number;
|
|
2570
2570
|
items: {
|
|
2571
|
-
firstName: string;
|
|
2572
|
-
createdAt: string;
|
|
2573
2571
|
id: string;
|
|
2572
|
+
createdAt: string;
|
|
2573
|
+
updatedAt: string;
|
|
2574
|
+
firstName: string;
|
|
2574
2575
|
phoneNumbers: {
|
|
2575
2576
|
id: string;
|
|
2576
2577
|
phoneNumber: string;
|
|
2577
2578
|
isPrimary: boolean;
|
|
2578
2579
|
description?: string | null | undefined;
|
|
2579
2580
|
}[];
|
|
2580
|
-
updatedAt: string;
|
|
2581
2581
|
hasTools: boolean;
|
|
2582
2582
|
hasPpe: boolean;
|
|
2583
2583
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
2584
2584
|
lastName?: string | null | undefined;
|
|
2585
2585
|
email?: string | null | undefined;
|
|
2586
2586
|
createdBy?: {
|
|
2587
|
-
|
|
2587
|
+
id: string;
|
|
2588
|
+
createdAt: string;
|
|
2589
|
+
updatedAt: string;
|
|
2588
2590
|
firstName: string;
|
|
2591
|
+
lastName: string;
|
|
2589
2592
|
email: string;
|
|
2590
|
-
createdAt: string;
|
|
2591
|
-
id: string;
|
|
2592
2593
|
phoneNumbers: {
|
|
2593
2594
|
id: string;
|
|
2594
2595
|
phoneNumber: string;
|
|
2595
2596
|
isPrimary: boolean;
|
|
2596
2597
|
description?: string | null | undefined;
|
|
2597
2598
|
}[];
|
|
2598
|
-
updatedAt: string;
|
|
2599
2599
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
2600
2600
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2601
2601
|
} | null | undefined;
|
|
@@ -2641,10 +2641,10 @@ export declare const workersContractRouter: {
|
|
|
2641
2641
|
}, {
|
|
2642
2642
|
limit: number;
|
|
2643
2643
|
items: {
|
|
2644
|
-
firstName: string;
|
|
2645
|
-
createdAt: string | Date;
|
|
2646
2644
|
id: string;
|
|
2645
|
+
createdAt: string | Date;
|
|
2647
2646
|
updatedAt: string | Date;
|
|
2647
|
+
firstName: string;
|
|
2648
2648
|
hasTools: boolean;
|
|
2649
2649
|
hasPpe: boolean;
|
|
2650
2650
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
@@ -2657,12 +2657,12 @@ export declare const workersContractRouter: {
|
|
|
2657
2657
|
isPrimary?: boolean | undefined;
|
|
2658
2658
|
}[] | undefined;
|
|
2659
2659
|
createdBy?: {
|
|
2660
|
-
lastName: string;
|
|
2661
|
-
firstName: string;
|
|
2662
|
-
email: string;
|
|
2663
|
-
createdAt: string | Date;
|
|
2664
2660
|
id: string;
|
|
2661
|
+
createdAt: string | Date;
|
|
2665
2662
|
updatedAt: string | Date;
|
|
2663
|
+
firstName: string;
|
|
2664
|
+
lastName: string;
|
|
2665
|
+
email: string;
|
|
2666
2666
|
phoneNumbers?: {
|
|
2667
2667
|
id: string;
|
|
2668
2668
|
phoneNumber: string;
|
|
@@ -2961,27 +2961,27 @@ export declare const workersContractRouter: {
|
|
|
2961
2961
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2962
2962
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2963
2963
|
}, "strip", z.ZodTypeAny, {
|
|
2964
|
-
|
|
2964
|
+
id: string;
|
|
2965
|
+
createdAt: string;
|
|
2966
|
+
updatedAt: string;
|
|
2965
2967
|
firstName: string;
|
|
2968
|
+
lastName: string;
|
|
2966
2969
|
email: string;
|
|
2967
|
-
createdAt: string;
|
|
2968
|
-
id: string;
|
|
2969
2970
|
phoneNumbers: {
|
|
2970
2971
|
id: string;
|
|
2971
2972
|
phoneNumber: string;
|
|
2972
2973
|
isPrimary: boolean;
|
|
2973
2974
|
description?: string | null | undefined;
|
|
2974
2975
|
}[];
|
|
2975
|
-
updatedAt: string;
|
|
2976
2976
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
2977
2977
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
2978
2978
|
}, {
|
|
2979
|
-
lastName: string;
|
|
2980
|
-
firstName: string;
|
|
2981
|
-
email: string;
|
|
2982
|
-
createdAt: string | Date;
|
|
2983
2979
|
id: string;
|
|
2980
|
+
createdAt: string | Date;
|
|
2984
2981
|
updatedAt: string | Date;
|
|
2982
|
+
firstName: string;
|
|
2983
|
+
lastName: string;
|
|
2984
|
+
email: string;
|
|
2985
2985
|
phoneNumbers?: {
|
|
2986
2986
|
id: string;
|
|
2987
2987
|
phoneNumber: string;
|
|
@@ -2995,34 +2995,34 @@ export declare const workersContractRouter: {
|
|
|
2995
2995
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2996
2996
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2997
2997
|
}, "strip", z.ZodTypeAny, {
|
|
2998
|
-
firstName: string;
|
|
2999
|
-
createdAt: string;
|
|
3000
2998
|
id: string;
|
|
2999
|
+
createdAt: string;
|
|
3000
|
+
updatedAt: string;
|
|
3001
|
+
firstName: string;
|
|
3001
3002
|
phoneNumbers: {
|
|
3002
3003
|
id: string;
|
|
3003
3004
|
phoneNumber: string;
|
|
3004
3005
|
isPrimary: boolean;
|
|
3005
3006
|
description?: string | null | undefined;
|
|
3006
3007
|
}[];
|
|
3007
|
-
updatedAt: string;
|
|
3008
3008
|
hasTools: boolean;
|
|
3009
3009
|
hasPpe: boolean;
|
|
3010
3010
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
3011
3011
|
lastName?: string | null | undefined;
|
|
3012
3012
|
email?: string | null | undefined;
|
|
3013
3013
|
createdBy?: {
|
|
3014
|
-
|
|
3014
|
+
id: string;
|
|
3015
|
+
createdAt: string;
|
|
3016
|
+
updatedAt: string;
|
|
3015
3017
|
firstName: string;
|
|
3018
|
+
lastName: string;
|
|
3016
3019
|
email: string;
|
|
3017
|
-
createdAt: string;
|
|
3018
|
-
id: string;
|
|
3019
3020
|
phoneNumbers: {
|
|
3020
3021
|
id: string;
|
|
3021
3022
|
phoneNumber: string;
|
|
3022
3023
|
isPrimary: boolean;
|
|
3023
3024
|
description?: string | null | undefined;
|
|
3024
3025
|
}[];
|
|
3025
|
-
updatedAt: string;
|
|
3026
3026
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
3027
3027
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3028
3028
|
} | null | undefined;
|
|
@@ -3061,10 +3061,10 @@ export declare const workersContractRouter: {
|
|
|
3061
3061
|
createdByUserId?: string | null | undefined;
|
|
3062
3062
|
distanceKm?: number | null | undefined;
|
|
3063
3063
|
}, {
|
|
3064
|
-
firstName: string;
|
|
3065
|
-
createdAt: string | Date;
|
|
3066
3064
|
id: string;
|
|
3065
|
+
createdAt: string | Date;
|
|
3067
3066
|
updatedAt: string | Date;
|
|
3067
|
+
firstName: string;
|
|
3068
3068
|
hasTools: boolean;
|
|
3069
3069
|
hasPpe: boolean;
|
|
3070
3070
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
@@ -3077,12 +3077,12 @@ export declare const workersContractRouter: {
|
|
|
3077
3077
|
isPrimary?: boolean | undefined;
|
|
3078
3078
|
}[] | undefined;
|
|
3079
3079
|
createdBy?: {
|
|
3080
|
-
lastName: string;
|
|
3081
|
-
firstName: string;
|
|
3082
|
-
email: string;
|
|
3083
|
-
createdAt: string | Date;
|
|
3084
3080
|
id: string;
|
|
3081
|
+
createdAt: string | Date;
|
|
3085
3082
|
updatedAt: string | Date;
|
|
3083
|
+
firstName: string;
|
|
3084
|
+
lastName: string;
|
|
3085
|
+
email: string;
|
|
3086
3086
|
phoneNumbers?: {
|
|
3087
3087
|
id: string;
|
|
3088
3088
|
phoneNumber: string;
|
|
@@ -3285,8 +3285,8 @@ export declare const workersContractRouter: {
|
|
|
3285
3285
|
}>>>;
|
|
3286
3286
|
availability: z.ZodOptional<z.ZodEnum<["AVAILABLE", "PARTIALLY_AVAILABLE", "UNAVAILABLE"]>>;
|
|
3287
3287
|
}, "strip", z.ZodTypeAny, {
|
|
3288
|
-
lastName?: string | null | undefined;
|
|
3289
3288
|
firstName?: string | undefined;
|
|
3289
|
+
lastName?: string | null | undefined;
|
|
3290
3290
|
email?: string | null | undefined;
|
|
3291
3291
|
phoneNumbers?: {
|
|
3292
3292
|
id?: string | undefined;
|
|
@@ -3325,8 +3325,8 @@ export declare const workersContractRouter: {
|
|
|
3325
3325
|
} | null | undefined;
|
|
3326
3326
|
availability?: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE" | undefined;
|
|
3327
3327
|
}, {
|
|
3328
|
-
lastName?: string | null | undefined;
|
|
3329
3328
|
firstName?: string | undefined;
|
|
3329
|
+
lastName?: string | null | undefined;
|
|
3330
3330
|
email?: string | null | undefined;
|
|
3331
3331
|
phoneNumbers?: {
|
|
3332
3332
|
id?: string | undefined;
|
|
@@ -3596,27 +3596,27 @@ export declare const workersContractRouter: {
|
|
|
3596
3596
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3597
3597
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3598
3598
|
}, "strip", z.ZodTypeAny, {
|
|
3599
|
-
|
|
3599
|
+
id: string;
|
|
3600
|
+
createdAt: string;
|
|
3601
|
+
updatedAt: string;
|
|
3600
3602
|
firstName: string;
|
|
3603
|
+
lastName: string;
|
|
3601
3604
|
email: string;
|
|
3602
|
-
createdAt: string;
|
|
3603
|
-
id: string;
|
|
3604
3605
|
phoneNumbers: {
|
|
3605
3606
|
id: string;
|
|
3606
3607
|
phoneNumber: string;
|
|
3607
3608
|
isPrimary: boolean;
|
|
3608
3609
|
description?: string | null | undefined;
|
|
3609
3610
|
}[];
|
|
3610
|
-
updatedAt: string;
|
|
3611
3611
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
3612
3612
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3613
3613
|
}, {
|
|
3614
|
-
lastName: string;
|
|
3615
|
-
firstName: string;
|
|
3616
|
-
email: string;
|
|
3617
|
-
createdAt: string | Date;
|
|
3618
3614
|
id: string;
|
|
3615
|
+
createdAt: string | Date;
|
|
3619
3616
|
updatedAt: string | Date;
|
|
3617
|
+
firstName: string;
|
|
3618
|
+
lastName: string;
|
|
3619
|
+
email: string;
|
|
3620
3620
|
phoneNumbers?: {
|
|
3621
3621
|
id: string;
|
|
3622
3622
|
phoneNumber: string;
|
|
@@ -3630,34 +3630,34 @@ export declare const workersContractRouter: {
|
|
|
3630
3630
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3631
3631
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3632
3632
|
}, "strip", z.ZodTypeAny, {
|
|
3633
|
-
firstName: string;
|
|
3634
|
-
createdAt: string;
|
|
3635
3633
|
id: string;
|
|
3634
|
+
createdAt: string;
|
|
3635
|
+
updatedAt: string;
|
|
3636
|
+
firstName: string;
|
|
3636
3637
|
phoneNumbers: {
|
|
3637
3638
|
id: string;
|
|
3638
3639
|
phoneNumber: string;
|
|
3639
3640
|
isPrimary: boolean;
|
|
3640
3641
|
description?: string | null | undefined;
|
|
3641
3642
|
}[];
|
|
3642
|
-
updatedAt: string;
|
|
3643
3643
|
hasTools: boolean;
|
|
3644
3644
|
hasPpe: boolean;
|
|
3645
3645
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
3646
3646
|
lastName?: string | null | undefined;
|
|
3647
3647
|
email?: string | null | undefined;
|
|
3648
3648
|
createdBy?: {
|
|
3649
|
-
|
|
3649
|
+
id: string;
|
|
3650
|
+
createdAt: string;
|
|
3651
|
+
updatedAt: string;
|
|
3650
3652
|
firstName: string;
|
|
3653
|
+
lastName: string;
|
|
3651
3654
|
email: string;
|
|
3652
|
-
createdAt: string;
|
|
3653
|
-
id: string;
|
|
3654
3655
|
phoneNumbers: {
|
|
3655
3656
|
id: string;
|
|
3656
3657
|
phoneNumber: string;
|
|
3657
3658
|
isPrimary: boolean;
|
|
3658
3659
|
description?: string | null | undefined;
|
|
3659
3660
|
}[];
|
|
3660
|
-
updatedAt: string;
|
|
3661
3661
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
3662
3662
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
3663
3663
|
} | null | undefined;
|
|
@@ -3696,10 +3696,10 @@ export declare const workersContractRouter: {
|
|
|
3696
3696
|
createdByUserId?: string | null | undefined;
|
|
3697
3697
|
distanceKm?: number | null | undefined;
|
|
3698
3698
|
}, {
|
|
3699
|
-
firstName: string;
|
|
3700
|
-
createdAt: string | Date;
|
|
3701
3699
|
id: string;
|
|
3700
|
+
createdAt: string | Date;
|
|
3702
3701
|
updatedAt: string | Date;
|
|
3702
|
+
firstName: string;
|
|
3703
3703
|
hasTools: boolean;
|
|
3704
3704
|
hasPpe: boolean;
|
|
3705
3705
|
availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
|
|
@@ -3712,12 +3712,12 @@ export declare const workersContractRouter: {
|
|
|
3712
3712
|
isPrimary?: boolean | undefined;
|
|
3713
3713
|
}[] | undefined;
|
|
3714
3714
|
createdBy?: {
|
|
3715
|
-
lastName: string;
|
|
3716
|
-
firstName: string;
|
|
3717
|
-
email: string;
|
|
3718
|
-
createdAt: string | Date;
|
|
3719
3715
|
id: string;
|
|
3716
|
+
createdAt: string | Date;
|
|
3720
3717
|
updatedAt: string | Date;
|
|
3718
|
+
firstName: string;
|
|
3719
|
+
lastName: string;
|
|
3720
|
+
email: string;
|
|
3721
3721
|
phoneNumbers?: {
|
|
3722
3722
|
id: string;
|
|
3723
3723
|
phoneNumber: string;
|