@webex/plugin-meetings 3.1.0-next.1 → 3.1.0-next.2

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.1.0-next.1"
212
+ version: "3.1.0-next.2"
213
213
  });
214
214
  var _default = exports.default = Breakout;
215
215
  //# sourceMappingURL=breakout.js.map
@@ -1041,7 +1041,7 @@ var Breakouts = _webexCore.WebexPlugin.extend({
1041
1041
  this.trigger(_constants.BREAKOUTS.EVENTS.ASK_RETURN_TO_MAIN);
1042
1042
  }
1043
1043
  },
1044
- version: "3.1.0-next.1"
1044
+ version: "3.1.0-next.2"
1045
1045
  });
1046
1046
  var _default = exports.default = Breakouts;
1047
1047
  //# sourceMappingURL=index.js.map
package/dist/index.js CHANGED
@@ -33,6 +33,12 @@ _Object$defineProperty(exports, "IntentToJoinError", {
33
33
  return _intentToJoin.default;
34
34
  }
35
35
  });
36
+ _Object$defineProperty(exports, "JoinMeetingError", {
37
+ enumerable: true,
38
+ get: function get() {
39
+ return _joinMeeting.default;
40
+ }
41
+ });
36
42
  _Object$defineProperty(exports, "LocalCameraStream", {
37
43
  enumerable: true,
38
44
  get: function get() {
@@ -87,7 +93,13 @@ _Object$defineProperty(exports, "Meeting", {
87
93
  return _meeting.default;
88
94
  }
89
95
  });
90
- exports.MeetingInfoV2 = exports.MeetingInfoUtil = void 0;
96
+ _Object$defineProperty(exports, "MeetingInfoUtil", {
97
+ enumerable: true,
98
+ get: function get() {
99
+ return _utilv.default;
100
+ }
101
+ });
102
+ exports.MeetingInfoV2 = void 0;
91
103
  _Object$defineProperty(exports, "PasswordError", {
92
104
  enumerable: true,
93
105
  get: function get() {
@@ -197,6 +209,8 @@ var _passwordError = _interopRequireDefault(require("./common/errors/password-er
197
209
  var _permission = _interopRequireDefault(require("./common/errors/permission"));
198
210
  var _reclaimHostRoleErrors = require("./common/errors/reclaim-host-role-errors");
199
211
  var _meeting = _interopRequireDefault(require("./meeting"));
212
+ var _utilv = _interopRequireDefault(require("./meeting-info/utilv2"));
213
+ var _joinMeeting = _interopRequireDefault(require("./common/errors/join-meeting"));
200
214
  var _mediaHelpers = require("@webex/media-helpers");
201
215
  var _CONSTANTS = _interopRequireWildcard(require("./constants"));
202
216
  exports.CONSTANTS = _CONSTANTS;
@@ -204,8 +218,6 @@ var _REACTIONS = _interopRequireWildcard(require("./reactions/reactions"));
204
218
  exports.REACTIONS = _REACTIONS;
205
219
  var _sdkAnnotationTypes = _interopRequireWildcard(require("./annotation/annotation.types"));
206
220
  exports.sdkAnnotationTypes = _sdkAnnotationTypes;
207
- var _MeetingInfoUtil = _interopRequireWildcard(require("./meeting-info/utilv2"));
208
- exports.MeetingInfoUtil = _MeetingInfoUtil;
209
221
  var _MeetingInfoV = _interopRequireWildcard(require("./meeting-info/meeting-info-v2"));
210
222
  exports.MeetingInfoV2 = _MeetingInfoV;
211
223
  var _remoteMedia = require("./multistream/remoteMedia");
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"names":["_webexCore","require","_meetings","_interopRequireDefault","_config","_interceptors","_captchaError","_intentToJoin","_passwordError","_permission","_reclaimHostRoleErrors","_meeting","_mediaHelpers","_CONSTANTS","_interopRequireWildcard","exports","CONSTANTS","_REACTIONS","REACTIONS","_sdkAnnotationTypes","sdkAnnotationTypes","_MeetingInfoUtil","MeetingInfoUtil","_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","_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} 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 {\n ReclaimHostEmptyWrongKeyError,\n ReclaimHostIsHostAlreadyError,\n ReclaimHostNotAllowedError,\n ReclaimHostNotSupportedError,\n} from './common/errors/reclaim-host-role-errors';\nimport Meeting from './meeting';\n\nregisterPlugin('meetings', Meetings, {\n config,\n interceptors: {\n LocusRetryStatusInterceptor: LocusRetryStatusInterceptor.create,\n },\n});\n\nexport {\n getDevices,\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 createDisplayStream,\n createDisplayStreamWithAudio,\n FacingMode,\n DisplaySurface,\n PresetCameraConstraints,\n type VideoContentHint,\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 MeetingInfoUtil from './meeting-info/utilv2';\nexport * as MeetingInfoV2 from './meeting-info/meeting-info-v2';\nexport {type Reaction} from './reactions/reactions.type';\n\nexport {\n CaptchaError,\n IntentToJoinError,\n PasswordError,\n PermissionError,\n ReclaimHostIsHostAlreadyError,\n ReclaimHostNotAllowedError,\n ReclaimHostNotSupportedError,\n ReclaimHostEmptyWrongKeyError,\n Meeting,\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","_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","_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} 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 {\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 },\n});\n\nexport {\n getDevices,\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 createDisplayStream,\n createDisplayStreamWithAudio,\n FacingMode,\n DisplaySurface,\n PresetCameraConstraints,\n type VideoContentHint,\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};\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.1.0-next.1"
376
+ version: "3.1.0-next.2"
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.1.0-next.1"
21
+ version: "3.1.0-next.2"
22
22
  });
23
23
  var _default = exports.default = SILanguage;
24
24
  //# sourceMappingURL=siLanguage.js.map
@@ -5,14 +5,15 @@ import PasswordError from './common/errors/password-error';
5
5
  import PermissionError from './common/errors/permission';
6
6
  import { ReclaimHostEmptyWrongKeyError, ReclaimHostIsHostAlreadyError, ReclaimHostNotAllowedError, ReclaimHostNotSupportedError } from './common/errors/reclaim-host-role-errors';
7
7
  import Meeting from './meeting';
8
+ import MeetingInfoUtil from './meeting-info/utilv2';
9
+ import JoinMeetingError from './common/errors/join-meeting';
8
10
  export { getDevices, LocalStream, LocalDisplayStream, LocalSystemAudioStream, LocalStreamEventNames, StreamEventNames, RemoteStreamEventNames, type ServerMuteReason, LocalMicrophoneStreamEventNames, LocalCameraStreamEventNames, LocalMicrophoneStream, LocalCameraStream, createMicrophoneStream, createCameraStream, createDisplayStream, createDisplayStreamWithAudio, FacingMode, DisplaySurface, PresetCameraConstraints, type VideoContentHint, } from '@webex/media-helpers';
9
11
  export default Meetings;
10
12
  export * as CONSTANTS from './constants';
11
13
  export * as REACTIONS from './reactions/reactions';
12
14
  export * as sdkAnnotationTypes from './annotation/annotation.types';
13
- export * as MeetingInfoUtil from './meeting-info/utilv2';
14
15
  export * as MeetingInfoV2 from './meeting-info/meeting-info-v2';
15
16
  export { type Reaction } from './reactions/reactions.type';
16
- export { CaptchaError, IntentToJoinError, PasswordError, PermissionError, ReclaimHostIsHostAlreadyError, ReclaimHostNotAllowedError, ReclaimHostNotSupportedError, ReclaimHostEmptyWrongKeyError, Meeting, };
17
+ export { CaptchaError, IntentToJoinError, JoinMeetingError, PasswordError, PermissionError, ReclaimHostIsHostAlreadyError, ReclaimHostNotAllowedError, ReclaimHostNotSupportedError, ReclaimHostEmptyWrongKeyError, Meeting, MeetingInfoUtil, };
17
18
  export { RemoteMedia } from './multistream/remoteMedia';
18
19
  export { default as TriggerProxy } from './common/events/trigger-proxy';
@@ -62,7 +62,7 @@ var Webinar = _webexCore.WebexPlugin.extend({
62
62
  updateCanManageWebcast: function updateCanManageWebcast(canManageWebcast) {
63
63
  this.set('canManageWebcast', canManageWebcast);
64
64
  },
65
- version: "3.1.0-next.1"
65
+ version: "3.1.0-next.2"
66
66
  });
67
67
  var _default = exports.default = Webinar;
68
68
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -43,7 +43,7 @@
43
43
  "@webex/eslint-config-legacy": "0.0.0",
44
44
  "@webex/jest-config-legacy": "0.0.0",
45
45
  "@webex/legacy-tools": "0.0.0",
46
- "@webex/plugin-meetings": "3.1.0-next.1",
46
+ "@webex/plugin-meetings": "3.1.0-next.2",
47
47
  "@webex/plugin-rooms": "3.0.0-next.16",
48
48
  "@webex/test-helper-chai": "3.0.0-next.14",
49
49
  "@webex/test-helper-mocha": "3.0.0-next.14",
@@ -70,7 +70,7 @@
70
70
  "@webex/internal-plugin-metrics": "3.0.0-next.14",
71
71
  "@webex/internal-plugin-support": "3.0.0-next.16",
72
72
  "@webex/internal-plugin-user": "3.0.0-next.14",
73
- "@webex/internal-plugin-voicea": "3.1.0-next.1",
73
+ "@webex/internal-plugin-voicea": "3.1.0-next.2",
74
74
  "@webex/media-helpers": "3.0.1-next.17",
75
75
  "@webex/plugin-people": "3.0.0-next.16",
76
76
  "@webex/plugin-rooms": "3.0.0-next.16",
@@ -91,5 +91,5 @@
91
91
  "//": [
92
92
  "TODO: upgrade jwt-decode when moving to node 18"
93
93
  ],
94
- "version": "3.1.0-next.1"
94
+ "version": "3.1.0-next.2"
95
95
  }
package/src/index.ts CHANGED
@@ -15,6 +15,8 @@ import {
15
15
  ReclaimHostNotSupportedError,
16
16
  } from './common/errors/reclaim-host-role-errors';
17
17
  import Meeting from './meeting';
18
+ import MeetingInfoUtil from './meeting-info/utilv2';
19
+ import JoinMeetingError from './common/errors/join-meeting';
18
20
 
19
21
  registerPlugin('meetings', Meetings, {
20
22
  config,
@@ -51,13 +53,13 @@ export default Meetings;
51
53
  export * as CONSTANTS from './constants';
52
54
  export * as REACTIONS from './reactions/reactions';
53
55
  export * as sdkAnnotationTypes from './annotation/annotation.types';
54
- export * as MeetingInfoUtil from './meeting-info/utilv2';
55
56
  export * as MeetingInfoV2 from './meeting-info/meeting-info-v2';
56
57
  export {type Reaction} from './reactions/reactions.type';
57
58
 
58
59
  export {
59
60
  CaptchaError,
60
61
  IntentToJoinError,
62
+ JoinMeetingError,
61
63
  PasswordError,
62
64
  PermissionError,
63
65
  ReclaimHostIsHostAlreadyError,
@@ -65,6 +67,7 @@ export {
65
67
  ReclaimHostNotSupportedError,
66
68
  ReclaimHostEmptyWrongKeyError,
67
69
  Meeting,
70
+ MeetingInfoUtil,
68
71
  };
69
72
 
70
73
  export {RemoteMedia} from './multistream/remoteMedia';