uqudosdk-web 3.3.3 → 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 +4 -0
- package/index.d.ts +3 -0
- package/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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
|
};
|