From 8cd5ab3d0202824b238194326a7e4dddfde14f7d Mon Sep 17 00:00:00 2001 From: Vishal Narkhede Date: Wed, 1 May 2024 15:21:27 +0200 Subject: [PATCH] feat: member_limit option on queryThreads and getThread endpoint --- src/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types.ts b/src/types.ts index 9b1318bcf..72f73e593 100644 --- a/src/types.ts +++ b/src/types.ts @@ -525,6 +525,7 @@ export type PartialThreadUpdate = { export type QueryThreadsOptions = { limit?: number; + member_limit?: number; next?: string; participant_limit?: number; reply_limit?: number; @@ -537,6 +538,7 @@ export type QueryThreadsAPIResponse