@fiado/type-kit 1.6.88 → 1.6.90

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.
@@ -52,22 +52,22 @@ export declare class PeopleResponse {
52
52
  authorizerEmail: string;
53
53
  blackListApproved: boolean | null;
54
54
  cnbvListApproved: boolean | null;
55
- countryOfDomicile: string;
55
+ countryOfDomicile: string | null;
56
56
  dateOfVeredict: boolean | null;
57
- duplicateUserDetection: boolean | null;
57
+ duplicateUserDetection: boolean;
58
58
  fiadoListApproved: boolean | null;
59
59
  infoSelfVerified: boolean | null;
60
- magicNumber: boolean | null;
61
- MEX_Address: boolean | null;
62
- MEX_Beneficiaries: boolean | null;
63
- MEX_DebitAccount: boolean | null;
64
- MEX_DebitAccountWish: boolean | null;
60
+ magicNumber: boolean;
61
+ MEX_Address: boolean;
62
+ MEX_Beneficiaries: boolean;
63
+ MEX_DebitAccount: boolean;
64
+ MEX_DebitAccountWish: boolean;
65
65
  MEX_FacematchVerified: boolean | null;
66
- MEX_ProofAddress: boolean | null;
67
- MEX_TemplateMatch: boolean | null;
68
- MEX_UploadDocument: boolean | null;
69
- USA_UploadDocument: boolean | null;
70
- MEX_AlterationDetection: boolean | null;
66
+ MEX_ProofAddress: boolean;
67
+ MEX_TemplateMatch: boolean;
68
+ MEX_UploadDocument: boolean;
69
+ USA_UploadDocument: boolean;
70
+ MEX_AlterationDetection: boolean;
71
71
  MEX_CURPValidation: boolean | null;
72
72
  MEX_INEValidation: boolean | null;
73
73
  MEX_Signed: boolean | null;
@@ -75,15 +75,15 @@ export declare class PeopleResponse {
75
75
  USA_infoSelfVerified: boolean | null;
76
76
  USA_Signed: boolean | null;
77
77
  older18: boolean | null;
78
- signature: boolean | null;
79
- USA_Address: boolean | null;
80
- USA_DebitAccount: boolean | null;
81
- USA_DebitAccountWish: boolean | null;
78
+ signature: boolean;
79
+ USA_Address: boolean;
80
+ USA_DebitAccount: boolean;
81
+ USA_DebitAccountWish: boolean;
82
82
  USA_FacematchVerified: boolean | null;
83
83
  USA_ProgramWish: boolean | null;
84
- USA_TemplateMatch: boolean | null;
85
- USA_AlterationDetection: boolean | null;
86
- uploadSelfie: boolean | null;
84
+ USA_TemplateMatch: boolean;
85
+ USA_AlterationDetection: boolean;
86
+ uploadSelfie: boolean;
87
87
  createdAt: number;
88
88
  updatedAt: number;
89
89
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.6.88",
3
+ "version": "1.6.90",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -3,6 +3,7 @@ import { AppEnum } from '../../transactionProcessor';
3
3
  import { SexDocument } from '../enums/SexDocument';
4
4
  import { IdentificationDocument } from './IdentificationDocument';
5
5
 
6
+
6
7
  export class PeopleResponse {
7
8
  id: string;
8
9
  createDate: string;
@@ -54,22 +55,22 @@ export class PeopleResponse {
54
55
  authorizerEmail:string;
55
56
  blackListApproved:boolean| null;
56
57
  cnbvListApproved:boolean| null;
57
- countryOfDomicile:string;
58
+ countryOfDomicile:string|null;
58
59
  dateOfVeredict:boolean| null;
59
- duplicateUserDetection:boolean| null;
60
+ duplicateUserDetection:boolean;
60
61
  fiadoListApproved:boolean| null;
61
62
  infoSelfVerified:boolean| null;
62
- magicNumber:boolean| null;
63
- MEX_Address:boolean| null;
64
- MEX_Beneficiaries:boolean| null;
65
- MEX_DebitAccount:boolean| null;
66
- MEX_DebitAccountWish:boolean| null;
63
+ magicNumber:boolean;
64
+ MEX_Address:boolean;
65
+ MEX_Beneficiaries:boolean;
66
+ MEX_DebitAccount:boolean;
67
+ MEX_DebitAccountWish:boolean;
67
68
  MEX_FacematchVerified:boolean| null;
68
- MEX_ProofAddress:boolean| null;
69
- MEX_TemplateMatch:boolean| null;
70
- MEX_UploadDocument:boolean| null;
71
- USA_UploadDocument: boolean | null;
72
- MEX_AlterationDetection:boolean | null;
69
+ MEX_ProofAddress:boolean;
70
+ MEX_TemplateMatch:boolean;
71
+ MEX_UploadDocument:boolean;
72
+ USA_UploadDocument: boolean;
73
+ MEX_AlterationDetection:boolean;
73
74
  MEX_CURPValidation:boolean | null;
74
75
  MEX_INEValidation:boolean | null;
75
76
  MEX_Signed:boolean | null;
@@ -77,15 +78,15 @@ export class PeopleResponse {
77
78
  USA_infoSelfVerified:boolean | null;
78
79
  USA_Signed:boolean | null;
79
80
  older18:boolean | null;
80
- signature:boolean | null;
81
- USA_Address:boolean | null;
82
- USA_DebitAccount:boolean | null;
83
- USA_DebitAccountWish:boolean | null;
81
+ signature:boolean;
82
+ USA_Address:boolean;
83
+ USA_DebitAccount:boolean;
84
+ USA_DebitAccountWish:boolean;
84
85
  USA_FacematchVerified:boolean|null;
85
86
  USA_ProgramWish:boolean | null;
86
- USA_TemplateMatch:boolean | null;
87
- USA_AlterationDetection:boolean | null;
88
- uploadSelfie:boolean| null;
87
+ USA_TemplateMatch:boolean;
88
+ USA_AlterationDetection:boolean;
89
+ uploadSelfie:boolean;
89
90
  createdAt:number,
90
91
  updatedAt:number
91
92
  }