@webex/plugin-meetings 2.59.8 → 2.60.0

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.
@@ -0,0 +1,60 @@
1
+ /**
2
+ * Extended Error object for reclaim host role empty or wrong key
3
+ */
4
+ export declare class ReclaimHostEmptyWrongKeyError extends Error {
5
+ sdkMessage: string;
6
+ error: null;
7
+ code: number;
8
+ /**
9
+ *
10
+ * @constructor
11
+ * @param {String} [message]
12
+ * @param {Object} [error]
13
+ */
14
+ constructor(message?: string, error?: any);
15
+ }
16
+ /**
17
+ * Extended Error object for reclaim host role not supported
18
+ */
19
+ export declare class ReclaimHostNotSupportedError extends Error {
20
+ sdkMessage: string;
21
+ error: null;
22
+ code: number;
23
+ /**
24
+ *
25
+ * @constructor
26
+ * @param {String} [message]
27
+ * @param {Object} [error]
28
+ */
29
+ constructor(message?: string, error?: any);
30
+ }
31
+ /**
32
+ * Extended Error object for reclaim host role not allowed for other participants
33
+ */
34
+ export declare class ReclaimHostNotAllowedError extends Error {
35
+ sdkMessage: string;
36
+ error: null;
37
+ code: number;
38
+ /**
39
+ *
40
+ * @constructor
41
+ * @param {String} [message]
42
+ * @param {Object} [error]
43
+ */
44
+ constructor(message?: string, error?: any);
45
+ }
46
+ /**
47
+ * Extended Error object for reclaim host role when user is host already
48
+ */
49
+ export declare class ReclaimHostIsHostAlreadyError extends Error {
50
+ sdkMessage: string;
51
+ error: null;
52
+ code: number;
53
+ /**
54
+ *
55
+ * @constructor
56
+ * @param {String} [message]
57
+ * @param {Object} [error]
58
+ */
59
+ constructor(message?: string, error?: any);
60
+ }
@@ -0,0 +1,158 @@
1
+ "use strict";
2
+
3
+ var _typeof = require("@babel/runtime-corejs2/helpers/typeof");
4
+ var _Reflect$construct = require("@babel/runtime-corejs2/core-js/reflect/construct");
5
+ var _WeakMap = require("@babel/runtime-corejs2/core-js/weak-map");
6
+ var _Object$defineProperty = require("@babel/runtime-corejs2/core-js/object/define-property");
7
+ var _Object$getOwnPropertyDescriptor = require("@babel/runtime-corejs2/core-js/object/get-own-property-descriptor");
8
+ var _interopRequireDefault = require("@babel/runtime-corejs2/helpers/interopRequireDefault");
9
+ _Object$defineProperty(exports, "__esModule", {
10
+ value: true
11
+ });
12
+ exports.ReclaimHostNotSupportedError = exports.ReclaimHostNotAllowedError = exports.ReclaimHostIsHostAlreadyError = exports.ReclaimHostEmptyWrongKeyError = void 0;
13
+ var _createClass2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/createClass"));
14
+ var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/classCallCheck"));
15
+ var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/assertThisInitialized"));
16
+ var _inherits2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/inherits"));
17
+ var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/possibleConstructorReturn"));
18
+ var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/getPrototypeOf"));
19
+ var _wrapNativeSuper2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/wrapNativeSuper"));
20
+ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/defineProperty"));
21
+ var MEETINGCONSTANTS = _interopRequireWildcard(require("../../constants"));
22
+ function _getRequireWildcardCache(nodeInterop) { if (typeof _WeakMap !== "function") return null; var cacheBabelInterop = new _WeakMap(); var cacheNodeInterop = new _WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
23
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = _Object$defineProperty && _Object$getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? _Object$getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { _Object$defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
24
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = _Reflect$construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
25
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !_Reflect$construct) return false; if (_Reflect$construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(_Reflect$construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
26
+ /**
27
+ * Extended Error object for reclaim host role empty or wrong key
28
+ */
29
+ var ReclaimHostEmptyWrongKeyError = /*#__PURE__*/function (_Error) {
30
+ (0, _inherits2.default)(ReclaimHostEmptyWrongKeyError, _Error);
31
+ var _super = _createSuper(ReclaimHostEmptyWrongKeyError);
32
+ /**
33
+ *
34
+ * @constructor
35
+ * @param {String} [message]
36
+ * @param {Object} [error]
37
+ */
38
+ function ReclaimHostEmptyWrongKeyError() {
39
+ var _this;
40
+ var message = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_EMPTY_OR_WRONG_KEY.MESSAGE;
41
+ var error = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
42
+ (0, _classCallCheck2.default)(this, ReclaimHostEmptyWrongKeyError);
43
+ _this = _super.call(this, message);
44
+ (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "sdkMessage", void 0);
45
+ (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "error", void 0);
46
+ (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "code", void 0);
47
+ if (Error.captureStackTrace) {
48
+ Error.captureStackTrace((0, _assertThisInitialized2.default)(_this), ReclaimHostEmptyWrongKeyError);
49
+ }
50
+ _this.name = MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_EMPTY_OR_WRONG_KEY.NAME;
51
+ _this.sdkMessage = message || MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_EMPTY_OR_WRONG_KEY.MESSAGE;
52
+ _this.error = error;
53
+ _this.code = MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_EMPTY_OR_WRONG_KEY.CODE;
54
+ return _this;
55
+ }
56
+ return (0, _createClass2.default)(ReclaimHostEmptyWrongKeyError);
57
+ }( /*#__PURE__*/(0, _wrapNativeSuper2.default)(Error));
58
+ /**
59
+ * Extended Error object for reclaim host role not supported
60
+ */
61
+ exports.ReclaimHostEmptyWrongKeyError = ReclaimHostEmptyWrongKeyError;
62
+ var ReclaimHostNotSupportedError = /*#__PURE__*/function (_Error2) {
63
+ (0, _inherits2.default)(ReclaimHostNotSupportedError, _Error2);
64
+ var _super2 = _createSuper(ReclaimHostNotSupportedError);
65
+ /**
66
+ *
67
+ * @constructor
68
+ * @param {String} [message]
69
+ * @param {Object} [error]
70
+ */
71
+ function ReclaimHostNotSupportedError() {
72
+ var _this2;
73
+ var message = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_NOT_SUPPORTED.MESSAGE;
74
+ var error = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
75
+ (0, _classCallCheck2.default)(this, ReclaimHostNotSupportedError);
76
+ _this2 = _super2.call(this, message);
77
+ (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this2), "sdkMessage", void 0);
78
+ (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this2), "error", void 0);
79
+ (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this2), "code", void 0);
80
+ if (Error.captureStackTrace) {
81
+ Error.captureStackTrace((0, _assertThisInitialized2.default)(_this2), ReclaimHostNotSupportedError);
82
+ }
83
+ _this2.name = MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_NOT_SUPPORTED.NAME;
84
+ _this2.sdkMessage = message || MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_NOT_SUPPORTED.MESSAGE;
85
+ _this2.error = error;
86
+ _this2.code = MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_NOT_SUPPORTED.CODE;
87
+ return _this2;
88
+ }
89
+ return (0, _createClass2.default)(ReclaimHostNotSupportedError);
90
+ }( /*#__PURE__*/(0, _wrapNativeSuper2.default)(Error));
91
+ /**
92
+ * Extended Error object for reclaim host role not allowed for other participants
93
+ */
94
+ exports.ReclaimHostNotSupportedError = ReclaimHostNotSupportedError;
95
+ var ReclaimHostNotAllowedError = /*#__PURE__*/function (_Error3) {
96
+ (0, _inherits2.default)(ReclaimHostNotAllowedError, _Error3);
97
+ var _super3 = _createSuper(ReclaimHostNotAllowedError);
98
+ /**
99
+ *
100
+ * @constructor
101
+ * @param {String} [message]
102
+ * @param {Object} [error]
103
+ */
104
+ function ReclaimHostNotAllowedError() {
105
+ var _this3;
106
+ var message = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_NOT_ALLOWED.MESSAGE;
107
+ var error = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
108
+ (0, _classCallCheck2.default)(this, ReclaimHostNotAllowedError);
109
+ _this3 = _super3.call(this, message);
110
+ (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this3), "sdkMessage", void 0);
111
+ (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this3), "error", void 0);
112
+ (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this3), "code", void 0);
113
+ if (Error.captureStackTrace) {
114
+ Error.captureStackTrace((0, _assertThisInitialized2.default)(_this3), ReclaimHostNotAllowedError);
115
+ }
116
+ _this3.name = MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_NOT_ALLOWED.NAME;
117
+ _this3.sdkMessage = message || MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_NOT_ALLOWED.MESSAGE;
118
+ _this3.error = error;
119
+ _this3.code = MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_NOT_ALLOWED.CODE;
120
+ return _this3;
121
+ }
122
+ return (0, _createClass2.default)(ReclaimHostNotAllowedError);
123
+ }( /*#__PURE__*/(0, _wrapNativeSuper2.default)(Error));
124
+ /**
125
+ * Extended Error object for reclaim host role when user is host already
126
+ */
127
+ exports.ReclaimHostNotAllowedError = ReclaimHostNotAllowedError;
128
+ var ReclaimHostIsHostAlreadyError = /*#__PURE__*/function (_Error4) {
129
+ (0, _inherits2.default)(ReclaimHostIsHostAlreadyError, _Error4);
130
+ var _super4 = _createSuper(ReclaimHostIsHostAlreadyError);
131
+ /**
132
+ *
133
+ * @constructor
134
+ * @param {String} [message]
135
+ * @param {Object} [error]
136
+ */
137
+ function ReclaimHostIsHostAlreadyError() {
138
+ var _this4;
139
+ var message = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_IS_ALREADY_HOST.MESSAGE;
140
+ var error = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
141
+ (0, _classCallCheck2.default)(this, ReclaimHostIsHostAlreadyError);
142
+ _this4 = _super4.call(this, message);
143
+ (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this4), "sdkMessage", void 0);
144
+ (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this4), "error", void 0);
145
+ (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this4), "code", void 0);
146
+ if (Error.captureStackTrace) {
147
+ Error.captureStackTrace((0, _assertThisInitialized2.default)(_this4), ReclaimHostIsHostAlreadyError);
148
+ }
149
+ _this4.name = MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_IS_ALREADY_HOST.NAME;
150
+ _this4.sdkMessage = message || MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_IS_ALREADY_HOST.MESSAGE;
151
+ _this4.error = error;
152
+ _this4.code = MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_IS_ALREADY_HOST.CODE;
153
+ return _this4;
154
+ }
155
+ return (0, _createClass2.default)(ReclaimHostIsHostAlreadyError);
156
+ }( /*#__PURE__*/(0, _wrapNativeSuper2.default)(Error));
157
+ exports.ReclaimHostIsHostAlreadyError = ReclaimHostIsHostAlreadyError;
158
+ //# sourceMappingURL=reclaim-host-role-error.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["MEETINGCONSTANTS","_interopRequireWildcard","require","_getRequireWildcardCache","nodeInterop","_WeakMap","cacheBabelInterop","cacheNodeInterop","obj","__esModule","_typeof","default","cache","has","get","newObj","hasPropertyDescriptor","_Object$defineProperty","_Object$getOwnPropertyDescriptor","key","Object","prototype","hasOwnProperty","call","desc","set","_createSuper","Derived","hasNativeReflectConstruct","_isNativeReflectConstruct","_createSuperInternal","Super","_getPrototypeOf2","result","NewTarget","constructor","_Reflect$construct","arguments","apply","_possibleConstructorReturn2","Reflect","sham","Proxy","Boolean","valueOf","e","ReclaimHostEmptyWrongKeyError","_Error","_inherits2","_super","_this","message","length","undefined","ERROR_DICTIONARY","RECLAIM_HOST_ROLE_EMPTY_OR_WRONG_KEY","MESSAGE","error","_classCallCheck2","_defineProperty2","_assertThisInitialized2","Error","captureStackTrace","name","NAME","sdkMessage","code","CODE","_createClass2","_wrapNativeSuper2","exports","ReclaimHostNotSupportedError","_Error2","_super2","_this2","RECLAIM_HOST_ROLE_NOT_SUPPORTED","ReclaimHostNotAllowedError","_Error3","_super3","_this3","RECLAIM_HOST_ROLE_NOT_ALLOWED","ReclaimHostIsHostAlreadyError","_Error4","_super4","_this4","RECLAIM_HOST_ROLE_IS_ALREADY_HOST"],"sources":["reclaim-host-role-error.ts"],"sourcesContent":["import * as MEETINGCONSTANTS from '../../constants';\n\n/**\n * Extended Error object for reclaim host role empty or wrong key\n */\nexport class ReclaimHostEmptyWrongKeyError extends Error {\n sdkMessage: string;\n error: null;\n code: number;\n\n /**\n *\n * @constructor\n * @param {String} [message]\n * @param {Object} [error]\n */\n constructor(\n message: string = MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_EMPTY_OR_WRONG_KEY\n .MESSAGE,\n error: any = null\n ) {\n super(message);\n\n if (Error.captureStackTrace) {\n Error.captureStackTrace(this, ReclaimHostEmptyWrongKeyError);\n }\n\n this.name = MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_EMPTY_OR_WRONG_KEY.NAME;\n this.sdkMessage =\n message || MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_EMPTY_OR_WRONG_KEY.MESSAGE;\n this.error = error;\n\n this.code = MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_EMPTY_OR_WRONG_KEY.CODE;\n }\n}\n\n/**\n * Extended Error object for reclaim host role not supported\n */\nexport class ReclaimHostNotSupportedError extends Error {\n sdkMessage: string;\n error: null;\n code: number;\n\n /**\n *\n * @constructor\n * @param {String} [message]\n * @param {Object} [error]\n */\n constructor(\n message: string = MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_NOT_SUPPORTED.MESSAGE,\n error: any = null\n ) {\n super(message);\n\n if (Error.captureStackTrace) {\n Error.captureStackTrace(this, ReclaimHostNotSupportedError);\n }\n\n this.name = MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_NOT_SUPPORTED.NAME;\n this.sdkMessage =\n message || MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_NOT_SUPPORTED.MESSAGE;\n this.error = error;\n\n this.code = MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_NOT_SUPPORTED.CODE;\n }\n}\n\n/**\n * Extended Error object for reclaim host role not allowed for other participants\n */\nexport class ReclaimHostNotAllowedError extends Error {\n sdkMessage: string;\n error: null;\n code: number;\n\n /**\n *\n * @constructor\n * @param {String} [message]\n * @param {Object} [error]\n */\n constructor(\n message: string = MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_NOT_ALLOWED.MESSAGE,\n error: any = null\n ) {\n super(message);\n\n if (Error.captureStackTrace) {\n Error.captureStackTrace(this, ReclaimHostNotAllowedError);\n }\n\n this.name = MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_NOT_ALLOWED.NAME;\n this.sdkMessage =\n message || MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_NOT_ALLOWED.MESSAGE;\n this.error = error;\n\n this.code = MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_NOT_ALLOWED.CODE;\n }\n}\n\n/**\n * Extended Error object for reclaim host role when user is host already\n */\nexport class ReclaimHostIsHostAlreadyError extends Error {\n sdkMessage: string;\n error: null;\n code: number;\n\n /**\n *\n * @constructor\n * @param {String} [message]\n * @param {Object} [error]\n */\n constructor(\n message: string = MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_IS_ALREADY_HOST.MESSAGE,\n error: any = null\n ) {\n super(message);\n\n if (Error.captureStackTrace) {\n Error.captureStackTrace(this, ReclaimHostIsHostAlreadyError);\n }\n\n this.name = MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_IS_ALREADY_HOST.NAME;\n this.sdkMessage =\n message || MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_IS_ALREADY_HOST.MESSAGE;\n this.error = error;\n\n this.code = MEETINGCONSTANTS.ERROR_DICTIONARY.RECLAIM_HOST_ROLE_IS_ALREADY_HOST.CODE;\n }\n}\n"],"mappings":"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"}
@@ -154,6 +154,12 @@ export declare const CALENDAR_EVENTS: {
154
154
  UPDATE_MINIMAL: string;
155
155
  DELETE: string;
156
156
  };
