@webex/plugin-meetings 3.12.0-next.61 → 3.12.0-next.62
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/hashTree/constants.js +4 -1
- package/dist/hashTree/constants.js.map +1 -1
- package/dist/hashTree/hashTreeParser.js +197 -49
- package/dist/hashTree/hashTreeParser.js.map +1 -1
- package/dist/hashTree/utils.js +20 -0
- package/dist/hashTree/utils.js.map +1 -1
- package/dist/interpretation/index.js +1 -1
- package/dist/interpretation/siLanguage.js +1 -1
- package/dist/locus-info/index.js +11 -2
- package/dist/locus-info/index.js.map +1 -1
- package/dist/meeting/index.js +6 -0
- package/dist/meeting/index.js.map +1 -1
- package/dist/types/hashTree/constants.d.ts +1 -0
- package/dist/types/hashTree/hashTreeParser.d.ts +55 -4
- package/dist/types/hashTree/utils.d.ts +7 -0
- package/dist/types/locus-info/index.d.ts +5 -1
- package/dist/webinar/index.js +1 -1
- package/package.json +1 -1
- package/src/hashTree/constants.ts +7 -0
- package/src/hashTree/hashTreeParser.ts +156 -23
- package/src/hashTree/utils.ts +19 -0
- package/src/locus-info/index.ts +4 -2
- package/src/meeting/index.ts +2 -0
- package/test/unit/spec/hashTree/hashTreeParser.ts +197 -2
- package/test/unit/spec/hashTree/utils.ts +37 -0
- package/test/unit/spec/locus-info/index.js +12 -0
- package/test/unit/spec/meeting/index.js +25 -5
package/dist/meeting/index.js
CHANGED
|
@@ -685,6 +685,9 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
685
685
|
*/
|
|
686
686
|
(0, _defineProperty3.default)(_this, "handleLLMOnline", function () {
|
|
687
687
|
_this.restoreLLMSubscriptionsIfNeeded();
|
|
688
|
+
_this.locusInfo.syncAllHashTreeDatasets({
|
|
689
|
+
onlyLLM: true
|
|
690
|
+
});
|
|
688
691
|
_triggerProxy.default.trigger(_this, {
|
|
689
692
|
file: 'meeting/index',
|
|
690
693
|
function: 'handleLLMOnline'
|
|
@@ -7158,6 +7161,9 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
7158
7161
|
case 4:
|
|
7159
7162
|
return _context21.abrupt("return", this.webex.internal.llm.registerAndConnect(url, dataChannelUrl, datachannelToken).then(function (registerAndConnectResult) {
|
|
7160
7163
|
var _this36$webex$interna, _this36$webex$interna2;
|
|
7164
|
+
_this36.locusInfo.syncAllHashTreeDatasets({
|
|
7165
|
+
onlyLLM: true
|
|
7166
|
+
});
|
|
7161
7167
|
// Record ownership of the default LLM session for this meeting so
|
|
7162
7168
|
// subsequent cross-meeting `updateLLMConnection` / `cleanupLLMConneciton`
|
|
7163
7169
|
// calls can detect and skip work that doesn't belong to them.
|