@idscan/onboarding 2.7.2 → 2.7.4
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.
|
@@ -13,7 +13,7 @@ export interface INavigatorInfo {
|
|
|
13
13
|
languages: readonly string[];
|
|
14
14
|
}
|
|
15
15
|
export default function getBrowserInfo(): Promise<{
|
|
16
|
-
internationalizationInfo:
|
|
16
|
+
internationalizationInfo: Record<string, never> | InternationalizationInfo;
|
|
17
17
|
navigatorInfo: INavigatorInfo;
|
|
18
18
|
availableNavigatorApiInfo: Record<string, never> | Record<string, boolean>;
|
|
19
19
|
additionalApiInfo: Record<string, never> | Record<string, boolean>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export type IDVCDocumentTypeIndex = 1 | 2 | 3 | 6 | 7 | 8 | 9 | 10 | 11;
|
|
2
|
-
export type IDVCDocumentTypeName = '
|
|
2
|
+
export type IDVCDocumentTypeName = 'DL' | 'Passport' | 'PassportCard' | 'GreenCard' | 'InternationalId' | 'VIN' | 'Barcode' | 'FaceAuthorization' | 'EmploymentAuthorization';
|
|
3
3
|
export type SupportedLanguage = 'en' | 'es';
|
|
4
4
|
export type RealFaceModeType = 'auto' | 'none' | 'all';
|
|
5
5
|
export type Base64Image = string;
|
|
@@ -13,7 +13,6 @@ export default class Wrapper {
|
|
|
13
13
|
private options;
|
|
14
14
|
private embeddedAppConnectionId;
|
|
15
15
|
private readonly config;
|
|
16
|
-
private readonly fingerPrintData;
|
|
17
16
|
private qrCodeBtn;
|
|
18
17
|
private wrapperContainerId;
|
|
19
18
|
constructor(config: IWrapperConfig, IDVCModule?: any);
|