mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-04 22:16:08 +00:00
feat: add more member flags
https://github.com/discord/discord-api-docs/pull/7113
This commit is contained in:
parent
0c1ef3777f
commit
42e1273393
@ -357,6 +357,9 @@ export enum GatewayDispatchEvents {
|
|||||||
StageInstanceCreate = 'STAGE_INSTANCE_CREATE',
|
StageInstanceCreate = 'STAGE_INSTANCE_CREATE',
|
||||||
StageInstanceDelete = 'STAGE_INSTANCE_DELETE',
|
StageInstanceDelete = 'STAGE_INSTANCE_DELETE',
|
||||||
StageInstanceUpdate = 'STAGE_INSTANCE_UPDATE',
|
StageInstanceUpdate = 'STAGE_INSTANCE_UPDATE',
|
||||||
|
SubscriptionCreate = 'SUBSCRIPTION_CREATE',
|
||||||
|
SubscriptionUpdate = 'SUBSCRIPTION_UPDATE',
|
||||||
|
SubscriptionDelete = 'SUBSCRIPTION_DELETE',
|
||||||
Ready = 'READY',
|
Ready = 'READY',
|
||||||
Resumed = 'RESUMED',
|
Resumed = 'RESUMED',
|
||||||
ThreadCreate = 'THREAD_CREATE',
|
ThreadCreate = 'THREAD_CREATE',
|
||||||
@ -815,21 +818,29 @@ export enum GuildMemberFlags {
|
|||||||
*/
|
*/
|
||||||
StartedOnboarding = 1 << 3,
|
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,
|
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,
|
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,
|
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,
|
AutomodQuarantinedBio = 1 << 8,
|
||||||
|
/**
|
||||||
|
* Member has dismissed the DM settings upsell
|
||||||
|
*/
|
||||||
|
DmSettingsUpsellAcknowledged = 1 << 9,
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum OverwriteType {
|
export enum OverwriteType {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user