@vindral/web-sdk 2.2.3 → 2.2.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/index.d.ts +4 -2
- package/package.json +1 -1
- package/web-sdk.esm.js +1 -1
- package/web-sdk.umd.js +1 -1
package/index.d.ts
CHANGED
|
@@ -1186,7 +1186,8 @@ export declare type Statistics = ModuleStatistics & UserAgentInformation & {
|
|
|
1186
1186
|
version: string;
|
|
1187
1187
|
ip?: string;
|
|
1188
1188
|
url: string;
|
|
1189
|
-
sessionId
|
|
1189
|
+
sessionId?: string;
|
|
1190
|
+
clientId: string;
|
|
1190
1191
|
uptime: number;
|
|
1191
1192
|
videoBitRate?: number;
|
|
1192
1193
|
audioBitRate?: number;
|
|
@@ -1212,7 +1213,8 @@ export declare class Vindral extends Emitter<PublicVindralEvents> {
|
|
|
1212
1213
|
private logger;
|
|
1213
1214
|
private modules;
|
|
1214
1215
|
private clientIp?;
|
|
1215
|
-
private sessionId
|
|
1216
|
+
private sessionId?;
|
|
1217
|
+
private clientId;
|
|
1216
1218
|
private _channels;
|
|
1217
1219
|
private createdAt;
|
|
1218
1220
|
private hasCalledConnect;
|
package/package.json
CHANGED