diff --git a/packages/builders/src/interactions/slashCommands/mixins/ApplicationCommandOptionChannelTypesMixin.ts b/packages/builders/src/interactions/slashCommands/mixins/ApplicationCommandOptionChannelTypesMixin.ts index dfa94b3c470e..cd022ec39210 100644 --- a/packages/builders/src/interactions/slashCommands/mixins/ApplicationCommandOptionChannelTypesMixin.ts +++ b/packages/builders/src/interactions/slashCommands/mixins/ApplicationCommandOptionChannelTypesMixin.ts @@ -11,6 +11,7 @@ const allowedChannelTypes = [ ChannelType.PublicThread, ChannelType.PrivateThread, ChannelType.GuildStageVoice, + ChannelType.GuildForum, ] as const; export type ApplicationCommandOptionAllowedChannelTypes = typeof allowedChannelTypes[number];