Skip to content

Commit

Permalink
fix: wrong sort field names (#1308)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaljam authored May 23, 2024
1 parent fd9a90b commit a361ee7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3111,8 +3111,8 @@ export type QueryMessageHistoryFilters = QueryFilters<
export type QueryMessageHistorySort = QueryMessageHistorySortBase | Array<QueryMessageHistorySortBase>;

export type QueryMessageHistorySortBase = {
created_at?: AscDesc;
user_id?: AscDesc;
message_updated_at?: AscDesc;
message_updated_by_id?: AscDesc;
};

export type QueryMessageHistoryOptions = Pager;
Expand Down

0 comments on commit a361ee7

Please sign in to comment.