diff --git a/discord/enums.py b/discord/enums.py index 16391236c..c0a2c3f43 100644 --- a/discord/enums.py +++ b/discord/enums.py @@ -523,7 +523,6 @@ class TeamMembershipState(Enum): class TeamMemberRole(Enum): - owner = 'owner' admin = 'admin' developer = 'developer' read_only = 'read_only' diff --git a/discord/types/team.py b/discord/types/team.py index a39693f88..1f744a08c 100644 --- a/discord/types/team.py +++ b/discord/types/team.py @@ -35,7 +35,7 @@ class TeamMember(TypedDict): membership_state: int permissions: List[str] team_id: Snowflake - role: Literal['owner', 'admin', 'developer', 'read_only'] + role: Literal['admin', 'developer', 'read_only'] class Team(TypedDict): diff --git a/docs/api.rst b/docs/api.rst index ce8943160..edf97b13e 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -2865,10 +2865,6 @@ of :class:`enum.Enum`. .. versionadded:: 2.4 - .. attribute:: owner - - The team member owns the team. This allows them to do everything with the team, including destructive actions. - .. attribute:: admin The team member is an admin. This allows them to invite members to the team, access credentials, edit the application,