feat: invite reminder system message type and flag (#105)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Advaith
2021-04-08 04:15:12 -07:00
committed by GitHub
parent 6cd75426c6
commit b90714f677
4 changed files with 10 additions and 0 deletions

View File

@@ -360,6 +360,7 @@ export enum MessageType {
GUILD_DISCOVERY_GRACE_PERIOD_FINAL_WARNING,
REPLY = 19,
APPLICATION_COMMAND,
GUILD_INVITE_REMINDER = 22,
}
/**

View File

@@ -372,6 +372,10 @@ export enum GuildSystemChannelFlags {
* Suppress server boost notifications
*/
SUPPRESS_PREMIUM_SUBSCRIPTIONS = 1 << 1,
/**
* Suppress server setup tips
*/
SUPPRESS_GUILD_REMINDER_NOTIFICATIONS = 1 << 2,
}
/**

View File

@@ -360,6 +360,7 @@ export const enum MessageType {
GUILD_DISCOVERY_GRACE_PERIOD_FINAL_WARNING,
REPLY = 19,
APPLICATION_COMMAND,
GUILD_INVITE_REMINDER = 22,
}
/**

View File

@@ -372,6 +372,10 @@ export const enum GuildSystemChannelFlags {
* Suppress server boost notifications
*/
SUPPRESS_PREMIUM_SUBSCRIPTIONS = 1 << 1,
/**
* Suppress server setup tips
*/
SUPPRESS_GUILD_REMINDER_NOTIFICATIONS = 1 << 2,
}
/**