@regulaforensics/idv-capture-web 2.3.145-nightly → 2.3.148-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/README.md +5 -4
- package/dist/{index-XwtRbXMC.js → index-CARP2eQV.js} +1 -1
- package/dist/{index-DKfYKewz.js → index-OFpe_iQx.js} +1 -1
- package/dist/index-roTpX8DE.js +30986 -0
- package/dist/index.d.ts +6 -4
- package/dist/main.iife.js +117 -123
- package/dist/main.js +1 -1
- package/package.json +2 -2
- package/dist/index-DRjr9OaZ.js +0 -32081
package/dist/index.d.ts
CHANGED
|
@@ -132,10 +132,7 @@ export declare class IdvIntegrationService {
|
|
|
132
132
|
prepareWorkflow({ workflowId }: {
|
|
133
133
|
workflowId: string;
|
|
134
134
|
}): Promise<PrepareWorkflowCompletion>;
|
|
135
|
-
startWorkflow(
|
|
136
|
-
metadata?: Record<string, unknown>;
|
|
137
|
-
locale?: string;
|
|
138
|
-
}): Promise<WorkflowCompletion>;
|
|
135
|
+
startWorkflow(config?: StartWorkflowConfig): Promise<WorkflowCompletion>;
|
|
139
136
|
deinitialize(): Promise<DeinitializeCompletion>;
|
|
140
137
|
/** service commands */
|
|
141
138
|
get version(): string;
|
|
@@ -243,6 +240,11 @@ export declare enum StartSessionError {
|
|
|
243
240
|
TOKEN_ERROR = 3
|
|
244
241
|
}
|
|
245
242
|
|
|
243
|
+
declare type StartWorkflowConfig = {
|
|
244
|
+
metadata?: Record<string, unknown>;
|
|
245
|
+
locale?: string;
|
|
246
|
+
};
|
|
247
|
+
|
|
246
248
|
declare enum TokenInitializeError {
|
|
247
249
|
CONNECTION_ISSUE = 0,
|
|
248
250
|
WORKFLOW_ISSUE = 1
|