@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/README.md +44 -2
- package/dist/{index-DB-ZQIxu.js → index-CHVzQnbK.js} +5423 -5304
- package/dist/{index-BrLMCRlh.js → index-DYpkamdK.js} +5 -5
- package/dist/{index-5bZMcZKY.js → index-Tkn0CcPg.js} +7963 -7973
- package/dist/index.d.ts +3 -4
- package/dist/main.iife.js +80 -79
- package/dist/main.js +1 -1
- package/package.json +1 -1
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 |
|
|
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
|
-
|
|
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
|
|
252
|
+
declare type UrlConfigureCompletion = {
|
|
254
253
|
workflows: string[];
|
|
255
254
|
error?: BaseTokenInitializationError;
|
|
256
255
|
};
|