youverify-liveness-web 0.1.6 → 0.1.8
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 +1 -1
- package/dist/index.d.ts +0 -5
- package/dist/index.js +1067 -1049
- package/dist/index.umd.cjs +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -135,4 +135,4 @@ The `onSuccess` and `onFailure` callbacks (if supplied) are passed the following
|
|
|
135
135
|
|
|
136
136
|
## Credits
|
|
137
137
|
|
|
138
|
-
This SDK is developed and maintained solely by [Youverify](https://youverify.co)
|
|
138
|
+
This SDK is developed and maintained solely by [Youverify](https://youverify.co)
|
package/dist/index.d.ts
CHANGED
|
@@ -57,15 +57,10 @@ declare class WebSDK {
|
|
|
57
57
|
private namespace;
|
|
58
58
|
private props;
|
|
59
59
|
private presentation;
|
|
60
|
-
private scriptsURLs;
|
|
61
|
-
private addedResources;
|
|
62
60
|
constructor(props: LivenessWebSdkProps);
|
|
63
|
-
private addResources;
|
|
64
|
-
private removeResources;
|
|
65
61
|
private validateOptions;
|
|
66
62
|
start(tasks?: Array<Task>): Promise<void>;
|
|
67
63
|
close(): void;
|
|
68
|
-
terminate(): void;
|
|
69
64
|
}
|
|
70
65
|
export default WebSDK;
|
|
71
66
|
|