@vsniksnet/contracts 1.3.10 → 1.3.11

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/users.ts CHANGED
@@ -23,7 +23,7 @@ export interface CreateUserResponse {
23
23
 
24
24
  /** Get one user */
25
25
  export interface GetUserRequest {
26
- userId: string;
26
+ username: string;
27
27
  currentId: string;
28
28
  }
29
29
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vsniksnet/contracts",
3
- "version": "1.3.10",
3
+ "version": "1.3.11",
4
4
  "description": "Protobuf definitions and generated typescript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/proto/users.proto CHANGED
@@ -39,7 +39,7 @@ message CreateUserResponse {
39
39
 
40
40
  /* Get one user */
41
41
  message GetUserRequest {
42
- string user_id = 1;
42
+ string username = 1;
43
43
  string current_id = 2;
44
44
  }
45
45