From 43d407207b7329de95bc31830ccc4efd8ac7bc3a Mon Sep 17 00:00:00 2001 From: Redmomn <109732988+Redmomn@users.noreply.github.com> Date: Mon, 23 Mar 2026 23:31:54 +0800 Subject: [PATCH] feat: add SetGroupMessageReactionReq message for group reaction handling --- proto/service/v2/oidb.proto | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/proto/service/v2/oidb.proto b/proto/service/v2/oidb.proto index 249af62..77bce30 100644 --- a/proto/service/v2/oidb.proto +++ b/proto/service/v2/oidb.proto @@ -13,6 +13,8 @@ message Oidb { optional uint32 reserved = 12; } +message GenericEmptyRspBody {} + message D102AReqBody { repeated string domain = 1; } @@ -404,4 +406,9 @@ message DED3ReqBody { optional uint32 nudge_type = 6; } -message DED3RspBody {} +message SetGroupMessageReactionReq { + optional int64 group_uin = 2; + optional uint32 sequence = 3; + optional string code = 4; + optional uint32 type = 5; // 1 face 2 emoji +}