@webex/plugin-meetings 3.8.1-next.43 → 3.8.1-next.44
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 +1 -15
- package/dist/meeting/index.js.map +1 -1
- package/dist/meeting/util.js +57 -2
- package/dist/meeting/util.js.map +1 -1
- package/dist/webinar/index.js +1 -1
- package/package.json +1 -1
- package/src/meeting/index.ts +0 -9
- package/src/meeting/util.ts +60 -2
- package/test/unit/spec/meeting/index.js +16 -12
- package/test/unit/spec/meeting/utils.js +101 -1
package/dist/breakouts/index.js
CHANGED
@@ -1110,7 +1110,7 @@ var Breakouts = _webexCore.WebexPlugin.extend({
|
|
1110
1110
|
this.trigger(_constants.BREAKOUTS.EVENTS.ASK_RETURN_TO_MAIN);
|
1111
1111
|
}
|
1112
1112
|
},
|
1113
|
-
version: "3.8.1-next.
|
1113
|
+
version: "3.8.1-next.44"
|
1114
1114
|
});
|
1115
1115
|
var _default = exports.default = Breakouts;
|
1116
1116
|
//# sourceMappingURL=index.js.map
|
@@ -373,7 +373,7 @@ var SimultaneousInterpretation = _webexCore.WebexPlugin.extend({
|
|
373
373
|
throw error;
|
374
374
|
});
|
375
375
|
},
|
376
|
-
version: "3.8.1-next.
|
376
|
+
version: "3.8.1-next.44"
|
377
377
|
});
|
378
378
|
var _default = exports.default = SimultaneousInterpretation;
|
379
379
|
//# sourceMappingURL=index.js.map
|
@@ -18,7 +18,7 @@ var SILanguage = _webexCore.WebexPlugin.extend({
|
|
18
18
|
languageCode: 'number',
|
19
19
|
languageName: 'string'
|
20
20
|
},
|
21
|
-
version: "3.8.1-next.
|
21
|
+
version: "3.8.1-next.44"
|
22
22
|
});
|
23
23
|
var _default = exports.default = SILanguage;
|
24
24
|
//# sourceMappingURL=siLanguage.js.map
|
package/dist/meeting/index.js
CHANGED
@@ -6354,24 +6354,10 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
6354
6354
|
_this36.deferJoin = undefined;
|
6355
6355
|
return join;
|
6356
6356
|
}).catch(function (error) {
|
6357
|
-
var
|
6357
|
+
var _error$error;
|
6358
6358
|
_this36.meetingFiniteStateMachine.fail(error);
|
6359
6359
|
_loggerProxy.default.logger.error('Meeting:index#join --> Failed', error);
|
6360
6360
|
|
6361
|
-
// @ts-ignore
|
6362
|
-
_this36.webex.internal.newMetrics.submitClientEvent({
|
6363
|
-
name: 'client.locus.join.response',
|
6364
|
-
payload: {
|
6365
|
-
identifiers: {
|
6366
|
-
meetingLookupUrl: (_this36$meetingInfo = _this36.meetingInfo) === null || _this36$meetingInfo === void 0 ? void 0 : _this36$meetingInfo.meetingLookupUrl
|
6367
|
-
}
|
6368
|
-
},
|
6369
|
-
options: {
|
6370
|
-
meetingId: _this36.id,
|
6371
|
-
rawError: error
|
6372
|
-
}
|
6373
|
-
});
|
6374
|
-
|
6375
6361
|
// TODO: change this to error codes and pre defined dictionary
|
6376
6362
|
_metrics.default.sendBehavioralMetric(_constants2.default.JOIN_FAILURE, {
|
6377
6363
|
correlation_id: _this36.correlationId,
|