webex-node 3.8.0-next.6 → 3.8.0-next.60
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/webex-node.js +2 -1
- package/dist/webex-node.js.map +1 -1
- package/package.json +27 -26
- package/src/webex-node.js +1 -0
package/dist/webex-node.js
CHANGED
|
@@ -26,12 +26,13 @@ require('@webex/plugin-rooms');
|
|
|
26
26
|
require('@webex/plugin-teams');
|
|
27
27
|
require('@webex/plugin-team-memberships');
|
|
28
28
|
require('@webex/plugin-webhooks');
|
|
29
|
+
require('@webex/plugin-encryption');
|
|
29
30
|
var merge = require('lodash/merge');
|
|
30
31
|
var WebexCore = require('@webex/webex-core').default;
|
|
31
32
|
var config = require('./config');
|
|
32
33
|
var WebexNode = WebexCore.extend({
|
|
33
34
|
webex: true,
|
|
34
|
-
version: "3.8.0-next.
|
|
35
|
+
version: "3.8.0-next.60"
|
|
35
36
|
});
|
|
36
37
|
|
|
37
38
|
/**
|
package/dist/webex-node.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["require","merge","WebexCore","default","config","WebexNode","extend","webex","version","init","attrs","arguments","length","undefined","sdkType","module","exports"],"sources":["webex-node.js"],"sourcesContent":["/*!\n * Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.\n */\n\n// Note: this file is written using commonjs instead of import/export to\n// simplify consumption by those less familiar with the current state of\n// JavaScript modularization\n\n/* eslint camelcase: [0] */\n\nrequire('@webex/plugin-authorization');\nrequire('@webex/internal-plugin-calendar');\nrequire('@webex/internal-plugin-device');\nrequire('@webex/internal-plugin-presence');\nrequire('@webex/internal-plugin-support');\nrequire('@webex/internal-plugin-llm');\nrequire('@webex/plugin-attachment-actions');\nrequire('@webex/plugin-device-manager');\nrequire('@webex/plugin-logger');\nrequire('@webex/plugin-messages');\nrequire('@webex/plugin-memberships');\nrequire('@webex/plugin-people');\nrequire('@webex/plugin-rooms');\nrequire('@webex/plugin-teams');\nrequire('@webex/plugin-team-memberships');\nrequire('@webex/plugin-webhooks');\n\nconst merge = require('lodash/merge');\nconst WebexCore = require('@webex/webex-core').default;\n\nconst config = require('./config');\n\nconst WebexNode = WebexCore.extend({\n webex: true,\n version: PACKAGE_VERSION,\n});\n\n/**\n * Create a new {@link Webex} instance\n *\n * @example\n * <caption>Create a new WebexNode instance configured for your OAuth client</caption>\n * const webex = WebexNode.init({\n * config: {\n * credentials: {\n * authorizationString: `<AUTHORIZATION URL FROM DEVELOPER PORTAL>`\n * }\n * }\n * });\n *\n * @example\n * <caption>Create a new WebexNode instance configured for a Bot</caption>\n * const webex = WebexNode.init({\n * credentials: `<BOT TOKEN FROM DEVELOPER PORTAL>`\n * });\n *\n *\n * @param {Object} attrs\n * @param {Object} attrs.config (optional)\n * @memberof Webex\n * @returns {Webex}\n */\nWebexNode.init = function init(attrs = {}) {\n attrs.config = merge(\n {\n sdkType: 'webex-node',\n },\n config,\n attrs.config\n ); // eslint-disable-line no-param-reassign\n\n return new WebexNode(attrs);\n};\n\nmodule.exports = WebexNode;\n"],"mappings":";;AAAA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEAA,OAAO,CAAC,6BAA6B,CAAC;AACtCA,OAAO,CAAC,iCAAiC,CAAC;AAC1CA,OAAO,CAAC,+BAA+B,CAAC;AACxCA,OAAO,CAAC,iCAAiC,CAAC;AAC1CA,OAAO,CAAC,gCAAgC,CAAC;AACzCA,OAAO,CAAC,4BAA4B,CAAC;AACrCA,OAAO,CAAC,kCAAkC,CAAC;AAC3CA,OAAO,CAAC,8BAA8B,CAAC;AACvCA,OAAO,CAAC,sBAAsB,CAAC;AAC/BA,OAAO,CAAC,wBAAwB,CAAC;AACjCA,OAAO,CAAC,2BAA2B,CAAC;AACpCA,OAAO,CAAC,sBAAsB,CAAC;AAC/BA,OAAO,CAAC,qBAAqB,CAAC;AAC9BA,OAAO,CAAC,qBAAqB,CAAC;AAC9BA,OAAO,CAAC,gCAAgC,CAAC;AACzCA,OAAO,CAAC,wBAAwB,CAAC;
|
|
1
|
+
{"version":3,"names":["require","merge","WebexCore","default","config","WebexNode","extend","webex","version","init","attrs","arguments","length","undefined","sdkType","module","exports"],"sources":["webex-node.js"],"sourcesContent":["/*!\n * Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.\n */\n\n// Note: this file is written using commonjs instead of import/export to\n// simplify consumption by those less familiar with the current state of\n// JavaScript modularization\n\n/* eslint camelcase: [0] */\n\nrequire('@webex/plugin-authorization');\nrequire('@webex/internal-plugin-calendar');\nrequire('@webex/internal-plugin-device');\nrequire('@webex/internal-plugin-presence');\nrequire('@webex/internal-plugin-support');\nrequire('@webex/internal-plugin-llm');\nrequire('@webex/plugin-attachment-actions');\nrequire('@webex/plugin-device-manager');\nrequire('@webex/plugin-logger');\nrequire('@webex/plugin-messages');\nrequire('@webex/plugin-memberships');\nrequire('@webex/plugin-people');\nrequire('@webex/plugin-rooms');\nrequire('@webex/plugin-teams');\nrequire('@webex/plugin-team-memberships');\nrequire('@webex/plugin-webhooks');\nrequire('@webex/plugin-encryption');\n\nconst merge = require('lodash/merge');\nconst WebexCore = require('@webex/webex-core').default;\n\nconst config = require('./config');\n\nconst WebexNode = WebexCore.extend({\n webex: true,\n version: PACKAGE_VERSION,\n});\n\n/**\n * Create a new {@link Webex} instance\n *\n * @example\n * <caption>Create a new WebexNode instance configured for your OAuth client</caption>\n * const webex = WebexNode.init({\n * config: {\n * credentials: {\n * authorizationString: `<AUTHORIZATION URL FROM DEVELOPER PORTAL>`\n * }\n * }\n * });\n *\n * @example\n * <caption>Create a new WebexNode instance configured for a Bot</caption>\n * const webex = WebexNode.init({\n * credentials: `<BOT TOKEN FROM DEVELOPER PORTAL>`\n * });\n *\n *\n * @param {Object} attrs\n * @param {Object} attrs.config (optional)\n * @memberof Webex\n * @returns {Webex}\n */\nWebexNode.init = function init(attrs = {}) {\n attrs.config = merge(\n {\n sdkType: 'webex-node',\n },\n config,\n attrs.config\n ); // eslint-disable-line no-param-reassign\n\n return new WebexNode(attrs);\n};\n\nmodule.exports = WebexNode;\n"],"mappings":";;AAAA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEAA,OAAO,CAAC,6BAA6B,CAAC;AACtCA,OAAO,CAAC,iCAAiC,CAAC;AAC1CA,OAAO,CAAC,+BAA+B,CAAC;AACxCA,OAAO,CAAC,iCAAiC,CAAC;AAC1CA,OAAO,CAAC,gCAAgC,CAAC;AACzCA,OAAO,CAAC,4BAA4B,CAAC;AACrCA,OAAO,CAAC,kCAAkC,CAAC;AAC3CA,OAAO,CAAC,8BAA8B,CAAC;AACvCA,OAAO,CAAC,sBAAsB,CAAC;AAC/BA,OAAO,CAAC,wBAAwB,CAAC;AACjCA,OAAO,CAAC,2BAA2B,CAAC;AACpCA,OAAO,CAAC,sBAAsB,CAAC;AAC/BA,OAAO,CAAC,qBAAqB,CAAC;AAC9BA,OAAO,CAAC,qBAAqB,CAAC;AAC9BA,OAAO,CAAC,gCAAgC,CAAC;AACzCA,OAAO,CAAC,wBAAwB,CAAC;AACjCA,OAAO,CAAC,0BAA0B,CAAC;AAEnC,IAAMC,KAAK,GAAGD,OAAO,CAAC,cAAc,CAAC;AACrC,IAAME,SAAS,GAAGF,OAAO,CAAC,mBAAmB,CAAC,CAACG,OAAO;AAEtD,IAAMC,MAAM,GAAGJ,OAAO,CAAC,UAAU,CAAC;AAElC,IAAMK,SAAS,GAAGH,SAAS,CAACI,MAAM,CAAC;EACjCC,KAAK,EAAE,IAAI;EACXC,OAAO;AACT,CAAC,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACAH,SAAS,CAACI,IAAI,GAAG,SAASA,IAAIA,CAAA,EAAa;EAAA,IAAZC,KAAK,GAAAC,SAAA,CAAAC,MAAA,QAAAD,SAAA,QAAAE,SAAA,GAAAF,SAAA,MAAG,CAAC,CAAC;EACvCD,KAAK,CAACN,MAAM,GAAGH,KAAK,CAClB;IACEa,OAAO,EAAE;EACX,CAAC,EACDV,MAAM,EACNM,KAAK,CAACN,MACR,CAAC,CAAC,CAAC;;EAEH,OAAO,IAAIC,SAAS,CAACK,KAAK,CAAC;AAC7B,CAAC;AAEDK,MAAM,CAACC,OAAO,GAAGX,SAAS"}
|
package/package.json
CHANGED
|
@@ -32,38 +32,39 @@
|
|
|
32
32
|
"@webex/eslint-config-legacy": "0.0.0",
|
|
33
33
|
"@webex/jest-config-legacy": "0.0.0",
|
|
34
34
|
"@webex/legacy-tools": "0.0.0",
|
|
35
|
-
"@webex/test-helper-chai": "3.8.0-next.
|
|
36
|
-
"@webex/test-helper-file": "3.8.0-next.
|
|
37
|
-
"@webex/test-helper-mocha": "3.8.0-next.
|
|
38
|
-
"@webex/test-helper-mock-webex": "3.8.0-next.
|
|
39
|
-
"@webex/test-helper-test-users": "3.8.0-next.
|
|
35
|
+
"@webex/test-helper-chai": "3.8.0-next.21",
|
|
36
|
+
"@webex/test-helper-file": "3.8.0-next.21",
|
|
37
|
+
"@webex/test-helper-mocha": "3.8.0-next.21",
|
|
38
|
+
"@webex/test-helper-mock-webex": "3.8.0-next.21",
|
|
39
|
+
"@webex/test-helper-test-users": "3.8.0-next.21",
|
|
40
40
|
"eslint": "^8.24.0",
|
|
41
41
|
"sinon": "^9.2.4"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@babel/polyfill": "^7.12.1",
|
|
45
45
|
"@babel/runtime-corejs2": "^7.14.8",
|
|
46
|
-
"@webex/common": "3.8.0-next.
|
|
47
|
-
"@webex/internal-plugin-calendar": "3.8.0-next.
|
|
48
|
-
"@webex/internal-plugin-device": "3.8.0-next.
|
|
49
|
-
"@webex/internal-plugin-llm": "3.8.0-next.
|
|
50
|
-
"@webex/internal-plugin-presence": "3.8.0-next.
|
|
51
|
-
"@webex/internal-plugin-support": "3.8.0-next.
|
|
52
|
-
"@webex/internal-plugin-voicea": "3.8.0-next.
|
|
53
|
-
"@webex/plugin-attachment-actions": "3.8.0-next.
|
|
54
|
-
"@webex/plugin-authorization": "3.8.0-next.
|
|
55
|
-
"@webex/plugin-device-manager": "3.8.0-next.
|
|
56
|
-
"@webex/plugin-
|
|
57
|
-
"@webex/plugin-
|
|
58
|
-
"@webex/plugin-
|
|
59
|
-
"@webex/plugin-
|
|
60
|
-
"@webex/plugin-
|
|
61
|
-
"@webex/plugin-
|
|
62
|
-
"@webex/plugin-
|
|
63
|
-
"@webex/plugin-
|
|
64
|
-
"@webex/
|
|
65
|
-
"@webex/
|
|
46
|
+
"@webex/common": "3.8.0-next.21",
|
|
47
|
+
"@webex/internal-plugin-calendar": "3.8.0-next.26",
|
|
48
|
+
"@webex/internal-plugin-device": "3.8.0-next.21",
|
|
49
|
+
"@webex/internal-plugin-llm": "3.8.0-next.24",
|
|
50
|
+
"@webex/internal-plugin-presence": "3.8.0-next.23",
|
|
51
|
+
"@webex/internal-plugin-support": "3.8.0-next.26",
|
|
52
|
+
"@webex/internal-plugin-voicea": "3.8.0-next.78",
|
|
53
|
+
"@webex/plugin-attachment-actions": "3.8.0-next.26",
|
|
54
|
+
"@webex/plugin-authorization": "3.8.0-next.22",
|
|
55
|
+
"@webex/plugin-device-manager": "3.8.0-next.27",
|
|
56
|
+
"@webex/plugin-encryption": "3.8.0-next.15",
|
|
57
|
+
"@webex/plugin-logger": "3.8.0-next.21",
|
|
58
|
+
"@webex/plugin-memberships": "3.8.0-next.26",
|
|
59
|
+
"@webex/plugin-messages": "3.8.0-next.26",
|
|
60
|
+
"@webex/plugin-people": "3.8.0-next.23",
|
|
61
|
+
"@webex/plugin-rooms": "3.8.0-next.26",
|
|
62
|
+
"@webex/plugin-team-memberships": "3.8.0-next.26",
|
|
63
|
+
"@webex/plugin-teams": "3.8.0-next.26",
|
|
64
|
+
"@webex/plugin-webhooks": "3.8.0-next.26",
|
|
65
|
+
"@webex/storage-adapter-local-storage": "3.8.0-next.21",
|
|
66
|
+
"@webex/webex-core": "3.8.0-next.21",
|
|
66
67
|
"lodash": "^4.17.21"
|
|
67
68
|
},
|
|
68
|
-
"version": "3.8.0-next.
|
|
69
|
+
"version": "3.8.0-next.60"
|
|
69
70
|
}
|
package/src/webex-node.js
CHANGED
|
@@ -24,6 +24,7 @@ require('@webex/plugin-rooms');
|
|
|
24
24
|
require('@webex/plugin-teams');
|
|
25
25
|
require('@webex/plugin-team-memberships');
|
|
26
26
|
require('@webex/plugin-webhooks');
|
|
27
|
+
require('@webex/plugin-encryption');
|
|
27
28
|
|
|
28
29
|
const merge = require('lodash/merge');
|
|
29
30
|
const WebexCore = require('@webex/webex-core').default;
|