mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-05 15:11:15 +00:00
Introduced explicit payloadSchema and returnSchema definitions for all OneBotAction classes using @sinclair/typebox. This improves type safety, API documentation, and validation for action payloads and return values. Also refactored method signatures and types for consistency across the codebase.
21 lines
838 B
TypeScript
21 lines
838 B
TypeScript
import { OneBotAction } from '@/napcat-onebot/action/OneBotAction';
|
|
import { ActionName } from '@/napcat-onebot/action/router';
|
|
import { Static, Type } from '@sinclair/typebox';
|
|
|
|
export const DownloadFilesetPayloadSchema = Type.Object({
|
|
fileset_id: Type.String({ description: '文件集 ID' }),
|
|
});
|
|
|
|
export type DownloadFilesetPayload = Static<typeof DownloadFilesetPayloadSchema>;
|
|
|
|
export class DownloadFileset extends OneBotAction<DownloadFilesetPayload, any> {
|
|
override actionName = ActionName.DownloadFileset;
|
|
override payloadSchema = DownloadFilesetPayloadSchema;
|
|
override returnSchema = Type.Any({ description: '下载结果' });
|
|
|
|
async _handle (payload: DownloadFilesetPayload) {
|
|
// 默认路径 / fileset_id /为下载路径
|
|
return await this.core.apis.FlashApi.downloadFileSetBySetId(payload.fileset_id);
|
|
}
|
|
}
|