@webex/web-client-media-engine 3.22.5 → 3.23.1

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.
@@ -248,6 +248,7 @@ declare enum MultistreamConnectionEventNames {
248
248
  CreateAnswerOnSuccess = "createansweronsuccess",
249
249
  SetLocalDescriptionOnSuccess = "setlocaldescriptiononsuccess",
250
250
  SetRemoteDescriptionOnSuccess = "setremotedescriptiononsuccess",
251
+ IceCandidate = "icecandidate",
251
252
  IceCandidateError = "icecandidateerror"
252
253
  }
253
254
  interface MultistreamConnectionEvents extends EventMap {
@@ -262,6 +263,7 @@ interface MultistreamConnectionEvents extends EventMap {
262
263
  [MultistreamConnectionEventNames.CreateOfferOnSuccess]: (offer: RTCSessionDescriptionInit) => void;
263
264
  [MultistreamConnectionEventNames.SetLocalDescriptionOnSuccess]: (description: RTCSessionDescriptionInit) => void;
264
265
  [MultistreamConnectionEventNames.SetRemoteDescriptionOnSuccess]: (description: RTCSessionDescriptionInit) => void;
266
+ [MultistreamConnectionEventNames.IceCandidate]: (event: RTCPeerConnectionIceEvent) => void;
265
267
  [MultistreamConnectionEventNames.IceCandidateError]: (error: RTCPeerConnectionIceErrorEvent) => void;
266
268
  }
267
269
  type MultistreamConnectionOptions = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webex/web-client-media-engine",
3
- "version": "3.22.5",
3
+ "version": "3.23.1",
4
4
  "description": "Web Client Media Engine is common web code for interacting with the multistream media server.",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/cjs/index.js",