Skip to content

Commit

Permalink
feat: member_limit option on queryThreads and getThread endpoint (#1291)
Browse files Browse the repository at this point in the history
  • Loading branch information
vishalnarkhede committed May 1, 2024
1 parent 3a36898 commit 78fae3d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/types.ts
Expand Up @@ -525,6 +525,7 @@ export type PartialThreadUpdate = {

export type QueryThreadsOptions = {
limit?: number;
member_limit?: number;
next?: string;
participant_limit?: number;
reply_limit?: number;
Expand All @@ -537,6 +538,7 @@ export type QueryThreadsAPIResponse<StreamChatGenerics extends ExtendableGeneric
};

export type GetThreadOptions = {
member_limit?: number;
participant_limit?: number;
reply_limit?: number;
watch?: boolean;
Expand Down

0 comments on commit 78fae3d

Please sign in to comment.