@webex/plugin-meetings 3.9.0-next.13 → 3.9.0-next.14

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.
@@ -209,7 +209,7 @@ var Breakout = _webexCore.WebexPlugin.extend({
209
209
  sessionId: this.sessionId
210
210
  });
211
211
  },
212
- version: "3.9.0-next.13"
212
+ version: "3.9.0-next.14"
213
213
  });
214
214
  var _default = exports.default = Breakout;
215
215
  //# 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.9.0-next.13"
1113
+ version: "3.9.0-next.14"
1114
1114
  });
1115
1115
  var _default = exports.default = Breakouts;
1116
1116
  //# sourceMappingURL=index.js.map
@@ -373,7 +373,7 @@ var SimultaneousInterpretation = _webexCore.WebexPlugin.extend({
373
373
  throw error;
374
374
  });
375
375
  },
376
- version: "3.9.0-next.13"
376
+ version: "3.9.0-next.14"
377
377
  });
378
378
  var _default = exports.default = SimultaneousInterpretation;
379
379
  //# 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.9.0-next.13"
21
+ version: "3.9.0-next.14"
22
22
  });
23
23
  var _default = exports.default = SILanguage;
24
24
  //# sourceMappingURL=siLanguage.js.map
@@ -9642,6 +9642,19 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
9642
9642
  };
9643
9643
  return this.meetingRequest.synchronizeStage(this.locusUrl, videoLayout);
9644
9644
  }
9645
+
9646
+ /**
9647
+ * Notifies the host with the given meeting UUID and display names.
9648
+ *
9649
+ * @param {string} meetingUuid - The UUID of the meeting.
9650
+ * @param {string[]} displayName - An array of display names to notify the host with.
9651
+ * @returns {Promise<any>} The result of the notifyHost request.
9652
+ */
9653
+ }, {
9654
+ key: "notifyHost",
9655
+ value: function notifyHost(meetingUuid, displayName) {
9656
+ return this.meetingRequest.notifyHost(this.meetingInfo.siteFullUrl, this.locusId, meetingUuid, displayName);
9657
+ }
9645
9658
  }]);
9646
9659
  return Meeting;
9647
9660
  }(_webexCore.StatelessWebexPlugin);