Discord Bot BaseCommandsContext menuHow to create discord context menu commandsUser context menuMessage context menuTo create a user context menu command, you need to set name and type.new Command({ name: "profile", type: ApplicationCommandType.User, async run(interaction) { const { targetUser } = interaction; interaction.reply({ ephemeral, content: `${targetUser}"s profile` }); }, });PreviousSlashNextAutocomplete