@vsniksnet/contracts 1.2.19 → 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 +2 -2
- package/package.json +1 -1
- package/proto/users.proto +2 -2
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
|
-
|
|
69
|
+
location?: string | undefined;
|
|
70
70
|
birthDay?: string | undefined;
|
|
71
71
|
}
|
|
72
72
|
|
|
@@ -130,7 +130,7 @@ export interface Profile {
|
|
|
130
130
|
bio: string;
|
|
131
131
|
gender: string;
|
|
132
132
|
status: string;
|
|
133
|
-
|
|
133
|
+
location: string;
|
|
134
134
|
birthDay: string;
|
|
135
135
|
followersCount: string;
|
|
136
136
|
followingCount: string;
|
package/package.json
CHANGED
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
|
|
83
|
+
optional string location = 8;
|
|
84
84
|
optional string birth_day = 9;
|
|
85
85
|
}
|
|
86
86
|
|
|
@@ -145,7 +145,7 @@ message Profile {
|
|
|
145
145
|
string bio = 5;
|
|
146
146
|
string gender = 6;
|
|
147
147
|
string status = 7;
|
|
148
|
-
string
|
|
148
|
+
string location = 8;
|
|
149
149
|
string birth_day = 9;
|
|
150
150
|
string followers_count = 10;
|
|
151
151
|
string following_count = 11;
|