@fiado/type-kit 1.2.53 → 1.2.54

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.
@@ -1,11 +1,13 @@
1
+ import { SexDocument } from "../../identity";
2
+ import { PepLevelEnum } from "../enums/PepLevelEnum";
1
3
  export declare class CreateRiskProfileRequest {
2
- private directoryId;
3
- private peopleId;
4
- private sex;
5
- private dob;
6
- private countryOfBirth;
7
- private countryOfResidence;
8
- private stateOfResidence;
9
- private activity;
10
- private pepLevel;
4
+ directoryId: string;
5
+ peopleId: string;
6
+ sex: SexDocument;
7
+ dob: string;
8
+ countryOfBirth: string;
9
+ countryOfResidence: string;
10
+ stateOfResidence: string;
11
+ activity: string;
12
+ pepLevel: PepLevelEnum;
11
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.2.53",
3
+ "version": "1.2.54",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -5,37 +5,37 @@ import {IsEnum, IsNotEmpty, IsString} from "class-validator";
5
5
  export class CreateRiskProfileRequest {
6
6
  @IsString()
7
7
  @IsNotEmpty()
8
- private directoryId!: string;
8
+ directoryId!: string;
9
9
 
10
10
  @IsString()
11
11
  @IsNotEmpty()
12
- private peopleId!: string;
12
+ peopleId!: string;
13
13
 
14
14
  @IsEnum(SexDocument)
15
15
  @IsNotEmpty()
16
- private sex!: SexDocument;
16
+ sex!: SexDocument;
17
17
 
18
18
  @IsString()
19
19
  @IsNotEmpty()
20
- private dob!: string;
20
+ dob!: string;
21
21
 
22
22
  @IsString()
23
23
  @IsNotEmpty()
24
- private countryOfBirth!: string;
24
+ countryOfBirth!: string;
25
25
 
26
26
  @IsString()
27
27
  @IsNotEmpty()
28
- private countryOfResidence!: string;
28
+ countryOfResidence!: string;
29
29
 
30
30
  @IsString()
31
31
  @IsNotEmpty()
32
- private stateOfResidence!: string;
32
+ stateOfResidence!: string;
33
33
 
34
34
  @IsString()
35
35
  @IsNotEmpty()
36
- private activity!: string;
36
+ activity!: string;
37
37
 
38
38
  @IsEnum(PepLevelEnum)
39
39
  @IsNotEmpty()
40
- private pepLevel!: PepLevelEnum;
40
+ pepLevel!: PepLevelEnum;
41
41
  }