@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.
- package/dist/breakouts/breakout.js +1 -1
- package/dist/breakouts/index.js +1 -1
- package/dist/interpretation/index.js +1 -1
- package/dist/interpretation/siLanguage.js +1 -1
- package/dist/meeting/index.js +15 -6
- package/dist/meeting/index.js.map +1 -1
- package/dist/meeting/type.js +7 -0
- package/dist/meeting/type.js.map +1 -0
- package/dist/members/index.js +4 -4
- package/dist/members/index.js.map +1 -1
- package/dist/members/util.js.map +1 -1
- package/dist/types/meeting/index.d.ts +9 -16
- package/dist/types/meeting/type.d.ts +9 -0
- package/dist/types/members/index.d.ts +7 -9
- package/dist/types/members/util.d.ts +2 -1
- package/dist/webinar/index.js +1 -1
- package/package.json +3 -3
- package/src/meeting/index.ts +19 -20
- package/src/meeting/type.ts +9 -0
- package/src/members/index.ts +8 -7
- package/src/members/util.ts +2 -1
- package/test/unit/spec/meeting/index.js +34 -5
- package/test/unit/spec/members/index.js +36 -0
package/dist/breakouts/index.js
CHANGED
@@ -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.
|
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.
|
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.
|
21
|
+
version: "3.8.1-next.33"
|
22
22
|
});
|
23
23
|
var _default = exports.default = SILanguage;
|
24
24
|
//# sourceMappingURL=siLanguage.js.map
|
package/dist/meeting/index.js
CHANGED
@@ -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
|
-
|
3664
|
-
|
3665
|
-
|
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 {
|
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 {
|
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 {
|
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
|