@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.
Files changed (319) hide show
  1. package/README.md +26 -13
  2. package/dist/breakouts/breakout.js +1 -1
  3. package/dist/breakouts/index.js +1 -1
  4. package/dist/constants.js +34 -3
  5. package/dist/constants.js.map +1 -1
  6. package/dist/controls-options-manager/enums.js +1 -0
  7. package/dist/controls-options-manager/enums.js.map +1 -1
  8. package/dist/controls-options-manager/types.js.map +1 -1
  9. package/dist/controls-options-manager/util.js +26 -0
  10. package/dist/controls-options-manager/util.js.map +1 -1
  11. package/dist/interpretation/index.js +1 -1
  12. package/dist/interpretation/siLanguage.js +1 -1
  13. package/dist/locus-info/controlsUtils.js +11 -3
  14. package/dist/locus-info/controlsUtils.js.map +1 -1
  15. package/dist/locus-info/index.js +107 -95
  16. package/dist/locus-info/index.js.map +1 -1
  17. package/dist/locus-info/parser.js +4 -1
  18. package/dist/locus-info/parser.js.map +1 -1
  19. package/dist/media/index.js +2 -2
  20. package/dist/media/index.js.map +1 -1
  21. package/dist/media/properties.js +53 -5
  22. package/dist/media/properties.js.map +1 -1
  23. package/dist/meeting/brbState.js +17 -14
  24. package/dist/meeting/brbState.js.map +1 -1
  25. package/dist/meeting/in-meeting-actions.js +13 -1
  26. package/dist/meeting/in-meeting-actions.js.map +1 -1
  27. package/dist/meeting/index.js +555 -296
  28. package/dist/meeting/index.js.map +1 -1
  29. package/dist/meeting/muteState.js +2 -5
  30. package/dist/meeting/muteState.js.map +1 -1
  31. package/dist/meeting/request.js +44 -0
  32. package/dist/meeting/request.js.map +1 -1
  33. package/dist/meeting/request.type.js.map +1 -1
  34. package/dist/{rtcMetrics/constants.js → meeting/type.js} +1 -5
  35. package/dist/meeting/type.js.map +1 -0
  36. package/dist/meeting/util.js +98 -13
  37. package/dist/meeting/util.js.map +1 -1
  38. package/dist/meeting-info/meeting-info-v2.js +29 -21
  39. package/dist/meeting-info/meeting-info-v2.js.map +1 -1
  40. package/dist/meetings/index.js +18 -10
  41. package/dist/meetings/index.js.map +1 -1
  42. package/dist/member/types.js.map +1 -1
  43. package/dist/members/collection.js +13 -0
  44. package/dist/members/collection.js.map +1 -1
  45. package/dist/members/index.js +53 -29
  46. package/dist/members/index.js.map +1 -1
  47. package/dist/members/request.js +3 -3
  48. package/dist/members/request.js.map +1 -1
  49. package/dist/members/util.js +25 -8
  50. package/dist/members/util.js.map +1 -1
  51. package/dist/metrics/constants.js +3 -1
  52. package/dist/metrics/constants.js.map +1 -1
  53. package/dist/multistream/mediaRequestManager.js +1 -1
  54. package/dist/multistream/mediaRequestManager.js.map +1 -1
  55. package/dist/multistream/remoteMedia.js +34 -5
  56. package/dist/multistream/remoteMedia.js.map +1 -1
  57. package/dist/multistream/remoteMediaGroup.js +42 -2
  58. package/dist/multistream/remoteMediaGroup.js.map +1 -1
  59. package/dist/multistream/sendSlotManager.js +32 -2
  60. package/dist/multistream/sendSlotManager.js.map +1 -1
  61. package/dist/reachability/index.js +8 -13
  62. package/dist/reachability/index.js.map +1 -1
  63. package/dist/types/constants.d.ts +30 -0
  64. package/dist/types/controls-options-manager/enums.d.ts +2 -1
  65. package/dist/types/controls-options-manager/types.d.ts +4 -1
  66. package/dist/types/locus-info/index.d.ts +54 -10
  67. package/dist/types/media/properties.d.ts +21 -0
  68. package/dist/types/meeting/brbState.d.ts +0 -1
  69. package/dist/types/meeting/in-meeting-actions.d.ts +12 -0
  70. package/dist/types/meeting/index.d.ts +58 -20
  71. package/dist/types/meeting/request.d.ts +18 -1
  72. package/dist/types/meeting/request.type.d.ts +74 -0
  73. package/dist/types/meeting/type.d.ts +9 -0
  74. package/dist/types/meeting/util.d.ts +13 -3
  75. package/dist/types/meeting-info/meeting-info-v2.d.ts +6 -3
  76. package/dist/types/meetings/index.d.ts +3 -1
  77. package/dist/types/member/types.d.ts +1 -0
  78. package/dist/types/members/collection.d.ts +6 -0
  79. package/dist/types/members/index.d.ts +22 -9
  80. package/dist/types/members/request.d.ts +1 -1
  81. package/dist/types/members/util.d.ts +13 -6
  82. package/dist/types/metrics/constants.d.ts +2 -0
  83. package/dist/types/multistream/remoteMedia.d.ts +20 -1
  84. package/dist/types/multistream/remoteMediaGroup.d.ts +11 -0
  85. package/dist/types/multistream/sendSlotManager.d.ts +16 -0
  86. package/dist/types/reachability/index.d.ts +2 -2
  87. package/dist/webinar/index.js +1 -1
  88. package/package.json +25 -26
  89. package/src/constants.ts +34 -2
  90. package/src/controls-options-manager/enums.ts +1 -0
  91. package/src/controls-options-manager/types.ts +6 -1
  92. package/src/controls-options-manager/util.ts +31 -0
  93. package/src/locus-info/controlsUtils.ts +15 -0
  94. package/src/locus-info/index.ts +174 -96
  95. package/src/locus-info/parser.ts +5 -1
  96. package/src/media/index.ts +2 -2
  97. package/src/media/properties.ts +43 -0
  98. package/src/meeting/brbState.ts +13 -9
  99. package/src/meeting/in-meeting-actions.ts +25 -0
  100. package/src/meeting/index.ts +362 -75
  101. package/src/meeting/muteState.ts +2 -6
  102. package/src/meeting/request.ts +39 -0
  103. package/src/meeting/request.type.ts +64 -0
  104. package/src/meeting/type.ts +9 -0
  105. package/src/meeting/util.ts +114 -22
  106. package/src/meeting-info/meeting-info-v2.ts +24 -5
  107. package/src/meetings/index.ts +12 -5
  108. package/src/member/types.ts +1 -0
  109. package/src/members/collection.ts +11 -0
  110. package/src/members/index.ts +51 -15
  111. package/src/members/request.ts +2 -2
  112. package/src/members/util.ts +34 -6
  113. package/src/metrics/constants.ts +2 -0
  114. package/src/multistream/mediaRequestManager.ts +7 -7
  115. package/src/multistream/remoteMedia.ts +34 -4
  116. package/src/multistream/remoteMediaGroup.ts +37 -2
  117. package/src/multistream/sendSlotManager.ts +34 -2
  118. package/src/reachability/index.ts +8 -16
  119. package/test/unit/spec/common/browser-detection.js +0 -24
  120. package/test/unit/spec/controls-options-manager/util.js +58 -0
  121. package/test/unit/spec/locus-info/controlsUtils.js +52 -0
  122. package/test/unit/spec/locus-info/index.js +270 -97
  123. package/test/unit/spec/locus-info/parser.js +3 -2
  124. package/test/unit/spec/media/index.ts +107 -0
  125. package/test/unit/spec/media/properties.ts +137 -0
  126. package/test/unit/spec/meeting/brbState.ts +23 -4
  127. package/test/unit/spec/meeting/in-meeting-actions.ts +12 -0
  128. package/test/unit/spec/meeting/index.js +1194 -97
  129. package/test/unit/spec/meeting/muteState.js +32 -6
  130. package/test/unit/spec/meeting/request.js +92 -0
  131. package/test/unit/spec/meeting/utils.js +167 -17
  132. package/test/unit/spec/meeting-info/meetinginfov2.js +8 -3
  133. package/test/unit/spec/meetings/index.js +12 -5
  134. package/test/unit/spec/members/collection.js +120 -0
  135. package/test/unit/spec/members/index.js +140 -12
  136. package/test/unit/spec/members/request.js +57 -2
  137. package/test/unit/spec/members/utils.js +139 -17
  138. package/test/unit/spec/multistream/mediaRequestManager.ts +19 -6
  139. package/test/unit/spec/multistream/remoteMedia.ts +66 -2
  140. package/test/unit/spec/multistream/sendSlotManager.ts +59 -0
  141. package/test/unit/spec/reachability/index.ts +160 -9
  142. package/test/unit/spec/roap/turnDiscovery.ts +3 -3
  143. package/dist/annotation/annotation.types.d.ts +0 -42
  144. package/dist/annotation/constants.d.ts +0 -31
  145. package/dist/annotation/index.d.ts +0 -117
  146. package/dist/breakouts/breakout.d.ts +0 -8
  147. package/dist/breakouts/collection.d.ts +0 -5
  148. package/dist/breakouts/edit-lock-error.d.ts +0 -15
  149. package/dist/breakouts/events.d.ts +0 -8
  150. package/dist/breakouts/index.d.ts +0 -5
  151. package/dist/breakouts/request.d.ts +0 -22
  152. package/dist/breakouts/utils.d.ts +0 -15
  153. package/dist/common/browser-detection.d.ts +0 -9
  154. package/dist/common/collection.d.ts +0 -48
  155. package/dist/common/config.d.ts +0 -2
  156. package/dist/common/errors/captcha-error.d.ts +0 -15
  157. package/dist/common/errors/intent-to-join.d.ts +0 -16
  158. package/dist/common/errors/join-meeting.d.ts +0 -17
  159. package/dist/common/errors/media.d.ts +0 -15
  160. package/dist/common/errors/no-meeting-info.d.ts +0 -14
  161. package/dist/common/errors/parameter.d.ts +0 -15
  162. package/dist/common/errors/password-error.d.ts +0 -15
  163. package/dist/common/errors/permission.d.ts +0 -14
  164. package/dist/common/errors/reclaim-host-role-error.d.ts +0 -60
  165. package/dist/common/errors/reclaim-host-role-error.js +0 -158
  166. package/dist/common/errors/reclaim-host-role-error.js.map +0 -1
  167. package/dist/common/errors/reclaim-host-role-errors.d.ts +0 -60
  168. package/dist/common/errors/reconnection-in-progress.d.ts +0 -9
  169. package/dist/common/errors/reconnection-in-progress.js +0 -35
  170. package/dist/common/errors/reconnection-in-progress.js.map +0 -1
  171. package/dist/common/errors/reconnection.d.ts +0 -15
  172. package/dist/common/errors/stats.d.ts +0 -15
  173. package/dist/common/errors/webex-errors.d.ts +0 -81
  174. package/dist/common/errors/webex-meetings-error.d.ts +0 -20
  175. package/dist/common/events/events-scope.d.ts +0 -17
  176. package/dist/common/events/events.d.ts +0 -12
  177. package/dist/common/events/trigger-proxy.d.ts +0 -2
  178. package/dist/common/events/util.d.ts +0 -2
  179. package/dist/common/logs/logger-config.d.ts +0 -2
  180. package/dist/common/logs/logger-proxy.d.ts +0 -2
  181. package/dist/common/logs/request.d.ts +0 -34
  182. package/dist/common/queue.d.ts +0 -32
  183. package/dist/config.d.ts +0 -73
  184. package/dist/constants.d.ts +0 -952
  185. package/dist/controls-options-manager/constants.d.ts +0 -4
  186. package/dist/controls-options-manager/enums.d.ts +0 -5
  187. package/dist/controls-options-manager/index.d.ts +0 -120
  188. package/dist/controls-options-manager/types.d.ts +0 -43
  189. package/dist/controls-options-manager/util.d.ts +0 -7
  190. package/dist/index.d.ts +0 -4
  191. package/dist/interceptors/index.d.ts +0 -2
  192. package/dist/interceptors/locusRetry.d.ts +0 -27
  193. package/dist/interpretation/collection.d.ts +0 -5
  194. package/dist/interpretation/index.d.ts +0 -5
  195. package/dist/interpretation/siLanguage.d.ts +0 -5
  196. package/dist/locus-info/controlsUtils.d.ts +0 -2
  197. package/dist/locus-info/embeddedAppsUtils.d.ts +0 -2
  198. package/dist/locus-info/fullState.d.ts +0 -2
  199. package/dist/locus-info/hostUtils.d.ts +0 -2
  200. package/dist/locus-info/index.d.ts +0 -269
  201. package/dist/locus-info/infoUtils.d.ts +0 -2
  202. package/dist/locus-info/mediaSharesUtils.d.ts +0 -2
  203. package/dist/locus-info/parser.d.ts +0 -212
  204. package/dist/locus-info/selfUtils.d.ts +0 -2
  205. package/dist/media/index.d.ts +0 -32
  206. package/dist/media/properties.d.ts +0 -108
  207. package/dist/media/util.d.ts +0 -2
  208. package/dist/mediaQualityMetrics/config.d.ts +0 -233
  209. package/dist/mediaQualityMetrics/config.js +0 -513
  210. package/dist/mediaQualityMetrics/config.js.map +0 -1
  211. package/dist/meeting/effectsState.d.ts +0 -42
  212. package/dist/meeting/effectsState.js +0 -260
  213. package/dist/meeting/effectsState.js.map +0 -1
  214. package/dist/meeting/in-meeting-actions.d.ts +0 -79
  215. package/dist/meeting/index.d.ts +0 -1622
  216. package/dist/meeting/locusMediaRequest.d.ts +0 -74
  217. package/dist/meeting/muteState.d.ts +0 -116
  218. package/dist/meeting/request.d.ts +0 -257
  219. package/dist/meeting/request.type.d.ts +0 -11
  220. package/dist/meeting/state.d.ts +0 -9
  221. package/dist/meeting/util.d.ts +0 -2
  222. package/dist/meeting/voicea-meeting.d.ts +0 -16
  223. package/dist/meeting-info/collection.d.ts +0 -20
  224. package/dist/meeting-info/index.d.ts +0 -57
  225. package/dist/meeting-info/meeting-info-v2.d.ts +0 -93
  226. package/dist/meeting-info/request.d.ts +0 -22
  227. package/dist/meeting-info/util.d.ts +0 -2
  228. package/dist/meeting-info/utilv2.d.ts +0 -2
  229. package/dist/meetings/collection.d.ts +0 -23
  230. package/dist/meetings/index.d.ts +0 -296
  231. package/dist/meetings/meetings.types.d.ts +0 -4
  232. package/dist/meetings/request.d.ts +0 -27
  233. package/dist/meetings/util.d.ts +0 -18
  234. package/dist/member/index.d.ts +0 -148
  235. package/dist/member/member.types.d.ts +0 -11
  236. package/dist/member/member.types.js +0 -18
  237. package/dist/member/member.types.js.map +0 -1
  238. package/dist/member/types.d.ts +0 -32
  239. package/dist/member/util.d.ts +0 -2
  240. package/dist/members/collection.d.ts +0 -24
  241. package/dist/members/index.d.ts +0 -308
  242. package/dist/members/request.d.ts +0 -58
  243. package/dist/members/types.d.ts +0 -25
  244. package/dist/members/util.d.ts +0 -2
  245. package/dist/metrics/config.d.ts +0 -169
  246. package/dist/metrics/config.js +0 -289
  247. package/dist/metrics/config.js.map +0 -1
  248. package/dist/metrics/constants.d.ts +0 -59
  249. package/dist/metrics/index.d.ts +0 -152
  250. package/dist/multistream/mediaRequestManager.d.ts +0 -119
  251. package/dist/multistream/receiveSlot.d.ts +0 -68
  252. package/dist/multistream/receiveSlotManager.d.ts +0 -56
  253. package/dist/multistream/remoteMedia.d.ts +0 -72
  254. package/dist/multistream/remoteMediaGroup.d.ts +0 -49
  255. package/dist/multistream/remoteMediaManager.d.ts +0 -300
  256. package/dist/multistream/sendSlotManager.d.ts +0 -69
  257. package/dist/networkQualityMonitor/index.d.ts +0 -70
  258. package/dist/networkQualityMonitor/index.js +0 -226
  259. package/dist/networkQualityMonitor/index.js.map +0 -1
  260. package/dist/peer-connection-manager/index.d.ts +0 -6
  261. package/dist/peer-connection-manager/index.js +0 -671
  262. package/dist/peer-connection-manager/index.js.map +0 -1
  263. package/dist/peer-connection-manager/util.d.ts +0 -6
  264. package/dist/peer-connection-manager/util.js +0 -110
  265. package/dist/peer-connection-manager/util.js.map +0 -1
  266. package/dist/personal-meeting-room/index.d.ts +0 -47
  267. package/dist/personal-meeting-room/request.d.ts +0 -14
  268. package/dist/personal-meeting-room/util.d.ts +0 -2
  269. package/dist/reachability/clusterReachability.d.ts +0 -109
  270. package/dist/reachability/index.d.ts +0 -139
  271. package/dist/reachability/request.d.ts +0 -35
  272. package/dist/reachability/util.d.ts +0 -8
  273. package/dist/reactions/constants.d.ts +0 -3
  274. package/dist/reactions/reactions.d.ts +0 -4
  275. package/dist/reactions/reactions.type.d.ts +0 -32
  276. package/dist/reconnection-manager/index.d.ts +0 -112
  277. package/dist/recording-controller/enums.d.ts +0 -7
  278. package/dist/recording-controller/index.d.ts +0 -193
  279. package/dist/recording-controller/util.d.ts +0 -13
  280. package/dist/roap/collection.d.ts +0 -10
  281. package/dist/roap/collection.js +0 -63
  282. package/dist/roap/collection.js.map +0 -1
  283. package/dist/roap/handler.d.ts +0 -47
  284. package/dist/roap/handler.js +0 -279
  285. package/dist/roap/handler.js.map +0 -1
  286. package/dist/roap/index.d.ts +0 -116
  287. package/dist/roap/request.d.ts +0 -35
  288. package/dist/roap/state.d.ts +0 -9
  289. package/dist/roap/state.js +0 -127
  290. package/dist/roap/state.js.map +0 -1
  291. package/dist/roap/turnDiscovery.d.ts +0 -81
  292. package/dist/roap/util.d.ts +0 -2
  293. package/dist/roap/util.js +0 -76
  294. package/dist/roap/util.js.map +0 -1
  295. package/dist/rtcMetrics/constants.d.ts +0 -4
  296. package/dist/rtcMetrics/constants.js.map +0 -1
  297. package/dist/rtcMetrics/index.d.ts +0 -61
  298. package/dist/rtcMetrics/index.js +0 -197
  299. package/dist/rtcMetrics/index.js.map +0 -1
  300. package/dist/statsAnalyzer/global.d.ts +0 -118
  301. package/dist/statsAnalyzer/global.js +0 -127
  302. package/dist/statsAnalyzer/global.js.map +0 -1
  303. package/dist/statsAnalyzer/index.d.ts +0 -193
  304. package/dist/statsAnalyzer/index.js +0 -1019
  305. package/dist/statsAnalyzer/index.js.map +0 -1
  306. package/dist/statsAnalyzer/mqaUtil.d.ts +0 -22
  307. package/dist/statsAnalyzer/mqaUtil.js +0 -181
  308. package/dist/statsAnalyzer/mqaUtil.js.map +0 -1
  309. package/dist/transcription/index.d.ts +0 -64
  310. package/dist/types/common/errors/reconnection-in-progress.d.ts +0 -9
  311. package/dist/types/mediaQualityMetrics/config.d.ts +0 -241
  312. package/dist/types/networkQualityMonitor/index.d.ts +0 -70
  313. package/dist/types/rtcMetrics/constants.d.ts +0 -4
  314. package/dist/types/rtcMetrics/index.d.ts +0 -71
  315. package/dist/types/statsAnalyzer/global.d.ts +0 -36
  316. package/dist/types/statsAnalyzer/index.d.ts +0 -217
  317. package/dist/types/statsAnalyzer/mqaUtil.d.ts +0 -48
  318. package/dist/webinar/collection.d.ts +0 -16
  319. 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
  }
