@regulaforensics/vp-frontend-document-components 7.2.1606 → 7.2.1607-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/lib/index.d.ts CHANGED
@@ -417,6 +417,12 @@ export interface IDocumentReader extends ICameraSnapshot {
417
417
  'capture-button'?: boolean;
418
418
  }
419
419
 
420
+ export interface ILogger {
421
+ logListener: (log: string) => void;
422
+ }
423
+
424
+ declare const Logger: ILogger;
425
+
420
426
  export type DocumentReaderDetailType = DetailEvent<DocumentEventActions, DocumentReaderResponseType>;
421
427
  export type CameraSnapshotDetailType = DetailEvent<DocumentEventActions, CameraSnapshotResponseType>;
422
428
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@regulaforensics/vp-frontend-document-components",
3
- "version": "7.2.1606",
3
+ "version": "7.2.1607-nightly",
4
4
  "description": "Regula framework agnostic web components to work with webcamera",
5
5
  "types": "lib/index.d.ts",
6
6
  "main": "dist/main.js",
@@ -18,6 +18,6 @@
18
18
  "test": "jest --testPathPattern=src/tests"
19
19
  },
20
20
  "dependencies": {
21
- "@regulaforensics/document-reader-webclient": "^7.2.2"
21
+ "@regulaforensics/document-reader-webclient": "^7.2.2-beta.0"
22
22
  }
23
23
  }