From 76588d9d384f71ace05d96de17889e4490874462 Mon Sep 17 00:00:00 2001 From: Advaith Date: Tue, 25 Jan 2022 11:06:15 -0800 Subject: [PATCH] feat(MessageFlags): add `FailedToMentionSomeRolesInThread` (#280) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- deno/payloads/v9/channel.ts | 4 ++++ payloads/v9/channel.ts | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/deno/payloads/v9/channel.ts b/deno/payloads/v9/channel.ts index 31625e446..92d1c1df5 100644 --- a/deno/payloads/v9/channel.ts +++ b/deno/payloads/v9/channel.ts @@ -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, } /** diff --git a/payloads/v9/channel.ts b/payloads/v9/channel.ts index 6187ae78d..5e26bfc89 100644 --- a/payloads/v9/channel.ts +++ b/payloads/v9/channel.ts @@ -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, } /**