I've seen bots that reply to commands and the replies are only visible to you (like little error messages for example). I would like to reply to an interaction with the same behaviour. RN I'm doing:
await sendInteractionResponse(
bot, interaction.id, interaction.token, {
type: InteractionResponseTypes.ChannelMessageWithSource,
data: response
}
);
What do I need to change?