@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 CHANGED
@@ -73,6 +73,7 @@ export interface Profile {
73
73
  followersCount?: number | undefined;
74
74
  followingCount?: number | undefined;
75
75
  isFollow?: boolean | undefined;
76
+ friendStatus?: string | undefined;
76
77
  }
77
78
 
78
79
  export const FRIENDS_V1_PACKAGE_NAME = "friends.v1";
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vsniksnet/contracts",
3
- "version": "1.3.1",
3
+ "version": "1.3.4",
4
4
  "description": "Protobuf definitions and generated typescript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -79,4 +79,5 @@ message Profile {
79
79
  optional int32 followers_count = 12;
80
80
  optional int32 following_count = 13;
81
81
  optional bool is_follow = 14;
82
+ optional string friend_status = 15;
82
83
  }
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
  }