@webex/plugin-meetings 3.12.0-next.84 → 3.12.0-next.86
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/aiEnableRequest/index.js +1 -1
- package/dist/breakouts/breakout.js +1 -1
- package/dist/breakouts/index.js +1 -1
- package/dist/config.js +0 -2
- package/dist/config.js.map +1 -1
- package/dist/constants.js +1 -1
- package/dist/constants.js.map +1 -1
- package/dist/interpretation/index.js +1 -1
- package/dist/interpretation/siLanguage.js +1 -1
- package/dist/meetings/index.js +0 -40
- package/dist/meetings/index.js.map +1 -1
- package/dist/reachability/index.js +10 -13
- package/dist/reachability/index.js.map +1 -1
- package/dist/reachability/reachability.types.js +2 -0
- package/dist/reachability/reachability.types.js.map +1 -1
- package/dist/reachability/util.js +45 -0
- package/dist/reachability/util.js.map +1 -1
- package/dist/types/config.d.ts +0 -2
- package/dist/types/meetings/index.d.ts +0 -16
- package/dist/types/reachability/index.d.ts +1 -1
- package/dist/types/reachability/reachability.types.d.ts +7 -0
- package/dist/types/reachability/util.d.ts +17 -0
- package/dist/webinar/index.js +1 -1
- package/package.json +1 -1
- package/src/config.ts +0 -2
- package/src/constants.ts +4 -1
- package/src/meetings/index.ts +0 -36
- package/src/reachability/index.ts +19 -15
- package/src/reachability/reachability.types.ts +11 -0
- package/src/reachability/util.ts +36 -0
- package/test/unit/spec/locus-info/infoUtils.js +97 -1
- package/test/unit/spec/meetings/index.js +0 -26
- package/test/unit/spec/reachability/index.ts +59 -46
- package/test/unit/spec/reachability/util.ts +31 -0
package/dist/meetings/index.js
CHANGED
|
@@ -824,46 +824,6 @@ var Meetings = exports.default = /*#__PURE__*/function (_WebexPlugin) {
|
|
|
824
824
|
}
|
|
825
825
|
}
|
|
826
826
|
|
|
827
|
-
/**
|
|
828
|
-
* API to toggle TCP reachability, needs to be called before webex.meetings.register()
|
|
829
|
-
* @param {Boolean} newValue
|
|
830
|
-
* @private
|
|
831
|
-
* @memberof Meetings
|
|
832
|
-
* @returns {undefined}
|
|
833
|
-
*/
|
|
834
|
-
}, {
|
|
835
|
-
key: "_toggleTcpReachability",
|
|
836
|
-
value: function _toggleTcpReachability(newValue) {
|
|
837
|
-
if (typeof newValue !== 'boolean') {
|
|
838
|
-
return;
|
|
839
|
-
}
|
|
840
|
-
// @ts-ignore
|
|
841
|
-
if (this.config.experimental.enableTcpReachability !== newValue) {
|
|
842
|
-
// @ts-ignore
|
|
843
|
-
this.config.experimental.enableTcpReachability = newValue;
|
|
844
|
-
}
|
|
845
|
-
}
|
|
846
|
-
|
|
847
|
-
/**
|
|
848
|
-
* API to toggle TLS reachability, needs to be called before webex.meetings.register()
|
|
849
|
-
* @param {Boolean} newValue
|
|
850
|
-
* @private
|
|
851
|
-
* @memberof Meetings
|
|
852
|
-
* @returns {undefined}
|
|
853
|
-
*/
|
|
854
|
-
}, {
|
|
855
|
-
key: "_toggleTlsReachability",
|
|
856
|
-
value: function _toggleTlsReachability(newValue) {
|
|
857
|
-
if (typeof newValue !== 'boolean') {
|
|
858
|
-
return;
|
|
859
|
-
}
|
|
860
|
-
// @ts-ignore
|
|
861
|
-
if (this.config.experimental.enableTlsReachability !== newValue) {
|
|
862
|
-
// @ts-ignore
|
|
863
|
-
this.config.experimental.enableTlsReachability = newValue;
|
|
864
|
-
}
|
|
865
|
-
}
|
|
866
|
-
|
|
867
827
|
/**
|
|
868
828
|
* API to toggle backend ipv6 native support config, needs to be called before webex.meetings.register()
|
|
869
829
|
*
|