mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 16:43:31 +01:00
feat(interaction): add appPermissions (v13) (#8195)
This commit is contained in:
@@ -69,6 +69,12 @@ class Interaction extends Base {
|
||||
*/
|
||||
this.version = data.version;
|
||||
|
||||
/**
|
||||
* Set of permissions the application or bot has within the channel the interaction was sent from
|
||||
* @type {?Readonly<Permissions>}
|
||||
*/
|
||||
this.appPermissions = data.app_permissions ? new Permissions(data.app_permissions).freeze() : null;
|
||||
|
||||
/**
|
||||
* The permissions of the member, if one exists, in the channel this interaction was executed in
|
||||
* @type {?Readonly<Permissions>}
|
||||
|
||||
Reference in New Issue
Block a user