@webex/plugin-meetings 3.9.0 → 3.10.0-next.2

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.
Files changed (121) hide show
  1. package/dist/breakouts/breakout.js +1 -1
  2. package/dist/breakouts/index.js +1 -1
  3. package/dist/constants.js +9 -0
  4. package/dist/constants.js.map +1 -1
  5. package/dist/controls-options-manager/index.js +22 -5
  6. package/dist/controls-options-manager/index.js.map +1 -1
  7. package/dist/index.js +2 -1
  8. package/dist/index.js.map +1 -1
  9. package/dist/interceptors/index.js +7 -0
  10. package/dist/interceptors/index.js.map +1 -1
  11. package/dist/interceptors/locusRouteToken.js +116 -0
  12. package/dist/interceptors/locusRouteToken.js.map +1 -0
  13. package/dist/interpretation/index.js +1 -1
  14. package/dist/interpretation/siLanguage.js +1 -1
  15. package/dist/locus-info/controlsUtils.js +11 -2
  16. package/dist/locus-info/controlsUtils.js.map +1 -1
  17. package/dist/locus-info/index.js +56 -14
  18. package/dist/locus-info/index.js.map +1 -1
  19. package/dist/locus-info/parser.js +4 -1
  20. package/dist/locus-info/parser.js.map +1 -1
  21. package/dist/media/index.js +5 -0
  22. package/dist/media/index.js.map +1 -1
  23. package/dist/media/properties.js +53 -5
  24. package/dist/media/properties.js.map +1 -1
  25. package/dist/meeting/in-meeting-actions.js +8 -0
  26. package/dist/meeting/in-meeting-actions.js.map +1 -1
  27. package/dist/meeting/index.js +339 -185
  28. package/dist/meeting/index.js.map +1 -1
  29. package/dist/meeting/muteState.js +2 -5
  30. package/dist/meeting/muteState.js.map +1 -1
  31. package/dist/meeting/request.js +177 -14
  32. package/dist/meeting/request.js.map +1 -1
  33. package/dist/meeting/util.js +39 -11
  34. package/dist/meeting/util.js.map +1 -1
  35. package/dist/meeting-info/meeting-info-v2.js +29 -21
  36. package/dist/meeting-info/meeting-info-v2.js.map +1 -1
  37. package/dist/meetings/index.js +31 -25
  38. package/dist/meetings/index.js.map +1 -1
  39. package/dist/member/index.js +9 -0
  40. package/dist/member/index.js.map +1 -1
  41. package/dist/member/types.js.map +1 -1
  42. package/dist/member/util.js +10 -0
  43. package/dist/member/util.js.map +1 -1
  44. package/dist/members/collection.js +13 -0
  45. package/dist/members/collection.js.map +1 -1
  46. package/dist/members/index.js +42 -20
  47. package/dist/members/index.js.map +1 -1
  48. package/dist/members/util.js +7 -2
  49. package/dist/members/util.js.map +1 -1
  50. package/dist/metrics/constants.js +2 -1
  51. package/dist/metrics/constants.js.map +1 -1
  52. package/dist/reachability/index.js +3 -3
  53. package/dist/reachability/index.js.map +1 -1
  54. package/dist/types/constants.d.ts +7 -0
  55. package/dist/types/controls-options-manager/index.d.ts +9 -1
  56. package/dist/types/interceptors/index.d.ts +2 -1
  57. package/dist/types/interceptors/locusRouteToken.d.ts +38 -0
  58. package/dist/types/locus-info/index.d.ts +56 -2
  59. package/dist/types/media/properties.d.ts +21 -0
  60. package/dist/types/meeting/in-meeting-actions.d.ts +8 -0
  61. package/dist/types/meeting/index.d.ts +41 -1
  62. package/dist/types/meeting/request.d.ts +42 -0
  63. package/dist/types/meeting/util.d.ts +13 -3
  64. package/dist/types/meeting-info/meeting-info-v2.d.ts +6 -3
  65. package/dist/types/meetings/index.d.ts +3 -1
  66. package/dist/types/member/index.d.ts +1 -0
  67. package/dist/types/member/types.d.ts +1 -0
  68. package/dist/types/member/util.d.ts +5 -0
  69. package/dist/types/members/collection.d.ts +6 -0
  70. package/dist/types/members/index.d.ts +12 -2
  71. package/dist/types/members/util.d.ts +6 -3
  72. package/dist/types/metrics/constants.d.ts +1 -0
  73. package/dist/webinar/index.js +1 -1
  74. package/package.json +24 -24
  75. package/src/constants.ts +10 -0
  76. package/src/controls-options-manager/index.ts +26 -5
  77. package/src/index.ts +2 -1
  78. package/src/interceptors/index.ts +2 -1
  79. package/src/interceptors/locusRouteToken.ts +80 -0
  80. package/src/locus-info/controlsUtils.ts +18 -0
  81. package/src/locus-info/index.ts +99 -17
  82. package/src/locus-info/parser.ts +5 -1
  83. package/src/media/index.ts +6 -0
  84. package/src/media/properties.ts +43 -0
  85. package/src/meeting/in-meeting-actions.ts +16 -0
  86. package/src/meeting/index.ts +205 -24
  87. package/src/meeting/muteState.ts +2 -6
  88. package/src/meeting/request.ts +141 -0
  89. package/src/meeting/util.ts +50 -20
  90. package/src/meeting-info/meeting-info-v2.ts +24 -5
  91. package/src/meetings/index.ts +9 -3
  92. package/src/member/index.ts +10 -0
  93. package/src/member/types.ts +1 -0
  94. package/src/member/util.ts +14 -0
  95. package/src/members/collection.ts +11 -0
  96. package/src/members/index.ts +38 -5
  97. package/src/members/util.ts +18 -2
  98. package/src/metrics/constants.ts +1 -0
  99. package/src/reachability/index.ts +3 -3
  100. package/test/unit/spec/common/browser-detection.js +0 -24
  101. package/test/unit/spec/controls-options-manager/index.js +47 -0
  102. package/test/unit/spec/fixture/locus.js +1 -0
  103. package/test/unit/spec/interceptors/locusRouteToken.ts +87 -0
  104. package/test/unit/spec/locus-info/index.js +91 -15
  105. package/test/unit/spec/locus-info/parser.js +3 -2
  106. package/test/unit/spec/media/index.ts +140 -9
  107. package/test/unit/spec/media/properties.ts +137 -0
  108. package/test/unit/spec/meeting/in-meeting-actions.ts +8 -0
  109. package/test/unit/spec/meeting/index.js +398 -30
  110. package/test/unit/spec/meeting/muteState.js +32 -6
  111. package/test/unit/spec/meeting/request.js +21 -0
  112. package/test/unit/spec/meeting/utils.js +48 -16
  113. package/test/unit/spec/meeting-info/meetinginfov2.js +8 -3
  114. package/test/unit/spec/meetings/index.js +10 -7
  115. package/test/unit/spec/member/util.js +24 -0
  116. package/test/unit/spec/members/collection.js +120 -0
  117. package/test/unit/spec/members/index.js +72 -3
  118. package/test/unit/spec/members/request.js +55 -0
  119. package/test/unit/spec/members/utils.js +116 -14
  120. package/test/unit/spec/reachability/index.ts +158 -3
  121. package/test/unit/spec/roap/turnDiscovery.ts +3 -3
