@webex/plugin-meetings 3.0.0-beta.238 → 3.0.0-beta.239
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/interpretation/index.js +1 -1
- package/dist/interpretation/siLanguage.js +1 -1
- package/dist/meeting/index.js +6 -1
- package/dist/meeting/index.js.map +1 -1
- package/dist/multistream/remoteMediaManager.js +46 -9
- package/dist/multistream/remoteMediaManager.js.map +1 -1
- package/dist/types/multistream/remoteMediaManager.d.ts +9 -1
- package/package.json +19 -19
- package/src/meeting/index.ts +8 -5
- package/src/multistream/remoteMediaManager.ts +41 -4
- package/test/unit/spec/multistream/remoteMediaManager.ts +10 -2
package/dist/breakouts/index.js
CHANGED
|
@@ -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.
|
|
1044
|
+
version: "3.0.0-beta.239"
|
|
1045
1045
|
});
|
|
1046
1046
|
var _default = Breakouts;
|
|
1047
1047
|
exports.default = _default;
|
package/dist/meeting/index.js
CHANGED
|
@@ -5339,6 +5339,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
5339
5339
|
}).then(function () {
|
|
5340
5340
|
return _this39.mediaProperties.getCurrentConnectionType();
|
|
5341
5341
|
}).then(function (connectionType) {
|
|
5342
|
+
var _this39$remoteMediaMa;
|
|
5342
5343
|
_metrics.default.sendBehavioralMetric(_constants2.default.ADD_MEDIA_SUCCESS, {
|
|
5343
5344
|
correlation_id: _this39.correlationId,
|
|
5344
5345
|
locus_id: _this39.locusUrl.split('/').pop(),
|
|
@@ -5352,8 +5353,13 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
5352
5353
|
meetingId: _this39.id
|
|
5353
5354
|
}
|
|
5354
5355
|
});
|
|
5356
|
+
_loggerProxy.default.logger.info("".concat(LOG_HEADER, " successfully established media connection, type=").concat(connectionType));
|
|
5357
|
+
|
|
5358
|
+
// We can log ReceiveSlot SSRCs only after the SDP exchange, so doing it here:
|
|
5359
|
+
(_this39$remoteMediaMa = _this39.remoteMediaManager) === null || _this39$remoteMediaMa === void 0 ? void 0 : _this39$remoteMediaMa.logAllReceiveSlots();
|
|
5355
5360
|
}).catch(function (error) {
|
|
5356
5361
|
var _this39$mediaProperti, _this39$mediaProperti2, _this39$mediaProperti3, _this39$mediaProperti4, _this39$mediaProperti5, _this39$mediaProperti6, _this39$mediaProperti7, _this39$mediaProperti8, _this39$mediaProperti9, _this39$mediaProperti10, _this39$mediaProperti11, _this39$mediaProperti12, _this39$mediaProperti13, _this39$mediaProperti14, _this39$mediaProperti15, _this39$mediaProperti16, _this39$mediaProperti17, _this39$mediaProperti18, _this39$mediaProperti19, _this39$mediaProperti20, _this39$mediaProperti21;
|
|
5362
|
+
_loggerProxy.default.logger.error("".concat(LOG_HEADER, " failed to establish media connection: "), error);
|
|
5357
5363
|
_metrics.default.sendBehavioralMetric(_constants2.default.ADD_MEDIA_FAILURE, {
|
|
5358
5364
|
correlation_id: _this39.correlationId,
|
|
5359
5365
|
locus_id: _this39.locusUrl.split('/').pop(),
|
|
@@ -5376,7 +5382,6 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
5376
5382
|
_this39.closePeerConnections();
|
|
5377
5383
|
_this39.unsetPeerConnections();
|
|
5378
5384
|
}
|
|
5379
|
-
_loggerProxy.default.logger.error("".concat(LOG_HEADER, " Error adding media failed to initiate PC and send request, "), error);
|
|
5380
5385
|
|
|
5381
5386
|
// Upload logs on error while adding media
|
|
5382
5387
|
_triggerProxy.default.trigger(_this39, {
|