Skip to content

Commit

Permalink
Merge pull request #588 from GetStream/vishal/date-query-params
Browse files Browse the repository at this point in the history
Channel query date parameters
  • Loading branch information
vishalnarkhede authored Jan 18, 2021
2 parents d632de2 + 2761cab commit b249e0b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -822,6 +822,10 @@ export type MuteUserOptions<UserType = UnknownType> = {
};

export type PaginationOptions = {
created_at_after?: string | Date | SeamlessImmutable.ImmutableDate;
created_at_after_or_equal?: string | Date | SeamlessImmutable.ImmutableDate;
created_at_before?: string | Date | SeamlessImmutable.ImmutableDate;
created_at_before_or_equal?: string | Date | SeamlessImmutable.ImmutableDate;
id_gt?: string;
id_gte?: string;
id_lt?: string;
Expand Down

0 comments on commit b249e0b

Please sign in to comment.