@@ -1 +1 @@
1
- {"version":3,"names":["_tsSdp","require","_constants","_loggerProxy","_interopRequireDefault","_MediaConnectionAwaiter","_createForOfIteratorHelper","o","allowArrayLike","it","_Symbol","_Symbol$iterator","_Array$isArray","_unsupportedIterableToArray","length","i","F","s","n","done","value","e","_e","f","TypeError","normalCompletion","didErr","err","call","step","next","_e2","return","minLen","_arrayLikeToArray","Object","prototype","toString","slice","constructor","name","_Array$from","test","arr","len","arr2","Array","MediaProperties","exports","default","_classCallCheck2","_defineProperty2","MEETINGS","webrtcMediaConnection","mediaDirection","receiveAudio","receiveVideo","receiveShare","sendAudio","sendVideo","sendShare","videoStream","audioStream","shareVideoStream","shareAudioStream","remoteShareStream","undefined","remoteAudioStream","remoteVideoStream","remoteQualityLevel","QUALITY_LEVELS","HIGH","mediaSettings","videoDeviceId","_createClass2","key","getVideoDeviceId","setMediaDirection","setMediaSettings","type","values","setMediaPeerConnection","mediaPeerConnection","setLocalVideoStream","setLocalAudioStream","setLocalShareVideoStream","setLocalShareAudioStream","setRemoteQualityLevel","setRemoteShareStream","setRemoteAudioStream","setRemoteVideoStream","setVideoDeviceId","deviceId","unsetPeerConnection","unsetRemoteMedia","unsetRemoteShareStream","unsetRemoteStreams","hasLocalShareStream","waitForMediaConnectionConnected","mediaConnectionAwaiter","MediaConnectionAwaiter","getTransportInfo","allStatsReports","transports","filter","report","LoggerProxy","logger","warn","concat","selectedCandidatePairChanges","numTransports","isIPv6","ip","includes","getConnectionIpVersion","selectedCandidatePair","selectedCandidatePairId","find","id","selected","localCandidate","localCandidateId","address","localSdp","localDescription","sdp","parsedSdp","parse","_iterator","avMedia","_step","mediaLine","matchingCandidate","iceInfo","candidates","candidate","port","connectionAddress","error","_transports$","getConnectionType","successfulCandidatePairs","_report$state","state","toLowerCase","foundConnectionType","some","pair","connectionType","relayProtocol","toUpperCase","_localCandidate$proto","protocol","candidateType","candidatePairStates","map","_stringify","_getCurrentConnectionInfo","_asyncToGenerator2","_regenerator","mark","_callee","_this","_this$webrtcMediaConn","_this$webrtcMediaConn2","rtcPeerconnection","ipVersion","_this$getTransportInf","wrap","_callee$","_context","prev","_promise","resolve","reject","timeout","setTimeout","Error","getStats","then","statsResult","clearTimeout","forEach","push","catch","multistreamConnection","pc","mediaConnection","abrupt","t0","stop","getCurrentConnectionInfo","apply","arguments"],"sources":["properties.ts"],"sourcesContent":["/* eslint-disable class-methods-use-this */\nimport {\n LocalCameraStream,\n LocalMicrophoneStream,\n LocalDisplayStream,\n LocalSystemAudioStream,\n RemoteStream,\n} from '@webex/media-helpers';\n\nimport {parse} from '@webex/ts-sdp';\nimport {ClientEvent} from '@webex/internal-plugin-metrics';\nimport {MEETINGS, QUALITY_LEVELS} from '../constants';\nimport LoggerProxy from '../common/logs/logger-proxy';\nimport MediaConnectionAwaiter from './MediaConnectionAwaiter';\n\nexport type MediaDirection = {\n sendAudio: boolean;\n sendVideo: boolean;\n sendShare: boolean;\n receiveAudio: boolean;\n receiveVideo: boolean;\n receiveShare: boolean;\n};\n\nexport type IPVersion = ClientEvent['payload']['ipVersion'];\n\n/**\n * @class MediaProperties\n */\nexport default class MediaProperties {\n audioStream?: LocalMicrophoneStream;\n mediaDirection: MediaDirection;\n mediaSettings: any;\n webrtcMediaConnection: any;\n remoteAudioStream: RemoteStream;\n remoteQualityLevel: any;\n remoteShareStream: RemoteStream;\n remoteVideoStream: RemoteStream;\n shareVideoStream?: LocalDisplayStream;\n shareAudioStream?: LocalSystemAudioStream;\n videoDeviceId: any;\n videoStream?: LocalCameraStream;\n namespace = MEETINGS;\n\n /**\n * @param {Object} [options] -- to auto construct\n * @returns {MediaProperties}\n */\n constructor() {\n this.webrtcMediaConnection = null;\n this.mediaDirection = {\n receiveAudio: false,\n receiveVideo: false,\n receiveShare: false,\n sendAudio: false,\n sendVideo: false,\n sendShare: false,\n };\n this.videoStream = null;\n this.audioStream = null;\n this.shareVideoStream = null;\n this.shareAudioStream = null;\n this.remoteShareStream = undefined;\n this.remoteAudioStream = undefined;\n this.remoteVideoStream = undefined;\n this.remoteQualityLevel = QUALITY_LEVELS.HIGH;\n this.mediaSettings = {};\n this.videoDeviceId = null;\n }\n\n /**\n * Retrieves the preferred video input device\n * @returns {Object|null}\n */\n getVideoDeviceId() {\n return this.videoDeviceId || null;\n }\n\n setMediaDirection(mediaDirection) {\n this.mediaDirection = mediaDirection;\n }\n\n setMediaSettings(type, values) {\n this.mediaSettings[type] = values;\n }\n\n setMediaPeerConnection(mediaPeerConnection) {\n this.webrtcMediaConnection = mediaPeerConnection;\n }\n\n setLocalVideoStream(videoStream?: LocalCameraStream) {\n this.videoStream = videoStream;\n }\n\n setLocalAudioStream(audioStream?: LocalMicrophoneStream) {\n this.audioStream = audioStream;\n }\n\n setLocalShareVideoStream(shareVideoStream?: LocalDisplayStream) {\n this.shareVideoStream = shareVideoStream;\n }\n\n setLocalShareAudioStream(shareAudioStream?: LocalSystemAudioStream) {\n this.shareAudioStream = shareAudioStream;\n }\n\n setRemoteQualityLevel(remoteQualityLevel) {\n this.remoteQualityLevel = remoteQualityLevel;\n }\n\n setRemoteShareStream(remoteShareStream: RemoteStream) {\n this.remoteShareStream = remoteShareStream;\n }\n\n /**\n * Sets the remote audio stream\n * @param {RemoteStream} remoteAudioStream RemoteStream to save\n * @returns {void}\n */\n setRemoteAudioStream(remoteAudioStream: RemoteStream) {\n this.remoteAudioStream = remoteAudioStream;\n }\n\n /**\n * Sets the remote video stream\n * @param {RemoteStream} remoteVideoStream RemoteStream to save\n * @returns {void}\n */\n setRemoteVideoStream(remoteVideoStream: RemoteStream) {\n this.remoteVideoStream = remoteVideoStream;\n }\n\n /**\n * Stores the preferred video input device\n * @param {string} deviceId Preferred video input device\n * @returns {void}\n */\n setVideoDeviceId(deviceId: string) {\n this.videoDeviceId = deviceId;\n }\n\n unsetPeerConnection() {\n this.webrtcMediaConnection = null;\n }\n\n /**\n * Removes both remote audio and video from class instance\n * @returns {void}\n */\n unsetRemoteMedia() {\n this.remoteAudioStream = null;\n this.remoteVideoStream = null;\n }\n\n unsetRemoteShareStream() {\n this.remoteShareStream = null;\n }\n\n /**\n * Unsets all remote streams\n * @returns {void}\n */\n unsetRemoteStreams() {\n this.unsetRemoteMedia();\n this.unsetRemoteShareStream();\n }\n\n /**\n * Returns if we have at least one local share stream or not.\n * @returns {Boolean}\n */\n hasLocalShareStream() {\n return !!(this.shareAudioStream || this.shareVideoStream);\n }\n\n /**\n * Waits for the webrtc media connection to be connected.\n *\n * @returns {Promise<void>}\n */\n waitForMediaConnectionConnected(): Promise<void> {\n const mediaConnectionAwaiter = new MediaConnectionAwaiter({\n webrtcMediaConnection: this.webrtcMediaConnection,\n });\n\n return mediaConnectionAwaiter.waitForMediaConnectionConnected();\n }\n\n /**\n * Returns ICE transport information:\n * - selectedCandidatePairChanges - number of times the selected candidate pair was changed, it should be at least 1 for successful connections\n * it will be -1 if browser doesn't supply this information\n * - numTransports - number of transports (should be 1 if we're using bundle)\n *\n * @param {Array<any>} allStatsReports array of RTC stats reports\n * @returns {Object}\n */\n private getTransportInfo(allStatsReports: any[]): {\n selectedCandidatePairChanges: number;\n numTransports: number;\n } {\n const transports = allStatsReports.filter((report) => report.type === 'transport');\n\n if (transports.length > 1) {\n LoggerProxy.logger.warn(\n `Media:properties#getSelectedCandidatePairChanges --> found more than 1 transport: ${transports.length}`\n );\n }\n\n return {\n selectedCandidatePairChanges:\n transports.length > 0 && transports[0].selectedCandidatePairChanges !== undefined\n ? transports[0].selectedCandidatePairChanges\n : -1,\n numTransports: transports.length,\n };\n }\n\n /**\n * Checks if the given IP address is IPv6\n * @param {string} ip address to check\n * @returns {boolean} true if the address is IPv6, false otherwise\n */\n private isIPv6(ip: string): boolean {\n return ip.includes(':');\n }\n\n /** Finds out if we connected using IPv4 or IPv6\n * @param {RTCPeerConnection} webrtcMediaConnection\n * @param {Array<any>} allStatsReports array of RTC stats reports\n * @returns {string} IPVersion\n */\n private getConnectionIpVersion(\n webrtcMediaConnection: RTCPeerConnection,\n allStatsReports: any[]\n ): IPVersion | undefined {\n const transports = allStatsReports.filter((report) => report.type === 'transport');\n\n let selectedCandidatePair;\n\n if (transports.length > 0 && transports[0].selectedCandidatePairId) {\n selectedCandidatePair = allStatsReports.find(\n (report) =>\n report.type === 'candidate-pair' && report.id === transports[0].selectedCandidatePairId\n );\n } else {\n // Firefox doesn't have selectedCandidatePairId, but has selected property on the candidate pair\n selectedCandidatePair = allStatsReports.find(\n (report) => report.type === 'candidate-pair' && report.selected\n );\n }\n\n if (selectedCandidatePair) {\n const localCandidate = allStatsReports.find(\n (report) =>\n report.type === 'local-candidate' && report.id === selectedCandidatePair.localCandidateId\n );\n\n if (localCandidate) {\n if (localCandidate.address) {\n return this.isIPv6(localCandidate.address) ? 'IPv6' : 'IPv4';\n }\n\n try {\n // safari doesn't have address field on the candidate, so we have to use the port to look up the candidate in the SDP\n const localSdp = webrtcMediaConnection.localDescription.sdp;\n\n const parsedSdp = parse(localSdp);\n\n for (const mediaLine of parsedSdp.avMedia) {\n const matchingCandidate = mediaLine.iceInfo.candidates.find(\n (candidate) => candidate.port === localCandidate.port\n );\n if (matchingCandidate) {\n return this.isIPv6(matchingCandidate.connectionAddress) ? 'IPv6' : 'IPv4';\n }\n }\n\n LoggerProxy.logger.warn(\n `Media:properties#getConnectionIpVersion --> failed to find local candidate in the SDP for port ${localCandidate.port}`\n );\n } catch (error) {\n LoggerProxy.logger.warn(\n `Media:properties#getConnectionIpVersion --> error while trying to find candidate in local SDP:`,\n error\n );\n\n return undefined;\n }\n } else {\n LoggerProxy.logger.warn(\n `Media:properties#getConnectionIpVersion --> failed to find local candidate \"${selectedCandidatePair.localCandidateId}\" in getStats() results`\n );\n }\n } else {\n LoggerProxy.logger.warn(\n `Media:properties#getConnectionIpVersion --> failed to find selected candidate pair in getStats() results (transports.length=${transports.length}, selectedCandidatePairId=${transports[0]?.selectedCandidatePairId})`\n );\n }\n\n return undefined;\n }\n\n /**\n * Returns the type of a connection that has been established\n * It should be 'UDP' | 'TCP' | 'TURN-TLS' | 'TURN-TCP' | 'TURN-UDP' | 'unknown'\n *\n * If connection was not established, it returns 'unknown'\n *\n * @param {Array<any>} allStatsReports array of RTC stats reports\n * @returns {string}\n */\n private getConnectionType(allStatsReports: any[]) {\n const successfulCandidatePairs = allStatsReports.filter(\n (report) => report.type === 'candidate-pair' && report.state?.toLowerCase() === 'succeeded'\n );\n\n let foundConnectionType = 'unknown';\n\n // all of the successful pairs should have the same connection type, so just return the type for the first one\n successfulCandidatePairs.some((pair) => {\n const localCandidate = allStatsReports.find(\n (report) => report.type === 'local-candidate' && report.id === pair.localCandidateId\n );\n\n if (localCandidate === undefined) {\n LoggerProxy.logger.warn(\n `Media:properties#getConnectionType --> failed to find local candidate \"${pair.localCandidateId}\" in getStats() results`\n );\n\n return false;\n }\n\n let connectionType;\n\n if (localCandidate.relayProtocol) {\n connectionType = `TURN-${localCandidate.relayProtocol.toUpperCase()}`;\n } else {\n connectionType = localCandidate.protocol?.toUpperCase(); // it will be UDP or TCP\n }\n\n if (connectionType) {\n foundConnectionType = connectionType;\n\n return true;\n }\n LoggerProxy.logger.warn(\n `Media:properties#getConnectionType --> missing localCandidate.protocol, candidateType=${localCandidate.candidateType}`\n );\n\n return false;\n });\n\n if (foundConnectionType === 'unknown') {\n const candidatePairStates = allStatsReports\n .filter((report) => report.type === 'candidate-pair')\n .map((report) => report.state);\n\n LoggerProxy.logger.warn(\n `Media:properties#getConnectionType --> all candidate pair states: ${JSON.stringify(\n candidatePairStates\n )}`\n );\n }\n\n return foundConnectionType;\n }\n\n /**\n * Returns information about current webrtc media connection\n *\n * @returns {Promise<Object>}\n */\n async getCurrentConnectionInfo(): Promise<{\n connectionType: string;\n ipVersion?: IPVersion;\n selectedCandidatePairChanges: number;\n numTransports: number;\n }> {\n try {\n const allStatsReports = [];\n\n await new Promise((resolve, reject) => {\n const timeout = setTimeout(() => {\n reject(new Error('timed out'));\n }, 1000);\n\n this.webrtcMediaConnection\n .getStats()\n .then((statsResult) => {\n clearTimeout(timeout);\n statsResult.forEach((report) => allStatsReports.push(report));\n resolve(allStatsReports);\n })\n .catch((error) => {\n clearTimeout(timeout);\n reject(error);\n });\n });\n\n const connectionType = this.getConnectionType(allStatsReports);\n const rtcPeerconnection =\n this.webrtcMediaConnection.multistreamConnection?.pc.pc ||\n this.webrtcMediaConnection.mediaConnection?.pc;\n const ipVersion = this.getConnectionIpVersion(rtcPeerconnection, allStatsReports);\n const {selectedCandidatePairChanges, numTransports} = this.getTransportInfo(allStatsReports);\n\n return {\n connectionType,\n ipVersion,\n selectedCandidatePairChanges,\n numTransports,\n };\n } catch (error) {\n LoggerProxy.logger.warn(\n `Media:properties#getCurrentConnectionInfo --> getStats() failed: ${error}`\n );\n\n return {\n connectionType: 'unknown',\n ipVersion: undefined,\n selectedCandidatePairChanges: -1,\n numTransports: 0,\n };\n }\n }\n}\n"],"mappings":"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"}
1
+ {"version":3,"names":["_tsSdp","require","_lodash","_metrics","_interopRequireDefault","_constants","_loggerProxy","_MediaConnectionAwaiter","_constants2","_createForOfIteratorHelper","o","allowArrayLike","it","_Symbol","_Symbol$iterator","_Array$isArray","_unsupportedIterableToArray","length","i","F","s","n","done","value","e","_e","f","TypeError","normalCompletion","didErr","err","call","step","next","_e2","return","minLen","_arrayLikeToArray","Object","prototype","toString","slice","constructor","name","_Array$from","test","arr","len","arr2","Array","ownKeys","r","t","_Object$keys2","_Object$getOwnPropertySymbols","filter","_Object$getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread","arguments","forEach","_defineProperty2","default","_Object$getOwnPropertyDescriptors","_Object$defineProperties","_Object$defineProperty","MediaProperties","exports","_this","_classCallCheck2","MEETINGS","webrtcMediaConnection","mediaDirection","receiveAudio","receiveVideo","receiveShare","sendAudio","sendVideo","sendShare","videoStream","audioStream","shareVideoStream","shareAudioStream","remoteShareStream","undefined","remoteAudioStream","remoteVideoStream","remoteQualityLevel","QUALITY_LEVELS","HIGH","mediaSettings","videoDeviceId","throttledSendMediaIssueMetric","throttle","eventPayload","Metrics","sendBehavioralMetric","BEHAVIORAL_METRICS","MEDIA_ISSUE_DETECTED","_keys","mediaIssueCounters","key","_createClass2","getVideoDeviceId","setMediaDirection","setMediaSettings","type","values","setMediaPeerConnection","mediaPeerConnection","setLocalVideoStream","setLocalAudioStream","setLocalShareVideoStream","setLocalShareAudioStream","setRemoteQualityLevel","setRemoteShareStream","setRemoteAudioStream","setRemoteVideoStream","setVideoDeviceId","deviceId","unsetPeerConnection","flush","unsetRemoteMedia","unsetRemoteShareStream","unsetRemoteStreams","hasLocalShareStream","waitForMediaConnectionConnected","mediaConnectionAwaiter","MediaConnectionAwaiter","getTransportInfo","allStatsReports","transports","report","LoggerProxy","logger","warn","concat","selectedCandidatePairChanges","numTransports","isIPv6","ip","includes","getConnectionIpVersion","selectedCandidatePair","selectedCandidatePairId","find","id","selected","localCandidate","localCandidateId","address","localSdp","localDescription","sdp","parsedSdp","parse","_iterator","avMedia","_step","mediaLine","matchingCandidate","iceInfo","candidates","candidate","port","connectionAddress","error","_transports$","getConnectionType","successfulCandidatePairs","_report$state","state","toLowerCase","foundConnectionType","some","pair","connectionType","relayProtocol","toUpperCase","_localCandidate$proto","protocol","candidateType","candidatePairStates","map","_stringify","_getCurrentConnectionInfo","_asyncToGenerator2","_regenerator","mark","_callee","_this2","_this$webrtcMediaConn","_this$webrtcMediaConn2","rtcPeerconnection","ipVersion","_this$getTransportInf","wrap","_callee$","_context","prev","_promise","resolve","reject","timeout","setTimeout","Error","getStats","then","statsResult","clearTimeout","catch","multistreamConnection","pc","mediaConnection","abrupt","t0","stop","getCurrentConnectionInfo","sendMediaIssueMetric","issueType","issueSubType","correlationId","count"],"sources":["properties.ts"],"sourcesContent":["/* eslint-disable class-methods-use-this */\nimport {\n LocalCameraStream,\n LocalMicrophoneStream,\n LocalDisplayStream,\n LocalSystemAudioStream,\n RemoteStream,\n} from '@webex/media-helpers';\n\nimport {parse} from '@webex/ts-sdp';\nimport {ClientEvent} from '@webex/internal-plugin-metrics';\nimport {throttle} from 'lodash';\nimport Metrics from '../metrics';\nimport {MEETINGS, QUALITY_LEVELS} from '../constants';\nimport LoggerProxy from '../common/logs/logger-proxy';\nimport MediaConnectionAwaiter from './MediaConnectionAwaiter';\nimport BEHAVIORAL_METRICS from '../metrics/constants';\n\nexport type MediaDirection = {\n sendAudio: boolean;\n sendVideo: boolean;\n sendShare: boolean;\n receiveAudio: boolean;\n receiveVideo: boolean;\n receiveShare: boolean;\n};\n\nexport type IPVersion = ClientEvent['payload']['ipVersion'];\n\n/**\n * @class MediaProperties\n */\nexport default class MediaProperties {\n audioStream?: LocalMicrophoneStream;\n mediaDirection: MediaDirection;\n mediaSettings: any;\n webrtcMediaConnection: any;\n remoteAudioStream: RemoteStream;\n remoteQualityLevel: any;\n remoteShareStream: RemoteStream;\n remoteVideoStream: RemoteStream;\n shareVideoStream?: LocalDisplayStream;\n shareAudioStream?: LocalSystemAudioStream;\n videoDeviceId: any;\n videoStream?: LocalCameraStream;\n namespace = MEETINGS;\n mediaIssueCounters: {[key: string]: number} = {};\n throttledSendMediaIssueMetric: ReturnType<typeof throttle>;\n\n /**\n * @param {Object} [options] -- to auto construct\n * @returns {MediaProperties}\n */\n constructor() {\n this.webrtcMediaConnection = null;\n this.mediaDirection = {\n receiveAudio: false,\n receiveVideo: false,\n receiveShare: false,\n sendAudio: false,\n sendVideo: false,\n sendShare: false,\n };\n this.videoStream = null;\n this.audioStream = null;\n this.shareVideoStream = null;\n this.shareAudioStream = null;\n this.remoteShareStream = undefined;\n this.remoteAudioStream = undefined;\n this.remoteVideoStream = undefined;\n this.remoteQualityLevel = QUALITY_LEVELS.HIGH;\n this.mediaSettings = {};\n this.videoDeviceId = null;\n\n this.throttledSendMediaIssueMetric = throttle((eventPayload) => {\n Metrics.sendBehavioralMetric(BEHAVIORAL_METRICS.MEDIA_ISSUE_DETECTED, {\n ...eventPayload,\n });\n Object.keys(this.mediaIssueCounters).forEach((key) => {\n this.mediaIssueCounters[key] = 0;\n });\n }, 1000 * 60 * 5); // at most once every 5 minutes\n }\n\n /**\n * Retrieves the preferred video input device\n * @returns {Object|null}\n */\n getVideoDeviceId() {\n return this.videoDeviceId || null;\n }\n\n setMediaDirection(mediaDirection) {\n this.mediaDirection = mediaDirection;\n }\n\n setMediaSettings(type, values) {\n this.mediaSettings[type] = values;\n }\n\n setMediaPeerConnection(mediaPeerConnection) {\n this.webrtcMediaConnection = mediaPeerConnection;\n }\n\n setLocalVideoStream(videoStream?: LocalCameraStream) {\n this.videoStream = videoStream;\n }\n\n setLocalAudioStream(audioStream?: LocalMicrophoneStream) {\n this.audioStream = audioStream;\n }\n\n setLocalShareVideoStream(shareVideoStream?: LocalDisplayStream) {\n this.shareVideoStream = shareVideoStream;\n }\n\n setLocalShareAudioStream(shareAudioStream?: LocalSystemAudioStream) {\n this.shareAudioStream = shareAudioStream;\n }\n\n setRemoteQualityLevel(remoteQualityLevel) {\n this.remoteQualityLevel = remoteQualityLevel;\n }\n\n setRemoteShareStream(remoteShareStream: RemoteStream) {\n this.remoteShareStream = remoteShareStream;\n }\n\n /**\n * Sets the remote audio stream\n * @param {RemoteStream} remoteAudioStream RemoteStream to save\n * @returns {void}\n */\n setRemoteAudioStream(remoteAudioStream: RemoteStream) {\n this.remoteAudioStream = remoteAudioStream;\n }\n\n /**\n * Sets the remote video stream\n * @param {RemoteStream} remoteVideoStream RemoteStream to save\n * @returns {void}\n */\n setRemoteVideoStream(remoteVideoStream: RemoteStream) {\n this.remoteVideoStream = remoteVideoStream;\n }\n\n /**\n * Stores the preferred video input device\n * @param {string} deviceId Preferred video input device\n * @returns {void}\n */\n setVideoDeviceId(deviceId: string) {\n this.videoDeviceId = deviceId;\n }\n\n /**\n * Clears the webrtcMediaConnection. This method should be called after\n * peer connection is closed and no longer needed.\n * @returns {void}\n */\n unsetPeerConnection() {\n this.webrtcMediaConnection = null;\n this.throttledSendMediaIssueMetric.flush();\n }\n\n /**\n * Removes both remote audio and video from class instance\n * @returns {void}\n */\n unsetRemoteMedia() {\n this.remoteAudioStream = null;\n this.remoteVideoStream = null;\n }\n\n unsetRemoteShareStream() {\n this.remoteShareStream = null;\n }\n\n /**\n * Unsets all remote streams\n * @returns {void}\n */\n unsetRemoteStreams() {\n this.unsetRemoteMedia();\n this.unsetRemoteShareStream();\n }\n\n /**\n * Returns if we have at least one local share stream or not.\n * @returns {Boolean}\n */\n hasLocalShareStream() {\n return !!(this.shareAudioStream || this.shareVideoStream);\n }\n\n /**\n * Waits for the webrtc media connection to be connected.\n *\n * @returns {Promise<void>}\n */\n waitForMediaConnectionConnected(): Promise<void> {\n const mediaConnectionAwaiter = new MediaConnectionAwaiter({\n webrtcMediaConnection: this.webrtcMediaConnection,\n });\n\n return mediaConnectionAwaiter.waitForMediaConnectionConnected();\n }\n\n /**\n * Returns ICE transport information:\n * - selectedCandidatePairChanges - number of times the selected candidate pair was changed, it should be at least 1 for successful connections\n * it will be -1 if browser doesn't supply this information\n * - numTransports - number of transports (should be 1 if we're using bundle)\n *\n * @param {Array<any>} allStatsReports array of RTC stats reports\n * @returns {Object}\n */\n private getTransportInfo(allStatsReports: any[]): {\n selectedCandidatePairChanges: number;\n numTransports: number;\n } {\n const transports = allStatsReports.filter((report) => report.type === 'transport');\n\n if (transports.length > 1) {\n LoggerProxy.logger.warn(\n `Media:properties#getSelectedCandidatePairChanges --> found more than 1 transport: ${transports.length}`\n );\n }\n\n return {\n selectedCandidatePairChanges:\n transports.length > 0 && transports[0].selectedCandidatePairChanges !== undefined\n ? transports[0].selectedCandidatePairChanges\n : -1,\n numTransports: transports.length,\n };\n }\n\n /**\n * Checks if the given IP address is IPv6\n * @param {string} ip address to check\n * @returns {boolean} true if the address is IPv6, false otherwise\n */\n private isIPv6(ip: string): boolean {\n return ip.includes(':');\n }\n\n /** Finds out if we connected using IPv4 or IPv6\n * @param {RTCPeerConnection} webrtcMediaConnection\n * @param {Array<any>} allStatsReports array of RTC stats reports\n * @returns {string} IPVersion\n */\n private getConnectionIpVersion(\n webrtcMediaConnection: RTCPeerConnection,\n allStatsReports: any[]\n ): IPVersion | undefined {\n const transports = allStatsReports.filter((report) => report.type === 'transport');\n\n let selectedCandidatePair;\n\n if (transports.length > 0 && transports[0].selectedCandidatePairId) {\n selectedCandidatePair = allStatsReports.find(\n (report) =>\n report.type === 'candidate-pair' && report.id === transports[0].selectedCandidatePairId\n );\n } else {\n // Firefox doesn't have selectedCandidatePairId, but has selected property on the candidate pair\n selectedCandidatePair = allStatsReports.find(\n (report) => report.type === 'candidate-pair' && report.selected\n );\n }\n\n if (selectedCandidatePair) {\n const localCandidate = allStatsReports.find(\n (report) =>\n report.type === 'local-candidate' && report.id === selectedCandidatePair.localCandidateId\n );\n\n if (localCandidate) {\n if (localCandidate.address) {\n return this.isIPv6(localCandidate.address) ? 'IPv6' : 'IPv4';\n }\n\n try {\n // safari doesn't have address field on the candidate, so we have to use the port to look up the candidate in the SDP\n const localSdp = webrtcMediaConnection.localDescription.sdp;\n\n const parsedSdp = parse(localSdp);\n\n for (const mediaLine of parsedSdp.avMedia) {\n const matchingCandidate = mediaLine.iceInfo.candidates.find(\n (candidate) => candidate.port === localCandidate.port\n );\n if (matchingCandidate) {\n return this.isIPv6(matchingCandidate.connectionAddress) ? 'IPv6' : 'IPv4';\n }\n }\n\n LoggerProxy.logger.warn(\n `Media:properties#getConnectionIpVersion --> failed to find local candidate in the SDP for port ${localCandidate.port}`\n );\n } catch (error) {\n LoggerProxy.logger.warn(\n `Media:properties#getConnectionIpVersion --> error while trying to find candidate in local SDP:`,\n error\n );\n\n return undefined;\n }\n } else {\n LoggerProxy.logger.warn(\n `Media:properties#getConnectionIpVersion --> failed to find local candidate \"${selectedCandidatePair.localCandidateId}\" in getStats() results`\n );\n }\n } else {\n LoggerProxy.logger.warn(\n `Media:properties#getConnectionIpVersion --> failed to find selected candidate pair in getStats() results (transports.length=${transports.length}, selectedCandidatePairId=${transports[0]?.selectedCandidatePairId})`\n );\n }\n\n return undefined;\n }\n\n /**\n * Returns the type of a connection that has been established\n * It should be 'UDP' | 'TCP' | 'TURN-TLS' | 'TURN-TCP' | 'TURN-UDP' | 'unknown'\n *\n * If connection was not established, it returns 'unknown'\n *\n * @param {Array<any>} allStatsReports array of RTC stats reports\n * @returns {string}\n */\n private getConnectionType(allStatsReports: any[]) {\n const successfulCandidatePairs = allStatsReports.filter(\n (report) => report.type === 'candidate-pair' && report.state?.toLowerCase() === 'succeeded'\n );\n\n let foundConnectionType = 'unknown';\n\n // all of the successful pairs should have the same connection type, so just return the type for the first one\n successfulCandidatePairs.some((pair) => {\n const localCandidate = allStatsReports.find(\n (report) => report.type === 'local-candidate' && report.id === pair.localCandidateId\n );\n\n if (localCandidate === undefined) {\n LoggerProxy.logger.warn(\n `Media:properties#getConnectionType --> failed to find local candidate \"${pair.localCandidateId}\" in getStats() results`\n );\n\n return false;\n }\n\n let connectionType;\n\n if (localCandidate.relayProtocol) {\n connectionType = `TURN-${localCandidate.relayProtocol.toUpperCase()}`;\n } else {\n connectionType = localCandidate.protocol?.toUpperCase(); // it will be UDP or TCP\n }\n\n if (connectionType) {\n foundConnectionType = connectionType;\n\n return true;\n }\n LoggerProxy.logger.warn(\n `Media:properties#getConnectionType --> missing localCandidate.protocol, candidateType=${localCandidate.candidateType}`\n );\n\n return false;\n });\n\n if (foundConnectionType === 'unknown') {\n const candidatePairStates = allStatsReports\n .filter((report) => report.type === 'candidate-pair')\n .map((report) => report.state);\n\n LoggerProxy.logger.warn(\n `Media:properties#getConnectionType --> all candidate pair states: ${JSON.stringify(\n candidatePairStates\n )}`\n );\n }\n\n return foundConnectionType;\n }\n\n /**\n * Returns information about current webrtc media connection\n *\n * @returns {Promise<Object>}\n */\n async getCurrentConnectionInfo(): Promise<{\n connectionType: string;\n ipVersion?: IPVersion;\n selectedCandidatePairChanges: number;\n numTransports: number;\n }> {\n try {\n const allStatsReports = [];\n\n await new Promise((resolve, reject) => {\n const timeout = setTimeout(() => {\n reject(new Error('timed out'));\n }, 1000);\n\n this.webrtcMediaConnection\n .getStats()\n .then((statsResult) => {\n clearTimeout(timeout);\n statsResult.forEach((report) => allStatsReports.push(report));\n resolve(allStatsReports);\n })\n .catch((error) => {\n clearTimeout(timeout);\n reject(error);\n });\n });\n\n const connectionType = this.getConnectionType(allStatsReports);\n const rtcPeerconnection =\n this.webrtcMediaConnection.multistreamConnection?.pc.pc ||\n this.webrtcMediaConnection.mediaConnection?.pc;\n const ipVersion = this.getConnectionIpVersion(rtcPeerconnection, allStatsReports);\n const {selectedCandidatePairChanges, numTransports} = this.getTransportInfo(allStatsReports);\n\n return {\n connectionType,\n ipVersion,\n selectedCandidatePairChanges,\n numTransports,\n };\n } catch (error) {\n LoggerProxy.logger.warn(\n `Media:properties#getCurrentConnectionInfo --> getStats() failed: ${error}`\n );\n\n return {\n connectionType: 'unknown',\n ipVersion: undefined,\n selectedCandidatePairChanges: -1,\n numTransports: 0,\n };\n }\n }\n\n /**\n * Sends a metric about a media issue. Metrics are throttled so that we don't\n * send too many of them, but include a count so that we know how many issues\n * were detected.\n *\n * @param {string} issueType\n * @param {string} issueSubType\n * @param {string} correlationId\n * @returns {void}\n */\n public sendMediaIssueMetric(issueType: string, issueSubType: string, correlationId) {\n const key = `${issueType}_${issueSubType}`;\n\n const count = (this.mediaIssueCounters[key] || 0) + 1;\n\n this.mediaIssueCounters[key] = count;\n\n this.throttledSendMediaIssueMetric({\n correlationId,\n ...this.mediaIssueCounters,\n });\n }\n}\n"],"mappings":"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"}
@@ -57,7 +57,10 @@ var InMeetingActions = exports.default = /*#__PURE__*/(0, _createClass2.default)
57
57
  (0, _defineProperty2.default)(this, "isLocalRecordingStarted", null);
