From 5ff9822759b3b63bad84a8f77e088487cc6be5c3 Mon Sep 17 00:00:00 2001 From: Fleny Date: Thu, 8 Jan 2026 21:22:56 +0100 Subject: [PATCH] fix(bot): make Interaction.guild a Partial (#4556) * fix(bot): make Interaction.guild a Partial * Update packages/bot/src/transformers/types.ts Co-authored-by: Awesome Stickz --------- Co-authored-by: Awesome Stickz --- packages/bot/src/transformers/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bot/src/transformers/types.ts b/packages/bot/src/transformers/types.ts index d6796b782..a48bc6eca 100644 --- a/packages/bot/src/transformers/types.ts +++ b/packages/bot/src/transformers/types.ts @@ -947,7 +947,7 @@ export interface Interaction { /** The type of interaction */ type: InteractionTypes /** Guild that the interaction was sent from */ - guild: Guild + guild?: Partial /** The guild it was sent from */ guildId?: bigint /** The channel it was sent from */