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

View File

@@ -1,10 +1,10 @@
import { ActionName } from '@/onebot/action/router';
import { GetPacketStatusDepends } from '@/onebot/action/packet/GetPacketStatus';
import { z } from 'zod';
import { actionType } from '@/common/coerce';
import { coerce } from '@/common/coerce';
const SchemaData = z.object({
user_id: actionType.string()
user_id: coerce.string()
});
type Payload = z.infer<typeof SchemaData>;

View File

@@ -1,14 +1,14 @@
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';
interface Response {
cookies: string,
bkn: string
}
const SchemaData = z.object({
domain: actionType.string()
domain: coerce.string()
});
type Payload = z.infer<typeof SchemaData>;

View File

@@ -3,10 +3,10 @@ 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({
no_cache: actionType.boolean().optional(),
no_cache: coerce.boolean().optional(),
});
type Payload = z.infer<typeof SchemaData>;

View File

@@ -3,10 +3,10 @@ import { OneBotAction } from '@/onebot/action/OneBotAction';
import { ActionName } from '@/onebot/action/router';
import { NetworkAdapterConfig } from '@/onebot/config/config';
import { z } from 'zod';
import { actionType } from '@/common/coerce';
import { coerce } from '@/common/coerce';
const SchemaData = z.object({
count: actionType.number().default(10),
count: coerce.number().default(10),
});
type Payload = z.infer<typeof SchemaData>;

View File

@@ -1,11 +1,11 @@
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({
times: actionType.number().default(1),
user_id: actionType.string()
times: coerce.number().default(1),
user_id: coerce.string()
});
type Payload = z.infer<typeof SchemaData>;

View File

@@ -1,12 +1,12 @@
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({
flag: actionType.string(),
approve: actionType.boolean().default(true),
remark: actionType.string().nullable().optional()
flag: coerce.string(),
approve: coerce.boolean().default(true),
remark: coerce.string().nullable().optional()
});
type Payload = z.infer<typeof SchemaData>;