From 0db0ffe6160219159e7658ce46f1512f4f304380 Mon Sep 17 00:00:00 2001 From: Awesome Stickz Date: Sun, 11 May 2025 18:19:46 +0530 Subject: [PATCH] fix: CreateMessageOptions.messageReference.failIfNotExists is optional (#4192) --- packages/types/src/discordeno.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/types/src/discordeno.ts b/packages/types/src/discordeno.ts index c94fabb80..73c36cccd 100644 --- a/packages/types/src/discordeno.ts +++ b/packages/types/src/discordeno.ts @@ -93,7 +93,7 @@ export interface CreateMessageOptions { /** id of the originating message's guild */ guildId?: BigString /** When sending, whether to error if the referenced message doesn't exist instead of sending as a normal (non-reply) message, default true */ - failIfNotExists: boolean + failIfNotExists?: boolean } attachments?: (Pick, 'id'> & Omit>, 'id'>)[] /** The contents of the files being sent */