mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-07-19 12:03:37 +00:00
fix
This commit is contained in:
@@ -86,4 +86,7 @@ export class NTQQFriendApi {
|
|||||||
accept,
|
accept,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
async handleDoubtFriendRequest(friendUid: string, str1: string = '', str2: string = '') {
|
||||||
|
this.context.session.getBuddyService().approvalDoubtBuddyReq(friendUid, str1, str2);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -40,12 +40,30 @@ export class NodeIKernelBuddyListener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
onDelBatchBuddyInfos(arg: unknown): any {
|
onDelBatchBuddyInfos(arg: unknown): any {
|
||||||
|
console.log('onDelBatchBuddyInfos not implemented', ...arguments);
|
||||||
}
|
}
|
||||||
|
|
||||||
onDoubtBuddyReqChange(arg: unknown): any {
|
onDoubtBuddyReqChange(_arg:
|
||||||
|
{
|
||||||
|
reqId: string;
|
||||||
|
cookie: string;
|
||||||
|
doubtList: Array<{
|
||||||
|
uid: string;
|
||||||
|
nick: string;
|
||||||
|
age: number,
|
||||||
|
sex: number;
|
||||||
|
commFriendNum: number;
|
||||||
|
reqTime: string;
|
||||||
|
msg: string;
|
||||||
|
source: string;
|
||||||
|
reason: string;
|
||||||
|
groupCode: string;
|
||||||
|
nameMore?: null;
|
||||||
|
}>;
|
||||||
|
}): void | Promise<void> {
|
||||||
}
|
}
|
||||||
|
|
||||||
onDoubtBuddyReqUnreadNumChange(arg: unknown): any {
|
onDoubtBuddyReqUnreadNumChange(_num: number): void | Promise<void> {
|
||||||
}
|
}
|
||||||
|
|
||||||
onNickUpdated(arg: unknown): any {
|
onNickUpdated(arg: unknown): any {
|
||||||
|
@@ -106,15 +106,15 @@ export interface NodeIKernelBuddyService {
|
|||||||
|
|
||||||
getAddMeSetting(): unknown;
|
getAddMeSetting(): unknown;
|
||||||
|
|
||||||
getDoubtBuddyReq(): unknown;
|
getDoubtBuddyReq(reqId: string, num: number): Promise<GeneralCallResult>;
|
||||||
|
|
||||||
getDoubtBuddyUnreadNum(): number;
|
getDoubtBuddyUnreadNum(): number;
|
||||||
|
|
||||||
approvalDoubtBuddyReq(uid: number, isAgree: boolean): void;
|
approvalDoubtBuddyReq(uid: string, str1: string, str2: string): void;
|
||||||
|
|
||||||
delDoubtBuddyReq(uid: number): void;
|
delDoubtBuddyReq(uid: number): void;
|
||||||
|
|
||||||
delAllDoubtBuddyReq(): void;
|
delAllDoubtBuddyReq(): Promise<GeneralCallResult>;
|
||||||
|
|
||||||
reportDoubtBuddyReqUnread(): void;
|
reportDoubtBuddyReqUnread(): void;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user