Skip to content

Commit

Permalink
fix: Add missing exclude_reblogs and tagged to fetching account statu…
Browse files Browse the repository at this point in the history
…ses (#760)

* Added excludeReblogs and tagged to querying account statuses

* Without prettier
  • Loading branch information
assaf committed Dec 20, 2022
1 parent 92be78b commit 59cd02a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/repositories/account-repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ export interface FetchAccountStatusesParams extends DefaultPaginationParams {
readonly pinned?: boolean | null;
/** Skip statuses that reply to other statuses */
readonly excludeReplies?: boolean | null;
/** Skip statuses that are boosts of other statuses */
readonly excludeReblogs?: boolean | null;
/** Only return statuses using a specific hashtag */
readonly tagged?: string | null;
}

export interface FollowAccountParams {
Expand Down

0 comments on commit 59cd02a

Please sign in to comment.