@webex/plugin-meetings 2.38.1 → 2.38.2
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/meeting/index.js +0 -21
- package/dist/meeting/index.js.map +1 -1
- package/package.json +17 -17
- package/src/meeting/index.ts +0 -26
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webex/plugin-meetings",
|
|
3
|
-
"version": "2.38.
|
|
3
|
+
"version": "2.38.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "Cisco EULA (https://www.cisco.com/c/en/us/products/end-user-license-agreement.html)",
|
|
6
6
|
"contributors": [
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"build": "yarn run -T tsc --declaration true --declarationDir ./types"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@webex/plugin-meetings": "2.38.
|
|
36
|
-
"@webex/test-helper-chai": "2.38.
|
|
37
|
-
"@webex/test-helper-mocha": "2.38.
|
|
38
|
-
"@webex/test-helper-mock-webex": "2.38.
|
|
39
|
-
"@webex/test-helper-retry": "2.38.
|
|
40
|
-
"@webex/test-helper-test-users": "2.38.
|
|
35
|
+
"@webex/plugin-meetings": "2.38.2",
|
|
36
|
+
"@webex/test-helper-chai": "2.38.2",
|
|
37
|
+
"@webex/test-helper-mocha": "2.38.2",
|
|
38
|
+
"@webex/test-helper-mock-webex": "2.38.2",
|
|
39
|
+
"@webex/test-helper-retry": "2.38.2",
|
|
40
|
+
"@webex/test-helper-test-users": "2.38.2",
|
|
41
41
|
"chai": "^4.3.4",
|
|
42
42
|
"chai-as-promised": "^7.1.1",
|
|
43
43
|
"jsdom-global": "3.0.2",
|
|
@@ -45,18 +45,18 @@
|
|
|
45
45
|
"typescript": "^4.7.4"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@webex/common": "2.38.
|
|
48
|
+
"@webex/common": "2.38.2",
|
|
49
49
|
"@webex/internal-media-core": "0.0.7-beta",
|
|
50
|
-
"@webex/internal-plugin-conversation": "2.38.
|
|
51
|
-
"@webex/internal-plugin-device": "2.38.
|
|
52
|
-
"@webex/internal-plugin-mercury": "2.38.
|
|
53
|
-
"@webex/internal-plugin-metrics": "2.38.
|
|
54
|
-
"@webex/internal-plugin-support": "2.38.
|
|
55
|
-
"@webex/internal-plugin-user": "2.38.
|
|
56
|
-
"@webex/plugin-people": "2.38.
|
|
57
|
-
"@webex/plugin-rooms": "2.38.
|
|
50
|
+
"@webex/internal-plugin-conversation": "2.38.2",
|
|
51
|
+
"@webex/internal-plugin-device": "2.38.2",
|
|
52
|
+
"@webex/internal-plugin-mercury": "2.38.2",
|
|
53
|
+
"@webex/internal-plugin-metrics": "2.38.2",
|
|
54
|
+
"@webex/internal-plugin-support": "2.38.2",
|
|
55
|
+
"@webex/internal-plugin-user": "2.38.2",
|
|
56
|
+
"@webex/plugin-people": "2.38.2",
|
|
57
|
+
"@webex/plugin-rooms": "2.38.2",
|
|
58
58
|
"@webex/ts-sdp": "1.0.1",
|
|
59
|
-
"@webex/webex-core": "2.38.
|
|
59
|
+
"@webex/webex-core": "2.38.2",
|
|
60
60
|
"bowser": "^2.11.0",
|
|
61
61
|
"btoa": "^1.2.1",
|
|
62
62
|
"dotenv": "^4.0.0",
|
package/src/meeting/index.ts
CHANGED
|
@@ -4900,32 +4900,6 @@ export default class Meeting extends StatelessWebexPlugin {
|
|
|
4900
4900
|
)
|
|
4901
4901
|
)
|
|
4902
4902
|
.then(() => this.checkForStopShare(mediaSettings.sendShare, previousSendShareStatus))
|
|
4903
|
-
.then((startShare) => {
|
|
4904
|
-
// This is a special case if we do an /floor grant followed by /media
|
|
4905
|
-
// we actually get a OFFER from the server and a GLAR condition happens
|
|
4906
|
-
if (startShare) {
|
|
4907
|
-
// We are assuming that the clients are connected when doing an update
|
|
4908
|
-
// @ts-ignore
|
|
4909
|
-
return this.share();
|
|
4910
|
-
}
|
|
4911
|
-
|
|
4912
|
-
return Promise.resolve();
|
|
4913
|
-
})
|
|
4914
|
-
.then(() =>
|
|
4915
|
-
logRequest(
|
|
4916
|
-
this.roap.sendRoapMediaRequest({
|
|
4917
|
-
sdp: this.mediaProperties.peerConnection.sdp,
|
|
4918
|
-
roapSeq: this.roapSeq,
|
|
4919
|
-
meeting: this, // or can pass meeting ID
|
|
4920
|
-
}),
|
|
4921
|
-
{
|
|
4922
|
-
header: `${LOG_HEADER} sendRoapMediaRequest being sent`,
|
|
4923
|
-
success: `${LOG_HEADER} sendRoadMediaRequest successful`,
|
|
4924
|
-
failure: `${LOG_HEADER} Error updateMedia on send roap media request, `,
|
|
4925
|
-
}
|
|
4926
|
-
)
|
|
4927
|
-
)
|
|
4928
|
-
.then(() => this.checkForStopShare(mediaSettings.sendShare, previousSendShareStatus))
|
|
4929
4903
|
.then((startShare) => {
|
|
4930
4904
|
// This is a special case if we do an /floor grant followed by /media
|
|
4931
4905
|
// we actually get a OFFER from the server and a GLAR condition happens
|