58
58
  (0, _defineProperty2.default)(this, "isLocalRecordingPaused", null);
59
59
  (0, _defineProperty2.default)(this, "isManualCaptionActive", null);
60
+ (0, _defineProperty2.default)(this, "isLocalStreamingStarted", null);
61
+ (0, _defineProperty2.default)(this, "isLocalStreamingStopped", null);
60
62
  (0, _defineProperty2.default)(this, "isSaveTranscriptsEnabled", null);
63
+ (0, _defineProperty2.default)(this, "isSpokenLanguageAutoDetectionEnabled", null);
61
64
  (0, _defineProperty2.default)(this, "isWebexAssistantActive", null);
62
65
  (0, _defineProperty2.default)(this, "canViewCaptionPanel", null);
63
66
  (0, _defineProperty2.default)(this, "isRealTimeTranslationEnabled", null);
@@ -105,6 +108,7 @@ var InMeetingActions = exports.default = /*#__PURE__*/(0, _createClass2.default)
105
108
  (0, _defineProperty2.default)(this, "canDoVideo", null);
106
109
  (0, _defineProperty2.default)(this, "canAnnotate", null);
107
110
  (0, _defineProperty2.default)(this, "canUseVoip", null);
111
+ (0, _defineProperty2.default)(this, "showAutoEndMeetingWarning", null);
108
112
  (0, _defineProperty2.default)(this, "supportHQV", null);
