@vsniksnet/contracts 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.
package/gen/users.ts CHANGED
@@ -41,7 +41,7 @@ export interface GetAuthResponse {
41
41
  avatar: string;
42
42
  followersCount: number;
43
43
  followingCount: number;
44
- requestCount: number;
44
+ requestsCount: number;
45
45
  friendsCount: number;
46
46
  }
47
47
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vsniksnet/contracts",
3
- "version": "1.3.4",
3
+ "version": "1.3.5",
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
@@ -57,7 +57,7 @@ message GetAuthResponse {
57
57
  string avatar = 3;
58
58
  int32 followers_count = 4;
59
59
  int32 following_count = 5;
60
- int32 request_count = 6;
60
+ int32 requests_count = 6;
61
61
  int32 friends_count = 7;
62
62
  }
63
63