@webex/recipe-private-web-client 3.0.0-beta.9 → 3.0.0-bnr.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/config.js +0 -6
- package/dist/config.js.map +1 -1
- package/dist/index.js +0 -26
- package/dist/index.js.map +1 -1
- package/dist/recipe-private-web-client.d.ts +11 -0
- package/dist/tsdoc-metadata.json +11 -0
- package/dist/types/config.d.ts +10 -0
- package/dist/types/index.d.ts +8 -0
- package/package.json +23 -23
- package/src/config.js +3 -3
- package/src/index.js +0 -1
package/dist/config.js
CHANGED
|
@@ -1,19 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _Object$defineProperty = require("@babel/runtime-corejs2/core-js/object/define-property");
|
|
4
|
-
|
|
5
4
|
var _interopRequireDefault = require("@babel/runtime-corejs2/helpers/interopRequireDefault");
|
|
6
|
-
|
|
7
5
|
_Object$defineProperty(exports, "__esModule", {
|
|
8
6
|
value: true
|
|
9
7
|
});
|
|
10
|
-
|
|
11
8
|
exports.default = void 0;
|
|
12
|
-
|
|
13
9
|
var _storageAdapterLocalForage = _interopRequireDefault(require("@webex/storage-adapter-local-forage"));
|
|
14
|
-
|
|
15
10
|
var _storageAdapterLocalStorage = _interopRequireDefault(require("@webex/storage-adapter-local-storage"));
|
|
16
|
-
|
|
17
11
|
/*!
|
|
18
12
|
* Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.
|
|
19
13
|
*/
|
package/dist/config.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["device","enableInactivityEnforcement","storage","boundedAdapter","LocalStorageStoreAdapter","unboundedAdapter","LocalForageStoreAdapter"],"sources":["config.js"],"sourcesContent":["/*!\n * Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.\n */\n\nimport LocalForageStoreAdapter from '@webex/storage-adapter-local-forage';\nimport LocalStorageStoreAdapter from '@webex/storage-adapter-local-storage';\n\nexport default {\n device: {\n enableInactivityEnforcement: true
|
|
1
|
+
{"version":3,"names":["device","enableInactivityEnforcement","storage","boundedAdapter","LocalStorageStoreAdapter","unboundedAdapter","LocalForageStoreAdapter"],"sources":["config.js"],"sourcesContent":["/*!\n * Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.\n */\n\nimport LocalForageStoreAdapter from '@webex/storage-adapter-local-forage';\nimport LocalStorageStoreAdapter from '@webex/storage-adapter-local-storage';\n\nexport default {\n device: {\n enableInactivityEnforcement: true,\n },\n storage: {\n boundedAdapter: new LocalStorageStoreAdapter('web-client-internal'),\n unboundedAdapter: new LocalForageStoreAdapter('web-client-internal'),\n },\n};\n"],"mappings":";;;;;;;;AAIA;AACA;AALA;AACA;AACA;AAFA,eAOe;EACbA,MAAM,EAAE;IACNC,2BAA2B,EAAE;EAC/B,CAAC;EACDC,OAAO,EAAE;IACPC,cAAc,EAAE,IAAIC,mCAAwB,CAAC,qBAAqB,CAAC;IACnEC,gBAAgB,EAAE,IAAIC,kCAAuB,CAAC,qBAAqB;EACrE;AACF,CAAC;AAAA"}
|
package/dist/index.js
CHANGED
|
@@ -1,59 +1,33 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _Object$defineProperty = require("@babel/runtime-corejs2/core-js/object/define-property");
|
|
4
|
-
|
|
5
4
|
var _interopRequireDefault = require("@babel/runtime-corejs2/helpers/interopRequireDefault");
|
|
6
|
-
|
|
7
5
|
_Object$defineProperty(exports, "__esModule", {
|
|
8
6
|
value: true
|
|
9
7
|
});
|
|
10
|
-
|
|
11
8
|
exports.default = Webex;
|
|
12
|
-
|
|
13
9
|
var _merge2 = _interopRequireDefault(require("lodash/merge"));
|
|
14
|
-
|
|
15
10
|
require("@webex/plugin-authorization-browser-first-party");
|
|
16
|
-
|
|
17
11
|
require("@webex/internal-plugin-avatar");
|
|
18
|
-
|
|
19
12
|
require("@webex/internal-plugin-board");
|
|
20
|
-
|
|
21
13
|
require("@webex/internal-plugin-calendar");
|
|
22
|
-
|
|
23
14
|
require("@webex/internal-plugin-conversation");
|
|
24
|
-
|
|
25
15
|
require("@webex/internal-plugin-encryption");
|
|
26
|
-
|
|
27
16
|
require("@webex/internal-plugin-feature");
|
|
28
|
-
|
|
29
17
|
require("@webex/internal-plugin-flag");
|
|
30
|
-
|
|
31
18
|
require("@webex/plugin-logger");
|
|
32
|
-
|
|
33
19
|
require("@webex/internal-plugin-mercury");
|
|
34
|
-
|
|
35
20
|
require("@webex/internal-plugin-metrics");
|
|
36
|
-
|
|
37
21
|
require("@webex/internal-plugin-presence");
|
|
38
|
-
|
|
39
22
|
require("@webex/internal-plugin-search");
|
|
40
|
-
|
|
41
23
|
require("@webex/internal-plugin-support");
|
|
42
|
-
|
|
43
24
|
require("@webex/internal-plugin-team");
|
|
44
|
-
|
|
45
25
|
require("@webex/internal-plugin-user");
|
|
46
|
-
|
|
47
26
|
require("@webex/internal-plugin-lyra");
|
|
48
|
-
|
|
49
27
|
require("@webex/internal-plugin-device");
|
|
50
|
-
|
|
51
28
|
require("@webex/plugin-people");
|
|
52
|
-
|
|
53
29
|
var _webexCore = _interopRequireDefault(require("@webex/webex-core"));
|
|
54
|
-
|
|
55
30
|
var _config = _interopRequireDefault(require("./config"));
|
|
56
|
-
|
|
57
31
|
/*!
|
|
58
32
|
* Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.
|
|
59
33
|
*/
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["Webex","attrs","config","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\
|
|
1
|
+
{"version":3,"names":["Webex","attrs","config","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":";;;;;;;;;AAIA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AAGA;AA3BA;AACA;AACA;;AA2BA;AACA;AACA;AACA;AACA;AACe,SAASA,KAAK,CAACC,KAAK,EAAE;EACnCA,KAAK,GAAGA,KAAK,IAAI,CAAC,CAAC;EACnBA,KAAK,CAACC,MAAM,GAAG,qBAAMA,eAAM,EAAED,KAAK,CAACC,MAAM,CAAC;EAE1C,OAAO,IAAIC,kBAAS,CAACF,KAAK,CAAC;AAC7B"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// This file is read by tools that parse documentation comments conforming to the TSDoc standard.
|
|
2
|
+
// It should be published with your NPM package. It should not be tracked by Git.
|
|
3
|
+
{
|
|
4
|
+
"tsdocVersion": "0.12",
|
|
5
|
+
"toolPackages": [
|
|
6
|
+
{
|
|
7
|
+
"packageName": "@microsoft/api-extractor",
|
|
8
|
+
"packageVersion": "7.34.4"
|
|
9
|
+
}
|
|
10
|
+
]
|
|
11
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webex/recipe-private-web-client",
|
|
3
|
-
"version": "3.0.0-
|
|
3
|
+
"version": "3.0.0-bnr.2",
|
|
4
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.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -20,28 +20,28 @@
|
|
|
20
20
|
]
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@webex/internal-plugin-avatar": "3.0.0-
|
|
24
|
-
"@webex/internal-plugin-board": "3.0.0-
|
|
25
|
-
"@webex/internal-plugin-calendar": "3.0.0-
|
|
26
|
-
"@webex/internal-plugin-conversation": "3.0.0-
|
|
27
|
-
"@webex/internal-plugin-device": "3.0.0-
|
|
28
|
-
"@webex/internal-plugin-encryption": "3.0.0-
|
|
29
|
-
"@webex/internal-plugin-feature": "3.0.0-
|
|
30
|
-
"@webex/internal-plugin-flag": "3.0.0-
|
|
31
|
-
"@webex/internal-plugin-lyra": "3.0.0-
|
|
32
|
-
"@webex/internal-plugin-mercury": "3.0.0-
|
|
33
|
-
"@webex/internal-plugin-metrics": "3.0.0-
|
|
34
|
-
"@webex/internal-plugin-presence": "3.0.0-
|
|
35
|
-
"@webex/internal-plugin-search": "3.0.0-
|
|
36
|
-
"@webex/internal-plugin-support": "3.0.0-
|
|
37
|
-
"@webex/internal-plugin-team": "3.0.0-
|
|
38
|
-
"@webex/internal-plugin-user": "3.0.0-
|
|
39
|
-
"@webex/plugin-authorization-browser-first-party": "3.0.0-
|
|
40
|
-
"@webex/plugin-logger": "3.0.0-
|
|
41
|
-
"@webex/plugin-people": "3.0.0-
|
|
42
|
-
"@webex/storage-adapter-local-forage": "3.0.0-
|
|
43
|
-
"@webex/storage-adapter-local-storage": "3.0.0-
|
|
44
|
-
"@webex/webex-core": "3.0.0-
|
|
23
|
+
"@webex/internal-plugin-avatar": "3.0.0-bnr.2",
|
|
24
|
+
"@webex/internal-plugin-board": "3.0.0-bnr.2",
|
|
25
|
+
"@webex/internal-plugin-calendar": "3.0.0-bnr.2",
|
|
26
|
+
"@webex/internal-plugin-conversation": "3.0.0-bnr.2",
|
|
27
|
+
"@webex/internal-plugin-device": "3.0.0-bnr.2",
|
|
28
|
+
"@webex/internal-plugin-encryption": "3.0.0-bnr.2",
|
|
29
|
+
"@webex/internal-plugin-feature": "3.0.0-bnr.2",
|
|
30
|
+
"@webex/internal-plugin-flag": "3.0.0-bnr.2",
|
|
31
|
+
"@webex/internal-plugin-lyra": "3.0.0-bnr.2",
|
|
32
|
+
"@webex/internal-plugin-mercury": "3.0.0-bnr.2",
|
|
33
|
+
"@webex/internal-plugin-metrics": "3.0.0-bnr.2",
|
|
34
|
+
"@webex/internal-plugin-presence": "3.0.0-bnr.2",
|
|
35
|
+
"@webex/internal-plugin-search": "3.0.0-bnr.2",
|
|
36
|
+
"@webex/internal-plugin-support": "3.0.0-bnr.2",
|
|
37
|
+
"@webex/internal-plugin-team": "3.0.0-bnr.2",
|
|
38
|
+
"@webex/internal-plugin-user": "3.0.0-bnr.2",
|
|
39
|
+
"@webex/plugin-authorization-browser-first-party": "3.0.0-bnr.2",
|
|
40
|
+
"@webex/plugin-logger": "3.0.0-bnr.2",
|
|
41
|
+
"@webex/plugin-people": "3.0.0-bnr.2",
|
|
42
|
+
"@webex/storage-adapter-local-forage": "3.0.0-bnr.2",
|
|
43
|
+
"@webex/storage-adapter-local-storage": "3.0.0-bnr.2",
|
|
44
|
+
"@webex/webex-core": "3.0.0-bnr.2",
|
|
45
45
|
"lodash": "^4.17.21"
|
|
46
46
|
}
|
|
47
47
|
}
|
package/src/config.js
CHANGED
|
@@ -7,10 +7,10 @@ import LocalStorageStoreAdapter from '@webex/storage-adapter-local-storage';
|
|
|
7
7
|
|
|
8
8
|
export default {
|
|
9
9
|
device: {
|
|
10
|
-
enableInactivityEnforcement: true
|
|
10
|
+
enableInactivityEnforcement: true,
|
|
11
11
|
},
|
|
12
12
|
storage: {
|
|
13
13
|
boundedAdapter: new LocalStorageStoreAdapter('web-client-internal'),
|
|
14
|
-
unboundedAdapter: new LocalForageStoreAdapter('web-client-internal')
|
|
15
|
-
}
|
|
14
|
+
unboundedAdapter: new LocalForageStoreAdapter('web-client-internal'),
|
|
15
|
+
},
|
|
16
16
|
};
|