@webex/plugin-meetings 3.9.0-multi-llms.4 → 3.9.0-multi-llms.5

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 (64) hide show
  1. package/dist/breakouts/breakout.js +1 -1
  2. package/dist/breakouts/index.js +1 -1
  3. package/dist/constants.js +4 -0
  4. package/dist/constants.js.map +1 -1
  5. package/dist/controls-options-manager/index.js +22 -5
  6. package/dist/controls-options-manager/index.js.map +1 -1
  7. package/dist/index.js +2 -1
  8. package/dist/index.js.map +1 -1
  9. package/dist/interceptors/index.js +7 -0
  10. package/dist/interceptors/index.js.map +1 -1
  11. package/dist/interceptors/locusRouteToken.js +116 -0
  12. package/dist/interceptors/locusRouteToken.js.map +1 -0
  13. package/dist/interpretation/index.js +1 -1
  14. package/dist/interpretation/siLanguage.js +1 -1
  15. package/dist/locus-info/controlsUtils.js +11 -2
  16. package/dist/locus-info/controlsUtils.js.map +1 -1
  17. package/dist/locus-info/index.js +17 -3
  18. package/dist/locus-info/index.js.map +1 -1
  19. package/dist/meeting/in-meeting-actions.js +2 -0
  20. package/dist/meeting/in-meeting-actions.js.map +1 -1
  21. package/dist/meeting/index.js +74 -32
  22. package/dist/meeting/index.js.map +1 -1
  23. package/dist/meeting/request.js +48 -14
  24. package/dist/meeting/request.js.map +1 -1
  25. package/dist/meeting/util.js +3 -0
  26. package/dist/meeting/util.js.map +1 -1
  27. package/dist/member/index.js +9 -0
  28. package/dist/member/index.js.map +1 -1
  29. package/dist/member/util.js +10 -0
  30. package/dist/member/util.js.map +1 -1
  31. package/dist/types/constants.d.ts +3 -0
  32. package/dist/types/controls-options-manager/index.d.ts +9 -1
  33. package/dist/types/interceptors/index.d.ts +2 -1
  34. package/dist/types/interceptors/locusRouteToken.d.ts +38 -0
  35. package/dist/types/locus-info/index.d.ts +2 -1
  36. package/dist/types/meeting/in-meeting-actions.d.ts +2 -0
  37. package/dist/types/meeting/index.d.ts +14 -0
  38. package/dist/types/meeting/request.d.ts +16 -0
  39. package/dist/types/meeting/util.d.ts +1 -0
  40. package/dist/types/member/index.d.ts +1 -0
  41. package/dist/types/member/util.d.ts +5 -0
  42. package/dist/webinar/index.js +1 -1
  43. package/package.json +13 -13
  44. package/src/constants.ts +6 -0
  45. package/src/controls-options-manager/index.ts +26 -5
  46. package/src/index.ts +2 -1
  47. package/src/interceptors/index.ts +2 -1
  48. package/src/interceptors/locusRouteToken.ts +80 -0
  49. package/src/locus-info/controlsUtils.ts +18 -0
  50. package/src/locus-info/index.ts +14 -4
  51. package/src/meeting/in-meeting-actions.ts +4 -0
  52. package/src/meeting/index.ts +67 -20
  53. package/src/meeting/request.ts +38 -0
  54. package/src/meeting/util.ts +3 -0
  55. package/src/member/index.ts +10 -0
  56. package/src/member/util.ts +14 -0
  57. package/test/unit/spec/controls-options-manager/index.js +47 -0
  58. package/test/unit/spec/fixture/locus.js +1 -0
  59. package/test/unit/spec/interceptors/locusRouteToken.ts +87 -0
  60. package/test/unit/spec/locus-info/index.js +39 -0
  61. package/test/unit/spec/meeting/in-meeting-actions.ts +2 -0
  62. package/test/unit/spec/meeting/index.js +41 -2
  63. package/test/unit/spec/meeting/utils.js +1 -0
  64. package/test/unit/spec/member/util.js +24 -0
