@idscan/onboarding 2.7.0 → 2.7.1
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.
|
@@ -32,6 +32,12 @@ export declare enum WorkMode {
|
|
|
32
32
|
VALIDATION = "validation",
|
|
33
33
|
FACE_AUTHORIZATION = "faceAuthorization"
|
|
34
34
|
}
|
|
35
|
+
export declare enum NotificationText {
|
|
36
|
+
'' = 0,
|
|
37
|
+
'sent via SMS' = 1,
|
|
38
|
+
'sent via email' = 2,
|
|
39
|
+
'sent via SMS or email' = 3
|
|
40
|
+
}
|
|
35
41
|
export declare enum DocumentTypeIDs {
|
|
36
42
|
'ID' = 1,
|
|
37
43
|
'Passport' = 2,
|
|
@@ -9,6 +9,7 @@ export default class Validation {
|
|
|
9
9
|
private invalidDataErrors;
|
|
10
10
|
private attemptsLeft;
|
|
11
11
|
private attemptsCount;
|
|
12
|
+
private notificationType;
|
|
12
13
|
private result;
|
|
13
14
|
constructor(response: ValidationApplicant, modal: ValidationModal);
|
|
14
15
|
parseResponse(response: ValidationApplicant): void;
|