@idscan/onboarding 2.9.2 → 2.10.0

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.
@@ -71,6 +71,7 @@ export type SuccessApplicantValidation = {
71
71
  document: ApplicantDocument;
72
72
  attemptsLeft: number;
73
73
  status: ResponseStatus;
74
+ isCompleted: boolean;
74
75
  validationStatus: ValidationStatus;
75
76
  invalidDataErrors: InvalidDataError[] | null;
76
77
  faceSuccess: boolean;
@@ -11,6 +11,7 @@ export default class Wrapper {
11
11
  private options;
12
12
  private embeddedAppConnectionId;
13
13
  private readonly config;
14
+ private readonly fingerPrintData;
14
15
  private qrCodeBtn;
15
16
  private wrapperContainerId;
16
17
  constructor(config: IWrapperConfig, IDVCModule?: any);
@@ -13,7 +13,6 @@ export declare const createFingerPrintModel: () => Promise<{
13
13
  fontsInfo: ReturnType<typeof Fingerprint.fontsInfo>;
14
14
  };
15
15
  deviceMetadata: {
16
- ip: string;
17
16
  timeZone: string;
18
17
  userLanguage: string;
19
18
  };
@@ -6,6 +6,7 @@ export default class Validation {
6
6
  private status;
7
7
  private code;
8
8
  private message;
9
+ private isCompleted;
9
10
  private invalidDataErrors;
10
11
  private attemptsLeft;
11
12
  private attemptsCount;