@idscan/onboarding 2.7.0 → 2.7.2

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.
@@ -81,6 +81,7 @@ export type SuccessApplicantValidation = {
81
81
  applicantId: string;
82
82
  attemptId: number;
83
83
  attemptsCount: number;
84
+ notificationType: number;
84
85
  };
85
86
  export type FailedApplicantValidationResult = {
86
87
  code: string;
@@ -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,
@@ -5,7 +5,7 @@ export default class Wrapper {
5
5
  private api;
6
6
  private lib;
7
7
  private configs;
8
- private IDVCModule;
8
+ private readonly IDVCModule;
9
9
  private validationOutput;
10
10
  private form;
11
11
  private validationModal;
@@ -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;