@vsniksnet/contracts 1.2.18 → 1.2.20

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
@@ -66,7 +66,7 @@ export interface UpdateUserRequest {
66
66
  bio?: string | undefined;
67
67
  gender?: string | undefined;
68
68
  status?: string | undefined;
69
- country?: string | undefined;
69
+ location?: string | undefined;
70
70
  birthDay?: string | undefined;
71
71
  }
72
72
 
@@ -130,8 +130,10 @@ export interface Profile {
130
130
  bio: string;
131
131
  gender: string;
132
132
  status: string;
133
- country: string;
133
+ location: 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.20",
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
@@ -80,7 +80,7 @@ message UpdateUserRequest {
80
80
  optional string bio = 5;
81
81
  optional string gender = 6;
82
82
  optional string status = 7;
83
- optional string country = 8;
83
+ optional string location = 8;
84
84
  optional string birth_day = 9;
85
85
  }
86
86
 
@@ -145,7 +145,9 @@ message Profile {
145
145
  string bio = 5;
146
146
  string gender = 6;
147
147
  string status = 7;
148
- string country = 8;
148
+ string location = 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
  }