@microblink/blinkid-core 7.0.0-next.9 → 7.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/README.md +4 -4
- package/dist/blinkid-core.js +351 -510
- package/dist/resources/blinkid-worker.js +647 -2
- package/dist/resources/full/advanced/{BlinkIDWasmSDK.data → BlinkIdModule.data} +0 -0
- package/dist/resources/full/advanced/BlinkIdModule.js +153 -0
- package/dist/resources/full/advanced/{BlinkIDWasmSDK.wasm → BlinkIdModule.wasm} +0 -0
- package/dist/resources/full/{basic/BlinkIDWasmSDK.data → advanced-threads/BlinkIdModule.data} +0 -0
- package/dist/resources/full/advanced-threads/BlinkIdModule.js +173 -0
- package/dist/resources/full/advanced-threads/{BlinkIDWasmSDK.wasm → BlinkIdModule.wasm} +0 -0
- package/dist/resources/full/advanced-threads/BlinkIdModule.worker.mjs +1 -0
- package/dist/resources/full/{advanced-threads/BlinkIDWasmSDK.data → basic/BlinkIdModule.data} +0 -0
- package/dist/resources/full/basic/BlinkIdModule.js +153 -0
- package/dist/resources/full/basic/{BlinkIDWasmSDK.wasm → BlinkIdModule.wasm} +0 -0
- package/dist/resources/lightweight/advanced/BlinkIdModule.data +0 -0
- package/dist/resources/lightweight/advanced/BlinkIdModule.js +153 -0
- package/dist/resources/lightweight/advanced/{BlinkIDWasmSDK.wasm → BlinkIdModule.wasm} +0 -0
- package/dist/resources/lightweight/advanced-threads/BlinkIdModule.data +0 -0
- package/dist/resources/lightweight/advanced-threads/BlinkIdModule.js +172 -0
- package/dist/resources/lightweight/advanced-threads/{BlinkIDWasmSDK.wasm → BlinkIdModule.wasm} +0 -0
- package/dist/resources/lightweight/advanced-threads/BlinkIdModule.worker.mjs +1 -0
- package/dist/resources/lightweight/basic/BlinkIdModule.data +0 -0
- package/dist/resources/lightweight/basic/BlinkIdModule.js +153 -0
- package/dist/resources/lightweight/basic/{BlinkIDWasmSDK.wasm → BlinkIdModule.wasm} +0 -0
- package/package.json +3 -3
- package/types/BlinkIdCore.d.ts +9 -52
- package/types/BlinkIdCore.d.ts.map +1 -1
- package/types/createProxyWorker.d.ts +1 -1
- package/types/createProxyWorker.d.ts.map +1 -1
- package/types/getCrossOriginWorkerURL.d.ts.map +1 -1
- package/types/index.d.ts +5 -2
- package/types/index.d.ts.map +1 -1
- package/types/index.rollup.d.ts +2037 -2974
- package/dist/resources/BlinkIDWasmSDK.worker.min.js +0 -1
- package/dist/resources/full/advanced/BlinkIDWasmSDK.js +0 -174
- package/dist/resources/full/advanced-threads/BlinkIDWasmSDK.js +0 -193
- package/dist/resources/full/advanced-threads/BlinkIDWasmSDK.worker.js +0 -1
- package/dist/resources/full/basic/BlinkIDWasmSDK.js +0 -174
- package/dist/resources/lightweight/advanced/BlinkIDWasmSDK.data +0 -0
- package/dist/resources/lightweight/advanced/BlinkIDWasmSDK.js +0 -173
- package/dist/resources/lightweight/advanced-threads/BlinkIDWasmSDK.data +0 -0
- package/dist/resources/lightweight/advanced-threads/BlinkIDWasmSDK.js +0 -193
- package/dist/resources/lightweight/advanced-threads/BlinkIDWasmSDK.worker.js +0 -1
- package/dist/resources/lightweight/basic/BlinkIDWasmSDK.data +0 -0
- package/dist/resources/lightweight/basic/BlinkIDWasmSDK.js +0 -173
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
## Before you start
|
|
6
6
|
|
|
7
|
-
`@microblink/blinkid-core` is a part of `@microblink/blinkid
|
|
7
|
+
`@microblink/blinkid-core` is a part of `@microblink/blinkid`. All packages in the monorepo (TODO: add link) are currently in a prerelease stage.
|
|
8
8
|
|
|
9
9
|
## Quick start
|
|
10
10
|
|
|
@@ -12,10 +12,10 @@ See the example apps in the `apps/examples` directory in the github repository (
|
|
|
12
12
|
|
|
13
13
|
## Installation
|
|
14
14
|
|
|
15
|
-
`blinkid-core` is available on the npm registry and can be installed using a package manager
|
|
15
|
+
`blinkid-core` is available on the npm registry and can be installed using a package manager:
|
|
16
16
|
|
|
17
17
|
```sh
|
|
18
|
-
npm install @microblink/blinkid-core
|
|
18
|
+
npm install @microblink/blinkid-core # or yarn or pnpm
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
## Environment & Setup
|
|
@@ -24,7 +24,7 @@ BlinkID Core is an ESM-only published package for use in browsers using a bundle
|
|
|
24
24
|
|
|
25
25
|
Alternatively, you can use it via [esm.sh](https://esm.sh/) that allows you to import JavaScript modules from http URLs without a build step.
|
|
26
26
|
|
|
27
|
-
If used in the `blinkid-
|
|
27
|
+
If used in the `blinkid-monorepo` from github, read the usage instructions in its root (TODO: link).
|
|
28
28
|
|
|
29
29
|
### Licence key
|
|
30
30
|
|