Skip to content

Commit 6262c90

Browse files
committed
feat: Additional data in upsert and updates responses
1 parent 2a0185f commit 6262c90

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

proto/decentraland/social_service/v2/social_service_v2.proto

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,8 @@ message UpsertFriendshipResponse {
9393
message Accepted {
9494
string id = 1;
9595
int64 created_at = 2;
96+
FriendProfile friend = 3;
97+
optional string message = 4;
9698
}
9799
oneof response {
98100
Accepted accepted = 1;
@@ -103,7 +105,7 @@ message UpsertFriendshipResponse {
103105

104106
message FriendshipUpdate {
105107
message RequestResponse {
106-
User user = 1;
108+
FriendProfile friend = 1;
107109
int64 created_at = 2;
108110
optional string message = 3;
109111
string id = 4;
@@ -123,7 +125,7 @@ message FriendshipUpdate {
123125
}
124126

125127
message FriendConnectivityUpdate {
126-
User user = 1;
128+
FriendProfile friend = 1;
127129
ConnectivityStatus status = 2;
128130
}
129131

0 commit comments

Comments
 (0)