157
+ export declare const ASSIGN_ROLES_ERROR_CODES: {
158
+ ReclaimHostNotSupportedErrorCode: number;
159
+ ReclaimHostNotAllowedErrorCode: number;
160
+ ReclaimHostEmptyWrongKeyErrorCode: number;
161
+ ReclaimHostIsHostAlreadyErrorCode: number;
162
+ };
157
163
  export declare const DEFAULT_GET_STATS_FILTER: {
158
164
  types: string[];
159
165
  };
@@ -328,6 +334,26 @@ export declare const ERROR_DICTIONARY: {
328
334
  MESSAGE: string;
329
335
  CODE: number;
330
336
  };
337
+ RECLAIM_HOST_ROLE_NOT_SUPPORTED: {
338
+ NAME: string;
339
+ MESSAGE: string;
340
+ CODE: number;
341
+ };
342
+ RECLAIM_HOST_ROLE_NOT_ALLOWED: {
343
+ NAME: string;
344
+ MESSAGE: string;
345
+ CODE: number;
346
+ };
347
+ RECLAIM_HOST_ROLE_EMPTY_OR_WRONG_KEY: {
348
+ NAME: string;
349
+ MESSAGE: string;
350
+ CODE: number;
351
+ };
352
+ RECLAIM_HOST_ROLE_IS_ALREADY_HOST: {
353
+ NAME: string;
354
+ MESSAGE: string;
355
+ CODE: number;
356
+ };
331
357
  };
