Revert "fix: zod boolean强制转换"

This reverts commit db37def059.
This commit is contained in:
手瓜一十雪
2025-04-19 10:58:39 +08:00
parent 2b0d170434
commit e77d8f93ba
88 changed files with 331 additions and 377 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: actionType.string().optional(),
file_id: actionType.string().optional(),
file: z.coerce.string().optional(),
file_id: z.coerce.string().optional(),
});