@regulaforensics/vp-frontend-face-components 3.0.0 → 3.0.1
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 +17 -16
- package/dist/main.js +1 -1
- package/dist/main.js.LICENSE.txt +0 -10
- package/lib/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/main.js.LICENSE.txt
CHANGED
|
@@ -59,13 +59,3 @@
|
|
|
59
59
|
* This source code is licensed under the MIT license found in the
|
|
60
60
|
* LICENSE file in the root directory of this source tree.
|
|
61
61
|
*/
|
|
62
|
-
|
|
63
|
-
/**
|
|
64
|
-
@license @nocompile
|
|
65
|
-
Copyright (c) 2018 The Polymer Project Authors. All rights reserved.
|
|
66
|
-
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
|
|
67
|
-
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
|
|
68
|
-
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
|
|
69
|
-
Code distributed by Google as part of the polymer project is also
|
|
70
|
-
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
|
71
|
-
*/
|
package/lib/index.d.ts
CHANGED
|
@@ -197,9 +197,12 @@ interface FaceDetectionSettings {
|
|
|
197
197
|
finishScreen?: boolean;
|
|
198
198
|
startScreen?: boolean;
|
|
199
199
|
customization?: ComputedCss;
|
|
200
|
+
nonce?: string;
|
|
201
|
+
holdStillDuration?: number;
|
|
202
|
+
timeoutInterval?: number;
|
|
200
203
|
}
|
|
201
204
|
|
|
202
|
-
interface FaceLivenessSettings extends FaceDetectionSettings {
|
|
205
|
+
interface FaceLivenessSettings extends Omit<FaceDetectionSettings, 'holdStillDuration' | 'timeoutInterval'> {
|
|
203
206
|
url?: string;
|
|
204
207
|
deviceOrientation?: boolean;
|
|
205
208
|
videoRecording?: boolean;
|
package/package.json
CHANGED