@fiado/type-kit 1.4.16 → 1.4.18

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.
@@ -9,9 +9,11 @@ export declare class AccountCreateRequest {
9
9
  peopleId: string;
10
10
  accountLevel: AccountLevelEnum;
11
11
  typeOfDirectoryId: string;
12
- names: string;
13
- paternalLastName: string;
14
- maternalLastName: string;
12
+ latLastNameMaternal: string;
13
+ latLastNamePaternal: string;
14
+ latNames: string;
15
+ usNames: string;
16
+ usLastNames: string;
15
17
  phoneNumber: string;
16
18
  address: AddressResponse;
17
19
  email: string;
@@ -54,15 +54,23 @@ __decorate([
54
54
  __decorate([
55
55
  (0, class_validator_1.IsString)(),
56
56
  __metadata("design:type", String)
57
- ], AccountCreateRequest.prototype, "names", void 0);
57
+ ], AccountCreateRequest.prototype, "latLastNameMaternal", void 0);
58
58
  __decorate([
59
59
  (0, class_validator_1.IsString)(),
60
60
  __metadata("design:type", String)
61
- ], AccountCreateRequest.prototype, "paternalLastName", void 0);
61
+ ], AccountCreateRequest.prototype, "latLastNamePaternal", void 0);
62
62
  __decorate([
63
63
  (0, class_validator_1.IsString)(),
64
64
  __metadata("design:type", String)
65
- ], AccountCreateRequest.prototype, "maternalLastName", void 0);
65
+ ], AccountCreateRequest.prototype, "latNames", void 0);
66
+ __decorate([
67
+ (0, class_validator_1.IsString)(),
68
+ __metadata("design:type", String)
69
+ ], AccountCreateRequest.prototype, "usNames", void 0);
70
+ __decorate([
71
+ (0, class_validator_1.IsString)(),
72
+ __metadata("design:type", String)
73
+ ], AccountCreateRequest.prototype, "usLastNames", void 0);
66
74
  __decorate([
67
75
  (0, IsPhoneNumberConstraint_1.IsPhoneNumberFiado)(),
68
76
  __metadata("design:type", String)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.4.16",
3
+ "version": "1.4.18",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -37,15 +37,24 @@ export class AccountCreateRequest {
37
37
 
38
38
  @IsEnum(TypeOfDirectoryId)
39
39
  typeOfDirectoryId: string;
40
-
40
+
41
41
  @IsString()
42
- names: string;
43
-
42
+ latLastNameMaternal:string
43
+
44
44
  @IsString()
45
- paternalLastName: string;
45
+ latLastNamePaternal:string
46
+
47
+ @IsString()
48
+ latNames:string
46
49
 
47
50
  @IsString()
48
- maternalLastName: string;
51
+ countryOfBirth:string
52
+
53
+ @IsString()
54
+ usNames:string
55
+
56
+ @IsString()
57
+ usLastNames:string
49
58
 
50
59
  @IsPhoneNumberFiado()
51
60
  phoneNumber: string;
@@ -79,5 +88,7 @@ export class AccountCreateRequest {
79
88
 
80
89
  @IsEnum(Profile)
81
90
  userProfile: Profile;
91
+
92
+
82
93
  }
83
94