deepar 5.2.0 → 5.3.0-alpha-854
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 +2 -2
- package/VERSION.txt +1 -1
- package/js/deepar.esm.js +1 -1
- package/js/deepar.js +1 -1
- package/js/types/DeepAR.d.ts +6 -0
- package/js/types/version.d.ts +1 -1
- package/package.json +1 -1
- package/wasm/deepar.wasm +0 -0
package/README.md
CHANGED
|
@@ -26,7 +26,7 @@ In order to use the DeepAR Web SDK you need to set up a license key for your web
|
|
|
26
26
|
2. Create a project: https://developer.deepar.ai/projects.
|
|
27
27
|
3. Add a web app to the project. Note that you need to specify the domain name which you plan to use for hosting the app.
|
|
28
28
|
|
|
29
|
-
> ⚠️
|
|
29
|
+
> ⚠️ The license key property is required both in a production and development (localhost) environment. Development sessions will not count towards your monthly active usage.
|
|
30
30
|
|
|
31
31
|
## Installation
|
|
32
32
|
|
|
@@ -163,7 +163,7 @@ const video = await deepAR.finishVideoRecording();
|
|
|
163
163
|
|
|
164
164
|
## Callbacks
|
|
165
165
|
|
|
166
|
-
DeepAR has some callbacks you can implement for
|
|
166
|
+
DeepAR has some callbacks you can implement for additional informations. For example,
|
|
167
167
|
to check if feet are visible in the camera preview.
|
|
168
168
|
```javascript
|
|
169
169
|
await deepAR.switchEffect('https://cdn.jsdelivr.net/npm/deepar/effects/Shoe');
|
package/VERSION.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
DeepAR SDK version: v5.
|
|
1
|
+
DeepAR SDK version: v5.3.0-alpha-854
|