@dakkitor/api-contracts 1.1.82 → 1.1.84

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -151,23 +151,23 @@ export declare const TradeFilterSchema: z.ZodObject<{
151
151
  export declare const WorkerUserSchema: z.ZodObject<{
152
152
  id: z.ZodString;
153
153
  firstName: z.ZodString;
154
- lastName: z.ZodString;
154
+ lastName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
155
155
  email: z.ZodString;
156
156
  }, "strip", z.ZodTypeAny, {
157
157
  email: string;
158
158
  id: string;
159
159
  firstName: string;
160
- lastName: string;
160
+ lastName?: string | null | undefined;
161
161
  }, {
162
162
  email: string;
163
163
  id: string;
164
164
  firstName: string;
165
- lastName: string;
165
+ lastName?: string | null | undefined;
166
166
  }>;
167
167
  export declare const WorkerSchema: z.ZodObject<{
168
168
  id: z.ZodString;
169
169
  firstName: z.ZodString;
170
- lastName: z.ZodString;
170
+ lastName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
171
171
  email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
172
172
  phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
173
173
  id: z.ZodString;
@@ -304,7 +304,6 @@ export declare const WorkerSchema: z.ZodObject<{
304
304
  }, "strip", z.ZodTypeAny, {
305
305
  id: string;
306
306
  firstName: string;
307
- lastName: string;
308
307
  phoneNumbers: {
309
308
  id: string;
310
309
  phoneNumber: string;
@@ -317,6 +316,7 @@ export declare const WorkerSchema: z.ZodObject<{
317
316
  createdAt: string;
318
317
  updatedAt: string;
319
318
  email?: string | null | undefined;
319
+ lastName?: string | null | undefined;
320
320
  nino?: string | null | undefined;
321
321
  dateOfBirth?: string | null | undefined;
322
322
  bio?: string | null | undefined;
@@ -365,13 +365,13 @@ export declare const WorkerSchema: z.ZodObject<{
365
365
  }, {
366
366
  id: string;
367
367
  firstName: string;
368
- lastName: string;
369
368
  hasTools: boolean;
370
369
  hasPpe: boolean;
371
370
  availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
372
371
  createdAt: string | Date;
373
372
  updatedAt: string | Date;
374
373
  email?: string | null | undefined;
374
+ lastName?: string | null | undefined;
375
375
  phoneNumbers?: {
376
376
  id: string;
377
377
  phoneNumber: string;
@@ -426,7 +426,7 @@ export declare const WorkerSchema: z.ZodObject<{
426
426
  }>;
427
427
  export declare const CreateWorkerSchema: z.ZodObject<{
428
428
  firstName: z.ZodString;
429
- lastName: z.ZodString;
429
+ lastName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
430
430
  email: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodLiteral<"">]>, string | null | undefined, string | null | undefined>;
431
431
  phoneNumbers: z.ZodEffects<z.ZodArray<z.ZodObject<{
432
432
  phoneNumber: z.ZodEffects<z.ZodString, string, string>;
@@ -517,7 +517,6 @@ export declare const CreateWorkerSchema: z.ZodObject<{
517
517
  availability: z.ZodDefault<z.ZodOptional<z.ZodEnum<["AVAILABLE", "PARTIALLY_AVAILABLE", "UNAVAILABLE"]>>>;
518
518
  }, "strip", z.ZodTypeAny, {
519
519
  firstName: string;
520
- lastName: string;
521
520
  phoneNumbers: {
522
521
  phoneNumber: string;
523
522
  isPrimary: boolean;
@@ -531,6 +530,7 @@ export declare const CreateWorkerSchema: z.ZodObject<{
531
530
  hasPpe: boolean;
532
531
  availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
533
532
  email?: string | null | undefined;
533
+ lastName?: string | null | undefined;
534
534
  nino?: string | null | undefined;
535
535
  dateOfBirth?: string | Date | null | undefined;
536
536
  bio?: string | null | undefined;
@@ -554,7 +554,6 @@ export declare const CreateWorkerSchema: z.ZodObject<{
554
554
  } | null | undefined;
555
555
  }, {
556
556
  firstName: string;
557
- lastName: string;
558
557
  phoneNumbers: {
559
558
  phoneNumber: string;
560
559
  description?: string | null | undefined;
@@ -567,6 +566,7 @@ export declare const CreateWorkerSchema: z.ZodObject<{
567
566
  hasTools: boolean;
568
567
  hasPpe: boolean;
569
568
  email?: string | null | undefined;
569
+ lastName?: string | null | undefined;
570
570
  nino?: string | null | undefined;
571
571
  dateOfBirth?: string | Date | null | undefined;
572
572
  bio?: string | null | undefined;
@@ -592,7 +592,7 @@ export declare const CreateWorkerSchema: z.ZodObject<{
592
592
  }>;
593
593
  export declare const UpdateWorkerSchema: z.ZodObject<{
594
594
  firstName: z.ZodOptional<z.ZodString>;
595
- lastName: z.ZodOptional<z.ZodString>;
595
+ lastName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
596
596
  email: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodLiteral<"">]>, string | null | undefined, string | null | undefined>;
597
597
  phoneNumbers: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodEffects<z.ZodObject<{
598
598
  id: z.ZodOptional<z.ZodString>;
@@ -707,7 +707,7 @@ export declare const UpdateWorkerSchema: z.ZodObject<{
707
707
  }, "strip", z.ZodTypeAny, {
708
708
  email?: string | null | undefined;
709
709
  firstName?: string | undefined;
710
- lastName?: string | undefined;
710
+ lastName?: string | null | undefined;
711
711
  phoneNumbers?: {
712
712
  id?: string | undefined;
713
713
  phoneNumber?: string | undefined;
@@ -747,7 +747,7 @@ export declare const UpdateWorkerSchema: z.ZodObject<{
747
747
  }, {
748
748
  email?: string | null | undefined;
749
749
  firstName?: string | undefined;
750
- lastName?: string | undefined;
750
+ lastName?: string | null | undefined;
751
751
  phoneNumbers?: {
752
752
  id?: string | undefined;
753
753
  phoneNumber?: string | undefined;
@@ -796,8 +796,16 @@ export declare const FilterWorkerSchema: z.ZodObject<{
796
796
  availability: z.ZodNullable<z.ZodOptional<z.ZodEnum<["AVAILABLE", "PARTIALLY_AVAILABLE", "UNAVAILABLE"]>>>;
797
797
  englishLevel: z.ZodNullable<z.ZodOptional<z.ZodEnum<["NONE", "BASIC", "INTERMEDIATE", "ADVANCED", "NATIVE"]>>>;
798
798
  nationality: z.ZodNullable<z.ZodOptional<z.ZodEnum<["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"]>>>;
799
- postcode: z.ZodOptional<z.ZodString>;
800
- distance: z.ZodOptional<z.ZodNumber>;
799
+ location: z.ZodOptional<z.ZodObject<{
800
+ postcode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
801
+ radius: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
802
+ }, "strip", z.ZodTypeAny, {
803
+ postcode?: string | null | undefined;
804
+ radius?: number | null | undefined;
805
+ }, {
806
+ postcode?: string | null | undefined;
807
+ radius?: number | null | undefined;
808
+ }>>;
801
809
  hasTools: z.ZodOptional<z.ZodDefault<z.ZodEnum<["only_with", "only_without", "all"]>>>;
802
810
  hasPpe: z.ZodOptional<z.ZodDefault<z.ZodEnum<["only_with", "only_without", "all"]>>>;
803
811
  tradeFilters: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -825,14 +833,16 @@ export declare const FilterWorkerSchema: z.ZodObject<{
825
833
  }, "strip", z.ZodTypeAny, {
826
834
  limit: number;
827
835
  page: number;
828
- distance?: number | undefined;
829
836
  email?: string | undefined;
830
837
  phone?: string | undefined;
831
838
  englishLevel?: "NONE" | "BASIC" | "INTERMEDIATE" | "ADVANCED" | "NATIVE" | null | undefined;
832
839
  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;
833
840
  hasTools?: "only_with" | "only_without" | "all" | undefined;
834
841
  hasPpe?: "only_with" | "only_without" | "all" | undefined;
835
- postcode?: string | undefined;
842
+ location?: {
843
+ postcode?: string | null | undefined;
844
+ radius?: number | null | undefined;
845
+ } | undefined;
836
846
  availability?: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE" | null | undefined;
837
847
  createdBy?: string | undefined;
838
848
  name?: string | undefined;
@@ -847,14 +857,16 @@ export declare const FilterWorkerSchema: z.ZodObject<{
847
857
  sortBy?: "nameSimilarity" | "fullName" | "distance" | "email" | "phone" | null | undefined;
848
858
  sortOrder?: "ASC" | "DESC" | null | undefined;
849
859
  }, {
850
- distance?: number | undefined;
851
860
  email?: string | undefined;
852
861
  phone?: string | undefined;
853
862
  englishLevel?: "NONE" | "BASIC" | "INTERMEDIATE" | "ADVANCED" | "NATIVE" | null | undefined;
854
863
  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;
855
864
  hasTools?: "only_with" | "only_without" | "all" | undefined;
856
865
  hasPpe?: "only_with" | "only_without" | "all" | undefined;
857
- postcode?: string | undefined;
866
+ location?: {
867
+ postcode?: string | null | undefined;
868
+ radius?: number | null | undefined;
869
+ } | undefined;
858
870
  availability?: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE" | null | undefined;
859
871
  createdBy?: string | undefined;
860
872
  limit?: number | undefined;
@@ -875,7 +887,7 @@ export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
875
887
  items: z.ZodArray<z.ZodObject<{
876
888
  id: z.ZodString;
877
889
  firstName: z.ZodString;
878
- lastName: z.ZodString;
890
+ lastName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
879
891
  email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
880
892
  phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
881
893
  id: z.ZodString;
@@ -1012,7 +1024,6 @@ export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
1012
1024
  }, "strip", z.ZodTypeAny, {
1013
1025
  id: string;
1014
1026
  firstName: string;
1015
- lastName: string;
1016
1027
  phoneNumbers: {
1017
1028
  id: string;
1018
1029
  phoneNumber: string;
@@ -1025,6 +1036,7 @@ export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
1025
1036
  createdAt: string;
1026
1037
  updatedAt: string;
1027
1038
  email?: string | null | undefined;
1039
+ lastName?: string | null | undefined;
1028
1040
  nino?: string | null | undefined;
1029
1041
  dateOfBirth?: string | null | undefined;
1030
1042
  bio?: string | null | undefined;
@@ -1073,13 +1085,13 @@ export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
1073
1085
  }, {
1074
1086
  id: string;
1075
1087
  firstName: string;
1076
- lastName: string;
1077
1088
  hasTools: boolean;
1078
1089
  hasPpe: boolean;
1079
1090
  availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
1080
1091
  createdAt: string | Date;
1081
1092
  updatedAt: string | Date;
1082
1093
  email?: string | null | undefined;
1094
+ lastName?: string | null | undefined;
1083
1095
  phoneNumbers?: {
1084
1096
  id: string;
1085
1097
  phoneNumber: string;
@@ -1142,7 +1154,6 @@ export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
1142
1154
  items: {
1143
1155
  id: string;
1144
1156
  firstName: string;
1145
- lastName: string;
1146
1157
  phoneNumbers: {
1147
1158
  id: string;
1148
1159
  phoneNumber: string;
@@ -1155,6 +1166,7 @@ export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
1155
1166
  createdAt: string;
1156
1167
  updatedAt: string;
1157
1168
  email?: string | null | undefined;
1169
+ lastName?: string | null | undefined;
1158
1170
  nino?: string | null | undefined;
1159
1171
  dateOfBirth?: string | null | undefined;
1160
1172
  bio?: string | null | undefined;
@@ -1210,13 +1222,13 @@ export declare const PaginatedWorkerResponseSchema: z.ZodObject<{
1210
1222
  items: {
1211
1223
  id: string;
1212
1224
  firstName: string;
1213
- lastName: string;
1214
1225
  hasTools: boolean;
1215
1226
  hasPpe: boolean;
1216
1227
  availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
1217
1228
  createdAt: string | Date;
1218
1229
  updatedAt: string | Date;
1219
1230
  email?: string | null | undefined;
1231
+ lastName?: string | null | undefined;
1220
1232
  phoneNumbers?: {
1221
1233
  id: string;
1222
1234
  phoneNumber: string;
@@ -1303,7 +1315,7 @@ export declare const workersContractRouter: {
1303
1315
  method: "POST";
1304
1316
  body: z.ZodObject<{
1305
1317
  firstName: z.ZodString;
1306
- lastName: z.ZodString;
1318
+ lastName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1307
1319
  email: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodLiteral<"">]>, string | null | undefined, string | null | undefined>;
1308
1320
  phoneNumbers: z.ZodEffects<z.ZodArray<z.ZodObject<{
1309
1321
  phoneNumber: z.ZodEffects<z.ZodString, string, string>;
@@ -1394,7 +1406,6 @@ export declare const workersContractRouter: {
1394
1406
  availability: z.ZodDefault<z.ZodOptional<z.ZodEnum<["AVAILABLE", "PARTIALLY_AVAILABLE", "UNAVAILABLE"]>>>;
1395
1407
  }, "strip", z.ZodTypeAny, {
1396
1408
  firstName: string;
1397
- lastName: string;
1398
1409
  phoneNumbers: {
1399
1410
  phoneNumber: string;
1400
1411
  isPrimary: boolean;
@@ -1408,6 +1419,7 @@ export declare const workersContractRouter: {
1408
1419
  hasPpe: boolean;
1409
1420
  availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
1410
1421
  email?: string | null | undefined;
1422
+ lastName?: string | null | undefined;
1411
1423
  nino?: string | null | undefined;
1412
1424
  dateOfBirth?: string | Date | null | undefined;
1413
1425
  bio?: string | null | undefined;
@@ -1431,7 +1443,6 @@ export declare const workersContractRouter: {
1431
1443
  } | null | undefined;
1432
1444
  }, {
1433
1445
  firstName: string;
1434
- lastName: string;
1435
1446
  phoneNumbers: {
1436
1447
  phoneNumber: string;
1437
1448
  description?: string | null | undefined;
@@ -1444,6 +1455,7 @@ export declare const workersContractRouter: {
1444
1455
  hasTools: boolean;
1445
1456
  hasPpe: boolean;
1446
1457
  email?: string | null | undefined;
1458
+ lastName?: string | null | undefined;
1447
1459
  nino?: string | null | undefined;
1448
1460
  dateOfBirth?: string | Date | null | undefined;
1449
1461
  bio?: string | null | undefined;
@@ -1572,7 +1584,7 @@ export declare const workersContractRouter: {
1572
1584
  201: z.ZodObject<{
1573
1585
  id: z.ZodString;
1574
1586
  firstName: z.ZodString;
1575
- lastName: z.ZodString;
1587
+ lastName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1576
1588
  email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1577
1589
  phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1578
1590
  id: z.ZodString;
@@ -1709,7 +1721,6 @@ export declare const workersContractRouter: {
1709
1721
  }, "strip", z.ZodTypeAny, {
1710
1722
  id: string;
1711
1723
  firstName: string;
1712
- lastName: string;
1713
1724
  phoneNumbers: {
1714
1725
  id: string;
1715
1726
  phoneNumber: string;
@@ -1722,6 +1733,7 @@ export declare const workersContractRouter: {
1722
1733
  createdAt: string;
1723
1734
  updatedAt: string;
1724
1735
  email?: string | null | undefined;
1736
+ lastName?: string | null | undefined;
1725
1737
  nino?: string | null | undefined;
1726
1738
  dateOfBirth?: string | null | undefined;
1727
1739
  bio?: string | null | undefined;
@@ -1770,13 +1782,13 @@ export declare const workersContractRouter: {
1770
1782
  }, {
1771
1783
  id: string;
1772
1784
  firstName: string;
1773
- lastName: string;
1774
1785
  hasTools: boolean;
1775
1786
  hasPpe: boolean;
1776
1787
  availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
1777
1788
  createdAt: string | Date;
1778
1789
  updatedAt: string | Date;
1779
1790
  email?: string | null | undefined;
1791
+ lastName?: string | null | undefined;
1780
1792
  phoneNumbers?: {
1781
1793
  id: string;
1782
1794
  phoneNumber: string;
@@ -1874,8 +1886,16 @@ export declare const workersContractRouter: {
1874
1886
  availability: z.ZodNullable<z.ZodOptional<z.ZodEnum<["AVAILABLE", "PARTIALLY_AVAILABLE", "UNAVAILABLE"]>>>;
1875
1887
  englishLevel: z.ZodNullable<z.ZodOptional<z.ZodEnum<["NONE", "BASIC", "INTERMEDIATE", "ADVANCED", "NATIVE"]>>>;
1876
1888
  nationality: z.ZodNullable<z.ZodOptional<z.ZodEnum<["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"]>>>;
1877
- postcode: z.ZodOptional<z.ZodString>;
1878
- distance: z.ZodOptional<z.ZodNumber>;
1889
+ location: z.ZodOptional<z.ZodObject<{
1890
+ postcode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1891
+ radius: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1892
+ }, "strip", z.ZodTypeAny, {
1893
+ postcode?: string | null | undefined;
1894
+ radius?: number | null | undefined;
1895
+ }, {
1896
+ postcode?: string | null | undefined;
1897
+ radius?: number | null | undefined;
1898
+ }>>;
1879
1899
  hasTools: z.ZodOptional<z.ZodDefault<z.ZodEnum<["only_with", "only_without", "all"]>>>;
1880
1900
  hasPpe: z.ZodOptional<z.ZodDefault<z.ZodEnum<["only_with", "only_without", "all"]>>>;
1881
1901
  tradeFilters: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -1903,14 +1923,16 @@ export declare const workersContractRouter: {
1903
1923
  }, "strip", z.ZodTypeAny, {
1904
1924
  limit: number;
1905
1925
  page: number;
1906
- distance?: number | undefined;
1907
1926
  email?: string | undefined;
1908
1927
  phone?: string | undefined;
1909
1928
  englishLevel?: "NONE" | "BASIC" | "INTERMEDIATE" | "ADVANCED" | "NATIVE" | null | undefined;
1910
1929
  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;
1911
1930
  hasTools?: "only_with" | "only_without" | "all" | undefined;
1912
1931
  hasPpe?: "only_with" | "only_without" | "all" | undefined;
1913
- postcode?: string | undefined;
1932
+ location?: {
1933
+ postcode?: string | null | undefined;
1934
+ radius?: number | null | undefined;
1935
+ } | undefined;
1914
1936
  availability?: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE" | null | undefined;
1915
1937
  createdBy?: string | undefined;
1916
1938
  name?: string | undefined;
@@ -1925,14 +1947,16 @@ export declare const workersContractRouter: {
1925
1947
  sortBy?: "nameSimilarity" | "fullName" | "distance" | "email" | "phone" | null | undefined;
1926
1948
  sortOrder?: "ASC" | "DESC" | null | undefined;
1927
1949
  }, {
1928
- distance?: number | undefined;
1929
1950
  email?: string | undefined;
1930
1951
  phone?: string | undefined;
1931
1952
  englishLevel?: "NONE" | "BASIC" | "INTERMEDIATE" | "ADVANCED" | "NATIVE" | null | undefined;
1932
1953
  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;
1933
1954
  hasTools?: "only_with" | "only_without" | "all" | undefined;
1934
1955
  hasPpe?: "only_with" | "only_without" | "all" | undefined;
1935
- postcode?: string | undefined;
1956
+ location?: {
1957
+ postcode?: string | null | undefined;
1958
+ radius?: number | null | undefined;
1959
+ } | undefined;
1936
1960
  availability?: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE" | null | undefined;
1937
1961
  createdBy?: string | undefined;
1938
1962
  limit?: number | undefined;
@@ -2057,7 +2081,7 @@ export declare const workersContractRouter: {
2057
2081
  items: z.ZodArray<z.ZodObject<{
2058
2082
  id: z.ZodString;
2059
2083
  firstName: z.ZodString;
2060
- lastName: z.ZodString;
2084
+ lastName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2061
2085
  email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2062
2086
  phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
2063
2087
  id: z.ZodString;
@@ -2194,7 +2218,6 @@ export declare const workersContractRouter: {
2194
2218
  }, "strip", z.ZodTypeAny, {
2195
2219
  id: string;
2196
2220
  firstName: string;
2197
- lastName: string;
2198
2221
  phoneNumbers: {
2199
2222
  id: string;
2200
2223
  phoneNumber: string;
@@ -2207,6 +2230,7 @@ export declare const workersContractRouter: {
2207
2230
  createdAt: string;
2208
2231
  updatedAt: string;
2209
2232
  email?: string | null | undefined;
2233
+ lastName?: string | null | undefined;
2210
2234
  nino?: string | null | undefined;
2211
2235
  dateOfBirth?: string | null | undefined;
2212
2236
  bio?: string | null | undefined;
@@ -2255,13 +2279,13 @@ export declare const workersContractRouter: {
2255
2279
  }, {
2256
2280
  id: string;
2257
2281
  firstName: string;
2258
- lastName: string;
2259
2282
  hasTools: boolean;
2260
2283
  hasPpe: boolean;
2261
2284
  availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
2262
2285
  createdAt: string | Date;
2263
2286
  updatedAt: string | Date;
2264
2287
  email?: string | null | undefined;
2288
+ lastName?: string | null | undefined;
2265
2289
  phoneNumbers?: {
2266
2290
  id: string;
2267
2291
  phoneNumber: string;
@@ -2324,7 +2348,6 @@ export declare const workersContractRouter: {
2324
2348
  items: {
2325
2349
  id: string;
2326
2350
  firstName: string;
2327
- lastName: string;
2328
2351
  phoneNumbers: {
2329
2352
  id: string;
2330
2353
  phoneNumber: string;
@@ -2337,6 +2360,7 @@ export declare const workersContractRouter: {
2337
2360
  createdAt: string;
2338
2361
  updatedAt: string;
2339
2362
  email?: string | null | undefined;
2363
+ lastName?: string | null | undefined;
2340
2364
  nino?: string | null | undefined;
2341
2365
  dateOfBirth?: string | null | undefined;
2342
2366
  bio?: string | null | undefined;
@@ -2392,13 +2416,13 @@ export declare const workersContractRouter: {
2392
2416
  items: {
2393
2417
  id: string;
2394
2418
  firstName: string;
2395
- lastName: string;
2396
2419
  hasTools: boolean;
2397
2420
  hasPpe: boolean;
2398
2421
  availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
2399
2422
  createdAt: string | Date;
2400
2423
  updatedAt: string | Date;
2401
2424
  email?: string | null | undefined;
2425
+ lastName?: string | null | undefined;
2402
2426
  phoneNumbers?: {
2403
2427
  id: string;
2404
2428
  phoneNumber: string;
@@ -2579,7 +2603,7 @@ export declare const workersContractRouter: {
2579
2603
  200: z.ZodObject<{
2580
2604
  id: z.ZodString;
2581
2605
  firstName: z.ZodString;
2582
- lastName: z.ZodString;
2606
+ lastName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2583
2607
  email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2584
2608
  phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
2585
2609
  id: z.ZodString;
@@ -2716,7 +2740,6 @@ export declare const workersContractRouter: {
2716
2740
  }, "strip", z.ZodTypeAny, {
2717
2741
  id: string;
2718
2742
  firstName: string;
2719
- lastName: string;
2720
2743
  phoneNumbers: {
2721
2744
  id: string;
2722
2745
  phoneNumber: string;
@@ -2729,6 +2752,7 @@ export declare const workersContractRouter: {
2729
2752
  createdAt: string;
2730
2753
  updatedAt: string;
2731
2754
  email?: string | null | undefined;
2755
+ lastName?: string | null | undefined;
2732
2756
  nino?: string | null | undefined;
2733
2757
  dateOfBirth?: string | null | undefined;
2734
2758
  bio?: string | null | undefined;
@@ -2777,13 +2801,13 @@ export declare const workersContractRouter: {
2777
2801
  }, {
2778
2802
  id: string;
2779
2803
  firstName: string;
2780
- lastName: string;
2781
2804
  hasTools: boolean;
2782
2805
  hasPpe: boolean;
2783
2806
  availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
2784
2807
  createdAt: string | Date;
2785
2808
  updatedAt: string | Date;
2786
2809
  email?: string | null | undefined;
2810
+ lastName?: string | null | undefined;
2787
2811
  phoneNumbers?: {
2788
2812
  id: string;
2789
2813
  phoneNumber: string;
@@ -2881,7 +2905,7 @@ export declare const workersContractRouter: {
2881
2905
  method: "PATCH";
2882
2906
  body: z.ZodObject<{
2883
2907
  firstName: z.ZodOptional<z.ZodString>;
2884
- lastName: z.ZodOptional<z.ZodString>;
2908
+ lastName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2885
2909
  email: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodLiteral<"">]>, string | null | undefined, string | null | undefined>;
2886
2910
  phoneNumbers: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodEffects<z.ZodObject<{
2887
2911
  id: z.ZodOptional<z.ZodString>;
@@ -2996,7 +3020,7 @@ export declare const workersContractRouter: {
2996
3020
  }, "strip", z.ZodTypeAny, {
2997
3021
  email?: string | null | undefined;
2998
3022
  firstName?: string | undefined;
2999
- lastName?: string | undefined;
3023
+ lastName?: string | null | undefined;
3000
3024
  phoneNumbers?: {
3001
3025
  id?: string | undefined;
3002
3026
  phoneNumber?: string | undefined;
@@ -3036,7 +3060,7 @@ export declare const workersContractRouter: {
3036
3060
  }, {
3037
3061
  email?: string | null | undefined;
3038
3062
  firstName?: string | undefined;
3039
- lastName?: string | undefined;
3063
+ lastName?: string | null | undefined;
3040
3064
  phoneNumbers?: {
3041
3065
  id?: string | undefined;
3042
3066
  phoneNumber?: string | undefined;
@@ -3179,7 +3203,7 @@ export declare const workersContractRouter: {
3179
3203
  200: z.ZodObject<{
3180
3204
  id: z.ZodString;
3181
3205
  firstName: z.ZodString;
3182
- lastName: z.ZodString;
3206
+ lastName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3183
3207
  email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3184
3208
  phoneNumbers: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
3185
3209
  id: z.ZodString;
@@ -3316,7 +3340,6 @@ export declare const workersContractRouter: {
3316
3340
  }, "strip", z.ZodTypeAny, {
3317
3341
  id: string;
3318
3342
  firstName: string;
3319
- lastName: string;
3320
3343
  phoneNumbers: {
3321
3344
  id: string;
3322
3345
  phoneNumber: string;
@@ -3329,6 +3352,7 @@ export declare const workersContractRouter: {
3329
3352
  createdAt: string;
3330
3353
  updatedAt: string;
3331
3354
  email?: string | null | undefined;
3355
+ lastName?: string | null | undefined;
3332
3356
  nino?: string | null | undefined;
3333
3357
  dateOfBirth?: string | null | undefined;
3334
3358
  bio?: string | null | undefined;
@@ -3377,13 +3401,13 @@ export declare const workersContractRouter: {
3377
3401
  }, {
3378
3402
  id: string;
3379
3403
  firstName: string;
3380
- lastName: string;
3381
3404
  hasTools: boolean;
3382
3405
  hasPpe: boolean;
3383
3406
  availability: "AVAILABLE" | "PARTIALLY_AVAILABLE" | "UNAVAILABLE";
3384
3407
  createdAt: string | Date;
3385
3408
  updatedAt: string | Date;
3386
3409
  email?: string | null | undefined;
3410
+ lastName?: string | null | undefined;
3387
3411
  phoneNumbers?: {
3388
3412
  id: string;
3389
3413
  phoneNumber: string;
@@ -1 +1 @@
1
- {"version":3,"file":"workers.contract.d.ts","sourceRoot":"","sources":["../../contracts/workers/workers.contract.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgFjC,CAAC"}
1
+ {"version":3,"file":"workers.contract.d.ts","sourceRoot":"","sources":["../../contracts/workers/workers.contract.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgFjC,CAAC"}