109
113
  (0, _defineProperty2.default)(this, "enforceVirtualBackground", null);
110
114
  (0, _defineProperty2.default)(this, "supportHDV", null);
@@ -163,9 +167,12 @@ var InMeetingActions = exports.default = /*#__PURE__*/(0, _createClass2.default)
163
167
  isLocalRecordingStarted: _this.isLocalRecordingStarted,
164
168
  isLocalRecordingStopped: _this.isLocalRecordingStopped,
165
169
  isLocalRecordingPaused: _this.isLocalRecordingPaused,
170
+ isLocalStreamingStarted: _this.isLocalStreamingStarted,
171
+ isLocalStreamingStopped: _this.isLocalStreamingStopped,
166
172
  canStopManualCaption: _this.canStopManualCaption,
167
173
  isManualCaptionActive: _this.isManualCaptionActive,
168
174
  isSaveTranscriptsEnabled: _this.isSaveTranscriptsEnabled,
175
+ isSpokenLanguageAutoDetectionEnabled: _this.isSpokenLanguageAutoDetectionEnabled,
169
176
  isWebexAssistantActive: _this.isWebexAssistantActive,
170
177
  canViewCaptionPanel: _this.canViewCaptionPanel,
171
178
  isRealTimeTranslationEnabled: _this.isRealTimeTranslationEnabled,
