@webex/plugin-meetings 3.8.1-next.31 → 3.8.1-next.33

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.8.1-next.31"
212
+ version: "3.8.1-next.33"
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.8.1-next.31"
1113
+ version: "3.8.1-next.33"
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.8.1-next.31"
376
+ version: "3.8.1-next.33"
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.8.1-next.31"
21
+ version: "3.8.1-next.33"
22
22
  });
23
23
  var _default = exports.default = SILanguage;
24
24
  //# sourceMappingURL=siLanguage.js.map
@@ -3660,9 +3660,16 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
3660
3660
  // There is no concept of local/remote share for whiteboard
3661
3661
  // It does not matter who requested to share the whiteboard, everyone gets the same view
3662
3662
  else if (whiteboardShare.disposition === _constants.FLOOR_ACTION.GRANTED) {
3663
- // WHITEBOARD - sharing whiteboard
3664
- // Webinar attendee should receive whiteboard as remote share
3665
- newShareStatus = (_this15$locusInfo = _this15.locusInfo) !== null && _this15$locusInfo !== void 0 && (_this15$locusInfo$inf = _this15$locusInfo.info) !== null && _this15$locusInfo$inf !== void 0 && _this15$locusInfo$inf.isWebinar && (_this15$webinar = _this15.webinar) !== null && _this15$webinar !== void 0 && _this15$webinar.selfIsAttendee ? _constants.SHARE_STATUS.REMOTE_SHARE_ACTIVE : _constants.SHARE_STATUS.WHITEBOARD_SHARE_ACTIVE;
3663
+ if ((_this15$locusInfo = _this15.locusInfo) !== null && _this15$locusInfo !== void 0 && (_this15$locusInfo$inf = _this15$locusInfo.info) !== null && _this15$locusInfo$inf !== void 0 && _this15$locusInfo$inf.isWebinar && (_this15$webinar = _this15.webinar) !== null && _this15$webinar !== void 0 && _this15$webinar.selfIsAttendee) {
3664
+ // WHITEBOARD - sharing whiteboard
3665
+ // Webinar attendee should receive whiteboard as remote share
3666
+ newShareStatus = _constants.SHARE_STATUS.REMOTE_SHARE_ACTIVE;
3667
+ } else if (_this15.guest) {
3668
+ // If user is a guest to a meeting, they should receive whiteboard as remote share
3669
+ newShareStatus = _constants.SHARE_STATUS.REMOTE_SHARE_ACTIVE;
3670
+ } else {
3671
+ newShareStatus = _constants.SHARE_STATUS.WHITEBOARD_SHARE_ACTIVE;
3672
+ }
3666
3673
  }
3667
3674
  // or if content share is either released or null and whiteboard share is either released or null, no one is sharing
3668
3675
  else if ((previousContentShare && contentShare.disposition === _constants.FLOOR_ACTION.RELEASED || contentShare.disposition === null) && (previousWhiteboardShare && whiteboardShare.disposition === _constants.FLOOR_ACTION.RELEASED || whiteboardShare.disposition === null)) {
@@ -4323,11 +4330,13 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
4323
4330
 
4324
4331
  /**
4325
4332
  * Invite a guest to the call that isn't normally part of this call
4326
- * @param {Object} invitee
4333
+ * @param {Invitee} invitee
4327
4334
  * @param {String} invitee.emailAddress
4328
4335
  * @param {String} invitee.email
4329
4336
  * @param {String} invitee.phoneNumber
4330
4337
  * @param {Boolean} [alertIfActive]
4338
+ * @param {Boolean} [invitee.skipEmailValidation]
4339
+ * @param {Boolean} [invitee.isInternalNumber]
4331
4340
  * @returns {Promise} see #members.addMember
4332
4341
  * @public
4333
4342
  * @memberof Meeting
@@ -4341,7 +4350,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
4341
4350
 
4342
4351
  /**
4343
4352
  * Cancel an outgoing phone call invitation made during a meeting
4344
- * @param {Object} invitee
4353
+ * @param {Invitee} invitee
4345
4354
  * @param {String} invitee.phoneNumber
4346
4355
  * @returns {Promise} see #members.cancelPhoneInvite
4347
4356
  * @public
@@ -4355,7 +4364,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
4355
4364
 
4356
4365
  /**
4357
4366
  * Cancel an SIP/phone call invitation made during a meeting
4358
- * @param {Object} invitee
4367
+ * @param {Invitee} invitee
4359
4368
  * @param {String} invitee.memberId
4360
4369
  * @param {Boolean} [invitee.isInternalNumber] - When cancel phone invitation, if the number is internal
4361
4370
  * @returns {Promise} see #members.cancelInviteByMemberId