@idscan/onboarding 2.7.3 → 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: InternationalizationInfo | Record<string, never>;
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>;
@@ -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);