diff --git a/deno/rest/v10/channel.ts b/deno/rest/v10/channel.ts index 30177634..39aa065a 100644 --- a/deno/rest/v10/channel.ts +++ b/deno/rest/v10/channel.ts @@ -150,7 +150,7 @@ export interface RESTPatchAPIChannelJSONBody { * * Channel types: forum */ - available_tags?: APIGuildForumTag[] | undefined; + available_tags?: (Partial & Pick)[] | undefined; /** * The emoji to show in the add reaction button on a thread in a forum channel * diff --git a/deno/rest/v9/channel.ts b/deno/rest/v9/channel.ts index d20a5aad..1485af61 100644 --- a/deno/rest/v9/channel.ts +++ b/deno/rest/v9/channel.ts @@ -150,7 +150,7 @@ export interface RESTPatchAPIChannelJSONBody { * * Channel types: forum */ - available_tags?: APIGuildForumTag[] | undefined; + available_tags?: (Partial & Pick)[] | undefined; /** * The emoji to show in the add reaction button on a thread in a forum channel * diff --git a/rest/v10/channel.ts b/rest/v10/channel.ts index 7a11b68f..869daac1 100644 --- a/rest/v10/channel.ts +++ b/rest/v10/channel.ts @@ -150,7 +150,7 @@ export interface RESTPatchAPIChannelJSONBody { * * Channel types: forum */ - available_tags?: APIGuildForumTag[] | undefined; + available_tags?: (Partial & Pick)[] | undefined; /** * The emoji to show in the add reaction button on a thread in a forum channel * diff --git a/rest/v9/channel.ts b/rest/v9/channel.ts index 112937e2..449b82e5 100644 --- a/rest/v9/channel.ts +++ b/rest/v9/channel.ts @@ -150,7 +150,7 @@ export interface RESTPatchAPIChannelJSONBody { * * Channel types: forum */ - available_tags?: APIGuildForumTag[] | undefined; + available_tags?: (Partial & Pick)[] | undefined; /** * The emoji to show in the add reaction button on a thread in a forum channel *