@vsniksnet/contracts 1.3.1 → 1.3.4
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/friends.ts +1 -0
- package/gen/users.ts +2 -0
- package/package.json +1 -1
- package/proto/friends.proto +1 -0
- package/proto/users.proto +2 -0
package/gen/friends.ts
CHANGED
package/gen/users.ts
CHANGED
|
@@ -134,6 +134,7 @@ export interface User {
|
|
|
134
134
|
username: string;
|
|
135
135
|
avatar: string;
|
|
136
136
|
isFollow?: boolean | undefined;
|
|
137
|
+
friendStatus?: string | undefined;
|
|
137
138
|
}
|
|
138
139
|
|
|
139
140
|
export interface Profile {
|
|
@@ -151,6 +152,7 @@ export interface Profile {
|
|
|
151
152
|
followersCount?: number | undefined;
|
|
152
153
|
followingCount?: number | undefined;
|
|
153
154
|
isFollow?: boolean | undefined;
|
|
155
|
+
friendStatus?: string | undefined;
|
|
154
156
|
}
|
|
155
157
|
|
|
156
158
|
export const USERS_V1_PACKAGE_NAME = "users.v1";
|
package/package.json
CHANGED
package/proto/friends.proto
CHANGED
package/proto/users.proto
CHANGED
|
@@ -151,6 +151,7 @@ message User {
|
|
|
151
151
|
string username = 3;
|
|
152
152
|
string avatar = 4;
|
|
153
153
|
optional bool is_follow = 5;
|
|
154
|
+
optional string friend_status = 6;
|
|
154
155
|
}
|
|
155
156
|
|
|
156
157
|
message Profile {
|
|
@@ -168,4 +169,5 @@ message Profile {
|
|
|
168
169
|
optional int32 followers_count = 12;
|
|
169
170
|
optional int32 following_count = 13;
|
|
170
171
|
optional bool is_follow = 14;
|
|
172
|
+
optional string friend_status = 15;
|
|
171
173
|
}
|