vani-meeting-client 0.0.2 → 0.0.3
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 +1 -3
- package/package.json +2 -1
package/lib/MeetingHandler.js
CHANGED
|
@@ -41,6 +41,7 @@ import { WebSocketBasicEvents, WebsocketHandler } from "./websocket-handler/Webs
|
|
|
41
41
|
import { CommunicationHandler } from "./inter-communication-handler/CommunicationHandler";
|
|
42
42
|
import { UserMediaHandler } from "./user-media-handler/UserMediaHandler";
|
|
43
43
|
import Analytics from 'analytics';
|
|
44
|
+
import googleAnalytics from '@analytics/google-analytics';
|
|
44
45
|
var MeetingHandler = /** @class */ (function () {
|
|
45
46
|
function MeetingHandler() {
|
|
46
47
|
this.communicationHandler = new CommunicationHandler(this);
|
|
@@ -435,6 +436,3 @@ var MeetingHandler = /** @class */ (function () {
|
|
|
435
436
|
return MeetingHandler;
|
|
436
437
|
}());
|
|
437
438
|
export { MeetingHandler };
|
|
438
|
-
function googleAnalytics(arg0) {
|
|
439
|
-
throw new Error("Function not implemented.");
|
|
440
|
-
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vani-meeting-client",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Vani Meeting Clinet SDK",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"typescript": "^4.5.2"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
+
"@analytics/google-analytics": "^0.5.3",
|
|
45
46
|
"analytics": "^0.7.21",
|
|
46
47
|
"axios": "^0.24.0",
|
|
47
48
|
"loglevel": "^1.8.0",
|