@idscan/onboarding 2.8.0 → 2.9.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.
@@ -43,6 +43,8 @@ export interface IDVCConfigCallbacks {
43
43
  onValidate?: (data: ValidateCallbackData) => void;
44
44
  onReloaded?: () => void;
45
45
  onError?: (data: WrapperError) => void;
46
+ onGetOptionsStart?: () => void;
47
+ onGetOptionsComplete?: (result: SuccessConfiguration) => void;
46
48
  }
47
49
  export interface IDVCConfig {
48
50
  priority: string;
@@ -20,6 +20,8 @@ export default class Configs {
20
20
  forceComplete?: boolean;
21
21
  }) => void;
22
22
  get onError(): (data: import('./errors/WrapperError').default) => void;
23
+ get onGetOptionsStart(): () => void;
24
+ get onGetOptionsComplete(): (result: SuccessConfiguration) => void;
23
25
  set libConfig(config: IDVCConfig);
24
26
  get libConfig(): IDVCConfig;
25
27
  get cssStylesConfig(): string;