@authme/identity-verification 2.8.3 → 2.8.4

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/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@authme/identity-verification",
3
- "version": "2.8.3",
3
+ "version": "2.8.4",
4
4
  "peerDependencies": {
5
5
  "core-js": "^3.6.0",
6
6
  "lottie-web": "^5.9.2",
7
7
  "rxjs": "^7.4.0",
8
- "@authme/core": "2.8.3",
9
- "@authme/engine": "2.8.3",
10
- "@authme/id-recognition": "2.8.3",
11
- "@authme/util": "2.8.3",
12
- "@authme/liveness": "2.8.3"
8
+ "@authme/core": "2.8.4",
9
+ "@authme/engine": "2.8.4",
10
+ "@authme/id-recognition": "2.8.4",
11
+ "@authme/util": "2.8.4",
12
+ "@authme/liveness": "2.8.4"
13
13
  },
14
14
  "module": "./index.js",
15
15
  "main": "./index.cjs",
@@ -110,6 +110,7 @@ export declare function startOCR(config: {
110
110
  backImage?: string | null;
111
111
  frontCropImage?: string | null;
112
112
  backCropImage?: string | null;
113
+ ocrResultFilds: any[];
113
114
  }>;
114
115
  onDestroy: () => Promise<void>;
115
116
  getCardMatchROI?: () => Promise<Point[]>;
@@ -0,0 +1,13 @@
1
+ export declare const ocrResultModal: (arg: {
2
+ title: string;
3
+ subtitle: string;
4
+ items: any;
5
+ confirmText: string;
6
+ hintText: string;
7
+ countDown1Text: string;
8
+ countDown2Text: string;
9
+ countDownTime: number;
10
+ cancelText?: string;
11
+ onClose?: () => void;
12
+ onConfirm?: (result: any) => void;
13
+ }) => Promise<unknown>;