NapCatQQ/packages/napcat-onebot/action/system/GetStatus.ts
手瓜一十雪 b69352f6a1 Add payload and return schemas to OneBot actions
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.
2026-01-25 14:50:58 +08:00

26 lines
856 B
TypeScript

import { OneBotAction } from '@/napcat-onebot/action/OneBotAction';
import { ActionName } from '@/napcat-onebot/action/router';
import { Type, Static } from '@sinclair/typebox';
export const GetStatusReturnSchema = Type.Object({
online: Type.Boolean({ description: '是否在线' }),
good: Type.Boolean({ description: '状态是否良好' }),
stat: Type.Unknown({ description: '统计信息' }),
});
export type GetStatusReturnType = Static<typeof GetStatusReturnSchema>;
export default class GetStatus extends OneBotAction<void, GetStatusReturnType> {
override actionName = ActionName.GetStatus;
override payloadSchema = Type.Object({});
override returnSchema = GetStatusReturnSchema;
async _handle (): Promise<GetStatusReturnType> {
return {
online: !!this.core.selfInfo.online,
good: true,
stat: {},
};
}
}