Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions proto/decentraland/kernel/comms/v3/archipelago.proto
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,18 @@ message KickedMessage {
KickedReason reason = 1;
}

message ProfileUpdateNotification {
string address = 1;
string profile_json = 2;
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Have we thought about using a Struct or a more structured message for the profile JSON?

int64 timestamp = 3;
}

message SceneUpdateNotification {
string scene_id = 1;
repeated string parcels = 2;
int64 timestamp = 3;
}

message ServerPacket {
oneof message {
ChallengeResponseMessage challenge_response = 1;
Expand All @@ -47,6 +59,8 @@ message ServerPacket {
LeftIslandMessage left_island = 4;
JoinIslandMessage join_island = 5;
KickedMessage kicked = 6;
ProfileUpdateNotification profile_update = 7;
SceneUpdateNotification scene_update = 8;
}
}

Expand Down
Loading