@authme/engine 2.2.0-rc.9 → 2.2.1-rc.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/CHANGELOG.md +42 -0
- package/assets/engine-worker.js +292 -378
- package/assets/ml_engine_web.js +1 -1
- package/assets/ml_engine_web.simd.js +1 -1
- package/assets/ml_engine_web.simd.wasm +0 -0
- package/assets/ml_engine_web.wasm +0 -0
- package/assets/ml_engine_web_version.txt +1 -1
- package/package.json +4 -3
- package/src/lib/engine.d.ts +22 -13
- package/src/lib/engine.js +173 -80
- package/src/lib/engine.js.map +1 -1
- package/src/lib/enum/auth.enum.d.ts +2 -2
- package/src/lib/enum/auth.enum.js +5 -5
- package/src/lib/enum/auth.enum.js.map +1 -1
- package/src/lib/enum/fas-recognition.enum.d.ts +46 -0
- package/src/lib/enum/fas-recognition.enum.js +56 -0
- package/src/lib/enum/fas-recognition.enum.js.map +1 -0
- package/src/lib/enum/id-recognition.enum.d.ts +64 -0
- package/src/lib/enum/id-recognition.enum.js +76 -0
- package/src/lib/enum/id-recognition.enum.js.map +1 -0
- package/src/lib/enum/index.d.ts +2 -0
- package/src/lib/enum/index.js +2 -0
- package/src/lib/enum/index.js.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,48 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [2.2.1-rc.1](https://github.com/AuthMe01/web-client-sdk/compare/v2.2.1-rc.0...v2.2.1-rc.1) (2022-12-28)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- upgrade engine to 5.1.0 ([26e2128](https://github.com/AuthMe01/web-client-sdk/commit/26e2128026edf36c4b54efdf61b339a2f755a528))
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
- inconsistency enum (or remove unused) ([b716f14](https://github.com/AuthMe01/web-client-sdk/commit/b716f142fa20d2eebf0af66ff27f858ef1e825b0))
|
|
14
|
+
|
|
15
|
+
## [2.2.1-rc.0](https://github.com/AuthMe01/web-client-sdk/compare/v2.2.0...v2.2.1-rc.0) (2022-12-22)
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
- implement preloadBackground feature ([4b58a16](https://github.com/AuthMe01/web-client-sdk/commit/4b58a16dbdd506d48ce9f9671d8154997f4b9839))
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
- engine destroy fail problem ([e2ffc84](https://github.com/AuthMe01/web-client-sdk/commit/e2ffc843cafb2c414535be6d735957e1a04b7146))
|
|
24
|
+
|
|
25
|
+
## [2.2.0](https://github.com/AuthMe01/web-client-sdk/compare/v2.2.0-rc.13...v2.2.0) (2022-12-19)
|
|
26
|
+
|
|
27
|
+
## [2.2.0-rc.13](https://github.com/AuthMe01/web-client-sdk/compare/v2.2.0-rc.12...v2.2.0-rc.13) (2022-12-19)
|
|
28
|
+
|
|
29
|
+
### Bug Fixes
|
|
30
|
+
|
|
31
|
+
- 1.close btn add stop sdk method. 2.implement loading-sdk lottie. 3.delete vehicles license item ([83738bd](https://github.com/AuthMe01/web-client-sdk/commit/83738bd1630c539157222bc7a909962cc65696ae))
|
|
32
|
+
|
|
33
|
+
## [2.2.0-rc.12](https://github.com/AuthMe01/web-client-sdk/compare/v2.2.0-rc.11...v2.2.0-rc.12) (2022-12-16)
|
|
34
|
+
|
|
35
|
+
## [2.2.0-rc.11](https://github.com/AuthMe01/web-client-sdk/compare/v2.2.0-rc.10...v2.2.0-rc.11) (2022-12-16)
|
|
36
|
+
|
|
37
|
+
## [2.2.0-rc.10](https://github.com/AuthMe01/web-client-sdk/compare/v2.2.0-rc.9...v2.2.0-rc.10) (2022-12-15)
|
|
38
|
+
|
|
39
|
+
### Features
|
|
40
|
+
|
|
41
|
+
- improve model loading performance ([0021a16](https://github.com/AuthMe01/web-client-sdk/commit/0021a164074bd9e4a219db1ef8e25932d3786ea8))
|
|
42
|
+
|
|
43
|
+
### Bug Fixes
|
|
44
|
+
|
|
45
|
+
- waitTime problem ([5805979](https://github.com/AuthMe01/web-client-sdk/commit/5805979180cc009e0c82bba2b2094e70db6bf1bf))
|
|
46
|
+
|
|
5
47
|
## [2.2.0-rc.9](https://github.com/AuthMe01/web-client-sdk/compare/v2.2.0-rc.8...v2.2.0-rc.9) (2022-12-09)
|
|
6
48
|
|
|
7
49
|
### Features
|