@regulaforensics/idv-document 3.2.300-nightly → 3.3.302-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 +9 -1
- package/dist/main.iife.js +26 -26
- package/dist/main.js +6597 -6563
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { InternalScenarios } from '@regulaforensics/vp-frontend-document-components';
|
|
2
2
|
import { LitElement } from 'lit';
|
|
3
3
|
import { MirrorType } from '@regulaforensics/vp-frontend-document-components';
|
|
4
|
+
import { ModuleType as ModuleType_2 } from '@regulaforensics/vp-frontend-document-components';
|
|
4
5
|
import { TemplateResult } from 'lit-html';
|
|
5
6
|
|
|
6
7
|
declare abstract class BaseModule<TModuleProps = unknown, TModulesConfig = unknown> extends HTMLElement {
|
|
@@ -25,6 +26,7 @@ declare type DocumentGalleryProps = {
|
|
|
25
26
|
sessionId?: string;
|
|
26
27
|
serviceToken?: string;
|
|
27
28
|
locale?: string;
|
|
29
|
+
stepType?: string;
|
|
28
30
|
};
|
|
29
31
|
|
|
30
32
|
export declare class DocumentIdv extends LitElement implements BaseModule<DocumentModuleProps, DocumentModulesConfig> {
|
|
@@ -50,7 +52,8 @@ declare type DocumentModuleProps = DocumentGalleryProps | DocumentReaderProps;
|
|
|
50
52
|
|
|
51
53
|
declare type DocumentModulesConfig = {
|
|
52
54
|
docreader: {
|
|
53
|
-
devLicense
|
|
55
|
+
devLicense?: string;
|
|
56
|
+
module?: ModuleType_2;
|
|
54
57
|
};
|
|
55
58
|
};
|
|
56
59
|
|
|
@@ -148,6 +151,11 @@ declare type IdvModuleProps<TModuleProps, TModulesConfig> = {
|
|
|
148
151
|
nonce?: string;
|
|
149
152
|
};
|
|
150
153
|
|
|
154
|
+
export declare enum ModuleType {
|
|
155
|
+
BarcodeMRZ = "BarcodeMRZ",
|
|
156
|
+
BoundsLite = "BoundsLite"
|
|
157
|
+
}
|
|
158
|
+
|
|
151
159
|
declare type PerformType = (typeof PerformTypes)[keyof typeof PerformTypes] | undefined;
|
|
152
160
|
|
|
153
161
|
declare const PerformTypes: {
|