-
Notifications
You must be signed in to change notification settings - Fork 0
feat: add SetGroupMessageReactionReq message for group reaction handling #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -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 { | ||||||||
|
||||||||
| message SetGroupMessageReactionReq { | |
| message SetGroupMessageReactionReq { | |
| reserved 1; |
Copilot
AI
Mar 23, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In proto/service/v2/oidb.proto, request/response messages consistently use the *ReqBody / *RspBody suffix pattern (e.g., D102AReqBody, DeleteFileReqBody). SetGroupMessageReactionReq is the only request message in this file that doesn't follow that convention; consider renaming to SetGroupMessageReactionReqBody (and adding a matching *RspBody type if applicable) to keep generated APIs consistent for consumers.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
DED3RspBodyappears to have been removed and replaced bySetGroupMessageReactionReq. Removing an existing message from a published proto is a breaking change for downstream code generation/compatibility. IfDED3RspBodyis still a valid response type, re-add it (optionally mark as deprecated) and add the new reaction request message separately.