@webex/plugin-authorization-browser-first-party 2.52.5 → 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 -10
- package/process +1 -0
package/.eslintrc.js
ADDED
package/babel.config.js
ADDED
package/dist/authorization.js
CHANGED
|
@@ -313,7 +313,7 @@ var Authorization = _webexCore.WebexPlugin.extend((_dec = (0, _common.whileInFli
|
|
|
313
313
|
throw new Error("CSRF token ".concat(token, " does not match stored token ").concat(sessionToken));
|
|
314
314
|
}
|
|
315
315
|
},
|
|
316
|
-
version: "2.52.
|
|
316
|
+
version: "2.52.7"
|
|
317
317
|
}, ((0, _applyDecoratedDescriptor2.default)(_obj, "initiateAuthorizationCodeGrant", [_dec], (0, _getOwnPropertyDescriptor.default)(_obj, "initiateAuthorizationCodeGrant"), _obj), (0, _applyDecoratedDescriptor2.default)(_obj, "requestAuthorizationCodeGrant", [_dec2, _common.oneFlight], (0, _getOwnPropertyDescriptor.default)(_obj, "requestAuthorizationCodeGrant"), _obj)), _obj)));
|
|
318
318
|
var _default = Authorization;
|
|
319
319
|
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-first-party",
|
|
3
|
-
"version": "2.52.
|
|
3
|
+
"version": "2.52.7",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Ian W. Remmel <iremmel@cisco.com>",
|
|
@@ -21,21 +21,40 @@
|
|
|
21
21
|
]
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
+
"@babel/core": "^7.17.10",
|
|
24
25
|
"@babel/polyfill": "^7.12.1",
|
|
26
|
+
"@webex/babel-config-legacy": "2.52.7",
|
|
27
|
+
"@webex/eslint-config-legacy": "2.52.7",
|
|
28
|
+
"@webex/jest-config-legacy": "2.52.7",
|
|
29
|
+
"@webex/legacy-tools": "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",
|
|
25
36
|
"sinon": "^9.2.4"
|
|
26
37
|
},
|
|
27
38
|
"dependencies": {
|
|
28
|
-
"@webex/common": "2.52.
|
|
29
|
-
"@webex/
|
|
30
|
-
"@webex/
|
|
31
|
-
"@webex/test-helper-
|
|
32
|
-
"@webex/test-helper-
|
|
33
|
-
"@webex/test-helper-
|
|
34
|
-
"@webex/test-helper-
|
|
35
|
-
"@webex/
|
|
36
|
-
"@webex/webex-core": "2.52.5",
|
|
39
|
+
"@webex/common": "2.52.7",
|
|
40
|
+
"@webex/storage-adapter-local-storage": "2.52.7",
|
|
41
|
+
"@webex/test-helper-automation": "2.52.7",
|
|
42
|
+
"@webex/test-helper-chai": "2.52.7",
|
|
43
|
+
"@webex/test-helper-mocha": "2.52.7",
|
|
44
|
+
"@webex/test-helper-mock-webex": "2.52.7",
|
|
45
|
+
"@webex/test-helper-test-users": "2.52.7",
|
|
46
|
+
"@webex/webex-core": "2.52.7",
|
|
37
47
|
"crypto-js": "^4.1.1",
|
|
38
48
|
"lodash": "^4.17.21",
|
|
39
49
|
"uuid": "^3.3.2"
|
|
50
|
+
},
|
|
51
|
+
"scripts": {
|
|
52
|
+
"build": "yarn build:src",
|
|
53
|
+
"build:src": "webex-legacy-tools build -dest \"./dist\" -src \"./src\" -js -ts -maps",
|
|
54
|
+
"test": "yarn test:style && yarn test:unit && yarn test:integration && yarn test:browser",
|
|
55
|
+
"test:browser:broken": "webex-legacy-tools test --integration --unit --runner karma",
|
|
56
|
+
"test:integration": "webex-legacy-tools test --integration --runner mocha",
|
|
57
|
+
"test:style": "eslint ./src/**/*.*",
|
|
58
|
+
"test:unit": "webex-legacy-tools test --unit --runner jest"
|
|
40
59
|
}
|
|
41
60
|
}
|
package/process
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = {browser: true};
|