@webex/plugin-meetings 3.11.0-next.27 → 3.11.0-next.29
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/config.js +5 -1
- package/dist/config.js.map +1 -1
- package/dist/hashTree/hashTreeParser.js +143 -87
- package/dist/hashTree/hashTreeParser.js.map +1 -1
- package/dist/interpretation/index.js +1 -1
- package/dist/interpretation/siLanguage.js +1 -1
- package/dist/locus-info/index.js +3 -1
- package/dist/locus-info/index.js.map +1 -1
- package/dist/meeting/index.js +2 -2
- package/dist/meeting/index.js.map +1 -1
- package/dist/types/config.d.ts +3 -0
- package/dist/types/hashTree/hashTreeParser.d.ts +14 -0
- package/dist/webinar/index.js +1 -1
- package/package.json +1 -1
- package/src/config.ts +3 -0
- package/src/hashTree/hashTreeParser.ts +54 -8
- package/src/locus-info/index.ts +1 -0
- package/src/meeting/index.ts +4 -8
- package/test/unit/spec/hashTree/hashTreeParser.ts +63 -1
- package/test/unit/spec/meeting/index.js +4 -1
package/dist/meeting/index.js
CHANGED
|
@@ -6597,10 +6597,10 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
6597
6597
|
return _context18.abrupt("return", undefined);
|
|
6598
6598
|
case 1:
|
|
6599
6599
|
_context18.next = 2;
|
|
6600
|
-
return this.webex.internal.llm.disconnectLLM(
|
|
6600
|
+
return this.webex.internal.llm.disconnectLLM({
|
|
6601
6601
|
code: 3050,
|
|
6602
6602
|
reason: 'done (permanent)'
|
|
6603
|
-
}
|
|
6603
|
+
});
|
|
6604
6604
|
case 2:
|
|
6605
6605
|
// @ts-ignore - Fix type
|
|
6606
6606
|
this.webex.internal.llm.off('event:relay.event', this.processRelayEvent);
|