@wenlarge/communication 1.3.4 → 1.3.5

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.
@@ -38,7 +38,6 @@ export interface InviteToCompanyResponse {
38
38
  email: string;
39
39
  }
40
40
  export interface UpdateUserRequest {
41
- userId: string;
42
41
  name: string;
43
42
  email: string;
44
43
  gsm: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wenlarge/communication",
3
- "version": "1.3.4",
3
+ "version": "1.3.5",
4
4
  "description": "Shared gRPC proto interfaces and generated clients for Wenlarge microservices.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/proto/auth.proto CHANGED
@@ -62,11 +62,10 @@ message InviteToCompanyResponse{
62
62
  }
63
63
 
64
64
  message UpdateUserRequest {
65
- string userId = 1;
66
- string name = 2;
67
- string email = 3;
68
- string gsm = 4;
69
- string password = 5;
65
+ string name = 1;
66
+ string email = 2;
67
+ string gsm = 3;
68
+ string password = 4;
70
69
  }
71
70
 
72
71
  message UpdateInviteStatusRequest{
@@ -56,7 +56,6 @@ export interface InviteToCompanyResponse {
56
56
  }
57
57
 
58
58
  export interface UpdateUserRequest {
59
- userId: string;
60
59
  name: string;
61
60
  email: string;
62
61
  gsm: string;