@webex/internal-plugin-conversation 3.0.0-beta.133 → 3.0.0-beta.135

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.
@@ -2519,7 +2519,7 @@ var Conversation = _webexCore.WebexPlugin.extend({
2519
2519
  });
2520
2520
  }));
2521
2521
  },
2522
- version: "3.0.0-beta.133"
2522
+ version: "3.0.0-beta.135"
2523
2523
  });
2524
2524
  ['favorite', 'hide', 'lock', 'mute', 'unfavorite', 'unhide', 'unlock', 'unmute'].forEach(function (verb) {
2525
2525
  Conversation.prototype[verb] = function submitSimpleActivity(conversation, activity) {
@@ -395,7 +395,7 @@ var ShareActivity = _webexCore.WebexPlugin.extend({
395
395
  return res.body.spaceUrl;
396
396
  });
397
397
  },
398
- version: "3.0.0-beta.133"
398
+ version: "3.0.0-beta.135"
399
399
  });
400
400
 
401
401
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webex/internal-plugin-conversation",
3
- "version": "3.0.0-beta.133",
3
+ "version": "3.0.0-beta.135",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -20,26 +20,26 @@
20
20
  ]
21
21
  },
22
22
  "dependencies": {
23
- "@webex/common": "3.0.0-beta.133",
24
- "@webex/helper-html": "3.0.0-beta.133",
25
- "@webex/helper-image": "3.0.0-beta.133",
26
- "@webex/internal-plugin-conversation": "3.0.0-beta.133",
27
- "@webex/internal-plugin-encryption": "3.0.0-beta.133",
28
- "@webex/internal-plugin-user": "3.0.0-beta.133",
29
- "@webex/webex-core": "3.0.0-beta.133",
23
+ "@webex/common": "3.0.0-beta.135",
24
+ "@webex/helper-html": "3.0.0-beta.135",
25
+ "@webex/helper-image": "3.0.0-beta.135",
26
+ "@webex/internal-plugin-conversation": "3.0.0-beta.135",
27
+ "@webex/internal-plugin-encryption": "3.0.0-beta.135",
28
+ "@webex/internal-plugin-user": "3.0.0-beta.135",
29
+ "@webex/webex-core": "3.0.0-beta.135",
30
30
  "crypto-js": "^4.1.1",
31
31
  "lodash": "^4.17.21",
32
32
  "node-scr": "^0.3.0",
33
33
  "uuid": "^3.3.2"
34
34
  },
35
35
  "devDependencies": {
36
- "@webex/test-helper-chai": "3.0.0-beta.133",
37
- "@webex/test-helper-file": "3.0.0-beta.133",
38
- "@webex/test-helper-make-local-url": "3.0.0-beta.133",
39
- "@webex/test-helper-mocha": "3.0.0-beta.133",
40
- "@webex/test-helper-mock-webex": "3.0.0-beta.133",
41
- "@webex/test-helper-retry": "3.0.0-beta.133",
42
- "@webex/test-helper-test-users": "3.0.0-beta.133",
36
+ "@webex/test-helper-chai": "3.0.0-beta.135",
37
+ "@webex/test-helper-file": "3.0.0-beta.135",
38
+ "@webex/test-helper-make-local-url": "3.0.0-beta.135",
39
+ "@webex/test-helper-mocha": "3.0.0-beta.135",
40
+ "@webex/test-helper-mock-webex": "3.0.0-beta.135",
41
+ "@webex/test-helper-retry": "3.0.0-beta.135",
42
+ "@webex/test-helper-test-users": "3.0.0-beta.135",
43
43
  "sinon": "^9.2.4"
44
44
  }
45
45
  }
@@ -43,7 +43,6 @@ describe('plugin-conversation', function () {
43
43
  },
44
44
  });
45
45
 
46
- // eslint-disable-next-line no-unused-expressions
47
46
  await webex.internal.mercury.connect();
48
47
  await mccoy.webex.internal.mercury.connect();
49
48
 
@@ -51,9 +50,9 @@ describe('plugin-conversation', function () {
51
50
  });
52
51
 
53
52
  after(async () => {
54
- // eslint-disable-next-line no-unused-expressions
53
+ // eslint-disable-next-line chai-friendly/no-unused-expressions
55
54
  webex && (await webex.internal.mercury.disconnect());
56
- // eslint-disable-next-line no-unused-expressions
55
+ // eslint-disable-next-line chai-friendly/no-unused-expressions
57
56
  mccoy && (await mccoy.webex.internal.mercury.disconnect());
58
57
  });
59
58
 
@@ -204,7 +204,6 @@ describe('plugin-conversation', () => {
204
204
  )
205
205
  .then((ci) => {
206
206
  assert.property(c, 'defaultActivityEncryptionKeyUrl');
207
- /* eslint-disable no-unused-expressions */
208
207
  expect(ci.activities.items[0].object.inputs).to.not.be.null;
209
208
  });
210
209
  }));