@voice-chat/contracts 1.0.7 → 1.0.8
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/gen/user.ts +1 -0
- package/package.json +1 -1
- package/proto/user.proto +3 -2
package/gen/user.ts
CHANGED
package/package.json
CHANGED
package/proto/user.proto
CHANGED
|
@@ -41,6 +41,7 @@ message User {
|
|
|
41
41
|
string username = 2;
|
|
42
42
|
string email = 3;
|
|
43
43
|
string avatar_url = 4;
|
|
44
|
-
|
|
45
|
-
google.protobuf.Timestamp
|
|
44
|
+
string password_hash = 5;
|
|
45
|
+
google.protobuf.Timestamp created_at = 6;
|
|
46
|
+
google.protobuf.Timestamp updated_at = 7;
|
|
46
47
|
}
|