@webex/plugin-meetings 3.8.0 → 3.8.1-next.10

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 (361) hide show
  1. package/README.md +26 -13
  2. package/dist/breakouts/breakout.js +1 -1
  3. package/dist/breakouts/index.js +70 -6
  4. package/dist/breakouts/index.js.map +1 -1
  5. package/dist/common/errors/webex-errors.js +12 -2
  6. package/dist/common/errors/webex-errors.js.map +1 -1
  7. package/dist/config.js +5 -1
  8. package/dist/config.js.map +1 -1
  9. package/dist/constants.js +28 -123
  10. package/dist/constants.js.map +1 -1
  11. package/dist/controls-options-manager/enums.js +3 -0
  12. package/dist/controls-options-manager/enums.js.map +1 -1
  13. package/dist/controls-options-manager/types.js.map +1 -1
  14. package/dist/controls-options-manager/util.js +78 -0
  15. package/dist/controls-options-manager/util.js.map +1 -1
  16. package/dist/interpretation/index.js +4 -4
  17. package/dist/interpretation/index.js.map +1 -1
  18. package/dist/interpretation/siLanguage.js +1 -1
  19. package/dist/locus-info/controlsUtils.js +37 -11
  20. package/dist/locus-info/controlsUtils.js.map +1 -1
  21. package/dist/locus-info/index.js +92 -12
  22. package/dist/locus-info/index.js.map +1 -1
  23. package/dist/locus-info/selfUtils.js +432 -418
  24. package/dist/locus-info/selfUtils.js.map +1 -1
  25. package/dist/media/index.js +17 -17
  26. package/dist/media/index.js.map +1 -1
  27. package/dist/media/properties.js +94 -6
  28. package/dist/media/properties.js.map +1 -1
  29. package/dist/meeting/brbState.js +9 -2
  30. package/dist/meeting/brbState.js.map +1 -1
  31. package/dist/meeting/in-meeting-actions.js +21 -1
  32. package/dist/meeting/in-meeting-actions.js.map +1 -1
  33. package/dist/meeting/index.js +678 -344
  34. package/dist/meeting/index.js.map +1 -1
  35. package/dist/meeting/locusMediaRequest.js +21 -22
  36. package/dist/meeting/locusMediaRequest.js.map +1 -1
  37. package/dist/meeting/muteState.js +4 -4
  38. package/dist/meeting/muteState.js.map +1 -1
  39. package/dist/meeting/request.js +30 -0
  40. package/dist/meeting/request.js.map +1 -1
  41. package/dist/meeting/request.type.js.map +1 -1
  42. package/dist/meeting/util.js +13 -2
  43. package/dist/meeting/util.js.map +1 -1
  44. package/dist/meeting-info/meeting-info-v2.js +373 -68
  45. package/dist/meeting-info/meeting-info-v2.js.map +1 -1
  46. package/dist/meeting-info/utilv2.js +5 -1
  47. package/dist/meeting-info/utilv2.js.map +1 -1
  48. package/dist/meetings/index.js +136 -1
  49. package/dist/meetings/index.js.map +1 -1
  50. package/dist/meetings/util.js +14 -0
  51. package/dist/meetings/util.js.map +1 -1
  52. package/dist/member/index.js +55 -9
  53. package/dist/member/index.js.map +1 -1
  54. package/dist/member/types.js +3 -0
  55. package/dist/member/types.js.map +1 -1
  56. package/dist/member/util.js +335 -353
  57. package/dist/member/util.js.map +1 -1
  58. package/dist/members/collection.js.map +1 -1
  59. package/dist/members/index.js +137 -29
  60. package/dist/members/index.js.map +1 -1
  61. package/dist/members/request.js +38 -0
  62. package/dist/members/request.js.map +1 -1
  63. package/dist/members/util.js +36 -1
  64. package/dist/members/util.js.map +1 -1
  65. package/dist/metrics/constants.js +10 -0
  66. package/dist/metrics/constants.js.map +1 -1
  67. package/dist/multistream/remoteMediaManager.js +40 -8
  68. package/dist/multistream/remoteMediaManager.js.map +1 -1
  69. package/dist/reachability/clusterReachability.js +63 -27
  70. package/dist/reachability/clusterReachability.js.map +1 -1
  71. package/dist/reachability/index.js +107 -47
  72. package/dist/reachability/index.js.map +1 -1
  73. package/dist/reachability/reachability.types.js +14 -0
  74. package/dist/reachability/reachability.types.js.map +1 -1
  75. package/dist/reachability/request.js +19 -3
  76. package/dist/reachability/request.js.map +1 -1
  77. package/dist/reconnection-manager/index.js +2 -2
  78. package/dist/reconnection-manager/index.js.map +1 -1
  79. package/dist/recording-controller/util.js +5 -5
  80. package/dist/recording-controller/util.js.map +1 -1
  81. package/dist/roap/index.js.map +1 -1
  82. package/dist/roap/turnDiscovery.js +45 -27
  83. package/dist/roap/turnDiscovery.js.map +1 -1
  84. package/dist/roap/types.js +17 -0
  85. package/dist/roap/types.js.map +1 -0
  86. package/dist/types/common/errors/webex-errors.d.ts +7 -1
  87. package/dist/types/config.d.ts +3 -0
  88. package/dist/types/constants.d.ts +20 -85
  89. package/dist/types/controls-options-manager/enums.d.ts +4 -1
  90. package/dist/types/controls-options-manager/types.d.ts +10 -1
  91. package/dist/types/locus-info/index.d.ts +3 -3
  92. package/dist/types/locus-info/selfUtils.d.ts +216 -1
  93. package/dist/types/media/properties.d.ts +15 -0
  94. package/dist/types/meeting/in-meeting-actions.d.ts +20 -0
  95. package/dist/types/meeting/index.d.ts +65 -1
  96. package/dist/types/meeting/muteState.d.ts +0 -1
  97. package/dist/types/meeting/request.d.ts +12 -1
  98. package/dist/types/meeting/request.type.d.ts +6 -0
  99. package/dist/types/meeting/util.d.ts +3 -1
  100. package/dist/types/meeting-info/meeting-info-v2.d.ts +82 -1
  101. package/dist/types/meetings/index.d.ts +57 -0
  102. package/dist/types/member/index.d.ts +21 -6
  103. package/dist/types/member/types.d.ts +73 -14
  104. package/dist/types/member/util.d.ts +156 -1
  105. package/dist/types/members/collection.d.ts +6 -5
  106. package/dist/types/members/index.d.ts +32 -43
  107. package/dist/types/members/request.d.ts +26 -0
  108. package/dist/types/members/util.d.ts +27 -0
  109. package/dist/types/metrics/constants.d.ts +10 -0
  110. package/dist/types/multistream/remoteMediaManager.d.ts +10 -1
  111. package/dist/types/reachability/clusterReachability.d.ts +15 -7
  112. package/dist/types/reachability/index.d.ts +10 -1
  113. package/dist/types/reachability/reachability.types.d.ts +5 -0
  114. package/dist/types/roap/index.d.ts +3 -2
  115. package/dist/types/roap/turnDiscovery.d.ts +5 -17
  116. package/dist/types/roap/types.d.ts +16 -0
  117. package/dist/webinar/index.js +2 -2
  118. package/dist/webinar/index.js.map +1 -1
  119. package/package.json +24 -23
  120. package/src/breakouts/index.ts +69 -0
  121. package/src/common/errors/webex-errors.ts +8 -1
  122. package/src/config.ts +3 -0
  123. package/src/constants.ts +30 -90
  124. package/src/controls-options-manager/enums.ts +3 -0
  125. package/src/controls-options-manager/types.ts +16 -1
  126. package/src/controls-options-manager/util.ts +93 -0
  127. package/src/interpretation/index.ts +3 -3
  128. package/src/locus-info/controlsUtils.ts +59 -14
  129. package/src/locus-info/index.ts +97 -13
  130. package/src/locus-info/selfUtils.ts +496 -442
  131. package/src/media/index.ts +23 -21
  132. package/src/media/properties.ts +96 -0
  133. package/src/meeting/brbState.ts +11 -2
  134. package/src/meeting/in-meeting-actions.ts +40 -0
  135. package/src/meeting/index.ts +470 -105
  136. package/src/meeting/locusMediaRequest.ts +27 -22
  137. package/src/meeting/muteState.ts +4 -4
  138. package/src/meeting/request.ts +36 -1
  139. package/src/meeting/request.type.ts +7 -0
  140. package/src/meeting/util.ts +11 -2
  141. package/src/meeting-info/meeting-info-v2.ts +254 -8
  142. package/src/meeting-info/utilv2.ts +5 -0
  143. package/src/meetings/index.ts +148 -1
  144. package/src/meetings/util.ts +18 -0
  145. package/src/member/index.ts +68 -22
  146. package/src/member/types.ts +82 -16
  147. package/src/member/util.ts +357 -350
  148. package/src/members/collection.ts +4 -3
  149. package/src/members/index.ts +137 -18
  150. package/src/members/request.ts +44 -0
  151. package/src/members/util.ts +43 -1
  152. package/src/metrics/constants.ts +10 -0
  153. package/src/multistream/remoteMediaManager.ts +32 -10
  154. package/src/reachability/clusterReachability.ts +73 -26
  155. package/src/reachability/index.ts +62 -1
  156. package/src/reachability/reachability.types.ts +6 -0
  157. package/src/reachability/request.ts +7 -0
  158. package/src/reconnection-manager/index.ts +2 -2
  159. package/src/recording-controller/util.ts +17 -13
  160. package/src/roap/index.ts +3 -7
  161. package/src/roap/turnDiscovery.ts +34 -39
  162. package/src/roap/types.ts +23 -0
  163. package/src/webinar/index.ts +1 -1
  164. package/test/unit/spec/breakouts/index.ts +167 -95
  165. package/test/unit/spec/controls-options-manager/util.js +178 -0
  166. package/test/unit/spec/interpretation/index.ts +39 -1
  167. package/test/unit/spec/locus-info/controlsUtils.js +155 -9
  168. package/test/unit/spec/locus-info/index.js +209 -73
  169. package/test/unit/spec/locus-info/selfUtils.js +98 -24
  170. package/test/unit/spec/media/index.ts +150 -18
  171. package/test/unit/spec/media/properties.ts +130 -0
  172. package/test/unit/spec/meeting/brbState.ts +40 -2
  173. package/test/unit/spec/meeting/in-meeting-actions.ts +23 -4
  174. package/test/unit/spec/meeting/index.js +804 -139
  175. package/test/unit/spec/meeting/locusMediaRequest.ts +95 -87
  176. package/test/unit/spec/meeting/muteState.js +73 -2
  177. package/test/unit/spec/meeting/request.js +32 -1
  178. package/test/unit/spec/meeting/utils.js +119 -18
  179. package/test/unit/spec/meeting-info/meetinginfov2.js +484 -114
  180. package/test/unit/spec/meeting-info/utilv2.js +19 -0
  181. package/test/unit/spec/meetings/index.js +146 -2
  182. package/test/unit/spec/member/index.js +7 -0
  183. package/test/unit/spec/member/util.js +24 -0
  184. package/test/unit/spec/members/index.js +304 -78
  185. package/test/unit/spec/members/request.js +68 -22
  186. package/test/unit/spec/members/utils.js +75 -0
  187. package/test/unit/spec/multistream/remoteMediaManager.ts +397 -118
  188. package/test/unit/spec/reachability/clusterReachability.ts +88 -56
  189. package/test/unit/spec/reachability/index.ts +97 -0
  190. package/test/unit/spec/reachability/request.js +47 -2
  191. package/test/unit/spec/reconnection-manager/index.js +4 -4
  192. package/test/unit/spec/roap/turnDiscovery.ts +110 -28
  193. package/test/unit/spec/webinar/index.ts +5 -0
  194. package/dist/annotation/annotation.types.d.ts +0 -42
  195. package/dist/annotation/constants.d.ts +0 -31
  196. package/dist/annotation/index.d.ts +0 -117
  197. package/dist/breakouts/breakout.d.ts +0 -8
  198. package/dist/breakouts/collection.d.ts +0 -5
  199. package/dist/breakouts/edit-lock-error.d.ts +0 -15
  200. package/dist/breakouts/events.d.ts +0 -8
  201. package/dist/breakouts/index.d.ts +0 -5
  202. package/dist/breakouts/request.d.ts +0 -22
  203. package/dist/breakouts/utils.d.ts +0 -15
  204. package/dist/common/browser-detection.d.ts +0 -9
  205. package/dist/common/collection.d.ts +0 -48
  206. package/dist/common/config.d.ts +0 -2
  207. package/dist/common/errors/captcha-error.d.ts +0 -15
  208. package/dist/common/errors/intent-to-join.d.ts +0 -16
  209. package/dist/common/errors/join-meeting.d.ts +0 -17
  210. package/dist/common/errors/media.d.ts +0 -15
  211. package/dist/common/errors/no-meeting-info.d.ts +0 -14
  212. package/dist/common/errors/parameter.d.ts +0 -15
  213. package/dist/common/errors/password-error.d.ts +0 -15
  214. package/dist/common/errors/permission.d.ts +0 -14
  215. package/dist/common/errors/reclaim-host-role-error.js +0 -149
  216. package/dist/common/errors/reclaim-host-role-error.js.map +0 -1
  217. package/dist/common/errors/reclaim-host-role-errors.d.ts +0 -60
  218. package/dist/common/errors/reconnection-in-progress.d.ts +0 -9
  219. package/dist/common/errors/reconnection-in-progress.js +0 -33
  220. package/dist/common/errors/reconnection-in-progress.js.map +0 -1
  221. package/dist/common/errors/reconnection.d.ts +0 -15
  222. package/dist/common/errors/stats.d.ts +0 -15
  223. package/dist/common/errors/webex-errors.d.ts +0 -93
  224. package/dist/common/errors/webex-meetings-error.d.ts +0 -20
  225. package/dist/common/events/events-scope.d.ts +0 -17
  226. package/dist/common/events/events.d.ts +0 -12
  227. package/dist/common/events/trigger-proxy.d.ts +0 -2
  228. package/dist/common/events/util.d.ts +0 -2
  229. package/dist/common/logs/logger-config.d.ts +0 -2
  230. package/dist/common/logs/logger-proxy.d.ts +0 -2
  231. package/dist/common/logs/request.d.ts +0 -36
  232. package/dist/common/queue.d.ts +0 -34
  233. package/dist/config.d.ts +0 -72
  234. package/dist/constants.d.ts +0 -1088
  235. package/dist/controls-options-manager/constants.d.ts +0 -4
  236. package/dist/controls-options-manager/enums.d.ts +0 -15
  237. package/dist/controls-options-manager/index.d.ts +0 -136
  238. package/dist/controls-options-manager/types.d.ts +0 -43
  239. package/dist/controls-options-manager/util.d.ts +0 -1
  240. package/dist/index.d.ts +0 -7
  241. package/dist/interceptors/index.d.ts +0 -2
  242. package/dist/interceptors/locusRetry.d.ts +0 -27
  243. package/dist/interpretation/collection.d.ts +0 -5
  244. package/dist/interpretation/index.d.ts +0 -5
  245. package/dist/interpretation/siLanguage.d.ts +0 -5
  246. package/dist/locus-info/controlsUtils.d.ts +0 -2
  247. package/dist/locus-info/embeddedAppsUtils.d.ts +0 -2
  248. package/dist/locus-info/fullState.d.ts +0 -2
  249. package/dist/locus-info/hostUtils.d.ts +0 -2
  250. package/dist/locus-info/index.d.ts +0 -322
  251. package/dist/locus-info/infoUtils.d.ts +0 -2
  252. package/dist/locus-info/mediaSharesUtils.d.ts +0 -2
  253. package/dist/locus-info/parser.d.ts +0 -272
  254. package/dist/locus-info/selfUtils.d.ts +0 -2
  255. package/dist/media/index.d.ts +0 -34
  256. package/dist/media/properties.d.ts +0 -93
  257. package/dist/media/util.d.ts +0 -2
  258. package/dist/mediaQualityMetrics/config.d.ts +0 -241
  259. package/dist/mediaQualityMetrics/config.js +0 -502
  260. package/dist/mediaQualityMetrics/config.js.map +0 -1
  261. package/dist/meeting/effectsState.js +0 -260
  262. package/dist/meeting/effectsState.js.map +0 -1
  263. package/dist/meeting/in-meeting-actions.d.ts +0 -167
  264. package/dist/meeting/index.d.ts +0 -1825
  265. package/dist/meeting/locusMediaRequest.d.ts +0 -74
  266. package/dist/meeting/muteState.d.ts +0 -178
  267. package/dist/meeting/request.d.ts +0 -295
  268. package/dist/meeting/request.type.d.ts +0 -11
  269. package/dist/meeting/state.d.ts +0 -9
  270. package/dist/meeting/util.d.ts +0 -119
  271. package/dist/meeting/voicea-meeting.d.ts +0 -16
  272. package/dist/meeting-info/collection.d.ts +0 -20
  273. package/dist/meeting-info/index.d.ts +0 -69
  274. package/dist/meeting-info/meeting-info-v2.d.ts +0 -123
  275. package/dist/meeting-info/request.d.ts +0 -22
  276. package/dist/meeting-info/util.d.ts +0 -2
  277. package/dist/meeting-info/utilv2.d.ts +0 -2
  278. package/dist/meetings/collection.d.ts +0 -40
  279. package/dist/meetings/index.d.ts +0 -390
  280. package/dist/meetings/meetings.types.d.ts +0 -4
  281. package/dist/meetings/request.d.ts +0 -27
  282. package/dist/meetings/util.d.ts +0 -18
  283. package/dist/member/index.d.ts +0 -160
  284. package/dist/member/member.types.js +0 -17
  285. package/dist/member/member.types.js.map +0 -1
  286. package/dist/member/types.d.ts +0 -32
  287. package/dist/member/util.d.ts +0 -2
  288. package/dist/members/collection.d.ts +0 -29
  289. package/dist/members/index.d.ts +0 -353
  290. package/dist/members/request.d.ts +0 -114
  291. package/dist/members/types.d.ts +0 -25
  292. package/dist/members/util.d.ts +0 -215
  293. package/dist/metrics/config.js +0 -276
  294. package/dist/metrics/config.js.map +0 -1
  295. package/dist/metrics/constants.d.ts +0 -70
  296. package/dist/metrics/index.d.ts +0 -45
  297. package/dist/multistream/mediaRequestManager.d.ts +0 -119
  298. package/dist/multistream/receiveSlot.d.ts +0 -68
  299. package/dist/multistream/receiveSlotManager.d.ts +0 -56
  300. package/dist/multistream/remoteMedia.d.ts +0 -72
  301. package/dist/multistream/remoteMediaGroup.d.ts +0 -49
  302. package/dist/multistream/remoteMediaManager.d.ts +0 -300
  303. package/dist/multistream/sendSlotManager.d.ts +0 -69
  304. package/dist/networkQualityMonitor/index.d.ts +0 -70
  305. package/dist/networkQualityMonitor/index.js +0 -221
  306. package/dist/networkQualityMonitor/index.js.map +0 -1
  307. package/dist/peer-connection-manager/index.js +0 -671
  308. package/dist/peer-connection-manager/index.js.map +0 -1
  309. package/dist/peer-connection-manager/util.js +0 -109
  310. package/dist/peer-connection-manager/util.js.map +0 -1
  311. package/dist/personal-meeting-room/index.d.ts +0 -47
  312. package/dist/personal-meeting-room/request.d.ts +0 -14
  313. package/dist/personal-meeting-room/util.d.ts +0 -2
  314. package/dist/reachability/clusterReachability.d.ts +0 -109
  315. package/dist/reachability/index.d.ts +0 -105
  316. package/dist/reachability/request.d.ts +0 -39
  317. package/dist/reachability/util.d.ts +0 -8
  318. package/dist/reactions/constants.d.ts +0 -3
  319. package/dist/reactions/reactions.d.ts +0 -4
  320. package/dist/reactions/reactions.type.d.ts +0 -52
  321. package/dist/reconnection-manager/index.d.ts +0 -136
  322. package/dist/recording-controller/enums.d.ts +0 -7
  323. package/dist/recording-controller/index.d.ts +0 -207
  324. package/dist/recording-controller/util.d.ts +0 -14
  325. package/dist/roap/collection.js +0 -62
  326. package/dist/roap/collection.js.map +0 -1
  327. package/dist/roap/handler.js +0 -275
  328. package/dist/roap/handler.js.map +0 -1
  329. package/dist/roap/index.d.ts +0 -86
  330. package/dist/roap/request.d.ts +0 -39
  331. package/dist/roap/state.js +0 -126
  332. package/dist/roap/state.js.map +0 -1
  333. package/dist/roap/turnDiscovery.d.ts +0 -155
  334. package/dist/roap/util.js +0 -75
  335. package/dist/roap/util.js.map +0 -1
  336. package/dist/rtcMetrics/constants.d.ts +0 -4
  337. package/dist/rtcMetrics/constants.js +0 -11
  338. package/dist/rtcMetrics/constants.js.map +0 -1
  339. package/dist/rtcMetrics/index.d.ts +0 -61
  340. package/dist/rtcMetrics/index.js +0 -197
  341. package/dist/rtcMetrics/index.js.map +0 -1
  342. package/dist/statsAnalyzer/global.d.ts +0 -36
  343. package/dist/statsAnalyzer/global.js +0 -126
  344. package/dist/statsAnalyzer/global.js.map +0 -1
  345. package/dist/statsAnalyzer/index.d.ts +0 -217
  346. package/dist/statsAnalyzer/index.js +0 -1013
  347. package/dist/statsAnalyzer/index.js.map +0 -1
  348. package/dist/statsAnalyzer/mqaUtil.d.ts +0 -48
  349. package/dist/statsAnalyzer/mqaUtil.js +0 -179
  350. package/dist/statsAnalyzer/mqaUtil.js.map +0 -1
  351. package/dist/transcription/index.d.ts +0 -64
  352. package/dist/types/common/errors/reconnection-in-progress.d.ts +0 -9
  353. package/dist/types/mediaQualityMetrics/config.d.ts +0 -241
  354. package/dist/types/networkQualityMonitor/index.d.ts +0 -70
  355. package/dist/types/rtcMetrics/constants.d.ts +0 -4
  356. package/dist/types/rtcMetrics/index.d.ts +0 -71
  357. package/dist/types/statsAnalyzer/global.d.ts +0 -36
  358. package/dist/types/statsAnalyzer/index.d.ts +0 -217
  359. package/dist/types/statsAnalyzer/mqaUtil.d.ts +0 -48
  360. package/dist/webinar/collection.d.ts +0 -16
  361. package/dist/webinar/index.d.ts +0 -5
