feat(GuildSystemChannelFlags): add suppress member join sticker replies flag (#222)

This commit is contained in:
Almeida
2021-11-02 12:56:34 +00:00
committed by GitHub
parent d189e36c49
commit 4021dae44b
4 changed files with 16 additions and 0 deletions

View File

@@ -414,6 +414,10 @@ export enum GuildSystemChannelFlags {
* Suppress server setup tips
*/
SuppressGuildReminderNotifications = 1 << 2,
/**
* Hide member join sticker reply buttons
*/
SuppressJoinNotificationReplies = 1 << 3,
}
/**

View File

@@ -422,6 +422,10 @@ export enum GuildSystemChannelFlags {
* Suppress server setup tips
*/
SuppressGuildReminderNotifications = 1 << 2,
/**
* Hide member join sticker reply buttons
*/
SuppressJoinNotificationReplies = 1 << 3,
}
/**

View File

@@ -414,6 +414,10 @@ export const enum GuildSystemChannelFlags {
* Suppress server setup tips
*/
SuppressGuildReminderNotifications = 1 << 2,
/**
* Hide member join sticker reply buttons
*/
SuppressJoinNotificationReplies = 1 << 3,
}
/**

View File

@@ -422,6 +422,10 @@ export const enum GuildSystemChannelFlags {
* Suppress server setup tips
*/
SuppressGuildReminderNotifications = 1 << 2,
/**
* Hide member join sticker reply buttons
*/
SuppressJoinNotificationReplies = 1 << 3,
}
/**