@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 CHANGED
@@ -42,6 +42,7 @@ export interface User {
42
42
  username: string;
43
43
  email: string;
44
44
  avatarUrl: string;
45
+ passwordHash: string;
45
46
  createdAt: Timestamp | undefined;
46
47
  updatedAt: Timestamp | undefined;
47
48
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voice-chat/contracts",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "api-contracts",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
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
- google.protobuf.Timestamp created_at = 5;
45
- google.protobuf.Timestamp updated_at = 6;
44
+ string password_hash = 5;
45
+ google.protobuf.Timestamp created_at = 6;
46
+ google.protobuf.Timestamp updated_at = 7;
46
47
  }