@avaturn-live/web-sdk 0.1.2 → 0.1.4
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/dist/main.cjs +22 -35
- package/dist/main.d.ts +22 -8
- package/dist/main.js +401 -430
- package/dist/type.d.ts +6 -0
- package/package.json +1 -1
package/dist/type.d.ts
CHANGED
|
@@ -50,8 +50,14 @@ export interface IAvaturnHead {
|
|
|
50
50
|
/**
|
|
51
51
|
* ID of current session.
|
|
52
52
|
* @type {string}
|
|
53
|
+
* @deprecated Use sessionId instead
|
|
53
54
|
*/
|
|
54
55
|
session_id: string;
|
|
56
|
+
/**
|
|
57
|
+
* ID of current session.
|
|
58
|
+
* @type {string}
|
|
59
|
+
*/
|
|
60
|
+
sessionId: string;
|
|
55
61
|
/**
|
|
56
62
|
* Initializes the object.
|
|
57
63
|
* @returns {Promise<unknown>} A promise that resolves after initialization is complete and avatar is ready to use.
|