@regulaforensics/idv-capture-web 3.3.308 → 3.4.309-nightly

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
@@ -246,7 +246,7 @@ declare type IdvBusinessLogicControllerProps = {
246
246
  loadModules: (modulesFromProps: any[]) => Promise<{
247
247
  error?: BaseInitializationError;
248
248
  }>;
249
- setProcessingTemplate: (workflowSteps: any[]) => void;
249
+ getProcessingTemplate: () => WorkflowStepClientGui | null;
250
250
  isProcessing: boolean;
251
251
  setIsProcessing: (isProcessing: boolean) => void;
252
252
  _pushStep: (stepId: string, data: Record<string, any>, type?: PerformType) => Promise<{
@@ -503,24 +503,19 @@ declare type IdvStoreProps = {
503
503
  } | null;
504
504
  getCurrentSessionId: () => string | null;
505
505
  modulesConfig: Record<string, any>;
506
- layout: Record<string, any> | null;
507
506
  sessionProperties: SessionPropertiesItem[];
508
507
  setSessionProperties: (properties: SessionPropertiesItem[]) => void;
509
- setLayout: (layout: Record<string, any>) => void;
510
508
  workflow: Workflow | null;
511
509
  setWorkflow: (workflow: Workflow) => void;
512
510
  currentStepId: string | null;
513
511
  setCurrentStepId: (stepId: string) => void;
514
512
  listener: (message: IdvMessageEvent) => void | null;
515
513
  setListener: (callback: (message: IdvMessageEvent) => void) => void;
516
- workflowId: string | null;
517
- setWorkflowId: (id: string) => void;
518
514
  nonce?: string;
519
515
  setNonce: (id: string) => void;
520
516
  getNonce: () => string | undefined;
521
517
  currentScreenConfig: CurrentScreenConfig | null;
522
518
  externalModules: LoadedModule[] | [];
523
- processingTransformedTemplate: WorkflowStepClientGui | null;
524
519
  serviceToken?: string;
525
520
  apiKeyAuthTokenCollection: AuthTokenStoreData | Record<string, unknown>;
526
521
  setApiKeyAuthTokenCollection: (apiKey: string, authToken: string, tokenExpiresAt: number) => void;
@@ -530,8 +525,6 @@ declare type IdvStoreProps = {
530
525
  setStartConfig: (startConfig: StartConfig) => void;
531
526
  locale: string;
532
527
  setLocale: (locale: string) => void;
533
- trackLocation: boolean;
534
- setTrackLocation: (trackLocation: boolean) => void;
535
528
  };
536
529
 
537
530
  export declare class IdvWebComponent extends LitElement {
@@ -564,8 +557,7 @@ export declare class IdvWebComponent extends LitElement {
564
557
  export declare type InitConfig = {
565
558
  modulesConfig?: {
566
559
  docreader?: {
567
- devLicense?: string;
568
- module?: 'BoundsLite' | 'BarcodeMRZ';
560
+ devLicense: string;
569
561
  };
570
562
  face?: Record<string, any>;
571
563
  };
@@ -697,6 +689,7 @@ declare type Workflow = {
697
689
  layout: Record<string, any>;
698
690
  steps: Array<WorkflowStepClientGui>;
699
691
  };
692
+ trackLocation?: boolean;
700
693
  } & Record<string, any>;
701
694
 
702
695
  export declare type WorkflowCompletion = {