From f6a42b966a87f6987e6f48cda4cc283699e1bd2f Mon Sep 17 00:00:00 2001 From: Fleny Date: Wed, 12 Jun 2024 17:38:17 +0200 Subject: [PATCH] Add USE_EXTERNAL_APPS permission (#3658) --- packages/types/src/shared.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/types/src/shared.ts b/packages/types/src/shared.ts index 0f3866698..943aa36b5 100644 --- a/packages/types/src/shared.ts +++ b/packages/types/src/shared.ts @@ -688,6 +688,8 @@ export enum BitwisePermissionFlags { SEND_VOICE_MESSAGES = 0x0000400000000000, /** Allows sending polls */ SEND_POLLS = 0x0002000000000000, + /** Allows user-installed apps to send public responses. When disabled, users will still be allowed to use their apps but the responses will be ephemeral. This only applies to apps not also installed to the server. */ + USE_EXTERNAL_APPS = 0x0004000000000000, } export type PermissionStrings = keyof typeof BitwisePermissionFlags