@authme/engine 2.2.0-rc.8 → 2.2.0-rc.9
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 +6 -0
- package/assets/engine-worker.js +6 -0
- 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 +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [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
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- update engine-lib to 4.8.0 ([6276dd7](https://github.com/AuthMe01/web-client-sdk/commit/6276dd74431a6f9321c2b9b04d02e4bcc0e4230f))
|
|
10
|
+
|
|
5
11
|
## [2.2.0-rc.8](https://github.com/AuthMe01/web-client-sdk/compare/v2.2.0-rc.7...v2.2.0-rc.8) (2022-12-07)
|
|
6
12
|
|
|
7
13
|
### Features
|
package/assets/engine-worker.js
CHANGED
|
@@ -342,6 +342,12 @@
|
|
|
342
342
|
self.Fas.instance.setStage(stageList);
|
|
343
343
|
}
|
|
344
344
|
},
|
|
345
|
+
getStageParams({ stageIndex }) {
|
|
346
|
+
return self.Fas.instance.getStageParams(stageIndex);
|
|
347
|
+
},
|
|
348
|
+
setStageParams({ stageIndex, value }) {
|
|
349
|
+
self.Fas.instance.setStageParams(value, stageIndex);
|
|
350
|
+
},
|
|
345
351
|
recognition: function (params) {
|
|
346
352
|
const result = self.Base.recognition(self.Fas, params);
|
|
347
353
|
if (result) {
|