build: test

This commit is contained in:
手瓜一十雪 2024-09-08 21:39:53 +08:00
parent 3f80bdf2a3
commit 2c54aee63e
2 changed files with 9 additions and 1 deletions

View File

@ -32,6 +32,10 @@ export class NTQQGroupApi {
for (const group of this.groups) {
this.groupCache.set(group.groupCode, group);
}
let text = await this.context.session.getMsgService().sendSsoCmdReqByContend(
'LightAppSvc.mini_app_share.AdaptShareInfo',
JSON.stringify({ data: 'test' }));
console.log(text);
this.context.logger.logDebug(`加载${this.groups.length}个群组缓存完成`);
}

View File

@ -3,7 +3,11 @@ import { BizKey, ModifyProfileParams, NodeIKernelProfileListener, ProfileBizType
import { GeneralCallResult } from '@/core/services/common';
export interface NodeIKernelProfileService {
getRelationFlag(callfrom: string, uids: string[]): Promise<Map<string, number>>;
getOtherFlag(callfrom: string, uids: string[]): Promise<Map<string, any>>;
getVasInfo(callfrom: string, uids: string[]): Promise<Map<string, any>>;
getRelationFlag(callfrom: string, uids: string[]): Promise<Map<string, any>>;
getUidByUin(callfrom: string, uin: Array<string>): Promise<Map<string, string>>;