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

@@ -5,16 +5,17 @@ import { ChatType, Peer } from '@/core/types';
import { MessageUnique } from '@/common/message-unique';
import { z } from 'zod';
import { NetworkAdapterConfig } from '@/onebot/config/config';
import { actionType } from '../type';
interface Response {
messages: OB11Message[];
}
const SchemaData = z.object({
group_id: z.coerce.string(),
message_seq: z.coerce.string().optional(),
count: z.coerce.number().default(20),
reverseOrder: z.coerce.boolean().default(false)
group_id: actionType.string(),
message_seq: actionType.string().optional(),
count: actionType.number().default(20),
reverseOrder: actionType.boolean().default(false)
});