feat: Add new ApplicationFlags

This commit is contained in:
March 7th 2022-07-22 11:08:40 +07:00
parent 57f8456915
commit 5ac7dcf853
2 changed files with 5 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -31,6 +31,8 @@ class ApplicationFlags extends BitField {}
* * `EMBEDDED`
* * `GATEWAY_MESSAGE_CONTENT`
* * `GATEWAY_MESSAGE_CONTENT_LIMITED`
* * `EMBEDDED_FIRST_PARTY`
* * `APPLICATION_COMMAND_BADGE`
* @type {Object}
* @see {@link https://discord.com/developers/docs/resources/application#application-object-application-flags}
*/
@ -43,6 +45,8 @@ ApplicationFlags.FLAGS = {
EMBEDDED: 1 << 17,
GATEWAY_MESSAGE_CONTENT: 1 << 18,
GATEWAY_MESSAGE_CONTENT_LIMITED: 1 << 19,
EMBEDDED_FIRST_PARTY: 1 << 20,
APPLICATION_COMMAND_BADGE: 1 << 23,
};
module.exports = ApplicationFlags;