uqudosdk-web 3.3.2 → 3.3.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/CHANGELOG.md +8 -0
- package/index.d.ts +3 -0
- package/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## 3.3.4
|
|
2
|
+
|
|
3
|
+
- Added an option to set the miniumum match level for facial recognition
|
|
4
|
+
|
|
5
|
+
## 3.3.3
|
|
6
|
+
|
|
7
|
+
- Corrected an issue where, on specific devices, the default selection of the rear camera led to capturing blurry images when taking a photo
|
|
8
|
+
|
|
1
9
|
## 3.3.2
|
|
2
10
|
|
|
3
11
|
- Added scan support for Iraqi ID
|
package/index.d.ts
CHANGED
|
@@ -259,6 +259,7 @@ export type IEnrollmentConfig = IConfigProcess &
|
|
|
259
259
|
enableFacialRecognition?: boolean;
|
|
260
260
|
enrollFace?: boolean;
|
|
261
261
|
maxAttempts?: number;
|
|
262
|
+
minimumMatchLevel?: number;
|
|
262
263
|
};
|
|
263
264
|
lookup?: {
|
|
264
265
|
enableLookup: boolean;
|
|
@@ -281,6 +282,7 @@ export type IFaceSessionConfig = IConfigProcess &
|
|
|
281
282
|
IObservableFunctionsType<ReturnFaceSessionType> & {
|
|
282
283
|
sessionId: string;
|
|
283
284
|
maxAttempts?: number;
|
|
285
|
+
minimumMatchLevel?: number;
|
|
284
286
|
};
|
|
285
287
|
|
|
286
288
|
// ---------- Account Recovery type --------- //
|
|
@@ -291,4 +293,5 @@ export type IAccountRecoveryConfig = IConfigProcess &
|
|
|
291
293
|
IObservableFunctionsType<ReturnAccountRecoveryType> & {
|
|
292
294
|
enrollmentIdentifier: string;
|
|
293
295
|
maxAttempts?: number;
|
|
296
|
+
minimumMatchLevel?: number;
|
|
294
297
|
};
|