mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-27 19:31:22 +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.
20 lines
661 B
TypeScript
20 lines
661 B
TypeScript
import { Type, Static } from '@sinclair/typebox';
|
|
import { OneBotAction } from '@/napcat-onebot/action/OneBotAction';
|
|
import { ActionName } from '@/napcat-onebot/action/router';
|
|
|
|
const SchemaData = Type.Object({
|
|
count: Type.Union([Type.Number(), Type.String()], { default: 48 }),
|
|
});
|
|
|
|
type Payload = Static<typeof SchemaData>;
|
|
|
|
export class FetchCustomFace extends OneBotAction<Payload, string[]> {
|
|
override actionName = ActionName.FetchCustomFace;
|
|
override payloadSchema = SchemaData;
|
|
|
|
async _handle (payload: Payload) {
|
|
const ret = await this.core.apis.MsgApi.fetchFavEmojiList(+payload.count);
|
|
return ret.emojiInfoList.map(e => e.url);
|
|
}
|
|
}
|