Skip to content

Commit

Permalink
refactor: added support for has_image, has_text and has_video
Browse files Browse the repository at this point in the history
  • Loading branch information
vishalnarkhede committed Jun 6, 2024
1 parent 043b689 commit 90f3df9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3243,6 +3243,12 @@ export type ReviewQueueFilters = QueryFilters<
Pick<QueryFilter<ReviewQueueItem['updated_at']>, '$eq' | '$gt' | '$lt' | '$gte' | '$lte'>
>
| PrimitiveFilter<ReviewQueueItem['updated_at']>;
} & {
has_image?: boolean;
} & {
has_text?: boolean;
} & {
has_video?: boolean;
}
>;

Expand Down

0 comments on commit 90f3df9

Please sign in to comment.