@regulaforensics/vp-frontend-document-components 8.3.2394-rc → 8.3.2395-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 +7 -1
- package/dist/main.iife.js +23 -23
- package/dist/main.js +2923 -2915
- package/package.json +3 -4
package/dist/index.d.ts
CHANGED
|
@@ -247,7 +247,8 @@ export declare class DocumentReaderService {
|
|
|
247
247
|
private sendMessage;
|
|
248
248
|
private prepare;
|
|
249
249
|
initialize(initData?: {
|
|
250
|
-
license
|
|
250
|
+
license?: string;
|
|
251
|
+
module?: ModuleType;
|
|
251
252
|
}): Promise<License>;
|
|
252
253
|
private doInitialize;
|
|
253
254
|
private doProcess;
|
|
@@ -473,6 +474,11 @@ export declare enum MirrorType {
|
|
|
473
474
|
noMirror = "noMirror"
|
|
474
475
|
}
|
|
475
476
|
|
|
477
|
+
export declare enum ModuleType {
|
|
478
|
+
BarcodeMRZ = "BarcodeMRZ",
|
|
479
|
+
BoundsLite = "BoundsLite"
|
|
480
|
+
}
|
|
481
|
+
|
|
476
482
|
export declare interface NewTransaction {
|
|
477
483
|
ContainerList: ContainerList;
|
|
478
484
|
TransactionInfo: TransactionInfo;
|