@webex/plugin-meetings 3.0.0-beta.314 → 3.0.0-beta.316

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.
@@ -68,6 +68,7 @@ interface IInMeetingActions {
68
68
  canShareDesktop?: boolean;
69
69
  canShareContent?: boolean;
70
70
  canTransferFile?: boolean;
71
+ canChat?: boolean;
71
72
  canDoVideo?: boolean;
72
73
  canAnnotate?: boolean;
73
74
  canUseVoip?: boolean;
@@ -142,6 +143,7 @@ export default class InMeetingActions implements IInMeetingActions {
142
143
  canShareDesktop: any;
143
144
  canShareContent: any;
144
145
  canTransferFile: any;
146
+ canChat: any;
145
147
  canDoVideo: any;
146
148
  canAnnotate: any;
147
149
  canUseVoip: any;
@@ -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.0.0-beta.314"
65
+ version: "3.0.0-beta.316"
66
66
  });
67
67
  var _default = Webinar;
68
68
  exports.default = _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webex/plugin-meetings",
3
- "version": "3.0.0-beta.314",
3
+ "version": "3.0.0-beta.316",
4
4
  "description": "",
5
5
  "license": "Cisco EULA (https://www.cisco.com/c/en/us/products/end-user-license-agreement.html)",
6
6
  "contributors": [
@@ -32,12 +32,12 @@
32
32
  "build": "yarn run -T tsc --declaration true --declarationDir ./dist/types"
33
33
  },
34
34
  "devDependencies": {
35
- "@webex/plugin-meetings": "3.0.0-beta.314",
36
- "@webex/test-helper-chai": "3.0.0-beta.314",
37
- "@webex/test-helper-mocha": "3.0.0-beta.314",
38
- "@webex/test-helper-mock-webex": "3.0.0-beta.314",
39
- "@webex/test-helper-retry": "3.0.0-beta.314",
40
- "@webex/test-helper-test-users": "3.0.0-beta.314",
35
+ "@webex/plugin-meetings": "3.0.0-beta.316",
36
+ "@webex/test-helper-chai": "3.0.0-beta.316",
37
+ "@webex/test-helper-mocha": "3.0.0-beta.316",
38
+ "@webex/test-helper-mock-webex": "3.0.0-beta.316",
39
+ "@webex/test-helper-retry": "3.0.0-beta.316",
40
+ "@webex/test-helper-test-users": "3.0.0-beta.316",
41
41
  "chai": "^4.3.4",
42
42
  "chai-as-promised": "^7.1.1",
43
43
  "jsdom-global": "3.0.2",
@@ -46,19 +46,19 @@
46
46
  "typescript": "^4.7.4"
47
47
  },
