vani-meeting-client 0.2.7 → 0.2.8
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/lib/MeetingHandler.js
CHANGED
|
@@ -84,7 +84,7 @@ var MeetingHandler = /** @class */ (function () {
|
|
|
84
84
|
case 3:
|
|
85
85
|
_e.videoCallHandler = _f.sent();
|
|
86
86
|
this.websocketCallHandler = new WebsocketHandler(this.meetingStartRequest, this.communicationHandler);
|
|
87
|
-
this.handleGA();
|
|
87
|
+
// this.handleGA();
|
|
88
88
|
this.emitMessageToSource(VaniEvent.OnInitDone, {});
|
|
89
89
|
return [2 /*return*/];
|
|
90
90
|
}
|
|
@@ -422,7 +422,7 @@ var MeetingHandler = /** @class */ (function () {
|
|
|
422
422
|
})
|
|
423
423
|
]
|
|
424
424
|
});
|
|
425
|
-
|
|
425
|
+
analytics.page();
|
|
426
426
|
analytics.track('event', {
|
|
427
427
|
category: 'AppId',
|
|
428
428
|
label: this.meetingStartRequest.appId,
|
|
@@ -7,6 +7,7 @@ export declare class SFUHandler extends BaseVideoCallHandler {
|
|
|
7
7
|
private routerRtpCapabilities?;
|
|
8
8
|
private sendTransport?;
|
|
9
9
|
private consumerTransport?;
|
|
10
|
+
private dataChannelTranport?;
|
|
10
11
|
private isProduceTrackIntialWorkDone;
|
|
11
12
|
private producers;
|
|
12
13
|
private consumers;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vani-meeting-client",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.8",
|
|
4
4
|
"description": "Vani Meeting Clinet SDK",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -46,7 +46,8 @@
|
|
|
46
46
|
"analytics": "^0.7.21",
|
|
47
47
|
"axios": "^0.24.0",
|
|
48
48
|
"loglevel": "^1.8.0",
|
|
49
|
-
"mediasoup-client": "^3.6.47"
|
|
49
|
+
"mediasoup-client": "^3.6.47",
|
|
50
|
+
"react-native-google-analytics-bridge": "^7.1.0"
|
|
50
51
|
},
|
|
51
52
|
"optionalDependencies": {}
|
|
52
53
|
}
|