@webex/internal-plugin-lyra 2.60.1-next.1 → 2.60.1-next.11

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.
package/dist/device.js CHANGED
@@ -124,7 +124,7 @@ var Device = _webexCore.WebexPlugin.extend({
124
124
  }
125
125
  });
126
126
  },
127
- version: "2.60.1-next.1"
127
+ version: "2.60.1-next.11"
128
128
  });
129
129
  var _default = exports.default = Device;
130
130
  //# sourceMappingURL=device.js.map
package/dist/lyra.js CHANGED
@@ -53,7 +53,7 @@ var Lyra = _webexCore.WebexPlugin.extend({
53
53
  return res.body;
54
54
  });
55
55
  },
56
- version: "2.60.1-next.1"
56
+ version: "2.60.1-next.11"
57
57
  });
58
58
  var _default = exports.default = Lyra;
59
59
  //# sourceMappingURL=lyra.js.map
package/dist/space.js CHANGED
@@ -347,7 +347,7 @@ var Space = _webexCore.WebexPlugin.extend({
347
347
  });
348
348
  });
349
349
  },
350
- version: "2.60.1-next.1"
350
+ version: "2.60.1-next.11"
351
351
  });
352
352
  var _default = exports.default = Space;
353
353
  //# sourceMappingURL=space.js.map
package/package.json CHANGED
@@ -22,27 +22,29 @@
22
22
  "devDependencies": {
23
23
  "@babel/core": "^7.17.10",
24
24
  "@ciscospark/test-users-legacy": "^1.2.0",
25
+ "@types/randomstring": "^1",
25
26
  "@webex/babel-config-legacy": "0.0.0",
26
27
  "@webex/eslint-config-legacy": "0.0.0",
27
28
  "@webex/jest-config-legacy": "0.0.0",
28
29
  "@webex/legacy-tools": "0.0.0",
29
- "@webex/test-helper-chai": "2.60.1-next.1",
30
- "@webex/test-helper-mocha": "2.60.1-next.1",
31
- "@webex/test-helper-mock-webex": "2.60.1-next.1",
32
- "@webex/test-helper-retry": "2.60.1-next.1",
33
- "@webex/test-helper-test-users": "2.60.1-next.1",
30
+ "@webex/test-helper-chai": "2.60.1-next.11",
31
+ "@webex/test-helper-mocha": "2.60.1-next.11",
32
+ "@webex/test-helper-mock-webex": "2.60.1-next.11",
33
+ "@webex/test-helper-retry": "2.60.1-next.11",
34
+ "@webex/test-helper-test-users": "2.60.1-next.11",
34
35
  "eslint": "^8.24.0",
35
36
  "prettier": "^2.7.1",
37
+ "randomstring": "^1.3.0",
36
38
  "sinon": "^9.2.4"
37
39
  },
38
40
  "dependencies": {
39
- "@webex/common": "2.60.1-next.1",
40
- "@webex/internal-plugin-conversation": "2.60.1-next.1",
41
- "@webex/internal-plugin-encryption": "2.60.1-next.1",
42
- "@webex/internal-plugin-feature": "2.60.1-next.1",
43
- "@webex/internal-plugin-locus": "2.60.1-next.1",
44
- "@webex/internal-plugin-mercury": "2.60.1-next.1",
45
- "@webex/webex-core": "2.60.1-next.1",
41
+ "@webex/common": "2.60.1-next.11",
42
+ "@webex/internal-plugin-conversation": "2.60.1-next.11",
43
+ "@webex/internal-plugin-encryption": "2.60.1-next.11",
44
+ "@webex/internal-plugin-feature": "2.60.1-next.11",
45
+ "@webex/internal-plugin-locus": "2.60.1-next.11",
46
+ "@webex/internal-plugin-mercury": "2.60.1-next.11",
47
+ "@webex/webex-core": "2.60.1-next.11",
46
48
  "bowser": "^2.11.0",
47
49
  "uuid": "^3.3.2"
48
50
  },
@@ -51,10 +53,9 @@
51
53
  "build:src": "webex-legacy-tools build -dest \"./dist\" -src \"./src\" -js -ts -maps",
52
54
  "deploy:npm": "yarn npm publish",
53
55
  "test": "yarn test:style && yarn test:unit && yarn test:integration && yarn test:browser",
54
- "test:browser:broken": "webex-legacy-tools test --integration --unit --runner karma",
55
- "test:integration:broken": "webex-legacy-tools test --integration --runner mocha",
56
+ "test:browser": "webex-legacy-tools test --integration --runner karma",
56
57
  "test:style": "eslint ./src/**/*.*",
57
58
  "test:unit": "webex-legacy-tools test --unit --runner jest"
58
59
  },
59
- "version": "2.60.1-next.1"
60
+ "version": "2.60.1-next.11"
60
61
  }
@@ -9,7 +9,7 @@ import retry from '@webex/test-helper-retry';
9
9
  import testUsers from '@webex/test-helper-test-users';
10
10
  // FIXME
11
11
  // eslint-disable-next-line import/no-unresolved
12
- import {generateRandomString} from '@ciscospark/test-users-legacy';
12
+ import {generate} from 'randomstring';
13
13
  import WebexCore from '@webex/webex-core';
14
14
  import uuid from 'uuid';
15
15
 
@@ -30,7 +30,7 @@ describe('plugin-lyra', () => {
30
30
  config: {
31
31
  machineType: 'LYRA_SPACE',
32
32
  type: 'MACHINE',
33
- password: `${generateRandomString(32)}d_wA*`,
33
+ password: `${generate(32)}d_wA*`,
34
34
  },
35
35
  })
36
36
  )
@@ -64,13 +64,13 @@ describe('plugin-lyra', () => {
64
64
  spock = participants[0];
65
65
 
66
66
  return Promise.all(
67
- Array.map(participants, (participant) => {
67
+ participants.map((participant) => {
68
68
  participant.webex = new WebexCore({
69
69
  credentials: {
70
70
  authorization: participant.token,
71
71
  },
72
72
  });
73
-
73
+
74
74
  return participant.webex.internal.mercury.connect();
75
75
  })
76
76
  );
@@ -4,12 +4,12 @@
4
4
 
5
5
  import bowser from 'bowser';
6
6
  import '@webex/internal-plugin-lyra';
7
+ import {generate} from 'randomstring';
7
8
  import {assert} from '@webex/test-helper-chai';
8
9
  import retry from '@webex/test-helper-retry';
9
10
  import testUsers from '@webex/test-helper-test-users';
10
11
  // FIXME
11
12
  // eslint-disable-next-line import/no-unresolved
12
- import {generateRandomString} from '@ciscospark/test-users-legacy';
13
13
  import WebexCore from '@webex/webex-core';
14
14
  import '@webex/internal-plugin-locus';
15
15
 
@@ -31,7 +31,7 @@ describe('plugin-lyra', function () {
31
31
  config: {
32
32
  machineType: 'LYRA_SPACE',
33
33
  type: 'MACHINE',
34
- password: `${generateRandomString(32)}d_wA*`,
34
+ password: `${generate(32)}d_wA*`,
35
35
  },
36
36
  })
37
37
  )
@@ -65,13 +65,13 @@ describe('plugin-lyra', function () {
65
65
  spock = participants[0];
66
66
 
67
67
  return Promise.all(
68
- Array.map(participants, (participant) => {
68
+ participants.map((participant) => {
69
69
  participant.webex = new WebexCore({
70
70
  credentials: {
71
71
  authorization: participant.token,
72
72
  },
73
73
  });
74
-
74
+
75
75
  return participant.webex.internal.mercury.connect();
76
76
  })
77
77
  );