48
48
  "dependencies": {
49
- "@webex/common": "3.0.0-beta.314",
49
+ "@webex/common": "3.0.0-beta.316",
50
50
  "@webex/internal-media-core": "2.2.1",
51
- "@webex/internal-plugin-conversation": "3.0.0-beta.314",
52
- "@webex/internal-plugin-device": "3.0.0-beta.314",
53
- "@webex/internal-plugin-llm": "3.0.0-beta.314",
54
- "@webex/internal-plugin-mercury": "3.0.0-beta.314",
55
- "@webex/internal-plugin-metrics": "3.0.0-beta.314",
56
- "@webex/internal-plugin-support": "3.0.0-beta.314",
57
- "@webex/internal-plugin-user": "3.0.0-beta.314",
58
- "@webex/media-helpers": "3.0.0-beta.314",
59
- "@webex/plugin-people": "3.0.0-beta.314",
60
- "@webex/plugin-rooms": "3.0.0-beta.314",
61
- "@webex/webex-core": "3.0.0-beta.314",
51
+ "@webex/internal-plugin-conversation": "3.0.0-beta.316",
52
+ "@webex/internal-plugin-device": "3.0.0-beta.316",
53
+ "@webex/internal-plugin-llm": "3.0.0-beta.316",
54
+ "@webex/internal-plugin-mercury": "3.0.0-beta.316",
55
+ "@webex/internal-plugin-metrics": "3.0.0-beta.316",
56
+ "@webex/internal-plugin-support": "3.0.0-beta.316",
57
+ "@webex/internal-plugin-user": "3.0.0-beta.316",
58
+ "@webex/media-helpers": "3.0.0-beta.316",
59
+ "@webex/plugin-people": "3.0.0-beta.316",
60
+ "@webex/plugin-rooms": "3.0.0-beta.316",
61
+ "@webex/webex-core": "3.0.0-beta.316",
62
62
  "ampersand-collection": "^2.0.2",
63
63
  "bowser": "^2.11.0",
64
64
  "btoa": "^1.2.1",
@@ -71,6 +71,7 @@ interface IInMeetingActions {
71
71
  canShareDesktop?: boolean;
72
72
  canShareContent?: boolean;
73
73
  canTransferFile?: boolean;
74
+ canChat?: boolean;
74
75
  canDoVideo?: boolean;
75
76
  canAnnotate?: boolean;
76
77
  canUseVoip?: boolean;
@@ -209,6 +210,8 @@ export default class InMeetingActions implements IInMeetingActions {
209
210
 
210
211
  canTransferFile = null;
211
212
 
213
+ canChat = null;
214
+
212
215
  canDoVideo = null;
213
216
 
214
217
  canAnnotate = null;
@@ -288,6 +291,7 @@ export default class InMeetingActions implements IInMeetingActions {
288
291
  canShareDesktop: this.canShareDesktop,
289
292
  canShareContent: this.canShareContent,
290
293
  canTransferFile: this.canTransferFile,
294
+ canChat: this.canChat,
291
295
  canDoVideo: this.canDoVideo,
292
296
  canAnnotate: this.canAnnotate,
293
297
  canUseVoip: this.canUseVoip,
@@ -3420,6 +3420,10 @@ export default class Meeting extends StatelessWebexPlugin {
3420
3420
  requiredPolicies: [SELF_POLICY.SUPPORT_FILE_TRANSFER],
3421
3421
  policies: this.selfUserPolicies,
3422
3422
  }),
3423
+ canChat: ControlsOptionsUtil.hasPolicies({
3424
+ requiredPolicies: [SELF_POLICY.SUPPORT_CHAT],
3425
+ policies: this.selfUserPolicies,
3426
+ }),
3423
3427
  canShareApplication:
3424
3428
  (ControlsOptionsUtil.hasHints({
3425
3429
  requiredHints: [DISPLAY_HINTS.SHARE_APPLICATION],
@@ -67,6 +67,7 @@ describe('plugin-meetings', () => {
67
67
  canShareDesktop: null,
68
68
  canShareContent: null,
69
69
  canTransferFile: null,
70
+ canChat: null,
70
71
  canDoVideo: null,
71
72
  canAnnotate: null,
72
73
  canUseVoip: null,
@@ -145,6 +146,7 @@ describe('plugin-meetings', () => {
145
146
  'canShareDesktop',
146
147
  'canShareContent',
147
148
  'canTransferFile',
149
+ 'canChat',
148
150
  'canDoVideo',
149
151
  'canAnnotate',
150
152
  'canUseVoip',
@@ -7528,6 +7528,11 @@ describe('plugin-meetings', () => {
7528
7528
  requiredDisplayHints: [],
7529
7529
  requiredPolicies: [SELF_POLICY.SUPPORT_FILE_TRANSFER],
7530
7530
  },
7531
+ {
7532
+ actionName: 'canChat',
7533
+ requiredDisplayHints: [],
7534
+ requiredPolicies: [SELF_POLICY.SUPPORT_CHAT],
7535
+ },
7531
7536
  {
7532
7537
  actionName: 'canShareDesktop',
7533
7538
  requiredDisplayHints: [DISPLAY_HINTS.SHARE_DESKTOP],