|
|
@ -2198,8 +2198,13 @@ class HTTPClient: |
|
|
|
|
|
|
|
# Application commands (global) |
|
|
|
|
|
|
|
def get_global_commands(self, application_id: Snowflake) -> Response[List[command.ApplicationCommand]]: |
|
|
|
return self.request(Route('GET', '/applications/{application_id}/commands', application_id=application_id)) |
|
|
|
def get_global_commands( |
|
|
|
self, application_id: Snowflake, with_localizations: bool = False |
|
|
|
) -> Response[List[command.ApplicationCommand]]: |
|
|
|
params = {'with_localizations': int(with_localizations)} |
|
|
|
return self.request( |
|
|
|
Route('GET', '/applications/{application_id}/commands', application_id=application_id), params=params |
|
|
|
) |
|
|
|
|
|
|
|
def get_global_command(self, application_id: Snowflake, command_id: Snowflake) -> Response[command.ApplicationCommand]: |
|
|
|
r = Route( |
|
|
@ -2254,15 +2259,19 @@ class HTTPClient: |
|
|
|
# Application commands (guild) |
|
|
|
|
|
|
|
def get_guild_commands( |
|
|
|
self, application_id: Snowflake, guild_id: Snowflake |
|
|
|
self, |
|
|
|
application_id: Snowflake, |
|
|
|
guild_id: Snowflake, |
|
|
|
with_localizations: bool = False, |
|
|
|
) -> Response[List[command.ApplicationCommand]]: |
|
|
|
params = {'with_localizations': int(with_localizations)} |
|
|
|
r = Route( |
|
|
|
'GET', |
|
|
|
'/applications/{application_id}/guilds/{guild_id}/commands', |
|
|
|
application_id=application_id, |
|
|
|
guild_id=guild_id, |
|
|
|
) |
|
|
|
return self.request(r) |
|
|
|
return self.request(r, params=params) |
|
|
|
|
|
|
|
def get_guild_command( |
|
|
|
self, |
|
|
|