332
358
  export declare const FLOOR_ACTION: {
333
359
  GRANTED: string;
package/dist/constants.js CHANGED
@@ -5,8 +5,8 @@ var _interopRequireDefault = require("@babel/runtime-corejs2/helpers/interopRequ
5
5
  _Object$defineProperty(exports, "__esModule", {
6
6
  value: true
7
7
  });
8
- exports.READY = exports.REACHABILITY = exports.QUALITY_LEVELS = exports.PSTN_STATUS = exports.PROVISIONAL_TYPE_DIAL_OUT = exports.PROVISIONAL_TYPE_DIAL_IN = exports.PEER_CONNECTION_STATE = exports.PC_BAIL_TIMEOUT = exports.PASSWORD_STATUS = exports.PARTICIPANT_DELTAS = exports.PARTICIPANT = exports.ONLINE = exports.OFFLINE = exports.OFFER = exports.NETWORK_TYPE = exports.NETWORK_STATUS = exports.MediaContent = exports.MQA_STATS = exports.MQA_INTEVAL = exports.MODERATOR_TRUE = exports.MODERATOR_FALSE = exports.METRICS_JOIN_TIMES_MAX_DURATION = exports.MEET_M = exports.MEETING_VIDEO_STATE_MACHINE = exports.MEETING_STATE_MACHINE = exports.MEETING_STATE = exports.MEETING_REMOVED_REASON = exports.MEETING_INFO_FAILURE_REASON = exports.MEETING_ERRORS = exports.MEETING_END_REASON = exports.MEETING_AUDIO_STATE_MACHINE = exports.MEETINGS = exports.MEETINGINFO = exports.MEET = exports.MEDIA_TRACK_CONSTRAINT = exports.MEDIA_STATE = exports.MEDIA_PEER_CONNECTION_NAME = exports.MEDIA_DEVICES = exports.MEDIA = exports.MAX_RANDOM_DELAY_FOR_MEETING_INFO = exports.LOCUS_URL = exports.LOCUSINFO = exports.LOCUSEVENT = exports.LOCUS = exports.LOCI = exports.LOCAL = exports.LIVE = exports.LEAVE = exports.LAYOUT_TYPES = exports.JOIN = exports.IPV4_REGEX = exports.INTENT_TO_JOIN = exports.ICE_TIMEOUT = exports.ICE_STATE = exports.ICE_GATHERING_STATE = exports.ICE_FAIL_TIMEOUT = exports.HTTP_VERBS = exports.HTTPS_PROTOCOL = exports.HOST = exports.HECATE = exports.GATHERING = exports.FULL_STATE = exports.FLOOR_ACTION = exports.EVENT_TYPES = exports.EVENT_TRIGGERS = exports.EVENTS = exports.ERROR_DICTIONARY = exports.ERROR = exports.ENDED = exports.END = exports.EMBEDDED_APP_TYPES = exports.DISPLAY_HINTS = exports.DIALER_REGEX = exports.DEVELOPMENT = exports.DEFAULT_GET_STATS_FILTER = exports.DEFAULT_EXCLUDED_STATS = exports.DECLINE = exports.CORRELATION_ID = exports.CONVERSATION_URL = exports.CONVERSATION_SERVICE = exports.CONTROLS = exports.CONTENT = exports.CONNECTION_STATE = exports.COMPLETE = exports.CMR_MEETINGS = exports.CLAIM = exports.CALL_REMOVED_REASON = exports.CALL = exports.CALENDAR_EVENTS_API = exports.CALENDAR_EVENTS = exports.CALENDAR = exports.BNR_STATUS = exports.AVAILABLE_RESOLUTIONS = exports.AUDIO_STATUS = exports.AUDIO_INPUT = exports.AUDIO = exports.API = exports.ANSWER = exports.ALTERNATE_REDIRECT_TRUE = exports.ALERT = void 0;
9
- exports._WEBEX_MEETING_ = exports._WAIT_ = exports._USER_ = exports._UNKNOWN_ = exports._S_LINE = exports._SLIDES_ = exports._SIP_URI_ = exports._SIP_BRIDGE_ = exports._SEND_RECEIVE_ = exports._SEND_ONLY_ = exports._ROOM_ = exports._RESOURCE_ROOM_ = exports._REQUESTED_ = exports._REMOVE_ = exports._RECEIVE_ONLY_ = exports._PERSONAL_ROOM_ = exports._PEOPLE_ = exports._OFFER_ = exports._OBSERVE_ = exports._NOT_IN_MEETING_ = exports._NONE_ = exports._MOVE_MEDIA_ = exports._MEETING_UUID_ = exports._MEETING_LINK_ = exports._MEETING_ID_ = exports._MEETING_CENTER_ = exports._MEETING_ = exports._LOCUS_ID_ = exports._LEFT_ = exports._JOIN_ = exports._JOINED_ = exports._IN_MEETING_ = exports._IN_LOBBY_ = exports._IN_ = exports._INCOMING_ = exports._INACTIVE_ = exports._ID_ = exports._IDLE_ = exports._FORCED_ = exports._ERROR_ = exports._CREATED_ = exports._CONVERSATION_URL_ = exports._CONFLICT_ = exports._CALL_ = exports._ANSWER_ = exports._ACTIVE_ = exports.WWW_DOT = exports.WHITEBOARD = exports.WEBEX_DOT_COM = exports.WBXAPPAPI_SERVICE = exports.VIDEO_STATUS = exports.VIDEO_RESOLUTIONS = exports.VIDEO_INPUT = exports.VIDEO = exports.VALID_PMR_LINK = exports.VALID_PMR_ADDRESS = exports.VALID_PIN = exports.VALID_EMAIL_ADDRESS = exports.UUID_REG = exports.USE_URI_LOOKUP_FALSE = exports.TYPE = exports.STATS = exports.SIP_URI = exports.SHARE_STOPPED_REASON = exports.SHARE_STATUS = exports.SHARE_PEER_CONNECTION_NAME = exports.SHARE = exports.SEND_DTMF_ENDPOINT = exports.SENDRECV = exports.SELF_ROLES = exports.SDP = exports.ROAP_SEQ_PRE = exports.ROAP = exports.RETRY_TIMEOUT = exports.RESOURCE = exports.REMOTE_VIDEO_CONSTRAINTS = exports.REMOTE = exports.RECORDING_STATE = exports.RECONNECTION = void 0;
8
+ exports.REACHABILITY = exports.QUALITY_LEVELS = exports.PSTN_STATUS = exports.PROVISIONAL_TYPE_DIAL_OUT = exports.PROVISIONAL_TYPE_DIAL_IN = exports.PEER_CONNECTION_STATE = exports.PC_BAIL_TIMEOUT = exports.PASSWORD_STATUS = exports.PARTICIPANT_DELTAS = exports.PARTICIPANT = exports.ONLINE = exports.OFFLINE = exports.OFFER = exports.NETWORK_TYPE = exports.NETWORK_STATUS = exports.MediaContent = exports.MQA_STATS = exports.MQA_INTEVAL = exports.MODERATOR_TRUE = exports.MODERATOR_FALSE = exports.METRICS_JOIN_TIMES_MAX_DURATION = exports.MEET_M = exports.MEETING_VIDEO_STATE_MACHINE = exports.MEETING_STATE_MACHINE = exports.MEETING_STATE = exports.MEETING_REMOVED_REASON = exports.MEETING_INFO_FAILURE_REASON = exports.MEETING_ERRORS = exports.MEETING_END_REASON = exports.MEETING_AUDIO_STATE_MACHINE = exports.MEETINGS = exports.MEETINGINFO = exports.MEET = exports.MEDIA_TRACK_CONSTRAINT = exports.MEDIA_STATE = exports.MEDIA_PEER_CONNECTION_NAME = exports.MEDIA_DEVICES = exports.MEDIA = exports.MAX_RANDOM_DELAY_FOR_MEETING_INFO = exports.LOCUS_URL = exports.LOCUSINFO = exports.LOCUSEVENT = exports.LOCUS = exports.LOCI = exports.LOCAL = exports.LIVE = exports.LEAVE = exports.LAYOUT_TYPES = exports.JOIN = exports.IPV4_REGEX = exports.INTENT_TO_JOIN = exports.ICE_TIMEOUT = exports.ICE_STATE = exports.ICE_GATHERING_STATE = exports.ICE_FAIL_TIMEOUT = exports.HTTP_VERBS = exports.HTTPS_PROTOCOL = exports.HOST = exports.HECATE = exports.GATHERING = exports.FULL_STATE = exports.FLOOR_ACTION = exports.EVENT_TYPES = exports.EVENT_TRIGGERS = exports.EVENTS = exports.ERROR_DICTIONARY = exports.ERROR = exports.ENDED = exports.END = exports.EMBEDDED_APP_TYPES = exports.DISPLAY_HINTS = exports.DIALER_REGEX = exports.DEVELOPMENT = exports.DEFAULT_GET_STATS_FILTER = exports.DEFAULT_EXCLUDED_STATS = exports.DECLINE = exports.CORRELATION_ID = exports.CONVERSATION_URL = exports.CONVERSATION_SERVICE = exports.CONTROLS = exports.CONTENT = exports.CONNECTION_STATE = exports.COMPLETE = exports.CMR_MEETINGS = exports.CLAIM = exports.CALL_REMOVED_REASON = exports.CALL = exports.CALENDAR_EVENTS_API = exports.CALENDAR_EVENTS = exports.CALENDAR = exports.BNR_STATUS = exports.AVAILABLE_RESOLUTIONS = exports.AUDIO_STATUS = exports.AUDIO_INPUT = exports.AUDIO = exports.ASSIGN_ROLES_ERROR_CODES = exports.API = exports.ANSWER = exports.ALTERNATE_REDIRECT_TRUE = exports.ALERT = void 0;
9
+ exports._WEBEX_MEETING_ = exports._WAIT_ = exports._USER_ = exports._UNKNOWN_ = exports._S_LINE = exports._SLIDES_ = exports._SIP_URI_ = exports._SIP_BRIDGE_ = exports._SEND_RECEIVE_ = exports._SEND_ONLY_ = exports._ROOM_ = exports._RESOURCE_ROOM_ = exports._REQUESTED_ = exports._REMOVE_ = exports._RECEIVE_ONLY_ = exports._PERSONAL_ROOM_ = exports._PEOPLE_ = exports._OFFER_ = exports._OBSERVE_ = exports._NOT_IN_MEETING_ = exports._NONE_ = exports._MOVE_MEDIA_ = exports._MEETING_UUID_ = exports._MEETING_LINK_ = exports._MEETING_ID_ = exports._MEETING_CENTER_ = exports._MEETING_ = exports._LOCUS_ID_ = exports._LEFT_ = exports._JOIN_ = exports._JOINED_ = exports._IN_MEETING_ = exports._IN_LOBBY_ = exports._IN_ = exports._INCOMING_ = exports._INACTIVE_ = exports._ID_ = exports._IDLE_ = exports._FORCED_ = exports._ERROR_ = exports._CREATED_ = exports._CONVERSATION_URL_ = exports._CONFLICT_ = exports._CALL_ = exports._ANSWER_ = exports._ACTIVE_ = exports.WWW_DOT = exports.WHITEBOARD = exports.WEBEX_DOT_COM = exports.WBXAPPAPI_SERVICE = exports.VIDEO_STATUS = exports.VIDEO_RESOLUTIONS = exports.VIDEO_INPUT = exports.VIDEO = exports.VALID_PMR_LINK = exports.VALID_PMR_ADDRESS = exports.VALID_PIN = exports.VALID_EMAIL_ADDRESS = exports.UUID_REG = exports.USE_URI_LOOKUP_FALSE = exports.TYPE = exports.STATS = exports.SIP_URI = exports.SHARE_STOPPED_REASON = exports.SHARE_STATUS = exports.SHARE_PEER_CONNECTION_NAME = exports.SHARE = exports.SEND_DTMF_ENDPOINT = exports.SENDRECV = exports.SELF_ROLES = exports.SDP = exports.ROAP_SEQ_PRE = exports.ROAP = exports.RETRY_TIMEOUT = exports.RESOURCE = exports.REMOTE_VIDEO_CONSTRAINTS = exports.REMOTE = exports.RECORDING_STATE = exports.RECONNECTION = exports.READY = void 0;
10
10
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/defineProperty"));
11
11
  var _common = require("@webex/common");
12
12
  var _VIDEO_RESOLUTIONS, _MAX_FS;
@@ -326,6 +326,13 @@ var CALENDAR_EVENTS = {
326
326
  DELETE: 'event:calendar.meeting.delete'
327
327
  };
328
328
  exports.CALENDAR_EVENTS = CALENDAR_EVENTS;
329
+ var ASSIGN_ROLES_ERROR_CODES = {
330
+ ReclaimHostNotSupportedErrorCode: 2400127,
331
+ ReclaimHostNotAllowedErrorCode: 2403135,
332
+ ReclaimHostEmptyWrongKeyErrorCode: 2403136,
333
+ ReclaimHostIsHostAlreadyErrorCode: 2409150
334
+ };
335
+ exports.ASSIGN_ROLES_ERROR_CODES = ASSIGN_ROLES_ERROR_CODES;
329
336
  var DEFAULT_GET_STATS_FILTER = {
330
337
  types: ['track', 'transport', 'candidate-pair', 'outbound-rtp', 'outboundrtp', 'inbound-rtp', 'inboundrtp', 'remote-inbound-rtp', 'remote-outbound-rtp', 'remote-candidate', 'local-candidate', 'media-source']
331
338
  };
@@ -529,6 +536,26 @@ var ERROR_DICTIONARY = {
529
536
  NAME: 'CaptchaError',
530
537
  MESSAGE: 'Captcha is required.',
531
538
  CODE: 8
539
+ },
540
+ RECLAIM_HOST_ROLE_NOT_SUPPORTED: {
541
+ NAME: 'ReclaimHostRoleNotSupported',
542
+ MESSAGE: 'Non converged meetings, PSTN or SIP users in converged meetings are not supported currently.',
543
+ CODE: 9
544
+ },
545
+ RECLAIM_HOST_ROLE_NOT_ALLOWED: {
546
+ NAME: 'ReclaimHostRoleNotAllowed',
547
+ MESSAGE: 'Reclaim Host Role Not Allowed For Other Participants. Participants cannot claim host role in PMR meeting, space instant meeting or escalated instant meeting. However, the original host still can reclaim host role when it manually makes another participant to be the host.',
548
+ CODE: 10
549
+ },
550
+ RECLAIM_HOST_ROLE_EMPTY_OR_WRONG_KEY: {
551
+ NAME: 'ReclaimHostRoleEmptyOrWrongKey',
552
+ MESSAGE: 'Host Key Not Specified Or Matched. The original host can reclaim the host role without entering the host key. However, any other person who claims the host role must enter the host key to get it.',
553
+ CODE: 11
554
+ },
555
+ RECLAIM_HOST_ROLE_IS_ALREADY_HOST: {
556
+ NAME: 'ReclaimHostRoleIsAlreadyHost',
557
+ MESSAGE: 'Participant Having Host Role Already. Participant who sends request to reclaim host role has already a host role.',
558
+ CODE: 12
532
559
  }
533
560
  };
534
561
  exports.ERROR_DICTIONARY = ERROR_DICTIONARY;