@regulaforensics/idv-capture-web 3.2.268-nightly → 3.2.269-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/dist/index.d.ts +3 -1
- package/dist/main.iife.js +12 -12
- package/dist/main.js +767 -757
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -376,7 +376,7 @@ declare class IdvFetchService {
|
|
|
376
376
|
items: Workflow[];
|
|
377
377
|
};
|
|
378
378
|
} | FetchErrorResult>;
|
|
379
|
-
getWorkflow(workflowId: string): Promise<{
|
|
379
|
+
getWorkflow(workflowId: string, sessionIdFromUrl?: string | null): Promise<{
|
|
380
380
|
code: FetchResultCode.SUCCESS;
|
|
381
381
|
data: Workflow;
|
|
382
382
|
} | FetchErrorResult>;
|
|
@@ -465,6 +465,7 @@ export declare type IdvModuleProps<TModuleProps, TModulesConfig> = {
|
|
|
465
465
|
modulesConfig?: TModulesConfig;
|
|
466
466
|
perform: (data: any, type?: PerformType) => void;
|
|
467
467
|
idvEventListener: (module: string, data: any) => void;
|
|
468
|
+
nonce?: string;
|
|
468
469
|
};
|
|
469
470
|
|
|
470
471
|
export declare interface IdvModuleStaticMethods {
|
|
@@ -547,6 +548,7 @@ export declare class IdvWebComponent extends LitElement {
|
|
|
547
548
|
isProcessing: boolean;
|
|
548
549
|
loadedModules: [] | LoadedModule[];
|
|
549
550
|
modulesConfig: Record<string, any>;
|
|
551
|
+
nonce: string | undefined;
|
|
550
552
|
connectedCallback(): void;
|
|
551
553
|
_listenerFromModule: (module: string, data: any) => void;
|
|
552
554
|
_isProcessingCallback: (isProcessing: boolean) => void;
|