🐛 Fix missing username color in proto profile

This commit is contained in:
2025-10-13 01:08:48 +08:00
parent 59ed135f20
commit ca70bb5487
2 changed files with 36 additions and 0 deletions

View File

@@ -59,6 +59,13 @@ message AccountStatus {
bytes meta = 10;
}
message UsernameColor {
string type = 1;
google.protobuf.StringValue value = 2;
google.protobuf.StringValue direction = 3;
repeated string colors = 4;
}
// Profile contains detailed information about a user
message AccountProfile {
string id = 1;
@@ -89,6 +96,7 @@ message AccountProfile {
google.protobuf.Timestamp created_at = 22;
google.protobuf.Timestamp updated_at = 23;
optional UsernameColor username_color = 24;
}
// AccountContact represents a contact method for an account