@webex/plugin-meetings 3.9.0-next.24 → 3.9.0-next.25

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 (45) hide show
  1. package/dist/breakouts/breakout.js +1 -1
  2. package/dist/breakouts/index.js +1 -1
  3. package/dist/constants.js +4 -0
  4. package/dist/constants.js.map +1 -1
  5. package/dist/interpretation/index.js +1 -1
  6. package/dist/interpretation/siLanguage.js +1 -1
  7. package/dist/locus-info/controlsUtils.js +11 -2
  8. package/dist/locus-info/controlsUtils.js.map +1 -1
  9. package/dist/locus-info/index.js +9 -0
  10. package/dist/locus-info/index.js.map +1 -1
  11. package/dist/meeting/in-meeting-actions.js +2 -0
  12. package/dist/meeting/in-meeting-actions.js.map +1 -1
  13. package/dist/meeting/index.js +64 -24
  14. package/dist/meeting/index.js.map +1 -1
  15. package/dist/meeting/request.js +48 -14
  16. package/dist/meeting/request.js.map +1 -1
  17. package/dist/meeting/util.js +3 -0
  18. package/dist/meeting/util.js.map +1 -1
  19. package/dist/member/index.js +9 -0
  20. package/dist/member/index.js.map +1 -1
  21. package/dist/member/util.js +10 -0
  22. package/dist/member/util.js.map +1 -1
  23. package/dist/types/constants.d.ts +3 -0
  24. package/dist/types/meeting/in-meeting-actions.d.ts +2 -0
  25. package/dist/types/meeting/index.d.ts +14 -0
  26. package/dist/types/meeting/request.d.ts +16 -0
  27. package/dist/types/meeting/util.d.ts +1 -0
  28. package/dist/types/member/index.d.ts +1 -0
  29. package/dist/types/member/util.d.ts +5 -0
  30. package/dist/webinar/index.js +1 -1
  31. package/package.json +1 -1
  32. package/src/constants.ts +6 -0
  33. package/src/locus-info/controlsUtils.ts +18 -0
  34. package/src/locus-info/index.ts +9 -0
  35. package/src/meeting/in-meeting-actions.ts +4 -0
  36. package/src/meeting/index.ts +43 -0
  37. package/src/meeting/request.ts +38 -0
  38. package/src/meeting/util.ts +3 -0
  39. package/src/member/index.ts +10 -0
  40. package/src/member/util.ts +14 -0
  41. package/test/unit/spec/fixture/locus.js +1 -0
  42. package/test/unit/spec/meeting/in-meeting-actions.ts +2 -0
  43. package/test/unit/spec/meeting/index.js +22 -0
  44. package/test/unit/spec/meeting/utils.js +1 -0
  45. package/test/unit/spec/member/util.js +24 -0
@@ -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","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","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 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 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 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 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 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 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","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\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 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 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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"}
@@ -3589,26 +3589,35 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
3589
3589
  state: state
3590
3590
  });
3591
3591
  });
