Mare 0.8 (#13)
* get rid of file handling through grpc and signalr * make non empty uri for serialization * adjust api DataHash calc into their respective classes * Revert "adapt api extensions" This reverts commit5fb78ba367. * Revert "adapt userpermissions" This reverts commit28dd123ca6. * Revert "Revert "adapt api extensions"" This reverts commit 12c9bc3c53566532e2984ace0b3d2e0a8b7facc0. * Revert "Revert "adapt userpermissions"" This reverts commit 4193ac008cccf2f5b42e9cdf50b2a084877cbf9a. * update flags * add upload status to server --------- Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
using MareSynchronos.API.Data.Enum;
|
||||
using MareSynchronos.API.Dto;
|
||||
using MareSynchronos.API.Dto.Files;
|
||||
using MareSynchronos.API.Dto.Group;
|
||||
using MareSynchronos.API.Dto.User;
|
||||
|
||||
@@ -8,24 +7,41 @@ namespace MareSynchronos.API.SignalR;
|
||||
|
||||
public interface IMareHubClient : IMareHub
|
||||
{
|
||||
void OnUpdateSystemInfo(Action<SystemInfoDto> act);
|
||||
void OnReceiveServerMessage(Action<MessageSeverity, string> act);
|
||||
void OnDownloadReady(Action<Guid> act);
|
||||
|
||||
void OnUserSendOnline(Action<OnlineUserIdentDto> act);
|
||||
void OnUserSendOffline(Action<UserDto> act);
|
||||
void OnUserAddClientPair(Action<UserPairDto> act);
|
||||
void OnUserRemoveClientPair(Action<UserDto> act);
|
||||
void OnUserUpdateSelfPairPermissions(Action<UserPermissionsDto> act);
|
||||
void OnUserUpdateOtherPairPermissions(Action<UserPermissionsDto> act);
|
||||
void OnUserReceiveCharacterData(Action<OnlineUserCharaDataDto> act);
|
||||
void OnGroupChangePermissions(Action<GroupPermissionDto> act);
|
||||
|
||||
void OnGroupDelete(Action<GroupDto> act);
|
||||
|
||||
void OnGroupPairChangePermissions(Action<GroupPairUserPermissionDto> act);
|
||||
|
||||
void OnGroupPairChangeUserInfo(Action<GroupPairUserInfoDto> act);
|
||||
|
||||
void OnGroupPairJoined(Action<GroupPairFullInfoDto> act);
|
||||
|
||||
void OnGroupPairLeft(Action<GroupPairDto> act);
|
||||
|
||||
void OnGroupSendFullInfo(Action<GroupFullInfoDto> act);
|
||||
|
||||
void OnGroupSendInfo(Action<GroupInfoDto> act);
|
||||
void OnGroupDelete(Action<GroupDto> act);
|
||||
void OnGroupPairJoined(Action<GroupPairFullInfoDto> act);
|
||||
void OnGroupPairLeft(Action<GroupPairDto> act);
|
||||
void OnGroupChangePermissions(Action<GroupPermissionDto> act);
|
||||
void OnGroupPairChangePermissions(Action<GroupPairUserPermissionDto> act);
|
||||
void OnGroupPairChangeUserInfo(Action<GroupPairUserInfoDto> act);
|
||||
|
||||
void OnReceiveServerMessage(Action<MessageSeverity, string> act);
|
||||
|
||||
void OnUpdateSystemInfo(Action<SystemInfoDto> act);
|
||||
|
||||
void OnUserAddClientPair(Action<UserPairDto> act);
|
||||
|
||||
void OnUserReceiveCharacterData(Action<OnlineUserCharaDataDto> act);
|
||||
|
||||
void OnUserReceiveUploadStatus(Action<UserDto> act);
|
||||
|
||||
void OnUserRemoveClientPair(Action<UserDto> act);
|
||||
|
||||
void OnUserSendOffline(Action<UserDto> act);
|
||||
|
||||
void OnUserSendOnline(Action<OnlineUserIdentDto> act);
|
||||
|
||||
void OnUserUpdateOtherPairPermissions(Action<UserPermissionsDto> act);
|
||||
|
||||
void OnUserUpdateSelfPairPermissions(Action<UserPermissionsDto> act);
|
||||
}
|
||||
Reference in New Issue
Block a user