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