diff --git a/deno/rest/v10/channel.ts b/deno/rest/v10/channel.ts index 72ad9ac06..7cdcd7127 100644 --- a/deno/rest/v10/channel.ts +++ b/deno/rest/v10/channel.ts @@ -665,4 +665,9 @@ export interface RESTGetAPIChannelThreadsArchivedQuery { /** * https://discord.com/developers/docs/resources/channel#list-joined-private-archived-threads */ -export type RESTGetAPIChannelUsersThreadsArchivedResult = APIThreadList; +export interface RESTGetAPIChannelUsersThreadsArchivedResult extends APIThreadList { + /** + * Whether there are potentially additional threads + */ + has_more: boolean; +} diff --git a/rest/v10/channel.ts b/rest/v10/channel.ts index b35f64e5f..3cb897a84 100644 --- a/rest/v10/channel.ts +++ b/rest/v10/channel.ts @@ -665,4 +665,9 @@ export interface RESTGetAPIChannelThreadsArchivedQuery { /** * https://discord.com/developers/docs/resources/channel#list-joined-private-archived-threads */ -export type RESTGetAPIChannelUsersThreadsArchivedResult = APIThreadList; +export interface RESTGetAPIChannelUsersThreadsArchivedResult extends APIThreadList { + /** + * Whether there are potentially additional threads + */ + has_more: boolean; +}