We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87557da commit 4b137d6Copy full SHA for 4b137d6
src/plugin/command-plugin/Command/AbstractCommand.ts
@@ -32,7 +32,7 @@ export default abstract class AbstractCommand<
32
public async acknowledge(
33
{ id, token }: InteractionCreate,
34
type: number,
35
- data?: { tts?: boolean; content: string; embeds?: Embed[]; allowed_mentions?: AllowedMentions },
+ data?: { tts?: boolean; content: string; embeds?: Embed[]; allowed_mentions?: AllowedMentions; flags?: number },
36
) {
37
await axios.post(`https://discord.com/api/v8/interactions/${id}/${token}/callback`, { type, data });
38
}
0 commit comments