feat: 发送戳一戳

This commit is contained in:
linyuchen
2024-04-03 00:03:50 +08:00
parent 80131e0472
commit ec073da3f6
10 changed files with 116 additions and 44 deletions

View File

@@ -77,7 +77,9 @@ export enum NTQQApiMethod {
SET_QQ_AVATAR = 'nodeIKernelProfileService/setHeader',
GET_SKEY = "nodeIKernelTipOffService/getPskey",
UPDATE_SKEY = "updatePskey"
UPDATE_SKEY = "updatePskey",
FETCH_UNITED_COMMEND_CONFIG = "nodeIKernelUnitedConfigService/fetchUnitedCommendConfig" // 发包需要调用的
}
enum NTQQApiChannel {
@@ -194,4 +196,15 @@ export class NTQQApi {
]
})
}
static async fetchUnitedCommendConfig() {
return await callNTQQApi<GeneralCallResult>({
methodName: NTQQApiMethod.FETCH_UNITED_COMMEND_CONFIG,
args:[
{
groups: ['100243']
}
]
})
}
}