@webex/plugin-meetings 3.12.0-next.23 → 3.12.0-next.25
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/aiEnableRequest/index.js +1 -1
- package/dist/breakouts/breakout.js +1 -1
- package/dist/breakouts/index.js +1 -1
- package/dist/constants.js +3 -1
- package/dist/constants.js.map +1 -1
- package/dist/hashTree/hashTreeParser.js +64 -45
- package/dist/hashTree/hashTreeParser.js.map +1 -1
- package/dist/interpretation/index.js +1 -1
- package/dist/interpretation/siLanguage.js +1 -1
- package/dist/locus-info/index.js +1 -2
- package/dist/locus-info/index.js.map +1 -1
- package/dist/meetings/index.js +8 -8
- package/dist/meetings/index.js.map +1 -1
- package/dist/meetings/util.js +18 -3
- package/dist/meetings/util.js.map +1 -1
- package/dist/types/constants.d.ts +1 -0
- package/dist/types/hashTree/hashTreeParser.d.ts +1 -1
- package/dist/webinar/index.js +1 -1
- package/package.json +1 -1
- package/src/constants.ts +1 -0
- package/src/hashTree/hashTreeParser.ts +61 -51
- package/src/locus-info/index.ts +1 -1
- package/src/meetings/index.ts +2 -2
- package/src/meetings/util.ts +18 -0
- package/test/unit/spec/hashTree/hashTreeParser.ts +26 -0
- package/test/unit/spec/locus-info/index.js +8 -33
- package/test/unit/spec/meetings/index.js +27 -0
- package/test/unit/spec/meetings/utils.js +16 -0
|
@@ -372,7 +372,7 @@ var SimultaneousInterpretation = _webexCore.WebexPlugin.extend({
|
|
|
372
372
|
throw error;
|
|
373
373
|
});
|
|
374
374
|
},
|
|
375
|
-
version: "3.12.0-next.
|
|
375
|
+
version: "3.12.0-next.25"
|
|
376
376
|
});
|
|
377
377
|
var _default = exports.default = SimultaneousInterpretation;
|
|
378
378
|
//# 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.12.0-next.
|
|
21
|
+
version: "3.12.0-next.25"
|
|
22
22
|
});
|
|
23
23
|
var _default = exports.default = SILanguage;
|
|
24
24
|
//# sourceMappingURL=siLanguage.js.map
|
package/dist/locus-info/index.js
CHANGED
|
@@ -1498,8 +1498,7 @@ var LocusInfo = exports.default = /*#__PURE__*/function (_EventsScope) {
|
|
|
1498
1498
|
}, {
|
|
1499
1499
|
key: "updateLocusInfo",
|
|
1500
1500
|
value: function updateLocusInfo(locus) {
|
|
1501
|
-
|
|
1502
|
-
if (((_locus$self2 = locus.self) === null || _locus$self2 === void 0 ? void 0 : _locus$self2.reason) === 'MOVED' && ((_locus$self3 = locus.self) === null || _locus$self3 === void 0 ? void 0 : _locus$self3.state) === 'LEFT') {
|
|
1501
|
+
if (_util.default.isSelfMovedOrBreakoutEnded(locus)) {
|
|
1503
1502
|
// When moved to a breakout session locus sends a message for the previous locus
|
|
1504
1503
|
// indicating that we have been moved. It isn't helpful to continue parsing this
|
|
1505
1504
|
// as it gets interpreted as if we have left the call
|