@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.
@@ -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
  *