@requ1emz/contracts 1.0.43 → 1.0.44

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
@@ -51,6 +51,7 @@ export interface SendGetUserResponse {
51
51
  id: string;
52
52
  email: string;
53
53
  username: string;
54
+ passwordHash: string;
54
55
  }
55
56
 
56
57
  export interface SendDeleteUserRequest {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@requ1emz/contracts",
3
- "version": "1.0.43",
3
+ "version": "1.0.44",
4
4
  "description": "Protobuf definitions and generated TypeScript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/proto/user.proto CHANGED
@@ -53,6 +53,7 @@ message SendGetUserResponse {
53
53
  string id = 1;
54
54
  string email = 2;
55
55
  string username = 3;
56
+ string password_hash = 4;
56
57
  }
57
58
 
58
59
  message SendDeleteUserRequest {