@webex/plugin-meetings 3.12.0-next.73 → 3.12.0-next.74

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.
@@ -10,7 +10,7 @@ var _interopRequireDefault = require("@babel/runtime-corejs2/helpers/interopRequ
10
10
  _Object$defineProperty(exports, "__esModule", {
11
11
  value: true
12
12
  });
13
- exports.default = void 0;
13
+ exports.default = exports.DisplayHintSection = void 0;
14
14
  var _entries = _interopRequireDefault(require("@babel/runtime-corejs2/core-js/object/entries"));
15
15
  var _keys = _interopRequireDefault(require("@babel/runtime-corejs2/core-js/object/keys"));
16
16
  var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/slicedToArray"));
@@ -18,13 +18,26 @@ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime-corejs2/he
18
18
  var _constants = require("../constants");
19
19
  function ownKeys(e, r) { var t = _Object$keys2(e); if (_Object$getOwnPropertySymbols) { var o = _Object$getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return _Object$getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
20
20
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(e, _Object$getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { _Object$defineProperty(e, r, _Object$getOwnPropertyDescriptor(t, r)); }); } return e; }
21
+ // these values have to match what Locus sends us
22
+ var DisplayHintSection = exports.DisplayHintSection = /*#__PURE__*/function (DisplayHintSection) {
23
+ DisplayHintSection["JOINED"] = "joined";
24
+ DisplayHintSection["MODERATOR"] = "moderator";
25
+ DisplayHintSection["COHOST"] = "coHost";
26
+ DisplayHintSection["PRESENTER"] = "presenter";
27
+ DisplayHintSection["PANELIST"] = "panelist";
28
+ DisplayHintSection["ATTENDEE"] = "attendee";
29
+ return DisplayHintSection;
30
+ }({});
21
31
  var InfoUtils = {};
22
32
  InfoUtils.parse = function (info, roles) {
23
33
  var isJoined = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;
24
34
  var parsed = {
25
35
  policy: InfoUtils.parsePolicy(info),
26
36
  moderator: InfoUtils.parseModerator(info),
27
- coHost: InfoUtils.parseCoHost(info)
37
+ coHost: InfoUtils.parseCoHost(info),
38
+ presenter: InfoUtils.parsePresenter(info),
39
+ panelist: InfoUtils.parsePanelist(info),
40
+ attendee: InfoUtils.parseAttendee(info)
28
41
  };
29
42
  var userDisplayHints = isJoined ? _objectSpread({}, parsed.policy) : _objectSpread({}, Object.fromEntries((0, _entries.default)(parsed.policy).filter(function (_ref) {
30
43
  var _ref2 = (0, _slicedToArray2.default)(_ref, 1),
@@ -37,6 +50,15 @@ InfoUtils.parse = function (info, roles) {
37
50
  if (roles.includes(_constants.SELF_ROLES.MODERATOR)) {
38
51
  userDisplayHints = _objectSpread(_objectSpread({}, userDisplayHints), parsed.moderator);
39
52
  }
53
+ if (roles.includes(_constants.SELF_ROLES.PRESENTER)) {
54
+ userDisplayHints = _objectSpread(_objectSpread({}, userDisplayHints), parsed.presenter);
55
+ }
56
+ if (roles.includes(_constants.SELF_ROLES.PANELIST)) {
57
+ userDisplayHints = _objectSpread(_objectSpread({}, userDisplayHints), parsed.panelist);
58
+ }
59
+ if (roles.includes(_constants.SELF_ROLES.ATTENDEE)) {
60
+ userDisplayHints = _objectSpread(_objectSpread({}, userDisplayHints), parsed.attendee);
61
+ }
40
62
  parsed.userDisplayHints = (0, _keys.default)(userDisplayHints);
41
63
  if (info.sipUri) {
42
64
  parsed.sipUri = info.sipUri;
@@ -59,16 +81,25 @@ InfoUtils.parseDisplayHintSection = function (info, displayHintKey) {
59
81
  return displayHints;
60
82
  };
61
83
  InfoUtils.parsePolicy = function (info) {
62
- return InfoUtils.parseDisplayHintSection(info, 'joined');
84
+ return InfoUtils.parseDisplayHintSection(info, DisplayHintSection.JOINED);
63
85
  };
64
86
  InfoUtils.parseModerator = function (info) {
65
- var displayHints = InfoUtils.parseDisplayHintSection(info, 'moderator');
87
+ var displayHints = InfoUtils.parseDisplayHintSection(info, DisplayHintSection.MODERATOR);
66
88
  return _objectSpread(_objectSpread({}, displayHints), {}, (0, _defineProperty2.default)({}, _constants.DISPLAY_HINTS.LOWER_SOMEONE_ELSES_HAND, true));
67
89
  };
68
90
  InfoUtils.parseCoHost = function (info) {
69
- var displayHints = InfoUtils.parseDisplayHintSection(info, 'coHost');
91
+ var displayHints = InfoUtils.parseDisplayHintSection(info, DisplayHintSection.COHOST);
70
92
  return _objectSpread(_objectSpread({}, displayHints), {}, (0, _defineProperty2.default)({}, _constants.DISPLAY_HINTS.LOWER_SOMEONE_ELSES_HAND, true));
71
93
  };
94
+ InfoUtils.parsePresenter = function (info) {
95
+ return InfoUtils.parseDisplayHintSection(info, DisplayHintSection.PRESENTER);
96
+ };
97
+ InfoUtils.parsePanelist = function (info) {
98
+ return InfoUtils.parseDisplayHintSection(info, DisplayHintSection.PANELIST);
99
+ };
100
+ InfoUtils.parseAttendee = function (info) {
101
+ return InfoUtils.parseDisplayHintSection(info, DisplayHintSection.ATTENDEE);
102
+ };
72
103
  InfoUtils.isLocked = function (policy) {
73
104
  return policy.LOCK_STATUS_LOCKED || false;
74
105
  };
@@ -1 +1 @@
1
- {"version":3,"names":["_constants","require","ownKeys","e","r","t","_Object$keys2","_Object$getOwnPropertySymbols","o","filter","_Object$getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread","arguments","length","Object","forEach","_defineProperty2","default","_Object$getOwnPropertyDescriptors","_Object$defineProperties","_Object$defineProperty","InfoUtils","parse","info","roles","isJoined","undefined","parsed","policy","parsePolicy","moderator","parseModerator","coHost","parseCoHost","userDisplayHints","fromEntries","_entries","_ref","_ref2","_slicedToArray2","hint","INTERSTITIAL_DISPLAY_HINTS","includes","SELF_ROLES","COHOST","MODERATOR","_keys","sipUri","meetingId","meetingNumber","datachannelUrl","parseDisplayHintSection","displayHintKey","displayHints","key","DISPLAY_HINTS","LOWER_SOMEONE_ELSES_HAND","isLocked","LOCK_STATUS_LOCKED","isUnlocked","LOCK_STATUS_UNLOCKED","getInfos","oldInfo","newInfo","previous","current","updates","_default","exports"],"sources":["infoUtils.ts"],"sourcesContent":["import {SELF_ROLES, DISPLAY_HINTS, INTERSTITIAL_DISPLAY_HINTS} from '../constants';\n\nconst InfoUtils: any = {};\n\nInfoUtils.parse = (info, roles, isJoined = true) => {\n const parsed: any = {\n policy: InfoUtils.parsePolicy(info),\n moderator: InfoUtils.parseModerator(info),\n coHost: InfoUtils.parseCoHost(info),\n };\n\n let userDisplayHints = isJoined\n ? {...parsed.policy}\n : {\n ...Object.fromEntries(\n Object.entries(parsed.policy).filter(([hint]) =>\n INTERSTITIAL_DISPLAY_HINTS.includes(hint)\n )\n ),\n };\n\n if (roles.includes(SELF_ROLES.COHOST)) {\n userDisplayHints = {...userDisplayHints, ...parsed.coHost};\n }\n\n if (roles.includes(SELF_ROLES.MODERATOR)) {\n userDisplayHints = {...userDisplayHints, ...parsed.moderator};\n }\n\n parsed.userDisplayHints = Object.keys(userDisplayHints);\n\n if (info.sipUri) {\n parsed.sipUri = info.sipUri;\n }\n\n if (info.meetingId) {\n parsed.meetingNumber = info.meetingId;\n }\n\n if (info.datachannelUrl) {\n parsed.datachannelUrl = info.datachannelUrl;\n }\n\n return parsed;\n};\n\nInfoUtils.parseDisplayHintSection = (info, displayHintKey) => {\n const displayHints = {};\n\n if (\n info &&\n info.displayHints &&\n info.displayHints[displayHintKey] &&\n info.displayHints[displayHintKey].length > 0\n ) {\n info.displayHints[displayHintKey].forEach((key) => {\n displayHints[key] = true;\n });\n }\n\n return displayHints;\n};\n\nInfoUtils.parsePolicy = (info) => InfoUtils.parseDisplayHintSection(info, 'joined');\n\nInfoUtils.parseModerator = (info) => {\n const displayHints = InfoUtils.parseDisplayHintSection(info, 'moderator');\n\n return {...displayHints, [DISPLAY_HINTS.LOWER_SOMEONE_ELSES_HAND]: true};\n};\n\nInfoUtils.parseCoHost = (info) => {\n const displayHints = InfoUtils.parseDisplayHintSection(info, 'coHost');\n\n return {...displayHints, [DISPLAY_HINTS.LOWER_SOMEONE_ELSES_HAND]: true};\n};\n\nInfoUtils.isLocked = (policy) => policy.LOCK_STATUS_LOCKED || false;\n\nInfoUtils.isUnlocked = (policy) => policy.LOCK_STATUS_UNLOCKED || false;\n\nInfoUtils.getInfos = (oldInfo, newInfo, roles, isJoined) => {\n let previous = null;\n\n if (oldInfo) {\n previous = oldInfo;\n }\n const current = newInfo && InfoUtils.parse(newInfo, roles, isJoined);\n const updates: any = {};\n\n if (current) {\n current.isLocked = InfoUtils.isLocked(current.policy);\n current.isUnlocked = InfoUtils.isUnlocked(current.policy);\n\n if ((previous && previous.isUnlocked && current.isLocked) || (!previous && current.isLocked)) {\n updates.isLocked = current.isLocked;\n }\n if (\n (previous && previous.isLocked && current.isUnlocked) ||\n (!previous && current.isUnlocked)\n ) {\n updates.isUnlocked = current.isUnlocked;\n }\n }\n\n return {\n previous,\n current,\n updates,\n };\n};\n\nexport default InfoUtils;\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["_constants","require","ownKeys","e","r","t","_Object$keys2","_Object$getOwnPropertySymbols","o","filter","_Object$getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread","arguments","length","Object","forEach","_defineProperty2","default","_Object$getOwnPropertyDescriptors","_Object$defineProperties","_Object$defineProperty","DisplayHintSection","exports","InfoUtils","parse","info","roles","isJoined","undefined","parsed","policy","parsePolicy","moderator","parseModerator","coHost","parseCoHost","presenter","parsePresenter","panelist","parsePanelist","attendee","parseAttendee","userDisplayHints","fromEntries","_entries","_ref","_ref2","_slicedToArray2","hint","INTERSTITIAL_DISPLAY_HINTS","includes","SELF_ROLES","COHOST","MODERATOR","PRESENTER","PANELIST","ATTENDEE","_keys","sipUri","meetingId","meetingNumber","datachannelUrl","parseDisplayHintSection","displayHintKey","displayHints","key","JOINED","DISPLAY_HINTS","LOWER_SOMEONE_ELSES_HAND","isLocked","LOCK_STATUS_LOCKED","isUnlocked","LOCK_STATUS_UNLOCKED","getInfos","oldInfo","newInfo","previous","current","updates","_default"],"sources":["infoUtils.ts"],"sourcesContent":["import {SELF_ROLES, DISPLAY_HINTS, INTERSTITIAL_DISPLAY_HINTS} from '../constants';\n\n// these values have to match what Locus sends us\nexport enum DisplayHintSection {\n JOINED = 'joined',\n MODERATOR = 'moderator',\n COHOST = 'coHost',\n PRESENTER = 'presenter',\n PANELIST = 'panelist',\n ATTENDEE = 'attendee',\n}\n\nconst InfoUtils: any = {};\n\nInfoUtils.parse = (info, roles, isJoined = true) => {\n const parsed: any = {\n policy: InfoUtils.parsePolicy(info),\n moderator: InfoUtils.parseModerator(info),\n coHost: InfoUtils.parseCoHost(info),\n presenter: InfoUtils.parsePresenter(info),\n panelist: InfoUtils.parsePanelist(info),\n attendee: InfoUtils.parseAttendee(info),\n };\n\n let userDisplayHints = isJoined\n ? {...parsed.policy}\n : {\n ...Object.fromEntries(\n Object.entries(parsed.policy).filter(([hint]) =>\n INTERSTITIAL_DISPLAY_HINTS.includes(hint)\n )\n ),\n };\n\n if (roles.includes(SELF_ROLES.COHOST)) {\n userDisplayHints = {...userDisplayHints, ...parsed.coHost};\n }\n\n if (roles.includes(SELF_ROLES.MODERATOR)) {\n userDisplayHints = {...userDisplayHints, ...parsed.moderator};\n }\n\n if (roles.includes(SELF_ROLES.PRESENTER)) {\n userDisplayHints = {...userDisplayHints, ...parsed.presenter};\n }\n\n if (roles.includes(SELF_ROLES.PANELIST)) {\n userDisplayHints = {...userDisplayHints, ...parsed.panelist};\n }\n\n if (roles.includes(SELF_ROLES.ATTENDEE)) {\n userDisplayHints = {...userDisplayHints, ...parsed.attendee};\n }\n\n parsed.userDisplayHints = Object.keys(userDisplayHints);\n\n if (info.sipUri) {\n parsed.sipUri = info.sipUri;\n }\n\n if (info.meetingId) {\n parsed.meetingNumber = info.meetingId;\n }\n\n if (info.datachannelUrl) {\n parsed.datachannelUrl = info.datachannelUrl;\n }\n\n return parsed;\n};\n\nInfoUtils.parseDisplayHintSection = (info: any, displayHintKey: DisplayHintSection) => {\n const displayHints: Record<string, boolean> = {};\n\n if (\n info &&\n info.displayHints &&\n info.displayHints[displayHintKey] &&\n info.displayHints[displayHintKey].length > 0\n ) {\n info.displayHints[displayHintKey].forEach((key: any) => {\n displayHints[key] = true;\n });\n }\n\n return displayHints;\n};\n\nInfoUtils.parsePolicy = (info) =>\n InfoUtils.parseDisplayHintSection(info, DisplayHintSection.JOINED);\n\nInfoUtils.parseModerator = (info) => {\n const displayHints = InfoUtils.parseDisplayHintSection(info, DisplayHintSection.MODERATOR);\n\n return {...displayHints, [DISPLAY_HINTS.LOWER_SOMEONE_ELSES_HAND]: true};\n};\n\nInfoUtils.parseCoHost = (info) => {\n const displayHints = InfoUtils.parseDisplayHintSection(info, DisplayHintSection.COHOST);\n\n return {...displayHints, [DISPLAY_HINTS.LOWER_SOMEONE_ELSES_HAND]: true};\n};\n\nInfoUtils.parsePresenter = (info) =>\n InfoUtils.parseDisplayHintSection(info, DisplayHintSection.PRESENTER);\n\nInfoUtils.parsePanelist = (info) =>\n InfoUtils.parseDisplayHintSection(info, DisplayHintSection.PANELIST);\n\nInfoUtils.parseAttendee = (info) =>\n InfoUtils.parseDisplayHintSection(info, DisplayHintSection.ATTENDEE);\n\nInfoUtils.isLocked = (policy) => policy.LOCK_STATUS_LOCKED || false;\n\nInfoUtils.isUnlocked = (policy) => policy.LOCK_STATUS_UNLOCKED || false;\n\nInfoUtils.getInfos = (oldInfo, newInfo, roles, isJoined) => {\n let previous = null;\n\n if (oldInfo) {\n previous = oldInfo;\n }\n const current = newInfo && InfoUtils.parse(newInfo, roles, isJoined);\n const updates: any = {};\n\n if (current) {\n current.isLocked = InfoUtils.isLocked(current.policy);\n current.isUnlocked = InfoUtils.isUnlocked(current.policy);\n\n if ((previous && previous.isUnlocked && current.isLocked) || (!previous && current.isLocked)) {\n updates.isLocked = current.isLocked;\n }\n if (\n (previous && previous.isLocked && current.isUnlocked) ||\n (!previous && current.isUnlocked)\n ) {\n updates.isUnlocked = current.isUnlocked;\n }\n }\n\n return {\n previous,\n current,\n updates,\n };\n};\n\nexport default InfoUtils;\n"],"mappings":"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","ignoreList":[]}
@@ -135,6 +135,7 @@ var InMeetingActions = exports.default = /*#__PURE__*/(0, _createClass2.default)
135
135
  (0, _defineProperty2.default)(this, "canAttendeeRequestAiAssistantEnabled", null);
136
136
  (0, _defineProperty2.default)(this, "isAttendeeRequestAiAssistantDeclinedAll", null);
137
137
  (0, _defineProperty2.default)(this, "isAnonymizeDisplayNamesEnabled", null);
138
+ (0, _defineProperty2.default)(this, "canViewTheParticipantList", null);
138
139
  /**
139
140
  * Returns all meeting action options
140
141
  * @returns {Object}
@@ -250,7 +251,8 @@ var InMeetingActions = exports.default = /*#__PURE__*/(0, _createClass2.default)
250
251
  canDisablePollingQA: _this.canDisablePollingQA,
251
252
  canAttendeeRequestAiAssistantEnabled: _this.canAttendeeRequestAiAssistantEnabled,
252
253
  isAttendeeRequestAiAssistantDeclinedAll: _this.isAttendeeRequestAiAssistantDeclinedAll,
253
- isAnonymizeDisplayNamesEnabled: _this.isAnonymizeDisplayNamesEnabled
254
+ isAnonymizeDisplayNamesEnabled: _this.isAnonymizeDisplayNamesEnabled,
255
+ canViewTheParticipantList: _this.canViewTheParticipantList
254
256
  };
255
257
  });
256
258
  /**
@@ -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","requireHostEndMeetingBeforeLeave","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","canAttendeeRequestAiAssistantEnabled","isAttendeeRequestAiAssistantDeclinedAll","isAnonymizeDisplayNamesEnabled","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 requireHostEndMeetingBeforeLeave?: 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 canAttendeeRequestAiAssistantEnabled?: boolean;\n isAttendeeRequestAiAssistantDeclinedAll?: boolean;\n isAnonymizeDisplayNamesEnabled?: 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 requireHostEndMeetingBeforeLeave = 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 canAttendeeRequestAiAssistantEnabled = null;\n\n isAttendeeRequestAiAssistantDeclinedAll = null;\n\n isAnonymizeDisplayNamesEnabled = 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 requireHostEndMeetingBeforeLeave: this.requireHostEndMeetingBeforeLeave,\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 canAttendeeRequestAiAssistantEnabled: this.canAttendeeRequestAiAssistantEnabled,\n isAttendeeRequestAiAssistantDeclinedAll: this.isAttendeeRequestAiAssistantDeclinedAll,\n isAnonymizeDisplayNamesEnabled: this.isAnonymizeDisplayNamesEnabled,\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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","ignoreList":[]}
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","requireHostEndMeetingBeforeLeave","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","canAttendeeRequestAiAssistantEnabled","isAttendeeRequestAiAssistantDeclinedAll","isAnonymizeDisplayNamesEnabled","canViewTheParticipantList","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 requireHostEndMeetingBeforeLeave?: 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 canAttendeeRequestAiAssistantEnabled?: boolean;\n isAttendeeRequestAiAssistantDeclinedAll?: boolean;\n isAnonymizeDisplayNamesEnabled?: boolean;\n canViewTheParticipantList?: 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 requireHostEndMeetingBeforeLeave = 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 canAttendeeRequestAiAssistantEnabled = null;\n\n isAttendeeRequestAiAssistantDeclinedAll = null;\n\n isAnonymizeDisplayNamesEnabled = null;\n\n canViewTheParticipantList = 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 requireHostEndMeetingBeforeLeave: this.requireHostEndMeetingBeforeLeave,\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 canAttendeeRequestAiAssistantEnabled: this.canAttendeeRequestAiAssistantEnabled,\n isAttendeeRequestAiAssistantDeclinedAll: this.isAttendeeRequestAiAssistantDeclinedAll,\n isAnonymizeDisplayNamesEnabled: this.isAnonymizeDisplayNamesEnabled,\n canViewTheParticipantList: this.canViewTheParticipantList,\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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","ignoreList":[]}
@@ -509,6 +509,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
509
509
  (0, _defineProperty3.default)(_this, "joinedWith", void 0);
510
510
  (0, _defineProperty3.default)(_this, "selfId", void 0);
511
511
  (0, _defineProperty3.default)(_this, "roles", void 0);
512
+ (0, _defineProperty3.default)(_this, "canNotViewTheParticipantList", void 0);
512
513
  // ... there is more ... see SelfUtils.parse()
513
514
  // end of the group
514
515
  (0, _defineProperty3.default)(_this, "locusMediaRequest", void 0);
@@ -4522,6 +4523,8 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
4522
4523
  }
4523
4524
  });
4524
4525
  this.locusInfo.on(_constants.LOCUSINFO.EVENTS.SELF_CANNOT_VIEW_PARTICIPANT_LIST_CHANGE, function (payload) {
4526
+ // canViewTheParticipantList meeting action depends on this value, so we need to update meeting actions
4527
+ _this19.updateMeetingActions();
4525
4528
  _triggerProxy.default.trigger(_this19, {
4526
4529
  file: 'meeting/index',
4527
4530
  function: 'setUpLocusInfoSelfListener'
@@ -4998,6 +5001,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
4998
5001
  }) && ((_this$meetingInfo5 = this.meetingInfo) === null || _this$meetingInfo5 === void 0 ? void 0 : (_this$meetingInfo5$vi = _this$meetingInfo5.video) === null || _this$meetingInfo5$vi === void 0 ? void 0 : _this$meetingInfo5$vi.supportHQV) || !this.arePolicyRestrictionsSupported()
4999
5002
  });
5000
5003
  if (this.userDisplayHints !== undefined) {
5004
+ var _this$canNotViewThePa;
5001
5005
  changed = this.inMeetingActions.set({
5002
5006
  canInviteNewParticipants: _util2.default.canInviteNewParticipants(this.userDisplayHints),
5003
5007
  canAdmitParticipant: _util2.default.canAdmitParticipant(this.userDisplayHints),
@@ -5253,7 +5257,8 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
5253
5257
  }),
5254
5258
  canAttendeeRequestAiAssistantEnabled: _util2.default.canAttendeeRequestAiAssistantEnabled(this.userDisplayHints, this.roles),
5255
5259
  isAttendeeRequestAiAssistantDeclinedAll: _util2.default.attendeeRequestAiAssistantDeclinedAll(this.userDisplayHints),
5256
- isAnonymizeDisplayNamesEnabled: _util2.default.isAnonymizeDisplayNamesEnabled(this.userDisplayHints)
5260
+ isAnonymizeDisplayNamesEnabled: _util2.default.isAnonymizeDisplayNamesEnabled(this.userDisplayHints),
5261
+ canViewTheParticipantList: _util2.default.canViewTheParticipantList(this.userDisplayHints, (_this$canNotViewThePa = this.canNotViewTheParticipantList) !== null && _this$canNotViewThePa !== void 0 ? _this$canNotViewThePa : false)
5257
5262
  }) || changed;
5258
5263
  }
5259
5264
  if (changed) {