Skip to content

Commit

Permalink
feat: Additional data in upsert and updates responses
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinszuchet committed Jan 23, 2025
1 parent 2a0185f commit 6262c90
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions proto/decentraland/social_service/v2/social_service_v2.proto
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ message UpsertFriendshipResponse {
message Accepted {
string id = 1;
int64 created_at = 2;
FriendProfile friend = 3;
optional string message = 4;
}
oneof response {
Accepted accepted = 1;
Expand All @@ -103,7 +105,7 @@ message UpsertFriendshipResponse {

message FriendshipUpdate {
message RequestResponse {
User user = 1;
FriendProfile friend = 1;
int64 created_at = 2;
optional string message = 3;
string id = 4;
Expand All @@ -123,7 +125,7 @@ message FriendshipUpdate {
}

message FriendConnectivityUpdate {
User user = 1;
FriendProfile friend = 1;
ConnectivityStatus status = 2;
}

Expand Down

0 comments on commit 6262c90

Please sign in to comment.