@webex/plugin-meetings 3.0.0-beta.190 → 3.0.0-beta.192

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.
@@ -209,7 +209,7 @@ var Breakout = _webexCore.WebexPlugin.extend({
209
209
  sessionId: this.sessionId
210
210
  });
211
211
  },
212
- version: "3.0.0-beta.190"
212
+ version: "3.0.0-beta.192"
213
213
  });
214
214
  var _default = Breakout;
215
215
  exports.default = _default;
@@ -1041,7 +1041,7 @@ var Breakouts = _webexCore.WebexPlugin.extend({
1041
1041
  this.trigger(_constants.BREAKOUTS.EVENTS.ASK_RETURN_TO_MAIN);
1042
1042
  }
1043
1043
  },
1044
- version: "3.0.0-beta.190"
1044
+ version: "3.0.0-beta.192"
1045
1045
  });
1046
1046
  var _default = Breakouts;
1047
1047
  exports.default = _default;
@@ -359,7 +359,7 @@ var SimultaneousInterpretation = _webexCore.WebexPlugin.extend({
359
359
  throw error;
360
360
  });
361
361
  },
362
- version: "3.0.0-beta.190"
362
+ version: "3.0.0-beta.192"
363
363
  });
364
364
  var _default = SimultaneousInterpretation;
365
365
  exports.default = _default;
@@ -18,7 +18,7 @@ var SILanguage = _webexCore.WebexPlugin.extend({
18
18
  languageCode: 'number',
19
19
  languageName: 'string'
20
20
  },
21
- version: "3.0.0-beta.190"
21
+ version: "3.0.0-beta.192"
22
22
  });
23
23
  var _default = SILanguage;
24
24
  exports.default = _default;
@@ -2872,7 +2872,12 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
2872
2872
  canEnableVideo: _util3.default.hasHints({
2873
2873
  requiredHints: [_constants.DISPLAY_HINTS.ENABLE_VIDEO],
2874
2874
  displayHints: payload.info.userDisplayHints
2875
- }),
2875
+ }) && _util3.default.hasPolicies({
2876
+ requiredPolicies: [_constants.SELF_POLICY.SUPPORT_VIDEO],
2877
+ policies: _this17.selfUserPolicies
2878
+ }) ||
2879
+ // @ts-ignore
2880
+ !_this17.config.experimental.enableUnifiedMeetings || _this17.isLocusCall(),
2876
2881
  canDisableVideo: _util3.default.hasHints({
2877
2882
  requiredHints: [_constants.DISPLAY_HINTS.DISABLE_VIDEO],
2878
2883
  displayHints: payload.info.userDisplayHints
@@ -4304,6 +4309,9 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
4304
4309
  // @ts-ignore - fix type
4305
4310
  this.webex.sessionId, this.members);
4306
4311
  _loggerProxy.default.logger.info("Meeting:index#receiveTranscription -->\n opened LLM web socket connection successfully.");
4312
+ if (!this.inMeetingActions.isClosedCaptionActive) {
4313
+ _loggerProxy.default.logger.error("Meeting:index#receiveTranscription --> Transcription cannot be started until a licensed user enables it");
4314
+ }
4307
4315
 
4308
4316
  // retrieve and pass the payload
4309
4317
  this.transcription.subscribe(function (payload) {
@@ -4315,10 +4323,10 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
4315
4323
  this.monitorTranscriptionSocketConnection();
4316
4324
  // @ts-ignore - fix type
4317
4325
  this.transcription.connect(this.webex.credentials.supertoken.access_token);
4318
- _context10.next = 19;
4326
+ _context10.next = 20;
4319
4327
  break;
4320
- case 15:
4321
- _context10.prev = 15;
4328
+ case 16:
4329
+ _context10.prev = 16;
4322
4330
  _context10.t0 = _context10["catch"](1);
4323
4331
  _loggerProxy.default.logger.error("Meeting:index#receiveTranscription --> ".concat(_context10.t0));
4324
4332
  _metrics.default.sendBehavioralMetric(_constants2.default.RECEIVE_TRANSCRIPTION_FAILURE, {
@@ -4326,11 +4334,11 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
4326
4334
  reason: _context10.t0.message,
4327
4335
  stack: _context10.t0.stack
4328
4336
  });
4329
- case 19:
4337
+ case 20:
4330
4338
  case "end":
4331
4339
  return _context10.stop();
4332
4340
  }
4333
- }, _callee10, this, [[1, 15]]);
4341
+ }, _callee10, this, [[1, 16]]);
4334
4342
  }));
4335
4343
  function receiveTranscription() {
4336
4344
  return _receiveTranscription.apply(this, arguments);