@regulaforensics/idv-capture-web 3.2.283 → 3.2.284-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 +4 -4
- package/dist/main.iife.js +16 -16
- package/dist/main.js +446 -443
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -186,6 +186,7 @@ declare type CurrentScreenConfig = {
|
|
|
186
186
|
sessionId?: string;
|
|
187
187
|
serviceToken?: string;
|
|
188
188
|
locale?: string;
|
|
189
|
+
stepType?: string;
|
|
189
190
|
} & Record<string, any>;
|
|
190
191
|
|
|
191
192
|
export declare enum DeinitializationError {
|
|
@@ -564,8 +565,7 @@ export declare class IdvWebComponent extends LitElement {
|
|
|
564
565
|
export declare type InitConfig = {
|
|
565
566
|
modulesConfig?: {
|
|
566
567
|
docreader?: {
|
|
567
|
-
devLicense
|
|
568
|
-
module?: 'BoundsLite' | 'BarcodeMRZ';
|
|
568
|
+
devLicense: string;
|
|
569
569
|
};
|
|
570
570
|
face?: Record<string, any>;
|
|
571
571
|
};
|
|
@@ -590,9 +590,9 @@ declare type LoadedModule = {
|
|
|
590
590
|
|
|
591
591
|
export declare type ModuleClass<TModuleProps = unknown, TModulesConfig = unknown> = IdvModuleStaticMethods & (new (...args: any[]) => BaseModule<TModuleProps, TModulesConfig>);
|
|
592
592
|
|
|
593
|
-
declare type PerformType = (typeof
|
|
593
|
+
declare type PerformType = (typeof PerformTypes)[keyof typeof PerformTypes] | undefined;
|
|
594
594
|
|
|
595
|
-
declare const
|
|
595
|
+
declare const PerformTypes: {
|
|
596
596
|
readonly FORM: "form";
|
|
597
597
|
readonly DATA: "data";
|
|
598
598
|
};
|