fix: delete enum proto file
All checks were successful
Publish / Publish Job (push) Successful in 2m40s

This commit is contained in:
Дмитрий
2026-04-03 13:45:45 +03:00
parent 7e1b70125a
commit b7cd9c1434
3 changed files with 7 additions and 22 deletions

View File

@@ -23,7 +23,7 @@ message GetAccountResponse {
repeated string roles = 8;
string avatar_url = 9;
optional string employee_id = 10;
Presence presence = 11;
string presence = 11;
string last_active = 12;
string custom_status_text = 13;
string custom_status_emoji = 14;
@@ -33,10 +33,4 @@ message GetAccountResponse {
bool has_pin = 18;
}
enum Presence {
PRESENCE_UNSPECIFIED = 0;
OFFLINE = 1;
ONLINE = 2;
AWAY = 3;
}