@webex/plugin-meetings 3.12.0-next.6 → 3.12.0-next.7
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/aiEnableRequest/index.js +1 -1
- 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 +370 -290
- package/dist/meeting/index.js.map +1 -1
- package/dist/types/meeting/index.d.ts +11 -0
- package/dist/webinar/index.js +301 -226
- package/dist/webinar/index.js.map +1 -1
- package/package.json +1 -1
- package/src/meeting/index.ts +84 -3
- package/src/webinar/index.ts +75 -1
- package/test/unit/spec/meeting/index.js +43 -28
- package/test/unit/spec/webinar/index.ts +60 -0
|
@@ -1318,6 +1318,11 @@ export default class Meeting extends StatelessWebexPlugin {
|
|
|
1318
1318
|
* @returns{void}
|
|
1319
1319
|
*/
|
|
1320
1320
|
private triggerStopReceivingTranscriptionEvent;
|
|
1321
|
+
/**
|
|
1322
|
+
* Restores LLM subchannel subscriptions after reconnect when captions are active.
|
|
1323
|
+
* @returns {void}
|
|
1324
|
+
*/
|
|
1325
|
+
private restoreLLMSubscriptionsIfNeeded;
|
|
1321
1326
|
/**
|
|
1322
1327
|
* This is a callback for the LLM event that is triggered when it comes online
|
|
1323
1328
|
* This method in turn will trigger an event to the developers that the LLM is connected
|
|
@@ -1372,6 +1377,12 @@ export default class Meeting extends StatelessWebexPlugin {
|
|
|
1372
1377
|
* @returns {void}
|
|
1373
1378
|
*/
|
|
1374
1379
|
saveDataChannelToken(join: any): void;
|
|
1380
|
+
/**
|
|
1381
|
+
* Ensures default-session data channel token exists after lobby admission.
|
|
1382
|
+
* Some lobby users do not receive a token until they are admitted.
|
|
1383
|
+
* @returns {Promise<boolean>} true when a new token is fetched and cached
|
|
1384
|
+
*/
|
|
1385
|
+
private ensureDefaultDatachannelTokenAfterAdmit;
|
|
1375
1386
|
/**
|
|
1376
1387
|
* Connects to low latency mercury and reconnects if the address has changed
|
|
1377
1388
|
* It will also disconnect if called when the meeting has ended
|