@webex/plugin-meetings 3.0.0-beta.209 → 3.0.0-beta.210
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 +2 -8
- package/dist/meeting/index.js.map +1 -1
- package/package.json +19 -19
- package/src/meeting/index.ts +2 -8
- package/test/unit/spec/meeting/index.js +56 -30
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.210"
|
|
1045
1045
|
});
|
|
1046
1046
|
var _default = Breakouts;
|
|
1047
1047
|
exports.default = _default;
|
package/dist/meeting/index.js
CHANGED
|
@@ -3287,8 +3287,8 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
3287
3287
|
}, {
|
|
3288
3288
|
key: "arePolicyRestrictionsSupported",
|
|
3289
3289
|
value: function arePolicyRestrictionsSupported() {
|
|
3290
|
-
//
|
|
3291
|
-
if (this.
|
|
3290
|
+
// If we don't have policies we can't support policies
|
|
3291
|
+
if (!this.selfUserPolicies) {
|
|
3292
3292
|
return false;
|
|
3293
3293
|
}
|
|
3294
3294
|
|
|
@@ -3297,12 +3297,6 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
3297
3297
|
if ((0, _isEmpty2.default)(this.meetingInfo)) {
|
|
3298
3298
|
return false;
|
|
3299
3299
|
}
|
|
3300
|
-
|
|
3301
|
-
// Old locus info api does not return policy information
|
|
3302
|
-
// @ts-ignore
|
|
3303
|
-
if (!this.config.experimental.enableUnifiedMeetings) {
|
|
3304
|
-
return false;
|
|
3305
|
-
}
|
|
3306
3300
|
return true;
|
|
3307
3301
|
}
|
|
3308
3302
|
|