@regulaforensics/idv-capture-web 2.3.125-nightly → 2.3.126-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_V5Xn4R.js → index-B6kx6RhW.js} +1117 -1111
- package/dist/index-CXL6wUv8.js +16317 -0
- package/dist/{index-DZaIN6Vx.js → index-CdNoMprF.js} +1 -1
- package/dist/index.d.ts +7 -2
- package/dist/main.iife.js +66 -66
- package/dist/main.js +1 -1
- package/package.json +1 -1
- package/dist/index-8Tu5BVQa.js +0 -17242
|
@@ -22,7 +22,7 @@ var N1 = (e) => {
|
|
|
22
22
|
throw l;
|
|
23
23
|
}, "return" in r && i("return"), o;
|
|
24
24
|
};
|
|
25
|
-
import { B as cc, r as Bs, j as gE } from "./index-
|
|
25
|
+
import { B as cc, r as Bs, j as gE } from "./index-B6kx6RhW.js";
|
|
26
26
|
var QT = Object.defineProperty, JT = Object.defineProperties, XT = Object.getOwnPropertyDescriptors, RE = Object.getOwnPropertySymbols, $T = Object.prototype.hasOwnProperty, eb = Object.prototype.propertyIsEnumerable, Fo = (e, r) => (r = Symbol[e]) ? r : Symbol.for("Symbol." + e), tb = (e) => {
|
|
27
27
|
throw TypeError(e);
|
|
28
28
|
}, IE = (e, r, t) => r in e ? QT(e, r, { enumerable: !0, configurable: !0, writable: !0, value: t }) : e[r] = t, xe = (e, r) => {
|
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<
|
|
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
|
-
|
|
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
|
};
|