@webex/plugin-device-manager 2.29.3 → 2.29.5
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 +2 -1
- package/dist/device-manager.js +1 -1
- package/package.json +32 -28
package/README.md
CHANGED
|
@@ -25,7 +25,8 @@ This is a plugin for the Cisco Webex JS SDK . Please see our [developer portal](
|
|
|
25
25
|
###Samples
|
|
26
26
|
|
|
27
27
|
```
|
|
28
|
-
|
|
28
|
+
yarn run samples:devicemanager
|
|
29
|
+
|
|
29
30
|
```
|
|
30
31
|
|
|
31
32
|
// initialize webex instance -> connects to mercury -> registers device ->
|
package/dist/device-manager.js
CHANGED
package/package.json
CHANGED
|
@@ -1,30 +1,34 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
"
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
2
|
+
"name": "@webex/plugin-device-manager",
|
|
3
|
+
"version": "2.29.5",
|
|
4
|
+
"description": "",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"contributors": [
|
|
7
|
+
"Saurabh Jain <saurjai3@cisco.com>"
|
|
8
|
+
],
|
|
9
|
+
"main": "dist/index.js",
|
|
10
|
+
"devMain": "src/index.js",
|
|
11
|
+
"repository": "https://github.com/webex/webex-js-sdk/tree/master/packages/@webex/plugin-device-manager",
|
|
12
|
+
"engines": {
|
|
13
|
+
"node": ">=14"
|
|
14
|
+
},
|
|
15
|
+
"browserify": {
|
|
16
|
+
"transform": [
|
|
17
|
+
"babelify",
|
|
18
|
+
"envify"
|
|
19
|
+
]
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@webex/internal-plugin-calendar": "workspace:^",
|
|
23
|
+
"@webex/internal-plugin-device": "workspace:^",
|
|
24
|
+
"@webex/internal-plugin-lyra": "workspace:^",
|
|
25
|
+
"@webex/internal-plugin-search": "workspace:^",
|
|
26
|
+
"@webex/plugin-authorization": "workspace:^",
|
|
27
|
+
"@webex/plugin-device-manager": "workspace:^",
|
|
28
|
+
"@webex/plugin-logger": "workspace:^",
|
|
29
|
+
"@webex/test-helper-chai": "workspace:^",
|
|
30
|
+
"@webex/webex-core": "workspace:^",
|
|
31
|
+
"lodash": "^4.17.21",
|
|
32
|
+
"uuid": "^3.3.2"
|
|
33
|
+
}
|
|
30
34
|
}
|