@webex/plugin-meetings 2.60.1-next.1 → 2.60.1-next.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/breakouts/breakout.js +1 -1
- package/dist/breakouts/index.js +1 -1
- package/dist/constants.d.ts +4 -2
- package/dist/constants.js +7 -5
- package/dist/constants.js.map +1 -1
- package/dist/interpretation/index.js +1 -1
- package/dist/interpretation/siLanguage.js +1 -1
- package/dist/meeting/index.d.ts +56 -12
- package/dist/meeting/index.js +351 -259
- package/dist/meeting/index.js.map +1 -1
- package/dist/meeting/voicea-meeting.d.ts +20 -0
- package/dist/meeting/voicea-meeting.js +201 -0
- package/dist/meeting/voicea-meeting.js.map +1 -0
- package/dist/webinar/index.js +1 -1
- package/package.json +21 -20
- package/src/constants.ts +7 -2
- package/src/meeting/index.ts +299 -155
- package/src/meeting/voicea-meeting.ts +161 -0
package/dist/meeting/index.js
CHANGED
|
@@ -29,7 +29,7 @@ var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime-cor
|
|
|
29
29
|
var _inherits2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/inherits"));
|
|
30
30
|
var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/possibleConstructorReturn"));
|
|
31
31
|
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/getPrototypeOf"));
|
|
32
|
-
var
|
|
32
|
+
var _defineProperty3 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/defineProperty"));
|
|
33
33
|
var _uuid = _interopRequireDefault(require("uuid"));
|
|
34
34
|
var _lodash = require("lodash");
|
|
35
35
|
var _jwtDecode = _interopRequireDefault(require("jwt-decode"));
|
|
@@ -38,6 +38,8 @@ var _common = require("@webex/common");
|
|
|
38
38
|
var _internalPluginMetrics = require("@webex/internal-plugin-metrics");
|
|
39
39
|
var _internalMediaCore = require("@webex/internal-media-core");
|
|
40
40
|
var _mediaHelpers = require("@webex/media-helpers");
|
|
41
|
+
var _internalPluginVoicea = require("@webex/internal-plugin-voicea");
|
|
42
|
+
var _voiceaMeeting = require("./voicea-meeting");
|
|
41
43
|
var _webexErrors = require("../common/errors/webex-errors");
|
|
42
44
|
var _statsAnalyzer = require("../statsAnalyzer");
|
|
43
45
|
var _networkQualityMonitor = _interopRequireDefault(require("../networkQualityMonitor"));
|
|
@@ -58,7 +60,6 @@ var _util2 = _interopRequireDefault(require("../meetings/util"));
|
|
|
58
60
|
var _util3 = _interopRequireDefault(require("../recording-controller/util"));
|
|
59
61
|
var _util4 = _interopRequireDefault(require("../controls-options-manager/util"));
|
|
60
62
|
var _util5 = _interopRequireDefault(require("../media/util"));
|
|
61
|
-
var _transcription = _interopRequireDefault(require("../transcription"));
|
|
62
63
|
var _reactions = require("../reactions/reactions");
|
|
63
64
|
var _passwordError = _interopRequireDefault(require("../common/errors/password-error"));
|
|
64
65
|
var _captchaError = _interopRequireDefault(require("../common/errors/captcha-error"));
|
|
@@ -87,7 +88,7 @@ function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof _Symbol
|
|
|
87
88
|
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return _Array$from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
88
89
|
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
89
90
|
function ownKeys(e, r) { var t = _Object$keys2(e); if (_Object$getOwnPropertySymbols) { var o = _Object$getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return _Object$getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
90
|
-
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0,
|
|
91
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty3.default)(e, r, t[r]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(e, _Object$getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { _Object$defineProperty(e, r, _Object$getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
91
92
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = _Reflect$construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
|
|
92
93
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !_Reflect$construct) return false; if (_Reflect$construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(_Reflect$construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } // @ts-ignore - Fix this
|
|
93
94
|
// @ts-ignore - Types not available for @webex/common
|
|
@@ -383,126 +384,157 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
383
384
|
* @private
|
|
384
385
|
* @memberof Meeting
|
|
385
386
|
*/
|
|
386
|
-
(0,
|
|
387
|
-
(0,
|
|
388
|
-
(0,
|
|
389
|
-
(0,
|
|
390
|
-
(0,
|
|
391
|
-
(0,
|
|
392
|
-
(0,
|
|
393
|
-
(0,
|
|
394
|
-
(0,
|
|
395
|
-
(0,
|
|
396
|
-
(0,
|
|
397
|
-
(0,
|
|
398
|
-
(0,
|
|
399
|
-
(0,
|
|
400
|
-
(0,
|
|
401
|
-
(0,
|
|
402
|
-
(0,
|
|
403
|
-
(0,
|
|
404
|
-
(0,
|
|
405
|
-
(0,
|
|
406
|
-
(0,
|
|
407
|
-
(0,
|
|
408
|
-
(0,
|
|
409
|
-
(0,
|
|
410
|
-
(0,
|
|
411
|
-
(0,
|
|
412
|
-
(0,
|
|
413
|
-
(0,
|
|
414
|
-
(0,
|
|
415
|
-
(0,
|
|
416
|
-
(0,
|
|
387
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "attrs", void 0);
|
|
388
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "audio", void 0);
|
|
389
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "breakouts", void 0);
|
|
390
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "simultaneousInterpretation", void 0);
|
|
391
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "annotation", void 0);
|
|
392
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "webinar", void 0);
|
|
393
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "conversationUrl", void 0);
|
|
394
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "callStateForMetrics", void 0);
|
|
395
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "destination", void 0);
|
|
396
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "destinationType", void 0);
|
|
397
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "deviceUrl", void 0);
|
|
398
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "hostId", void 0);
|
|
399
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "id", void 0);
|
|
400
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "isMultistream", void 0);
|
|
401
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "locusUrl", void 0);
|
|
402
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "mediaConnections", void 0);
|
|
403
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "mediaId", void 0);
|
|
404
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "meetingFiniteStateMachine", void 0);
|
|
405
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "meetingInfo", void 0);
|
|
406
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "meetingRequest", void 0);
|
|
407
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "members", void 0);
|
|
408
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "options", void 0);
|
|
409
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "orgId", void 0);
|
|
410
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "owner", void 0);
|
|
411
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "partner", void 0);
|
|
412
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "policy", void 0);
|
|
413
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "reconnectionManager", void 0);
|
|
414
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "resource", void 0);
|
|
415
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "roap", void 0);
|
|
416
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "roapSeq", void 0);
|
|
417
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "selfUrl", void 0);
|
|
417
418
|
// comes from Locus, initialized by updateMeetingObject()
|
|
418
|
-
(0,
|
|
419
|
-
(0,
|
|
420
|
-
(0,
|
|
421
|
-
(0,
|
|
422
|
-
(0,
|
|
423
|
-
(0,
|
|
424
|
-
(0,
|
|
425
|
-
(0,
|
|
426
|
-
(0,
|
|
427
|
-
(0,
|
|
428
|
-
(0,
|
|
429
|
-
(0,
|
|
430
|
-
(0,
|
|
431
|
-
(0,
|
|
432
|
-
(0,
|
|
433
|
-
(0,
|
|
434
|
-
(0,
|
|
435
|
-
(0,
|
|
436
|
-
(0,
|
|
437
|
-
(0,
|
|
438
|
-
(0,
|
|
439
|
-
(0,
|
|
440
|
-
(0,
|
|
441
|
-
(0,
|
|
442
|
-
(0,
|
|
443
|
-
(0,
|
|
444
|
-
(0,
|
|
445
|
-
(0,
|
|
446
|
-
(0,
|
|
447
|
-
(0,
|
|
448
|
-
(0,
|
|
449
|
-
(0,
|
|
450
|
-
(0,
|
|
451
|
-
(0,
|
|
452
|
-
(0,
|
|
453
|
-
(0,
|
|
454
|
-
(0,
|
|
455
|
-
(0,
|
|
456
|
-
(0,
|
|
457
|
-
(0,
|
|
458
|
-
(0,
|
|
459
|
-
(0,
|
|
460
|
-
(0,
|
|
461
|
-
(0,
|
|
462
|
-
(0,
|
|
463
|
-
(0,
|
|
464
|
-
(0,
|
|
465
|
-
(0,
|
|
466
|
-
(0,
|
|
467
|
-
(0,
|
|
468
|
-
(0,
|
|
469
|
-
(0,
|
|
470
|
-
(0,
|
|
471
|
-
(0,
|
|
472
|
-
(0,
|
|
473
|
-
(0,
|
|
474
|
-
(0,
|
|
475
|
-
(0,
|
|
476
|
-
(0,
|
|
477
|
-
(0,
|
|
478
|
-
(0,
|
|
479
|
-
(0,
|
|
480
|
-
(0,
|
|
481
|
-
(0,
|
|
482
|
-
(0,
|
|
483
|
-
(0,
|
|
484
|
-
(0,
|
|
485
|
-
(0,
|
|
486
|
-
(0,
|
|
487
|
-
(0,
|
|
488
|
-
(0,
|
|
489
|
-
(0,
|
|
490
|
-
(0,
|
|
491
|
-
(0,
|
|
492
|
-
(0,
|
|
493
|
-
(0,
|
|
494
|
-
|
|
495
|
-
|
|
419
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "sipUri", void 0);
|
|
420
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "type", void 0);
|
|
421
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "userId", void 0);
|
|
422
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "video", void 0);
|
|
423
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "callEvents", void 0);
|
|
424
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "datachannelUrl", void 0);
|
|
425
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "deferJoin", void 0);
|
|
426
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "dialInDeviceStatus", void 0);
|
|
427
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "dialInUrl", void 0);
|
|
428
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "dialOutDeviceStatus", void 0);
|
|
429
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "dialOutUrl", void 0);
|
|
430
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "fetchMeetingInfoTimeoutId", void 0);
|
|
431
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "floorGrantPending", void 0);
|
|
432
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "hasJoinedOnce", void 0);
|
|
433
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "hasWebsocketConnected", void 0);
|
|
434
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "inMeetingActions", void 0);
|
|
435
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "isLocalShareLive", void 0);
|
|
436
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "isRoapInProgress", void 0);
|
|
437
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "keepAliveTimerId", void 0);
|
|
438
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "lastVideoLayoutInfo", void 0);
|
|
439
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "locusInfo", void 0);
|
|
440
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "locusMediaRequest", void 0);
|
|
441
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "mediaProperties", void 0);
|
|
442
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "mediaRequestManagers", void 0);
|
|
443
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "meetingInfoFailureReason", void 0);
|
|
444
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "meetingInfoFailureCode", void 0);
|
|
445
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "meetingInfoExtraParams", void 0);
|
|
446
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "networkQualityMonitor", void 0);
|
|
447
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "networkStatus", void 0);
|
|
448
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "passwordStatus", void 0);
|
|
449
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "queuedMediaUpdates", void 0);
|
|
450
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "recording", void 0);
|
|
451
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "remoteMediaManager", void 0);
|
|
452
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "recordingController", void 0);
|
|
453
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "controlsOptionsManager", void 0);
|
|
454
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "requiredCaptcha", void 0);
|
|
455
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "receiveSlotManager", void 0);
|
|
456
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "selfUserPolicies", void 0);
|
|
457
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "enforceVBGImagesURL", void 0);
|
|
458
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "shareStatus", void 0);
|
|
459
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "screenShareFloorState", void 0);
|
|
460
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "statsAnalyzer", void 0);
|
|
461
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "transcription", void 0);
|
|
462
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "updateMediaConnections", void 0);
|
|
463
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "userDisplayHints", void 0);
|
|
464
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "endCallInitJoinReq", void 0);
|
|
465
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "endJoinReqResp", void 0);
|
|
466
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "endLocalSDPGenRemoteSDPRecvDelay", void 0);
|
|
467
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "joinedWith", void 0);
|
|
468
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "locusId", void 0);
|
|
469
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "startCallInitJoinReq", void 0);
|
|
470
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "startJoinReqResp", void 0);
|
|
471
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "startLocalSDPGenRemoteSDPRecvDelay", void 0);
|
|
472
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "wirelessShare", void 0);
|
|
473
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "guest", void 0);
|
|
474
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "meetingJoinUrl", void 0);
|
|
475
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "meetingNumber", void 0);
|
|
476
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "meetingState", void 0);
|
|
477
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "permissionToken", void 0);
|
|
478
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "permissionTokenPayload", void 0);
|
|
479
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "permissionTokenReceivedLocalTime", void 0);
|
|
480
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "resourceId", void 0);
|
|
481
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "resourceUrl", void 0);
|
|
482
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "selfId", void 0);
|
|
483
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "state", void 0);
|
|
484
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "localAudioStreamMuteStateHandler", void 0);
|
|
485
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "localVideoStreamMuteStateHandler", void 0);
|
|
486
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "localOutputTrackChangeHandler", void 0);
|
|
487
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "roles", void 0);
|
|
488
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "environment", void 0);
|
|
489
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "namespace", _constants.MEETINGS);
|
|
490
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "allowMediaInLobby", void 0);
|
|
491
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "turnDiscoverySkippedReason", void 0);
|
|
492
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "turnServerUsed", void 0);
|
|
493
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "areVoiceaEventsSetup", false);
|
|
494
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "voiceaListenerCallbacks", (0, _defineProperty3.default)((0, _defineProperty3.default)((0, _defineProperty3.default)((0, _defineProperty3.default)((0, _defineProperty3.default)({}, _internalPluginVoicea.EVENT_TRIGGERS.VOICEA_ANNOUNCEMENT, function (payload) {
|
|
495
|
+
_this.transcription.languageOptions = payload;
|
|
496
|
+
_triggerProxy.default.trigger((0, _assertThisInitialized2.default)(_this), {
|
|
497
|
+
file: 'meeting/index',
|
|
498
|
+
function: 'setUpVoiceaListeners'
|
|
499
|
+
}, _constants.EVENT_TRIGGERS.MEETING_STARTED_RECEIVING_TRANSCRIPTION, payload);
|
|
500
|
+
}), _internalPluginVoicea.EVENT_TRIGGERS.CAPTIONS_TURNED_ON, function () {
|
|
501
|
+
_this.transcription.status = _internalPluginVoicea.TURN_ON_CAPTION_STATUS.ENABLED;
|
|
502
|
+
}), _internalPluginVoicea.EVENT_TRIGGERS.EVA_COMMAND, function (payload) {
|
|
503
|
+
var _data$text;
|
|
504
|
+
var data = payload.data;
|
|
505
|
+
_this.transcription.isListening = !!data.isListening;
|
|
506
|
+
_this.transcription.commandText = (_data$text = data.text) !== null && _data$text !== void 0 ? _data$text : '';
|
|
507
|
+
}), _internalPluginVoicea.EVENT_TRIGGERS.NEW_CAPTION, function (data) {
|
|
508
|
+
(0, _voiceaMeeting.processNewCaptions)({
|
|
509
|
+
data: data,
|
|
510
|
+
meeting: (0, _assertThisInitialized2.default)(_this)
|
|
511
|
+
});
|
|
512
|
+
_triggerProxy.default.trigger((0, _assertThisInitialized2.default)(_this), {
|
|
513
|
+
file: 'meeting/index',
|
|
514
|
+
function: 'setUpVoiceaListeners'
|
|
515
|
+
}, _constants.EVENT_TRIGGERS.MEETING_CAPTION_RECEIVED, {
|
|
516
|
+
captions: _this.transcription.captions,
|
|
517
|
+
interimCaptions: _this.transcription.interimCaptions
|
|
518
|
+
});
|
|
519
|
+
}), _internalPluginVoicea.EVENT_TRIGGERS.HIGHLIGHT_CREATED, function (data) {
|
|
520
|
+
(0, _voiceaMeeting.processHighlightCreated)({
|
|
521
|
+
data: data,
|
|
522
|
+
meeting: (0, _assertThisInitialized2.default)(_this)
|
|
523
|
+
});
|
|
524
|
+
}));
|
|
525
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "retriedWithTurnServer", void 0);
|
|
526
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "sendSlotManager", new _sendSlotManager.default(_loggerProxy.default));
|
|
527
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "deferSDPAnswer", void 0);
|
|
496
528
|
// used for waiting for a response
|
|
497
|
-
(0,
|
|
498
|
-
(0,
|
|
529
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "sdpResponseTimer", void 0);
|
|
530
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "hasMediaConnectionConnectedAtLeastOnce", void 0);
|
|
499
531
|
/**
|
|
500
532
|
* Callback called when a relay event is received from meeting LLM Connection
|
|
501
533
|
* @param {RelayEvent} e Event object coming from LLM Connection
|
|
502
534
|
* @private
|
|
503
535
|
* @returns {void}
|
|
504
536
|
*/
|
|
505
|
-
(0,
|
|
537
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "processRelayEvent", function (e) {
|
|
506
538
|
switch (e.data.relayType) {
|
|
507
539
|
case _constants3.REACTION_RELAY_TYPES.REACTION:
|
|
508
540
|
if (
|
|
@@ -533,7 +565,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
533
565
|
* @param {Error} error
|
|
534
566
|
* @returns {void}
|
|
535
567
|
*/
|
|
536
|
-
(0,
|
|
568
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "handleRoapFailure", function (error) {
|
|
537
569
|
// eslint-disable-next-line @typescript-eslint/no-shadow
|
|
538
570
|
var sendBehavioralMetric = function sendBehavioralMetric(metricName, error, correlationId) {
|
|
539
571
|
var _error$cause;
|
|
@@ -599,7 +631,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
599
631
|
* @param {RoapMessage} roapMessage roap message
|
|
600
632
|
* @returns {undefined}
|
|
601
633
|
*/
|
|
602
|
-
(0,
|
|
634
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "roapMessageReceived", function (roapMessage) {
|
|
603
635
|
var mediaServer = _util2.default.getMediaServer(roapMessage.sdp);
|
|
604
636
|
_this.mediaProperties.webrtcMediaConnection.roapMessageReceived(roapMessage);
|
|
605
637
|
if (mediaServer) {
|
|
@@ -611,7 +643,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
611
643
|
*
|
|
612
644
|
* @returns {undefined}
|
|
613
645
|
*/
|
|
614
|
-
(0,
|
|
646
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "setupSdpListeners", function () {
|
|
615
647
|
_this.mediaProperties.webrtcMediaConnection.on(_internalMediaCore.Event.REMOTE_SDP_ANSWER_PROCESSED, function () {
|
|
616
648
|
// @ts-ignore
|
|
617
649
|
var cdl = _this.webex.internal.newMetrics.callDiagnosticLatencies;
|
|
@@ -657,7 +689,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
657
689
|
});
|
|
658
690
|
});
|
|
659
691
|
});
|
|
660
|
-
(0,
|
|
692
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "setupMediaConnectionListeners", function () {
|
|
661
693
|
_this.setupSdpListeners();
|
|
662
694
|
_this.mediaProperties.webrtcMediaConnection.on(_internalMediaCore.Event.ROAP_STARTED, function () {
|
|
663
695
|
_this.isRoapInProgress = true;
|
|
@@ -907,7 +939,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
907
939
|
* @returns {void}
|
|
908
940
|
* @memberof Meetings
|
|
909
941
|
*/
|
|
910
|
-
(0,
|
|
942
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "setupStatsAnalyzerEventHandlers", function () {
|
|
911
943
|
_this.statsAnalyzer.on(_statsAnalyzer.EVENTS.MEDIA_QUALITY, function (options) {
|
|
912
944
|
var _this$webex$meetings$;
|
|
913
945
|
// TODO: might have to send the same event to the developer
|
|
@@ -991,7 +1023,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
991
1023
|
* @param {String} callFrom - the function calling this function, optional.
|
|
992
1024
|
* @returns {Promise<void>}
|
|
993
1025
|
*/
|
|
994
|
-
(0,
|
|
1026
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "forceSendStatsReport", /*#__PURE__*/function () {
|
|
995
1027
|
var _ref4 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(_ref3) {
|
|
996
1028
|
var callFrom, LOG_HEADER, _this$mediaProperties, _this$mediaProperties2;
|
|
997
1029
|
return _regenerator.default.wrap(function _callee$(_context) {
|
|
@@ -1026,7 +1058,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
1026
1058
|
* @private
|
|
1027
1059
|
* @memberof Meeting
|
|
1028
1060
|
*/
|
|
1029
|
-
(0,
|
|
1061
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "mediaNegotiatedEvent", function () {
|
|
1030
1062
|
// @ts-ignore - config coming from registerPlugin
|
|
1031
1063
|
if (_this.config.experimental.enableMediaNegotiatedEvent) {
|
|
1032
1064
|
_loggerProxy.default.logger.info('Meeting:mediaNegotiatedEvent --> Media server negotiated');
|
|
@@ -1043,7 +1075,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
1043
1075
|
* @public
|
|
1044
1076
|
* @memberof Meeting
|
|
1045
1077
|
*/
|
|
1046
|
-
(0,
|
|
1078
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "processNextQueuedMediaUpdate", function () {
|
|
1047
1079
|
if (_this.canUpdateMedia() && _this.queuedMediaUpdates.length > 0) {
|
|
1048
1080
|
var _this$queuedMediaUpda = _this.queuedMediaUpdates.shift(),
|
|
1049
1081
|
pendingPromiseResolve = _this$queuedMediaUpda.pendingPromiseResolve,
|
|
@@ -1077,7 +1109,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
1077
1109
|
* @memberof Meeting
|
|
1078
1110
|
* @returns {undefined}
|
|
1079
1111
|
*/
|
|
1080
|
-
(0,
|
|
1112
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "handleShareAudioStreamEnded", /*#__PURE__*/(0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2() {
|
|
1081
1113
|
return _regenerator.default.wrap(function _callee2$(_context2) {
|
|
1082
1114
|
while (1) switch (_context2.prev = _context2.next) {
|
|
1083
1115
|
case 0:
|
|
@@ -1114,7 +1146,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
1114
1146
|
* @param {boolean} muted
|
|
1115
1147
|
* @returns {undefined}
|
|
1116
1148
|
*/
|
|
1117
|
-
(0,
|
|
1149
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "handleShareVideoStreamMuteStateChange", function (muted) {
|
|
1118
1150
|
_loggerProxy.default.logger.log("Meeting:index#handleShareVideoStreamMuteStateChange --> Share video stream mute state changed to muted ".concat(muted));
|
|
1119
1151
|
_metrics.default.sendBehavioralMetric(_constants2.default.MEETING_SHARE_VIDEO_MUTE_STATE_CHANGE, {
|
|
1120
1152
|
correlationId: _this.correlationId,
|
|
@@ -1127,7 +1159,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
1127
1159
|
* @memberof Meeting
|
|
1128
1160
|
* @returns {undefined}
|
|
1129
1161
|
*/
|
|
1130
|
-
(0,
|
|
1162
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "handleShareVideoStreamEnded", /*#__PURE__*/(0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3() {
|
|
1131
1163
|
return _regenerator.default.wrap(function _callee3$(_context3) {
|
|
1132
1164
|
while (1) switch (_context3.prev = _context3.next) {
|
|
1133
1165
|
case 0:
|
|
@@ -1165,7 +1197,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
1165
1197
|
* @returns {undefined}
|
|
1166
1198
|
* @memberof Meeting
|
|
1167
1199
|
*/
|
|
1168
|
-
(0,
|
|
1200
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "triggerStoppedSharing", function () {
|
|
1169
1201
|
if (!_this.mediaProperties.hasLocalShareStream()) {
|
|
1170
1202
|
_triggerProxy.default.trigger((0, _assertThisInitialized2.default)(_this), {
|
|
1171
1203
|
file: 'meeting/index',
|
|
@@ -1181,7 +1213,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
1181
1213
|
* @public
|
|
1182
1214
|
* @memberof Meeting
|
|
1183
1215
|
*/
|
|
1184
|
-
(0,
|
|
1216
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "clearMeetingData", function () {
|
|
1185
1217
|
_this.audio = null;
|
|
1186
1218
|
_this.video = null;
|
|
1187
1219
|
_this.screenShareFloorState = ScreenShareFloorStatus.RELEASED;
|
|
@@ -1190,8 +1222,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
1190
1222
|
}
|
|
1191
1223
|
_this.queuedMediaUpdates = [];
|
|
1192
1224
|
if (_this.transcription) {
|
|
1193
|
-
_this.
|
|
1194
|
-
_this.triggerStopReceivingTranscriptionEvent();
|
|
1225
|
+
_this.stopTranscription();
|
|
1195
1226
|
_this.transcription = undefined;
|
|
1196
1227
|
}
|
|
1197
1228
|
});
|
|
@@ -1201,7 +1232,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
1201
1232
|
* @private
|
|
1202
1233
|
* @memberof Meeting
|
|
1203
1234
|
*/
|
|
1204
|
-
(0,
|
|
1235
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "startKeepAlive", function () {
|
|
1205
1236
|
var _this$joinedWith, _this$joinedWith2;
|
|
1206
1237
|
if (_this.keepAliveTimerId) {
|
|
1207
1238
|
_loggerProxy.default.logger.warn('Meeting:index#startKeepAlive --> keepAlive not started: keepAliveTimerId already exists');
|
|
@@ -1237,7 +1268,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
1237
1268
|
* @private
|
|
1238
1269
|
* @memberof Meeting
|
|
1239
1270
|
*/
|
|
1240
|
-
(0,
|
|
1271
|
+
(0, _defineProperty3.default)((0, _assertThisInitialized2.default)(_this), "stopKeepAlive", function () {
|
|
1241
1272
|
if (!_this.keepAliveTimerId) {
|
|
1242
1273
|
return;
|
|
1243
1274
|
}
|
|
@@ -1796,7 +1827,18 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
1796
1827
|
* @private
|
|
1797
1828
|
* @memberof Meeting
|
|
1798
1829
|
*/
|
|
1799
|
-
_this.transcription =
|
|
1830
|
+
_this.transcription = {
|
|
1831
|
+
captions: [],
|
|
1832
|
+
highlights: [],
|
|
1833
|
+
isListening: false,
|
|
1834
|
+
commandText: '',
|
|
1835
|
+
languageOptions: {},
|
|
1836
|
+
showCaptionBox: false,
|
|
1837
|
+
transcribingRequestStatus: 'INACTIVE',
|
|
1838
|
+
isCaptioning: false,
|
|
1839
|
+
interimCaptions: {},
|
|
1840
|
+
speakerProxy: {}
|
|
1841
|
+
};
|
|
1800
1842
|
|
|
1801
1843
|
/**
|
|
1802
1844
|
* Password status. If it's PASSWORD_STATUS.REQUIRED then verifyPassword() needs to be called
|
|
@@ -2443,12 +2485,14 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
2443
2485
|
key: "setUpInterpretationListener",
|
|
2444
2486
|
value: function setUpInterpretationListener() {
|
|
2445
2487
|
var _this5 = this;
|
|
2488
|
+
// TODO: check if its getting used or not
|
|
2446
2489
|
this.simultaneousInterpretation.on(_constants.INTERPRETATION.EVENTS.SUPPORT_LANGUAGES_UPDATE, function () {
|
|
2447
2490
|
_triggerProxy.default.trigger(_this5, {
|
|
2448
2491
|
file: 'meeting/index',
|
|
2449
2492
|
function: 'setUpInterpretationListener'
|
|
2450
2493
|
}, _constants.EVENT_TRIGGERS.MEETING_INTERPRETATION_SUPPORT_LANGUAGES_UPDATE);
|
|
2451
2494
|
});
|
|
2495
|
+
// TODO: check if its getting used or not
|
|
2452
2496
|
this.simultaneousInterpretation.on(_constants.INTERPRETATION.EVENTS.HANDOFF_REQUESTS_ARRIVED, function (payload) {
|
|
2453
2497
|
_triggerProxy.default.trigger(_this5, {
|
|
2454
2498
|
file: 'meeting/index',
|
|
@@ -2457,6 +2501,31 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
2457
2501
|
});
|
|
2458
2502
|
}
|
|
2459
2503
|
|
|
2504
|
+
/**
|
|
2505
|
+
* Set up the listeners for captions
|
|
2506
|
+
* @returns {undefined}
|
|
2507
|
+
* @private
|
|
2508
|
+
* @memberof Meeting
|
|
2509
|
+
*/
|
|
2510
|
+
}, {
|
|
2511
|
+
key: "setUpVoiceaListeners",
|
|
2512
|
+
value: function setUpVoiceaListeners() {
|
|
2513
|
+
// @ts-ignore
|
|
2514
|
+
this.webex.internal.voicea.on(_internalPluginVoicea.EVENT_TRIGGERS.VOICEA_ANNOUNCEMENT, this.voiceaListenerCallbacks[_internalPluginVoicea.EVENT_TRIGGERS.VOICEA_ANNOUNCEMENT]);
|
|
2515
|
+
|
|
2516
|
+
// @ts-ignore
|
|
2517
|
+
this.webex.internal.voicea.on(_internalPluginVoicea.EVENT_TRIGGERS.CAPTIONS_TURNED_ON, this.voiceaListenerCallbacks[_internalPluginVoicea.EVENT_TRIGGERS.CAPTIONS_TURNED_ON]);
|
|
2518
|
+
|
|
2519
|
+
// @ts-ignore
|
|
2520
|
+
this.webex.internal.voicea.on(_internalPluginVoicea.EVENT_TRIGGERS.EVA_COMMAND, this.voiceaListenerCallbacks[_internalPluginVoicea.EVENT_TRIGGERS.EVA_COMMAND]);
|
|
2521
|
+
|
|
2522
|
+
// @ts-ignore
|
|
2523
|
+
this.webex.internal.voicea.on(_internalPluginVoicea.EVENT_TRIGGERS.NEW_CAPTION, this.voiceaListenerCallbacks[_internalPluginVoicea.EVENT_TRIGGERS.NEW_CAPTION]);
|
|
2524
|
+
|
|
2525
|
+
// @ts-ignore
|
|
2526
|
+
this.webex.internal.voicea.on(_internalPluginVoicea.EVENT_TRIGGERS.HIGHLIGHT_CREATED, this.voiceaListenerCallbacks[_internalPluginVoicea.EVENT_TRIGGERS.HIGHLIGHT_CREATED]);
|
|
2527
|
+
}
|
|
2528
|
+
|
|
2460
2529
|
/**
|
|
2461
2530
|
* Set up the locus info listener for meetings disconnected due to inactivity
|
|
2462
2531
|
* @returns {undefined}
|
|
@@ -2745,17 +2814,20 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
2745
2814
|
this.locusInfo.on(_constants.LOCUSINFO.EVENTS.CONTROLS_MEETING_TRANSCRIBE_UPDATED, function (_ref11) {
|
|
2746
2815
|
var caption = _ref11.caption,
|
|
2747
2816
|
transcribing = _ref11.transcribing;
|
|
2748
|
-
//
|
|
2749
|
-
if (
|
|
2750
|
-
|
|
2751
|
-
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
|
|
2817
|
+
// user need to be joined to start the llm and receive transcription
|
|
2818
|
+
if (_this13.isJoined()) {
|
|
2819
|
+
// @ts-ignore - config coming from registerPlugin
|
|
2820
|
+
if (transcribing && !_this13.transcription) {
|
|
2821
|
+
_this13.startTranscription();
|
|
2822
|
+
} else if (!transcribing && _this13.transcription) {
|
|
2823
|
+
_triggerProxy.default.trigger(_this13, {
|
|
2824
|
+
file: 'meeting/index',
|
|
2825
|
+
function: 'setupLocusControlsListener'
|
|
2826
|
+
}, _constants.EVENT_TRIGGERS.MEETING_STOPPED_RECEIVING_TRANSCRIPTION, {
|
|
2827
|
+
caption: caption,
|
|
2828
|
+
transcribing: transcribing
|
|
2829
|
+
});
|
|
2830
|
+
}
|
|
2759
2831
|
}
|
|
2760
2832
|
});
|
|
2761
2833
|
this.locusInfo.on(_constants.LOCUSINFO.EVENTS.CONTROLS_MEETING_BREAKOUT_UPDATED, function (_ref12) {
|
|
@@ -3309,20 +3381,6 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
3309
3381
|
while (1) switch (_context8.prev = _context8.next) {
|
|
3310
3382
|
case 0:
|
|
3311
3383
|
_this19.stopKeepAlive();
|
|
3312
|
-
// @ts-ignore
|
|
3313
|
-
if (!(!_this19.transcription && (_this19.config.receiveTranscription || _this19.receiveTranscription))) {
|
|
3314
|
-
_context8.next = 6;
|
|
3315
|
-
break;
|
|
3316
|
-
}
|
|
3317
|
-
if (!_this19.isTranscriptionSupported()) {
|
|
3318
|
-
_context8.next = 6;
|
|
3319
|
-
break;
|
|
3320
|
-
}
|
|
3321
|
-
_context8.next = 5;
|
|
3322
|
-
return _this19.startTranscription();
|
|
3323
|
-
case 5:
|
|
3324
|
-
_loggerProxy.default.logger.info('Meeting:index#setUpLocusInfoSelfListener --> enabled to receive transcription for guest user!');
|
|
3325
|
-
case 6:
|
|
3326
3384
|
if (payload) {
|
|
3327
3385
|
_triggerProxy.default.trigger(_this19, {
|
|
3328
3386
|
file: 'meeting/index',
|
|
@@ -3339,7 +3397,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
3339
3397
|
}
|
|
3340
3398
|
});
|
|
3341
3399
|
}
|
|
3342
|
-
case
|
|
3400
|
+
case 2:
|
|
3343
3401
|
case "end":
|
|
3344
3402
|
return _context8.stop();
|
|
3345
3403
|
}
|
|
@@ -4820,7 +4878,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
4820
4878
|
if ((_this$locusInfo$contr = this.locusInfo.controls.transcribe) !== null && _this$locusInfo$contr !== void 0 && _this$locusInfo$contr.transcribing) {
|
|
4821
4879
|
return true;
|
|
4822
4880
|
}
|
|
4823
|
-
_loggerProxy.default.logger.error('Meeting:index#isTranscriptionSupported --> Webex Assistant is not supported');
|
|
4881
|
+
_loggerProxy.default.logger.error('Meeting:index#isTranscriptionSupported --> Webex Assistant is not enabled/supported');
|
|
4824
4882
|
return false;
|
|
4825
4883
|
}
|
|
4826
4884
|
|
|
@@ -4840,109 +4898,164 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
4840
4898
|
}
|
|
4841
4899
|
|
|
4842
4900
|
/**
|
|
4843
|
-
*
|
|
4844
|
-
* @
|
|
4845
|
-
* @returns {
|
|
4901
|
+
* sets Caption language for the meeting
|
|
4902
|
+
* @param {string} language
|
|
4903
|
+
* @returns {Promise}
|
|
4846
4904
|
*/
|
|
4847
4905
|
}, {
|
|
4848
|
-
key: "
|
|
4849
|
-
value: function
|
|
4906
|
+
key: "setCaptionLanguage",
|
|
4907
|
+
value: function setCaptionLanguage(language) {
|
|
4850
4908
|
var _this30 = this;
|
|
4851
|
-
|
|
4852
|
-
|
|
4853
|
-
|
|
4909
|
+
return new _promise.default(function (resolve, reject) {
|
|
4910
|
+
if (!_this30.isTranscriptionSupported()) {
|
|
4911
|
+
_loggerProxy.default.logger.error('Meeting:index#setCaptionLanguage --> Webex Assistant is not enabled/supported');
|
|
4912
|
+
reject(new Error('Webex Assistant is not enabled/supported'));
|
|
4913
|
+
}
|
|
4914
|
+
try {
|
|
4915
|
+
var voiceaListenerCaptionUpdate = function voiceaListenerCaptionUpdate(payload) {
|
|
4916
|
+
// @ts-ignore
|
|
4917
|
+
_this30.webex.internal.voicea.off(_internalPluginVoicea.EVENT_TRIGGERS.CAPTION_LANGUAGE_UPDATE, voiceaListenerCaptionUpdate);
|
|
4918
|
+
var statusCode = payload.statusCode;
|
|
4919
|
+
if (statusCode === 200) {
|
|
4920
|
+
var _this30$transcription;
|
|
4921
|
+
var currentCaptionLanguage = (_this30$transcription = _this30.transcription.languageOptions.requestedCaptionLanguage) !== null && _this30$transcription !== void 0 ? _this30$transcription : _constants.LANGUAGE_ENGLISH;
|
|
4922
|
+
_this30.transcription.languageOptions = _objectSpread(_objectSpread({}, _this30.transcription.languageOptions), {}, {
|
|
4923
|
+
currentCaptionLanguage: currentCaptionLanguage
|
|
4924
|
+
});
|
|
4925
|
+
resolve(currentCaptionLanguage);
|
|
4926
|
+
} else {
|
|
4927
|
+
reject(payload);
|
|
4928
|
+
}
|
|
4929
|
+
};
|
|
4930
|
+
// @ts-ignore
|
|
4931
|
+
_this30.webex.internal.voicea.on(_internalPluginVoicea.EVENT_TRIGGERS.CAPTION_LANGUAGE_UPDATE, voiceaListenerCaptionUpdate);
|
|
4932
|
+
// @ts-ignore
|
|
4933
|
+
_this30.webex.internal.voicea.requestLanguage(language);
|
|
4934
|
+
} catch (error) {
|
|
4935
|
+
_loggerProxy.default.logger.error("Meeting:index#setCaptionLanguage --> ".concat(error));
|
|
4936
|
+
reject(error);
|
|
4937
|
+
}
|
|
4854
4938
|
});
|
|
4855
|
-
|
|
4856
|
-
|
|
4857
|
-
|
|
4858
|
-
|
|
4859
|
-
|
|
4860
|
-
|
|
4861
|
-
|
|
4862
|
-
|
|
4939
|
+
}
|
|
4940
|
+
|
|
4941
|
+
/**
|
|
4942
|
+
* sets Spoken language for the meeting
|
|
4943
|
+
* @param {string} language
|
|
4944
|
+
* @returns {Promise}
|
|
4945
|
+
*/
|
|
4946
|
+
}, {
|
|
4947
|
+
key: "setSpokenLanguage",
|
|
4948
|
+
value: function setSpokenLanguage(language) {
|
|
4949
|
+
var _this31 = this;
|
|
4950
|
+
return new _promise.default(function (resolve, reject) {
|
|
4951
|
+
if (!_this31.isTranscriptionSupported()) {
|
|
4952
|
+
_loggerProxy.default.logger.error('Meeting:index#setCaptionLanguage --> Webex Assistant is not enabled/supported');
|
|
4953
|
+
reject(new Error('Webex Assistant is not enabled/supported'));
|
|
4954
|
+
}
|
|
4955
|
+
try {
|
|
4956
|
+
var voiceaListenerLanguageUpdate = function voiceaListenerLanguageUpdate(payload) {
|
|
4957
|
+
// @ts-ignore
|
|
4958
|
+
_this31.webex.internal.voicea.off(_internalPluginVoicea.EVENT_TRIGGERS.SPOKEN_LANGUAGE_UPDATE, voiceaListenerLanguageUpdate);
|
|
4959
|
+
var languageCode = payload.languageCode;
|
|
4960
|
+
if (languageCode) {
|
|
4961
|
+
_this31.transcription.languageOptions = _objectSpread(_objectSpread({}, _this31.transcription.languageOptions), {}, {
|
|
4962
|
+
currentSpokenLanguage: languageCode
|
|
4963
|
+
});
|
|
4964
|
+
resolve(languageCode);
|
|
4965
|
+
} else {
|
|
4966
|
+
reject(payload);
|
|
4967
|
+
}
|
|
4968
|
+
};
|
|
4969
|
+
// @ts-ignore
|
|
4970
|
+
_this31.webex.internal.voicea.on(_internalPluginVoicea.EVENT_TRIGGERS.SPOKEN_LANGUAGE_UPDATE, voiceaListenerLanguageUpdate);
|
|
4971
|
+
// @ts-ignore
|
|
4972
|
+
_this31.webex.internal.voicea.setSpokenLanguage(language);
|
|
4973
|
+
} catch (error) {
|
|
4974
|
+
_loggerProxy.default.logger.error("Meeting:index#setSpokenLanguage --> ".concat(error));
|
|
4975
|
+
reject(error);
|
|
4976
|
+
}
|
|
4863
4977
|
});
|
|
4864
4978
|
}
|
|
4865
4979
|
|
|
4866
4980
|
/**
|
|
4867
|
-
*
|
|
4868
|
-
* @
|
|
4981
|
+
* This method will enable the transcription for the current meeting if the meeting has enabled/supports Webex Assistant
|
|
4982
|
+
* @param {Object} options object with spokenlanguage setting
|
|
4983
|
+
* @public
|
|
4869
4984
|
* @returns {Promise<void>} a promise to open the WebSocket connection
|
|
4870
4985
|
*/
|
|
4871
4986
|
}, {
|
|
4872
4987
|
key: "startTranscription",
|
|
4873
4988
|
value: (function () {
|
|
4874
|
-
var _startTranscription = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee14() {
|
|
4875
|
-
var _this31 = this;
|
|
4876
|
-
var datachannelUrl, _yield$this$request, webSocketUrl;
|
|
4989
|
+
var _startTranscription = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee14(options) {
|
|
4877
4990
|
return _regenerator.default.wrap(function _callee14$(_context14) {
|
|
4878
4991
|
while (1) switch (_context14.prev = _context14.next) {
|
|
4879
4992
|
case 0:
|
|
4880
|
-
|
|
4881
|
-
|
|
4882
|
-
|
|
4883
|
-
_context14.next = 5;
|
|
4884
|
-
return this.request({
|
|
4885
|
-
method: _constants.HTTP_VERBS.POST,
|
|
4886
|
-
uri: datachannelUrl,
|
|
4887
|
-
body: {
|
|
4888
|
-
deviceUrl: this.deviceUrl
|
|
4889
|
-
}
|
|
4890
|
-
});
|
|
4891
|
-
case 5:
|
|
4892
|
-
_yield$this$request = _context14.sent;
|
|
4893
|
-
webSocketUrl = _yield$this$request.body.webSocketUrl;
|
|
4894
|
-
_loggerProxy.default.logger.info("Meeting:index#startTranscription -->\n Generated web socket url succesfully.");
|
|
4895
|
-
this.transcription = new _transcription.default(webSocketUrl,
|
|
4896
|
-
// @ts-ignore - fix type
|
|
4897
|
-
this.webex.sessionId, this.members);
|
|
4898
|
-
_loggerProxy.default.logger.info("Meeting:index#startTranscription -->\n opened LLM web socket connection successfully.");
|
|
4899
|
-
if (!this.inMeetingActions.isClosedCaptionActive) {
|
|
4900
|
-
_loggerProxy.default.logger.error("Meeting:index#receiveTranscription --> Transcription cannot be started until a licensed user enables it");
|
|
4993
|
+
if (!this.isJoined()) {
|
|
4994
|
+
_context14.next = 14;
|
|
4995
|
+
break;
|
|
4901
4996
|
}
|
|
4902
|
-
|
|
4903
|
-
|
|
4904
|
-
this.
|
|
4905
|
-
|
|
4906
|
-
|
|
4907
|
-
|
|
4908
|
-
|
|
4909
|
-
|
|
4910
|
-
this.
|
|
4911
|
-
|
|
4912
|
-
|
|
4913
|
-
_context14.next = 20;
|
|
4997
|
+
_loggerProxy.default.logger.info('Meeting:index#startTranscription --> Attempting to enable transcription!');
|
|
4998
|
+
_context14.prev = 2;
|
|
4999
|
+
if (!this.areVoiceaEventsSetup) {
|
|
5000
|
+
this.setUpVoiceaListeners();
|
|
5001
|
+
this.areVoiceaEventsSetup = true;
|
|
5002
|
+
}
|
|
5003
|
+
// @ts-ignore
|
|
5004
|
+
_context14.next = 6;
|
|
5005
|
+
return this.webex.internal.voicea.toggleTranscribing(true, options === null || options === void 0 ? void 0 : options.spokenLanguage);
|
|
5006
|
+
case 6:
|
|
5007
|
+
_context14.next = 12;
|
|
4914
5008
|
break;
|
|
4915
|
-
case
|
|
4916
|
-
_context14.prev =
|
|
4917
|
-
_context14.t0 = _context14["catch"](
|
|
5009
|
+
case 8:
|
|
5010
|
+
_context14.prev = 8;
|
|
5011
|
+
_context14.t0 = _context14["catch"](2);
|
|
4918
5012
|
_loggerProxy.default.logger.error("Meeting:index#startTranscription --> ".concat(_context14.t0));
|
|
4919
5013
|
_metrics.default.sendBehavioralMetric(_constants2.default.RECEIVE_TRANSCRIPTION_FAILURE, {
|
|
4920
5014
|
correlation_id: this.correlationId,
|
|
4921
5015
|
reason: _context14.t0.message,
|
|
4922
5016
|
stack: _context14.t0.stack
|
|
4923
5017
|
});
|
|
4924
|
-
case
|
|
5018
|
+
case 12:
|
|
5019
|
+
_context14.next = 15;
|
|
5020
|
+
break;
|
|
5021
|
+
case 14:
|
|
5022
|
+
_loggerProxy.default.logger.error("Meeting:index#startTranscription --> meeting joined : ".concat(this.isJoined()));
|
|
5023
|
+
case 15:
|
|
4925
5024
|
case "end":
|
|
4926
5025
|
return _context14.stop();
|
|
4927
5026
|
}
|
|
4928
|
-
}, _callee14, this, [[
|
|
5027
|
+
}, _callee14, this, [[2, 8]]);
|
|
4929
5028
|
}));
|
|
4930
|
-
function startTranscription() {
|
|
5029
|
+
function startTranscription(_x12) {
|
|
4931
5030
|
return _startTranscription.apply(this, arguments);
|
|
4932
5031
|
}
|
|
4933
5032
|
return startTranscription;
|
|
4934
5033
|
}())
|
|
4935
5034
|
}, {
|
|
4936
|
-
key: "
|
|
5035
|
+
key: "stopTranscription",
|
|
4937
5036
|
value:
|
|
4938
5037
|
/**
|
|
4939
|
-
*
|
|
4940
|
-
* the web socket connection properly
|
|
5038
|
+
* This method stops receiving transcription for the current meeting
|
|
4941
5039
|
* @returns {void}
|
|
4942
5040
|
*/
|
|
4943
|
-
function
|
|
5041
|
+
function stopTranscription() {
|
|
4944
5042
|
if (this.transcription) {
|
|
4945
|
-
|
|
5043
|
+
// @ts-ignore
|
|
5044
|
+
this.webex.internal.voicea.off(_internalPluginVoicea.EVENT_TRIGGERS.VOICEA_ANNOUNCEMENT, this.voiceaListenerCallbacks[_internalPluginVoicea.EVENT_TRIGGERS.VOICEA_ANNOUNCEMENT]);
|
|
5045
|
+
|
|
5046
|
+
// @ts-ignore
|
|
5047
|
+
this.webex.internal.voicea.off(_internalPluginVoicea.EVENT_TRIGGERS.CAPTIONS_TURNED_ON, this.voiceaListenerCallbacks[_internalPluginVoicea.EVENT_TRIGGERS.CAPTIONS_TURNED_ON]);
|
|
5048
|
+
|
|
5049
|
+
// @ts-ignore
|
|
5050
|
+
this.webex.internal.voicea.off(_internalPluginVoicea.EVENT_TRIGGERS.EVA_COMMAND, this.voiceaListenerCallbacks[_internalPluginVoicea.EVENT_TRIGGERS.EVA_COMMAND]);
|
|
5051
|
+
|
|
5052
|
+
// @ts-ignore
|
|
5053
|
+
this.webex.internal.voicea.off(_internalPluginVoicea.EVENT_TRIGGERS.NEW_CAPTION, this.voiceaListenerCallbacks[_internalPluginVoicea.EVENT_TRIGGERS.NEW_CAPTION]);
|
|
5054
|
+
|
|
5055
|
+
// @ts-ignore
|
|
5056
|
+
this.webex.internal.voicea.off(_internalPluginVoicea.EVENT_TRIGGERS.HIGHLIGHT_CREATED, this.voiceaListenerCallbacks[_internalPluginVoicea.EVENT_TRIGGERS.HIGHLIGHT_CREATED]);
|
|
5057
|
+
this.areVoiceaEventsSetup = false;
|
|
5058
|
+
this.triggerStopReceivingTranscriptionEvent();
|
|
4946
5059
|
}
|
|
4947
5060
|
}
|
|
4948
5061
|
|
|
@@ -4955,7 +5068,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
4955
5068
|
}, {
|
|
4956
5069
|
key: "triggerStopReceivingTranscriptionEvent",
|
|
4957
5070
|
value: function triggerStopReceivingTranscriptionEvent() {
|
|
4958
|
-
_loggerProxy.default.logger.info("\n Meeting:index#stopReceivingTranscription -->\n closed
|
|
5071
|
+
_loggerProxy.default.logger.info("\n Meeting:index#stopReceivingTranscription -->\n closed voicea event listeners successfully.");
|
|
4959
5072
|
_triggerProxy.default.trigger(this, {
|
|
4960
5073
|
file: 'meeting',
|
|
4961
5074
|
function: 'triggerStopReceivingTranscriptionEvent'
|
|
@@ -5131,7 +5244,6 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
5131
5244
|
});
|
|
5132
5245
|
joinSuccess(join);
|
|
5133
5246
|
_this32.deferJoin = undefined;
|
|
5134
|
-
_this32.receiveTranscription = !!options.receiveTranscription;
|
|
5135
5247
|
return join;
|
|
5136
5248
|
}).catch(function (error) {
|
|
5137
5249
|
var _this32$meetingInfo, _error$error;
|
|
@@ -5180,26 +5292,6 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
5180
5292
|
});
|
|
5181
5293
|
}
|
|
5182
5294
|
return join;
|
|
5183
|
-
}).then(function (join) {
|
|
5184
|
-
if (isBrowser) {
|
|
5185
|
-
// @ts-ignore - config coming from registerPlugin
|
|
5186
|
-
if (_this32.config.receiveTranscription || options.receiveTranscription) {
|
|
5187
|
-
if (_this32.isTranscriptionSupported()) {
|
|
5188
|
-
_loggerProxy.default.logger.info('Meeting:index#join --> Attempting to enabled to receive transcription!');
|
|
5189
|
-
_this32.startTranscription().catch(function (error) {
|
|
5190
|
-
_loggerProxy.default.logger.error('Meeting:index#join --> Receive Transcription Failed', error);
|
|
5191
|
-
_metrics.default.sendBehavioralMetric(_constants2.default.RECEIVE_TRANSCRIPTION_AFTER_JOIN_FAILURE, {
|
|
5192
|
-
correlation_id: _this32.correlationId,
|
|
5193
|
-
reason: error === null || error === void 0 ? void 0 : error.message,
|
|
5194
|
-
stack: error.stack
|
|
5195
|
-
});
|
|
5196
|
-
});
|
|
5197
|
-
}
|
|
5198
|
-
}
|
|
5199
|
-
} else {
|
|
5200
|
-
_loggerProxy.default.logger.error('Meeting:index#join --> Receving transcription is not supported on this platform');
|
|
5201
|
-
}
|
|
5202
|
-
return join;
|
|
5203
5295
|
}));
|
|
5204
5296
|
case 52:
|
|
5205
5297
|
case "end":
|
|
@@ -5634,7 +5726,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
5634
5726
|
}
|
|
5635
5727
|
}, _callee18, this);
|
|
5636
5728
|
}));
|
|
5637
|
-
function createMediaConnection(
|
|
5729
|
+
function createMediaConnection(_x13, _x14) {
|
|
5638
5730
|
return _createMediaConnection.apply(this, arguments);
|
|
5639
5731
|
}
|
|
5640
5732
|
return createMediaConnection;
|
|
@@ -5708,7 +5800,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
5708
5800
|
}
|
|
5709
5801
|
}, _callee19, this, [[5, 10]]);
|
|
5710
5802
|
}));
|
|
5711
|
-
function setUpLocalStreamReferences(
|
|
5803
|
+
function setUpLocalStreamReferences(_x15) {
|
|
5712
5804
|
return _setUpLocalStreamReferences.apply(this, arguments);
|
|
5713
5805
|
}
|
|
5714
5806
|
return setUpLocalStreamReferences;
|
|
@@ -5882,7 +5974,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
5882
5974
|
}
|
|
5883
5975
|
}, _callee22, this, [[1, 6]]);
|
|
5884
5976
|
}));
|
|
5885
|
-
function retryEstablishMediaConnectionWithForcedTurnDiscovery(
|
|
5977
|
+
function retryEstablishMediaConnectionWithForcedTurnDiscovery(_x16, _x17) {
|
|
5886
5978
|
return _retryEstablishMediaConnectionWithForcedTurnDiscovery.apply(this, arguments);
|
|
5887
5979
|
}
|
|
5888
5980
|
return retryEstablishMediaConnectionWithForcedTurnDiscovery;
|
|
@@ -5934,7 +6026,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
5934
6026
|
}
|
|
5935
6027
|
}, _callee23, this);
|
|
5936
6028
|
}));
|
|
5937
|
-
function retryWithForcedTurnDiscovery(
|
|
6029
|
+
function retryWithForcedTurnDiscovery(_x18, _x19) {
|
|
5938
6030
|
return _retryWithForcedTurnDiscovery.apply(this, arguments);
|
|
5939
6031
|
}
|
|
5940
6032
|
return retryWithForcedTurnDiscovery;
|
|
@@ -5979,7 +6071,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
5979
6071
|
}
|
|
5980
6072
|
}, _callee24, this);
|
|
5981
6073
|
}));
|
|
5982
|
-
function handleWaitForMediaConnectionConnectedError(
|
|
6074
|
+
function handleWaitForMediaConnectionConnectedError(_x20, _x21, _x22) {
|
|
5983
6075
|
return _handleWaitForMediaConnectionConnectedError.apply(this, arguments);
|
|
5984
6076
|
}
|
|
5985
6077
|
return handleWaitForMediaConnectionConnectedError;
|
|
@@ -6078,7 +6170,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
6078
6170
|
}
|
|
6079
6171
|
}, _callee25, this, [[3, 31], [35, 40]]);
|
|
6080
6172
|
}));
|
|
6081
|
-
function establishMediaConnection(
|
|
6173
|
+
function establishMediaConnection(_x23, _x24, _x25) {
|
|
6082
6174
|
return _establishMediaConnection.apply(this, arguments);
|
|
6083
6175
|
}
|
|
6084
6176
|
return establishMediaConnection;
|
|
@@ -6534,7 +6626,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
6534
6626
|
}
|
|
6535
6627
|
}, _callee29, this);
|
|
6536
6628
|
}));
|
|
6537
|
-
function updateMedia(
|
|
6629
|
+
function updateMedia(_x26) {
|
|
6538
6630
|
return _updateMedia.apply(this, arguments);
|
|
6539
6631
|
}
|
|
6540
6632
|
return updateMedia;
|
|
@@ -7464,7 +7556,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
7464
7556
|
}
|
|
7465
7557
|
}, _callee30, this);
|
|
7466
7558
|
}));
|
|
7467
|
-
function enableMusicMode(
|
|
7559
|
+
function enableMusicMode(_x27) {
|
|
7468
7560
|
return _enableMusicMode.apply(this, arguments);
|
|
7469
7561
|
}
|
|
7470
7562
|
return enableMusicMode;
|
|
@@ -7562,7 +7654,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
7562
7654
|
}
|
|
7563
7655
|
}, _callee31, this);
|
|
7564
7656
|
}));
|
|
7565
|
-
function publishStream(
|
|
7657
|
+
function publishStream(_x28, _x29) {
|
|
7566
7658
|
return _publishStream.apply(this, arguments);
|
|
7567
7659
|
}
|
|
7568
7660
|
return publishStream;
|
|
@@ -7607,7 +7699,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
7607
7699
|
}
|
|
7608
7700
|
}, _callee32, this);
|
|
7609
7701
|
}));
|
|
7610
|
-
function unpublishStream(
|
|
7702
|
+
function unpublishStream(_x30, _x31) {
|
|
7611
7703
|
return _unpublishStream.apply(this, arguments);
|
|
7612
7704
|
}
|
|
7613
7705
|
return unpublishStream;
|
|
@@ -7687,7 +7779,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
7687
7779
|
}
|
|
7688
7780
|
}, _callee33, this);
|
|
7689
7781
|
}));
|
|
7690
|
-
function publishStreams(
|
|
7782
|
+
function publishStreams(_x32) {
|
|
7691
7783
|
return _publishStreams.apply(this, arguments);
|
|
7692
7784
|
}
|
|
7693
7785
|
return publishStreams;
|
|
@@ -7755,7 +7847,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
7755
7847
|
}
|
|
7756
7848
|
}, _callee34, this);
|
|
7757
7849
|
}));
|
|
7758
|
-
function unpublishStreams(
|
|
7850
|
+
function unpublishStreams(_x33) {
|
|
7759
7851
|
return _unpublishStreams.apply(this, arguments);
|
|
7760
7852
|
}
|
|
7761
7853
|
return unpublishStreams;
|