mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-25 18:10:07 +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.
27 lines
932 B
TypeScript
27 lines
932 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({
|
|
group_id: Type.String(),
|
|
no_code_finger_open: Type.Optional(Type.Number()),
|
|
no_finger_open: Type.Optional(Type.Number()),
|
|
});
|
|
|
|
type Payload = Static<typeof SchemaData>;
|
|
|
|
export default class SetGroupSearch extends OneBotAction<Payload, null> {
|
|
override actionName = ActionName.SetGroupSearch;
|
|
override payloadSchema = SchemaData;
|
|
async _handle (payload: Payload): Promise<null> {
|
|
const ret = await this.core.apis.GroupApi.setGroupSearch(payload.group_id, {
|
|
noCodeFingerOpenFlag: payload.no_code_finger_open,
|
|
noFingerOpenFlag: payload.no_finger_open,
|
|
});
|
|
if (ret.result !== 0) {
|
|
throw new Error(`设置群搜索失败, ${ret.result}:${ret.errMsg}`);
|
|
}
|
|
return null;
|
|
}
|
|
}
|