|
|
@ -14,6 +14,7 @@ from disco.types.message import Message |
|
|
|
from disco.types.guild import Guild, GuildMember, GuildBan, Role, GuildEmoji, AuditLogEntry |
|
|
|
from disco.types.channel import Channel |
|
|
|
from disco.types.invite import Invite |
|
|
|
from disco.types.voice import VoiceRegion |
|
|
|
from disco.types.webhook import Webhook |
|
|
|
|
|
|
|
|
|
|
@ -492,6 +493,10 @@ class APIClient(LoggingClass): |
|
|
|
def guilds_roles_delete(self, guild, role, reason=None): |
|
|
|
self.http(Routes.GUILDS_ROLES_DELETE, dict(guild=guild, role=role), headers=_reason_header(reason)) |
|
|
|
|
|
|
|
def guilds_regions_list(self, guild): |
|
|
|
r = self.http(Routes.GUILDS_VOICE_REGIONS_LIST, dict(guild=guild)) |
|
|
|
return VoiceRegion.create_hash(self.client, 'id', r.json()) |
|
|
|
|
|
|
|
def guilds_invites_list(self, guild): |
|
|
|
r = self.http(Routes.GUILDS_INVITES_LIST, dict(guild=guild)) |
|
|
|
return Invite.create_map(self.client, r.json()) |
|
|
@ -576,6 +581,10 @@ class APIClient(LoggingClass): |
|
|
|
r = self.http(Routes.INVITES_DELETE, dict(invite=invite), headers=_reason_header(reason)) |
|
|
|
return Invite.create(self.client, r.json()) |
|
|
|
|
|
|
|
def regions_list(self): |
|
|
|
r = self.http(Routes.VOICE_REGIONS_LIST) |
|
|
|
return VoiceRegion.create_hash(self.client, 'id', r.json()) |
|
|
|
|
|
|
|
def webhooks_get(self, webhook): |
|
|
|
r = self.http(Routes.WEBHOOKS_GET, dict(webhook=webhook)) |
|
|
|
return Webhook.create(self.client, r.json()) |
|
|
|