Skip to content

Commit

Permalink
feat(GuildSystemChannelFlags): add suppress member join sticker repli…
Browse files Browse the repository at this point in the history
…es flag (#222)
  • Loading branch information
almeidx committed Nov 2, 2021
1 parent d189e36 commit 4021dae
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions deno/payloads/v8/guild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,10 @@ export enum GuildSystemChannelFlags {
* Suppress server setup tips
*/
SuppressGuildReminderNotifications = 1 << 2,
/**
* Hide member join sticker reply buttons
*/
SuppressJoinNotificationReplies = 1 << 3,
}

/**
Expand Down
4 changes: 4 additions & 0 deletions deno/payloads/v9/guild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,10 @@ export enum GuildSystemChannelFlags {
* Suppress server setup tips
*/
SuppressGuildReminderNotifications = 1 << 2,
/**
* Hide member join sticker reply buttons
*/
SuppressJoinNotificationReplies = 1 << 3,
}

/**
Expand Down
4 changes: 4 additions & 0 deletions payloads/v8/guild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,10 @@ export const enum GuildSystemChannelFlags {
* Suppress server setup tips
*/
SuppressGuildReminderNotifications = 1 << 2,
/**
* Hide member join sticker reply buttons
*/
SuppressJoinNotificationReplies = 1 << 3,
}

/**
Expand Down
4 changes: 4 additions & 0 deletions payloads/v9/guild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,10 @@ export const enum GuildSystemChannelFlags {
* Suppress server setup tips
*/
SuppressGuildReminderNotifications = 1 << 2,
/**
* Hide member join sticker reply buttons
*/
SuppressJoinNotificationReplies = 1 << 3,
}

/**
Expand Down

0 comments on commit 4021dae

Please sign in to comment.