class ApplicationCommandManager
extends
CachedManager<Snowflake, ApplicationCommandScope, ApplicationCommandResolvable>export class ApplicationCommandManager<ApplicationCommandScope = ApplicationCommand<{ guild: GuildResolvable }>, PermissionsOptionsExtras = { guild: GuildResolvable }, PermissionsGuildType = null,> extends CachedManager<Snowflake, ApplicationCommandScope, ApplicationCommandResolvable>
Manages API methods for application commands and stores their cache.
Constructors
Constructs a new instance of the ApplicationCommandManager
class
Type Parameters
optionalApplicationCommand<{ guild: GuildResolvable }> ApplicationCommandScope? =
optional{ guild: GuildResolvable } PermissionsOptionsExtras? =
optionalnull PermissionsGuildType? =
readonlyCollection<Key, Holds> cache :
The cache of items for this manager.
Inherited from: DataManager
GuildResolvable guild :
readonlyConstructable<Holds> holds :
The data structure belonging to this manager.
Inherited from: DataManager
ApplicationCommandPermissionsManager<{ command?: ApplicationCommandResolvable } & PermissionsOptionsExtras, { command: ApplicationCommandResolvable } & PermissionsOptionsExtras, PermissionsGuildType, null> permissions :
The manager for permissions of arbitrary commands on arbitrary guilds
createcommand: ApplicationCommandDataResolvableguildId?: Snowflake) : Promise<ApplicationCommandScope> (
command: ApplicationCommandDataResolvable
guildId?: Snowflake
Creates an application command.
Examples:
// Create a new command
client.application.commands.create({
name: 'test',
description: 'A test command',
})
.then(console.log)
.catch(console.error);
deletecommand: ApplicationCommandResolvableguildId?: Snowflake) : Promise<ApplicationCommandScope | null> (
command: ApplicationCommandResolvable
guildId?: Snowflake
Deletes an application command.
Examples:
// Delete a command
guild.commands.delete('123456789012345678')
.then(console.log)
.catch(console.error);
Overload 1
Overload 2
editcommand: ApplicationCommandResolvable) : Promise<ApplicationCommandScope> (
command: ApplicationCommandResolvable
Edits an application command.
Examples:
// Edit an existing command
client.application.commands.edit('123456789012345678', {
description: 'New description',
})
.then(console.log)
.catch(console.error);
Overload 1
Overload 2
Overload 3
Overload 4
fetchid: Snowflakeoptions: FetchApplicationCommandOptions & { guildId: Snowflake }) : Promise<ApplicationCommand> (
id: Snowflake
options: FetchApplicationCommandOptions & { guildId: Snowflake }
Obtains one or multiple application commands from Discord, or the cache if it's already available.
Examples:
// Fetch a single command
client.application.commands.fetch('123456789012345678')
.then(command => console.log(`Fetched command ${command.name}`))
.catch(console.error);
// Fetch all commands
guild.commands.fetch()
.then(commands => console.log(`Fetched ${commands.size} commands`))
.catch(console.error);
Overload 1
Overload 2
Overload 1
Overload 2
Overload 1
Overload 2
setcommands: readonly ApplicationCommandDataResolvable[]) : Promise<Collection<Snowflake, ApplicationCommandScope>> (
commands: readonly ApplicationCommandDataResolvable[]
Sets all the commands for this application or guild.
Examples:
// Set all commands to just this one
client.application.commands.set([
{
name: 'test',
description: 'A test command',
},
])
.then(console.log)
.catch(console.error);
// Remove all commands
guild.commands.set([])
.then(console.log)
.catch(console.error);
valueOfCollection<Key, Holds> () :
Inherited from: DataManager