@regulaforensics/idv-capture-web 3.2.283 → 3.2.285-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 -5
- package/dist/main.iife.js +17 -17
- package/dist/main.js +2248 -2203
- 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 {
|
|
@@ -291,7 +292,6 @@ export declare const IdvEventTypesEnum: {
|
|
|
291
292
|
declare class IdvFetchService {
|
|
292
293
|
private _connectionTokenExpirationBufferMs;
|
|
293
294
|
private _origin;
|
|
294
|
-
private _locale;
|
|
295
295
|
private _workflowId;
|
|
296
296
|
private _session;
|
|
297
297
|
private _apiKeyAuthToken;
|
|
@@ -564,8 +564,7 @@ export declare class IdvWebComponent extends LitElement {
|
|
|
564
564
|
export declare type InitConfig = {
|
|
565
565
|
modulesConfig?: {
|
|
566
566
|
docreader?: {
|
|
567
|
-
devLicense
|
|
568
|
-
module?: 'BoundsLite' | 'BarcodeMRZ';
|
|
567
|
+
devLicense: string;
|
|
569
568
|
};
|
|
570
569
|
face?: Record<string, any>;
|
|
571
570
|
};
|
|
@@ -590,9 +589,9 @@ declare type LoadedModule = {
|
|
|
590
589
|
|
|
591
590
|
export declare type ModuleClass<TModuleProps = unknown, TModulesConfig = unknown> = IdvModuleStaticMethods & (new (...args: any[]) => BaseModule<TModuleProps, TModulesConfig>);
|
|
592
591
|
|
|
593
|
-
declare type PerformType = (typeof
|
|
592
|
+
declare type PerformType = (typeof PerformTypes)[keyof typeof PerformTypes] | undefined;
|
|
594
593
|
|
|
595
|
-
declare const
|
|
594
|
+
declare const PerformTypes: {
|
|
596
595
|
readonly FORM: "form";
|
|
597
596
|
readonly DATA: "data";
|
|
598
597
|
};
|