@@ -1,2 +1,217 @@
1
- declare const SelfUtils: any;
1
+ declare const SelfUtils: {
2
+ /**
3
+ * parses the relevant values for self: muted, guest, moderator, mediaStatus, state, joinedWith, pstnDevices, creator, id
4
+ * @param {Object} self
5
+ * @param {String} deviceId
6
+ * @param {Array} participants
7
+ * @returns {undefined}
8
+ */
9
+ parse: (self: any, deviceId: string, participants: Array<any>) => {
10
+ remoteVideoMuted: any;
11
+ remoteMuted: any;
12
+ unmuteAllowed: boolean;
13
+ localAudioUnmuteRequested: boolean;
14
+ localAudioUnmuteRequestedTimeStamp: number;
15
+ localAudioUnmuteRequired: boolean;
16
+ lastModified: any;
17
+ modifiedBy: any;
18
+ guest: any;
19
+ moderator: any;
20
+ mediaStatus: {
21
+ audio: any;
22
+ video: any;
23
+ slides: any;
24
+ };
25
+ state: any;
26
+ joinedWith: any;
27
+ pairedWith: any;
28
+ pstnDevices: any;
29
+ currentMediaStatus: {
30
+ audio: any;
31
+ video: any;
32
+ share: any;
33
+ };
34
+ creator: any;
35
+ selfId: any;
36
+ selfIdentity: any;
37
+ selfUrl: any;
38
+ removed: any;
39
+ roles: any;
40
+ isUserUnadmitted: boolean;
41
+ layout: any;
42
+ canNotViewTheParticipantList: boolean;
43
+ isSharingBlocked: boolean;
44
+ breakoutSessions: any;
45
+ breakout: any;
46
+ interpretation: any;
47
+ brb: any;
48
+ };
49
+ getBreakoutSessions: (self: any) => any;
50
+ getBreakout: (self: any) => any;
51
+ getInterpretation: (self: any) => any;
52
+ getBrb: (self: any) => any;
53
+ getLayout: (self: any) => any;
54
+ getRoles: (self: any) => any;
55
+ canNotViewTheParticipantList: (self: any) => boolean;
56
+ isSharingBlocked: (self: any) => boolean;
57
+ getSelves: (oldParsedSelf: any, newSelf: any, deviceId: any, participants: Array<any>) => {
58
+ previous: any;
59
+ current: {
60
+ remoteVideoMuted: any;
61
+ remoteMuted: any;
62
+ unmuteAllowed: boolean;
63
+ localAudioUnmuteRequested: boolean;
64
+ localAudioUnmuteRequestedTimeStamp: number;
65
+ localAudioUnmuteRequired: boolean;
66
+ lastModified: any;
67
+ modifiedBy: any;
68
+ guest: any;
69
+ moderator: any;
70
+ mediaStatus: {
71
+ audio: any;
72
+ video: any;
73
+ slides: any;
74
+ };
75
+ state: any;
76
+ joinedWith: any;
77
+ pairedWith: any;
78
+ pstnDevices: any;
79
+ currentMediaStatus: {
80
+ audio: any;
81
+ video: any;
82
+ share: any;
83
+ };
84
+ creator: any;
85
+ selfId: any;
86
+ selfIdentity: any;
87
+ selfUrl: any;
88
+ removed: any;
89
+ roles: any;
90
+ isUserUnadmitted: boolean;
91
+ layout: any;
92
+ canNotViewTheParticipantList: boolean;
93
+ isSharingBlocked: boolean;
94
+ breakoutSessions: any;
95
+ breakout: any;
96
+ interpretation: any;
97
+ brb: any;
98
+ };
99
+ updates: any;
100
+ };
101
+ /**
102
+ * Checks if user has joined the meeting
103
+ * @param {Object} self
104
+ * @returns {boolean} isJoined
105
+ */
106
+ isJoined: (self: any) => boolean;
107
+ /**
108
+ * Validate if the Meeting Layout Controls Layout has changed.
109
+ *
110
+ * @param {Self} previous - Previous self state
111
+ * @param {Self} current - Current self state [per event]
112
+ * @returns {boolean} - If the Meeting Layout Controls Layout has changed.
113
+ */
114
+ layoutChanged: (previous: any, current: any) => boolean;
115
+ breakoutsChanged: (previous: any, current: any) => boolean;
116
+ interpretationChanged: (previous: any, current: any) => boolean;
117
+ brbChanged: (previous: any, current: any) => boolean;
118
+ isMediaInactive: (previous: any, current: any) => boolean;
119
+ getLastModified: (self: any) => any;
120
+ getModifiedBy: (self: any) => any;
121
+ /**
122
+ * get the id from the self object
123
+ * @param {Object} self
124
+ * @returns {String}
125
+ */
126
+ getSelfIdentity: (self: any) => any;
127
+ /**
128
+ * get the "remote video mute" property from the self object
129
+ * @param {Object} self
130
+ * @returns {Boolean}
131
+ */
132
+ getRemoteVideoMuted: (self: any) => any;
133
+ /**
134
+ * get the "remote mute" property from the self object
135
+ * @param {Object} self
136
+ * @returns {Boolean}
137
+ */
138
+ getRemoteMuted: (self: any) => any;
139
+ getLocalAudioUnmuteRequested: (self: any) => boolean;
140
+ getLocalAudioUnmuteRequestedTimeStamp: (self: any) => number;
141
+ getUnmuteAllowed: (self: any) => boolean;
142
+ getLocalAudioUnmuteRequired: (self: any) => boolean;
143
+ getStatus: (status: any) => {
144
+ audio: any;
145
+ video: any;
146
+ slides: any;
147
+ };
148
+ /**
149
+ * @param {Object} oldSelf
150
+ * @param {Object} changedSelf
151
+ * @returns {Boolean}
152
+ */
153
+ wasMediaInactiveOrReleased: (oldSelf: any, changedSelf: any) => boolean;
154
+ /**
155
+ * @param {String | undefined} state meeting state
156
+ * @param {any} joinedWith device that user has joined with
157
+ * @param {any} pairedWith device that user is paired with
158
+ * @returns {Boolean | undefined} true if user is in lobby, false if not, undefined if it cannot be determined
159
+ */
160
+ isLocusUserUnadmitted: (state?: string, joinedWith?: any, pairedWith?: any) => boolean;
161
+ /**
162
+ * @param {String | undefined} state meeting state
163
+ * @param {any} joinedWith device that user has joined with
164
+ * @param {any} pairedWith device that user is paired with
165
+ * @returns {Boolean}
166
+ */
167
+ isLocusUserAdmitted: (state?: string, joinedWith?: any, pairedWith?: any) => boolean;
168
+ /**
169
+ * @param {Object} oldSelf
170
+ * @param {Object} changedSelf
171
+ * @returns {Boolean} true if user has just been placed in the lobby
172
+ * @throws {Error} when self is undefined
173
+ */
174
+ hasUserEnteredLobby: (oldSelf: any, changedSelf: any) => boolean;
175
+ moderatorChanged: (oldSelf: any, changedSelf: any) => boolean;
176
+ /**
177
+ * determine whether the roles of self is changed or not
178
+ * @param {Object} oldSelf
179
+ * @param {Object} changedSelf
180
+ * @returns {Boolean}
181
+ */
182
+ isRolesChanged: (oldSelf: any, changedSelf: any) => boolean;
183
+ /**
184
+ * @param {Object} oldSelf
185
+ * @param {Object} changedSelf
186
+ * @returns {Boolean}
187
+ * @throws {Error} if changed self was undefined
188
+ */
189
+ isDeviceObserving: (oldSelf: any, changedSelf: any) => boolean;
190
+ /**
191
+ * @param {Object} oldSelf
192
+ * @param {Object} changedSelf
193
+ * @returns {Boolean} true if the user has just been admitted from lobby into the meeting
194
+ * @throws {Error} if changed self was undefined
195
+ */
196
+ hasUserBeenAdmitted: (oldSelf: any, changedSelf: any) => boolean;
197
+ videoMutedByOthersChanged: (oldSelf: any, changedSelf: any) => boolean;
198
+ mutedByOthersChanged: (oldSelf: any, changedSelf: any) => boolean;
199
+ localAudioUnmuteRequestedByServer: (oldSelf: any, changedSelf: any) => boolean;
200
+ localAudioUnmuteRequiredByServer: (oldSelf: any, changedSelf: any) => boolean;
201
+ /**
202
+ * extract the sipUrl from the partner
203
+ * @param {Object} partner
204
+ * @param {Object} info
205
+ * @returns {Object}
206
+ */
207
+ getSipUrl: (partner: any, type: any, sipUri: any) => {
208
+ sipUri: any;
209
+ };
210
+ getMediaStatus: (mediaSessions?: any[]) => {
211
+ audio: any;
212
+ video: any;
213
+ share: any;
214
+ };
215
+ getReplacedBreakoutMoveId: (self: any, deviceId: string) => any;
216
+ };
2
217
  export default SelfUtils;
