We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 109a818 commit 39a8411Copy full SHA for 39a8411
src/types.ts
@@ -3544,7 +3544,13 @@ export type ReviewQueueFilters = QueryFilters<
3544
} & {
3545
has_video?: boolean;
3546
3547
- team?: string;
+ teams?:
3548
+ | RequireOnlyOne<{
3549
+ $contains?: PrimitiveFilter<string>;
3550
+ $eq?: PrimitiveFilter<string>;
3551
+ $in?: PrimitiveFilter<string>;
3552
+ }>
3553
+ | PrimitiveFilter<string>;
3554
}
3555
>;
3556
0 commit comments