@webex/plugin-meetings 3.10.0-next.2 → 3.10.0-next.3

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.10.0-next.2"
212
+ version: "3.10.0-next.3"
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.10.0-next.2"
1113
+ version: "3.10.0-next.3"
1114
1114
  });
1115
1115
  var _default = exports.default = Breakouts;
1116
1116
  //# sourceMappingURL=index.js.map
@@ -6,7 +6,7 @@ var _interopRequireDefault = require("@babel/runtime-corejs2/helpers/interopRequ
6
6
  _Object$defineProperty(exports, "__esModule", {
7
7
  value: true
8
8
  });
9
- exports.UserNotJoinedError = exports.UserInLobbyError = exports.SpaceIDDeprecatedError = exports.NoMediaEstablishedYetError = exports.MeetingNotActiveError = exports.IceGatheringFailed = exports.AddMediaFailed = void 0;
9
+ exports.UserNotJoinedError = exports.UserInLobbyError = exports.SpaceIDDeprecatedError = exports.SdpResponseTimeoutError = exports.NoMediaEstablishedYetError = exports.MeetingNotActiveError = exports.IceGatheringFailed = exports.AddMediaFailed = void 0;
10
10
  exports.createMeetingsError = createMeetingsError;
11
11
  var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/assertThisInitialized"));
12
12
  var _createClass2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/createClass"));
@@ -181,4 +181,24 @@ var AddMediaFailed = exports.AddMediaFailed = /*#__PURE__*/function (_WebexMeeti
181
181
  }(_webexMeetingsError.default);
182
182
  (0, _defineProperty2.default)(AddMediaFailed, "CODE", 30203);
183
183
  WebExMeetingsErrors[AddMediaFailed.CODE] = AddMediaFailed;
184
+
185
+ /**
186
+ * @class SdpResponseTimeoutError
187
+ * @classdesc Raised whenever we timeout waiting for remote SDP answer
188
+ * @extends WebexMeetingsError
189
+ * @property {number} code - 30204
190
+ * @property {string} message - 'Timed out waiting for REMOTE SDP ANSWER'
191
+ */
192
+ var SdpResponseTimeoutError = exports.SdpResponseTimeoutError = /*#__PURE__*/function (_WebexMeetingsError8) {
193
+ (0, _inherits2.default)(SdpResponseTimeoutError, _WebexMeetingsError8);
194
+ var _super8 = _createSuper(SdpResponseTimeoutError);
195
+ // eslint-disable-next-line require-jsdoc
196
+ function SdpResponseTimeoutError() {
197
+ (0, _classCallCheck2.default)(this, SdpResponseTimeoutError);
198
+ return _super8.call(this, SdpResponseTimeoutError.CODE, 'Timed out waiting for REMOTE SDP ANSWER');
199
+ }
200
+ return (0, _createClass2.default)(SdpResponseTimeoutError);
201
+ }(_webexMeetingsError.default);
202
+ (0, _defineProperty2.default)(SdpResponseTimeoutError, "CODE", 30204);
203
+ WebExMeetingsErrors[SdpResponseTimeoutError.CODE] = SdpResponseTimeoutError;
184
204
  //# sourceMappingURL=webex-errors.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["_webexMeetingsError","_interopRequireDefault","require","_createSuper","Derived","hasNativeReflectConstruct","_isNativeReflectConstruct","_createSuperInternal","Super","_getPrototypeOf2","default","result","NewTarget","constructor","_Reflect$construct","arguments","apply","_possibleConstructorReturn2","Reflect","sham","Proxy","Boolean","prototype","valueOf","call","e","WebExMeetingsErrors","createMeetingsError","code","message","WebexMeetingsError","MeetingNotActiveError","exports","_WebexMeetingsError","_inherits2","_super","_classCallCheck2","CODE","_createClass2","_defineProperty2","UserNotJoinedError","_WebexMeetingsError2","_super2","NoMediaEstablishedYetError","_WebexMeetingsError3","_super3","UserInLobbyError","_WebexMeetingsError4","_super4","SpaceIDDeprecatedError","_WebexMeetingsError5","_super5","IceGatheringFailed","_WebexMeetingsError6","_super6","AddMediaFailed","_WebexMeetingsError7","_super7","cause","_this","_assertThisInitialized2"],"sources":["webex-errors.ts"],"sourcesContent":["// The document would auto generate the doc for errors\n\n// 1) Error codes for Oauth, login, mercury should be separated out (Code range)\n// 2) Errors from the actual locus server or other server in case, we can use the same error code as locus and redirect it\n// 3) Any errors we generate from the SDK can be split into various categories\n// Parameter validation, user action, connection, media specific(They can have different range)\n\n// TODO: all the errors from the server need to be captured\n\n// add a way to log and send metrics if needed\nimport WebexMeetingsError from './webex-meetings-error';\n\nconst WebExMeetingsErrors = {};\n\n/**\n * Create a {@link WebexMeetingsError} for a given code and message.\n * @private\n * @param {number} [code] - Error code\n * @param {string} [message] - Error message\n * @returns {WebexMeetingsError}\n */\nexport function createMeetingsError(code?: number, message?: string) {\n code = typeof code === 'number' ? code : 0;\n message = typeof message === 'string' && message ? message : 'Unknown error';\n\n return WebExMeetingsErrors[code]\n ? new WebExMeetingsErrors[code]()\n : new WebexMeetingsError(code, message);\n}\n\n/**\n * @class MeetingNotActiveError\n * @classdesc Raised whenever Meeting has already ended and user tries to do a action.\n * @extends WebexMeetingsError\n * @property {number} code - 30101\n * @property {string} message - 'Meeting has already Ended or not Active'\n */\nclass MeetingNotActiveError extends WebexMeetingsError {\n static CODE = 30101;\n\n constructor() {\n super(MeetingNotActiveError.CODE, 'Meeting has already Ended or not Active');\n }\n}\n\nexport {MeetingNotActiveError};\nWebExMeetingsErrors[MeetingNotActiveError.CODE] = MeetingNotActiveError;\n\n/**\n * @class UserNotJoinedError\n * @classdesc Raised whenever the user has already left the meeting and user tries to do a action.\n * @extends WebexMeetingsError\n * @property {number} code - 30102\n * @property {string} message - 'User has already left the meeting'\n */\nclass UserNotJoinedError extends WebexMeetingsError {\n static CODE = 30102;\n\n constructor() {\n super(\n UserNotJoinedError.CODE,\n 'User currently not in meeting. Please join a meeting before adding media.'\n );\n }\n}\n\nexport {UserNotJoinedError};\nWebExMeetingsErrors[UserNotJoinedError.CODE] = UserNotJoinedError;\n\n/**\n * @class NoMediaEstablishedYetError\n * @classdesc Raised whenever the user has not established media yet.\n * @extends WebexMeetingsError\n * @property {number} code - 30103\n * @property {string} message - error message\n */\nclass NoMediaEstablishedYetError extends WebexMeetingsError {\n static CODE = 30103;\n\n // eslint-disable-next-line require-jsdoc\n constructor() {\n super(\n NoMediaEstablishedYetError.CODE,\n 'Webrtc media connection is missing, call addMedia() first'\n );\n }\n}\n\nexport {NoMediaEstablishedYetError};\nWebExMeetingsErrors[NoMediaEstablishedYetError.CODE] = NoMediaEstablishedYetError;\n\n/**\n * @class UserInLobbyError\n * @classdesc Raised whenever the user is in lobby and not joined yet.\n * @extends WebexMeetingsError\n * @property {number} code - 30104\n * @property {string} message - 'user is still in the lobby or not joined'\n */\nclass UserInLobbyError extends WebexMeetingsError {\n static CODE = 30104;\n\n constructor() {\n super(UserInLobbyError.CODE, 'user is still in the lobby or not joined');\n }\n}\n\nexport {UserInLobbyError};\nWebExMeetingsErrors[UserInLobbyError.CODE] = UserInLobbyError;\n\n/**\n * @class SpaceIDDeprecatedError\n * @classdesc Raised whenever the user passes Space ID as destination for create meeting.\n * @extends WebexMeetingsError\n * @property {number} code - 30105\n * @property {string} message - Using the space ID as a destination is no longer supported. Please refer to the [migration guide](https://github.com/webex/webex-js-sdk/wiki/Migration-to-Unified-Space-Meetings) to migrate to use the meeting ID or SIP address.'\n */\nclass SpaceIDDeprecatedError extends WebexMeetingsError {\n static CODE = 30105;\n\n constructor() {\n super(\n SpaceIDDeprecatedError.CODE,\n 'Using the space ID as a destination is no longer supported. Please refer to the [migration guide](https://github.com/webex/webex-js-sdk/wiki/Migration-to-Unified-Space-Meetings) to migrate to use the meeting ID or SIP address.'\n );\n }\n}\n\nexport {SpaceIDDeprecatedError};\nWebExMeetingsErrors[SpaceIDDeprecatedError.CODE] = SpaceIDDeprecatedError;\n\n/**\n * @class IceGatheringFailed\n * @classdesc Raised whenever ice gathering fails.\n * @extends WebexMeetingsError\n * @property {number} code - 30202\n * @property {string} message - 'user failed ice gathering check network/firewall'\n */\nclass IceGatheringFailed extends WebexMeetingsError {\n static CODE = 30202;\n\n constructor() {\n super(IceGatheringFailed.CODE, 'iceConnection: gethering ice candidate failed');\n }\n}\n\nexport {IceGatheringFailed};\nWebExMeetingsErrors[IceGatheringFailed.CODE] = IceGatheringFailed;\n\n/**\n * @class AddMediaFailed\n * @classdesc Raised whenever we fail to successfully add media to a meeting\n * @extends WebexMeetingsError\n * @property {number} code - 30203\n * @property {string} message - 'Failed to add media'\n * @property {Error} [cause] - The underlying error that caused the failure\n */\nclass AddMediaFailed extends WebexMeetingsError {\n static CODE = 30203;\n cause?: Error;\n\n /**\n * Creates a new AddMediaFailed error\n * @param {Error} [cause] - The underlying error that caused the media addition to fail\n */\n constructor(cause?: Error) {\n super(AddMediaFailed.CODE, 'Failed to add media');\n this.cause = cause;\n }\n}\nexport {AddMediaFailed};\nWebExMeetingsErrors[AddMediaFailed.CODE] = AddMediaFailed;\n"],"mappings":"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"}
1
+ {"version":3,"names":["_webexMeetingsError","_interopRequireDefault","require","_createSuper","Derived","hasNativeReflectConstruct","_isNativeReflectConstruct","_createSuperInternal","Super","_getPrototypeOf2","default","result","NewTarget","constructor","_Reflect$construct","arguments","apply","_possibleConstructorReturn2","Reflect","sham","Proxy","Boolean","prototype","valueOf","call","e","WebExMeetingsErrors","createMeetingsError","code","message","WebexMeetingsError","MeetingNotActiveError","exports","_WebexMeetingsError","_inherits2","_super","_classCallCheck2","CODE","_createClass2","_defineProperty2","UserNotJoinedError","_WebexMeetingsError2","_super2","NoMediaEstablishedYetError","_WebexMeetingsError3","_super3","UserInLobbyError","_WebexMeetingsError4","_super4","SpaceIDDeprecatedError","_WebexMeetingsError5","_super5","IceGatheringFailed","_WebexMeetingsError6","_super6","AddMediaFailed","_WebexMeetingsError7","_super7","cause","_this","_assertThisInitialized2","SdpResponseTimeoutError","_WebexMeetingsError8","_super8"],"sources":["webex-errors.ts"],"sourcesContent":["// The document would auto generate the doc for errors\n\n// 1) Error codes for Oauth, login, mercury should be separated out (Code range)\n// 2) Errors from the actual locus server or other server in case, we can use the same error code as locus and redirect it\n// 3) Any errors we generate from the SDK can be split into various categories\n// Parameter validation, user action, connection, media specific(They can have different range)\n\n// TODO: all the errors from the server need to be captured\n\n// add a way to log and send metrics if needed\nimport WebexMeetingsError from './webex-meetings-error';\n\nconst WebExMeetingsErrors = {};\n\n/**\n * Create a {@link WebexMeetingsError} for a given code and message.\n * @private\n * @param {number} [code] - Error code\n * @param {string} [message] - Error message\n * @returns {WebexMeetingsError}\n */\nexport function createMeetingsError(code?: number, message?: string) {\n code = typeof code === 'number' ? code : 0;\n message = typeof message === 'string' && message ? message : 'Unknown error';\n\n return WebExMeetingsErrors[code]\n ? new WebExMeetingsErrors[code]()\n : new WebexMeetingsError(code, message);\n}\n\n/**\n * @class MeetingNotActiveError\n * @classdesc Raised whenever Meeting has already ended and user tries to do a action.\n * @extends WebexMeetingsError\n * @property {number} code - 30101\n * @property {string} message - 'Meeting has already Ended or not Active'\n */\nclass MeetingNotActiveError extends WebexMeetingsError {\n static CODE = 30101;\n\n constructor() {\n super(MeetingNotActiveError.CODE, 'Meeting has already Ended or not Active');\n }\n}\n\nexport {MeetingNotActiveError};\nWebExMeetingsErrors[MeetingNotActiveError.CODE] = MeetingNotActiveError;\n\n/**\n * @class UserNotJoinedError\n * @classdesc Raised whenever the user has already left the meeting and user tries to do a action.\n * @extends WebexMeetingsError\n * @property {number} code - 30102\n * @property {string} message - 'User has already left the meeting'\n */\nclass UserNotJoinedError extends WebexMeetingsError {\n static CODE = 30102;\n\n constructor() {\n super(\n UserNotJoinedError.CODE,\n 'User currently not in meeting. Please join a meeting before adding media.'\n );\n }\n}\n\nexport {UserNotJoinedError};\nWebExMeetingsErrors[UserNotJoinedError.CODE] = UserNotJoinedError;\n\n/**\n * @class NoMediaEstablishedYetError\n * @classdesc Raised whenever the user has not established media yet.\n * @extends WebexMeetingsError\n * @property {number} code - 30103\n * @property {string} message - error message\n */\nclass NoMediaEstablishedYetError extends WebexMeetingsError {\n static CODE = 30103;\n\n // eslint-disable-next-line require-jsdoc\n constructor() {\n super(\n NoMediaEstablishedYetError.CODE,\n 'Webrtc media connection is missing, call addMedia() first'\n );\n }\n}\n\nexport {NoMediaEstablishedYetError};\nWebExMeetingsErrors[NoMediaEstablishedYetError.CODE] = NoMediaEstablishedYetError;\n\n/**\n * @class UserInLobbyError\n * @classdesc Raised whenever the user is in lobby and not joined yet.\n * @extends WebexMeetingsError\n * @property {number} code - 30104\n * @property {string} message - 'user is still in the lobby or not joined'\n */\nclass UserInLobbyError extends WebexMeetingsError {\n static CODE = 30104;\n\n constructor() {\n super(UserInLobbyError.CODE, 'user is still in the lobby or not joined');\n }\n}\n\nexport {UserInLobbyError};\nWebExMeetingsErrors[UserInLobbyError.CODE] = UserInLobbyError;\n\n/**\n * @class SpaceIDDeprecatedError\n * @classdesc Raised whenever the user passes Space ID as destination for create meeting.\n * @extends WebexMeetingsError\n * @property {number} code - 30105\n * @property {string} message - Using the space ID as a destination is no longer supported. Please refer to the [migration guide](https://github.com/webex/webex-js-sdk/wiki/Migration-to-Unified-Space-Meetings) to migrate to use the meeting ID or SIP address.'\n */\nclass SpaceIDDeprecatedError extends WebexMeetingsError {\n static CODE = 30105;\n\n constructor() {\n super(\n SpaceIDDeprecatedError.CODE,\n 'Using the space ID as a destination is no longer supported. Please refer to the [migration guide](https://github.com/webex/webex-js-sdk/wiki/Migration-to-Unified-Space-Meetings) to migrate to use the meeting ID or SIP address.'\n );\n }\n}\n\nexport {SpaceIDDeprecatedError};\nWebExMeetingsErrors[SpaceIDDeprecatedError.CODE] = SpaceIDDeprecatedError;\n\n/**\n * @class IceGatheringFailed\n * @classdesc Raised whenever ice gathering fails.\n * @extends WebexMeetingsError\n * @property {number} code - 30202\n * @property {string} message - 'user failed ice gathering check network/firewall'\n */\nclass IceGatheringFailed extends WebexMeetingsError {\n static CODE = 30202;\n\n constructor() {\n super(IceGatheringFailed.CODE, 'iceConnection: gethering ice candidate failed');\n }\n}\n\nexport {IceGatheringFailed};\nWebExMeetingsErrors[IceGatheringFailed.CODE] = IceGatheringFailed;\n\n/**\n * @class AddMediaFailed\n * @classdesc Raised whenever we fail to successfully add media to a meeting\n * @extends WebexMeetingsError\n * @property {number} code - 30203\n * @property {string} message - 'Failed to add media'\n * @property {Error} [cause] - The underlying error that caused the failure\n */\nclass AddMediaFailed extends WebexMeetingsError {\n static CODE = 30203;\n cause?: Error;\n\n /**\n * Creates a new AddMediaFailed error\n * @param {Error} [cause] - The underlying error that caused the media addition to fail\n */\n constructor(cause?: Error) {\n super(AddMediaFailed.CODE, 'Failed to add media');\n this.cause = cause;\n }\n}\nexport {AddMediaFailed};\nWebExMeetingsErrors[AddMediaFailed.CODE] = AddMediaFailed;\n\n/**\n * @class SdpResponseTimeoutError\n * @classdesc Raised whenever we timeout waiting for remote SDP answer\n * @extends WebexMeetingsError\n * @property {number} code - 30204\n * @property {string} message - 'Timed out waiting for REMOTE SDP ANSWER'\n */\nclass SdpResponseTimeoutError extends WebexMeetingsError {\n static CODE = 30204;\n\n // eslint-disable-next-line require-jsdoc\n constructor() {\n super(SdpResponseTimeoutError.CODE, 'Timed out waiting for REMOTE SDP ANSWER');\n }\n}\n\nexport {SdpResponseTimeoutError};\nWebExMeetingsErrors[SdpResponseTimeoutError.CODE] = SdpResponseTimeoutError;\n"],"mappings":"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"}
package/dist/index.js CHANGED
@@ -161,6 +161,12 @@ _Object$defineProperty(exports, "RemoteStreamEventNames", {
161
161
  return _mediaHelpers.RemoteStreamEventNames;
162
162
  }
163
163
  });
