@vsniksnet/contracts 1.2.18 → 1.2.19

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
@@ -132,6 +132,8 @@ export interface Profile {
132
132
  status: string;
133
133
  country: string;
134
134
  birthDay: string;
135
+ followersCount: string;
136
+ followingCount: string;
135
137
  isFollow?: boolean | undefined;
136
138
  }
137
139
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vsniksnet/contracts",
3
- "version": "1.2.18",
3
+ "version": "1.2.19",
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
@@ -147,5 +147,7 @@ message Profile {
147
147
  string status = 7;
148
148
  string country = 8;
149
149
  string birth_day = 9;
150
- optional bool is_follow = 10;
150
+ string followers_count = 10;
151
+ string following_count = 11;
152
+ optional bool is_follow = 12;
151
153
  }