@@ -296,7 +296,7 @@ var LocusInfo = exports.default = /*#__PURE__*/function (_EventsScope) {
296
296
  // For 1:1 space meeting the conversation Url does not exist in locus.conversation
297
297
  this.updateConversationUrl(locus.conversationUrl, locus.info);
298
298
  this.updateControls(locus.controls, locus.self);
299
- this.updateLocusUrl(locus.url);
299
+ this.updateLocusUrl(locus.url, _controlsUtils.default.isMainSessionDTO(locus));
300
300
  this.updateFullState(locus.fullState);
301
301
  this.updateMeetingInfo(locus.info);
302
302
  this.updateEmbeddedApps(locus.embeddedApps);
@@ -493,7 +493,7 @@ var LocusInfo = exports.default = /*#__PURE__*/function (_EventsScope) {
493
493
  this.updateCreated(locus.created);
494
494
  this.updateFullState(locus.fullState);
495
495
  this.updateHostInfo(locus.host);
496
- this.updateLocusUrl(locus.url);
496
+ this.updateLocusUrl(locus.url, _controlsUtils.default.isMainSessionDTO(locus));
497
497
  this.updateMeetingInfo(locus.info, locus.self);
498
498
  this.updateMediaShares(locus.mediaShares);
499
499
  this.updateParticipantsUrl(locus.participantsUrl);
@@ -786,6 +786,7 @@ var LocusInfo = exports.default = /*#__PURE__*/function (_EventsScope) {
786
786
  hasAnnotationControlChanged = _ControlsUtils$getCon2.hasAnnotationControlChanged,
787
787
  hasRemoteDesktopControlChanged = _ControlsUtils$getCon2.hasRemoteDesktopControlChanged,
788
788
  hasPollingQAControlChanged = _ControlsUtils$getCon2.hasPollingQAControlChanged,
789
+ hasAutoEndMeetingChanged = _ControlsUtils$getCon2.hasAutoEndMeetingChanged,
789
790
  current = _ControlsUtils$getCon.current;
790
791
  if (hasMuteOnEntryChanged) {
791
792
  this.emitScoped({
@@ -1006,6 +1007,14 @@ var LocusInfo = exports.default = /*#__PURE__*/function (_EventsScope) {
1006
1007
  state: current.pollingQAControl
1007
1008
  });
1008
1009
  }
1010
+ if (hasAutoEndMeetingChanged) {
1011
+ this.emitScoped({
1012
+ file: 'locus-info',
1013
+ function: 'updateControls'
1014
+ }, _constants.LOCUSINFO.EVENTS.CONTROLS_AUTO_END_MEETING_WARNING_CHANGED, {
1015
+ state: current.autoEndMeetingWarning
1016
+ });
1017
+ }
1009
1018
  this.controls = controls;
1010
1019
  }
1011
1020
  }
@@ -1459,12 +1468,14 @@ var LocusInfo = exports.default = /*#__PURE__*/function (_EventsScope) {
1459
1468
  /**
1460
1469
  * handles when the locus.url is updated
1461
1470
  * @param {String} url
1471
+ * @param {Boolean} isMainLocus
1462
1472
  * @returns {undefined}
1463
1473
  * emits internal event locus_info_update_url
1464
1474
  */
1465
1475
  }, {
1466
1476
  key: "updateLocusUrl",
1467
1477
  value: function updateLocusUrl(url) {
1478
+ var isMainLocus = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
1468
1479
  if (url && this.url !== url) {
1469
1480
  this.url = url;
1470
1481
  this.updateMeeting({
@@ -1473,7 +1484,10 @@ var LocusInfo = exports.default = /*#__PURE__*/function (_EventsScope) {
1473
1484
  this.emitScoped({
1474
1485
  file: 'locus-info',
1475
1486
  function: 'updateLocusUrl'
1476
- }, _constants.EVENTS.LOCUS_INFO_UPDATE_URL, url);
1487
+ }, _constants.EVENTS.LOCUS_INFO_UPDATE_URL, {
1488
+ url: url,
1489
+ isMainLocus: isMainLocus
1490
+ });
1477
1491
  }
1478
1492
  }
1479
1493