@regulaforensics/idv-document 3.2.289-nightly → 3.2.290
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 -4
- package/dist/main.iife.js +140 -50
- package/dist/main.js +18224 -14742
- package/package.json +2 -2
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 {
|
|
@@ -50,7 +51,8 @@ declare type DocumentModuleProps = DocumentGalleryProps | DocumentReaderProps;
|
|
|
50
51
|
|
|
51
52
|
declare type DocumentModulesConfig = {
|
|
52
53
|
docreader: {
|
|
53
|
-
devLicense
|
|
54
|
+
devLicense?: string;
|
|
55
|
+
module?: ModuleType_2;
|
|
54
56
|
};
|
|
55
57
|
};
|
|
56
58
|
|
|
@@ -135,7 +137,6 @@ declare type DocumentReaderProps = {
|
|
|
135
137
|
serviceToken?: string;
|
|
136
138
|
locale?: string;
|
|
137
139
|
backgroundColor?: string;
|
|
138
|
-
stepType?: string;
|
|
139
140
|
};
|
|
140
141
|
|
|
141
142
|
declare type IdvModuleProps<TModuleProps, TModulesConfig> = {
|
|
@@ -147,9 +148,14 @@ declare type IdvModuleProps<TModuleProps, TModulesConfig> = {
|
|
|
147
148
|
nonce?: string;
|
|
148
149
|
};
|
|
149
150
|
|
|
150
|
-
declare
|
|
151
|
+
export declare enum ModuleType {
|
|
152
|
+
BarcodeMRZ = "BarcodeMRZ",
|
|
153
|
+
BoundsLite = "BoundsLite"
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
declare type PerformType = (typeof performType)[keyof typeof performType] | undefined;
|
|
151
157
|
|
|
152
|
-
declare const
|
|
158
|
+
declare const performType: {
|
|
153
159
|
readonly FORM: "form";
|
|
154
160
|
readonly DATA: "data";
|
|
155
161
|
};
|