@authme/identity-verification 2.8.41 → 2.8.42

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.41",
3
+ "version": "2.8.42",
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.41",
9
- "@authme/engine": "2.8.41",
10
- "@authme/id-recognition": "2.8.41",
11
- "@authme/liveness": "2.8.41",
12
- "@authme/util": "2.8.41"
8
+ "@authme/core": "2.8.42",
9
+ "@authme/engine": "2.8.42",
10
+ "@authme/id-recognition": "2.8.42",
11
+ "@authme/liveness": "2.8.42",
12
+ "@authme/util": "2.8.42"
13
13
  },
14
14
  "module": "./index.js",
15
15
  "main": "./index.cjs",
@@ -1,5 +1,4 @@
1
1
  import { FasResult, LivenessInitResponse } from '@authme/liveness';
2
- import { Observable } from 'rxjs';
3
2
  import { CanvasSizeInfo } from '@authme/util';
4
3
  import { LivenessConfig } from '../interface/index';
5
4
  export declare function startLiveness(config: {
@@ -21,4 +20,4 @@ export declare function startLiveness(config: {
21
20
  x: number;
22
21
  y: number;
23
22
  }>;
24
- }): Promise<Observable<unknown>>;
23
+ }): Promise<import("rxjs").Observable<unknown>>;
@@ -113,6 +113,6 @@ export declare function startOCR(config: {
113
113
  ocrResultFilds: any[];
114
114
  }>;
115
115
  onDestroy: () => Promise<void>;
116
- getCardMatchROI?: () => Promise<Point[]>;
116
+ getCardMatchROI?: (stage?: string) => Promise<Point[]>;
117
117
  getAntiFraudStageList: () => EAuthMeIDCardAntiFraudStage[];
118
118
  }): Promise<Observable<AuthmeOCRResult>>;