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