@webex/plugin-meetings 3.0.0-beta.419 → 3.0.0-beta.420
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/types/meeting/util.d.ts +1 -0
- package/dist/types/meetings/index.d.ts +3 -2
- package/dist/webinar/index.js +1 -1
- package/package.json +19 -19
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.420"
|
|
1045
1045
|
});
|
|
1046
1046
|
var _default = Breakouts;
|
|
1047
1047
|
exports.default = _default;
|
|
@@ -2,6 +2,7 @@ import '@webex/internal-plugin-mercury';
|
|
|
2
2
|
import '@webex/internal-plugin-conversation';
|
|
3
3
|
import '@webex/internal-plugin-metrics';
|
|
4
4
|
import { WebexPlugin } from '@webex/webex-core';
|
|
5
|
+
import * as mediaHelpersModule from '@webex/media-helpers';
|
|
5
6
|
import 'webrtc-adapter';
|
|
6
7
|
import { CallStateForMetrics } from '../meeting';
|
|
7
8
|
import Reachability from '../reachability';
|
|
@@ -201,7 +202,7 @@ export default class Meetings extends WebexPlugin {
|
|
|
201
202
|
* @public
|
|
202
203
|
* @memberof Meetings
|
|
203
204
|
*/
|
|
204
|
-
createNoiseReductionEffect: (options?: INoiseReductionEffect) => Promise<
|
|
205
|
+
createNoiseReductionEffect: (options?: INoiseReductionEffect) => Promise<mediaHelpersModule.NoiseReductionEffect>;
|
|
205
206
|
/**
|
|
206
207
|
* Creates a virtual background effect
|
|
207
208
|
*
|
|
@@ -210,7 +211,7 @@ export default class Meetings extends WebexPlugin {
|
|
|
210
211
|
* @public
|
|
211
212
|
* @memberof Meetings
|
|
212
213
|
*/
|
|
213
|
-
createVirtualBackgroundEffect: (options?: IVirtualBackgroundEffect) => Promise<
|
|
214
|
+
createVirtualBackgroundEffect: (options?: IVirtualBackgroundEffect) => Promise<mediaHelpersModule.VirtualBackgroundEffect>;
|
|
214
215
|
/**
|
|
215
216
|
* Uploads logs to the webex services for tracking
|
|
216
217
|
* @param {Object} [options={}]
|
package/dist/webinar/index.js
CHANGED
|
@@ -62,7 +62,7 @@ var Webinar = _webexCore.WebexPlugin.extend({
|
|
|
62
62
|
updateCanManageWebcast: function updateCanManageWebcast(canManageWebcast) {
|
|
63
63
|
this.set('canManageWebcast', canManageWebcast);
|
|
64
64
|
},
|
|
65
|
-
version: "3.0.0-beta.
|
|
65
|
+
version: "3.0.0-beta.420"
|
|
66
66
|
});
|
|
67
67
|
var _default = Webinar;
|
|
68
68
|
exports.default = _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webex/plugin-meetings",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.420",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "Cisco EULA (https://www.cisco.com/c/en/us/products/end-user-license-agreement.html)",
|
|
6
6
|
"contributors": [
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@peculiar/webcrypto": "^1.4.3",
|
|
36
|
-
"@webex/plugin-meetings": "3.0.0-beta.
|
|
37
|
-
"@webex/test-helper-chai": "3.0.0-beta.
|
|
38
|
-
"@webex/test-helper-mocha": "3.0.0-beta.
|
|
39
|
-
"@webex/test-helper-mock-webex": "3.0.0-beta.
|
|
40
|
-
"@webex/test-helper-retry": "3.0.0-beta.
|
|
41
|
-
"@webex/test-helper-test-users": "3.0.0-beta.
|
|
36
|
+
"@webex/plugin-meetings": "3.0.0-beta.420",
|
|
37
|
+
"@webex/test-helper-chai": "3.0.0-beta.420",
|
|
38
|
+
"@webex/test-helper-mocha": "3.0.0-beta.420",
|
|
39
|
+
"@webex/test-helper-mock-webex": "3.0.0-beta.420",
|
|
40
|
+
"@webex/test-helper-retry": "3.0.0-beta.420",
|
|
41
|
+
"@webex/test-helper-test-users": "3.0.0-beta.420",
|
|
42
42
|
"chai": "^4.3.4",
|
|
43
43
|
"chai-as-promised": "^7.1.1",
|
|
44
44
|
"jsdom-global": "3.0.2",
|
|
@@ -47,19 +47,19 @@
|
|
|
47
47
|
"typescript": "^4.7.4"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@webex/common": "3.0.0-beta.
|
|
50
|
+
"@webex/common": "3.0.0-beta.420",
|
|
51
51
|
"@webex/internal-media-core": "2.3.3",
|
|
52
|
-
"@webex/internal-plugin-conversation": "3.0.0-beta.
|
|
53
|
-
"@webex/internal-plugin-device": "3.0.0-beta.
|
|
54
|
-
"@webex/internal-plugin-llm": "3.0.0-beta.
|
|
55
|
-
"@webex/internal-plugin-mercury": "3.0.0-beta.
|
|
56
|
-
"@webex/internal-plugin-metrics": "3.0.0-beta.
|
|
57
|
-
"@webex/internal-plugin-support": "3.0.0-beta.
|
|
58
|
-
"@webex/internal-plugin-user": "3.0.0-beta.
|
|
59
|
-
"@webex/media-helpers": "3.0.0-beta.
|
|
60
|
-
"@webex/plugin-people": "3.0.0-beta.
|
|
61
|
-
"@webex/plugin-rooms": "3.0.0-beta.
|
|
62
|
-
"@webex/webex-core": "3.0.0-beta.
|
|
52
|
+
"@webex/internal-plugin-conversation": "3.0.0-beta.420",
|
|
53
|
+
"@webex/internal-plugin-device": "3.0.0-beta.420",
|
|
54
|
+
"@webex/internal-plugin-llm": "3.0.0-beta.420",
|
|
55
|
+
"@webex/internal-plugin-mercury": "3.0.0-beta.420",
|
|
56
|
+
"@webex/internal-plugin-metrics": "3.0.0-beta.420",
|
|
57
|
+
"@webex/internal-plugin-support": "3.0.0-beta.420",
|
|
58
|
+
"@webex/internal-plugin-user": "3.0.0-beta.420",
|
|
59
|
+
"@webex/media-helpers": "3.0.0-beta.420",
|
|
60
|
+
"@webex/plugin-people": "3.0.0-beta.420",
|
|
61
|
+
"@webex/plugin-rooms": "3.0.0-beta.420",
|
|
62
|
+
"@webex/webex-core": "3.0.0-beta.420",
|
|
63
63
|
"ampersand-collection": "^2.0.2",
|
|
64
64
|
"bowser": "^2.11.0",
|
|
65
65
|
"btoa": "^1.2.1",
|