@webex/internal-plugin-user 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/user-uuid-batcher.js +1 -1
- package/dist/user.js +1 -1
- package/jest.config.js +3 -0
- package/package.json +27 -8
- package/process +1 -0
package/.eslintrc.js
ADDED
package/babel.config.js
ADDED
|
@@ -125,7 +125,7 @@ var UserUUIDBatcher = _webexCore.WebexPlugin.extend({
|
|
|
125
125
|
request: function request(payload) {
|
|
126
126
|
return payload.create ? this.creator.request(payload.email) : this.faker.request(payload.email);
|
|
127
127
|
},
|
|
128
|
-
version: "2.52.
|
|
128
|
+
version: "2.52.7"
|
|
129
129
|
});
|
|
130
130
|
var _default = UserUUIDBatcher;
|
|
131
131
|
exports.default = _default;
|
package/dist/user.js
CHANGED
|
@@ -448,7 +448,7 @@ var User = _webexCore.WebexPlugin.extend((_dec = (0, _webexCore.waitForValue)('@
|
|
|
448
448
|
_extractEmailAddress: function _extractEmailAddress(user) {
|
|
449
449
|
return user.email || user.emailAddress || user.entryEmail || user;
|
|
450
450
|
},
|
|
451
|
-
version: "2.52.
|
|
451
|
+
version: "2.52.7"
|
|
452
452
|
}, ((0, _applyDecoratedDescriptor2.default)(_obj, "activate", [_dec], (0, _getOwnPropertyDescriptor.default)(_obj, "activate"), _obj), (0, _applyDecoratedDescriptor2.default)(_obj, "getUUID", [_dec2], (0, _getOwnPropertyDescriptor.default)(_obj, "getUUID"), _obj), (0, _applyDecoratedDescriptor2.default)(_obj, "initialize", [_dec3], (0, _getOwnPropertyDescriptor.default)(_obj, "initialize"), _obj), (0, _applyDecoratedDescriptor2.default)(_obj, "register", [_dec4], (0, _getOwnPropertyDescriptor.default)(_obj, "register"), _obj)), _obj)));
|
|
453
453
|
var _default2 = User;
|
|
454
454
|
exports.default = _default2;
|
package/jest.config.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webex/internal-plugin-user",
|
|
3
|
-
"version": "2.52.
|
|
3
|
+
"version": "2.52.7",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -20,17 +20,36 @@
|
|
|
20
20
|
]
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
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-chai": "2.52.7",
|
|
29
|
+
"@webex/test-helper-mocha": "2.52.7",
|
|
30
|
+
"@webex/test-helper-mock-webex": "2.52.7",
|
|
31
|
+
"@webex/test-helper-test-users": "2.52.7",
|
|
32
|
+
"eslint": "^8.24.0",
|
|
33
|
+
"prettier": "^2.7.1",
|
|
23
34
|
"sinon": "^9.2.4"
|
|
24
35
|
},
|
|
25
36
|
"dependencies": {
|
|
26
|
-
"@webex/common": "2.52.
|
|
27
|
-
"@webex/internal-plugin-device": "2.52.
|
|
28
|
-
"@webex/
|
|
29
|
-
"@webex/test-helper-
|
|
30
|
-
"@webex/test-helper-
|
|
31
|
-
"@webex/
|
|
32
|
-
"@webex/webex-core": "2.52.6",
|
|
37
|
+
"@webex/common": "2.52.7",
|
|
38
|
+
"@webex/internal-plugin-device": "2.52.7",
|
|
39
|
+
"@webex/test-helper-chai": "2.52.7",
|
|
40
|
+
"@webex/test-helper-mock-webex": "2.52.7",
|
|
41
|
+
"@webex/test-helper-test-users": "2.52.7",
|
|
42
|
+
"@webex/webex-core": "2.52.7",
|
|
33
43
|
"lodash": "^4.17.21",
|
|
34
44
|
"uuid": "^3.3.2"
|
|
45
|
+
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"build": "yarn build:src",
|
|
48
|
+
"build:src": "webex-legacy-tools build -dest \"./dist\" -src \"./src\" -js -ts -maps",
|
|
49
|
+
"test": "yarn test:style && yarn test:unit && yarn test:integration && yarn test:browser",
|
|
50
|
+
"test:browser": "webex-legacy-tools test --integration --unit --runner karma",
|
|
51
|
+
"test:integration": "webex-legacy-tools test --integration --runner mocha",
|
|
52
|
+
"test:style": "eslint ./src/**/*.*",
|
|
53
|
+
"test:unit": "webex-legacy-tools test --unit --runner jest"
|
|
35
54
|
}
|
|
36
55
|
}
|
package/process
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = {browser: true};
|