@regulaforensics/idv-capture-web 3.2.289-nightly → 3.2.290

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.
package/dist/index.d.ts CHANGED
@@ -186,7 +186,6 @@ declare type CurrentScreenConfig = {
186
186
  sessionId?: string;
187
187
  serviceToken?: string;
188
188
  locale?: string;
189
- stepType?: string;
190
189
  } & Record<string, any>;
191
190
 
192
191
  export declare enum DeinitializationError {
@@ -292,6 +291,7 @@ export declare const IdvEventTypesEnum: {
292
291
  declare class IdvFetchService {
293
292
  private _connectionTokenExpirationBufferMs;
294
293
  private _origin;
294
+ private _locale;
295
295
  private _workflowId;
296
296
  private _session;
297
297
  private _apiKeyAuthToken;
@@ -564,7 +564,8 @@ export declare class IdvWebComponent extends LitElement {
564
564
  export declare type InitConfig = {
565
565
  modulesConfig?: {
566
566
  docreader?: {
567
- devLicense: string;
567
+ devLicense?: string;
568
+ module?: 'BoundsLite' | 'BarcodeMRZ';
568
569
  };
569
570
  face?: Record<string, any>;
570
571
  };
@@ -589,9 +590,9 @@ declare type LoadedModule = {
589
590
 
590
591
  export declare type ModuleClass<TModuleProps = unknown, TModulesConfig = unknown> = IdvModuleStaticMethods & (new (...args: any[]) => BaseModule<TModuleProps, TModulesConfig>);
591
592
 
592
- declare type PerformType = (typeof PerformTypes)[keyof typeof PerformTypes] | undefined;
593
+ declare type PerformType = (typeof performType)[keyof typeof performType] | undefined;
593
594
 
594
- declare const PerformTypes: {
595
+ declare const performType: {
595
596
  readonly FORM: "form";
596
597
  readonly DATA: "data";
597
598
  };