@webex/plugin-meetings 3.0.0-beta.97 → 3.0.0-beta.98
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/meeting/index.js +3 -3
- package/dist/meeting/index.js.map +1 -1
- package/dist/meeting-info/meeting-info-v2.js +16 -12
- package/dist/meeting-info/meeting-info-v2.js.map +1 -1
- package/dist/meeting-info/utilv2.js +3 -2
- package/dist/meeting-info/utilv2.js.map +1 -1
- package/dist/meetings/index.js +28 -19
- package/dist/meetings/index.js.map +1 -1
- package/dist/types/meeting/index.d.ts +2 -1
- package/dist/types/meeting-info/meeting-info-v2.d.ts +2 -1
- package/dist/types/meetings/index.d.ts +3 -1
- package/package.json +19 -19
- package/src/meeting/index.ts +4 -1
- package/src/meeting-info/meeting-info-v2.ts +4 -1
- package/src/meeting-info/utilv2.ts +5 -2
- package/src/meetings/index.ts +56 -45
- package/test/unit/spec/meeting/index.js +9 -2
- package/test/unit/spec/meeting-info/meetinginfov2.js +27 -0
- package/test/unit/spec/meeting-info/utilv2.js +21 -0
- package/test/unit/spec/meetings/index.js +124 -101
package/dist/breakouts/index.js
CHANGED
|
@@ -907,7 +907,7 @@ var Breakouts = _webexCore.WebexPlugin.extend({
|
|
|
907
907
|
this.trigger(_constants.BREAKOUTS.EVENTS.ASK_RETURN_TO_MAIN);
|
|
908
908
|
}
|
|
909
909
|
},
|
|
910
|
-
version: "3.0.0-beta.
|
|
910
|
+
version: "3.0.0-beta.98"
|
|
911
911
|
});
|
|
912
912
|
var _default = Breakouts;
|
|
913
913
|
exports.default = _default;
|
package/dist/meeting/index.js
CHANGED
|
@@ -1749,11 +1749,11 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
1749
1749
|
key: "fetchMeetingInfo",
|
|
1750
1750
|
value: function () {
|
|
1751
1751
|
var _fetchMeetingInfo = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(_ref5) {
|
|
1752
|
-
var _ref5$password, password, _ref5$captchaCode, captchaCode, captchaInfo, info, _err$body, _err$body2;
|
|
1752
|
+
var _ref5$password, password, _ref5$captchaCode, captchaCode, _ref5$extraParams, extraParams, captchaInfo, info, _err$body, _err$body2;
|
|
1753
1753
|
return _regenerator.default.wrap(function _callee2$(_context2) {
|
|
1754
1754
|
while (1) switch (_context2.prev = _context2.next) {
|
|
1755
1755
|
case 0:
|
|
1756
|
-
_ref5$password = _ref5.password, password = _ref5$password === void 0 ? null : _ref5$password, _ref5$captchaCode = _ref5.captchaCode, captchaCode = _ref5$captchaCode === void 0 ? null : _ref5$captchaCode;
|
|
1756
|
+
_ref5$password = _ref5.password, password = _ref5$password === void 0 ? null : _ref5$password, _ref5$captchaCode = _ref5.captchaCode, captchaCode = _ref5$captchaCode === void 0 ? null : _ref5$captchaCode, _ref5$extraParams = _ref5.extraParams, extraParams = _ref5$extraParams === void 0 ? {} : _ref5$extraParams;
|
|
1757
1757
|
// when fetch meeting info is called directly by the client, we want to clear out the random timer for sdk to do it
|
|
1758
1758
|
if (this.fetchMeetingInfoTimeoutId) {
|
|
1759
1759
|
clearTimeout(this.fetchMeetingInfoTimeoutId);
|
|
@@ -1779,7 +1779,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
1779
1779
|
_context2.next = 10;
|
|
1780
1780
|
return this.attrs.meetingInfoProvider.fetchMeetingInfo(this.destination, this.destinationType, password, captchaInfo,
|
|
1781
1781
|
// @ts-ignore - config coming from registerPlugin
|
|
1782
|
-
this.config.installedOrgID, this.locusId);
|
|
1782
|
+
this.config.installedOrgID, this.locusId, extraParams);
|
|
1783
1783
|
case 10:
|
|
1784
1784
|
info = _context2.sent;
|
|
1785
1785
|
this.parseMeetingInfo(info, this.destination);
|