fix: zod boolean强制转换

This commit is contained in:
手瓜一十雪
2025-04-17 09:38:38 +08:00
parent 30a48f1693
commit db37def059
88 changed files with 377 additions and 331 deletions

View File

@@ -4,7 +4,7 @@ import { FileNapCatOneBotUUID } from '@/common/file-uuid';
import { ActionName } from '@/onebot/action/router';
import { OB11MessageImage, OB11MessageVideo } from '@/onebot/types';
import { z } from 'zod';
import { actionType } from '../type';
export interface GetFileResponse {
file?: string; // path
url?: string;
@@ -14,8 +14,8 @@ export interface GetFileResponse {
}
const GetFileBase_PayloadSchema = z.object({
file: z.coerce.string().optional(),
file_id: z.coerce.string().optional(),
file: actionType.string().optional(),
file_id: actionType.string().optional(),
});