This commit is contained in:
手瓜一十雪
2025-04-17 09:54:12 +08:00
parent a2d11a7d7d
commit f3fa3bd25b
88 changed files with 363 additions and 363 deletions

View File

@@ -3,12 +3,12 @@ import { OB11Construct } from '@/onebot/helper/data';
import { OneBotAction } from '@/onebot/action/OneBotAction';
import { ActionName } from '@/onebot/action/router';
import { z } from 'zod';
import { actionType } from '@/common/coerce';
import { coerce } from '@/common/coerce';
const SchemaData = z.object({
group_id: actionType.string(),
user_id: actionType.string(),
no_cache: actionType.boolean().default(false),
group_id: coerce.string(),
user_id: coerce.string(),
no_cache: coerce.boolean().default(false),
});
type Payload = z.infer<typeof SchemaData>;