@fiado/type-kit 1.6.92 → 1.6.94

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.
@@ -21,4 +21,5 @@ export declare class PeopleCreateRequest {
21
21
  secondaryPhoneNumber: string | null;
22
22
  phoneNumber: string | null;
23
23
  directoryId: string | null;
24
+ SIN?: string | null;
24
25
  }
@@ -1,4 +1,5 @@
1
1
  import { AppEnum } from '../../transactionProcessor';
2
+ import { AuthorizationNeededMXNStatus } from '../enums/AuthorizationNeededMXNStatus';
2
3
  import { InfoSelfVerifiedStatus } from '../enums/InfoSelfVerifiedStatus';
3
4
  import { SexDocument } from '../enums/SexDocument';
4
5
  import { IdentificationDocument } from './IdentificationDocument';
@@ -49,7 +50,7 @@ export declare class PeopleResponse {
49
50
  USD_MaximumTX: string | null;
50
51
  accountRequirementControl: {
51
52
  id: string;
52
- authorizationNeededMXN: string;
53
+ authorizationNeededMXN: AuthorizationNeededMXNStatus;
53
54
  authorizerEmail: string;
54
55
  blackListApproved: boolean | null;
55
56
  cnbvListApproved: boolean | null;
@@ -57,7 +58,7 @@ export declare class PeopleResponse {
57
58
  dateOfVeredict: boolean | null;
58
59
  duplicateUserDetection: boolean;
59
60
  fiadoListApproved: boolean | null;
60
- infoSelfVerified: InfoSelfVerifiedStatus;
61
+ MEX_InfoSelfVerified: InfoSelfVerifiedStatus;
61
62
  magicNumber: boolean;
62
63
  MEX_Address: boolean;
63
64
  MEX_Beneficiaries: boolean;
@@ -73,7 +74,7 @@ export declare class PeopleResponse {
73
74
  MEX_INEValidation: boolean | null;
74
75
  MEX_Signed: boolean | null;
75
76
  USA_Beneficiaries: boolean | null;
76
- USA_infoSelfVerified: InfoSelfVerifiedStatus;
77
+ USA_InfoSelfVerified: InfoSelfVerifiedStatus;
77
78
  USA_Signed: boolean | null;
78
79
  older18: boolean | null;
79
80
  signature: boolean;
@@ -87,5 +88,6 @@ export declare class PeopleResponse {
87
88
  uploadSelfie: boolean;
88
89
  createdAt: number;
89
90
  updatedAt: number;
91
+ SIN: string | null;
90
92
  };
91
93
  }
@@ -70,6 +70,8 @@ export declare class PeopleUpdateRequest {
70
70
  MXN_MonthlyIncome?: string | null;
71
71
  MXN_MonthlyExtraSupport?: string | null;
72
72
  pepLevel?: string | null;
73
+ USA_InfoSelfVerified?: InfoSelfVerifiedStatus;
74
+ MEX_InfoSelfVerified?: InfoSelfVerifiedStatus;
73
75
  infoSelfVerified?: InfoSelfVerifiedStatus;
74
76
  beneficialOwner?: string | null;
75
77
  weeklyIncomeUSD?: string | null;
@@ -79,4 +81,5 @@ export declare class PeopleUpdateRequest {
79
81
  authorizationNeededMXN?: AuthorizationNeededMXNStatus;
80
82
  authorizerEmail?: string | null;
81
83
  dateOfVeredict?: string | null;
84
+ SIN?: string | null;
82
85
  }
@@ -11,7 +11,7 @@ export declare class BaseIssuanceRequirementDto {
11
11
  dateOfVeredict?: boolean;
12
12
  duplicateUserDetection?: boolean | null;
13
13
  fiadoListApproved?: boolean | null;
14
- infoSelfVerified?: boolean;
14
+ MEX_InfoSelfVerified?: boolean;
15
15
  magicNumber?: boolean;
16
16
  MEX_Address?: boolean;
17
17
  MEX_Beneficiaries?: boolean | null;
@@ -93,7 +93,7 @@ __decorate([
93
93
  (0, class_validator_1.IsOptional)(),
94
94
  (0, class_validator_1.IsBoolean)(),
95
95
  __metadata("design:type", Boolean)
96
- ], BaseIssuanceRequirementDto.prototype, "infoSelfVerified", void 0);
96
+ ], BaseIssuanceRequirementDto.prototype, "MEX_InfoSelfVerified", void 0);
97
97
  __decorate([
98
98
  (0, class_transformer_1.Expose)(),
99
99
  (0, class_validator_1.IsOptional)(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.6.92",
3
+ "version": "1.6.94",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -23,4 +23,5 @@ export class PeopleCreateRequest {
23
23
  secondaryPhoneNumber: string | null
24
24
  phoneNumber: string | null
25
25
  directoryId: string | null
26
+ SIN?: string | null;
26
27
  }
@@ -1,5 +1,6 @@
1
1
 
2
2
  import { AppEnum } from '../../transactionProcessor';
3
+ import { AuthorizationNeededMXNStatus } from '../enums/AuthorizationNeededMXNStatus';
3
4
  import { InfoSelfVerifiedStatus } from '../enums/InfoSelfVerifiedStatus';
4
5
  import { SexDocument } from '../enums/SexDocument';
5
6
  import { IdentificationDocument } from './IdentificationDocument';
@@ -52,7 +53,7 @@ export class PeopleResponse {
52
53
  USD_MaximumTX: string | null;
53
54
  accountRequirementControl:{
54
55
  id: string;
55
- authorizationNeededMXN:string;
56
+ authorizationNeededMXN:AuthorizationNeededMXNStatus;
56
57
  authorizerEmail:string;
57
58
  blackListApproved:boolean| null;
58
59
  cnbvListApproved:boolean| null;
@@ -60,7 +61,7 @@ export class PeopleResponse {
60
61
  dateOfVeredict:boolean| null;
61
62
  duplicateUserDetection:boolean;
62
63
  fiadoListApproved:boolean| null;
63
- infoSelfVerified:InfoSelfVerifiedStatus;
64
+ MEX_InfoSelfVerified:InfoSelfVerifiedStatus;
64
65
  magicNumber:boolean;
65
66
  MEX_Address:boolean;
66
67
  MEX_Beneficiaries:boolean;
@@ -76,7 +77,7 @@ export class PeopleResponse {
76
77
  MEX_INEValidation:boolean | null;
77
78
  MEX_Signed:boolean | null;
78
79
  USA_Beneficiaries:boolean | null;
79
- USA_infoSelfVerified:InfoSelfVerifiedStatus;
80
+ USA_InfoSelfVerified:InfoSelfVerifiedStatus;
80
81
  USA_Signed:boolean | null;
81
82
  older18:boolean | null;
82
83
  signature:boolean;
@@ -90,5 +91,6 @@ export class PeopleResponse {
90
91
  uploadSelfie:boolean;
91
92
  createdAt:number,
92
93
  updatedAt:number
94
+ SIN: string | null;
93
95
  }
94
96
  }
@@ -74,8 +74,8 @@ export class PeopleUpdateRequest {
74
74
  MXN_MonthlyIncome?: string | null;
75
75
  MXN_MonthlyExtraSupport ?: string | null;
76
76
  pepLevel?: string | null;
77
-
78
-
77
+ USA_InfoSelfVerified?:InfoSelfVerifiedStatus;
78
+ MEX_InfoSelfVerified?:InfoSelfVerifiedStatus;
79
79
  infoSelfVerified?: InfoSelfVerifiedStatus;
80
80
  beneficialOwner?:string | null;
81
81
  weeklyIncomeUSD?: string | null;
@@ -85,4 +85,5 @@ export class PeopleUpdateRequest {
85
85
  authorizationNeededMXN?: AuthorizationNeededMXNStatus;
86
86
  authorizerEmail?: string | null;
87
87
  dateOfVeredict?: string | null;
88
+ SIN?: string | null;
88
89
  }
@@ -67,8 +67,8 @@ export class BaseIssuanceRequirementDto {
67
67
  @Expose()
68
68
  @IsOptional()
69
69
  @IsBoolean()
70
- infoSelfVerified?: boolean;
71
-
70
+ MEX_InfoSelfVerified?: boolean;
71
+
72
72
  @Expose()
73
73
  @IsOptional()
74
74
  @IsBoolean()