@webex/plugin-meetings 3.8.0-next.79 → 3.8.0-next.80
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 +2 -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 +3 -1
- package/dist/media/index.js.map +1 -1
- package/dist/meeting/index.js +2 -0
- package/dist/meeting/index.js.map +1 -1
- package/dist/meetings/index.js +22 -0
- package/dist/meetings/index.js.map +1 -1
- package/dist/types/config.d.ts +1 -0
- package/dist/types/meetings/index.d.ts +9 -0
- package/dist/webinar/index.js +1 -1
- package/package.json +5 -5
- package/src/config.ts +1 -0
- package/src/media/index.ts +3 -0
- package/src/meeting/index.ts +2 -0
- package/src/meetings/index.ts +20 -0
- package/test/unit/spec/media/index.ts +58 -8
- package/test/unit/spec/meetings/index.js +13 -0
package/dist/meetings/index.js
CHANGED
@@ -838,6 +838,28 @@ var Meetings = exports.default = /*#__PURE__*/function (_WebexPlugin) {
|
|
838
838
|
}
|
839
839
|
}
|
840
840
|
|
841
|
+
/**
|
842
|
+
* API to toggle usage of audio twcc support
|
843
|
+
*
|
844
|
+
* @param {Boolean} newValue
|
845
|
+
* @private
|
846
|
+
* @memberof Meetings
|
847
|
+
* @returns {undefined}
|
848
|
+
*/
|
849
|
+
}, {
|
850
|
+
key: "_toggleEnableAudioTwccForMultistream",
|
851
|
+
value: function _toggleEnableAudioTwccForMultistream(newValue) {
|
852
|
+
if (typeof newValue !== 'boolean') {
|
853
|
+
return;
|
854
|
+
}
|
855
|
+
|
856
|
+
// @ts-ignore
|
857
|
+
if (this.config.enableAudioTwccForMultistream !== newValue) {
|
858
|
+
// @ts-ignore
|
859
|
+
this.config.enableAudioTwccForMultistream = newValue;
|
860
|
+
}
|
861
|
+
}
|
862
|
+
|
841
863
|
/**
|
842
864
|
* API to toggle stopping ICE Candidates Gathering after first relay candidate,
|
843
865
|
* needs to be called before webex.meetings.joinWithMedia()
|