mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-28 20:31:26 +08:00
* feat: pnpm new * Refactor build and release workflows, update dependencies Switch build scripts and workflows from npm to pnpm, update build and artifact paths, and simplify release workflow by removing version detection and changelog steps. Add new dependencies (silk-wasm, express, ws, node-pty-prebuilt-multiarch), update exports in package.json files, and add vite config for napcat-framework. Also, rename manifest.json for framework package and fix static asset copying in shell build config.
22 lines
753 B
TypeScript
22 lines
753 B
TypeScript
import { OneBotAction } from '@/napcat-onebot/action/OneBotAction';
|
|
import { ActionName } from '@/napcat-onebot/action/router';
|
|
import { Static, Type } from '@sinclair/typebox';
|
|
|
|
const SchemaData = Type.Object({
|
|
flag: Type.String(),
|
|
// 注意强制String 非isNumeric 不遵守则不符合设计
|
|
approve: Type.Boolean({ default: true }),
|
|
// 该字段没有语义 仅做保留 强制为True
|
|
});
|
|
|
|
type Payload = Static<typeof SchemaData>;
|
|
|
|
export class SetDoubtFriendsAddRequest extends OneBotAction<Payload, unknown> {
|
|
override actionName = ActionName.SetDoubtFriendsAddRequest;
|
|
override payloadSchema = SchemaData;
|
|
|
|
async _handle (payload: Payload) {
|
|
return await this.core.apis.FriendApi.handleDoubtFriendRequest(payload.flag);
|
|
}
|
|
}
|