@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.
- package/dist/cjs/index.js +4 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +4 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/types/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -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