Skip to content

Commit

Permalink
feat(PermissionFlagsBits): add UseExternalStickers (1n << 37n) (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
advaith1 committed Jul 19, 2021
1 parent 323e531 commit 5dccc6b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions deno/payloads/v8/permissions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export const PermissionFlagsBits = {
ManageEmojisAndStickers: 1n << 30n,
UseSlashCommands: 1n << 31n,
RequestToSpeak: 1n << 32n,
UseExternalStickers: 1n << 37n,
} as const;

/**
Expand Down
1 change: 1 addition & 0 deletions deno/payloads/v9/permissions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export const PermissionFlagsBits = {
ManageThreads: 1n << 34n,
UsePublicThreads: 1n << 35n,
UsePrivateThreads: 1n << 36n,
UseExternalStickers: 1n << 37n,
} as const;

/**
Expand Down
1 change: 1 addition & 0 deletions payloads/v8/permissions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export const PermissionFlagsBits = {
ManageEmojisAndStickers: 1n << 30n,
UseSlashCommands: 1n << 31n,
RequestToSpeak: 1n << 32n,
UseExternalStickers: 1n << 37n,
} as const;

/**
Expand Down
1 change: 1 addition & 0 deletions payloads/v9/permissions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export const PermissionFlagsBits = {
ManageThreads: 1n << 34n,
UsePublicThreads: 1n << 35n,
UsePrivateThreads: 1n << 36n,
UseExternalStickers: 1n << 37n,
} as const;

/**
Expand Down

0 comments on commit 5dccc6b

Please sign in to comment.