class GuildApplicationCommandManager

export class GuildApplicationCommandManager extends ApplicationCommandManager<ApplicationCommand, {}, Guild>

An extension for guild-specific application commands.

The cache of this manager

readonly
client : Client

The client that instantiated this Manager

guild : Guild

The guild that this manager belongs to

readonly
holds : Constructable<Holds>

The data structure belonging to this manager.

Inherited from: DataManager

The manager for permissions of arbitrary commands on this guild

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);

Deletes an application command.

Examples:
// Delete a command
guild.commands.delete('123456789012345678')
  .then(console.log)
  .catch(console.error);

Edits an application command.

Examples:
// Edit an existing command
client.application.commands.edit('123456789012345678', {
  description: 'New description',
})
  .then(console.log)
  .catch(console.error);

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);

resolve(
idOrInstance: Holds
) : Holds

Resolves a data entry to a data Object.

Returns: An instance from this Manager

resolveId(
idOrInstance: Key | Holds
) : Key

Resolves a data entry to an instance id.

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);

valueOf() : Collection<Key, Holds>

Inherited from: DataManager