@webex/recipe-private-web-client 2.59.1-next.0 → 2.59.2
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/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +32 -33
package/dist/index.js
CHANGED
|
@@ -6,6 +6,7 @@ _Object$defineProperty(exports, "__esModule", {
|
|
|
6
6
|
value: true
|
|
7
7
|
});
|
|
8
8
|
exports.default = Webex;
|
|
9
|
+
var _merge2 = _interopRequireDefault(require("lodash/merge"));
|
|
9
10
|
require("@webex/plugin-authorization-browser-first-party");
|
|
10
11
|
require("@webex/internal-plugin-avatar");
|
|
11
12
|
require("@webex/internal-plugin-board");
|
|
@@ -26,7 +27,6 @@ require("@webex/internal-plugin-lyra");
|
|
|
26
27
|
require("@webex/internal-plugin-device");
|
|
27
28
|
require("@webex/plugin-people");
|
|
28
29
|
var _webexCore = _interopRequireDefault(require("@webex/webex-core"));
|
|
29
|
-
var _lodash = require("lodash");
|
|
30
30
|
var _config = _interopRequireDefault(require("./config"));
|
|
31
31
|
/*!
|
|
32
32
|
* Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.
|
|
@@ -39,7 +39,7 @@ var _config = _interopRequireDefault(require("./config"));
|
|
|
39
39
|
*/
|
|
40
40
|
function Webex(attrs) {
|
|
41
41
|
attrs = attrs || {};
|
|
42
|
-
attrs.config = (0,
|
|
42
|
+
attrs.config = (0, _merge2.default)(_config.default, attrs.config);
|
|
43
43
|
return new _webexCore.default(attrs);
|
|
44
44
|
}
|
|
45
45
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["require","_webexCore","_interopRequireDefault","
|
|
1
|
+
{"version":3,"names":["require","_webexCore","_interopRequireDefault","_config","Webex","attrs","config","_merge2","default","WebexCore"],"sources":["index.js"],"sourcesContent":["/*!\n * Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.\n */\n\nimport '@webex/plugin-authorization-browser-first-party';\nimport '@webex/internal-plugin-avatar';\nimport '@webex/internal-plugin-board';\nimport '@webex/internal-plugin-calendar';\nimport '@webex/internal-plugin-conversation';\nimport '@webex/internal-plugin-encryption';\nimport '@webex/internal-plugin-feature';\nimport '@webex/internal-plugin-flag';\nimport '@webex/plugin-logger';\nimport '@webex/internal-plugin-mercury';\nimport '@webex/internal-plugin-metrics';\nimport '@webex/internal-plugin-presence';\nimport '@webex/internal-plugin-search';\nimport '@webex/internal-plugin-support';\nimport '@webex/internal-plugin-team';\nimport '@webex/internal-plugin-user';\nimport '@webex/internal-plugin-lyra';\nimport '@webex/internal-plugin-device';\nimport '@webex/plugin-people';\n\nimport WebexCore from '@webex/webex-core';\nimport {merge} from 'lodash';\n\nimport config from './config';\n\n/**\n * @param {Object} attrs\n * @param {Object} attrs.config\n * @returns {Webex}\n */\nexport default function Webex(attrs) {\n attrs = attrs || {};\n attrs.config = merge(config, attrs.config);\n\n return new WebexCore(attrs);\n}\n"],"mappings":";;;;;;;;;AAIAA,OAAA;AACAA,OAAA;AACAA,OAAA;AACAA,OAAA;AACAA,OAAA;AACAA,OAAA;AACAA,OAAA;AACAA,OAAA;AACAA,OAAA;AACAA,OAAA;AACAA,OAAA;AACAA,OAAA;AACAA,OAAA;AACAA,OAAA;AACAA,OAAA;AACAA,OAAA;AACAA,OAAA;AACAA,OAAA;AACAA,OAAA;AAEA,IAAAC,UAAA,GAAAC,sBAAA,CAAAF,OAAA;AAGA,IAAAG,OAAA,GAAAD,sBAAA,CAAAF,OAAA;AA3BA;AACA;AACA;;AA2BA;AACA;AACA;AACA;AACA;AACe,SAASI,KAAKA,CAACC,KAAK,EAAE;EACnCA,KAAK,GAAGA,KAAK,IAAI,CAAC,CAAC;EACnBA,KAAK,CAACC,MAAM,GAAG,IAAAC,OAAA,CAAAC,OAAA,EAAMF,eAAM,EAAED,KAAK,CAACC,MAAM,CAAC;EAE1C,OAAO,IAAIG,kBAAS,CAACJ,KAAK,CAAC;AAC7B"}
|
package/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webex/recipe-private-web-client",
|
|
3
|
+
"version": "2.59.2",
|
|
3
4
|
"description": "This is a plugin recipe for the Cisco Webex JS SDK. This recipe uses internal APIs to provide the features needed by the Cisco Webex Teams Client. There is no guarantee of non-breaking changes. Non-Cisco engineers should stick to the `webex` package.",
|
|
4
5
|
"license": "MIT",
|
|
5
6
|
"main": "dist/index.js",
|
|
@@ -19,34 +20,33 @@
|
|
|
19
20
|
]
|
|
20
21
|
},
|
|
21
22
|
"dependencies": {
|
|
22
|
-
"@webex/internal-plugin-avatar": "
|
|
23
|
-
"@webex/internal-plugin-board": "
|
|
24
|
-
"@webex/internal-plugin-calendar": "
|
|
25
|
-
"@webex/internal-plugin-conversation": "
|
|
26
|
-
"@webex/internal-plugin-device": "
|
|
27
|
-
"@webex/internal-plugin-encryption": "
|
|
28
|
-
"@webex/internal-plugin-feature": "
|
|
29
|
-
"@webex/internal-plugin-flag": "
|
|
30
|
-
"@webex/internal-plugin-lyra": "
|
|
31
|
-
"@webex/internal-plugin-mercury": "
|
|
32
|
-
"@webex/internal-plugin-metrics": "
|
|
33
|
-
"@webex/internal-plugin-presence": "
|
|
34
|
-
"@webex/internal-plugin-search": "
|
|
35
|
-
"@webex/internal-plugin-support": "
|
|
36
|
-
"@webex/internal-plugin-team": "
|
|
37
|
-
"@webex/internal-plugin-user": "
|
|
38
|
-
"@webex/plugin-authorization-browser-first-party": "
|
|
39
|
-
"@webex/plugin-logger": "
|
|
40
|
-
"@webex/plugin-people": "
|
|
41
|
-
"@webex/storage-adapter-local-forage": "
|
|
42
|
-
"@webex/storage-adapter-local-storage": "
|
|
43
|
-
"@webex/webex-core": "
|
|
23
|
+
"@webex/internal-plugin-avatar": "2.59.2",
|
|
24
|
+
"@webex/internal-plugin-board": "2.59.2",
|
|
25
|
+
"@webex/internal-plugin-calendar": "2.59.2",
|
|
26
|
+
"@webex/internal-plugin-conversation": "2.59.2",
|
|
27
|
+
"@webex/internal-plugin-device": "2.59.2",
|
|
28
|
+
"@webex/internal-plugin-encryption": "2.59.2",
|
|
29
|
+
"@webex/internal-plugin-feature": "2.59.2",
|
|
30
|
+
"@webex/internal-plugin-flag": "2.59.2",
|
|
31
|
+
"@webex/internal-plugin-lyra": "2.59.2",
|
|
32
|
+
"@webex/internal-plugin-mercury": "2.59.2",
|
|
33
|
+
"@webex/internal-plugin-metrics": "2.59.2",
|
|
34
|
+
"@webex/internal-plugin-presence": "2.59.2",
|
|
35
|
+
"@webex/internal-plugin-search": "2.59.2",
|
|
36
|
+
"@webex/internal-plugin-support": "2.59.2",
|
|
37
|
+
"@webex/internal-plugin-team": "2.59.2",
|
|
38
|
+
"@webex/internal-plugin-user": "2.59.2",
|
|
39
|
+
"@webex/plugin-authorization-browser-first-party": "2.59.2",
|
|
40
|
+
"@webex/plugin-logger": "2.59.2",
|
|
41
|
+
"@webex/plugin-people": "2.59.2",
|
|
42
|
+
"@webex/storage-adapter-local-forage": "2.59.2",
|
|
43
|
+
"@webex/storage-adapter-local-storage": "2.59.2",
|
|
44
|
+
"@webex/webex-core": "2.59.2",
|
|
44
45
|
"lodash": "^4.17.21"
|
|
45
46
|
},
|
|
46
47
|
"scripts": {
|
|
47
48
|
"build": "yarn build:src",
|
|
48
49
|
"build:src": "webex-legacy-tools build -dest \"./dist\" -src \"./src\" -js -ts -maps",
|
|
49
|
-
"deploy:npm": "npm publish",
|
|
50
50
|
"test": "yarn test:style && yarn test:unit && yarn test:integration && yarn test:browser",
|
|
51
51
|
"test:browser": "webex-legacy-tools test --integration --unit --runner karma",
|
|
52
52
|
"test:integration": "webex-legacy-tools test --integration --runner mocha",
|
|
@@ -55,16 +55,15 @@
|
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@babel/core": "^7.17.10",
|
|
58
|
-
"@webex/babel-config-legacy": "
|
|
59
|
-
"@webex/eslint-config-legacy": "
|
|
60
|
-
"@webex/jest-config-legacy": "
|
|
61
|
-
"@webex/legacy-tools": "
|
|
62
|
-
"@webex/test-helper-chai": "
|
|
63
|
-
"@webex/test-helper-mocha": "
|
|
64
|
-
"@webex/test-helper-mock-webex": "
|
|
65
|
-
"@webex/test-helper-test-users": "
|
|
58
|
+
"@webex/babel-config-legacy": "2.59.2",
|
|
59
|
+
"@webex/eslint-config-legacy": "2.59.2",
|
|
60
|
+
"@webex/jest-config-legacy": "2.59.2",
|
|
61
|
+
"@webex/legacy-tools": "2.59.2",
|
|
62
|
+
"@webex/test-helper-chai": "2.59.2",
|
|
63
|
+
"@webex/test-helper-mocha": "2.59.2",
|
|
64
|
+
"@webex/test-helper-mock-webex": "2.59.2",
|
|
65
|
+
"@webex/test-helper-test-users": "2.59.2",
|
|
66
66
|
"eslint": "^8.24.0",
|
|
67
67
|
"prettier": "^2.7.1"
|
|
68
|
-
}
|
|
69
|
-
"version": "2.59.1-next.0"
|
|
68
|
+
}
|
|
70
69
|
}
|