164
+ _Object$defineProperty(exports, "SdpResponseTimeoutError", {
165
+ enumerable: true,
166
+ get: function get() {
167
+ return _webexErrors.SdpResponseTimeoutError;
168
+ }
169
+ });
164
170
  _Object$defineProperty(exports, "StreamEventNames", {
165
171
  enumerable: true,
166
172
  get: function get() {
@@ -223,6 +229,7 @@ var _reclaimHostRoleErrors = require("./common/errors/reclaim-host-role-errors")
223
229
  var _meeting = _interopRequireDefault(require("./meeting"));
224
230
  var _utilv = _interopRequireDefault(require("./meeting-info/utilv2"));
225
231
  var _joinMeeting = _interopRequireDefault(require("./common/errors/join-meeting"));
232
+ var _webexErrors = require("./common/errors/webex-errors");
226
233
  var _mediaHelpers = require("@webex/media-helpers");
227
234
  var _CONSTANTS = _interopRequireWildcard(require("./constants"));
228
235
  exports.CONSTANTS = _CONSTANTS;
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"names":["_webexCore","require","_meetings","_interopRequireDefault","_config","_interceptors","_captchaError","_intentToJoin","_passwordError","_permission","_joinWebinarError","_reclaimHostRoleErrors","_meeting","_utilv","_joinMeeting","_mediaHelpers","_CONSTANTS","_interopRequireWildcard","exports","CONSTANTS","_REACTIONS","REACTIONS","_sdkAnnotationTypes","sdkAnnotationTypes","_MeetingInfoV","MeetingInfoV2","_remoteMedia","_triggerProxy","_getRequireWildcardCache","e","_WeakMap","r","t","__esModule","_typeof","default","has","get","n","__proto__","a","_Object$defineProperty","_Object$getOwnPropertyDescriptor","u","Object","prototype","hasOwnProperty","call","i","set","registerPlugin","Meetings","config","interceptors","LocusRetryStatusInterceptor","create","LocusRouteTokenInterceptor","_default"],"sources":["index.ts"],"sourcesContent":["/* eslint-env browser */\nimport {registerPlugin} from '@webex/webex-core';\n\nimport Meetings from './meetings';\nimport config from './config';\nimport {LocusRetryStatusInterceptor, LocusRouteTokenInterceptor} from './interceptors';\nimport CaptchaError from './common/errors/captcha-error';\nimport IntentToJoinError from './common/errors/intent-to-join';\nimport PasswordError from './common/errors/password-error';\nimport PermissionError from './common/errors/permission';\nimport JoinWebinarError from './common/errors/join-webinar-error';\nimport {\n ReclaimHostEmptyWrongKeyError,\n ReclaimHostIsHostAlreadyError,\n ReclaimHostNotAllowedError,\n ReclaimHostNotSupportedError,\n} from './common/errors/reclaim-host-role-errors';\nimport Meeting from './meeting';\nimport MeetingInfoUtil from './meeting-info/utilv2';\nimport JoinMeetingError from './common/errors/join-meeting';\n\nregisterPlugin('meetings', Meetings, {\n config,\n interceptors: {\n LocusRetryStatusInterceptor: LocusRetryStatusInterceptor.create,\n LocusRouteTokenInterceptor: LocusRouteTokenInterceptor.create,\n },\n});\n\nexport {\n LocalStream,\n LocalDisplayStream,\n LocalSystemAudioStream,\n LocalStreamEventNames,\n StreamEventNames,\n RemoteStreamEventNames,\n type ServerMuteReason,\n LocalMicrophoneStreamEventNames,\n LocalCameraStreamEventNames,\n LocalMicrophoneStream,\n LocalCameraStream,\n createMicrophoneStream,\n createCameraStream,\n createCameraAndMicrophoneStreams,\n createDisplayStream,\n createDisplayStreamWithAudio,\n createDisplayMedia,\n FacingMode,\n DisplaySurface,\n PresetCameraConstraints,\n type VideoContentHint,\n type StreamState,\n} from '@webex/media-helpers';\n\nexport default Meetings;\n\nexport * as CONSTANTS from './constants';\nexport * as REACTIONS from './reactions/reactions';\nexport * as sdkAnnotationTypes from './annotation/annotation.types';\nexport * as MeetingInfoV2 from './meeting-info/meeting-info-v2';\nexport {type Reaction} from './reactions/reactions.type';\n\nexport {\n CaptchaError,\n IntentToJoinError,\n JoinMeetingError,\n PasswordError,\n PermissionError,\n ReclaimHostIsHostAlreadyError,\n ReclaimHostNotAllowedError,\n ReclaimHostNotSupportedError,\n ReclaimHostEmptyWrongKeyError,\n Meeting,\n MeetingInfoUtil,\n JoinWebinarError,\n};\n\nexport {RemoteMedia} from './multistream/remoteMedia';\n\nexport {default as TriggerProxy} from './common/events/trigger-proxy';\n"],"mappings":"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"}
1
+ {"version":3,"names":["_webexCore","require","_meetings","_interopRequireDefault","_config","_interceptors","_captchaError","_intentToJoin","_passwordError","_permission","_joinWebinarError","_reclaimHostRoleErrors","_meeting","_utilv","_joinMeeting","_webexErrors","_mediaHelpers","_CONSTANTS","_interopRequireWildcard","exports","CONSTANTS","_REACTIONS","REACTIONS","_sdkAnnotationTypes","sdkAnnotationTypes","_MeetingInfoV","MeetingInfoV2","_remoteMedia","_triggerProxy","_getRequireWildcardCache","e","_WeakMap","r","t","__esModule","_typeof","default","has","get","n","__proto__","a","_Object$defineProperty","_Object$getOwnPropertyDescriptor","u","Object","prototype","hasOwnProperty","call","i","set","registerPlugin","Meetings","config","interceptors","LocusRetryStatusInterceptor","create","LocusRouteTokenInterceptor","_default"],"sources":["index.ts"],"sourcesContent":["/* eslint-env browser */\nimport {registerPlugin} from '@webex/webex-core';\n\nimport Meetings from './meetings';\nimport config from './config';\nimport {LocusRetryStatusInterceptor, LocusRouteTokenInterceptor} from './interceptors';\nimport CaptchaError from './common/errors/captcha-error';\nimport IntentToJoinError from './common/errors/intent-to-join';\nimport PasswordError from './common/errors/password-error';\nimport PermissionError from './common/errors/permission';\nimport JoinWebinarError from './common/errors/join-webinar-error';\nimport {\n ReclaimHostEmptyWrongKeyError,\n ReclaimHostIsHostAlreadyError,\n ReclaimHostNotAllowedError,\n ReclaimHostNotSupportedError,\n} from './common/errors/reclaim-host-role-errors';\nimport Meeting from './meeting';\nimport MeetingInfoUtil from './meeting-info/utilv2';\nimport JoinMeetingError from './common/errors/join-meeting';\nimport {SdpResponseTimeoutError} from './common/errors/webex-errors';\n\nregisterPlugin('meetings', Meetings, {\n config,\n interceptors: {\n LocusRetryStatusInterceptor: LocusRetryStatusInterceptor.create,\n LocusRouteTokenInterceptor: LocusRouteTokenInterceptor.create,\n },\n});\n\nexport {\n LocalStream,\n LocalDisplayStream,\n LocalSystemAudioStream,\n LocalStreamEventNames,\n StreamEventNames,\n RemoteStreamEventNames,\n type ServerMuteReason,\n LocalMicrophoneStreamEventNames,\n LocalCameraStreamEventNames,\n LocalMicrophoneStream,\n LocalCameraStream,\n createMicrophoneStream,\n createCameraStream,\n createCameraAndMicrophoneStreams,\n createDisplayStream,\n createDisplayStreamWithAudio,\n createDisplayMedia,\n FacingMode,\n DisplaySurface,\n PresetCameraConstraints,\n type VideoContentHint,\n type StreamState,\n} from '@webex/media-helpers';\n\nexport default Meetings;\n\nexport * as CONSTANTS from './constants';\nexport * as REACTIONS from './reactions/reactions';\nexport * as sdkAnnotationTypes from './annotation/annotation.types';\nexport * as MeetingInfoV2 from './meeting-info/meeting-info-v2';\nexport {type Reaction} from './reactions/reactions.type';\n\nexport {\n CaptchaError,\n IntentToJoinError,\n JoinMeetingError,\n PasswordError,\n PermissionError,\n ReclaimHostIsHostAlreadyError,\n ReclaimHostNotAllowedError,\n ReclaimHostNotSupportedError,\n ReclaimHostEmptyWrongKeyError,\n Meeting,\n MeetingInfoUtil,\n JoinWebinarError,\n SdpResponseTimeoutError,\n};\n\nexport {RemoteMedia} from './multistream/remoteMedia';\n\nexport {default as TriggerProxy} from './common/events/trigger-proxy';\n"],"mappings":"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"}
@@ -373,7 +373,7 @@ var SimultaneousInterpretation = _webexCore.WebexPlugin.extend({
373
373
  throw error;
374
374
  });
375
375
  },
376
- version: "3.10.0-next.2"
376
+ version: "3.10.0-next.3"
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.10.0-next.2"
21
+ version: "3.10.0-next.3"
22
22
  });
23
23
  var _default = exports.default = SILanguage;
24
24
  //# sourceMappingURL=siLanguage.js.map
@@ -7181,7 +7181,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
7181
7181
  deferSDPAnswer = this.deferSDPAnswer;
7182
7182
  this.sdpResponseTimer = setTimeout(function () {
7183
7183
  _loggerProxy.default.logger.warn("".concat(LOG_HEADER, " timeout! no REMOTE SDP ANSWER received within ").concat(_constants.ROAP_OFFER_ANSWER_EXCHANGE_TIMEOUT / 1000, " seconds"));
7184
- var error = new Error('Timed out waiting for REMOTE SDP ANSWER');
7184
+ var error = new _webexErrors.SdpResponseTimeoutError();
7185
7185
 
7186
7186
  // @ts-ignore
7187
7187
  _this45.webex.internal.newMetrics.submitClientEvent({