@regulaforensics/idv-capture-web 3.2.256-nightly → 3.2.258-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.ts +10 -1
- package/dist/main.iife.js +12 -12
- package/dist/main.js +545 -530
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -185,6 +185,7 @@ declare type CurrentScreenConfig = {
|
|
|
185
185
|
properties?: SessionPropertiesItem[];
|
|
186
186
|
sessionId?: string;
|
|
187
187
|
serviceToken?: string;
|
|
188
|
+
locale?: string;
|
|
188
189
|
} & Record<string, any>;
|
|
189
190
|
|
|
190
191
|
export declare enum DeinitializationError {
|
|
@@ -261,7 +262,12 @@ declare type IdvBusinessLogicControllerProps = {
|
|
|
261
262
|
_getSessionStateNextStepConditionResult: () => Promise<GetSessionStateNextStepConditionResult>;
|
|
262
263
|
_findStepById: (stepId: string) => WorkflowStep | null;
|
|
263
264
|
pushStepWaitNextStepAndSet: (data: Record<string, any>, type?: PerformType) => void;
|
|
264
|
-
setNextStep: (
|
|
265
|
+
setNextStep: (props: {
|
|
266
|
+
workflow: Workflow;
|
|
267
|
+
properties: SessionPropertiesItem[];
|
|
268
|
+
nextStepId: string;
|
|
269
|
+
locale: string;
|
|
270
|
+
}) => void;
|
|
265
271
|
onChangeScreen: (stepId: string | null) => void;
|
|
266
272
|
deinitializationIdv: () => Promise<{
|
|
267
273
|
error?: any;
|
|
@@ -520,6 +526,8 @@ declare type IdvStoreProps = {
|
|
|
520
526
|
resetProps: () => void;
|
|
521
527
|
startConfig: StartConfig;
|
|
522
528
|
setStartConfig: (startConfig: StartConfig) => void;
|
|
529
|
+
locale: string;
|
|
530
|
+
setLocale: (locale: string) => void;
|
|
523
531
|
};
|
|
524
532
|
|
|
525
533
|
export declare class IdvWebComponent extends LitElement {
|
|
@@ -611,6 +619,7 @@ declare type SessionData = {
|
|
|
611
619
|
workflow: Workflow;
|
|
612
620
|
properties: SessionPropertiesItem[];
|
|
613
621
|
isProcessingFiles: boolean;
|
|
622
|
+
locale: string;
|
|
614
623
|
};
|
|
615
624
|
|
|
616
625
|
export declare enum SessionError {
|