feat(PermissionFlagsBits): add PinMessages (#1340)

This commit is contained in:
Almeida
2025-08-20 17:26:07 +01:00
committed by GitHub
parent 51705cba50
commit b05df17466
2 changed files with 12 additions and 0 deletions

View File

@@ -288,6 +288,12 @@ export const PermissionFlagsBits = {
* Applies to channel types: Text, Voice, Stage
*/
UseExternalApps: 1n << 50n,
/**
* Allows pinning and unpinning messages
*
* Applies to channel types: Text
*/
PinMessages: 1n << 51n,
} as const;
/**

View File

@@ -288,6 +288,12 @@ export const PermissionFlagsBits = {
* Applies to channel types: Text, Voice, Stage
*/
UseExternalApps: 1n << 50n,
/**
* Allows pinning and unpinning messages
*
* Applies to channel types: Text
*/
PinMessages: 1n << 51n,
} as const;
/**