bry-biometric-collector 2.2.5 → 2.2.6-RC01
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 +4 -1
- package/dist/CameraBtn_ee98445d_2.2.6-RC01.js +636 -0
- package/dist/DocumentCollector_a9816872_2.2.6-RC01.js +1302 -0
- package/dist/FaceCollector_95be2c6f_2.2.6-RC01.js +2052 -0
- package/dist/bry-biometric-collector-main.js +2 -1
- package/dist/{en-us_46223587_2.2.5.js → en-us_55a6748c_2.2.6-RC01.js} +11 -8
- package/dist/face_api_0e3ce8c8_2.2.6-RC01.js +36289 -0
- package/dist/fingersApi_f6c7968d_2.2.6-RC01.js +147 -0
- package/dist/index-no-detector_acb82d83_2.2.6-RC01.js +10396 -0
- package/dist/index.js +2 -1
- package/dist/main_c3441765_2.2.6-RC01.js +25488 -0
- package/dist/{pt-br_7b1f22cd_2.2.5.js → pt-br_083e1c6a_2.2.6-RC01.js} +9 -6
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/CameraBtn_dd04ed32_2.2.5.js +0 -509
- package/dist/DocumentCollector_673d756a_2.2.5.js +0 -1037
- package/dist/FaceCollector_5aca6122_2.2.5.js +0 -1641
- package/dist/face_api_0e3ce8c8_2.2.5.js +0 -36288
- package/dist/fingersApi_91712b67_2.2.5.js +0 -146
- package/dist/index-no-detector_acb82d83_2.2.5.js +0 -10395
- package/dist/main_92f30848_2.2.5.js +0 -23681
package/README.md
CHANGED
@@ -10,10 +10,13 @@ Face collector
|
|
10
10
|
|
11
11
|
# **Building**
|
12
12
|
|
13
|
+
nvm use install / use
|
13
14
|
npm i
|
14
15
|
npm run build
|
15
16
|
|
16
|
-
In dist folder you should get the biometric-collector.js script and a folder containing the weights used to perform image recognition. To use the web-component, refer to the example at [client integration](https://git.bry.com.br/psbio/coletor/bry-collector-component-client).
|
17
|
+
In dist folder you should get the biometric-collector.js script and a folder containing the weights used to perform image recognition. To use the web-component, refer to the example at [client integration](https://git.bry.com.br/psbio/coletor/bry-collector-component-client). Clone the project and place it in the same root path as the project, then rename the bry-collector-component-client directory to `"client"`.
|
18
|
+
|
19
|
+
npm run build-and-copy
|
17
20
|
|
18
21
|
There is also a development server complete with HMR, thanks to Vite. However the development server mode is limited because it cannot access the relevant endpoints. To run the development server run:
|
19
22
|
|