From 396aed6f87a8206d1f2652fe3b4cec5790a582e4 Mon Sep 17 00:00:00 2001 From: Sacul <183588943+Sacul0457@users.noreply.github.com> Date: Sat, 8 Nov 2025 11:38:54 +0800 Subject: [PATCH 1/2] Update resolved channel fields --- .../developers/docs/interactions/receiving-and-responding.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/developers/docs/interactions/receiving-and-responding.mdx b/discord/developers/docs/interactions/receiving-and-responding.mdx index 8f986c562a..cd490f770f 100644 --- a/discord/developers/docs/interactions/receiving-and-responding.mdx +++ b/discord/developers/docs/interactions/receiving-and-responding.mdx @@ -176,7 +176,7 @@ If data for a Member is included, data for its corresponding User will also be i \* Partial `Member` objects are missing `user`, `deaf` and `mute` fields -\*\* Partial `Channel` objects only have `id`, `name`, `type`, `permissions`, `last_message_id`, `last_pin_timestamp`, `nsfw`, `parent_id`, `guild_id`, `flags`, `rate_limit_per_user`, `topic` and `position` fields. Threads will also have the `thread_metadata` field. +\*\* Partial `Channel` objects are (always) missing `permission_overwrites`, `recipients`, `icon`, `application_id`, `managed` and `member` fields. Threads will have the `thread_metadata` field. ###### Application Command Interaction Data Option Structure From a858d01ad8b8f8a8fc7a6c9b26e05ef13c3273aa Mon Sep 17 00:00:00 2001 From: Sacul0457Deve <183588943+Sacul0457@users.noreply.github.com.> Date: Mon, 24 Nov 2025 17:19:36 +0800 Subject: [PATCH 2/2] update channel types --- discord/developers/docs/resources/channel.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/developers/docs/resources/channel.mdx b/discord/developers/docs/resources/channel.mdx index c7b05b14fe..90ad6f3f40 100644 --- a/discord/developers/docs/resources/channel.mdx +++ b/discord/developers/docs/resources/channel.mdx @@ -408,7 +408,7 @@ Requires the `MANAGE_CHANNELS` permission for the guild. Fires a [Channel Update | position | ?integer | the position of the channel in the left-hand listing (channels with the same position are sorted by id) | All | | topic | ?string | 0-1024 character channel topic (0-4096 characters for `GUILD_FORUM` and `GUILD_MEDIA` channels) | Text, Announcement, Forum, Media | | nsfw | ?boolean | whether the channel is nsfw | Text, Voice, Announcement, Stage, Forum, Media | -| rate_limit_per_user | ?integer | amount of seconds a user has to wait before sending another message (0-21600); bots, as well as users with the permission `manage_messages` or `manage_channel`, are unaffected | Text, Voice, Stage, Forum, Media | +| rate_limit_per_user | ?integer | amount of seconds a user has to wait before sending another message (0-21600); bots, as well as users with the permission `manage_messages` or `manage_channel`, are unaffected | Text, Voice, Announcement, Stage, Forum, Media | | bitrate\* | ?integer | the bitrate (in bits) of the voice or stage channel; min 8000 | Voice, Stage | | user_limit | ?integer | the user limit of the voice or stage channel, max 99 for voice channels and 10,000 for stage channels (0 refers to no limit) | Voice, Stage | | permission_overwrites\*\* | ?array of partial [overwrite](/developers/docs/resources/channel#overwrite-object) objects | channel or category-specific permissions | All | @@ -419,7 +419,7 @@ Requires the `MANAGE_CHANNELS` permission for the guild. Fires a [Channel Update | flags | integer | [channel flags](/developers/docs/resources/channel#channel-object-channel-flags) combined as a [bitfield](https://en.wikipedia.org/wiki/Bit_field). Currently only `REQUIRE_TAG` (`1 << 4`) is supported by `GUILD_FORUM` and `GUILD_MEDIA` channels. `HIDE_MEDIA_DOWNLOAD_OPTIONS` (`1 << 15`) is supported only by `GUILD_MEDIA` channels | Forum, Media | | available_tags | array of [tag](/developers/docs/resources/channel#forum-tag-object) objects | the set of tags that can be used in a `GUILD_FORUM` or a `GUILD_MEDIA` channel; limited to 20 | Forum, Media | | default_reaction_emoji | ?[default reaction](/developers/docs/resources/channel#default-reaction-object) object | the emoji to show in the add reaction button on a thread in a `GUILD_FORUM` or a `GUILD_MEDIA` channel | Forum, Media | -| default_thread_rate_limit_per_user | integer | the initial `rate_limit_per_user` to set on newly created threads in a channel. this field is copied to the thread at creation time and does not live update. | Text, Forum, Media | +| default_thread_rate_limit_per_user | integer | the initial `rate_limit_per_user` to set on newly created threads in a channel. this field is copied to the thread at creation time and does not live update. | Text, Forum, Media, Announcement | | default_sort_order | ?integer | the [default sort order type](/developers/docs/resources/channel#channel-object-sort-order-types) used to order posts in `GUILD_FORUM` and `GUILD_MEDIA` channels | Forum, Media | | default_forum_layout | integer | the [default forum layout type](/developers/docs/resources/channel#channel-object-forum-layout-types) used to display posts in `GUILD_FORUM` channels | Forum |