diff --git a/src/onebot/action/extends/GetProfileLike.ts b/src/onebot/action/extends/GetProfileLike.ts index bd6f39c7..afcc5676 100644 --- a/src/onebot/action/extends/GetProfileLike.ts +++ b/src/onebot/action/extends/GetProfileLike.ts @@ -6,7 +6,8 @@ import { Type, Static } from '@sinclair/typebox'; const SchemaData = Type.Object({ user_id: Type.Optional(Type.Union([Type.Number(), Type.String()])), start: Type.Union([Type.Number(), Type.String()], { default: 0 }), - count: Type.Union([Type.Number(), Type.String()], { default: 10 }) + count: Type.Union([Type.Number(), Type.String()], { default: 10 }), + type: Type.Union([Type.Number(), Type.String()], { default: 2 }) }); type Payload = Static; @@ -33,8 +34,7 @@ export class GetProfileLike extends OneBotAction