@vsniksnet/contracts 1.2.14 → 1.2.15

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
@@ -34,6 +34,7 @@ export interface ListUsersRequest {
34
34
  status?: string | undefined;
35
35
  page: number;
36
36
  limit: number;
37
+ userId: string;
37
38
  }
38
39
 
39
40
  export interface ListUsersResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vsniksnet/contracts",
3
- "version": "1.2.14",
3
+ "version": "1.2.15",
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
@@ -40,6 +40,7 @@ message ListUsersRequest {
40
40
  optional string status = 3;
41
41
  int32 page = 4;
42
42
  int32 limit = 5;
43
+ string user_id = 6;
43
44
  }
44
45
 
45
46
  message ListUsersResponse {