diff --git a/discord_typings/_interactions/_receiving.py b/discord_typings/_interactions/_receiving.py index be4fc74..8a0c7f2 100644 --- a/discord_typings/_interactions/_receiving.py +++ b/discord_typings/_interactions/_receiving.py @@ -385,6 +385,7 @@ class InteractionMessageCallbackData(TypedDict): flags: NotRequired[int] components: NotRequired[List['discord_typings.ComponentData']] attachments: NotRequired[List['discord_typings.PartialAttachmentData']] + poll: NotRequired['discord_typings.PollCreateRequestData'] class InteractionAutocompleteCallbackData(TypedDict, Generic[_T]): diff --git a/discord_typings/_resources/_channel.py b/discord_typings/_resources/_channel.py index e2235d2..4799206 100644 --- a/discord_typings/_resources/_channel.py +++ b/discord_typings/_resources/_channel.py @@ -273,6 +273,7 @@ class _ChannelMessageData(TypedDict): position: NotRequired[int] role_subscription_data: NotRequired['discord_typings.RoleSubscriptionData'] resolved: NotRequired['discord_typings.ResolvedInteractionDataData'] + poll: NotRequired['discord_typings.PollCreateRequestData'] class _GuildMessageData(_ChannelMessageData):