@taskora-uni/contracts 6.4.0 → 7.0.0
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/dist/generated/user.d.ts +1 -0
- package/package.json +1 -1
- package/proto/user.proto +7 -6
package/dist/generated/user.d.ts
CHANGED
package/package.json
CHANGED
package/proto/user.proto
CHANGED
|
@@ -26,12 +26,13 @@ message ListUsersRequest {
|
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
message User {
|
|
29
|
-
string
|
|
30
|
-
string
|
|
31
|
-
string
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
string id = 1;
|
|
30
|
+
string first_name = 2;
|
|
31
|
+
string last_name = 3;
|
|
32
|
+
string email = 4;
|
|
33
|
+
SystemRole system_role = 5;
|
|
34
|
+
google.protobuf.Timestamp created_at = 6;
|
|
35
|
+
string account_id = 7;
|
|
35
36
|
}
|
|
36
37
|
|
|
37
38
|
message ListUsersResponse {
|