mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-13 00:10:27 +00:00
Updated group API and OB11GroupMsgEmojiLikeEvent to include an optional message sequence (msgSeq/messageSeq) parameter. This allows more precise identification of messages when handling emoji like events in group chats.
25 lines
835 B
TypeScript
25 lines
835 B
TypeScript
import { OB11GroupNoticeEvent } from './OB11GroupNoticeEvent';
|
||
import { NapCatCore } from '@/core';
|
||
|
||
export interface MsgEmojiLike {
|
||
emoji_id: string,
|
||
count: number
|
||
}
|
||
|
||
export class OB11GroupMsgEmojiLikeEvent extends OB11GroupNoticeEvent {
|
||
notice_type = 'group_msg_emoji_like';
|
||
message_id: number;
|
||
likes: MsgEmojiLike[];
|
||
is_add: boolean;
|
||
message_seq?: string;
|
||
|
||
constructor(core: NapCatCore, groupId: number, userId: number, messageId: number, likes: MsgEmojiLike[], isAdd: boolean, messageSeq?: string) {
|
||
super(core, groupId, userId);
|
||
this.group_id = groupId;
|
||
this.user_id = userId; // 可为空,表示是对别人的消息操作,如果是对bot自己的消息则不为空
|
||
this.message_id = messageId;
|
||
this.likes = likes;
|
||
this.is_add = isAdd;
|
||
}
|
||
}
|