@webex/plugin-meetings 3.12.0-next.36 → 3.12.0-next.38
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 +2 -4
- package/dist/constants.js.map +1 -1
- package/dist/hashTree/hashTreeParser.js +4 -4
- 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 +2 -4
- package/dist/locus-info/index.js.map +1 -1
- package/dist/locus-info/types.js +16 -0
- package/dist/locus-info/types.js.map +1 -1
- package/dist/meetings/util.js +11 -1
- package/dist/meetings/util.js.map +1 -1
- package/dist/types/constants.d.ts +0 -1
- package/dist/types/locus-info/types.d.ts +17 -1
- package/dist/webinar/index.js +1 -1
- package/package.json +1 -1
- package/src/constants.ts +1 -2
- package/src/hashTree/hashTreeParser.ts +5 -6
- package/src/locus-info/index.ts +2 -7
- package/src/locus-info/types.ts +19 -1
- package/src/meetings/util.ts +14 -2
- package/test/unit/spec/hashTree/hashTreeParser.ts +143 -0
- package/test/unit/spec/locus-info/index.js +35 -8
- package/test/unit/spec/meetings/utils.js +13 -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.38"
|
|
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.38"
|
|
22
22
|
});
|
|
23
23
|
var _default = exports.default = SILanguage;
|
|
24
24
|
//# sourceMappingURL=siLanguage.js.map
|
package/dist/locus-info/index.js
CHANGED
|
@@ -1648,10 +1648,8 @@ var LocusInfo = exports.default = /*#__PURE__*/function (_EventsScope) {
|
|
|
1648
1648
|
});
|
|
1649
1649
|
}
|
|
1650
1650
|
} else if (((_this$parsedLocus$ful6 = this.parsedLocus.fullState) === null || _this$parsedLocus$ful6 === void 0 ? void 0 : _this$parsedLocus$ful6.type) === _constants._MEETING_) {
|
|
1651
|
-
if (this.fullState && (this.fullState
|
|
1652
|
-
|
|
1653
|
-
this.fullState.state === _constants.LOCUS.STATE.TERMINATING)) {
|
|
1654
|
-
_loggerProxy.default.logger.warn('Locus-info:index#isMeetingActive --> Meeting is ending due to inactive or terminating');
|
|
1651
|
+
if (this.fullState && _util.default.isWholeMeetingEnded(this.fullState)) {
|
|
1652
|
+
_loggerProxy.default.logger.warn('Locus-info:index#isMeetingActive --> Meeting is ending due to inactive');
|
|
1655
1653
|
|
|
1656
1654
|
// @ts-ignore
|
|
1657
1655
|
this.webex.internal.newMetrics.submitClientEvent({
|