@regulaforensics/idv-capture-web 2.3.125-nightly → 2.3.127-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
@@ -138,7 +138,7 @@ export declare class IdvIntegrationService {
138
138
  prepareWorkflow({ workflowId }: {
139
139
  workflowId: string;
140
140
  }): Promise<PrepareWorkflowCompletion>;
141
- startWorkflow(metadata?: Record<string, unknown>): Promise<WorkflowCompetion>;
141
+ startWorkflow(metadata?: Record<string, unknown>): Promise<WorkflowCompletion>;
142
142
  deinitialize(): Promise<DeinitializeCompletion>;
143
143
  /** service commands */
144
144
  setNonce(id: string): void;
@@ -262,7 +262,12 @@ declare type Workflow = {
262
262
  };
263
263
  } & Record<string, any>;
264
264
 
265
- export declare type WorkflowCompetion = {
265
+ /**
266
+ * @deprecated Use `WorkflowCompletion` instead.
267
+ */
268
+ export declare type WorkflowCompetion = WorkflowCompletion;
269
+
270
+ export declare type WorkflowCompletion = {
266
271
  results?: ScenarioResults;
267
272
  error?: BaseScenarioError;
268
273
  };