@webex/plugin-meetings 3.8.1 → 3.9.0-multiple-llm.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +26 -13
- package/dist/breakouts/breakout.js +1 -1
- package/dist/breakouts/index.js +1 -1
- package/dist/constants.js +34 -3
- package/dist/constants.js.map +1 -1
- package/dist/controls-options-manager/enums.js +1 -0
- package/dist/controls-options-manager/enums.js.map +1 -1
- package/dist/controls-options-manager/types.js.map +1 -1
- package/dist/controls-options-manager/util.js +26 -0
- package/dist/controls-options-manager/util.js.map +1 -1
- package/dist/interpretation/index.js +1 -1
- package/dist/interpretation/siLanguage.js +1 -1
- package/dist/locus-info/controlsUtils.js +11 -3
- package/dist/locus-info/controlsUtils.js.map +1 -1
- package/dist/locus-info/index.js +107 -95
- package/dist/locus-info/index.js.map +1 -1
- package/dist/locus-info/parser.js +4 -1
- package/dist/locus-info/parser.js.map +1 -1
- package/dist/media/index.js +2 -2
- package/dist/media/index.js.map +1 -1
- package/dist/media/properties.js +53 -5
- package/dist/media/properties.js.map +1 -1
- package/dist/meeting/brbState.js +17 -14
- package/dist/meeting/brbState.js.map +1 -1
- package/dist/meeting/in-meeting-actions.js +13 -1
- package/dist/meeting/in-meeting-actions.js.map +1 -1
- package/dist/meeting/index.js +555 -296
- package/dist/meeting/index.js.map +1 -1
- package/dist/meeting/muteState.js +2 -5
- package/dist/meeting/muteState.js.map +1 -1
- package/dist/meeting/request.js +44 -0
- package/dist/meeting/request.js.map +1 -1
- package/dist/meeting/request.type.js.map +1 -1
- package/dist/{rtcMetrics/constants.js → meeting/type.js} +1 -5
- package/dist/meeting/type.js.map +1 -0
- package/dist/meeting/util.js +98 -13
- package/dist/meeting/util.js.map +1 -1
- package/dist/meeting-info/meeting-info-v2.js +29 -21
- package/dist/meeting-info/meeting-info-v2.js.map +1 -1
- package/dist/meetings/index.js +18 -10
- package/dist/meetings/index.js.map +1 -1
- package/dist/member/types.js.map +1 -1
- package/dist/members/collection.js +13 -0
- package/dist/members/collection.js.map +1 -1
- package/dist/members/index.js +53 -29
- package/dist/members/index.js.map +1 -1
- package/dist/members/request.js +3 -3
- package/dist/members/request.js.map +1 -1
- package/dist/members/util.js +25 -8
- package/dist/members/util.js.map +1 -1
- package/dist/metrics/constants.js +3 -1
- package/dist/metrics/constants.js.map +1 -1
- package/dist/multistream/mediaRequestManager.js +1 -1
- package/dist/multistream/mediaRequestManager.js.map +1 -1
- package/dist/multistream/remoteMedia.js +34 -5
- package/dist/multistream/remoteMedia.js.map +1 -1
- package/dist/multistream/remoteMediaGroup.js +42 -2
- package/dist/multistream/remoteMediaGroup.js.map +1 -1
- package/dist/multistream/sendSlotManager.js +32 -2
- package/dist/multistream/sendSlotManager.js.map +1 -1
- package/dist/reachability/index.js +8 -13
- package/dist/reachability/index.js.map +1 -1
- package/dist/types/constants.d.ts +30 -0
- package/dist/types/controls-options-manager/enums.d.ts +2 -1
- package/dist/types/controls-options-manager/types.d.ts +4 -1
- package/dist/types/locus-info/index.d.ts +54 -10
- package/dist/types/media/properties.d.ts +21 -0
- package/dist/types/meeting/brbState.d.ts +0 -1
- package/dist/types/meeting/in-meeting-actions.d.ts +12 -0
- package/dist/types/meeting/index.d.ts +58 -20
- package/dist/types/meeting/request.d.ts +18 -1
- package/dist/types/meeting/request.type.d.ts +74 -0
- package/dist/types/meeting/type.d.ts +9 -0
- package/dist/types/meeting/util.d.ts +13 -3
- package/dist/types/meeting-info/meeting-info-v2.d.ts +6 -3
- package/dist/types/meetings/index.d.ts +3 -1
- package/dist/types/member/types.d.ts +1 -0
- package/dist/types/members/collection.d.ts +6 -0
- package/dist/types/members/index.d.ts +22 -9
- package/dist/types/members/request.d.ts +1 -1
- package/dist/types/members/util.d.ts +13 -6
- package/dist/types/metrics/constants.d.ts +2 -0
- package/dist/types/multistream/remoteMedia.d.ts +20 -1
- package/dist/types/multistream/remoteMediaGroup.d.ts +11 -0
- package/dist/types/multistream/sendSlotManager.d.ts +16 -0
- package/dist/types/reachability/index.d.ts +2 -2
- package/dist/webinar/index.js +1 -1
- package/package.json +25 -26
- package/src/constants.ts +34 -2
- package/src/controls-options-manager/enums.ts +1 -0
- package/src/controls-options-manager/types.ts +6 -1
- package/src/controls-options-manager/util.ts +31 -0
- package/src/locus-info/controlsUtils.ts +15 -0
- package/src/locus-info/index.ts +174 -96
- package/src/locus-info/parser.ts +5 -1
- package/src/media/index.ts +2 -2
- package/src/media/properties.ts +43 -0
- package/src/meeting/brbState.ts +13 -9
- package/src/meeting/in-meeting-actions.ts +25 -0
- package/src/meeting/index.ts +362 -75
- package/src/meeting/muteState.ts +2 -6
- package/src/meeting/request.ts +39 -0
- package/src/meeting/request.type.ts +64 -0
- package/src/meeting/type.ts +9 -0
- package/src/meeting/util.ts +114 -22
- package/src/meeting-info/meeting-info-v2.ts +24 -5
- package/src/meetings/index.ts +12 -5
- package/src/member/types.ts +1 -0
- package/src/members/collection.ts +11 -0
- package/src/members/index.ts +51 -15
- package/src/members/request.ts +2 -2
- package/src/members/util.ts +34 -6
- package/src/metrics/constants.ts +2 -0
- package/src/multistream/mediaRequestManager.ts +7 -7
- package/src/multistream/remoteMedia.ts +34 -4
- package/src/multistream/remoteMediaGroup.ts +37 -2
- package/src/multistream/sendSlotManager.ts +34 -2
- package/src/reachability/index.ts +8 -16
- package/test/unit/spec/common/browser-detection.js +0 -24
- package/test/unit/spec/controls-options-manager/util.js +58 -0
- package/test/unit/spec/locus-info/controlsUtils.js +52 -0
- package/test/unit/spec/locus-info/index.js +270 -97
- package/test/unit/spec/locus-info/parser.js +3 -2
- package/test/unit/spec/media/index.ts +107 -0
- package/test/unit/spec/media/properties.ts +137 -0
- package/test/unit/spec/meeting/brbState.ts +23 -4
- package/test/unit/spec/meeting/in-meeting-actions.ts +12 -0
- package/test/unit/spec/meeting/index.js +1194 -97
- package/test/unit/spec/meeting/muteState.js +32 -6
- package/test/unit/spec/meeting/request.js +92 -0
- package/test/unit/spec/meeting/utils.js +167 -17
- package/test/unit/spec/meeting-info/meetinginfov2.js +8 -3
- package/test/unit/spec/meetings/index.js +12 -5
- package/test/unit/spec/members/collection.js +120 -0
- package/test/unit/spec/members/index.js +140 -12
- package/test/unit/spec/members/request.js +57 -2
- package/test/unit/spec/members/utils.js +139 -17
- package/test/unit/spec/multistream/mediaRequestManager.ts +19 -6
- package/test/unit/spec/multistream/remoteMedia.ts +66 -2
- package/test/unit/spec/multistream/sendSlotManager.ts +59 -0
- package/test/unit/spec/reachability/index.ts +160 -9
- package/test/unit/spec/roap/turnDiscovery.ts +3 -3
- package/dist/annotation/annotation.types.d.ts +0 -42
- package/dist/annotation/constants.d.ts +0 -31
- package/dist/annotation/index.d.ts +0 -117
- package/dist/breakouts/breakout.d.ts +0 -8
- package/dist/breakouts/collection.d.ts +0 -5
- package/dist/breakouts/edit-lock-error.d.ts +0 -15
- package/dist/breakouts/events.d.ts +0 -8
- package/dist/breakouts/index.d.ts +0 -5
- package/dist/breakouts/request.d.ts +0 -22
- package/dist/breakouts/utils.d.ts +0 -15
- package/dist/common/browser-detection.d.ts +0 -9
- package/dist/common/collection.d.ts +0 -48
- package/dist/common/config.d.ts +0 -2
- package/dist/common/errors/captcha-error.d.ts +0 -15
- package/dist/common/errors/intent-to-join.d.ts +0 -16
- package/dist/common/errors/join-meeting.d.ts +0 -17
- package/dist/common/errors/media.d.ts +0 -15
- package/dist/common/errors/no-meeting-info.d.ts +0 -14
- package/dist/common/errors/parameter.d.ts +0 -15
- package/dist/common/errors/password-error.d.ts +0 -15
- package/dist/common/errors/permission.d.ts +0 -14
- package/dist/common/errors/reclaim-host-role-error.d.ts +0 -60
- package/dist/common/errors/reclaim-host-role-error.js +0 -158
- package/dist/common/errors/reclaim-host-role-error.js.map +0 -1
- package/dist/common/errors/reclaim-host-role-errors.d.ts +0 -60
- package/dist/common/errors/reconnection-in-progress.d.ts +0 -9
- package/dist/common/errors/reconnection-in-progress.js +0 -35
- package/dist/common/errors/reconnection-in-progress.js.map +0 -1
- package/dist/common/errors/reconnection.d.ts +0 -15
- package/dist/common/errors/stats.d.ts +0 -15
- package/dist/common/errors/webex-errors.d.ts +0 -81
- package/dist/common/errors/webex-meetings-error.d.ts +0 -20
- package/dist/common/events/events-scope.d.ts +0 -17
- package/dist/common/events/events.d.ts +0 -12
- package/dist/common/events/trigger-proxy.d.ts +0 -2
- package/dist/common/events/util.d.ts +0 -2
- package/dist/common/logs/logger-config.d.ts +0 -2
- package/dist/common/logs/logger-proxy.d.ts +0 -2
- package/dist/common/logs/request.d.ts +0 -34
- package/dist/common/queue.d.ts +0 -32
- package/dist/config.d.ts +0 -73
- package/dist/constants.d.ts +0 -952
- package/dist/controls-options-manager/constants.d.ts +0 -4
- package/dist/controls-options-manager/enums.d.ts +0 -5
- package/dist/controls-options-manager/index.d.ts +0 -120
- package/dist/controls-options-manager/types.d.ts +0 -43
- package/dist/controls-options-manager/util.d.ts +0 -7
- package/dist/index.d.ts +0 -4
- package/dist/interceptors/index.d.ts +0 -2
- package/dist/interceptors/locusRetry.d.ts +0 -27
- package/dist/interpretation/collection.d.ts +0 -5
- package/dist/interpretation/index.d.ts +0 -5
- package/dist/interpretation/siLanguage.d.ts +0 -5
- package/dist/locus-info/controlsUtils.d.ts +0 -2
- package/dist/locus-info/embeddedAppsUtils.d.ts +0 -2
- package/dist/locus-info/fullState.d.ts +0 -2
- package/dist/locus-info/hostUtils.d.ts +0 -2
- package/dist/locus-info/index.d.ts +0 -269
- package/dist/locus-info/infoUtils.d.ts +0 -2
- package/dist/locus-info/mediaSharesUtils.d.ts +0 -2
- package/dist/locus-info/parser.d.ts +0 -212
- package/dist/locus-info/selfUtils.d.ts +0 -2
- package/dist/media/index.d.ts +0 -32
- package/dist/media/properties.d.ts +0 -108
- package/dist/media/util.d.ts +0 -2
- package/dist/mediaQualityMetrics/config.d.ts +0 -233
- package/dist/mediaQualityMetrics/config.js +0 -513
- package/dist/mediaQualityMetrics/config.js.map +0 -1
- package/dist/meeting/effectsState.d.ts +0 -42
- package/dist/meeting/effectsState.js +0 -260
- package/dist/meeting/effectsState.js.map +0 -1
- package/dist/meeting/in-meeting-actions.d.ts +0 -79
- package/dist/meeting/index.d.ts +0 -1622
- package/dist/meeting/locusMediaRequest.d.ts +0 -74
- package/dist/meeting/muteState.d.ts +0 -116
- package/dist/meeting/request.d.ts +0 -257
- package/dist/meeting/request.type.d.ts +0 -11
- package/dist/meeting/state.d.ts +0 -9
- package/dist/meeting/util.d.ts +0 -2
- package/dist/meeting/voicea-meeting.d.ts +0 -16
- package/dist/meeting-info/collection.d.ts +0 -20
- package/dist/meeting-info/index.d.ts +0 -57
- package/dist/meeting-info/meeting-info-v2.d.ts +0 -93
- package/dist/meeting-info/request.d.ts +0 -22
- package/dist/meeting-info/util.d.ts +0 -2
- package/dist/meeting-info/utilv2.d.ts +0 -2
- package/dist/meetings/collection.d.ts +0 -23
- package/dist/meetings/index.d.ts +0 -296
- package/dist/meetings/meetings.types.d.ts +0 -4
- package/dist/meetings/request.d.ts +0 -27
- package/dist/meetings/util.d.ts +0 -18
- package/dist/member/index.d.ts +0 -148
- package/dist/member/member.types.d.ts +0 -11
- package/dist/member/member.types.js +0 -18
- package/dist/member/member.types.js.map +0 -1
- package/dist/member/types.d.ts +0 -32
- package/dist/member/util.d.ts +0 -2
- package/dist/members/collection.d.ts +0 -24
- package/dist/members/index.d.ts +0 -308
- package/dist/members/request.d.ts +0 -58
- package/dist/members/types.d.ts +0 -25
- package/dist/members/util.d.ts +0 -2
- package/dist/metrics/config.d.ts +0 -169
- package/dist/metrics/config.js +0 -289
- package/dist/metrics/config.js.map +0 -1
- package/dist/metrics/constants.d.ts +0 -59
- package/dist/metrics/index.d.ts +0 -152
- package/dist/multistream/mediaRequestManager.d.ts +0 -119
- package/dist/multistream/receiveSlot.d.ts +0 -68
- package/dist/multistream/receiveSlotManager.d.ts +0 -56
- package/dist/multistream/remoteMedia.d.ts +0 -72
- package/dist/multistream/remoteMediaGroup.d.ts +0 -49
- package/dist/multistream/remoteMediaManager.d.ts +0 -300
- package/dist/multistream/sendSlotManager.d.ts +0 -69
- package/dist/networkQualityMonitor/index.d.ts +0 -70
- package/dist/networkQualityMonitor/index.js +0 -226
- package/dist/networkQualityMonitor/index.js.map +0 -1
- package/dist/peer-connection-manager/index.d.ts +0 -6
- package/dist/peer-connection-manager/index.js +0 -671
- package/dist/peer-connection-manager/index.js.map +0 -1
- package/dist/peer-connection-manager/util.d.ts +0 -6
- package/dist/peer-connection-manager/util.js +0 -110
- package/dist/peer-connection-manager/util.js.map +0 -1
- package/dist/personal-meeting-room/index.d.ts +0 -47
- package/dist/personal-meeting-room/request.d.ts +0 -14
- package/dist/personal-meeting-room/util.d.ts +0 -2
- package/dist/reachability/clusterReachability.d.ts +0 -109
- package/dist/reachability/index.d.ts +0 -139
- package/dist/reachability/request.d.ts +0 -35
- package/dist/reachability/util.d.ts +0 -8
- package/dist/reactions/constants.d.ts +0 -3
- package/dist/reactions/reactions.d.ts +0 -4
- package/dist/reactions/reactions.type.d.ts +0 -32
- package/dist/reconnection-manager/index.d.ts +0 -112
- package/dist/recording-controller/enums.d.ts +0 -7
- package/dist/recording-controller/index.d.ts +0 -193
- package/dist/recording-controller/util.d.ts +0 -13
- package/dist/roap/collection.d.ts +0 -10
- package/dist/roap/collection.js +0 -63
- package/dist/roap/collection.js.map +0 -1
- package/dist/roap/handler.d.ts +0 -47
- package/dist/roap/handler.js +0 -279
- package/dist/roap/handler.js.map +0 -1
- package/dist/roap/index.d.ts +0 -116
- package/dist/roap/request.d.ts +0 -35
- package/dist/roap/state.d.ts +0 -9
- package/dist/roap/state.js +0 -127
- package/dist/roap/state.js.map +0 -1
- package/dist/roap/turnDiscovery.d.ts +0 -81
- package/dist/roap/util.d.ts +0 -2
- package/dist/roap/util.js +0 -76
- package/dist/roap/util.js.map +0 -1
- package/dist/rtcMetrics/constants.d.ts +0 -4
- package/dist/rtcMetrics/constants.js.map +0 -1
- package/dist/rtcMetrics/index.d.ts +0 -61
- package/dist/rtcMetrics/index.js +0 -197
- package/dist/rtcMetrics/index.js.map +0 -1
- package/dist/statsAnalyzer/global.d.ts +0 -118
- package/dist/statsAnalyzer/global.js +0 -127
- package/dist/statsAnalyzer/global.js.map +0 -1
- package/dist/statsAnalyzer/index.d.ts +0 -193
- package/dist/statsAnalyzer/index.js +0 -1019
- package/dist/statsAnalyzer/index.js.map +0 -1
- package/dist/statsAnalyzer/mqaUtil.d.ts +0 -22
- package/dist/statsAnalyzer/mqaUtil.js +0 -181
- package/dist/statsAnalyzer/mqaUtil.js.map +0 -1
- package/dist/transcription/index.d.ts +0 -64
- package/dist/types/common/errors/reconnection-in-progress.d.ts +0 -9
- package/dist/types/mediaQualityMetrics/config.d.ts +0 -241
- package/dist/types/networkQualityMonitor/index.d.ts +0 -70
- package/dist/types/rtcMetrics/constants.d.ts +0 -4
- package/dist/types/rtcMetrics/index.d.ts +0 -71
- package/dist/types/statsAnalyzer/global.d.ts +0 -36
- package/dist/types/statsAnalyzer/index.d.ts +0 -217
- package/dist/types/statsAnalyzer/mqaUtil.d.ts +0 -48
- package/dist/webinar/collection.d.ts +0 -16
- package/dist/webinar/index.d.ts +0 -5
@@ -1,5 +1,6 @@
|
|
1
1
|
import { LocalCameraStream, LocalMicrophoneStream, LocalDisplayStream, LocalSystemAudioStream, RemoteStream } from '@webex/media-helpers';
|
2
2
|
import { ClientEvent } from '@webex/internal-plugin-metrics';
|
3
|
+
import { throttle } from 'lodash';
|
3
4
|
export type MediaDirection = {
|
4
5
|
sendAudio: boolean;
|
5
6
|
sendVideo: boolean;
|
@@ -26,6 +27,10 @@ export default class MediaProperties {
|
|
26
27
|
videoDeviceId: any;
|
27
28
|
videoStream?: LocalCameraStream;
|
28
29
|
namespace: string;
|
30
|
+
mediaIssueCounters: {
|
31
|
+
[key: string]: number;
|
32
|
+
};
|
33
|
+
throttledSendMediaIssueMetric: ReturnType<typeof throttle>;
|
29
34
|
/**
|
30
35
|
* @param {Object} [options] -- to auto construct
|
31
36
|
* @returns {MediaProperties}
|
@@ -63,6 +68,11 @@ export default class MediaProperties {
|
|
63
68
|
* @returns {void}
|
64
69
|
*/
|
65
70
|
setVideoDeviceId(deviceId: string): void;
|
71
|
+
/**
|
72
|
+
* Clears the webrtcMediaConnection. This method should be called after
|
73
|
+
* peer connection is closed and no longer needed.
|
74
|
+
* @returns {void}
|
75
|
+
*/
|
66
76
|
unsetPeerConnection(): void;
|
67
77
|
/**
|
68
78
|
* Removes both remote audio and video from class instance
|
@@ -129,4 +139,15 @@ export default class MediaProperties {
|
|
129
139
|
selectedCandidatePairChanges: number;
|
130
140
|
numTransports: number;
|
131
141
|
}>;
|
142
|
+
/**
|
143
|
+
* Sends a metric about a media issue. Metrics are throttled so that we don't
|
144
|
+
* send too many of them, but include a count so that we know how many issues
|
145
|
+
* were detected.
|
146
|
+
*
|
147
|
+
* @param {string} issueType
|
148
|
+
* @param {string} issueSubType
|
149
|
+
* @param {string} correlationId
|
150
|
+
* @returns {void}
|
151
|
+
*/
|
152
|
+
sendMediaIssueMetric(issueType: string, issueSubType: string, correlationId: any): void;
|
132
153
|
}
|
@@ -34,8 +34,12 @@ interface IInMeetingActions {
|
|
34
34
|
isClosedCaptionActive?: boolean;
|
35
35
|
canStartManualCaption?: boolean;
|
36
36
|
canStopManualCaption?: boolean;
|
37
|
+
isLocalRecordingStarted?: boolean;
|
38
|
+
isLocalRecordingStopped?: boolean;
|
39
|
+
isLocalRecordingPaused?: boolean;
|
37
40
|
isManualCaptionActive?: boolean;
|
38
41
|
isSaveTranscriptsEnabled?: boolean;
|
42
|
+
isSpokenLanguageAutoDetectionEnabled?: boolean;
|
39
43
|
isWebexAssistantActive?: boolean;
|
40
44
|
canViewCaptionPanel?: boolean;
|
41
45
|
isRealTimeTranslationEnabled?: boolean;
|
@@ -103,6 +107,8 @@ interface IInMeetingActions {
|
|
103
107
|
canEnableRemoteDesktopControl?: boolean;
|
104
108
|
canDisableRemoteDesktopControl?: boolean;
|
105
109
|
canMoveToLobby?: boolean;
|
110
|
+
canEnablePollingQA?: boolean;
|
111
|
+
canDisablePollingQA?: boolean;
|
106
112
|
}
|
107
113
|
/**
|
108
114
|
* @class InMeetingActions
|
@@ -137,8 +143,12 @@ export default class InMeetingActions implements IInMeetingActions {
|
|
137
143
|
isClosedCaptionActive: any;
|
138
144
|
canStartManualCaption: any;
|
139
145
|
canStopManualCaption: any;
|
146
|
+
isLocalRecordingStopped: any;
|
147
|
+
isLocalRecordingStarted: any;
|
148
|
+
isLocalRecordingPaused: any;
|
140
149
|
isManualCaptionActive: any;
|
141
150
|
isSaveTranscriptsEnabled: any;
|
151
|
+
isSpokenLanguageAutoDetectionEnabled: any;
|
142
152
|
isWebexAssistantActive: any;
|
143
153
|
canViewCaptionPanel: any;
|
144
154
|
isRealTimeTranslationEnabled: any;
|
@@ -206,6 +216,8 @@ export default class InMeetingActions implements IInMeetingActions {
|
|
206
216
|
canEnableRemoteDesktopControl: any;
|
207
217
|
canDisableRemoteDesktopControl: any;
|
208
218
|
canMoveToLobby: any;
|
219
|
+
canEnablePollingQA: any;
|
220
|
+
canDisablePollingQA: any;
|
209
221
|
/**
|
210
222
|
* Returns all meeting action options
|
211
223
|
* @returns {Object}
|
@@ -2,7 +2,7 @@
|
|
2
2
|
import { StatelessWebexPlugin } from '@webex/webex-core';
|
3
3
|
import { ClientEvent, ClientEventLeaveReason } from '@webex/internal-plugin-metrics';
|
4
4
|
import { ClientEvent as RawClientEvent } from '@webex/event-dictionary-ts';
|
5
|
-
import { MediaType, StatsAnalyzer, NetworkQualityMonitor } from '@webex/internal-media-core';
|
5
|
+
import { MediaType, StatsAnalyzer, NetworkQualityMonitor, StatsMonitor } from '@webex/internal-media-core';
|
6
6
|
import { LocalStream, LocalCameraStream, LocalDisplayStream, LocalSystemAudioStream, LocalMicrophoneStream } from '@webex/media-helpers';
|
7
7
|
import Roap, { type TurnDiscoverySkipReason } from '../roap/index';
|
8
8
|
import { type TurnServerInfo } from '../roap/types';
|
@@ -21,6 +21,8 @@ import RecordingController from '../recording-controller';
|
|
21
21
|
import ControlsOptionsManager from '../controls-options-manager';
|
22
22
|
import { LocusMediaRequest } from './locusMediaRequest';
|
23
23
|
import { BrbState } from './brbState';
|
24
|
+
import { SetStageOptions } from './request.type';
|
25
|
+
import { Invitee } from './type';
|
24
26
|
export type CaptionData = {
|
25
27
|
id: string;
|
26
28
|
isFinal: boolean;
|
@@ -66,6 +68,13 @@ export type AddMediaOptions = {
|
|
66
68
|
remoteMediaManagerConfig?: RemoteMediaManagerConfiguration;
|
67
69
|
bundlePolicy?: BundlePolicy;
|
68
70
|
allowMediaInLobby?: boolean;
|
71
|
+
additionalMediaOptions?: AdditionalMediaOptions;
|
72
|
+
};
|
73
|
+
export type AdditionalMediaOptions = {
|
74
|
+
sendVideo?: boolean;
|
75
|
+
receiveVideo?: boolean;
|
76
|
+
sendAudio?: boolean;
|
77
|
+
receiveAudio?: boolean;
|
69
78
|
};
|
70
79
|
export type CallStateForMetrics = {
|
71
80
|
correlationId?: string;
|
@@ -74,6 +83,7 @@ export type CallStateForMetrics = {
|
|
74
83
|
loginType?: string;
|
75
84
|
userNameInput?: string;
|
76
85
|
emailInput?: string;
|
86
|
+
pstnCorrelationId?: string;
|
77
87
|
};
|
78
88
|
export declare const MEDIA_UPDATE_TYPE: {
|
79
89
|
TRANSCODED_MEDIA_CONNECTION: string;
|
@@ -88,6 +98,7 @@ export declare enum ScreenShareFloorStatus {
|
|
88
98
|
type FetchMeetingInfoParams = {
|
89
99
|
password?: string;
|
90
100
|
registrationId?: string;
|
101
|
+
classificationId?: string;
|
91
102
|
captchaCode?: string;
|
92
103
|
extraParams?: Record<string, any>;
|
93
104
|
sendCAevents?: boolean;
|
@@ -418,6 +429,7 @@ export default class Meeting extends StatelessWebexPlugin {
|
|
418
429
|
shareStatus: string;
|
419
430
|
screenShareFloorState: ScreenShareFloorStatus;
|
420
431
|
statsAnalyzer: StatsAnalyzer;
|
432
|
+
statsMonitor: StatsMonitor;
|
421
433
|
transcription: Transcription;
|
422
434
|
updateMediaConnections: (mediaConnections: any[]) => void;
|
423
435
|
userDisplayHints: any;
|
@@ -479,10 +491,11 @@ export default class Meeting extends StatelessWebexPlugin {
|
|
479
491
|
/**
|
480
492
|
* @param {Object} attrs
|
481
493
|
* @param {Object} options
|
494
|
+
* @param {Function} callback - if provided, it will be called with the newly created meeting object as soon as the meeting.id is set
|
482
495
|
* @constructor
|
483
496
|
* @memberof Meeting
|
484
497
|
*/
|
485
|
-
constructor(attrs: any, options: object);
|
498
|
+
constructor(attrs: any, options: object, callback: (meeting: Meeting) => void);
|
486
499
|
/**
|
487
500
|
* returns meeting is joined
|
488
501
|
* @private
|
@@ -505,6 +518,16 @@ export default class Meeting extends StatelessWebexPlugin {
|
|
505
518
|
* @param {string} correlationId
|
506
519
|
*/
|
507
520
|
set correlationId(correlationId: string);
|
521
|
+
/**
|
522
|
+
* Getter - Returns callStateForMetrics.pstnCorrelationId
|
523
|
+
* @returns {string | undefined}
|
524
|
+
*/
|
525
|
+
get pstnCorrelationId(): string | undefined;
|
526
|
+
/**
|
527
|
+
* Setter - sets callStateForMetrics.pstnCorrelationId
|
528
|
+
* @param {string | undefined} correlationId
|
529
|
+
*/
|
530
|
+
set pstnCorrelationId(correlationId: string | undefined);
|
508
531
|
/**
|
509
532
|
* Getter - Returns callStateForMetrics.userNameInput
|
510
533
|
* @returns {string}
|
@@ -854,43 +877,37 @@ export default class Meeting extends StatelessWebexPlugin {
|
|
854
877
|
private updateMeetingObject;
|
855
878
|
/**
|
856
879
|
* Invite a guest to the call that isn't normally part of this call
|
857
|
-
* @param {
|
880
|
+
* @param {Invitee} invitee
|
858
881
|
* @param {String} invitee.emailAddress
|
859
882
|
* @param {String} invitee.email
|
860
883
|
* @param {String} invitee.phoneNumber
|
861
884
|
* @param {Boolean} [alertIfActive]
|
885
|
+
* @param {Boolean} [invitee.skipEmailValidation]
|
886
|
+
* @param {Boolean} [invitee.isInternalNumber]
|
862
887
|
* @returns {Promise} see #members.addMember
|
863
888
|
* @public
|
864
889
|
* @memberof Meeting
|
865
890
|
*/
|
866
|
-
invite(invitee:
|
867
|
-
emailAddress: string;
|
868
|
-
email: string;
|
869
|
-
phoneNumber: string;
|
870
|
-
roles: Array<string>;
|
871
|
-
}, alertIfActive?: boolean): any;
|
891
|
+
invite(invitee: Invitee, alertIfActive?: boolean): any;
|
872
892
|
/**
|
873
893
|
* Cancel an outgoing phone call invitation made during a meeting
|
874
|
-
* @param {
|
894
|
+
* @param {Invitee} invitee
|
875
895
|
* @param {String} invitee.phoneNumber
|
876
896
|
* @returns {Promise} see #members.cancelPhoneInvite
|
877
897
|
* @public
|
878
898
|
* @memberof Meeting
|
879
899
|
*/
|
880
|
-
cancelPhoneInvite(invitee:
|
881
|
-
phoneNumber: string;
|
882
|
-
}): any;
|
900
|
+
cancelPhoneInvite(invitee: Invitee): any;
|
883
901
|
/**
|
884
|
-
* Cancel an SIP call invitation made during a meeting
|
885
|
-
* @param {
|
902
|
+
* Cancel an SIP/phone call invitation made during a meeting
|
903
|
+
* @param {Invitee} invitee
|
886
904
|
* @param {String} invitee.memberId
|
887
|
-
* @
|
905
|
+
* @param {Boolean} [invitee.isInternalNumber] - When cancel phone invitation, if the number is internal
|
906
|
+
* @returns {Promise} see #members.cancelInviteByMemberId
|
888
907
|
* @public
|
889
908
|
* @memberof Meeting
|
890
909
|
*/
|
891
|
-
|
892
|
-
memberId: string;
|
893
|
-
}): any;
|
910
|
+
cancelInviteByMemberId(invitee: Invitee): any;
|
894
911
|
/**
|
895
912
|
* Admit the guest(s) to the call once they are waiting.
|
896
913
|
* If the host/cohost is in a breakout session, the locus url
|
@@ -1337,7 +1354,7 @@ export default class Meeting extends StatelessWebexPlugin {
|
|
1337
1354
|
* @memberof Meeting
|
1338
1355
|
* @returns {Promise}
|
1339
1356
|
*/
|
1340
|
-
disconnectPhoneAudio(): Promise<
|
1357
|
+
disconnectPhoneAudio(): Promise<void>;
|
1341
1358
|
/**
|
1342
1359
|
* Moves the call to the specified resourceId
|
1343
1360
|
* @param {String} resourceId
|
@@ -1993,5 +2010,26 @@ export default class Meeting extends StatelessWebexPlugin {
|
|
1993
2010
|
* @returns {Promise<MediaReachabilityMetrics>}
|
1994
2011
|
*/
|
1995
2012
|
private getMediaReachabilityMetricFields;
|
2013
|
+
/**
|
2014
|
+
* Set the stage for the meeting
|
2015
|
+
*
|
2016
|
+
* @param {SetStageOptions} options Options to use when setting the stage
|
2017
|
+
* @returns {Promise} The locus request
|
2018
|
+
*/
|
2019
|
+
setStage({ activeSpeakerProportion, customBackground, customLogo, customNameLabel, importantParticipants, lockAttendeeViewOnStage, showActiveSpeaker, }?: SetStageOptions): Promise<any>;
|
2020
|
+
/**
|
2021
|
+
* Unset the stage for the meeting
|
2022
|
+
*
|
2023
|
+
* @returns {Promise} The locus request
|
2024
|
+
*/
|
2025
|
+
unsetStage(): Promise<any>;
|
2026
|
+
/**
|
2027
|
+
* Notifies the host with the given meeting UUID and display names.
|
2028
|
+
*
|
2029
|
+
* @param {string} meetingUuid - The UUID of the meeting.
|
2030
|
+
* @param {string[]} displayName - An array of display names to notify the host with.
|
2031
|
+
* @returns {Promise<any>} The result of the notifyHost request.
|
2032
|
+
*/
|
2033
|
+
notifyHost(meetingUuid: string, displayName: string[]): any;
|
1996
2034
|
}
|
1997
2035
|
export {};
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { StatelessWebexPlugin } from '@webex/webex-core';
|
2
|
-
import { SendReactionOptions, BrbOptions, ToggleReactionsOptions, PostMeetingDataConsentOptions } from './request.type';
|
2
|
+
import { SendReactionOptions, BrbOptions, ToggleReactionsOptions, PostMeetingDataConsentOptions, SynchronizeVideoLayout } from './request.type';
|
3
3
|
import { AnnotationInfo } from '../annotation/annotation.types';
|
4
4
|
import { ClientMediaPreferences } from '../reachability/reachability.types';
|
5
5
|
/**
|
@@ -314,4 +314,21 @@ export default class MeetingRequest extends StatelessWebexPlugin {
|
|
314
314
|
* @returns {Promise}
|
315
315
|
*/
|
316
316
|
setPostMeetingDataConsent({ postMeetingDataConsent, locusUrl, deviceUrl, selfId, }: PostMeetingDataConsentOptions): Promise<any>;
|
317
|
+
/**
|
318
|
+
* Synchronize the stage for a meeting
|
319
|
+
*
|
320
|
+
* @param {LocusUrl} locusUrl The locus URL
|
321
|
+
* @param {SetStageVideoLayout} videoLayout The video layout to synchronize
|
322
|
+
* @returns {Promise} The locus request
|
323
|
+
*/
|
324
|
+
synchronizeStage(locusUrl: string, videoLayout: SynchronizeVideoLayout): Promise<any>;
|
325
|
+
/**
|
326
|
+
* Sends a request to notify the host of a meeting.
|
327
|
+
* @param {string} siteFullUrl - The site URL.
|
328
|
+
* @param {string} locusId - The locus ID.
|
329
|
+
* @param {string} meetingUuid - The meeting UUID.
|
330
|
+
* @param {Array<string>} displayName - The display names to notify the host about.
|
331
|
+
* @returns {Promise}
|
332
|
+
*/
|
333
|
+
notifyHost(siteFullUrl: string, locusId: string, meetingUuid: string, displayName: string[]): any;
|
317
334
|
}
|
@@ -21,3 +21,77 @@ export type PostMeetingDataConsentOptions = {
|
|
21
21
|
deviceUrl: string;
|
22
22
|
selfId: string;
|
23
23
|
};
|
24
|
+
export type StageCustomLogoPositions = 'LowerLeft' | 'LowerMiddle' | 'LowerRight' | 'UpperLeft' | 'UpperMiddle' | 'UpperRight';
|
25
|
+
export type StageNameLabelType = 'Primary' | 'PrimaryInverted' | 'Secondary' | 'SecondaryInverted';
|
26
|
+
export type StageCustomBackground = {
|
27
|
+
url: string;
|
28
|
+
[others: string]: unknown;
|
29
|
+
};
|
30
|
+
export type StageCustomLogo = {
|
31
|
+
url: string;
|
32
|
+
position: StageCustomLogoPositions;
|
33
|
+
[others: string]: unknown;
|
34
|
+
};
|
35
|
+
export type StageCustomNameLabel = {
|
36
|
+
accentColor: string;
|
37
|
+
background: {
|
38
|
+
color: string;
|
39
|
+
};
|
40
|
+
border: {
|
41
|
+
color: string;
|
42
|
+
};
|
43
|
+
content: {
|
44
|
+
displayName: {
|
45
|
+
color: string;
|
46
|
+
};
|
47
|
+
subtitle: {
|
48
|
+
color: string;
|
49
|
+
};
|
50
|
+
};
|
51
|
+
decoration: {
|
52
|
+
color: string;
|
53
|
+
};
|
54
|
+
fadeOut?: {
|
55
|
+
delay: number;
|
56
|
+
};
|
57
|
+
type: StageNameLabelType;
|
58
|
+
[others: string]: unknown;
|
59
|
+
};
|
60
|
+
export type SetStageOptions = {
|
61
|
+
activeSpeakerProportion?: number;
|
62
|
+
customBackground?: StageCustomBackground;
|
63
|
+
customLogo?: StageCustomLogo;
|
64
|
+
customNameLabel?: StageCustomNameLabel;
|
65
|
+
importantParticipants?: {
|
66
|
+
mainCsi: number;
|
67
|
+
participantId: string;
|
68
|
+
}[];
|
69
|
+
lockAttendeeViewOnStage?: boolean;
|
70
|
+
showActiveSpeaker?: boolean;
|
71
|
+
};
|
72
|
+
export type SetStageVideoLayout = {
|
73
|
+
overrideDefault: true;
|
74
|
+
lockAttendeeViewOnStageOnly: boolean;
|
75
|
+
stageParameters: {
|
76
|
+
importantParticipants?: {
|
77
|
+
participantId: string;
|
78
|
+
mainCsi: number;
|
79
|
+
order: number;
|
80
|
+
}[];
|
81
|
+
showActiveSpeaker: {
|
82
|
+
show: boolean;
|
83
|
+
order: number;
|
84
|
+
};
|
85
|
+
activeSpeakerProportion: number;
|
86
|
+
stageManagerType: number;
|
87
|
+
};
|
88
|
+
customLayouts?: {
|
89
|
+
background?: StageCustomBackground;
|
90
|
+
logo?: StageCustomLogo;
|
91
|
+
};
|
92
|
+
nameLabelStyle?: StageCustomNameLabel;
|
93
|
+
};
|
94
|
+
export type UnsetStageVideoLayout = {
|
95
|
+
overrideDefault: false;
|
96
|
+
};
|
97
|
+
export type SynchronizeVideoLayout = SetStageVideoLayout | UnsetStageVideoLayout;
|
@@ -14,6 +14,12 @@ declare const MeetingUtil: {
|
|
14
14
|
* @returns {IP_VERSION|undefined} ipver value to be passed to the backend APIs or undefined if we should not pass any value to the backend
|
15
15
|
*/
|
16
16
|
getIpVersion(webex: any): IP_VERSION | undefined;
|
17
|
+
/**
|
18
|
+
* Returns CA event labels related to Orpheus ipver parameter that can be sent to CA with any CA event
|
19
|
+
* @param {any} webex instance
|
20
|
+
* @returns {Array<string>|undefined} array of CA event labels or undefined if no labels should be sent
|
21
|
+
*/
|
22
|
+
getCaEventLabelsForIpVersion(webex: any): Array<string> | undefined;
|
17
23
|
joinMeeting: (meeting: any, options: any) => Promise<any>;
|
18
24
|
cleanUp: (meeting: any) => any;
|
19
25
|
disconnectPhoneAudio: (meeting: any, phoneUrl: any) => any;
|
@@ -71,8 +77,12 @@ declare const MeetingUtil: {
|
|
71
77
|
canStopTranscribing: (displayHints: any) => any;
|
72
78
|
isClosedCaptionActive: (displayHints: any) => any;
|
73
79
|
canStartManualCaption: (displayHints: any) => any;
|
80
|
+
isLocalRecordingStarted: (displayHints: any) => any;
|
81
|
+
isLocalRecordingStopped: (displayHints: any) => any;
|
82
|
+
isLocalRecordingPaused: (displayHints: any) => any;
|
74
83
|
canStopManualCaption: (displayHints: any) => any;
|
75
84
|
isManualCaptionActive: (displayHints: any) => any;
|
85
|
+
isSpokenLanguageAutoDetectionEnabled: (displayHints: any) => any;
|
76
86
|
isWebexAssistantActive: (displayHints: any) => any;
|
77
87
|
canViewCaptionPanel: (displayHints: any) => any;
|
78
88
|
isRealTimeTranslationEnabled: (displayHints: any) => any;
|
@@ -92,14 +102,14 @@ declare const MeetingUtil: {
|
|
92
102
|
*/
|
93
103
|
addSequence: (meeting: any, requestBody: any) => void;
|
94
104
|
/**
|
95
|
-
* Updates the locus info for the meeting with the
|
96
|
-
* returned from requests
|
105
|
+
* Updates the locus info for the meeting with the locus
|
106
|
+
* information returned from API requests made to Locus
|
97
107
|
* Returns the original response object
|
98
108
|
* @param {Object} meeting The meeting object
|
99
109
|
* @param {Object} response The response of the http request
|
100
110
|
* @returns {Object}
|
101
111
|
*/
|
102
|
-
|
112
|
+
updateLocusFromApiResponse: (meeting: any, response: any) => any;
|
103
113
|
generateBuildLocusDeltaRequestOptions: (originalMeeting: any) => (originalOptions: any) => any;
|
104
114
|
generateLocusDeltaRequest: (originalMeeting: any) => (originalOptions: any) => any;
|
105
115
|
selfSupportsFeature: (feature: SELF_POLICY, userPolicies: Record<SELF_POLICY, boolean>) => boolean;
|
@@ -187,20 +187,22 @@ export default class MeetingInfoV2 {
|
|
187
187
|
* @param {String} conversationUrl conversationUrl to start adhoc meeting on
|
188
188
|
* @param {String} installedOrgID org ID of user's machine
|
189
189
|
* @param {Boolean} enableStaticMeetingLink whether or not to enable static meeting link
|
190
|
+
* @param {String} classificationId need it to start adhoc meeting if space support classification
|
190
191
|
* @returns {Promise} returns a meeting info object
|
191
192
|
* @public
|
192
193
|
* @memberof MeetingInfo
|
193
194
|
*/
|
194
|
-
createAdhocSpaceMeetingOrEnableStaticMeetingLink(conversationUrl: string, installedOrgID?: string, enableStaticMeetingLink?: boolean): Promise<any>;
|
195
|
+
createAdhocSpaceMeetingOrEnableStaticMeetingLink(conversationUrl: string, installedOrgID?: string, enableStaticMeetingLink?: boolean, classificationId?: any): Promise<any>;
|
195
196
|
/**
|
196
197
|
* Creates adhoc space meetings for a space by fetching the conversation infomation
|
197
198
|
* @param {String} conversationUrl conversationUrl to start adhoc meeting on
|
198
199
|
* @param {String} installedOrgID org ID of user's machine
|
200
|
+
* @param {String} classificationId if space is support classification, it needs provide it during start instant meeting
|
199
201
|
* @returns {Promise} returns a meeting info object
|
200
202
|
* @public
|
201
203
|
* @memberof MeetingInfo
|
202
204
|
*/
|
203
|
-
createAdhocSpaceMeeting(conversationUrl: string, installedOrgID?: string): Promise<any>;
|
205
|
+
createAdhocSpaceMeeting(conversationUrl: string, installedOrgID?: string, classificationId?: string): Promise<any>;
|
204
206
|
/**
|
205
207
|
* Fetches details for static meeting link
|
206
208
|
* @param {String} conversationUrl conversationUrl that's required to find static meeting link if it exists
|
@@ -239,6 +241,7 @@ export default class MeetingInfoV2 {
|
|
239
241
|
* @param {Object} options
|
240
242
|
* @param {String} registrationId
|
241
243
|
* @param {String} fullSiteUrl
|
244
|
+
* @param {String} classificationId
|
242
245
|
* @returns {Promise} returns a meeting info object
|
243
246
|
* @public
|
244
247
|
* @memberof MeetingInfo
|
@@ -249,5 +252,5 @@ export default class MeetingInfoV2 {
|
|
249
252
|
}, installedOrgID?: any, locusId?: any, extraParams?: object, options?: {
|
250
253
|
meetingId?: string;
|
251
254
|
sendCAevents?: boolean;
|
252
|
-
}, registrationId?: string, fullSiteUrl?: string): Promise<any>;
|
255
|
+
}, registrationId?: string, fullSiteUrl?: string, classificationId?: string): Promise<any>;
|
253
256
|
}
|
@@ -400,11 +400,12 @@ export default class Meetings extends WebexPlugin {
|
|
400
400
|
* @param {Object} [meetingInfo] - Pre-fetched complete meeting info
|
401
401
|
* @param {String} [meetingLookupUrl] - meeting info prefetch url
|
402
402
|
* @param {string} sessionCorrelationId - the optional specified sessionCorrelationId (callStateForMetrics.sessionCorrelationId) can be provided instead
|
403
|
+
* @param {String} classificationId - If space support classification, it will provide it while start instant meeting
|
403
404
|
* @returns {Promise<Meeting>} A new Meeting.
|
404
405
|
* @public
|
405
406
|
* @memberof Meetings
|
406
407
|
*/
|
407
|
-
create(destination: string, type?: DESTINATION_TYPE, useRandomDelayForInfo?: boolean, infoExtraParams?: {}, correlationId?: string, failOnMissingMeetingInfo?: boolean, callStateForMetrics?: CallStateForMetrics, meetingInfo?: any, meetingLookupUrl?: any, sessionCorrelationId?: string): any;
|
408
|
+
create(destination: string, type?: DESTINATION_TYPE, useRandomDelayForInfo?: boolean, infoExtraParams?: {}, correlationId?: string, failOnMissingMeetingInfo?: boolean, callStateForMetrics?: CallStateForMetrics, meetingInfo?: any, meetingLookupUrl?: any, sessionCorrelationId?: string, classificationId?: string): any;
|
408
409
|
/**
|
409
410
|
* Enable static meeting links for given conversation url.
|
410
411
|
*
|
@@ -438,6 +439,7 @@ export default class Meetings extends WebexPlugin {
|
|
438
439
|
* @param {Boolean} failOnMissingMeetingInfo - whether to throw an error if meeting info fails to fetch (for calls that are not 1:1 or content share)
|
439
440
|
* @param {Object} [meetingInfo] - Pre-fetched complete meeting info
|
440
441
|
* @param {String} [meetingLookupUrl] - meeting info prefetch url
|
442
|
+
* @param {String} classificationId see create()
|
441
443
|
* @returns {Promise} a new meeting instance complete with meeting info and destination
|
442
444
|
* @private
|
443
445
|
* @memberof Meetings
|
@@ -22,6 +22,12 @@ export default class MembersCollection {
|
|
22
22
|
* @memberof MembersCollection
|
23
23
|
*/
|
24
24
|
getAll(): Record<string, Member>;
|
25
|
+
/**
|
26
|
+
* Removes a member from the collection
|
27
|
+
* @param {String} id
|
28
|
+
* @returns {void}
|
29
|
+
*/
|
30
|
+
remove(id: string): void;
|
25
31
|
/**
|
26
32
|
* @returns {void}
|
27
33
|
* reset members
|
@@ -4,6 +4,7 @@ import MembersCollection from './collection';
|
|
4
4
|
import { ReceiveSlotManager } from '../multistream/receiveSlotManager';
|
5
5
|
import { MediaRequestManager } from '../multistream/mediaRequestManager';
|
6
6
|
import { ServerRoleShape } from './types';
|
7
|
+
import { Invitee } from '../meeting/type';
|
7
8
|
/**
|
8
9
|
* @class Members
|
9
10
|
*/
|
@@ -76,7 +77,9 @@ export default class Members extends StatelessWebexPlugin {
|
|
76
77
|
* when new participant updates come in, both delta and full participants, update them in members collection
|
77
78
|
* delta object in the event will have {updated, added} and full will be the full membersCollection
|
78
79
|
* @param {Object} payload
|
79
|
-
* @param {Object} payload.participants
|
80
|
+
* @param {Object} payload.participants new/updated participants
|
81
|
+
* @param {Boolean} payload.isReplace whether to replace the whole members collection
|
82
|
+
* @param {Object} payload.removedParticipantIds ids of the removed participants
|
80
83
|
* @returns {undefined}
|
81
84
|
* @private
|
82
85
|
* @memberof Members
|
@@ -84,6 +87,7 @@ export default class Members extends StatelessWebexPlugin {
|
|
84
87
|
locusParticipantsUpdate(payload: {
|
85
88
|
participants: object;
|
86
89
|
isReplace?: boolean;
|
90
|
+
removedParticipantIds?: Array<string>;
|
87
91
|
}): void;
|
88
92
|
/**
|
89
93
|
* Internal update the content id
|
@@ -126,6 +130,12 @@ export default class Members extends StatelessWebexPlugin {
|
|
126
130
|
* @memberof Members
|
127
131
|
*/
|
128
132
|
private handleMembersUpdate;
|
133
|
+
/**
|
134
|
+
* removes members from the collection
|
135
|
+
* @param {Array<string>} removedMembers removed members ids
|
136
|
+
* @returns {void}
|
137
|
+
*/
|
138
|
+
private removeMembers;
|
129
139
|
/**
|
130
140
|
* set members to the member collection from each updated/added lists as passed in
|
131
141
|
* @param {Array} list
|
@@ -212,26 +222,28 @@ export default class Members extends StatelessWebexPlugin {
|
|
212
222
|
private update;
|
213
223
|
/**
|
214
224
|
* Adds a guest Member to the associated meeting
|
215
|
-
* @param {
|
225
|
+
* @param {Invitee} invitee
|
216
226
|
* @param {Boolean} [alertIfActive]
|
217
227
|
* @returns {Promise}
|
218
228
|
* @memberof Members
|
219
229
|
*/
|
220
|
-
addMember(invitee:
|
230
|
+
addMember(invitee: Invitee, alertIfActive?: boolean): any;
|
221
231
|
/**
|
222
232
|
* Cancels an outgoing PSTN call to the associated meeting
|
223
|
-
* @param {
|
233
|
+
* @param {Invitee} invitee
|
224
234
|
* @returns {Promise}
|
225
235
|
* @memberof Members
|
226
236
|
*/
|
227
|
-
cancelPhoneInvite(invitee:
|
237
|
+
cancelPhoneInvite(invitee: Invitee): any;
|
228
238
|
/**
|
229
|
-
* Cancels an SIP call to the associated meeting
|
230
|
-
* @param {
|
239
|
+
* Cancels an SIP/phone call to the associated meeting
|
240
|
+
* @param {Invitee} invitee
|
241
|
+
* @param {String} invitee.memberId - The memberId of the invitee
|
242
|
+
* @param {Boolean} [invitee.isInternalNumber] - When cancel phone invitation, if the number is internal
|
231
243
|
* @returns {Promise}
|
232
244
|
* @memberof Members
|
233
245
|
*/
|
234
|
-
|
246
|
+
cancelInviteByMemberId(invitee: Invitee): any;
|
235
247
|
/**
|
236
248
|
* Admits waiting members (invited guests to meeting)
|
237
249
|
* @param {Array} memberIds
|
@@ -335,9 +347,10 @@ export default class Members extends StatelessWebexPlugin {
|
|
335
347
|
* @param {string} memberId - id of the participant who is receiving request
|
336
348
|
* @param {string} requestingParticipantId - id of the participant who is sending request (optional)
|
337
349
|
* @param {string} [alias] - alias name
|
350
|
+
* @param {string} [suffix] - name suffix (optional)
|
338
351
|
* @returns {Promise}
|
339
352
|
* @public
|
340
353
|
* @memberof Members
|
341
354
|
*/
|
342
|
-
editDisplayName(memberId: string, requestingParticipantId: string, alias: string): any;
|
355
|
+
editDisplayName(memberId: string, requestingParticipantId: string, alias: string, suffix?: string): any;
|
343
356
|
}
|
@@ -136,5 +136,5 @@ export default class MembersRequest extends StatelessWebexPlugin {
|
|
136
136
|
* @throws {Error} if the options are not valid and complete, must have invitee with memberId AND locusUrl
|
137
137
|
* @memberof MembersRequest
|
138
138
|
*/
|
139
|
-
|
139
|
+
cancelInviteByMemberId(options: any): Promise<any>;
|
140
140
|
}
|