|
|
@ -24,7 +24,7 @@ DEALINGS IN THE SOFTWARE. |
|
|
|
from __future__ import annotations |
|
|
|
|
|
|
|
import re |
|
|
|
from typing import TYPE_CHECKING, Any, Dict, Generator, Generic, List, Optional, TypeVar, Union, Sequence, Type |
|
|
|
from typing import TYPE_CHECKING, Any, Dict, Generator, Generic, List, Optional, TypeVar, Union, Sequence, Type, overload |
|
|
|
|
|
|
|
import discord.abc |
|
|
|
import discord.utils |
|
|
@ -615,6 +615,90 @@ class Context(discord.abc.Messageable, Generic[BotT]): |
|
|
|
except CommandError as e: |
|
|
|
await cmd.on_help_command_error(self, e) |
|
|
|
|
|
|
|
@overload |
|
|
|
async def reply( |
|
|
|
self, |
|
|
|
content: Optional[str] = ..., |
|
|
|
*, |
|
|
|
tts: bool = ..., |
|
|
|
embed: Embed = ..., |
|
|
|
file: File = ..., |
|
|
|
stickers: Sequence[Union[GuildSticker, StickerItem]] = ..., |
|
|
|
delete_after: float = ..., |
|
|
|
nonce: Union[str, int] = ..., |
|
|
|
allowed_mentions: AllowedMentions = ..., |
|
|
|
reference: Union[Message, MessageReference, PartialMessage] = ..., |
|
|
|
mention_author: bool = ..., |
|
|
|
view: View = ..., |
|
|
|
suppress_embeds: bool = ..., |
|
|
|
ephemeral: bool = ..., |
|
|
|
silent: bool = ..., |
|
|
|
) -> Message: |
|
|
|
... |
|
|
|
|
|
|
|
@overload |
|
|
|
async def reply( |
|
|
|
self, |
|
|
|
content: Optional[str] = ..., |
|
|
|
*, |
|
|
|
tts: bool = ..., |
|
|
|
embed: Embed = ..., |
|
|
|
files: Sequence[File] = ..., |
|
|
|
stickers: Sequence[Union[GuildSticker, StickerItem]] = ..., |
|
|
|
delete_after: float = ..., |
|
|
|
nonce: Union[str, int] = ..., |
|
|
|
allowed_mentions: AllowedMentions = ..., |
|
|
|
reference: Union[Message, MessageReference, PartialMessage] = ..., |
|
|
|
mention_author: bool = ..., |
|
|
|
view: View = ..., |
|
|
|
suppress_embeds: bool = ..., |
|
|
|
ephemeral: bool = ..., |
|
|
|
silent: bool = ..., |
|
|
|
) -> Message: |
|
|
|
... |
|
|
|
|
|
|
|
@overload |
|
|
|
async def reply( |
|
|
|
self, |
|
|
|
content: Optional[str] = ..., |
|
|
|
*, |
|
|
|
tts: bool = ..., |
|
|
|
embeds: Sequence[Embed] = ..., |
|
|
|
file: File = ..., |
|
|
|
stickers: Sequence[Union[GuildSticker, StickerItem]] = ..., |
|
|
|
delete_after: float = ..., |
|
|
|
nonce: Union[str, int] = ..., |
|
|
|
allowed_mentions: AllowedMentions = ..., |
|
|
|
reference: Union[Message, MessageReference, PartialMessage] = ..., |
|
|
|
mention_author: bool = ..., |
|
|
|
view: View = ..., |
|
|
|
suppress_embeds: bool = ..., |
|
|
|
ephemeral: bool = ..., |
|
|
|
silent: bool = ..., |
|
|
|
) -> Message: |
|
|
|
... |
|
|
|
|
|
|
|
@overload |
|
|
|
async def reply( |
|
|
|
self, |
|
|
|
content: Optional[str] = ..., |
|
|
|
*, |
|
|
|
tts: bool = ..., |
|
|
|
embeds: Sequence[Embed] = ..., |
|
|
|
files: Sequence[File] = ..., |
|
|
|
stickers: Sequence[Union[GuildSticker, StickerItem]] = ..., |
|
|
|
delete_after: float = ..., |
|
|
|
nonce: Union[str, int] = ..., |
|
|
|
allowed_mentions: AllowedMentions = ..., |
|
|
|
reference: Union[Message, MessageReference, PartialMessage] = ..., |
|
|
|
mention_author: bool = ..., |
|
|
|
view: View = ..., |
|
|
|
suppress_embeds: bool = ..., |
|
|
|
ephemeral: bool = ..., |
|
|
|
silent: bool = ..., |
|
|
|
) -> Message: |
|
|
|
... |
|
|
|
|
|
|
|
async def reply(self, content: Optional[str] = None, **kwargs: Any) -> Message: |
|
|
|
"""|coro| |
|
|
|
|
|
|
@ -716,6 +800,90 @@ class Context(discord.abc.Messageable, Generic[BotT]): |
|
|
|
if self.interaction: |
|
|
|
await self.interaction.response.defer(ephemeral=ephemeral) |
|
|
|
|
|
|
|
@overload |
|
|
|
async def send( |
|
|
|
self, |
|
|
|
content: Optional[str] = ..., |
|
|
|
*, |
|
|
|
tts: bool = ..., |
|
|
|
embed: Embed = ..., |
|
|
|
file: File = ..., |
|
|
|
stickers: Sequence[Union[GuildSticker, StickerItem]] = ..., |
|
|
|
delete_after: float = ..., |
|
|
|
nonce: Union[str, int] = ..., |
|
|
|
allowed_mentions: AllowedMentions = ..., |
|
|
|
reference: Union[Message, MessageReference, PartialMessage] = ..., |
|
|
|
mention_author: bool = ..., |
|
|
|
view: View = ..., |
|
|
|
suppress_embeds: bool = ..., |
|
|
|
ephemeral: bool = ..., |
|
|
|
silent: bool = ..., |
|
|
|
) -> Message: |
|
|
|
... |
|
|
|
|
|
|
|
@overload |
|
|
|
async def send( |
|
|
|
self, |
|
|
|
content: Optional[str] = ..., |
|
|
|
*, |
|
|
|
tts: bool = ..., |
|
|
|
embed: Embed = ..., |
|
|
|
files: Sequence[File] = ..., |
|
|
|
stickers: Sequence[Union[GuildSticker, StickerItem]] = ..., |
|
|
|
delete_after: float = ..., |
|
|
|
nonce: Union[str, int] = ..., |
|
|
|
allowed_mentions: AllowedMentions = ..., |
|
|
|
reference: Union[Message, MessageReference, PartialMessage] = ..., |
|
|
|
mention_author: bool = ..., |
|
|
|
view: View = ..., |
|
|
|
suppress_embeds: bool = ..., |
|
|
|
ephemeral: bool = ..., |
|
|
|
silent: bool = ..., |
|
|
|
) -> Message: |
|
|
|
... |
|
|
|
|
|
|
|
@overload |
|
|
|
async def send( |
|
|
|
self, |
|
|
|
content: Optional[str] = ..., |
|
|
|
*, |
|
|
|
tts: bool = ..., |
|
|
|
embeds: Sequence[Embed] = ..., |
|
|
|
file: File = ..., |
|
|
|
stickers: Sequence[Union[GuildSticker, StickerItem]] = ..., |
|
|
|
delete_after: float = ..., |
|
|
|
nonce: Union[str, int] = ..., |
|
|
|
allowed_mentions: AllowedMentions = ..., |
|
|
|
reference: Union[Message, MessageReference, PartialMessage] = ..., |
|
|
|
mention_author: bool = ..., |
|
|
|
view: View = ..., |
|
|
|
suppress_embeds: bool = ..., |
|
|
|
ephemeral: bool = ..., |
|
|
|
silent: bool = ..., |
|
|
|
) -> Message: |
|
|
|
... |
|
|
|
|
|
|
|
@overload |
|
|
|
async def send( |
|
|
|
self, |
|
|
|
content: Optional[str] = ..., |
|
|
|
*, |
|
|
|
tts: bool = ..., |
|
|
|
embeds: Sequence[Embed] = ..., |
|
|
|
files: Sequence[File] = ..., |
|
|
|
stickers: Sequence[Union[GuildSticker, StickerItem]] = ..., |
|
|
|
delete_after: float = ..., |
|
|
|
nonce: Union[str, int] = ..., |
|
|
|
allowed_mentions: AllowedMentions = ..., |
|
|
|
reference: Union[Message, MessageReference, PartialMessage] = ..., |
|
|
|
mention_author: bool = ..., |
|
|
|
view: View = ..., |
|
|
|
suppress_embeds: bool = ..., |
|
|
|
ephemeral: bool = ..., |
|
|
|
silent: bool = ..., |
|
|
|
) -> Message: |
|
|
|
... |
|
|
|
|
|
|
|
async def send( |
|
|
|
self, |
|
|
|
content: Optional[str] = None, |
|
|
|