@feresmeryas/microservices-common 1.5.35 → 1.5.36

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/index.d.mts CHANGED
@@ -170,42 +170,24 @@ declare class CreateReportDto {
170
170
 
171
171
  declare class SkillDto {
172
172
  name: string;
173
- level?: string;
174
173
  }
175
174
  declare class EducationDto {
176
- institution: string;
177
175
  degree: string;
178
- fieldOfStudy?: string;
179
- startDate?: string;
180
- endDate?: string;
181
176
  }
182
177
  declare class CertificationDto {
183
- name: string;
184
- issuingOrganization?: string;
185
- issueDate?: string;
186
- expirationDate?: string;
178
+ certif: string;
187
179
  }
188
180
  declare class ExperienceDto {
189
- title: string;
190
- company: string;
191
- startDate?: string;
192
- endDate?: string;
193
- description?: string;
181
+ experience: string;
194
182
  }
195
183
  declare class AddressDto {
196
- street: string;
197
- city: string;
198
- state?: string;
199
- country?: string;
200
- postalCode?: string;
184
+ adresse: string;
201
185
  }
202
186
  declare class PhoneDto {
203
187
  number: string;
204
- type?: string;
205
188
  }
206
189
  declare class LinkDto {
207
190
  url: string;
208
- type?: string;
209
191
  }
210
192
  declare class ProfessionalDataDto {
211
193
  businessSector: BusinessSector;
package/dist/index.d.ts CHANGED
@@ -170,42 +170,24 @@ declare class CreateReportDto {
170
170
 
171
171
  declare class SkillDto {
172
172
  name: string;
173
- level?: string;
174
173
  }
175
174
  declare class EducationDto {
176
- institution: string;
177
175
  degree: string;
178
- fieldOfStudy?: string;
179
- startDate?: string;
180
- endDate?: string;
181
176
  }
182
177
  declare class CertificationDto {
183
- name: string;
184
- issuingOrganization?: string;
185
- issueDate?: string;
186
- expirationDate?: string;
178
+ certif: string;
187
179
  }
188
180
  declare class ExperienceDto {
189
- title: string;
190
- company: string;
191
- startDate?: string;
192
- endDate?: string;
193
- description?: string;
181
+ experience: string;
194
182
  }
195
183
  declare class AddressDto {
196
- street: string;
197
- city: string;
198
- state?: string;
199
- country?: string;
200
- postalCode?: string;
184
+ adresse: string;
201
185
  }
202
186
  declare class PhoneDto {
203
187
  number: string;
204
- type?: string;
205
188
  }
206
189
  declare class LinkDto {
207
190
  url: string;
208
- type?: string;
209
191
  }
210
192
  declare class ProfessionalDataDto {
211
193
  businessSector: BusinessSector;
package/dist/index.js CHANGED
@@ -1091,46 +1091,25 @@ __name(_ts_metadata15, "_ts_metadata");
1091
1091
  var _SkillDto = class _SkillDto {
1092
1092
  constructor() {
1093
1093
  __publicField(this, "name");
1094
- __publicField(this, "level");
1095
1094
  }
1096
1095
  };
1097
1096
  __name(_SkillDto, "SkillDto");
1098
1097
  var SkillDto = _SkillDto;
1099
1098
  _ts_decorate15([
1100
1099
  (0, import_swagger7.ApiProperty)({
1101
- example: "JavaScript"
1100
+ example: "React"
1102
1101
  }),
1103
1102
  (0, import_class_validator14.IsString)(),
1104
1103
  (0, import_class_validator14.IsNotEmpty)(),
1105
1104
  _ts_metadata15("design:type", String)
1106
1105
  ], SkillDto.prototype, "name", void 0);
1107
- _ts_decorate15([
1108
- (0, import_swagger7.ApiPropertyOptional)({
1109
- example: "Expert"
1110
- }),
1111
- (0, import_class_validator14.IsOptional)(),
1112
- (0, import_class_validator14.IsString)(),
1113
- _ts_metadata15("design:type", String)
1114
- ], SkillDto.prototype, "level", void 0);
1115
1106
  var _EducationDto = class _EducationDto {
1116
1107
  constructor() {
1117
- __publicField(this, "institution");
1118
1108
  __publicField(this, "degree");
1119
- __publicField(this, "fieldOfStudy");
1120
- __publicField(this, "startDate");
1121
- __publicField(this, "endDate");
1122
1109
  }
1123
1110
  };
1124
1111
  __name(_EducationDto, "EducationDto");
1125
1112
  var EducationDto = _EducationDto;
1126
- _ts_decorate15([
1127
- (0, import_swagger7.ApiProperty)({
1128
- example: "University of Technology"
1129
- }),
1130
- (0, import_class_validator14.IsString)(),
1131
- (0, import_class_validator14.IsNotEmpty)(),
1132
- _ts_metadata15("design:type", String)
1133
- ], EducationDto.prototype, "institution", void 0);
1134
1113
  _ts_decorate15([
1135
1114
  (0, import_swagger7.ApiProperty)({
1136
1115
  example: "Bachelor of Science"
@@ -1139,36 +1118,9 @@ _ts_decorate15([
1139
1118
  (0, import_class_validator14.IsNotEmpty)(),
1140
1119
  _ts_metadata15("design:type", String)
1141
1120
  ], EducationDto.prototype, "degree", void 0);
1142
- _ts_decorate15([
1143
- (0, import_swagger7.ApiPropertyOptional)({
1144
- example: "Computer Science"
1145
- }),
1146
- (0, import_class_validator14.IsOptional)(),
1147
- (0, import_class_validator14.IsString)(),
1148
- _ts_metadata15("design:type", String)
1149
- ], EducationDto.prototype, "fieldOfStudy", void 0);
1150
- _ts_decorate15([
1151
- (0, import_swagger7.ApiPropertyOptional)({
1152
- example: "2020-09-01"
1153
- }),
1154
- (0, import_class_validator14.IsOptional)(),
1155
- (0, import_class_validator14.IsDateString)(),
1156
- _ts_metadata15("design:type", String)
1157
- ], EducationDto.prototype, "startDate", void 0);
1158
- _ts_decorate15([
1159
- (0, import_swagger7.ApiPropertyOptional)({
1160
- example: "2024-06-30"
1161
- }),
1162
- (0, import_class_validator14.IsOptional)(),
1163
- (0, import_class_validator14.IsDateString)(),
1164
- _ts_metadata15("design:type", String)
1165
- ], EducationDto.prototype, "endDate", void 0);
1166
1121
  var _CertificationDto = class _CertificationDto {
1167
1122
  constructor() {
1168
- __publicField(this, "name");
1169
- __publicField(this, "issuingOrganization");
1170
- __publicField(this, "issueDate");
1171
- __publicField(this, "expirationDate");
1123
+ __publicField(this, "certif");
1172
1124
  }
1173
1125
  };
1174
1126
  __name(_CertificationDto, "CertificationDto");
@@ -1180,138 +1132,40 @@ _ts_decorate15([
1180
1132
  (0, import_class_validator14.IsString)(),
1181
1133
  (0, import_class_validator14.IsNotEmpty)(),
1182
1134
  _ts_metadata15("design:type", String)
1183
- ], CertificationDto.prototype, "name", void 0);
1184
- _ts_decorate15([
1185
- (0, import_swagger7.ApiPropertyOptional)({
1186
- example: "Amazon Web Services"
1187
- }),
1188
- (0, import_class_validator14.IsOptional)(),
1189
- (0, import_class_validator14.IsString)(),
1190
- _ts_metadata15("design:type", String)
1191
- ], CertificationDto.prototype, "issuingOrganization", void 0);
1192
- _ts_decorate15([
1193
- (0, import_swagger7.ApiPropertyOptional)({
1194
- example: "2023-05-15"
1195
- }),
1196
- (0, import_class_validator14.IsOptional)(),
1197
- (0, import_class_validator14.IsDateString)(),
1198
- _ts_metadata15("design:type", String)
1199
- ], CertificationDto.prototype, "issueDate", void 0);
1200
- _ts_decorate15([
1201
- (0, import_swagger7.ApiPropertyOptional)({
1202
- example: "2026-05-15"
1203
- }),
1204
- (0, import_class_validator14.IsOptional)(),
1205
- (0, import_class_validator14.IsDateString)(),
1206
- _ts_metadata15("design:type", String)
1207
- ], CertificationDto.prototype, "expirationDate", void 0);
1135
+ ], CertificationDto.prototype, "certif", void 0);
1208
1136
  var _ExperienceDto = class _ExperienceDto {
1209
1137
  constructor() {
1210
- __publicField(this, "title");
1211
- __publicField(this, "company");
1212
- __publicField(this, "startDate");
1213
- __publicField(this, "endDate");
1214
- __publicField(this, "description");
1138
+ __publicField(this, "experience");
1215
1139
  }
1216
1140
  };
1217
1141
  __name(_ExperienceDto, "ExperienceDto");
1218
1142
  var ExperienceDto = _ExperienceDto;
1219
1143
  _ts_decorate15([
1220
1144
  (0, import_swagger7.ApiProperty)({
1221
- example: "Senior Developer"
1222
- }),
1223
- (0, import_class_validator14.IsString)(),
1224
- (0, import_class_validator14.IsNotEmpty)(),
1225
- _ts_metadata15("design:type", String)
1226
- ], ExperienceDto.prototype, "title", void 0);
1227
- _ts_decorate15([
1228
- (0, import_swagger7.ApiProperty)({
1229
- example: "Tech Corp"
1145
+ example: "Senior Developer at Tech Corp"
1230
1146
  }),
1231
1147
  (0, import_class_validator14.IsString)(),
1232
1148
  (0, import_class_validator14.IsNotEmpty)(),
1233
1149
  _ts_metadata15("design:type", String)
1234
- ], ExperienceDto.prototype, "company", void 0);
1235
- _ts_decorate15([
1236
- (0, import_swagger7.ApiPropertyOptional)({
1237
- example: "2020-01-01"
1238
- }),
1239
- (0, import_class_validator14.IsOptional)(),
1240
- (0, import_class_validator14.IsDateString)(),
1241
- _ts_metadata15("design:type", String)
1242
- ], ExperienceDto.prototype, "startDate", void 0);
1243
- _ts_decorate15([
1244
- (0, import_swagger7.ApiPropertyOptional)({
1245
- example: "2024-12-31"
1246
- }),
1247
- (0, import_class_validator14.IsOptional)(),
1248
- (0, import_class_validator14.IsDateString)(),
1249
- _ts_metadata15("design:type", String)
1250
- ], ExperienceDto.prototype, "endDate", void 0);
1251
- _ts_decorate15([
1252
- (0, import_swagger7.ApiPropertyOptional)({
1253
- example: "Developed enterprise applications"
1254
- }),
1255
- (0, import_class_validator14.IsOptional)(),
1256
- (0, import_class_validator14.IsString)(),
1257
- (0, import_class_validator14.MaxLength)(1e3),
1258
- _ts_metadata15("design:type", String)
1259
- ], ExperienceDto.prototype, "description", void 0);
1150
+ ], ExperienceDto.prototype, "experience", void 0);
1260
1151
  var _AddressDto = class _AddressDto {
1261
1152
  constructor() {
1262
- __publicField(this, "street");
1263
- __publicField(this, "city");
1264
- __publicField(this, "state");
1265
- __publicField(this, "country");
1266
- __publicField(this, "postalCode");
1153
+ __publicField(this, "adresse");
1267
1154
  }
1268
1155
  };
1269
1156
  __name(_AddressDto, "AddressDto");
1270
1157
  var AddressDto = _AddressDto;
1271
1158
  _ts_decorate15([
1272
1159
  (0, import_swagger7.ApiProperty)({
1273
- example: "123 Main Street"
1160
+ example: "123 Main Street, New York"
1274
1161
  }),
1275
1162
  (0, import_class_validator14.IsString)(),
1276
1163
  (0, import_class_validator14.IsNotEmpty)(),
1277
1164
  _ts_metadata15("design:type", String)
1278
- ], AddressDto.prototype, "street", void 0);
1279
- _ts_decorate15([
1280
- (0, import_swagger7.ApiProperty)({
1281
- example: "New York"
1282
- }),
1283
- (0, import_class_validator14.IsString)(),
1284
- (0, import_class_validator14.IsNotEmpty)(),
1285
- _ts_metadata15("design:type", String)
1286
- ], AddressDto.prototype, "city", void 0);
1287
- _ts_decorate15([
1288
- (0, import_swagger7.ApiPropertyOptional)({
1289
- example: "NY"
1290
- }),
1291
- (0, import_class_validator14.IsOptional)(),
1292
- (0, import_class_validator14.IsString)(),
1293
- _ts_metadata15("design:type", String)
1294
- ], AddressDto.prototype, "state", void 0);
1295
- _ts_decorate15([
1296
- (0, import_swagger7.ApiPropertyOptional)({
1297
- example: "USA"
1298
- }),
1299
- (0, import_class_validator14.IsOptional)(),
1300
- (0, import_class_validator14.IsString)(),
1301
- _ts_metadata15("design:type", String)
1302
- ], AddressDto.prototype, "country", void 0);
1303
- _ts_decorate15([
1304
- (0, import_swagger7.ApiPropertyOptional)({
1305
- example: "10001"
1306
- }),
1307
- (0, import_class_validator14.IsOptional)(),
1308
- (0, import_class_validator14.IsString)(),
1309
- _ts_metadata15("design:type", String)
1310
- ], AddressDto.prototype, "postalCode", void 0);
1165
+ ], AddressDto.prototype, "adresse", void 0);
1311
1166
  var _PhoneDto = class _PhoneDto {
1312
1167
  constructor() {
1313
1168
  __publicField(this, "number");
1314
- __publicField(this, "type");
1315
1169
  }
1316
1170
  };
1317
1171
  __name(_PhoneDto, "PhoneDto");
@@ -1324,18 +1178,9 @@ _ts_decorate15([
1324
1178
  (0, import_class_validator14.IsNotEmpty)(),
1325
1179
  _ts_metadata15("design:type", String)
1326
1180
  ], PhoneDto.prototype, "number", void 0);
1327
- _ts_decorate15([
1328
- (0, import_swagger7.ApiPropertyOptional)({
1329
- example: "mobile"
1330
- }),
1331
- (0, import_class_validator14.IsOptional)(),
1332
- (0, import_class_validator14.IsString)(),
1333
- _ts_metadata15("design:type", String)
1334
- ], PhoneDto.prototype, "type", void 0);
1335
1181
  var _LinkDto = class _LinkDto {
1336
1182
  constructor() {
1337
1183
  __publicField(this, "url");
1338
- __publicField(this, "type");
1339
1184
  }
1340
1185
  };
1341
1186
  __name(_LinkDto, "LinkDto");
@@ -1348,14 +1193,6 @@ _ts_decorate15([
1348
1193
  (0, import_class_validator14.IsNotEmpty)(),
1349
1194
  _ts_metadata15("design:type", String)
1350
1195
  ], LinkDto.prototype, "url", void 0);
1351
- _ts_decorate15([
1352
- (0, import_swagger7.ApiPropertyOptional)({
1353
- example: "LinkedIn"
1354
- }),
1355
- (0, import_class_validator14.IsOptional)(),
1356
- (0, import_class_validator14.IsString)(),
1357
- _ts_metadata15("design:type", String)
1358
- ], LinkDto.prototype, "type", void 0);
1359
1196
  var _ProfessionalDataDto = class _ProfessionalDataDto {
1360
1197
  constructor() {
1361
1198
  __publicField(this, "businessSector");
@@ -1442,11 +1279,6 @@ _ts_decorate15([
1442
1279
  _ts_metadata15("design:type", Array)
1443
1280
  ], ProfessionalDataDto.prototype, "certifications", void 0);
1444
1281
  _ts_decorate15([
1445
- (0, import_swagger7.ApiPropertyOptional)({
1446
- type: [
1447
- ExperienceDto
1448
- ]
1449
- }),
1450
1282
  (0, import_swagger7.ApiPropertyOptional)({
1451
1283
  type: [
1452
1284
  ExperienceDto
package/dist/index.mjs CHANGED
@@ -988,7 +988,7 @@ _ts_decorate14([
988
988
  // dto/users/professional_user.dto.ts
989
989
  import { ApiProperty as ApiProperty6, ApiPropertyOptional as ApiPropertyOptional4 } from "@nestjs/swagger";
990
990
  import { Type as Type2 } from "class-transformer";
991
- import { IsString as IsString10, IsNotEmpty as IsNotEmpty5, IsEnum as IsEnum4, IsOptional as IsOptional5, MaxLength as MaxLength6, IsArray, ValidateNested, IsDateString } from "class-validator";
991
+ import { IsString as IsString10, IsNotEmpty as IsNotEmpty5, IsEnum as IsEnum4, IsOptional as IsOptional5, MaxLength as MaxLength6, IsArray, ValidateNested } from "class-validator";
992
992
  function _ts_decorate15(decorators, target, key, desc) {
993
993
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
994
994
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
@@ -1003,46 +1003,25 @@ __name(_ts_metadata15, "_ts_metadata");
1003
1003
  var _SkillDto = class _SkillDto {
1004
1004
  constructor() {
1005
1005
  __publicField(this, "name");
1006
- __publicField(this, "level");
1007
1006
  }
1008
1007
  };
1009
1008
  __name(_SkillDto, "SkillDto");
1010
1009
  var SkillDto = _SkillDto;
1011
1010
  _ts_decorate15([
1012
1011
  ApiProperty6({
1013
- example: "JavaScript"
1012
+ example: "React"
1014
1013
  }),
1015
1014
  IsString10(),
1016
1015
  IsNotEmpty5(),
1017
1016
  _ts_metadata15("design:type", String)
1018
1017
  ], SkillDto.prototype, "name", void 0);
1019
- _ts_decorate15([
1020
- ApiPropertyOptional4({
1021
- example: "Expert"
1022
- }),
1023
- IsOptional5(),
1024
- IsString10(),
1025
- _ts_metadata15("design:type", String)
1026
- ], SkillDto.prototype, "level", void 0);
1027
1018
  var _EducationDto = class _EducationDto {
1028
1019
  constructor() {
1029
- __publicField(this, "institution");
1030
1020
  __publicField(this, "degree");
1031
- __publicField(this, "fieldOfStudy");
1032
- __publicField(this, "startDate");
1033
- __publicField(this, "endDate");
1034
1021
  }
1035
1022
  };
1036
1023
  __name(_EducationDto, "EducationDto");
1037
1024
  var EducationDto = _EducationDto;
1038
- _ts_decorate15([
1039
- ApiProperty6({
1040
- example: "University of Technology"
1041
- }),
1042
- IsString10(),
1043
- IsNotEmpty5(),
1044
- _ts_metadata15("design:type", String)
1045
- ], EducationDto.prototype, "institution", void 0);
1046
1025
  _ts_decorate15([
1047
1026
  ApiProperty6({
1048
1027
  example: "Bachelor of Science"
@@ -1051,36 +1030,9 @@ _ts_decorate15([
1051
1030
  IsNotEmpty5(),
1052
1031
  _ts_metadata15("design:type", String)
1053
1032
  ], EducationDto.prototype, "degree", void 0);
1054
- _ts_decorate15([
1055
- ApiPropertyOptional4({
1056
- example: "Computer Science"
1057
- }),
1058
- IsOptional5(),
1059
- IsString10(),
1060
- _ts_metadata15("design:type", String)
1061
- ], EducationDto.prototype, "fieldOfStudy", void 0);
1062
- _ts_decorate15([
1063
- ApiPropertyOptional4({
1064
- example: "2020-09-01"
1065
- }),
1066
- IsOptional5(),
1067
- IsDateString(),
1068
- _ts_metadata15("design:type", String)
1069
- ], EducationDto.prototype, "startDate", void 0);
1070
- _ts_decorate15([
1071
- ApiPropertyOptional4({
1072
- example: "2024-06-30"
1073
- }),
1074
- IsOptional5(),
1075
- IsDateString(),
1076
- _ts_metadata15("design:type", String)
1077
- ], EducationDto.prototype, "endDate", void 0);
1078
1033
  var _CertificationDto = class _CertificationDto {
1079
1034
  constructor() {
1080
- __publicField(this, "name");
1081
- __publicField(this, "issuingOrganization");
1082
- __publicField(this, "issueDate");
1083
- __publicField(this, "expirationDate");
1035
+ __publicField(this, "certif");
1084
1036
  }
1085
1037
  };
1086
1038
  __name(_CertificationDto, "CertificationDto");
@@ -1092,138 +1044,40 @@ _ts_decorate15([
1092
1044
  IsString10(),
1093
1045
  IsNotEmpty5(),
1094
1046
  _ts_metadata15("design:type", String)
1095
- ], CertificationDto.prototype, "name", void 0);
1096
- _ts_decorate15([
1097
- ApiPropertyOptional4({
1098
- example: "Amazon Web Services"
1099
- }),
1100
- IsOptional5(),
1101
- IsString10(),
1102
- _ts_metadata15("design:type", String)
1103
- ], CertificationDto.prototype, "issuingOrganization", void 0);
1104
- _ts_decorate15([
1105
- ApiPropertyOptional4({
1106
- example: "2023-05-15"
1107
- }),
1108
- IsOptional5(),
1109
- IsDateString(),
1110
- _ts_metadata15("design:type", String)
1111
- ], CertificationDto.prototype, "issueDate", void 0);
1112
- _ts_decorate15([
1113
- ApiPropertyOptional4({
1114
- example: "2026-05-15"
1115
- }),
1116
- IsOptional5(),
1117
- IsDateString(),
1118
- _ts_metadata15("design:type", String)
1119
- ], CertificationDto.prototype, "expirationDate", void 0);
1047
+ ], CertificationDto.prototype, "certif", void 0);
1120
1048
  var _ExperienceDto = class _ExperienceDto {
1121
1049
  constructor() {
1122
- __publicField(this, "title");
1123
- __publicField(this, "company");
1124
- __publicField(this, "startDate");
1125
- __publicField(this, "endDate");
1126
- __publicField(this, "description");
1050
+ __publicField(this, "experience");
1127
1051
  }
1128
1052
  };
1129
1053
  __name(_ExperienceDto, "ExperienceDto");
1130
1054
  var ExperienceDto = _ExperienceDto;
1131
1055
  _ts_decorate15([
1132
1056
  ApiProperty6({
1133
- example: "Senior Developer"
1134
- }),
1135
- IsString10(),
1136
- IsNotEmpty5(),
1137
- _ts_metadata15("design:type", String)
1138
- ], ExperienceDto.prototype, "title", void 0);
1139
- _ts_decorate15([
1140
- ApiProperty6({
1141
- example: "Tech Corp"
1057
+ example: "Senior Developer at Tech Corp"
1142
1058
  }),
1143
1059
  IsString10(),
1144
1060
  IsNotEmpty5(),
1145
1061
  _ts_metadata15("design:type", String)
1146
- ], ExperienceDto.prototype, "company", void 0);
1147
- _ts_decorate15([
1148
- ApiPropertyOptional4({
1149
- example: "2020-01-01"
1150
- }),
1151
- IsOptional5(),
1152
- IsDateString(),
1153
- _ts_metadata15("design:type", String)
1154
- ], ExperienceDto.prototype, "startDate", void 0);
1155
- _ts_decorate15([
1156
- ApiPropertyOptional4({
1157
- example: "2024-12-31"
1158
- }),
1159
- IsOptional5(),
1160
- IsDateString(),
1161
- _ts_metadata15("design:type", String)
1162
- ], ExperienceDto.prototype, "endDate", void 0);
1163
- _ts_decorate15([
1164
- ApiPropertyOptional4({
1165
- example: "Developed enterprise applications"
1166
- }),
1167
- IsOptional5(),
1168
- IsString10(),
1169
- MaxLength6(1e3),
1170
- _ts_metadata15("design:type", String)
1171
- ], ExperienceDto.prototype, "description", void 0);
1062
+ ], ExperienceDto.prototype, "experience", void 0);
1172
1063
  var _AddressDto = class _AddressDto {
1173
1064
  constructor() {
1174
- __publicField(this, "street");
1175
- __publicField(this, "city");
1176
- __publicField(this, "state");
1177
- __publicField(this, "country");
1178
- __publicField(this, "postalCode");
1065
+ __publicField(this, "adresse");
1179
1066
  }
1180
1067
  };
1181
1068
  __name(_AddressDto, "AddressDto");
1182
1069
  var AddressDto = _AddressDto;
1183
1070
  _ts_decorate15([
1184
1071
  ApiProperty6({
1185
- example: "123 Main Street"
1072
+ example: "123 Main Street, New York"
1186
1073
  }),
1187
1074
  IsString10(),
1188
1075
  IsNotEmpty5(),
1189
1076
  _ts_metadata15("design:type", String)
1190
- ], AddressDto.prototype, "street", void 0);
1191
- _ts_decorate15([
1192
- ApiProperty6({
1193
- example: "New York"
1194
- }),
1195
- IsString10(),
1196
- IsNotEmpty5(),
1197
- _ts_metadata15("design:type", String)
1198
- ], AddressDto.prototype, "city", void 0);
1199
- _ts_decorate15([
1200
- ApiPropertyOptional4({
1201
- example: "NY"
1202
- }),
1203
- IsOptional5(),
1204
- IsString10(),
1205
- _ts_metadata15("design:type", String)
1206
- ], AddressDto.prototype, "state", void 0);
1207
- _ts_decorate15([
1208
- ApiPropertyOptional4({
1209
- example: "USA"
1210
- }),
1211
- IsOptional5(),
1212
- IsString10(),
1213
- _ts_metadata15("design:type", String)
1214
- ], AddressDto.prototype, "country", void 0);
1215
- _ts_decorate15([
1216
- ApiPropertyOptional4({
1217
- example: "10001"
1218
- }),
1219
- IsOptional5(),
1220
- IsString10(),
1221
- _ts_metadata15("design:type", String)
1222
- ], AddressDto.prototype, "postalCode", void 0);
1077
+ ], AddressDto.prototype, "adresse", void 0);
1223
1078
  var _PhoneDto = class _PhoneDto {
1224
1079
  constructor() {
1225
1080
  __publicField(this, "number");
1226
- __publicField(this, "type");
1227
1081
  }
1228
1082
  };
1229
1083
  __name(_PhoneDto, "PhoneDto");
@@ -1236,18 +1090,9 @@ _ts_decorate15([
1236
1090
  IsNotEmpty5(),
1237
1091
  _ts_metadata15("design:type", String)
1238
1092
  ], PhoneDto.prototype, "number", void 0);
1239
- _ts_decorate15([
1240
- ApiPropertyOptional4({
1241
- example: "mobile"
1242
- }),
1243
- IsOptional5(),
1244
- IsString10(),
1245
- _ts_metadata15("design:type", String)
1246
- ], PhoneDto.prototype, "type", void 0);
1247
1093
  var _LinkDto = class _LinkDto {
1248
1094
  constructor() {
1249
1095
  __publicField(this, "url");
1250
- __publicField(this, "type");
1251
1096
  }
1252
1097
  };
1253
1098
  __name(_LinkDto, "LinkDto");
@@ -1260,14 +1105,6 @@ _ts_decorate15([
1260
1105
  IsNotEmpty5(),
1261
1106
  _ts_metadata15("design:type", String)
1262
1107
  ], LinkDto.prototype, "url", void 0);
1263
- _ts_decorate15([
1264
- ApiPropertyOptional4({
1265
- example: "LinkedIn"
1266
- }),
1267
- IsOptional5(),
1268
- IsString10(),
1269
- _ts_metadata15("design:type", String)
1270
- ], LinkDto.prototype, "type", void 0);
1271
1108
  var _ProfessionalDataDto = class _ProfessionalDataDto {
1272
1109
  constructor() {
1273
1110
  __publicField(this, "businessSector");
@@ -1354,11 +1191,6 @@ _ts_decorate15([
1354
1191
  _ts_metadata15("design:type", Array)
1355
1192
  ], ProfessionalDataDto.prototype, "certifications", void 0);
1356
1193
  _ts_decorate15([
1357
- ApiPropertyOptional4({
1358
- type: [
1359
- ExperienceDto
1360
- ]
1361
- }),
1362
1194
  ApiPropertyOptional4({
1363
1195
  type: [
1364
1196
  ExperienceDto
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@feresmeryas/microservices-common",
3
- "version": "1.5.35",
3
+ "version": "1.5.36",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [