@regulaforensics/idv-capture-web 3.6.360-nightly → 3.6.362-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 -3
- package/dist/main.iife.js +8 -8
- package/dist/main.js +812 -812
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -276,7 +276,7 @@ declare type IdvBusinessLogicControllerProps = {
|
|
|
276
276
|
workflow: Workflow;
|
|
277
277
|
properties: SessionPropertiesItem[];
|
|
278
278
|
nextStepId: string;
|
|
279
|
-
locale
|
|
279
|
+
locale?: string;
|
|
280
280
|
}) => Promise<void>;
|
|
281
281
|
prepareScreenConfigAndShowStep: (stepId: string | null) => Promise<void>;
|
|
282
282
|
deinitializationIdv: () => Promise<{
|
|
@@ -652,7 +652,7 @@ declare type SessionData = {
|
|
|
652
652
|
workflow: Workflow;
|
|
653
653
|
properties: SessionPropertiesItem[];
|
|
654
654
|
isProcessingFiles: boolean;
|
|
655
|
-
locale
|
|
655
|
+
locale?: string;
|
|
656
656
|
};
|
|
657
657
|
|
|
658
658
|
export declare enum SessionError {
|
|
@@ -671,7 +671,7 @@ declare class SessionModel implements SessionData {
|
|
|
671
671
|
properties: PropertyModel[];
|
|
672
672
|
isErrorFiles: boolean;
|
|
673
673
|
isProcessingFiles: boolean;
|
|
674
|
-
locale
|
|
674
|
+
locale?: string;
|
|
675
675
|
shortId: string;
|
|
676
676
|
deviceId?: string;
|
|
677
677
|
deviceMetadata?: object;
|