@regulaforensics/idv-capture-web 0.1.86-nightly → 0.1.87-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-DaotpnR6.js → index-B4tV5Z25.js} +1 -1
- package/dist/{index-BqVdN1BB.js → index-Ce9SnvVJ.js} +5793 -5605
- package/dist/{index-ZUEKfoeR.js → index-GAo1QwPj.js} +1 -1
- package/dist/index.d.ts +5 -2
- package/dist/main.iife.js +65 -64
- package/dist/main.js +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { B as ic, r as Po, j as GE } from "./index-
|
|
1
|
+
import { B as ic, r as Po, j as GE } from "./index-Ce9SnvVJ.js";
|
|
2
2
|
var qA = Object.defineProperty, XA = Object.defineProperties, QA = Object.getOwnPropertyDescriptors, ZE = Object.getOwnPropertySymbols, $A = Object.prototype.hasOwnProperty, JA = Object.prototype.propertyIsEnumerable, zE = (e, t, n) => t in e ? qA(e, t, { enumerable: !0, configurable: !0, writable: !0, value: n }) : e[t] = n, q = (e, t) => {
|
|
3
3
|
for (var n in t || (t = {}))
|
|
4
4
|
$A.call(t, n) && zE(e, n, t[n]);
|
package/dist/index.d.ts
CHANGED
|
@@ -102,6 +102,8 @@ export declare class IdvIntegrationService {
|
|
|
102
102
|
error?: BaseInitializationError;
|
|
103
103
|
}>;
|
|
104
104
|
setNonce(id: string): void;
|
|
105
|
+
setSessionRestoreMode(isEnabled: boolean): void;
|
|
106
|
+
get currentSessionId(): string | null;
|
|
105
107
|
getWorkFlows(params?: WorkflowListRequest): Promise<WorkflowListCompletion>;
|
|
106
108
|
prepareWorkflow({ workfowId }: {
|
|
107
109
|
workfowId: string;
|
|
@@ -131,6 +133,9 @@ export declare enum IdvServiceErrors {
|
|
|
131
133
|
|
|
132
134
|
export declare enum IdvServiceMessages {
|
|
133
135
|
INITIALIZED = "INITIALIZED",
|
|
136
|
+
DID_START_SESSION = "DID_START_SESSION",
|
|
137
|
+
DID_END_SESSION = "DID_END_SESSION",
|
|
138
|
+
DID_START_RESTORE_SESSION = "DID_START_RESTORE_SESSION",
|
|
134
139
|
READY_TO_PLAY = "READY_TO_PLAY",
|
|
135
140
|
CONNECT_TO_IDV = "CONNECT_TO_IDV",
|
|
136
141
|
START_SESSION = "START_SESSION",
|
|
@@ -142,10 +147,8 @@ export declare enum IdvServiceMessages {
|
|
|
142
147
|
export declare class IdvWebComponent extends HTMLElement {
|
|
143
148
|
private _root;
|
|
144
149
|
private _mounted;
|
|
145
|
-
private _nonce?;
|
|
146
150
|
constructor();
|
|
147
151
|
static get observedAttributes(): Array<string>;
|
|
148
|
-
private setNonce;
|
|
149
152
|
connectedCallback(): void;
|
|
150
153
|
get version(): string;
|
|
151
154
|
private render;
|