@webex/plugin-meetings 3.0.0-beta.191 → 3.0.0-beta.193
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/package.json +19 -19
- package/src/meeting/index.ts +12 -4
- package/test/unit/spec/meeting/index.js +21 -0
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.193"
|
|
1045
1045
|
});
|
|
1046
1046
|
var _default = Breakouts;
|
|
1047
1047
|
exports.default = _default;
|
package/dist/meeting/index.js
CHANGED
|
@@ -2872,7 +2872,12 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
2872
2872
|
canEnableVideo: _util3.default.hasHints({
|
|
2873
2873
|
requiredHints: [_constants.DISPLAY_HINTS.ENABLE_VIDEO],
|
|
2874
2874
|
displayHints: payload.info.userDisplayHints
|
|
2875
|
-
})
|
|
2875
|
+
}) && _util3.default.hasPolicies({
|
|
2876
|
+
requiredPolicies: [_constants.SELF_POLICY.SUPPORT_VIDEO],
|
|
2877
|
+
policies: _this17.selfUserPolicies
|
|
2878
|
+
}) ||
|
|
2879
|
+
// @ts-ignore
|
|
2880
|
+
!_this17.config.experimental.enableUnifiedMeetings || _this17.isLocusCall(),
|
|
2876
2881
|
canDisableVideo: _util3.default.hasHints({
|
|
2877
2882
|
requiredHints: [_constants.DISPLAY_HINTS.DISABLE_VIDEO],
|
|
2878
2883
|
displayHints: payload.info.userDisplayHints
|