diff --git a/src/types/channels/channel.ts b/src/types/channels/channel.ts index ceda62144..e672ac298 100644 --- a/src/types/channels/channel.ts +++ b/src/types/channels/channel.ts @@ -56,4 +56,6 @@ export interface Channel { threadMetadata?: ThreadMetadata; /** Thread member object for the current user, if they have joined the thread, only included on certain API endpoints */ member?: ThreadMember; + /** Default duration for newly created threads, in minutes, to automatically archive the thread after recent activity, can be set to: 60, 1440, 4320, 10080 */ + defaultAutoArchiveDuration?: number; }