From 6854df42183ba6fccbff3a0366170557e0152e66 Mon Sep 17 00:00:00 2001 From: Jiralite <33201955+Jiralite@users.noreply.github.com> Date: Tue, 10 Jan 2023 09:53:03 +0000 Subject: [PATCH] types(ThreadEditOptions): Add `appliedTags` (#9022) --- src/structures/ThreadChannel.js | 1 + typings/index.d.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/structures/ThreadChannel.js b/src/structures/ThreadChannel.js index 7e41cece5..53c56a9a7 100644 --- a/src/structures/ThreadChannel.js +++ b/src/structures/ThreadChannel.js @@ -323,6 +323,7 @@ class ThreadChannel extends Channel { * @property {number} [rateLimitPerUser] The rate limit per user (slowmode) for the thread in seconds * @property {boolean} [locked] Whether the thread is locked * @property {boolean} [invitable] Whether non-moderators can add other non-moderators to a thread + * @property {Snowflake[]} [appliedTags] The tags to apply to the thread * @property {ChannelFlagsResolvable} [flags] The flags to set on the channel * Can only be edited on `GUILD_PRIVATE_THREAD` */ diff --git a/typings/index.d.ts b/typings/index.d.ts index 70d525888..13d7404e3 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -6108,6 +6108,7 @@ export interface ThreadEditData { locked?: boolean; invitable?: boolean; threadName?: string; + appliedTags?: Snowflake[]; flags?: ChannelFlagsResolvable; }