3592
- this.locusInfo.on(_constants.LOCUSINFO.EVENTS.CONTROLS_ANNOTATION_CHANGED, function (_ref28) {
3592
+ this.locusInfo.on(_constants.LOCUSINFO.EVENTS.CONTROLS_AUTO_END_MEETING_WARNING_CHANGED, function (_ref28) {
3593
3593
  var state = _ref28.state;
3594
3594
  _triggerProxy.default.trigger(_this14, {
3595
3595
  file: 'meeting/index',
3596
3596
  function: 'setupLocusControlsListener'
3597
- }, _constants.EVENT_TRIGGERS.MEETING_CONTROLS_ANNOTATION_UPDATED, {
3597
+ }, _constants.EVENT_TRIGGERS.MEETING_CONTROLS_AUTO_END_MEETING_WARNING_UPDATED, {
3598
3598
  state: state
3599
3599
  });
3600
3600
  });
3601
- this.locusInfo.on(_constants.LOCUSINFO.EVENTS.CONTROLS_REMOTE_DESKTOP_CONTROL_CHANGED, function (_ref29) {
3601
+ this.locusInfo.on(_constants.LOCUSINFO.EVENTS.CONTROLS_ANNOTATION_CHANGED, function (_ref29) {
3602
3602
  var state = _ref29.state;
3603
3603
  _triggerProxy.default.trigger(_this14, {
3604
3604
  file: 'meeting/index',
3605
3605
  function: 'setupLocusControlsListener'
3606
- }, _constants.EVENT_TRIGGERS.MEETING_CONTROLS_REMOTE_DESKTOP_CONTROL_UPDATED, {
3606
+ }, _constants.EVENT_TRIGGERS.MEETING_CONTROLS_ANNOTATION_UPDATED, {
3607
3607
  state: state
3608
3608
  });
3609
3609
  });
3610
- this.locusInfo.on(_constants.LOCUSINFO.EVENTS.CONTROLS_POLLING_QA_CHANGED, function (_ref30) {
3610
+ this.locusInfo.on(_constants.LOCUSINFO.EVENTS.CONTROLS_REMOTE_DESKTOP_CONTROL_CHANGED, function (_ref30) {
3611
3611
  var state = _ref30.state;
3612
+ _triggerProxy.default.trigger(_this14, {
3613
+ file: 'meeting/index',
3614
+ function: 'setupLocusControlsListener'
3615
+ }, _constants.EVENT_TRIGGERS.MEETING_CONTROLS_REMOTE_DESKTOP_CONTROL_UPDATED, {
3616
+ state: state
3617
+ });
3618
+ });
3619
+ this.locusInfo.on(_constants.LOCUSINFO.EVENTS.CONTROLS_POLLING_QA_CHANGED, function (_ref31) {
3620
+ var state = _ref31.state;
3612
3621
  _triggerProxy.default.trigger(_this14, {
3613
3622
  file: 'meeting/index',
3614
3623
  function: 'setupLocusControlsListener'
@@ -3655,7 +3664,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
3655
3664
  var _this15 = this;
3656
3665
  // Will get triggered on local and remote share
3657
3666
  this.locusInfo.on(_constants.EVENTS.LOCUS_INFO_UPDATE_MEDIA_SHARES, /*#__PURE__*/function () {
3658
- var _ref31 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee8(payload) {
3667
+ var _ref32 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee8(payload) {
3659
3668
  var _payload$previous, _payload$previous2;
3660
3669
  var _payload$current, contentShare, whiteboardShare, previousContentShare, previousWhiteboardShare, newShareStatus, _this15$locusInfo, _this15$locusInfo$inf, _this15$webinar, oldShareStatus, sendStartedSharingRemote, _this15$mediaProperti;
3661
3670
  return _regenerator.default.wrap(function _callee8$(_context8) {
@@ -3890,7 +3899,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
3890
3899
  }, _callee8, null, [[29,, 33, 36]]);
3891
3900
  }));
3892
3901
  return function (_x8) {
3893
- return _ref31.apply(this, arguments);
3902
+ return _ref32.apply(this, arguments);
3894
3903
  };
3895
3904
  }());
3896
3905
  }
@@ -4006,8 +4015,8 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
4006
4015
  });
4007
4016
  }
4008
4017
  });
4009
- this.locusInfo.on(_constants.LOCUSINFO.EVENTS.MEETING_INFO_UPDATED, function (_ref32) {
4010
- var isInitializing = _ref32.isInitializing;
4018
+ this.locusInfo.on(_constants.LOCUSINFO.EVENTS.MEETING_INFO_UPDATED, function (_ref33) {
4019
+ var isInitializing = _ref33.isInitializing;
4011
4020
  _this19.updateMeetingActions();
4012
4021
  _this19.recordingController.setDisplayHints(_this19.userDisplayHints);
4013
4022
  _this19.recordingController.setUserPolicy(_this19.selfUserPolicies);
@@ -4145,7 +4154,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
4145
4154
  _this21.updateLLMConnection();
4146
4155
  });
4147
4156
  this.locusInfo.on(_constants.LOCUSINFO.EVENTS.SELF_ADMITTED_GUEST, /*#__PURE__*/function () {
4148
- var _ref33 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee9(payload) {
4157
+ var _ref34 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee9(payload) {
4149
4158
  var _this21$rtcMetrics;
4150
4159
  return _regenerator.default.wrap(function _callee9$(_context9) {
4151
4160
  while (1) switch (_context9.prev = _context9.next) {
@@ -4179,7 +4188,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
4179
4188
  }, _callee9);
4180
4189
  }));
4181
4190
  return function (_x9) {
4182
- return _ref33.apply(this, arguments);
4191
+ return _ref34.apply(this, arguments);
4183
4192
  };
4184
4193
  }());
4185
4194
 
@@ -4298,7 +4307,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
4298
4307
  }
4299
4308
  });
4300
4309
  this.locusInfo.on(_constants.EVENTS.DESTROY_MEETING, /*#__PURE__*/function () {
4301
- var _ref34 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee10(payload) {
4310
+ var _ref35 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee10(payload) {
4302
4311
  return _regenerator.default.wrap(function _callee10$(_context10) {
4303
4312
  while (1) switch (_context10.prev = _context10.next) {
4304
4313
  case 0:
@@ -4358,7 +4367,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
4358
4367
  }, _callee10, null, [[8, 14]]);
4359
4368
  }));
4360
4369
  return function (_x10) {
4361
- return _ref34.apply(this, arguments);
4370
+ return _ref35.apply(this, arguments);
4362
4371
  };
4363
4372
  }());
4364
4373
  }
@@ -4706,6 +4715,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
4706
4715
  canPauseRecording: _util4.default.canUserPause(this.userDisplayHints, this.selfUserPolicies),
4707
4716
  canResumeRecording: _util4.default.canUserResume(this.userDisplayHints, this.selfUserPolicies),
4708
4717
  isPremiseRecordingEnabled: _util4.default.isPremiseRecordingEnabled(this.userDisplayHints, this.selfUserPolicies),
4718
+ showAutoEndMeetingWarning: _util2.default.showAutoEndMeetingWarning(this.userDisplayHints),
4709
4719
  canRaiseHand: _util2.default.canUserRaiseHand(this.userDisplayHints),
4710
4720
  canLowerAllHands: _util2.default.canUserLowerAllHands(this.userDisplayHints),
4711
4721
  canLowerSomeoneElsesHand: _util2.default.canUserLowerSomeoneElsesHand(this.userDisplayHints),
@@ -9023,6 +9033,36 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
9023
9033
  return _promise.default.reject(new Error('Error sending reaction, service url not found.'));
9024
9034
  }
