diff --git a/assets/schemas.json b/assets/schemas.json index b513ee0..7d458c2 100644 --- a/assets/schemas.json +++ b/assets/schemas.json @@ -93564,6 +93564,10 @@ "items": { "type": "string" } + }, + "components": { + "type": "array", + "items": {} } }, "additionalProperties": false, @@ -97883,6 +97887,10 @@ "items": { "type": "string" } + }, + "components": { + "type": "array", + "items": {} } }, "additionalProperties": false, diff --git a/src/util/schemas/MessageCreateSchema.ts b/src/util/schemas/MessageCreateSchema.ts index 91c0817..57abf62 100644 --- a/src/util/schemas/MessageCreateSchema.ts +++ b/src/util/schemas/MessageCreateSchema.ts @@ -54,4 +54,6 @@ **/ attachments?: Attachment[]; sticker_ids?: string[]; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + components?: any[]; }