@@ -1,4 +1,5 @@
1
1
  import { LocalCameraStream, LocalMicrophoneStream, LocalDisplayStream, LocalSystemAudioStream, RemoteStream } from '@webex/media-helpers';
2
+ import { ClientEvent } from '@webex/internal-plugin-metrics';
2
3
  export type MediaDirection = {
3
4
  sendAudio: boolean;
4
5
  sendVideo: boolean;
@@ -7,6 +8,7 @@ export type MediaDirection = {
7
8
  receiveVideo: boolean;
8
9
  receiveShare: boolean;
9
10
  };
11
+ export type IPVersion = ClientEvent['payload']['ipVersion'];
10
12
  /**
11
13
  * @class MediaProperties
12
14
  */
@@ -94,6 +96,18 @@ export default class MediaProperties {
94
96
  * @returns {Object}
95
97
  */
96
98
  private getTransportInfo;
99
+ /**
100
+ * Checks if the given IP address is IPv6
101
+ * @param {string} ip address to check
102
+ * @returns {boolean} true if the address is IPv6, false otherwise
103
+ */
104
+ private isIPv6;
105
+ /** Finds out if we connected using IPv4 or IPv6
106
+ * @param {RTCPeerConnection} webrtcMediaConnection
107
+ * @param {Array<any>} allStatsReports array of RTC stats reports
108
+ * @returns {string} IPVersion
109
+ */
110
+ private getConnectionIpVersion;
97
111
  /**
98
112
  * Returns the type of a connection that has been established
99
113
  * It should be 'UDP' | 'TCP' | 'TURN-TLS' | 'TURN-TCP' | 'TURN-UDP' | 'unknown'
@@ -111,6 +125,7 @@ export default class MediaProperties {
111
125
  */
112
126
  getCurrentConnectionInfo(): Promise<{
113
127
  connectionType: string;
128
+ ipVersion?: IPVersion;
114
129
  selectedCandidatePairChanges: number;
115
130
  numTransports: number;
116
131
  }>;
@@ -77,6 +77,8 @@ interface IInMeetingActions {
77
77
  canShareDesktop?: boolean;
78
78
  canShareContent?: boolean;
79
79
  canTransferFile?: boolean;
80
+ canRealtimeCloseCaption?: boolean;
81
+ canRealtimeCloseCaptionManual?: boolean;
80
82
  canChat?: boolean;
81
83
  canDoVideo?: boolean;
82
84
  canAnnotate?: boolean;
@@ -95,6 +97,14 @@ interface IInMeetingActions {
95
97
  isPracticeSessionOff?: boolean;
96
98
  canStartPracticeSession?: boolean;
97
99
  canStopPracticeSession?: boolean;
100
+ requiresPostMeetingDataConsentPrompt?: boolean;
101
+ canEnableAnnotation?: boolean;
102
+ canDisableAnnotation?: boolean;
103
+ canEnableRemoteDesktopControl?: boolean;
104
+ canDisableRemoteDesktopControl?: boolean;
105
+ canMoveToLobby?: boolean;
106
+ canEnablePollingQA?: boolean;
107
+ canDisablePollingQA?: boolean;
98
108
  }
99
109
  /**
100
110
  * @class InMeetingActions
@@ -172,6 +182,8 @@ export default class InMeetingActions implements IInMeetingActions {
172
182
  canShareDesktop: any;
173
183
  canShareContent: any;
174
184
  canTransferFile: any;
185
+ canRealtimeCloseCaption: any;
186
+ canRealtimeCloseCaptionManual: any;
175
187
  canChat: any;
176
188
  canDoVideo: any;
177
189
  canAnnotate: any;
@@ -190,6 +202,14 @@ export default class InMeetingActions implements IInMeetingActions {
190
202
  isPracticeSessionOff: any;
191
203
  canStartPracticeSession: any;
192
204
  canStopPracticeSession: any;
205
+ requiresPostMeetingDataConsentPrompt: any;
206
+ canEnableAnnotation: any;
207
+ canDisableAnnotation: any;
208
+ canEnableRemoteDesktopControl: any;
209
+ canDisableRemoteDesktopControl: any;
210
+ canMoveToLobby: any;
211
+ canEnablePollingQA: any;
212
+ canDisablePollingQA: any;
193
213
  /**
194
214
  * Returns all meeting action options
195
215
  * @returns {Object}
@@ -4,7 +4,8 @@ import { ClientEvent, ClientEventLeaveReason } from '@webex/internal-plugin-metr
4
4
  import { ClientEvent as RawClientEvent } from '@webex/event-dictionary-ts';
5
5
  import { MediaType, StatsAnalyzer, NetworkQualityMonitor } from '@webex/internal-media-core';
6
6
  import { LocalStream, LocalCameraStream, LocalDisplayStream, LocalSystemAudioStream, LocalMicrophoneStream } from '@webex/media-helpers';
7
- import Roap, { type TurnServerInfo, type TurnDiscoverySkipReason } from '../roap/index';
7
+ import Roap, { type TurnDiscoverySkipReason } from '../roap/index';
8
+ import { type TurnServerInfo } from '../roap/types';
8
9
  import { type BundlePolicy } from '../media';
9
10
  import MediaProperties from '../media/properties';
10
11
  import ReconnectionManager from '../reconnection-manager';
@@ -71,6 +72,8 @@ export type CallStateForMetrics = {
71
72
  sessionCorrelationId?: string;
72
73
  joinTrigger?: string;
73
74
  loginType?: string;
75
+ userNameInput?: string;
76
+ emailInput?: string;
74
77
  };
75
78
  export declare const MEDIA_UPDATE_TYPE: {
76
79
  TRANSCODED_MEDIA_CONNECTION: string;
@@ -447,6 +450,12 @@ export default class Meeting extends StatelessWebexPlugin {
447
450
  allowMediaInLobby: boolean;
448
451
  localShareInstanceId: string;
449
452
  remoteShareInstanceId: string;
453
+ shareCAEventSentStatus: {
454
+ transmitStart: boolean;
455
+ transmitStop: boolean;
456
+ receiveStart: boolean;
457
+ receiveStop: boolean;
458
+ };
450
459
  turnDiscoverySkippedReason: TurnDiscoverySkipReason;
451
460
  turnServerUsed: boolean;
452
461
  areVoiceaEventsSetup: boolean;
@@ -466,6 +475,7 @@ export default class Meeting extends StatelessWebexPlugin {
466
475
  private rtcMetrics?;
467
476
  private uploadLogsTimer?;
468
477
  private logUploadIntervalIndex;
478
+ private mediaServerIp;
469
479
  /**
470
480
  * @param {Object} attrs
471
481
  * @param {Object} options
@@ -495,6 +505,26 @@ export default class Meeting extends StatelessWebexPlugin {
495
505
  * @param {string} correlationId
496
506
  */
497
507
  set correlationId(correlationId: string);
508
+ /**
509
+ * Getter - Returns callStateForMetrics.userNameInput
510
+ * @returns {string}
511
+ */
512
+ get userNameInput(): string;
513
+ /**
514
+ * Setter - sets callStateForMetrics.userNameInput
515
+ * @param {string} userNameInput
516
+ */
517
+ set userNameInput(userNameInput: string);
518
+ /**
519
+ * Getter - Returns callStateForMetrics.emailInput
520
+ * @returns {string}
521
+ */
522
+ get emailInput(): string;
523
+ /**
524
+ * Setter - sets callStateForMetrics.emailInput
525
+ * @param {string} emailInput
526
+ */
527
+ set emailInput(emailInput: string);
498
528
  /**
499
529
  * Getter - Returns callStateForMetrics.sessionCorrelationId
500
530
  * @returns {string}
@@ -511,6 +541,14 @@ export default class Meeting extends StatelessWebexPlugin {
511
541
  * @returns {string | undefined}
512
542
  */
513
543
  get isoLocalClientMeetingJoinTime(): string | undefined;
544
+ /**
545
+ * Setter - sets isoLocalClientMeetingJoinTime
546
+ * This will be set once on meeting join, and not updated again
547
+ * this will always produce an ISO string
548
+ * If the iso string is invalid, it will fallback to the current system time
549
+ * @param {string | undefined} time
550
+ */
551
+ set isoLocalClientMeetingJoinTime(time: string | undefined);
514
552
  /**
515
553
  * Set meeting info and trigger `MEETING_INFO_AVAILABLE` event
516
554
  * @param {any} info
@@ -842,6 +880,17 @@ export default class Meeting extends StatelessWebexPlugin {
842
880
  cancelPhoneInvite(invitee: {
843
881
  phoneNumber: string;
844
882
  }): any;
883
+ /**
884
+ * Cancel an SIP call invitation made during a meeting
885
+ * @param {Object} invitee
886
+ * @param {String} invitee.memberId
887
+ * @returns {Promise} see #members.cancelSIPInvite
888
+ * @public
889
+ * @memberof Meeting
890
+ */
891
+ cancelSIPInvite(invitee: {
892
+ memberId: string;
893
+ }): any;
845
894
  /**
846
895
  * Admit the guest(s) to the call once they are waiting.
847
896
  * If the host/cohost is in a breakout session, the locus url
@@ -1851,6 +1900,15 @@ export default class Meeting extends StatelessWebexPlugin {
1851
1900
  * @memberof Meeting
1852
1901
  */
1853
1902
  toggleReactions(enable: boolean): Promise<any>;
1903
+ /**
1904
+ * Method to set post meeting data consent.
1905
+ *
1906
+ * @param {boolean} accept - whether consent accepted or declined
1907
+ * @returns {Promise}
1908
+ * @public
1909
+ * @memberof Meeting
1910
+ */
1911
+ setPostMeetingDataConsent(accept: boolean): Promise<any>;
1854
1912
  /**
1855
1913
  * Throws if we don't have a media connection created
1856
1914
  *
@@ -1929,5 +1987,11 @@ export default class Meeting extends StatelessWebexPlugin {
1929
1987
  * @returns {Promise<void>}
1930
1988
  */
1931
1989
  checkAndRefreshPermissionToken(threshold: number, reason: string): Promise<void>;
1990
+ /**
1991
+ * Gets the media reachability metrics
1992
+ *
1993
+ * @returns {Promise<MediaReachabilityMetrics>}
1994
+ */
1995
+ private getMediaReachabilityMetricFields;
1932
1996
  }
1933
1997
  export {};
@@ -69,7 +69,6 @@ export declare class MuteState {
69
69
  * @public
70
70
  * @memberof MuteState
71
71
  * @param {Object} [meeting] the meeting object
72
- * @param {Boolean} [mute] true for muting, false for unmuting request
73
72
  * @returns {void}
74
73
  */
75
74
  handleLocalStreamMuteStateChange(meeting?: any): void;
@@ -1,5 +1,5 @@
1
1
  import { StatelessWebexPlugin } from '@webex/webex-core';
2
- import { SendReactionOptions, BrbOptions, ToggleReactionsOptions } from './request.type';
2
+ import { SendReactionOptions, BrbOptions, ToggleReactionsOptions, PostMeetingDataConsentOptions } from './request.type';
3
3
  import { AnnotationInfo } from '../annotation/annotation.types';
4
4
  import { ClientMediaPreferences } from '../reachability/reachability.types';
5
5
  /**
@@ -303,4 +303,15 @@ export default class MeetingRequest extends StatelessWebexPlugin {
303
303
  * @returns {Promise}
304
304
  */
305
305
  setBrb({ enabled, locusUrl, deviceUrl, selfId }: BrbOptions): Promise<any>;
306
+ /**
307
+ * Sends a request to set post meeting data consent.
308
+ *
309
+ * @param {Object} options - The options for post meeting data consent request.
310
+ * @param {boolean} options.consent - Whether accepted or declined.
311
+ * @param {string} options.locusUrl - The URL of the locus.
312
+ * @param {string} options.deviceUrl - The URL of the device.
313
+ * @param {string} options.selfId - The ID of the participant.
314
+ * @returns {Promise}
315
+ */
316
+ setPostMeetingDataConsent({ postMeetingDataConsent, locusUrl, deviceUrl, selfId, }: PostMeetingDataConsentOptions): Promise<any>;
306
317
  }
@@ -15,3 +15,9 @@ export type BrbOptions = {
15
15
  deviceUrl: string;
16
16
  selfId: string;
17
17
  };
18
+ export type PostMeetingDataConsentOptions = {
19
+ postMeetingDataConsent: boolean;
20
+ locusUrl: string;
21
+ deviceUrl: string;
22
+ selfId: string;
23
+ };
@@ -80,8 +80,10 @@ declare const MeetingUtil: {
80
80
  waitingForOthersToJoin: (displayHints: any) => any;
81
81
  canSendReactions: (originalValue: any, displayHints: any) => any;
82
82
  canUserRenameSelfAndObserved: (displayHints: any) => any;
83
+ requiresPostMeetingDataConsentPrompt: (displayHints: any) => any;
83
84
  canUserRenameOthers: (displayHints: any) => any;
84
- canShareWhiteBoard: (displayHints: any) => any;
85
+ canShareWhiteBoard: (displayHints: any, policies?: {}) => boolean;
86
+ canMoveToLobby: (displayHints: any) => any;
85
87
  /**
86
88
  * Adds the current locus sequence information to a request body
87
89
  * @param {Object} meeting The meeting object
@@ -99,6 +99,52 @@ export declare class MeetingInfoV2JoinForbiddenError extends Error {
99
99
  */
100
100
  constructor(wbxAppApiErrorCode?: number, meetingInfo?: object, message?: string);
101
101
  }
102
+ /**
103
+ * Error fetching static link for a conversation when it does not exist
104
+ */
105
+ export declare class MeetingInfoV2StaticLinkDoesNotExistError extends Error {
106
+ sdkMessage: any;
107
+ wbxAppApiCode: any;
108
+ body: any;
109
+ /**
110
+ *
111
+ * @constructor
112
+ * @param {Number} [wbxAppApiErrorCode]
113
+ * @param {String} [message]
114
+ */
115
+ constructor(wbxAppApiErrorCode?: number, message?: string);
116
+ }
117
+ /**
118
+ * Error enabling/disabling static meeting link
119
+ */
120
+ export declare class MeetingInfoV2MeetingIsInProgressError extends Error {
121
+ sdkMessage: any;
122
+ wbxAppApiCode: any;
123
+ body: any;
124
+ /**
125
+ *
126
+ * @constructor
127
+ * @param {Number} [wbxAppApiErrorCode]
128
+ * @param {String} [message]
129
+ * @param {Boolean} [enable]
130
+ */
131
+ constructor(wbxAppApiErrorCode?: number, message?: string, enable?: boolean);
132
+ }
133
+ /**
134
+ * Error enabling/disabling static meeting link
135
+ */
136
+ export declare class MeetingInfoV2StaticMeetingLinkAlreadyExists extends Error {
137
+ sdkMessage: any;
138
+ wbxAppApiCode: any;
139
+ body: any;
140
+ /**
141
+ *
142
+ * @constructor
143
+ * @param {Number} [wbxAppApiErrorCode]
144
+ * @param {String} [message]
145
+ */
146
+ constructor(wbxAppApiErrorCode?: number, message?: string);
147
+ }
102
148
  /**
103
149
  * @class MeetingInfo
104
150
  */
@@ -136,6 +182,16 @@ export default class MeetingInfoV2 {
136
182
  * @returns {void}
137
183
  */
138
184
  handleForbiddenError: (err: any) => void;
185
+ /**
186
+ * helper function to either create an adhoc space meeting or enable static meeting link
187
+ * @param {String} conversationUrl conversationUrl to start adhoc meeting on
188
+ * @param {String} installedOrgID org ID of user's machine
189
+ * @param {Boolean} enableStaticMeetingLink whether or not to enable static meeting link
190
+ * @returns {Promise} returns a meeting info object
191
+ * @public
192
+ * @memberof MeetingInfo
193
+ */
194
+ createAdhocSpaceMeetingOrEnableStaticMeetingLink(conversationUrl: string, installedOrgID?: string, enableStaticMeetingLink?: boolean): Promise<any>;
139
195
  /**
140
196
  * Creates adhoc space meetings for a space by fetching the conversation infomation
141
197
  * @param {String} conversationUrl conversationUrl to start adhoc meeting on
@@ -145,6 +201,30 @@ export default class MeetingInfoV2 {
145
201
  * @memberof MeetingInfo
146
202
  */
147
203
  createAdhocSpaceMeeting(conversationUrl: string, installedOrgID?: string): Promise<any>;
204
+ /**
205
+ * Fetches details for static meeting link
206
+ * @param {String} conversationUrl conversationUrl that's required to find static meeting link if it exists
207
+ * @returns {Promise} returns a Promise
208
+ * @public
209
+ * @memberof MeetingInfo
210
+ */
211
+ fetchStaticMeetingLink(conversationUrl: string): Promise<any>;
212
+ /**
213
+ * Enables static meeting link
214
+ * @param {String} conversationUrl conversationUrl that's required to enable static meeting link
215
+ * @returns {Promise} returns a Promise
216
+ * @public
217
+ * @memberof MeetingInfo
218
+ */
219
+ enableStaticMeetingLink(conversationUrl: string): Promise<any>;
220
+ /**
221
+ * Disables static meeting link for given conversation url
222
+ * @param {String} conversationUrl conversationUrl that's required to disable static meeting link if it exists
223
+ * @returns {Promise} returns a Promise
224
+ * @public
225
+ * @memberof MeetingInfo
226
+ */
227
+ disableStaticMeetingLink(conversationUrl: string): Promise<any>;
148
228
  /**
149
229
  * Fetches meeting info from the server
150
230
  * @param {String} destination one of many different types of destinations to look up info for
@@ -158,6 +238,7 @@ export default class MeetingInfoV2 {
158
238
  * @param {Object} extraParams
159
239
  * @param {Object} options
160
240
  * @param {String} registrationId
241
+ * @param {String} fullSiteUrl
161
242
  * @returns {Promise} returns a meeting info object
162
243
  * @public
163
244
  * @memberof MeetingInfo
@@ -168,5 +249,5 @@ export default class MeetingInfoV2 {
168
249
  }, installedOrgID?: any, locusId?: any, extraParams?: object, options?: {
169
250
  meetingId?: string;
170
251
  sendCAevents?: boolean;
171
- }, registrationId?: string): Promise<any>;
252
+ }, registrationId?: string, fullSiteUrl?: string): Promise<any>;
172
253
  }
@@ -227,6 +227,34 @@ export default class Meetings extends WebexPlugin {
227
227
  * @returns {undefined}
228
228
  */
229
229
  private _toggleIpv6BackendNativeSupport;
230
+ /**
231
+ * API to toggle usage of audio main DTX, needs to be called before webex.meetings.register()
232
+ *
233
+ * @param {Boolean} newValue
234
+ * @private
235
+ * @memberof Meetings
236
+ * @returns {undefined}
237
+ */
238
+ private _toggleDisableAudioMainDtx;
239
+ /**
240
+ * API to toggle usage of audio twcc support
241
+ *
242
+ * @param {Boolean} newValue
243
+ * @private
244
+ * @memberof Meetings
245
+ * @returns {undefined}
246
+ */
247
+ private _toggleEnableAudioTwccForMultistream;
248
+ /**
249
+ * API to toggle stopping ICE Candidates Gathering after first relay candidate,
250
+ * needs to be called before webex.meetings.joinWithMedia()
251
+ *
252
+ * @param {Boolean} newValue
253
+ * @private
254
+ * @memberof Meetings
255
+ * @returns {undefined}
256
+ */
257
+ private _toggleStopIceGatheringAfterFirstRelayCandidate;
230
258
  /**
231
259
  * Executes a registration step and updates the registration status.
232
260
  * @param {Function} step - The registration step to execute.
@@ -348,6 +376,15 @@ export default class Meetings extends WebexPlugin {
348
376
  * @memberof Meetings
349
377
  */
350
378
  private destroy;
379
+ /**
380
+ * Fetch static meeting link for given conversation url.
381
+ *
382
+ * @param {string} conversationUrl - url for conversation
383
+ * @returns {Promise}
384
+ * @public
385
+ * @memberof Meetings
386
+ */
387
+ fetchStaticMeetingLink(conversationUrl: string): Promise<any>;
351
388
  /**
352
389
  * Create a meeting or return an existing meeting.
353
390
  *
@@ -368,6 +405,26 @@ export default class Meetings extends WebexPlugin {
368
405
  * @memberof Meetings
369
406
  */
370
407
  create(destination: string, type?: DESTINATION_TYPE, useRandomDelayForInfo?: boolean, infoExtraParams?: {}, correlationId?: string, failOnMissingMeetingInfo?: boolean, callStateForMetrics?: CallStateForMetrics, meetingInfo?: any, meetingLookupUrl?: any, sessionCorrelationId?: string): any;
408
+ /**
409
+ * Enable static meeting links for given conversation url.
410
+ *
411
+ *
412
+ * @param {string} conversationUrl - url for conversation
413
+ * @returns {Promise}
414
+ * @public
415
+ * @memberof Meetings
416
+ */
417
+ enableStaticMeetingLink(conversationUrl: string): Promise<any>;
418
+ /**
419
+ * Disable static meeting links for given conversation url.
420
+ *
421
+ *
422
+ * @param {string} conversationUrl - url for conversation
423
+ * @returns {Promise}
424
+ * @public
425
+ * @memberof Meetings
426
+ */
427
+ disableStaticMeetingLink(conversationUrl: string): Promise<any>;
371
428
  /**
372
429
  * Create meeting
373
430
  *