Skip to content

Commit

Permalink
feat: add more member flags
Browse files Browse the repository at this point in the history
  • Loading branch information
socram03 committed Aug 29, 2024
1 parent 0c1ef37 commit 42e1273
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions src/types/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,9 @@ export enum GatewayDispatchEvents {
StageInstanceCreate = 'STAGE_INSTANCE_CREATE',
StageInstanceDelete = 'STAGE_INSTANCE_DELETE',
StageInstanceUpdate = 'STAGE_INSTANCE_UPDATE',
SubscriptionCreate = 'SUBSCRIPTION_CREATE',
SubscriptionUpdate = 'SUBSCRIPTION_UPDATE',
SubscriptionDelete = 'SUBSCRIPTION_DELETE',
Ready = 'READY',
Resumed = 'RESUMED',
ThreadCreate = 'THREAD_CREATE',
Expand Down Expand Up @@ -815,21 +818,29 @@ export enum GuildMemberFlags {
*/
StartedOnboarding = 1 << 3,
/**
* @unstable This guild member flag is currently not documented by Discord but has a known value which we will try to keep up to date.
* Member is a guest and can only access the voice channel they were invited to
*/
IsGuest = 1 << 4,
/**
* This guild member flag is currently not documented by Discord but has a known value which we will try to keep up to date.
*/
StartedHomeActions = 1 << 5,
/**
* @unstable This guild member flag is currently not documented by Discord but has a known value which we will try to keep up to date.
* This guild member flag is currently not documented by Discord but has a known value which we will try to keep up to date.
*/
CompletedHomeActions = 1 << 6,
/**
* @unstable This guild member flag is currently not documented by Discord but has a known value which we will try to keep up to date.
* This guild member flag is currently not documented by Discord but has a known value which we will try to keep up to date.
*/
AutomodQuarantinedUsernameOrGuildNickname = 1 << 7,
/**
* @unstable This guild member flag is currently not documented by Discord but has a known value which we will try to keep up to date.
* @deprecated This guild member flag is currently not documented by Discord but has a known value which we will try to keep up to date.
*/
AutomodQuarantinedBio = 1 << 8,
/**
* Member has dismissed the DM settings upsell
*/
DmSettingsUpsellAcknowledged = 1 << 9,
}

export enum OverwriteType {
Expand Down

0 comments on commit 42e1273

Please sign in to comment.