-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat: 💥 change tag api to batch #59
Conversation
proto/wechaty/puppet/tag.proto
Outdated
string tag_name = 1; | ||
string tag_group_id = 2; | ||
string tag_group_id = 2; | ||
repeated string tag_name_list = 3; |
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.
这个tag_name_list应该会被自动再加一次list,可以考虑去掉,下面两个同理。
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.
啊?编译框架自动搞这个?我试试
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.
proto/wechaty/puppet/tag.proto
Outdated
message TagTagAddRequest { | ||
string tag_name = 1; | ||
string tag_group_id = 2; | ||
string tag_group_id = 2; |
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.
为啥把1跳过了,是改叉劈了么,虽然不影响。
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.
因为改成了数组,虽然 proto 解析不会出问题,但生成的 ts 会与以前不兼容。
Checklist
References to other Issues or PRs
Have you read the Contributing Guidelines?
Brief description of what is fixed or changed
Other comments