global fix and add tauri app

This commit is contained in:
lendry
2026-06-26 13:56:54 +03:00
parent aa228d84eb
commit 3b05b7e4d4
50 changed files with 3947 additions and 80 deletions

View File

@@ -46,6 +46,7 @@ message UpdateRoomSettingsRequest {
string roomId = 2;
optional string name = 3;
optional bool notificationsMuted = 4;
optional bool pinned = 5;
}
message AddRoomMemberRequest {
@@ -156,6 +157,8 @@ message ChatRoomMemberResponse {
bool notificationsMuted = 5;
string familyRole = 6;
bool isChatCreator = 7;
bool isPinned = 8;
optional string pinnedAt = 9;
}
message ChatRoomResponse {
@@ -171,6 +174,8 @@ message ChatRoomResponse {
optional string peerUserId = 10;
optional string botUsername = 11;
optional bool isE2E = 12;
bool isPinned = 13;
optional string pinnedAt = 14;
}
message PollOptionResponse {