@webex/plugin-meetings 3.9.0-next.16 → 3.9.0-next.18
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 +9 -1
- package/dist/meeting/index.js.map +1 -1
- package/dist/webinar/index.js +1 -1
- package/package.json +5 -5
- package/src/meeting/index.ts +9 -1
- package/test/unit/spec/meeting/index.js +2 -2
package/dist/webinar/index.js
CHANGED
package/package.json
CHANGED
@@ -43,7 +43,7 @@
|
|
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-rooms": "3.9.0-next.
|
46
|
+
"@webex/plugin-rooms": "3.9.0-next.4",
|
47
47
|
"@webex/test-helper-chai": "3.8.1-next.11",
|
48
48
|
"@webex/test-helper-mocha": "3.8.1-next.11",
|
49
49
|
"@webex/test-helper-mock-webex": "3.8.1-next.11",
|
@@ -63,17 +63,17 @@
|
|
63
63
|
"@webex/common": "3.8.1-next.11",
|
64
64
|
"@webex/event-dictionary-ts": "^1.0.1930",
|
65
65
|
"@webex/internal-media-core": "2.18.5",
|
66
|
-
"@webex/internal-plugin-conversation": "3.9.0-next.
|
66
|
+
"@webex/internal-plugin-conversation": "3.9.0-next.4",
|
67
67
|
"@webex/internal-plugin-device": "3.9.0-next.3",
|
68
68
|
"@webex/internal-plugin-llm": "3.9.0-next.3",
|
69
69
|
"@webex/internal-plugin-mercury": "3.9.0-next.3",
|
70
70
|
"@webex/internal-plugin-metrics": "3.9.0-next.3",
|
71
|
-
"@webex/internal-plugin-support": "3.9.0-next.
|
71
|
+
"@webex/internal-plugin-support": "3.9.0-next.5",
|
72
72
|
"@webex/internal-plugin-user": "3.9.0-next.3",
|
73
73
|
"@webex/internal-plugin-voicea": "3.9.0-next.3",
|
74
74
|
"@webex/media-helpers": "3.8.1-next.16",
|
75
75
|
"@webex/plugin-people": "3.9.0-next.3",
|
76
|
-
"@webex/plugin-rooms": "3.9.0-next.
|
76
|
+
"@webex/plugin-rooms": "3.9.0-next.4",
|
77
77
|
"@webex/ts-sdp": "^1.8.1",
|
78
78
|
"@webex/web-capabilities": "^1.6.0",
|
79
79
|
"@webex/webex-core": "3.9.0-next.3",
|
@@ -92,5 +92,5 @@
|
|
92
92
|
"//": [
|
93
93
|
"TODO: upgrade jwt-decode when moving to node 18"
|
94
94
|
],
|
95
|
-
"version": "3.9.0-next.
|
95
|
+
"version": "3.9.0-next.18"
|
96
96
|
}
|
package/src/meeting/index.ts
CHANGED
@@ -3188,6 +3188,14 @@ export default class Meeting extends StatelessWebexPlugin {
|
|
3188
3188
|
this.shareCAEventSentStatus.receiveStart = false;
|
3189
3189
|
this.shareCAEventSentStatus.receiveStop = false;
|
3190
3190
|
|
3191
|
+
let finalBeneficiaryId = contentShare.beneficiaryId;
|
3192
|
+
// In case of attendee in webinar, the whiteboard is shared by other participants
|
3193
|
+
if (this.locusInfo?.info?.isWebinar && this.webinar?.selfIsAttendee) {
|
3194
|
+
if (!finalBeneficiaryId && whiteboardShare.beneficiaryId) {
|
3195
|
+
finalBeneficiaryId = whiteboardShare.beneficiaryId;
|
3196
|
+
}
|
3197
|
+
}
|
3198
|
+
|
3191
3199
|
Trigger.trigger(
|
3192
3200
|
this,
|
3193
3201
|
{
|
@@ -3196,7 +3204,7 @@ export default class Meeting extends StatelessWebexPlugin {
|
|
3196
3204
|
},
|
3197
3205
|
EVENT_TRIGGERS.MEETING_STARTED_SHARING_REMOTE,
|
3198
3206
|
{
|
3199
|
-
memberId:
|
3207
|
+
memberId: finalBeneficiaryId,
|
3200
3208
|
url: contentShare.url,
|
3201
3209
|
shareInstanceId: this.remoteShareInstanceId,
|
3202
3210
|
annotationInfo: contentShare.annotation,
|
@@ -12625,7 +12625,7 @@ describe('plugin-meetings', () => {
|
|
12625
12625
|
eventName: EVENT_TRIGGERS.MEETING_STARTED_SHARING_REMOTE,
|
12626
12626
|
functionName: 'remoteShare',
|
12627
12627
|
eventPayload: {
|
12628
|
-
memberId: null,
|
12628
|
+
memberId: meeting.webinar.selfIsAttendee ? beneficiaryId : null,
|
12629
12629
|
url,
|
12630
12630
|
shareInstanceId,
|
12631
12631
|
annotationInfo: undefined,
|
@@ -12680,7 +12680,7 @@ describe('plugin-meetings', () => {
|
|
12680
12680
|
eventName: EVENT_TRIGGERS.MEETING_STARTED_SHARING_REMOTE,
|
12681
12681
|
functionName: 'remoteShare',
|
12682
12682
|
eventPayload: {
|
12683
|
-
memberId:
|
12683
|
+
memberId: beneficiaryId,
|
12684
12684
|
url,
|
12685
12685
|
shareInstanceId,
|
12686
12686
|
annotationInfo: undefined,
|