mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-05-14 05:56:00 +08:00
pb
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -1,11 +1,8 @@
|
||||
syntax = "proto3";
|
||||
package OpenIMServer.user;
|
||||
import "sdkws/sdkws.proto";
|
||||
import "conversation/conversation.proto";
|
||||
option go_package = "github.com/OpenIMSDK/Open-IM-Server/pkg/proto/user";
|
||||
package OpenIMServer.user;
|
||||
|
||||
|
||||
|
||||
|
||||
message getAllUserIDReq{
|
||||
sdkws.RequestPagination pagination = 1;
|
||||
@@ -49,7 +46,7 @@ message setGlobalRecvMessageOptResp{
|
||||
}
|
||||
|
||||
message setConversationReq{
|
||||
conversation.Conversation conversation = 1;
|
||||
OpenIMServer.conversation.Conversation conversation = 1;
|
||||
int32 notificationType = 2;
|
||||
string operationID = 3;
|
||||
}
|
||||
@@ -77,7 +74,7 @@ message getConversationReq{
|
||||
}
|
||||
|
||||
message getConversationResp{
|
||||
conversation.Conversation conversation = 2;
|
||||
OpenIMServer.conversation.Conversation conversation = 2;
|
||||
}
|
||||
|
||||
message getConversationsReq{
|
||||
@@ -87,7 +84,7 @@ message getConversationsReq{
|
||||
}
|
||||
|
||||
message getConversationsResp{
|
||||
repeated conversation.Conversation conversations = 2;
|
||||
repeated OpenIMServer.conversation.Conversation conversations = 2;
|
||||
}
|
||||
|
||||
message getAllConversationsReq{
|
||||
@@ -96,11 +93,11 @@ message getAllConversationsReq{
|
||||
}
|
||||
|
||||
message getAllConversationsResp{
|
||||
repeated conversation.Conversation conversations = 2;
|
||||
repeated OpenIMServer.conversation.Conversation conversations = 2;
|
||||
}
|
||||
|
||||
message batchSetConversationsReq{
|
||||
repeated conversation.Conversation conversations = 1;
|
||||
repeated OpenIMServer.conversation.Conversation conversations = 1;
|
||||
string OwnerUserID = 2;
|
||||
int32 notificationType = 3;
|
||||
string OperationID = 4;
|
||||
|
||||
Reference in New Issue
Block a user