9025
9035
 
9036
+ /**
9037
+ * Extend the current meeting duration.
9038
+ *
9039
+ * @param {number} extensionMinutes - how many minutes to extend
9040
+ * @returns {Promise}
9041
+ * @public
9042
+ * @memberof Meeting
9043
+ */
9044
+ }, {
9045
+ key: "extendMeeting",
9046
+ value: function extendMeeting(_ref38) {
9047
+ var meetingPolicyUrl = _ref38.meetingPolicyUrl,
9048
+ meetingInstanceId = _ref38.meetingInstanceId,
9049
+ participantId = _ref38.participantId,
9050
+ _ref38$extensionMinut = _ref38.extensionMinutes,
9051
+ extensionMinutes = _ref38$extensionMinut === void 0 ? 30 : _ref38$extensionMinut;
9052
+ if (!meetingInstanceId || !participantId) {
9053
+ return _promise.default.reject(new Error('Missing meetingInstanceId or participantId'));
9054
+ }
9055
+ if (!meetingPolicyUrl) {
9056
+ return _promise.default.reject(new Error('Missing meetingPolicyUrl'));
9057
+ }
9058
+ return this.meetingRequest.extendMeeting({
9059
+ meetingInstanceId: meetingInstanceId,
9060
+ participantId: participantId,
9061
+ extensionMinutes: extensionMinutes,
9062
+ meetingPolicyUrl: meetingPolicyUrl
9063
+ });
9064
+ }
9065
+
9026
9066
  /**
9027
9067
  * Method to enable or disable reactions inside the meeting.
9028
9068
  *
@@ -9622,17 +9662,17 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
9622
9662
  }, {
9623
9663
  key: "setStage",
9624
9664
  value: function setStage() {
9625
- var _ref37 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
9626
- _ref37$activeSpeakerP = _ref37.activeSpeakerProportion,
9627
- activeSpeakerProportion = _ref37$activeSpeakerP === void 0 ? 0.5 : _ref37$activeSpeakerP,
9628
- customBackground = _ref37.customBackground,
9629
- customLogo = _ref37.customLogo,
9630
- customNameLabel = _ref37.customNameLabel,
9631
- importantParticipants = _ref37.importantParticipants,
9632
- _ref37$lockAttendeeVi = _ref37.lockAttendeeViewOnStage,
9633
- lockAttendeeViewOnStage = _ref37$lockAttendeeVi === void 0 ? false : _ref37$lockAttendeeVi,
9634
- _ref37$showActiveSpea = _ref37.showActiveSpeaker,
9635
- showActiveSpeaker = _ref37$showActiveSpea === void 0 ? false : _ref37$showActiveSpea;
9665
+ var _ref39 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
9666
+ _ref39$activeSpeakerP = _ref39.activeSpeakerProportion,
9667
+ activeSpeakerProportion = _ref39$activeSpeakerP === void 0 ? 0.5 : _ref39$activeSpeakerP,
9668
+ customBackground = _ref39.customBackground,
9669
+ customLogo = _ref39.customLogo,
9670
+ customNameLabel = _ref39.customNameLabel,
9671
+ importantParticipants = _ref39.importantParticipants,
9672
+ _ref39$lockAttendeeVi = _ref39.lockAttendeeViewOnStage,
9673
+ lockAttendeeViewOnStage = _ref39$lockAttendeeVi === void 0 ? false : _ref39$lockAttendeeVi,
9674
+ _ref39$showActiveSpea = _ref39.showActiveSpeaker,
9675
+ showActiveSpeaker = _ref39$showActiveSpea === void 0 ? false : _ref39$showActiveSpea;
9636
9676
  var videoLayout = {
9637
9677
  overrideDefault: true,
9638
9678
  lockAttendeeViewOnStageOnly: lockAttendeeViewOnStage,