|
|
@ -29,6 +29,7 @@ from typing import TYPE_CHECKING, Optional, Set, List, Tuple, Union |
|
|
|
|
|
|
|
from .enums import ChannelType, try_enum |
|
|
|
from .utils import _get_as_snowflake |
|
|
|
from .app_commands import AppCommandPermissions |
|
|
|
|
|
|
|
if TYPE_CHECKING: |
|
|
|
from .types.gateway import ( |
|
|
@ -46,11 +47,14 @@ if TYPE_CHECKING: |
|
|
|
TypingStartEvent, |
|
|
|
GuildMemberRemoveEvent, |
|
|
|
) |
|
|
|
from .types.command import GuildApplicationCommandPermissions |
|
|
|
from .message import Message |
|
|
|
from .partial_emoji import PartialEmoji |
|
|
|
from .member import Member |
|
|
|
from .threads import Thread |
|
|
|
from .user import User |
|
|
|
from .state import ConnectionState |
|
|
|
from .guild import Guild |
|
|
|
|
|
|
|
ReactionActionEvent = Union[MessageReactionAddEvent, MessageReactionRemoveEvent] |
|
|
|
|
|
|
@ -68,6 +72,7 @@ __all__ = ( |
|
|
|
'RawThreadMembersUpdate', |
|
|
|
'RawTypingEvent', |
|
|
|
'RawMemberRemoveEvent', |
|
|
|
'RawAppCommandPermissionsUpdateEvent', |
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
@ -432,3 +437,33 @@ class RawMemberRemoveEvent(_RawReprMixin): |
|
|
|
def __init__(self, data: GuildMemberRemoveEvent, user: User, /) -> None: |
|
|
|
self.user: Union[User, Member] = user |
|
|
|
self.guild_id: int = int(data['guild_id']) |
|
|
|
|
|
|
|
|
|
|
|
class RawAppCommandPermissionsUpdateEvent(_RawReprMixin): |
|
|
|
"""Represents the payload for a :func:`on_raw_app_command_permissions_update` event. |
|
|
|
|
|
|
|
.. versionadded:: 2.0 |
|
|
|
|
|
|
|
Attributes |
|
|
|
---------- |
|
|
|
target_id: :class:`int` |
|
|
|
The ID of the command or application whos permissions were updated. |
|
|
|
When this is the application ID instead of a command ID, the permissions |
|
|
|
apply to all commands that do not contain explicit overwrites. |
|
|
|
application_id: :class:`int` |
|
|
|
The ID of the application that the command belongs to. |
|
|
|
guild: :class:`~discord.Guild` |
|
|
|
The guild where the permissions were updated. |
|
|
|
permissions: List[:class:`~discord.app_commands.AppCommandPermissions`] |
|
|
|
List of new permissions for the app command. |
|
|
|
""" |
|
|
|
|
|
|
|
__slots__ = ('target_id', 'application_id', 'guild', 'permissions') |
|
|
|
|
|
|
|
def __init__(self, *, data: GuildApplicationCommandPermissions, state: ConnectionState): |
|
|
|
self.target_id: int = int(data['id']) |
|
|
|
self.application_id: int = int(data['application_id']) |
|
|
|
self.guild: Guild = state._get_or_create_unavailable_guild(int(data['guild_id'])) |
|
|
|
self.permissions: List[AppCommandPermissions] = [ |
|
|
|
AppCommandPermissions(data=perm, guild=self.guild, state=state) for perm in data['permissions'] |
|
|
|
] |
|
|
|