@webex/plugin-meetings 3.8.1-next.12 → 3.8.1-next.13
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 +3 -2
- package/dist/meeting/index.js.map +1 -1
- package/dist/webinar/index.js +1 -1
- package/package.json +3 -3
- package/src/meeting/index.ts +2 -2
- package/test/unit/spec/meeting/index.js +4 -4
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-meetings": "3.8.1-next.
|
46
|
+
"@webex/plugin-meetings": "3.8.1-next.13",
|
47
47
|
"@webex/plugin-rooms": "3.8.1-next.2",
|
48
48
|
"@webex/test-helper-chai": "3.8.1-next.5",
|
49
49
|
"@webex/test-helper-mocha": "3.8.1-next.5",
|
@@ -71,7 +71,7 @@
|
|
71
71
|
"@webex/internal-plugin-metrics": "3.8.1-next.5",
|
72
72
|
"@webex/internal-plugin-support": "3.8.1-next.5",
|
73
73
|
"@webex/internal-plugin-user": "3.8.1-next.5",
|
74
|
-
"@webex/internal-plugin-voicea": "3.8.1-next.
|
74
|
+
"@webex/internal-plugin-voicea": "3.8.1-next.13",
|
75
75
|
"@webex/media-helpers": "3.8.1-next.7",
|
76
76
|
"@webex/plugin-people": "3.8.1-next.5",
|
77
77
|
"@webex/plugin-rooms": "3.8.1-next.2",
|
@@ -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.13"
|
97
97
|
}
|
package/src/meeting/index.ts
CHANGED
@@ -2770,7 +2770,7 @@ export default class Meeting extends StatelessWebexPlugin {
|
|
2770
2770
|
this.transcription.languageOptions.currentSpokenLanguage = spokenLanguage;
|
2771
2771
|
}
|
2772
2772
|
// @ts-ignore
|
2773
|
-
this.webex.internal.voicea.onSpokenLanguageUpdate(spokenLanguage);
|
2773
|
+
this.webex.internal.voicea.onSpokenLanguageUpdate(spokenLanguage, this.id);
|
2774
2774
|
|
2775
2775
|
Trigger.trigger(
|
2776
2776
|
this,
|
@@ -2779,7 +2779,7 @@ export default class Meeting extends StatelessWebexPlugin {
|
|
2779
2779
|
function: 'setupLocusControlsListener',
|
2780
2780
|
},
|
2781
2781
|
EVENT_TRIGGERS.MEETING_TRANSCRIPTION_SPOKEN_LANGUAGE_UPDATED,
|
2782
|
-
{spokenLanguage}
|
2782
|
+
{spokenLanguage, meetingId: this.id}
|
2783
2783
|
);
|
2784
2784
|
}
|
2785
2785
|
}
|
@@ -1308,7 +1308,7 @@ describe('plugin-meetings', () => {
|
|
1308
1308
|
LOCUSINFO.EVENTS.CONTROLS_MEETING_TRANSCRIPTION_SPOKEN_LANGUAGE_UPDATED,
|
1309
1309
|
{spokenLanguage: 'fr'},
|
1310
1310
|
);
|
1311
|
-
assert.calledWith(webex.internal.voicea.onSpokenLanguageUpdate, 'fr');
|
1311
|
+
assert.calledWith(webex.internal.voicea.onSpokenLanguageUpdate, 'fr', meeting.id);
|
1312
1312
|
assert.equal(meeting.transcription.languageOptions.currentSpokenLanguage, 'fr');
|
1313
1313
|
assert.calledWith(
|
1314
1314
|
TriggerProxy.trigger,
|
@@ -4354,11 +4354,11 @@ describe('plugin-meetings', () => {
|
|
4354
4354
|
|
4355
4355
|
const error = new Error();
|
4356
4356
|
meeting.meetingRequest.setBrb = sinon.stub().rejects(error);
|
4357
|
-
|
4357
|
+
|
4358
4358
|
await expect(
|
4359
4359
|
meeting.beRightBack(true)
|
4360
|
-
).to.be.rejectedWith(error);
|
4361
|
-
|
4360
|
+
).to.be.rejectedWith(error);
|
4361
|
+
|
4362
4362
|
assert.isFalse(meeting.brbState.state.syncToServerInProgress);
|
4363
4363
|
});
|
4364
4364
|
});
|