From 2c54aee63eba5b920da18c907a11f5364b2ca5cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=89=8B=E7=93=9C=E4=B8=80=E5=8D=81=E9=9B=AA?= Date: Sun, 8 Sep 2024 21:39:53 +0800 Subject: [PATCH] build: test --- src/core/apis/group.ts | 4 ++++ src/core/services/NodeIKernelProfileService.ts | 6 +++++- 2 files changed, 9 insertions(+), 1 deletion(-) 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>; + getOtherFlag(callfrom: string, uids: string[]): Promise>; + + getVasInfo(callfrom: string, uids: string[]): Promise>; + + getRelationFlag(callfrom: string, uids: string[]): Promise>; getUidByUin(callfrom: string, uin: Array): Promise>;