@vonage/client-sdk 1.2.0-alpha.10 → 1.2.0-alpha.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vonage/client-sdk",
3
- "version": "1.2.0-alpha.10",
3
+ "version": "1.2.0-alpha.12",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "module": "dist/client/index.mjs",
@@ -76,7 +76,7 @@
76
76
  "events": "^3.3.0",
77
77
  "rtc-stats-adapter": "^1.2.0",
78
78
  "sdp-transform": "^2.14.1",
79
- "socket.io-client": "^2.4.0",
79
+ "socket.io-client": "^4.7.2",
80
80
  "socketio-wildcard": "^2.0.0",
81
81
  "webrtc-adapter": "^8.2.3"
82
82
  }
@@ -1,26 +0,0 @@
1
- import { vonage } from './clientsdk-clientcore_js';
2
- /**
3
- * The EmbeddedInfo type
4
- *
5
- * @property kind the kind property of the EmbeddedInfo
6
- * @property memberId the memberId property of the EmbeddedInfo
7
- * @property user the user property of the EmbeddedInfo
8
- * @interface
9
- */
10
- export type EmbeddedInfo = {
11
- kind: 'embeddedInfo';
12
- } & vonage.EmbeddedInfoJS;
13
- /**
14
- * The System type
15
- *
16
- * @property kind the kind property of the System
17
- * @interface
18
- */
19
- export type System = {
20
- kind: 'system';
21
- } & typeof vonage.SystemJS;
22
- /**
23
- * A From is a union of EmbeddedInfo, System
24
- * @interface
25
- */
26
- export type From = EmbeddedInfo | System;