@@ -40,7 +40,6 @@ export declare class BrbState {
40
40
  /**
41
41
  * Send the local brb state to the server
42
42
  *
43
- * @param {SendSlotManager} sendSlotManager
44
43
  * @returns {Promise}
45
44
  */
46
45
  private sendLocalBrbStateToServer;
@@ -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 {Object} invitee
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 {Object} invitee
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 {Object} invitee
902
+ * Cancel an SIP/phone call invitation made during a meeting
903
+ * @param {Invitee} invitee
886
904
  * @param {String} invitee.memberId
887
- * @returns {Promise} see #members.cancelSIPInvite
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
- cancelSIPInvite(invitee: {
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<[any, any]>;
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;
@@ -0,0 +1,9 @@
1
+ export type Invitee = {
2
+ memberId: string;
3
+ emailAddress: string;
4
+ email: string;
5
+ phoneNumber: string;
6
+ roles: Array<string>;
7
+ skipEmailValidation?: boolean;
8
+ isInternalNumber?: boolean;
9
+ };
@@ -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 delta locus
96
- * returned from requests that include the sequence information
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
- updateLocusWithDelta: (meeting: any, response: any) => any;
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
@@ -95,4 +95,5 @@ export interface Participant {
95
95
  status: ParticipantMediaStatus;
96
96
  type: string;
97
97
  url: ParticipantUrl;
98
+ isRemoved: boolean;
98
99
  }
@@ -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 {String} invitee
225
+ * @param {Invitee} invitee
216
226
  * @param {Boolean} [alertIfActive]
217
227
  * @returns {Promise}
218
228
  * @memberof Members
219
229
  */
220
- addMember(invitee: any, alertIfActive?: boolean): any;
230
+ addMember(invitee: Invitee, alertIfActive?: boolean): any;
221
231
  /**
222
232
  * Cancels an outgoing PSTN call to the associated meeting
223
- * @param {String} invitee
233
+ * @param {Invitee} invitee
224
234
  * @returns {Promise}
225
235
  * @memberof Members
226
236
  */
227
- cancelPhoneInvite(invitee: any): any;
237
+ cancelPhoneInvite(invitee: Invitee): any;
228
238
  /**
229
- * Cancels an SIP call to the associated meeting
230
- * @param {String} invitee
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
- cancelSIPInvite(invitee: any): any;
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
- cancelSIPInvite(options: any): Promise<any>;
139
+ cancelInviteByMemberId(options: any): Promise<any>;
140
140
  }