@webex/plugin-authorization-node 2.52.6 → 2.52.7
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/.eslintrc.js +6 -0
- package/babel.config.js +3 -0
- package/dist/authorization.js +1 -1
- package/jest.config.js +3 -0
- package/package.json +25 -10
- package/process +1 -0
package/.eslintrc.js
ADDED
package/babel.config.js
ADDED
package/dist/authorization.js
CHANGED
|
@@ -177,7 +177,7 @@ var Authorization = _webexCore.WebexPlugin.extend((_dec = (0, _common.whileInFli
|
|
|
177
177
|
return _promise.default.reject(e);
|
|
178
178
|
}
|
|
179
179
|
},
|
|
180
|
-
version: "2.52.
|
|
180
|
+
version: "2.52.7"
|
|
181
181
|
}, ((0, _applyDecoratedDescriptor2.default)(_obj, "requestAuthorizationCodeGrant", [_dec, _common.oneFlight], (0, _getOwnPropertyDescriptor.default)(_obj, "requestAuthorizationCodeGrant"), _obj), (0, _applyDecoratedDescriptor2.default)(_obj, "requestAccessTokenFromJwt", [_common.oneFlight], (0, _getOwnPropertyDescriptor.default)(_obj, "requestAccessTokenFromJwt"), _obj)), _obj)));
|
|
182
182
|
var _default = Authorization;
|
|
183
183
|
exports.default = _default;
|
package/jest.config.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webex/plugin-authorization-node",
|
|
3
|
-
"version": "2.52.
|
|
3
|
+
"version": "2.52.7",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -21,19 +21,34 @@
|
|
|
21
21
|
]
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@
|
|
25
|
-
"@webex/
|
|
26
|
-
"@webex/
|
|
27
|
-
"@webex/
|
|
28
|
-
"@webex/
|
|
24
|
+
"@babel/core": "^7.17.10",
|
|
25
|
+
"@webex/babel-config-legacy": "2.52.7",
|
|
26
|
+
"@webex/eslint-config-legacy": "2.52.7",
|
|
27
|
+
"@webex/jest-config-legacy": "2.52.7",
|
|
28
|
+
"@webex/legacy-tools": "2.52.7",
|
|
29
|
+
"@webex/test-helper-appid": "2.52.7",
|
|
30
|
+
"@webex/test-helper-chai": "2.52.7",
|
|
31
|
+
"@webex/test-helper-mocha": "2.52.7",
|
|
32
|
+
"@webex/test-helper-mock-webex": "2.52.7",
|
|
33
|
+
"@webex/test-helper-test-users": "2.52.7",
|
|
34
|
+
"eslint": "^8.24.0",
|
|
35
|
+
"prettier": "^2.7.1",
|
|
29
36
|
"sinon": "^9.2.4"
|
|
30
37
|
},
|
|
31
38
|
"dependencies": {
|
|
32
|
-
"@webex/common": "2.52.
|
|
33
|
-
"@webex/internal-plugin-device": "2.52.
|
|
34
|
-
"@webex/
|
|
35
|
-
"@webex/webex-core": "2.52.6",
|
|
39
|
+
"@webex/common": "2.52.7",
|
|
40
|
+
"@webex/internal-plugin-device": "2.52.7",
|
|
41
|
+
"@webex/webex-core": "2.52.7",
|
|
36
42
|
"jsonwebtoken": "^9.0.0",
|
|
37
43
|
"uuid": "^3.3.2"
|
|
44
|
+
},
|
|
45
|
+
"scripts": {
|
|
46
|
+
"build": "yarn build:src",
|
|
47
|
+
"build:src": "webex-legacy-tools build -dest \"./dist\" -src \"./src\" -js -ts -maps",
|
|
48
|
+
"test": "yarn test:style && yarn test:unit && yarn test:integration && yarn test:browser",
|
|
49
|
+
"test:browser": "webex-legacy-tools test --integration --unit --runner karma",
|
|
50
|
+
"test:integration": "webex-legacy-tools test --integration --runner mocha",
|
|
51
|
+
"test:style": "eslint ./src/**/*.*",
|
|
52
|
+
"test:unit": "webex-legacy-tools test --unit --runner jest"
|
|
38
53
|
}
|
|
39
54
|
}
|
package/process
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = {browser: true};
|