@webex/plugin-meetings 3.12.0-next.53 → 3.12.0-next.54

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.
@@ -191,7 +191,7 @@ var AIEnableRequest = _webexCore.WebexPlugin.extend({
191
191
  method: _constants.HTTP_VERBS.PUT
192
192
  });
193
193
  },
194
- version: "3.12.0-next.53"
194
+ version: "3.12.0-next.54"
195
195
  });
196
196
  var _default = exports.default = AIEnableRequest;
197
197
  //# sourceMappingURL=index.js.map
@@ -214,7 +214,7 @@ var Breakout = _webexCore.WebexPlugin.extend({
214
214
  sessionId: this.sessionId
215
215
  });
216
216
  },
217
- version: "3.12.0-next.53"
217
+ version: "3.12.0-next.54"
218
218
  });
219
219
  var _default = exports.default = Breakout;
220
220
  //# sourceMappingURL=breakout.js.map
@@ -1110,7 +1110,7 @@ var Breakouts = _webexCore.WebexPlugin.extend({
1110
1110
  this.trigger(_constants.BREAKOUTS.EVENTS.ASK_RETURN_TO_MAIN);
1111
1111
  }
1112
1112
  },
1113
- version: "3.12.0-next.53"
1113
+ version: "3.12.0-next.54"
1114
1114
  });
1115
1115
  var _default = exports.default = Breakouts;
1116
1116
  //# sourceMappingURL=index.js.map
@@ -381,7 +381,7 @@ var SimultaneousInterpretation = _webexCore.WebexPlugin.extend({
381
381
  throw error;
382
382
  });
383
383
  },
384
- version: "3.12.0-next.53"
384
+ version: "3.12.0-next.54"
385
385
  });
386
386
  var _default = exports.default = SimultaneousInterpretation;
387
387
  //# sourceMappingURL=index.js.map
@@ -18,7 +18,7 @@ var SILanguage = _webexCore.WebexPlugin.extend({
18
18
  languageCode: 'number',
19
19
  languageName: 'string'
20
20
  },
21
- version: "3.12.0-next.53"
21
+ version: "3.12.0-next.54"
22
22
  });
23
23
  var _default = exports.default = SILanguage;
24
24
  //# sourceMappingURL=siLanguage.js.map
@@ -643,6 +643,9 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
643
643
  * @returns {void}
644
644
  */
645
645
  (0, _defineProperty3.default)(_this, "processRelayEvent", function (e) {
646
+ if (!_this.isRelayEventRouteValid(e)) {
647
+ return;
648
+ }
646
649
  switch (e.data.relayType) {
647
650
  case _constants3.REACTION_RELAY_TYPES.REACTION:
648
651
  if (
@@ -6555,6 +6558,28 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
6555
6558
  }
6556
6559
  return startTranscription;
6557
6560
  }())
6561
+ }, {
6562
+ key: "isRelayEventRouteValid",
6563
+ value:
6564
+ /**
6565
+ * Verifies the relay event was delivered for the active LLM session binding.
6566
+ * @param {RelayEvent} event Event object coming from LLM Connection
6567
+ * @returns {boolean}
6568
+ */
6569
+ function isRelayEventRouteValid(event) {
6570
+ var _event$headers;
6571
+ var route = event === null || event === void 0 ? void 0 : (_event$headers = event.headers) === null || _event$headers === void 0 ? void 0 : _event$headers.route;
6572
+ if (!route) {
6573
+ return true;
6574
+ }
6575
+ var llm = this.webex.internal.llm;
6576
+ var isPracticeSession = llm.isConnected(_constants.LLM_PRACTICE_SESSION);
6577
+ var expectedBinding = isPracticeSession ? llm.getBinding(_constants.LLM_PRACTICE_SESSION) : llm.getBinding();
6578
+ if (!expectedBinding || route === expectedBinding) {
6579
+ return true;
6580
+ }
6581
+ return false;
6582
+ }
6558
6583
  }, {
6559
6584
  key: "stopTranscription",
6560
6585
  value: