@regulaforensics/idv-document 3.4.309-nightly → 3.4.310-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 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 {
@@ -51,7 +52,8 @@ declare type DocumentModuleProps = DocumentGalleryProps | DocumentReaderProps;
51
52
 
52
53
  declare type DocumentModulesConfig = {
53
54
  docreader: {
54
- devLicense: string;
55
+ devLicense?: string;
56
+ module?: ModuleType_2;
55
57
  };
56
58
  };
57
59
 
@@ -149,6 +151,11 @@ declare type IdvModuleProps<TModuleProps, TModulesConfig> = {
149
151
  nonce?: string;
150
152
  };
151
153
 
154
+ export declare enum ModuleType {
155
+ BarcodeMRZ = "BarcodeMRZ",
156
+ BoundsLite = "BoundsLite"
157
+ }
158
+
152
159
  declare type PerformType = (typeof PerformTypes)[keyof typeof PerformTypes] | undefined;
153
160
 
154
161
  declare const PerformTypes: {