diff --git a/src/core/apis/group.ts b/src/core/apis/group.ts index 3b32ef1b..9dd48271 100644 --- a/src/core/apis/group.ts +++ b/src/core/apis/group.ts @@ -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}个群组缓存完成`); } diff --git a/src/core/services/NodeIKernelProfileService.ts b/src/core/services/NodeIKernelProfileService.ts index 09c7d1b6..a43c6c43 100644 --- a/src/core/services/NodeIKernelProfileService.ts +++ b/src/core/services/NodeIKernelProfileService.ts @@ -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>>;