From 46fc3bf9017f6c9b2cde768f0c7cfe4acd026fdd Mon Sep 17 00:00:00 2001 From: Pol Vallverdu <86187892+polvallverdu@users.noreply.github.com> Date: Fri, 11 Oct 2024 00:26:42 +0200 Subject: [PATCH] feat: Added GUILD_MEDIA channel type --- src/constants.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/constants.ts b/src/constants.ts index 1eea8cfc..be6a7639 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -140,7 +140,9 @@ export enum ChannelType { /** The channel in a hub containing the listed servers. */ GUILD_DIRECTORY = 14, /** A channel that can only contain threads. */ - GUILD_FORUM = 15 + GUILD_FORUM = 15, + /** A channel where media can be posted. Can only contain threads, similar to GUILD_FORUM channels. */ + GUILD_MEDIA = 16 } /** The formats that stickers can be in. */