From a6c1ac76428fa47b4cae9760e5cb2f4f7803d547 Mon Sep 17 00:00:00 2001 From: Pol Vallverdu <86187892+polvallverdu@users.noreply.github.com> Date: Fri, 11 Oct 2024 01:39:53 +0200 Subject: [PATCH] feat(constants): Added GUILD_MEDIA channel type (#625) --- 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. */