feat(core): Add support for partial-match execution filters (#15797)

This commit is contained in:
Daria
2025-06-04 09:37:35 +03:00
committed by GitHub
parent 7639cfbaa7
commit 1335af05d5
8 changed files with 99 additions and 21 deletions

View File

@@ -1344,6 +1344,7 @@ export interface EnvironmentVariable {
export type ExecutionFilterMetadata = {
key: string;
value: string;
exactMatch?: boolean;
};
export type ExecutionFilterVote = AnnotationVote | 'all';