@webex/internal-plugin-board 3.0.0-beta.13 → 3.0.0-beta.15
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/README.md +1 -3
- package/dist/board.js +26 -15
- package/dist/board.js.map +1 -1
- package/dist/config.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/realtime-channel-collection.js +1 -1
- package/dist/realtime-channel-collection.js.map +1 -1
- package/dist/realtime-channel.js.map +1 -1
- package/dist/realtime.js +27 -27
- package/dist/realtime.js.map +1 -1
- package/package.json +14 -14
- package/src/board.js +255 -205
- package/src/config.js +2 -2
- package/src/index.js +19 -21
- package/src/realtime-channel-collection.js +2 -2
- package/src/realtime-channel.js +8 -9
- package/src/realtime.js +109 -93
- package/test/integration/spec/board.js +347 -220
- package/test/integration/spec/realtime.js +82 -56
- package/test/integration/spec/sharing-mercury.js +154 -73
- package/test/unit/spec/board.js +301 -215
- package/test/unit/spec/encryption.js +152 -120
- package/test/unit/spec/realtime.js +131 -89
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webex/internal-plugin-board",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.15",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Greg Hewett <ghewett@cisco.com>",
|
|
@@ -21,22 +21,22 @@
|
|
|
21
21
|
]
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@webex/test-helper-chai": "3.0.0-beta.
|
|
25
|
-
"@webex/test-helper-file": "3.0.0-beta.
|
|
26
|
-
"@webex/test-helper-mocha": "3.0.0-beta.
|
|
27
|
-
"@webex/test-helper-mock-web-socket": "3.0.0-beta.
|
|
28
|
-
"@webex/test-helper-mock-webex": "3.0.0-beta.
|
|
29
|
-
"@webex/test-helper-test-users": "3.0.0-beta.
|
|
24
|
+
"@webex/test-helper-chai": "3.0.0-beta.15",
|
|
25
|
+
"@webex/test-helper-file": "3.0.0-beta.15",
|
|
26
|
+
"@webex/test-helper-mocha": "3.0.0-beta.15",
|
|
27
|
+
"@webex/test-helper-mock-web-socket": "3.0.0-beta.15",
|
|
28
|
+
"@webex/test-helper-mock-webex": "3.0.0-beta.15",
|
|
29
|
+
"@webex/test-helper-test-users": "3.0.0-beta.15",
|
|
30
30
|
"sinon": "^9.2.4"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@webex/common": "3.0.0-beta.
|
|
34
|
-
"@webex/internal-plugin-board": "3.0.0-beta.
|
|
35
|
-
"@webex/internal-plugin-conversation": "3.0.0-beta.
|
|
36
|
-
"@webex/internal-plugin-encryption": "3.0.0-beta.
|
|
37
|
-
"@webex/internal-plugin-feature": "3.0.0-beta.
|
|
38
|
-
"@webex/internal-plugin-mercury": "3.0.0-beta.
|
|
39
|
-
"@webex/webex-core": "3.0.0-beta.
|
|
33
|
+
"@webex/common": "3.0.0-beta.15",
|
|
34
|
+
"@webex/internal-plugin-board": "3.0.0-beta.15",
|
|
35
|
+
"@webex/internal-plugin-conversation": "3.0.0-beta.15",
|
|
36
|
+
"@webex/internal-plugin-encryption": "3.0.0-beta.15",
|
|
37
|
+
"@webex/internal-plugin-feature": "3.0.0-beta.15",
|
|
38
|
+
"@webex/internal-plugin-mercury": "3.0.0-beta.15",
|
|
39
|
+
"@webex/webex-core": "3.0.0-beta.15",
|
|
40
40
|
"ampersand-collection": "^2.0.2",
|
|
41
41
|
"es6-promise-series": "^0.2.2",
|
|
42
42
|
"lodash": "^4.17.21",
|