feat: ✨ Update User Flags & Application Flags
This commit is contained in:
@@ -49,8 +49,10 @@ class ApplicationFlags extends BitField {}
|
||||
ApplicationFlags.FLAGS = {
|
||||
EMBEDDED_RELEASED: 1 << 1,
|
||||
MANAGED_EMOJI: 1 << 2,
|
||||
EMBEDDED_IAP: 1 << 3,
|
||||
GROUP_DM_CREATE: 1 << 4,
|
||||
RPC_PRIVATE_BETA: 1 << 5,
|
||||
APPLICATION_AUTO_MODERATION_RULE_CREATE_BADGE: 1 << 6,
|
||||
ALLOW_ASSETS: 1 << 8,
|
||||
ALLOW_ACTIVITY_ACTION_SPECTATE: 1 << 9,
|
||||
ALLOW_ACTIVITY_ACTION_JOIN_REQUEST: 1 << 10,
|
||||
|
@@ -97,8 +97,8 @@ UserFlags.FLAGS = {
|
||||
DISABLED: Math.pow(2, 41), // [Undocumented] User is currently temporarily or permanently disabled.
|
||||
VERIFIED_EMAIL: Math.pow(2, 43), // [Undocumented] User has a verified email on their account.
|
||||
QUARANTINED: Math.pow(2, 44), // [Undocumented] User is quarantined.
|
||||
COLLABORATOR: 1 << 50, // [Undocumented] User is a collaborator and has staff permissions.
|
||||
RESTRICTED_COLLABORATOR: 1 << 51, // [Undocumented] User is a restricted collaborator and has staff permissions.
|
||||
COLLABORATOR: Math.pow(2, 50), // [Undocumented] User is a collaborator and has staff permissions.
|
||||
RESTRICTED_COLLABORATOR: Math.pow(2, 51), // [Undocumented] User is a restricted collaborator and has staff permissions.
|
||||
};
|
||||
|
||||
module.exports = UserFlags;
|
||||
|
Reference in New Issue
Block a user