Jim Wright 5ee33d47ba
[UI] VAULT-35614 review reporting phase 1 dashboard design changes (#30538)
* Update reporting addon

* Update usage page data mappings

Remove display name mapping per design review

* Update after feedback from design

Copywrite headers

* Remove the old name mapping test from the usage page

* Update tooltips to have periods

Update namespaces tooltip
2025-05-09 09:33:09 -07:00

15 lines
479 B
TypeScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
export interface Filter {
field: string;
operator: '>=' | '<=' | '>' | '<' | '=' | '!=' | 'IN' | 'NOT IN';
value: {
type: 'timestamp' | 'list' | 'string' | 'number';
value: unknown;
};
}
export declare const expressionToFilters: (expression: string) => Filter[];
export declare const filtersToExpression: (filters: Filter[]) => string;
//# sourceMappingURL=cel.d.ts.map