@webex/plugin-meetings 3.8.1-next.3 → 3.8.1-next.5
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/README.md +26 -13
- 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/webinar/index.js +1 -1
- package/package.json +22 -22
package/README.md
CHANGED
@@ -30,9 +30,9 @@ This is a plugin for the Cisco Webex JS SDK . Please see our [developer portal](
|
|
30
30
|
|
31
31
|
## API Docs and Sample App
|
32
32
|
|
33
|
-
API Docs: https://webex.github.io/webex-js-sdk/api
|
34
|
-
Hosted Sample App: https://webex.github.io/webex-js-sdk/samples/browser-plugin-meetings
|
35
|
-
See https://github.com/webex/webex-js-sdk/tree/master/docs/samples/browser-plugin-meetings for the sample app code vs the readme
|
33
|
+
API Docs: <https://webex.github.io/webex-js-sdk/api/>
|
34
|
+
Hosted Sample App: <https://webex.github.io/webex-js-sdk/samples/browser-plugin-meetings/>
|
35
|
+
See <https://github.com/webex/webex-js-sdk/tree/master/docs/samples/browser-plugin-meetings> for the sample app code vs the readme
|
36
36
|
|
37
37
|
#### Device Registration
|
38
38
|
|
@@ -110,6 +110,7 @@ webex.meetings.syncMeetings().then(() => {
|
|
110
110
|
```
|
111
111
|
|
112
112
|
Or, to keep meetings with an locus url that is still active and any meeting without a locus url:
|
113
|
+
|
113
114
|
```js
|
114
115
|
let existingMeetings;
|
115
116
|
// Sync Meetings From Server
|
@@ -343,6 +344,7 @@ webex.meetings.on('meeting:added', (addedMeeting) => {
|
|
343
344
|
addedMeeting.join().then(() => {});
|
344
345
|
}
|
345
346
|
```
|
347
|
+
|
346
348
|
##### Reject an incoming meeting
|
347
349
|
|
348
350
|
When listening to an added meeting, to determine if it is an "incoming" meeting, check the type property of the meeting:
|
@@ -468,7 +470,9 @@ audioOutputSelect.onchange = function () {
|
|
468
470
|
attachSinkId(document.getElementById('remoteaudio'), audioOutputSelect.value);
|
469
471
|
};
|
470
472
|
```
|
471
|
-
|
473
|
+
|
474
|
+
##### Available joining options
|
475
|
+
|
472
476
|
```
|
473
477
|
/**
|
474
478
|
* Make a network request to join a meeting
|
@@ -490,21 +494,29 @@ audioOutputSelect.onchange = function () {
|
|
490
494
|
* @returns {Promise}
|
491
495
|
*/
|
492
496
|
```
|
497
|
+
|
493
498
|
##### options.deviceCapabilities
|
499
|
+
|
494
500
|
This option provides toggles that Locus service needs, and those toggles will control the performance or features of the meetings to be joined, see examples:
|
501
|
+
|
495
502
|
###### Breakout Sessions
|
503
|
+
|
496
504
|
```
|
497
505
|
if (breakoutsSupported) {
|
498
506
|
deviceCapabilities.push(BREAKOUTS.BREAKOUTS_SUPPORTED);
|
499
507
|
}
|
500
508
|
```
|
509
|
+
|
501
510
|
###### Live Annotation
|
511
|
+
|
502
512
|
```
|
503
513
|
if (liveAnnotationSupported) {
|
504
514
|
deviceCapabilities.push(ANNOTATION.ANNOTATION_ON_SHARE_SUPPORTED);
|
505
515
|
}
|
506
516
|
```
|
517
|
+
|
507
518
|
###### Audio Disclaimer
|
519
|
+
|
508
520
|
```
|
509
521
|
const joinOptions = {
|
510
522
|
locale: 'en_UK', // audio disclaimer language
|
@@ -695,7 +707,7 @@ webex.meetings.personalMeetingRoom.get().then((pmr) => {
|
|
695
707
|
|
696
708
|
#### Usage of Webex Devices
|
697
709
|
|
698
|
-
For details on how to use the devices see https://github.com/webex/webex-js-sdk/tree/master/packages/node_modules/%40webex/plugin-device-manager
|
710
|
+
For details on how to use the devices see <https://github.com/webex/webex-js-sdk/tree/master/packages/node_modules/%40webex/plugin-device-manager>
|
699
711
|
|
700
712
|
##### Leave a Meeting Using a Device
|
701
713
|
|
@@ -785,7 +797,7 @@ meeting.reconnect();
|
|
785
797
|
|
786
798
|
#### Scheduled Meetings
|
787
799
|
|
788
|
-
For scheduled meetings see https://github.com/webex/webex-js-sdk/tree/master/packages/node_modules/%40webex/internal-plugin-calendar
|
800
|
+
For scheduled meetings see <https://github.com/webex/webex-js-sdk/tree/master/packages/node_modules/%40webex/internal-plugin-calendar>
|
789
801
|
|
790
802
|
#### Member
|
791
803
|
|
@@ -1187,13 +1199,14 @@ meeting.members.on(...)
|
|
1187
1199
|
```
|
1188
1200
|
|
1189
1201
|
There are several events submitted by this package that you can subscribe to.
|
1190
|
-
|
1191
|
-
|
1192
|
-
|
|
1202
|
+
|
1203
|
+
| Event Name | Description |
|
1204
|
+
| ------------------------ | --------------------------------------------------------------------------------- |
|
1205
|
+
| `members:update` | Fired when a member in the collection has been updated |
|
1193
1206
|
| `members:content:update` | Fired when a member in the collection has a changed content stream (share screen) |
|
1194
|
-
| `members:host:update`
|
1195
|
-
| `members:self:update`
|
1196
|
-
|
1207
|
+
| `members:host:update` | Fired when a member in the collection has a changed host value |
|
1208
|
+
| `members:self:update` | Fired when a member in the collection has a changed self value |
|
1209
|
+
| --- | --- |
|
1197
1210
|
|
1198
1211
|
`members:update` has the following payload
|
1199
1212
|
|
@@ -1252,4 +1265,4 @@ Pull requests welcome. Please see [CONTRIBUTING.md](https://github.com/webex/web
|
|
1252
1265
|
|
1253
1266
|
## License
|
1254
1267
|
|
1255
|
-
© 2016-
|
1268
|
+
© 2016-2025 Cisco and/or its affiliates. All Rights Reserved.
|
package/dist/breakouts/index.js
CHANGED
@@ -1110,7 +1110,7 @@ var Breakouts = _webexCore.WebexPlugin.extend({
|
|
1110
1110
|
this.trigger(_constants.BREAKOUTS.EVENTS.ASK_RETURN_TO_MAIN);
|
1111
1111
|
}
|
1112
1112
|
},
|
1113
|
-
version: "3.8.1-next.
|
1113
|
+
version: "3.8.1-next.5"
|
1114
1114
|
});
|
1115
1115
|
var _default = exports.default = Breakouts;
|
1116
1116
|
//# sourceMappingURL=index.js.map
|
@@ -373,7 +373,7 @@ var SimultaneousInterpretation = _webexCore.WebexPlugin.extend({
|
|
373
373
|
throw error;
|
374
374
|
});
|
375
375
|
},
|
376
|
-
version: "3.8.1-next.
|
376
|
+
version: "3.8.1-next.5"
|
377
377
|
});
|
378
378
|
var _default = exports.default = SimultaneousInterpretation;
|
379
379
|
//# sourceMappingURL=index.js.map
|
package/dist/webinar/index.js
CHANGED
package/package.json
CHANGED
@@ -43,13 +43,13 @@
|
|
43
43
|
"@webex/eslint-config-legacy": "0.0.0",
|
44
44
|
"@webex/jest-config-legacy": "0.0.0",
|
45
45
|
"@webex/legacy-tools": "0.0.0",
|
46
|
-
"@webex/plugin-meetings": "3.8.1-next.
|
47
|
-
"@webex/plugin-rooms": "3.8.0-next.
|
48
|
-
"@webex/test-helper-chai": "3.8.1-next.
|
49
|
-
"@webex/test-helper-mocha": "3.8.1-next.
|
50
|
-
"@webex/test-helper-mock-webex": "3.8.1-next.
|
51
|
-
"@webex/test-helper-retry": "3.8.1-next.
|
52
|
-
"@webex/test-helper-test-users": "3.8.1-next.
|
46
|
+
"@webex/plugin-meetings": "3.8.1-next.5",
|
47
|
+
"@webex/plugin-rooms": "3.8.0-next.31",
|
48
|
+
"@webex/test-helper-chai": "3.8.1-next.2",
|
49
|
+
"@webex/test-helper-mocha": "3.8.1-next.2",
|
50
|
+
"@webex/test-helper-mock-webex": "3.8.1-next.2",
|
51
|
+
"@webex/test-helper-retry": "3.8.1-next.2",
|
52
|
+
"@webex/test-helper-test-users": "3.8.1-next.2",
|
53
53
|
"chai": "^4.3.4",
|
54
54
|
"chai-as-promised": "^7.1.1",
|
55
55
|
"eslint": "^8.24.0",
|
@@ -61,23 +61,23 @@
|
|
61
61
|
"typescript": "^4.7.4"
|
62
62
|
},
|
63
63
|
"dependencies": {
|
64
|
-
"@webex/common": "3.8.1-next.
|
64
|
+
"@webex/common": "3.8.1-next.2",
|
65
65
|
"@webex/event-dictionary-ts": "^1.0.1753",
|
66
|
-
"@webex/internal-media-core": "2.
|
67
|
-
"@webex/internal-plugin-conversation": "3.8.1-next.
|
68
|
-
"@webex/internal-plugin-device": "3.8.1-next.
|
69
|
-
"@webex/internal-plugin-llm": "3.8.1-next.
|
70
|
-
"@webex/internal-plugin-mercury": "3.8.1-next.
|
71
|
-
"@webex/internal-plugin-metrics": "3.8.1-next.
|
72
|
-
"@webex/internal-plugin-support": "3.8.1-next.
|
73
|
-
"@webex/internal-plugin-user": "3.8.1-next.
|
74
|
-
"@webex/internal-plugin-voicea": "3.8.1-next.
|
75
|
-
"@webex/media-helpers": "3.8.1-next.
|
76
|
-
"@webex/plugin-people": "3.8.1-next.
|
77
|
-
"@webex/plugin-rooms": "3.8.0-next.
|
66
|
+
"@webex/internal-media-core": "2.18.1",
|
67
|
+
"@webex/internal-plugin-conversation": "3.8.1-next.2",
|
68
|
+
"@webex/internal-plugin-device": "3.8.1-next.2",
|
69
|
+
"@webex/internal-plugin-llm": "3.8.1-next.2",
|
70
|
+
"@webex/internal-plugin-mercury": "3.8.1-next.2",
|
71
|
+
"@webex/internal-plugin-metrics": "3.8.1-next.2",
|
72
|
+
"@webex/internal-plugin-support": "3.8.1-next.2",
|
73
|
+
"@webex/internal-plugin-user": "3.8.1-next.2",
|
74
|
+
"@webex/internal-plugin-voicea": "3.8.1-next.5",
|
75
|
+
"@webex/media-helpers": "3.8.1-next.3",
|
76
|
+
"@webex/plugin-people": "3.8.1-next.2",
|
77
|
+
"@webex/plugin-rooms": "3.8.0-next.31",
|
78
78
|
"@webex/ts-sdp": "^1.8.1",
|
79
79
|
"@webex/web-capabilities": "^1.4.0",
|
80
|
-
"@webex/webex-core": "3.8.1-next.
|
80
|
+
"@webex/webex-core": "3.8.1-next.2",
|
81
81
|
"ampersand-collection": "^2.0.2",
|
82
82
|
"bowser": "^2.11.0",
|
83
83
|
"btoa": "^1.2.1",
|
@@ -93,5 +93,5 @@
|
|
93
93
|
"//": [
|
94
94
|
"TODO: upgrade jwt-decode when moving to node 18"
|
95
95
|
],
|
96
|
-
"version": "3.8.1-next.
|
96
|
+
"version": "3.8.1-next.5"
|
97
97
|
}
|