@webex/plugin-meetings 3.8.0-next.66 → 3.8.0-next.67
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/breakouts/breakout.js +1 -1
- package/dist/breakouts/index.js +1 -1
- package/dist/config.js +3 -1
- package/dist/config.js.map +1 -1
- package/dist/interpretation/index.js +1 -1
- package/dist/interpretation/siLanguage.js +1 -1
- package/dist/media/index.js +7 -1
- package/dist/media/index.js.map +1 -1
- package/dist/meeting/index.js +4 -1
- package/dist/meeting/index.js.map +1 -1
- package/dist/meetings/index.js +23 -0
- package/dist/meetings/index.js.map +1 -1
- package/dist/types/config.d.ts +1 -0
- package/dist/types/meetings/index.d.ts +10 -0
- package/dist/webinar/index.js +1 -1
- package/package.json +3 -3
- package/src/config.ts +1 -0
- package/src/media/index.ts +9 -0
- package/src/meeting/index.ts +3 -0
- package/src/meetings/index.ts +21 -0
- package/test/unit/spec/media/index.ts +62 -0
- package/test/unit/spec/meetings/index.js +13 -0
package/dist/meetings/index.js
CHANGED
@@ -838,6 +838,29 @@ var Meetings = exports.default = /*#__PURE__*/function (_WebexPlugin) {
|
|
838
838
|
}
|
839
839
|
}
|
840
840
|
|
841
|
+
/**
|
842
|
+
* API to toggle stopping ICE Candidates Gathering after first relay candidate,
|
843
|
+
* needs to be called before webex.meetings.joinWithMedia()
|
844
|
+
*
|
845
|
+
* @param {Boolean} newValue
|
846
|
+
* @private
|
847
|
+
* @memberof Meetings
|
848
|
+
* @returns {undefined}
|
849
|
+
*/
|
850
|
+
}, {
|
851
|
+
key: "_toggleStopIceGatheringAfterFirstRelayCandidate",
|
852
|
+
value: function _toggleStopIceGatheringAfterFirstRelayCandidate(newValue) {
|
853
|
+
if (typeof newValue !== 'boolean') {
|
854
|
+
return;
|
855
|
+
}
|
856
|
+
|
857
|
+
// @ts-ignore
|
858
|
+
if (this.config.stopIceGatheringAfterFirstRelayCandidate !== newValue) {
|
859
|
+
// @ts-ignore
|
860
|
+
this.config.stopIceGatheringAfterFirstRelayCandidate = newValue;
|
861
|
+
}
|
862
|
+
}
|
863
|
+
|
841
864
|
/**
|
842
865
|
* Executes a registration step and updates the registration status.
|
843
866
|
* @param {Function} step - The registration step to execute.
|