@regulaforensics/vp-frontend-face-components 8.4.2390-nightly → 8.4.2392-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/README.md +2 -2
- package/dist/index.d.ts +7 -3
- package/dist/main.iife.js +5 -5
- package/dist/main.js +11 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -221,8 +221,8 @@ Here are all the available settings:
|
|
|
221
221
|
| `tenant` | A label used to group transactions by specific customers, applications, or other criteria. | `string` | `undefined` | tenant | `face-liveness`, `face-enroll`, `face-verify` |
|
|
222
222
|
| `env` | A label used to differentiate transactions by development stages. | `string` | `undefined` | env | `face-liveness`, `face-enroll`, `face-verify` |
|
|
223
223
|
| `captureButton` | Whether to enable user-triggered capture. Shows the **Capture** button, desktop layout height increases accordingly. When enabled, the shot is taken only on user action. When `livenessType` is set to `3` (passive liveness with blink), `captureButton` is not supported. | `boolean` | `false` | `true`, `false` | `face-liveness`, `face-capture`, `face-enroll`, `face-verify` |
|
|
224
|
-
| `enroll` | Person enrollment configuration. Required for `face-enroll`.
|
|
225
|
-
| `verify` | Person verification configuration. Required for `face-verify`.
|
|
224
|
+
| `enroll` | Person enrollment configuration. Required for `face-enroll`. For details, see <a href="https://docs.regulaforensics.com/develop/face-sdk/web-service/development/usage/enroll-verify/" target="_blank">Enroll and Verify</a>. | `object` | `undefined` | object with `person` and optional `search` | `face-enroll` |
|
|
225
|
+
| `verify` | Person verification configuration. Required for `face-verify`. For details, see <a href="https://docs.regulaforensics.com/develop/face-sdk/web-service/development/usage/enroll-verify/" target="_blank">Enroll and Verify</a>. | `object` | `undefined` | object with `personId` and optional `threshold` | `face-verify` |
|
|
226
226
|
|
|
227
227
|
## Customization
|
|
228
228
|
|
package/dist/index.d.ts
CHANGED
|
@@ -391,10 +391,14 @@ declare type SearchResult = {
|
|
|
391
391
|
};
|
|
392
392
|
|
|
393
393
|
declare type VerifyConfig = {
|
|
394
|
+
/**
|
|
395
|
+
* The person ID.
|
|
396
|
+
*/
|
|
394
397
|
personId: string;
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
+
/**
|
|
399
|
+
* The similarity threshold.
|
|
400
|
+
* Default: 0.8
|
|
401
|
+
*/
|
|
398
402
|
threshold?: number;
|
|
399
403
|
};
|
|
400
404
|
|