@cocreate/users 1.22.3 → 1.22.4
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/CHANGELOG.md +7 -0
- package/package.json +8 -8
- package/src/server.js +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.22.4](https://github.com/CoCreate-app/CoCreate-users/compare/v1.22.3...v1.22.4) (2023-05-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Add UID to sign-in and user status response ([33801a9](https://github.com/CoCreate-app/CoCreate-users/commit/33801a93dc5c2a36d3752dbe39abf443b8cc884c))
|
|
7
|
+
|
|
1
8
|
## [1.22.3](https://github.com/CoCreate-app/CoCreate-users/compare/v1.22.2...v1.22.3) (2023-05-21)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cocreate/users",
|
|
3
|
-
"version": "1.22.
|
|
3
|
+
"version": "1.22.4",
|
|
4
4
|
"description": "A simple users component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"users",
|
|
@@ -59,12 +59,12 @@
|
|
|
59
59
|
"webpack-log": "^3.0.1"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@cocreate/actions": "^1.8.
|
|
63
|
-
"@cocreate/crud-client": "^1.21.
|
|
64
|
-
"@cocreate/docs": "^1.7.
|
|
65
|
-
"@cocreate/element-prototype": "^1.8.
|
|
66
|
-
"@cocreate/form": "^1.14.
|
|
67
|
-
"@cocreate/local-storage": "^1.7.
|
|
68
|
-
"@cocreate/render": "^1.24.
|
|
62
|
+
"@cocreate/actions": "^1.8.12",
|
|
63
|
+
"@cocreate/crud-client": "^1.21.5",
|
|
64
|
+
"@cocreate/docs": "^1.7.13",
|
|
65
|
+
"@cocreate/element-prototype": "^1.8.12",
|
|
66
|
+
"@cocreate/form": "^1.14.12",
|
|
67
|
+
"@cocreate/local-storage": "^1.7.3",
|
|
68
|
+
"@cocreate/render": "^1.24.13"
|
|
69
69
|
}
|
|
70
70
|
}
|
package/src/server.js
CHANGED
|
@@ -53,7 +53,8 @@ class CoCreateUser {
|
|
|
53
53
|
success: false,
|
|
54
54
|
message: "signIn failed",
|
|
55
55
|
status: "failed",
|
|
56
|
-
userStatus: 'off'
|
|
56
|
+
userStatus: 'off',
|
|
57
|
+
uid: data.uid
|
|
57
58
|
}
|
|
58
59
|
|
|
59
60
|
if (data.document[0] && data.document[0]._id && self.wsManager.authInstance) {
|
|
@@ -67,7 +68,8 @@ class CoCreateUser {
|
|
|
67
68
|
status: "success",
|
|
68
69
|
userStatus: 'on',
|
|
69
70
|
user_id,
|
|
70
|
-
token
|
|
71
|
+
token,
|
|
72
|
+
uid: data.uid
|
|
71
73
|
};
|
|
72
74
|
|
|
73
75
|
// if (data.organization_id != process.env.organization_id) {
|