interface UxFilters {
    branches?: Branch[];
    confidenceLevels?: Confidence[];
    packages?: Dependency[];
    pipelines?: Pipeline[];
    progressPercentage?: number;
    rules?: Rule[];
    secretTypes?: string[];
    severities?: Severity[];
    states?: State[];
    tools?: Tool[];
}

Properties

branches?: Branch[]

Branches to display alerts for. If empty, show alerts from all branches

confidenceLevels?: Confidence[]

Confidence levels to show, only valid when AlertType is Secret.

packages?: Dependency[]
pipelines?: Pipeline[]

Pipelines to show alerts for. If empty, show alerts for all pipelines

progressPercentage?: number
rules?: Rule[]
secretTypes?: string[]
severities?: Severity[]

Alert severities to show. If empty show all alert servities

states?: State[]

Alert states to show. If empty show all alert states

tools?: Tool[]