@regulaforensics/idv-capture-web 2.3.154-nightly → 2.4.155-rc

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
@@ -127,7 +127,7 @@ export declare class IdvIntegrationService {
127
127
  initialize(config: InitConfig): Promise<{
128
128
  error?: BaseInitializationError;
129
129
  }>;
130
- configure(config: ConnectionConfig | UrlConnectionConfig): Promise<ConfigureCompletion | UrlConfigureCompelition>;
130
+ configure(config: ConnectionConfig | UrlConnectionConfig): Promise<ConfigureCompletion | UrlConfigureCompletion>;
131
131
  getWorkFlows(params?: WorkflowListRequest): Promise<WorkflowListCompletion>;
132
132
  prepareWorkflow({ workflowId }: {
133
133
  workflowId: string;
@@ -136,10 +136,9 @@ export declare class IdvIntegrationService {
136
136
  deinitialize(): Promise<DeinitializeCompletion>;
137
137
  /** service commands */
138
138
  get version(): string;
139
- setNonce(id: string): void;
139
+ set nonce(id: string);
140
140
  set eventListener(callback: (message: IdvMessageEvent) => void);
141
141
  set sessionRestoreMode(isEnabled: boolean);
142
- get currentSessionId(): string | null;
143
142
  }
144
143
 
145
144
  export declare type IdvMessageEvent = {
@@ -250,7 +249,7 @@ declare enum TokenInitializeError {
250
249
  WORKFLOW_ISSUE = 1
251
250
  }
252
251
 
253
- declare type UrlConfigureCompelition = {
252
+ declare type UrlConfigureCompletion = {
254
253
  workflows: string[];
255
254
  error?: BaseTokenInitializationError;
256
255
  };