feat(interaction): add appPermissions (v13)

v13.9.0 #8195
This commit is contained in:
Cinnamon 2022-07-01 10:02:36 +07:00
parent 354fe2a7be
commit d60132a011
2 changed files with 7 additions and 0 deletions

View File

@ -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>}

1
typings/index.d.ts vendored
View File

@ -1453,6 +1453,7 @@ export class Interaction<Cached extends CacheType = CacheType> extends Base {
public type: InteractionType;
public user: User;
public version: number;
public appPermissions: Readonly<Permissions> | null;
public memberPermissions: CacheTypeReducer<Cached, Readonly<Permissions>>;
public locale: string;
public guildLocale: CacheTypeReducer<Cached, string, string, string>;