@webex/plugin-meetings 3.12.0-next.72 → 3.12.0-next.74
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 +4 -1
- package/dist/constants.js.map +1 -1
- package/dist/controls-options-manager/index.js +29 -5
- package/dist/controls-options-manager/index.js.map +1 -1
- package/dist/interpretation/index.js +1 -1
- package/dist/interpretation/siLanguage.js +1 -1
- package/dist/locus-info/infoUtils.js +36 -5
- package/dist/locus-info/infoUtils.js.map +1 -1
- package/dist/meeting/in-meeting-actions.js +3 -1
- package/dist/meeting/in-meeting-actions.js.map +1 -1
- package/dist/meeting/index.js +21 -8
- package/dist/meeting/index.js.map +1 -1
- package/dist/meeting/util.js +9 -0
- package/dist/meeting/util.js.map +1 -1
- package/dist/types/constants.d.ts +3 -0
- package/dist/types/controls-options-manager/index.d.ts +6 -0
- package/dist/types/locus-info/infoUtils.d.ts +8 -0
- package/dist/types/meeting/in-meeting-actions.d.ts +2 -0
- package/dist/types/meeting/index.d.ts +1 -0
- package/dist/types/meeting/util.d.ts +1 -0
- package/dist/webinar/index.js +1 -1
- package/package.json +1 -1
- package/src/constants.ts +3 -0
- package/src/controls-options-manager/index.ts +40 -4
- package/src/locus-info/infoUtils.ts +41 -6
- package/src/meeting/in-meeting-actions.ts +4 -0
- package/src/meeting/index.ts +10 -0
- package/src/meeting/util.ts +12 -0
- package/test/unit/spec/controls-options-manager/index.js +104 -0
- package/test/unit/spec/locus-info/index.js +12 -0
- package/test/unit/spec/locus-info/infoUtils.js +87 -0
- package/test/unit/spec/meeting/in-meeting-actions.ts +2 -0
- package/test/unit/spec/meeting/utils.js +49 -0
- package/test/unit/spec/meetings/index.js +3 -0
|
@@ -191,7 +191,7 @@ var AIEnableRequest = _webexCore.WebexPlugin.extend({
|
|
|
191
191
|
method: _constants.HTTP_VERBS.PUT
|
|
192
192
|
});
|
|
193
193
|
},
|
|
194
|
-
version: "3.12.0-next.
|
|
194
|
+
version: "3.12.0-next.74"
|
|
195
195
|
});
|
|
196
196
|
var _default = exports.default = AIEnableRequest;
|
|
197
197
|
//# sourceMappingURL=index.js.map
|
package/dist/breakouts/index.js
CHANGED
|
@@ -1133,7 +1133,7 @@ var Breakouts = _webexCore.WebexPlugin.extend({
|
|
|
1133
1133
|
this.trigger(_constants.BREAKOUTS.EVENTS.ASK_RETURN_TO_MAIN);
|
|
1134
1134
|
}
|
|
1135
1135
|
},
|
|
1136
|
-
version: "3.12.0-next.
|
|
1136
|
+
version: "3.12.0-next.74"
|
|
1137
1137
|
});
|
|
1138
1138
|
var _default = exports.default = Breakouts;
|
|
1139
1139
|
//# sourceMappingURL=index.js.map
|
package/dist/constants.js
CHANGED
|
@@ -959,6 +959,8 @@ var DISPLAY_HINTS = exports.DISPLAY_HINTS = {
|
|
|
959
959
|
// participants list
|
|
960
960
|
DISABLE_VIEW_THE_PARTICIPANT_LIST: 'DISABLE_VIEW_THE_PARTICIPANT_LIST',
|
|
961
961
|
ENABLE_VIEW_THE_PARTICIPANT_LIST: 'ENABLE_VIEW_THE_PARTICIPANT_LIST',
|
|
962
|
+
VIEW_THE_PARTICIPANT_LIST: 'VIEW_THE_PARTICIPANT_LIST',
|
|
963
|
+
CAN_VIEW_THE_PARTICIPANT_LIST: 'CAN_VIEW_THE_PARTICIPANT_LIST',
|
|
962
964
|
// for webinar participants list
|
|
963
965
|
DISABLE_VIEW_THE_PARTICIPANT_LIST_PANELIST: 'DISABLE_VIEW_THE_PARTICIPANT_LIST_PANELIST',
|
|
964
966
|
ENABLE_VIEW_THE_PARTICIPANT_LIST_PANELIST: 'ENABLE_VIEW_THE_PARTICIPANT_LIST_PANELIST',
|
|
@@ -1016,7 +1018,8 @@ var SELF_ROLES = exports.SELF_ROLES = {
|
|
|
1016
1018
|
COHOST: 'COHOST',
|
|
1017
1019
|
MODERATOR: 'MODERATOR',
|
|
1018
1020
|
ATTENDEE: 'ATTENDEE',
|
|
1019
|
-
PANELIST: 'PANELIST'
|
|
1021
|
+
PANELIST: 'PANELIST',
|
|
1022
|
+
PRESENTER: 'PRESENTER'
|
|
1020
1023
|
};
|
|
1021
1024
|
var MEETING_STATE = exports.MEETING_STATE = {
|
|
1022
1025
|
STATES: {
|