feat(MessageType): add SuppressNotifications (#710)

This commit is contained in:
Almeida
2023-02-08 22:01:17 +00:00
committed by GitHub
parent fddb6f1362
commit b14aea65f8
4 changed files with 16 additions and 0 deletions

View File

@@ -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,
}
/**

View File

@@ -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,
}
/**

View File

@@ -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,
}
/**

View File

@@ -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,
}
/**