diff --git a/deno/payloads/v10/channel.ts b/deno/payloads/v10/channel.ts index 82502260..7f299b78 100644 --- a/deno/payloads/v10/channel.ts +++ b/deno/payloads/v10/channel.ts @@ -806,6 +806,10 @@ export enum MessageFlags { * This message failed to mention some roles and add their members to the thread */ FailedToMentionSomeRolesInThread = 1 << 8, + /** + * This message will not trigger push and desktop notifications + */ + SuppressNotifications = 1 << 12, } /** diff --git a/deno/payloads/v9/channel.ts b/deno/payloads/v9/channel.ts index fe760e04..9c5661c6 100644 --- a/deno/payloads/v9/channel.ts +++ b/deno/payloads/v9/channel.ts @@ -792,6 +792,10 @@ export enum MessageFlags { * This message failed to mention some roles and add their members to the thread */ FailedToMentionSomeRolesInThread = 1 << 8, + /** + * This message will not trigger push and desktop notifications + */ + SuppressNotifications = 1 << 12, } /** diff --git a/payloads/v10/channel.ts b/payloads/v10/channel.ts index 0f963ee7..d300c191 100644 --- a/payloads/v10/channel.ts +++ b/payloads/v10/channel.ts @@ -806,6 +806,10 @@ export enum MessageFlags { * This message failed to mention some roles and add their members to the thread */ FailedToMentionSomeRolesInThread = 1 << 8, + /** + * This message will not trigger push and desktop notifications + */ + SuppressNotifications = 1 << 12, } /** diff --git a/payloads/v9/channel.ts b/payloads/v9/channel.ts index 6af1beaa..147cee1e 100644 --- a/payloads/v9/channel.ts +++ b/payloads/v9/channel.ts @@ -792,6 +792,10 @@ export enum MessageFlags { * This message failed to mention some roles and add their members to the thread */ FailedToMentionSomeRolesInThread = 1 << 8, + /** + * This message will not trigger push and desktop notifications + */ + SuppressNotifications = 1 << 12, } /**