@webex/plugin-authorization-browser 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 +29 -14
- package/process +1 -0
package/.eslintrc.js
ADDED
package/babel.config.js
ADDED
package/dist/authorization.js
CHANGED
|
@@ -381,7 +381,7 @@ var Authorization = _webexCore.WebexPlugin.extend((_dec = (0, _common.whileInFli
|
|
|
381
381
|
throw new Error("CSRF token ".concat(token, " does not match stored token ").concat(sessionToken));
|
|
382
382
|
}
|
|
383
383
|
},
|
|
384
|
-
version: "2.52.
|
|
384
|
+
version: "2.52.7"
|
|
385
385
|
}, ((0, _applyDecoratedDescriptor2.default)(_obj, "initiateImplicitGrant", [_dec], (0, _getOwnPropertyDescriptor.default)(_obj, "initiateImplicitGrant"), _obj), (0, _applyDecoratedDescriptor2.default)(_obj, "initiateAuthorizationCodeGrant", [_dec2], (0, _getOwnPropertyDescriptor.default)(_obj, "initiateAuthorizationCodeGrant"), _obj), (0, _applyDecoratedDescriptor2.default)(_obj, "requestAccessTokenFromJwt", [_common.oneFlight], (0, _getOwnPropertyDescriptor.default)(_obj, "requestAccessTokenFromJwt"), _obj)), _obj)));
|
|
386
386
|
var _default = Authorization;
|
|
387
387
|
exports.default = _default;
|
package/jest.config.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webex/plugin-authorization-browser",
|
|
3
|
-
"version": "2.52.
|
|
3
|
+
"version": "2.52.7",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -20,24 +20,39 @@
|
|
|
20
20
|
]
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"@
|
|
24
|
-
"@webex/
|
|
25
|
-
"@webex/
|
|
26
|
-
"@webex/
|
|
27
|
-
"@webex/
|
|
28
|
-
"@webex/test-helper-
|
|
29
|
-
"@webex/test-helper-
|
|
23
|
+
"@babel/core": "^7.17.10",
|
|
24
|
+
"@webex/babel-config-legacy": "2.52.7",
|
|
25
|
+
"@webex/eslint-config-legacy": "2.52.7",
|
|
26
|
+
"@webex/jest-config-legacy": "2.52.7",
|
|
27
|
+
"@webex/legacy-tools": "2.52.7",
|
|
28
|
+
"@webex/test-helper-appid": "2.52.7",
|
|
29
|
+
"@webex/test-helper-automation": "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",
|
|
30
36
|
"sinon": "^9.2.4"
|
|
31
37
|
},
|
|
32
38
|
"dependencies": {
|
|
33
|
-
"@webex/common": "2.52.
|
|
34
|
-
"@webex/internal-plugin-device": "2.52.
|
|
35
|
-
"@webex/plugin-authorization-node": "2.52.
|
|
36
|
-
"@webex/storage-adapter-local-storage": "2.52.
|
|
37
|
-
"@webex/storage-adapter-spec": "2.52.
|
|
38
|
-
"@webex/webex-core": "2.52.
|
|
39
|
+
"@webex/common": "2.52.7",
|
|
40
|
+
"@webex/internal-plugin-device": "2.52.7",
|
|
41
|
+
"@webex/plugin-authorization-node": "2.52.7",
|
|
42
|
+
"@webex/storage-adapter-local-storage": "2.52.7",
|
|
43
|
+
"@webex/storage-adapter-spec": "2.52.7",
|
|
44
|
+
"@webex/webex-core": "2.52.7",
|
|
39
45
|
"jose": "^4.13.1",
|
|
40
46
|
"lodash": "^4.17.21",
|
|
41
47
|
"uuid": "^3.3.2"
|
|
48
|
+
},
|
|
49
|
+
"scripts": {
|
|
50
|
+
"build": "yarn build:src",
|
|
51
|
+
"build:src": "webex-legacy-tools build -dest \"./dist\" -src \"./src\" -js -ts -maps",
|
|
52
|
+
"test": "yarn test:style && yarn test:unit && yarn test:integration && yarn test:browser",
|
|
53
|
+
"test:browser:broken": "webex-legacy-tools test --integration --unit --runner karma",
|
|
54
|
+
"test:integration": "webex-legacy-tools test --integration --runner mocha",
|
|
55
|
+
"test:style": "eslint ./src/**/*.*",
|
|
56
|
+
"test:unit": "webex-legacy-tools test --unit --runner jest"
|
|
42
57
|
}
|
|
43
58
|
}
|
package/process
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = {browser: true};
|