Skip to content

Commit 39a8411

Browse files
authored
fix: correct reviewqueue item filter: teams (#1447)
1 parent 109a818 commit 39a8411

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/types.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3544,7 +3544,13 @@ export type ReviewQueueFilters = QueryFilters<
35443544
} & {
35453545
has_video?: boolean;
35463546
} & {
3547-
team?: string;
3547+
teams?:
3548+
| RequireOnlyOne<{
3549+
$contains?: PrimitiveFilter<string>;
3550+
$eq?: PrimitiveFilter<string>;
3551+
$in?: PrimitiveFilter<string>;
3552+
}>
3553+
| PrimitiveFilter<string>;
35483554
}
35493555
>;
35503556

0 commit comments

Comments
 (0)