@getyoti/react-face-capture 2.0.0-beta.1 → 2.0.0
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 +19 -0
- package/README.md +17 -11
- package/index.js +7 -7
- package/index.js.LICENSE.txt +19 -17
- package/package.json +2 -2
- package/vanilla/index.js +11 -11
- package/vanilla/index.js.LICENSE.txt +1 -1
- package/vanilla/index.js.map +1 -1
package/index.js.LICENSE.txt
CHANGED
|
@@ -215,35 +215,37 @@ SOFTWARE.
|
|
|
215
215
|
|
|
216
216
|
|
|
217
217
|
Name: axios
|
|
218
|
-
Version:
|
|
218
|
+
Version: 1.6.2
|
|
219
219
|
License: MIT
|
|
220
220
|
Private: false
|
|
221
221
|
Description: Promise based HTTP client for the browser and node.js
|
|
222
222
|
Repository: https://github.com/axios/axios.git
|
|
223
223
|
Homepage: https://axios-http.com
|
|
224
224
|
Author: Matt Zabriskie
|
|
225
|
+
Contributors:
|
|
226
|
+
Matt Zabriskie (https://github.com/mzabriskie)
|
|
227
|
+
Nick Uraltsev (https://github.com/nickuraltsev)
|
|
228
|
+
Jay (https://github.com/jasonsaayman)
|
|
229
|
+
Dmitriy Mozgovoy (https://github.com/DigitalBrainJS)
|
|
230
|
+
Emily Morehouse (https://github.com/emilyemorehouse)
|
|
231
|
+
Rubén Norte (https://github.com/rubennorte)
|
|
232
|
+
Justin Beckwith (https://github.com/JustinBeckwith)
|
|
233
|
+
Martti Laine (https://github.com/codeclown)
|
|
234
|
+
Xianming Zhong (https://github.com/chinesedfan)
|
|
235
|
+
Rikki Gibson (https://github.com/RikkiGibson)
|
|
236
|
+
Remco Haszing (https://github.com/remcohaszing)
|
|
237
|
+
Yasu Flores (https://github.com/yasuf)
|
|
238
|
+
Ben Carp (https://github.com/carpben)
|
|
225
239
|
License Copyright:
|
|
226
240
|
===
|
|
227
241
|
|
|
228
|
-
Copyright (c) 2014-present Matt Zabriskie
|
|
242
|
+
# Copyright (c) 2014-present Matt Zabriskie & Collaborators
|
|
229
243
|
|
|
230
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
231
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
232
|
-
in the Software without restriction, including without limitation the rights
|
|
233
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
234
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
235
|
-
furnished to do so, subject to the following conditions:
|
|
244
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
236
245
|
|
|
237
|
-
The above copyright notice and this permission notice shall be included in
|
|
238
|
-
all copies or substantial portions of the Software.
|
|
246
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
239
247
|
|
|
240
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
241
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
242
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
243
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
244
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
245
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
246
|
-
THE SOFTWARE.
|
|
248
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
247
249
|
|
|
248
250
|
|
|
249
251
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getyoti/react-face-capture",
|
|
3
|
-
"version": "2.0.0
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Face capture module to collect picture and data for Yoti AI API",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"typings": "index.d.ts",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@lingui/react": "4.1.2",
|
|
11
11
|
"@xstate/react": "3.2.2",
|
|
12
|
-
"axios": "
|
|
12
|
+
"axios": "1.6.2",
|
|
13
13
|
"classnames": "2.2.6",
|
|
14
14
|
"face-api.js": "0.22.0",
|
|
15
15
|
"prop-types": "15.7.2",
|