feat(MessageFlags): add FailedToMentionSomeRolesInThread (#280)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Advaith
2022-01-25 11:06:15 -08:00
committed by GitHub
parent 80ed7ba1c1
commit 76588d9d38
2 changed files with 8 additions and 0 deletions

View File

@@ -610,6 +610,10 @@ export enum MessageFlags {
* This message is an Interaction Response and the bot is "thinking"
*/
Loading = 1 << 7,
/**
* This message failed to mention some roles and add their members to the thread
*/
FailedToMentionSomeRolesInThread = 1 << 8,
}
/**

View File

@@ -610,6 +610,10 @@ export const enum MessageFlags {
* This message is an Interaction Response and the bot is "thinking"
*/
Loading = 1 << 7,
/**
* This message failed to mention some roles and add their members to the thread
*/
FailedToMentionSomeRolesInThread = 1 << 8,
}
/**