@@ -204,6 +211,7 @@ var InMeetingActions = exports.default = /*#__PURE__*/(0, _createClass2.default)
204
211
  canShareFile: _this.canShareFile,
205
212
  canShareApplication: _this.canShareApplication,
206
213
  canShareCamera: _this.canShareCamera,
214
+ showAutoEndMeetingWarning: _this.showAutoEndMeetingWarning,
207
215
  canShareDesktop: _this.canShareDesktop,
208
216
  canShareContent: _this.canShareContent,
209
217
  canTransferFile: _this.canTransferFile,
@@ -1 +1 @@
1
- {"version":3,"names":["_constants","require","InMeetingActions","exports","default","_createClass2","_this","_classCallCheck2","_defineProperty2","MEETINGS","canInviteNewParticipants","canAdmitParticipant","canLock","canUnlock","canAssignHost","canSetMuteOnEntry","canUnsetMuteOnEntry","canSetDisallowUnmute","canSetMuted","canUnsetMuted","canSetPresenter","canUnsetPresenter","canUnsetDisallowUnmute","canStartRecording","canPauseRecording","canResumeRecording","canStopRecording","isPremiseRecordingEnabled","canRaiseHand","canLowerAllHands","canLowerSomeoneElsesHand","bothLeaveAndEndMeetingAvailable","canEnableClosedCaption","canStartTranscribing","canStopTranscribing","isClosedCaptionActive","canStartManualCaption","isLocalRecordingStarted","isLocalRecordingStopped","isLocalRecordingPaused","canStopManualCaption","isManualCaptionActive","isSaveTranscriptsEnabled","isWebexAssistantActive","canViewCaptionPanel","isRealTimeTranslationEnabled","canSelectSpokenLanguages","waitingForOthersToJoin","canSendReactions","canManageBreakout","canStartBreakout","canBroadcastMessageToBreakout","canAdmitLobbyToBreakout","isBreakoutPreassignmentsEnabled","canUserAskForHelp","canUserRenameSelfAndObserved","canUserRenameOthers","canMuteAll","canUnmuteAll","canEnableHardMute","canDisableHardMute","canEnableMuteOnEntry","canDisableMuteOnEntry","canEnableReactions","canDisableReactions","canEnableReactionDisplayNames","canDisableReactionDisplayNames","canUpdateShareControl","canEnableViewTheParticipantsList","canDisableViewTheParticipantsList","canEnableViewTheParticipantsListPanelist","canDisableViewTheParticipantsListPanelist","canEnableShowAttendeeCount","canDisableShowAttendeeCount","canEnableRaiseHand","canDisableRaiseHand","canEnableVideo","canDisableVideo","canShareFile","canShareApplication","canShareCamera","canShareDesktop","canShareContent","canTransferFile","canRealtimeCloseCaption","canRealtimeCloseCaptionManual","canChat","canDoVideo","canAnnotate","canUseVoip","enforceVirtualBackground","supportHQV","supportHDV","canShareWhiteBoard","canPollingAndQA","canStartWebcast","canStopWebcast","canShowStageView","canEnableStageView","canDisableStageView","isPracticeSessionOn","isPracticeSessionOff","canStartPracticeSession","canStopPracticeSession","requiresPostMeetingDataConsentPrompt","canEnableAnnotation","canDisableAnnotation","canEnableRemoteDesktopControl","canDisableRemoteDesktopControl","canMoveToLobby","canEnablePollingQA","canDisablePollingQA","actions","old","get","changed","_keys","forEach","actionKey","actionValue","undefined"],"sources":["in-meeting-actions.ts"],"sourcesContent":["/*!\n * Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.\n */\n\nimport {MEETINGS} from '../constants';\nimport ControlsOptionsUtil from '../controls-options-manager/util';\n\n/**\n * IInMeetingActions\n * Type for In-Meeting Actions\n */\ninterface IInMeetingActions {\n canInviteNewParticipants?: boolean;\n canAdmitParticipant?: boolean;\n canLock?: boolean;\n canUnlock?: boolean;\n canSetMuteOnEntry?: boolean;\n canUnsetMuteOnEntry?: boolean;\n canSetDisallowUnmute?: boolean;\n canUnsetDisallowUnmute?: boolean;\n canSetMuted?: boolean;\n canUnsetMuted?: boolean;\n canAssignHost?: boolean;\n canSetPresenter?: boolean;\n canUnsetPresenter?: boolean;\n canStartRecording?: boolean;\n canPauseRecording?: boolean;\n canResumeRecording?: boolean;\n isPremiseRecordingEnabled?: boolean;\n canStopRecording?: boolean;\n canRaiseHand?: boolean;\n canLowerAllHands?: boolean;\n canLowerSomeoneElsesHand?: boolean;\n bothLeaveAndEndMeetingAvailable?: boolean;\n canEnableClosedCaption?: boolean;\n canStartTranscribing?: boolean;\n canStopTranscribing?: boolean;\n isClosedCaptionActive?: boolean;\n canStartManualCaption?: boolean;\n canStopManualCaption?: boolean;\n isLocalRecordingStarted?: boolean;\n isLocalRecordingStopped?: boolean;\n isLocalRecordingPaused?: boolean;\n\n isManualCaptionActive?: boolean;\n isSaveTranscriptsEnabled?: boolean;\n isWebexAssistantActive?: boolean;\n canViewCaptionPanel?: boolean;\n isRealTimeTranslationEnabled?: boolean;\n canSelectSpokenLanguages?: boolean;\n waitingForOthersToJoin?: boolean;\n canSendReactions?: boolean;\n canManageBreakout?: boolean;\n canStartBreakout?: boolean;\n canBroadcastMessageToBreakout?: boolean;\n canAdmitLobbyToBreakout?: boolean;\n isBreakoutPreassignmentsEnabled?: boolean;\n canUserAskForHelp?: boolean;\n canUserRenameSelfAndObserved?: boolean;\n canUserRenameOthers?: boolean;\n canMuteAll?: boolean;\n canUnmuteAll?: boolean;\n canEnableHardMute?: boolean;\n canDisableHardMute?: boolean;\n canEnableMuteOnEntry?: boolean;\n canDisableMuteOnEntry?: boolean;\n canEnableReactions?: boolean;\n canDisableReactions?: boolean;\n canEnableReactionDisplayNames?: boolean;\n canDisableReactionDisplayNames?: boolean;\n canUpdateShareControl?: boolean;\n canEnableViewTheParticipantsList?: boolean;\n canDisableViewTheParticipantsList?: boolean;\n canEnableViewTheParticipantsListPanelist?: boolean;\n canDisableViewTheParticipantsListPanelist?: boolean;\n canEnableShowAttendeeCount?: boolean;\n canDisableShowAttendeeCount?: boolean;\n canEnableRaiseHand?: boolean;\n canDisableRaiseHand?: boolean;\n canEnableVideo?: boolean;\n canDisableVideo?: boolean;\n canShareFile?: boolean;\n canShareApplication?: boolean;\n canShareCamera?: boolean;\n canShareDesktop?: boolean;\n canShareContent?: boolean;\n canTransferFile?: boolean;\n canRealtimeCloseCaption?: boolean;\n canRealtimeCloseCaptionManual?: boolean;\n canChat?: boolean;\n canDoVideo?: boolean;\n canAnnotate?: boolean;\n canUseVoip?: boolean;\n supportHQV?: boolean;\n supportHDV?: boolean;\n canShareWhiteBoard?: boolean;\n enforceVirtualBackground?: boolean;\n canPollingAndQA?: boolean;\n canStartWebcast?: boolean;\n canStopWebcast?: boolean;\n canShowStageView?: boolean;\n canEnableStageView?: boolean;\n canDisableStageView?: boolean;\n isPracticeSessionOn?: boolean;\n isPracticeSessionOff?: boolean;\n canStartPracticeSession?: boolean;\n canStopPracticeSession?: boolean;\n requiresPostMeetingDataConsentPrompt?: boolean;\n canEnableAnnotation?: boolean;\n canDisableAnnotation?: boolean;\n canEnableRemoteDesktopControl?: boolean;\n canDisableRemoteDesktopControl?: boolean;\n canMoveToLobby?: boolean;\n canEnablePollingQA?: boolean;\n canDisablePollingQA?: boolean;\n}\n\n/**\n * @class InMeetingActions\n */\nexport default class InMeetingActions implements IInMeetingActions {\n namespace = MEETINGS;\n\n canInviteNewParticipants = null;\n\n canAdmitParticipant = null;\n\n canLock = null;\n\n canUnlock = null;\n\n canAssignHost = null;\n\n canStartRecording = null;\n\n canPauseRecording = null;\n\n canResumeRecording = null;\n\n isPremiseRecordingEnabled = null;\n\n canStopRecording = null;\n\n canSetMuteOnEntry = null;\n\n canSetPresenter = null;\n\n canUnsetPresenter = null;\n\n canUnsetMuteOnEntry = null;\n\n canSetDisallowUnmute = null;\n\n canUnsetDisallowUnmute = null;\n\n canSetMuted = null;\n\n canUnsetMuted = null;\n\n canRaiseHand = null;\n\n canLowerAllHands = null;\n\n canLowerSomeoneElsesHand = null;\n\n bothLeaveAndEndMeetingAvailable = null;\n\n canEnableClosedCaption = null;\n\n canStartTranscribing = null;\n\n canStopTranscribing = null;\n\n isClosedCaptionActive = null;\n\n canStartManualCaption = null;\n\n canStopManualCaption = null;\n\n isLocalRecordingStopped = null;\n\n isLocalRecordingStarted = null;\n\n isLocalRecordingPaused = null;\n\n isManualCaptionActive = null;\n\n isSaveTranscriptsEnabled = null;\n\n isWebexAssistantActive = null;\n\n canViewCaptionPanel = null;\n\n isRealTimeTranslationEnabled = null;\n\n canSelectSpokenLanguages = null;\n\n waitingForOthersToJoin = null;\n\n canSendReactions = null;\n\n canManageBreakout = null;\n\n canStartBreakout = null;\n\n canBroadcastMessageToBreakout = null;\n\n canAdmitLobbyToBreakout = null;\n\n isBreakoutPreassignmentsEnabled = null;\n\n canUserAskForHelp = null;\n\n canUserRenameSelfAndObserved = null;\n\n canUserRenameOthers = null;\n\n canMuteAll = null;\n\n canUnmuteAll = null;\n\n canEnableHardMute = null;\n\n canDisableHardMute = null;\n\n canEnableMuteOnEntry = null;\n\n canDisableMuteOnEntry = null;\n\n canEnableReactions = null;\n\n canDisableReactions = null;\n\n canEnableReactionDisplayNames = null;\n\n canDisableReactionDisplayNames = null;\n\n canUpdateShareControl = null;\n\n canEnableViewTheParticipantsList = null;\n\n canDisableViewTheParticipantsList = null;\n\n canEnableViewTheParticipantsListPanelist = null;\n\n canDisableViewTheParticipantsListPanelist = null;\n\n canEnableShowAttendeeCount = null;\n\n canDisableShowAttendeeCount = null;\n\n canEnableRaiseHand = null;\n\n canDisableRaiseHand = null;\n\n canEnableVideo = null;\n\n canDisableVideo = null;\n\n canShareFile = null;\n\n canShareApplication = null;\n\n canShareCamera = null;\n\n canShareDesktop = null;\n\n canShareContent = null;\n\n canTransferFile = null;\n\n canRealtimeCloseCaption = null;\n\n canRealtimeCloseCaptionManual = null;\n\n canChat = null;\n\n canDoVideo = null;\n\n canAnnotate = null;\n\n canUseVoip = null;\n\n supportHQV = null;\n\n enforceVirtualBackground = null;\n\n supportHDV = null;\n\n canShareWhiteBoard = null;\n\n canPollingAndQA = null;\n\n canStartWebcast = null;\n\n canStopWebcast = null;\n\n canShowStageView = null;\n\n canEnableStageView = null;\n\n canDisableStageView = null;\n\n isPracticeSessionOn = null;\n\n isPracticeSessionOff = null;\n\n canStartPracticeSession = null;\n\n canStopPracticeSession = null;\n\n requiresPostMeetingDataConsentPrompt = null;\n\n canEnableAnnotation = null;\n\n canDisableAnnotation = null;\n\n canEnableRemoteDesktopControl = null;\n\n canDisableRemoteDesktopControl = null;\n\n canMoveToLobby = null;\n\n canEnablePollingQA = null;\n\n canDisablePollingQA = null;\n\n /**\n * Returns all meeting action options\n * @returns {Object}\n */\n get = (): IInMeetingActions => ({\n canInviteNewParticipants: this.canInviteNewParticipants,\n canAdmitParticipant: this.canAdmitParticipant,\n canLock: this.canLock,\n canUnlock: this.canUnlock,\n canAssignHost: this.canAssignHost,\n canSetMuteOnEntry: this.canSetMuteOnEntry,\n canUnsetMuteOnEntry: this.canUnsetMuteOnEntry,\n canSetDisallowUnmute: this.canSetDisallowUnmute,\n canSetMuted: this.canSetMuted,\n canUnsetMuted: this.canUnsetMuted,\n canSetPresenter: this.canSetPresenter,\n canUnsetPresenter: this.canUnsetPresenter,\n canUnsetDisallowUnmute: this.canUnsetDisallowUnmute,\n canStartRecording: this.canStartRecording,\n canPauseRecording: this.canPauseRecording,\n canResumeRecording: this.canResumeRecording,\n canStopRecording: this.canStopRecording,\n isPremiseRecordingEnabled: this.isPremiseRecordingEnabled,\n canRaiseHand: this.canRaiseHand,\n canLowerAllHands: this.canLowerAllHands,\n canLowerSomeoneElsesHand: this.canLowerSomeoneElsesHand,\n bothLeaveAndEndMeetingAvailable: this.bothLeaveAndEndMeetingAvailable,\n canEnableClosedCaption: this.canEnableClosedCaption,\n canStartTranscribing: this.canStartTranscribing,\n canStopTranscribing: this.canStopTranscribing,\n isClosedCaptionActive: this.isClosedCaptionActive,\n canStartManualCaption: this.canStartManualCaption,\n isLocalRecordingStarted: this.isLocalRecordingStarted,\n isLocalRecordingStopped: this.isLocalRecordingStopped,\n isLocalRecordingPaused: this.isLocalRecordingPaused,\n canStopManualCaption: this.canStopManualCaption,\n isManualCaptionActive: this.isManualCaptionActive,\n isSaveTranscriptsEnabled: this.isSaveTranscriptsEnabled,\n isWebexAssistantActive: this.isWebexAssistantActive,\n canViewCaptionPanel: this.canViewCaptionPanel,\n isRealTimeTranslationEnabled: this.isRealTimeTranslationEnabled,\n canSelectSpokenLanguages: this.canSelectSpokenLanguages,\n waitingForOthersToJoin: this.waitingForOthersToJoin,\n canSendReactions: this.canSendReactions,\n canManageBreakout: this.canManageBreakout,\n canStartBreakout: this.canStartBreakout,\n canBroadcastMessageToBreakout: this.canBroadcastMessageToBreakout,\n canAdmitLobbyToBreakout: this.canAdmitLobbyToBreakout,\n isBreakoutPreassignmentsEnabled: this.isBreakoutPreassignmentsEnabled,\n canUserAskForHelp: this.canUserAskForHelp,\n canUserRenameSelfAndObserved: this.canUserRenameSelfAndObserved,\n canUserRenameOthers: this.canUserRenameOthers,\n canMuteAll: this.canMuteAll,\n canUnmuteAll: this.canUnmuteAll,\n canEnableHardMute: this.canEnableHardMute,\n canDisableHardMute: this.canDisableHardMute,\n canEnableMuteOnEntry: this.canEnableMuteOnEntry,\n canDisableMuteOnEntry: this.canDisableMuteOnEntry,\n canEnableReactions: this.canEnableReactions,\n canDisableReactions: this.canDisableReactions,\n canEnableReactionDisplayNames: this.canEnableReactionDisplayNames,\n canDisableReactionDisplayNames: this.canDisableReactionDisplayNames,\n canUpdateShareControl: this.canUpdateShareControl,\n canEnableViewTheParticipantsList: this.canEnableViewTheParticipantsList,\n canDisableViewTheParticipantsList: this.canDisableViewTheParticipantsList,\n canEnableViewTheParticipantsListPanelist: this.canEnableViewTheParticipantsListPanelist,\n canDisableViewTheParticipantsListPanelist: this.canDisableViewTheParticipantsListPanelist,\n canEnableShowAttendeeCount: this.canEnableShowAttendeeCount,\n canDisableShowAttendeeCount: this.canDisableShowAttendeeCount,\n canEnableRaiseHand: this.canEnableRaiseHand,\n canDisableRaiseHand: this.canDisableRaiseHand,\n canEnableVideo: this.canEnableVideo,\n canDisableVideo: this.canDisableVideo,\n canShareFile: this.canShareFile,\n canShareApplication: this.canShareApplication,\n canShareCamera: this.canShareCamera,\n canShareDesktop: this.canShareDesktop,\n canShareContent: this.canShareContent,\n canTransferFile: this.canTransferFile,\n canRealtimeCloseCaption: this.canRealtimeCloseCaption,\n canRealtimeCloseCaptionManual: this.canRealtimeCloseCaptionManual,\n canChat: this.canChat,\n canDoVideo: this.canDoVideo,\n canAnnotate: this.canAnnotate,\n canUseVoip: this.canUseVoip,\n enforceVirtualBackground: this.enforceVirtualBackground,\n supportHQV: this.supportHQV,\n supportHDV: this.supportHDV,\n canShareWhiteBoard: this.canShareWhiteBoard,\n canPollingAndQA: this.canPollingAndQA,\n canStartWebcast: this.canStartWebcast,\n canStopWebcast: this.canStopWebcast,\n canShowStageView: this.canShowStageView,\n canEnableStageView: this.canEnableStageView,\n canDisableStageView: this.canDisableStageView,\n isPracticeSessionOn: this.isPracticeSessionOn,\n isPracticeSessionOff: this.isPracticeSessionOff,\n canStartPracticeSession: this.canStartPracticeSession,\n canStopPracticeSession: this.canStopPracticeSession,\n requiresPostMeetingDataConsentPrompt: this.requiresPostMeetingDataConsentPrompt,\n canEnableAnnotation: this.canEnableAnnotation,\n canDisableAnnotation: this.canDisableAnnotation,\n canEnableRemoteDesktopControl: this.canEnableRemoteDesktopControl,\n canDisableRemoteDesktopControl: this.canDisableRemoteDesktopControl,\n canMoveToLobby: this.canMoveToLobby,\n canEnablePollingQA: this.canEnablePollingQA,\n canDisablePollingQA: this.canDisablePollingQA,\n });\n\n /**\n *\n * @param actions\n * @returns\n */\n\n set = (actions: Partial<IInMeetingActions>) => {\n const old = this.get();\n\n let changed = false;\n\n Object.keys(old).forEach((actionKey) => {\n const actionValue = actions[actionKey];\n\n if (actionValue !== undefined && actionValue !== old[actionKey]) {\n changed = true;\n this[actionKey] = actionValue;\n }\n });\n\n return changed;\n };\n}\n"],"mappings":"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"}
1
+ {"version":3,"names":["_constants","require","InMeetingActions","exports","default","_createClass2","_this","_classCallCheck2","_defineProperty2","MEETINGS","canInviteNewParticipants","canAdmitParticipant","canLock","canUnlock","canAssignHost","canSetMuteOnEntry","canUnsetMuteOnEntry","canSetDisallowUnmute","canSetMuted","canUnsetMuted","canSetPresenter","canUnsetPresenter","canUnsetDisallowUnmute","canStartRecording","canPauseRecording","canResumeRecording","canStopRecording","isPremiseRecordingEnabled","canRaiseHand","canLowerAllHands","canLowerSomeoneElsesHand","bothLeaveAndEndMeetingAvailable","canEnableClosedCaption","canStartTranscribing","canStopTranscribing","isClosedCaptionActive","canStartManualCaption","isLocalRecordingStarted","isLocalRecordingStopped","isLocalRecordingPaused","isLocalStreamingStarted","isLocalStreamingStopped","canStopManualCaption","isManualCaptionActive","isSaveTranscriptsEnabled","isSpokenLanguageAutoDetectionEnabled","isWebexAssistantActive","canViewCaptionPanel","isRealTimeTranslationEnabled","canSelectSpokenLanguages","waitingForOthersToJoin","canSendReactions","canManageBreakout","canStartBreakout","canBroadcastMessageToBreakout","canAdmitLobbyToBreakout","isBreakoutPreassignmentsEnabled","canUserAskForHelp","canUserRenameSelfAndObserved","canUserRenameOthers","canMuteAll","canUnmuteAll","canEnableHardMute","canDisableHardMute","canEnableMuteOnEntry","canDisableMuteOnEntry","canEnableReactions","canDisableReactions","canEnableReactionDisplayNames","canDisableReactionDisplayNames","canUpdateShareControl","canEnableViewTheParticipantsList","canDisableViewTheParticipantsList","canEnableViewTheParticipantsListPanelist","canDisableViewTheParticipantsListPanelist","canEnableShowAttendeeCount","canDisableShowAttendeeCount","canEnableRaiseHand","canDisableRaiseHand","canEnableVideo","canDisableVideo","canShareFile","canShareApplication","canShareCamera","showAutoEndMeetingWarning","canShareDesktop","canShareContent","canTransferFile","canRealtimeCloseCaption","canRealtimeCloseCaptionManual","canChat","canDoVideo","canAnnotate","canUseVoip","enforceVirtualBackground","supportHQV","supportHDV","canShareWhiteBoard","canPollingAndQA","canStartWebcast","canStopWebcast","canShowStageView","canEnableStageView","canDisableStageView","isPracticeSessionOn","isPracticeSessionOff","canStartPracticeSession","canStopPracticeSession","requiresPostMeetingDataConsentPrompt","canEnableAnnotation","canDisableAnnotation","canEnableRemoteDesktopControl","canDisableRemoteDesktopControl","canMoveToLobby","canEnablePollingQA","canDisablePollingQA","actions","old","get","changed","_keys","forEach","actionKey","actionValue","undefined"],"sources":["in-meeting-actions.ts"],"sourcesContent":["/*!\n * Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.\n */\n\nimport {MEETINGS} from '../constants';\nimport ControlsOptionsUtil from '../controls-options-manager/util';\n\n/**\n * IInMeetingActions\n * Type for In-Meeting Actions\n */\ninterface IInMeetingActions {\n canInviteNewParticipants?: boolean;\n canAdmitParticipant?: boolean;\n canLock?: boolean;\n canUnlock?: boolean;\n canSetMuteOnEntry?: boolean;\n canUnsetMuteOnEntry?: boolean;\n canSetDisallowUnmute?: boolean;\n canUnsetDisallowUnmute?: boolean;\n canSetMuted?: boolean;\n canUnsetMuted?: boolean;\n canAssignHost?: boolean;\n canSetPresenter?: boolean;\n canUnsetPresenter?: boolean;\n canStartRecording?: boolean;\n canPauseRecording?: boolean;\n canResumeRecording?: boolean;\n isPremiseRecordingEnabled?: boolean;\n canStopRecording?: boolean;\n canRaiseHand?: boolean;\n canLowerAllHands?: boolean;\n canLowerSomeoneElsesHand?: boolean;\n bothLeaveAndEndMeetingAvailable?: boolean;\n canEnableClosedCaption?: boolean;\n canStartTranscribing?: boolean;\n canStopTranscribing?: boolean;\n isClosedCaptionActive?: boolean;\n canStartManualCaption?: boolean;\n canStopManualCaption?: boolean;\n isLocalRecordingStarted?: boolean;\n isLocalRecordingStopped?: boolean;\n isLocalRecordingPaused?: boolean;\n isLocalStreamingStarted?: boolean;\n isLocalStreamingStopped?: boolean;\n\n isManualCaptionActive?: boolean;\n isSaveTranscriptsEnabled?: boolean;\n isSpokenLanguageAutoDetectionEnabled?: boolean;\n isWebexAssistantActive?: boolean;\n canViewCaptionPanel?: boolean;\n isRealTimeTranslationEnabled?: boolean;\n canSelectSpokenLanguages?: boolean;\n waitingForOthersToJoin?: boolean;\n canSendReactions?: boolean;\n canManageBreakout?: boolean;\n canStartBreakout?: boolean;\n canBroadcastMessageToBreakout?: boolean;\n canAdmitLobbyToBreakout?: boolean;\n isBreakoutPreassignmentsEnabled?: boolean;\n canUserAskForHelp?: boolean;\n canUserRenameSelfAndObserved?: boolean;\n canUserRenameOthers?: boolean;\n canMuteAll?: boolean;\n canUnmuteAll?: boolean;\n canEnableHardMute?: boolean;\n canDisableHardMute?: boolean;\n canEnableMuteOnEntry?: boolean;\n canDisableMuteOnEntry?: boolean;\n canEnableReactions?: boolean;\n canDisableReactions?: boolean;\n canEnableReactionDisplayNames?: boolean;\n canDisableReactionDisplayNames?: boolean;\n canUpdateShareControl?: boolean;\n canEnableViewTheParticipantsList?: boolean;\n canDisableViewTheParticipantsList?: boolean;\n canEnableViewTheParticipantsListPanelist?: boolean;\n canDisableViewTheParticipantsListPanelist?: boolean;\n canEnableShowAttendeeCount?: boolean;\n canDisableShowAttendeeCount?: boolean;\n canEnableRaiseHand?: boolean;\n canDisableRaiseHand?: boolean;\n canEnableVideo?: boolean;\n canDisableVideo?: boolean;\n canShareFile?: boolean;\n canShareApplication?: boolean;\n canShareCamera?: boolean;\n canShareDesktop?: boolean;\n canShareContent?: boolean;\n canTransferFile?: boolean;\n canRealtimeCloseCaption?: boolean;\n canRealtimeCloseCaptionManual?: boolean;\n canChat?: boolean;\n canDoVideo?: boolean;\n canAnnotate?: boolean;\n canUseVoip?: boolean;\n showAutoEndMeetingWarning?: boolean;\n supportHQV?: boolean;\n supportHDV?: boolean;\n canShareWhiteBoard?: boolean;\n enforceVirtualBackground?: boolean;\n canPollingAndQA?: boolean;\n canStartWebcast?: boolean;\n canStopWebcast?: boolean;\n canShowStageView?: boolean;\n canEnableStageView?: boolean;\n canDisableStageView?: boolean;\n isPracticeSessionOn?: boolean;\n isPracticeSessionOff?: boolean;\n canStartPracticeSession?: boolean;\n canStopPracticeSession?: boolean;\n requiresPostMeetingDataConsentPrompt?: boolean;\n canEnableAnnotation?: boolean;\n canDisableAnnotation?: boolean;\n canEnableRemoteDesktopControl?: boolean;\n canDisableRemoteDesktopControl?: boolean;\n canMoveToLobby?: boolean;\n canEnablePollingQA?: boolean;\n canDisablePollingQA?: boolean;\n}\n\n/**\n * @class InMeetingActions\n */\nexport default class InMeetingActions implements IInMeetingActions {\n namespace = MEETINGS;\n\n canInviteNewParticipants = null;\n\n canAdmitParticipant = null;\n\n canLock = null;\n\n canUnlock = null;\n\n canAssignHost = null;\n\n canStartRecording = null;\n\n canPauseRecording = null;\n\n canResumeRecording = null;\n\n isPremiseRecordingEnabled = null;\n\n canStopRecording = null;\n\n canSetMuteOnEntry = null;\n\n canSetPresenter = null;\n\n canUnsetPresenter = null;\n\n canUnsetMuteOnEntry = null;\n\n canSetDisallowUnmute = null;\n\n canUnsetDisallowUnmute = null;\n\n canSetMuted = null;\n\n canUnsetMuted = null;\n\n canRaiseHand = null;\n\n canLowerAllHands = null;\n\n canLowerSomeoneElsesHand = null;\n\n bothLeaveAndEndMeetingAvailable = null;\n\n canEnableClosedCaption = null;\n\n canStartTranscribing = null;\n\n canStopTranscribing = null;\n\n isClosedCaptionActive = null;\n\n canStartManualCaption = null;\n\n canStopManualCaption = null;\n\n isLocalRecordingStopped = null;\n\n isLocalRecordingStarted = null;\n\n isLocalRecordingPaused = null;\n\n isManualCaptionActive = null;\n\n isLocalStreamingStarted = null;\n\n isLocalStreamingStopped = null;\n\n isSaveTranscriptsEnabled = null;\n\n isSpokenLanguageAutoDetectionEnabled = null;\n\n isWebexAssistantActive = null;\n\n canViewCaptionPanel = null;\n\n isRealTimeTranslationEnabled = null;\n\n canSelectSpokenLanguages = null;\n\n waitingForOthersToJoin = null;\n\n canSendReactions = null;\n\n canManageBreakout = null;\n\n canStartBreakout = null;\n\n canBroadcastMessageToBreakout = null;\n\n canAdmitLobbyToBreakout = null;\n\n isBreakoutPreassignmentsEnabled = null;\n\n canUserAskForHelp = null;\n\n canUserRenameSelfAndObserved = null;\n\n canUserRenameOthers = null;\n\n canMuteAll = null;\n\n canUnmuteAll = null;\n\n canEnableHardMute = null;\n\n canDisableHardMute = null;\n\n canEnableMuteOnEntry = null;\n\n canDisableMuteOnEntry = null;\n\n canEnableReactions = null;\n\n canDisableReactions = null;\n\n canEnableReactionDisplayNames = null;\n\n canDisableReactionDisplayNames = null;\n\n canUpdateShareControl = null;\n\n canEnableViewTheParticipantsList = null;\n\n canDisableViewTheParticipantsList = null;\n\n canEnableViewTheParticipantsListPanelist = null;\n\n canDisableViewTheParticipantsListPanelist = null;\n\n canEnableShowAttendeeCount = null;\n\n canDisableShowAttendeeCount = null;\n\n canEnableRaiseHand = null;\n\n canDisableRaiseHand = null;\n\n canEnableVideo = null;\n\n canDisableVideo = null;\n\n canShareFile = null;\n\n canShareApplication = null;\n\n canShareCamera = null;\n\n canShareDesktop = null;\n\n canShareContent = null;\n\n canTransferFile = null;\n\n canRealtimeCloseCaption = null;\n\n canRealtimeCloseCaptionManual = null;\n\n canChat = null;\n\n canDoVideo = null;\n\n canAnnotate = null;\n\n canUseVoip = null;\n\n showAutoEndMeetingWarning = null;\n\n supportHQV = null;\n\n enforceVirtualBackground = null;\n\n supportHDV = null;\n\n canShareWhiteBoard = null;\n\n canPollingAndQA = null;\n\n canStartWebcast = null;\n\n canStopWebcast = null;\n\n canShowStageView = null;\n\n canEnableStageView = null;\n\n canDisableStageView = null;\n\n isPracticeSessionOn = null;\n\n isPracticeSessionOff = null;\n\n canStartPracticeSession = null;\n\n canStopPracticeSession = null;\n\n requiresPostMeetingDataConsentPrompt = null;\n\n canEnableAnnotation = null;\n\n canDisableAnnotation = null;\n\n canEnableRemoteDesktopControl = null;\n\n canDisableRemoteDesktopControl = null;\n\n canMoveToLobby = null;\n\n canEnablePollingQA = null;\n\n canDisablePollingQA = null;\n\n /**\n * Returns all meeting action options\n * @returns {Object}\n */\n get = (): IInMeetingActions => ({\n canInviteNewParticipants: this.canInviteNewParticipants,\n canAdmitParticipant: this.canAdmitParticipant,\n canLock: this.canLock,\n canUnlock: this.canUnlock,\n canAssignHost: this.canAssignHost,\n canSetMuteOnEntry: this.canSetMuteOnEntry,\n canUnsetMuteOnEntry: this.canUnsetMuteOnEntry,\n canSetDisallowUnmute: this.canSetDisallowUnmute,\n canSetMuted: this.canSetMuted,\n canUnsetMuted: this.canUnsetMuted,\n canSetPresenter: this.canSetPresenter,\n canUnsetPresenter: this.canUnsetPresenter,\n canUnsetDisallowUnmute: this.canUnsetDisallowUnmute,\n canStartRecording: this.canStartRecording,\n canPauseRecording: this.canPauseRecording,\n canResumeRecording: this.canResumeRecording,\n canStopRecording: this.canStopRecording,\n isPremiseRecordingEnabled: this.isPremiseRecordingEnabled,\n canRaiseHand: this.canRaiseHand,\n canLowerAllHands: this.canLowerAllHands,\n canLowerSomeoneElsesHand: this.canLowerSomeoneElsesHand,\n bothLeaveAndEndMeetingAvailable: this.bothLeaveAndEndMeetingAvailable,\n canEnableClosedCaption: this.canEnableClosedCaption,\n canStartTranscribing: this.canStartTranscribing,\n canStopTranscribing: this.canStopTranscribing,\n isClosedCaptionActive: this.isClosedCaptionActive,\n canStartManualCaption: this.canStartManualCaption,\n isLocalRecordingStarted: this.isLocalRecordingStarted,\n isLocalRecordingStopped: this.isLocalRecordingStopped,\n isLocalRecordingPaused: this.isLocalRecordingPaused,\n isLocalStreamingStarted: this.isLocalStreamingStarted,\n isLocalStreamingStopped: this.isLocalStreamingStopped,\n canStopManualCaption: this.canStopManualCaption,\n isManualCaptionActive: this.isManualCaptionActive,\n isSaveTranscriptsEnabled: this.isSaveTranscriptsEnabled,\n isSpokenLanguageAutoDetectionEnabled: this.isSpokenLanguageAutoDetectionEnabled,\n isWebexAssistantActive: this.isWebexAssistantActive,\n canViewCaptionPanel: this.canViewCaptionPanel,\n isRealTimeTranslationEnabled: this.isRealTimeTranslationEnabled,\n canSelectSpokenLanguages: this.canSelectSpokenLanguages,\n waitingForOthersToJoin: this.waitingForOthersToJoin,\n canSendReactions: this.canSendReactions,\n canManageBreakout: this.canManageBreakout,\n canStartBreakout: this.canStartBreakout,\n canBroadcastMessageToBreakout: this.canBroadcastMessageToBreakout,\n canAdmitLobbyToBreakout: this.canAdmitLobbyToBreakout,\n isBreakoutPreassignmentsEnabled: this.isBreakoutPreassignmentsEnabled,\n canUserAskForHelp: this.canUserAskForHelp,\n canUserRenameSelfAndObserved: this.canUserRenameSelfAndObserved,\n canUserRenameOthers: this.canUserRenameOthers,\n canMuteAll: this.canMuteAll,\n canUnmuteAll: this.canUnmuteAll,\n canEnableHardMute: this.canEnableHardMute,\n canDisableHardMute: this.canDisableHardMute,\n canEnableMuteOnEntry: this.canEnableMuteOnEntry,\n canDisableMuteOnEntry: this.canDisableMuteOnEntry,\n canEnableReactions: this.canEnableReactions,\n canDisableReactions: this.canDisableReactions,\n canEnableReactionDisplayNames: this.canEnableReactionDisplayNames,\n canDisableReactionDisplayNames: this.canDisableReactionDisplayNames,\n canUpdateShareControl: this.canUpdateShareControl,\n canEnableViewTheParticipantsList: this.canEnableViewTheParticipantsList,\n canDisableViewTheParticipantsList: this.canDisableViewTheParticipantsList,\n canEnableViewTheParticipantsListPanelist: this.canEnableViewTheParticipantsListPanelist,\n canDisableViewTheParticipantsListPanelist: this.canDisableViewTheParticipantsListPanelist,\n canEnableShowAttendeeCount: this.canEnableShowAttendeeCount,\n canDisableShowAttendeeCount: this.canDisableShowAttendeeCount,\n canEnableRaiseHand: this.canEnableRaiseHand,\n canDisableRaiseHand: this.canDisableRaiseHand,\n canEnableVideo: this.canEnableVideo,\n canDisableVideo: this.canDisableVideo,\n canShareFile: this.canShareFile,\n canShareApplication: this.canShareApplication,\n canShareCamera: this.canShareCamera,\n showAutoEndMeetingWarning: this.showAutoEndMeetingWarning,\n canShareDesktop: this.canShareDesktop,\n canShareContent: this.canShareContent,\n canTransferFile: this.canTransferFile,\n canRealtimeCloseCaption: this.canRealtimeCloseCaption,\n canRealtimeCloseCaptionManual: this.canRealtimeCloseCaptionManual,\n canChat: this.canChat,\n canDoVideo: this.canDoVideo,\n canAnnotate: this.canAnnotate,\n canUseVoip: this.canUseVoip,\n enforceVirtualBackground: this.enforceVirtualBackground,\n supportHQV: this.supportHQV,\n supportHDV: this.supportHDV,\n canShareWhiteBoard: this.canShareWhiteBoard,\n canPollingAndQA: this.canPollingAndQA,\n canStartWebcast: this.canStartWebcast,\n canStopWebcast: this.canStopWebcast,\n canShowStageView: this.canShowStageView,\n canEnableStageView: this.canEnableStageView,\n canDisableStageView: this.canDisableStageView,\n isPracticeSessionOn: this.isPracticeSessionOn,\n isPracticeSessionOff: this.isPracticeSessionOff,\n canStartPracticeSession: this.canStartPracticeSession,\n canStopPracticeSession: this.canStopPracticeSession,\n requiresPostMeetingDataConsentPrompt: this.requiresPostMeetingDataConsentPrompt,\n canEnableAnnotation: this.canEnableAnnotation,\n canDisableAnnotation: this.canDisableAnnotation,\n canEnableRemoteDesktopControl: this.canEnableRemoteDesktopControl,\n canDisableRemoteDesktopControl: this.canDisableRemoteDesktopControl,\n canMoveToLobby: this.canMoveToLobby,\n canEnablePollingQA: this.canEnablePollingQA,\n canDisablePollingQA: this.canDisablePollingQA,\n });\n\n /**\n *\n * @param actions\n * @returns\n */\n\n set = (actions: Partial<IInMeetingActions>) => {\n const old = this.get();\n\n let changed = false;\n\n Object.keys(old).forEach((actionKey) => {\n const actionValue = actions[actionKey];\n\n if (actionValue !== undefined && actionValue !== old[actionKey]) {\n changed = true;\n this[actionKey] = actionValue;\n }\n });\n\n return changed;\n };\n}\n"],"mappings":"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"}