fleet/frontend/interfaces/query_report.ts
Lucas Manuel Rodriguez 904e8a6825
Added server_settings.query_report_cap (#19692)
#19600

- [X] Changes file added for user-visible changes in `changes/`,
`orbit/changes/` or `ee/fleetd-chrome/changes`.
See [Changes
files](https://fleetdm.com/docs/contributing/committing-changes#changes-files)
for more information.
- [X] Added/updated tests
- [X] Manual QA for all new/changed functionality
2024-06-14 12:24:01 -03:00

13 lines
275 B
TypeScript

export interface IQueryReportResultRow {
host_id: number;
host_name: string;
last_fetched: string;
columns: any; // {col:val, ...}
}
// Query report
export interface IQueryReport {
query_id: number;
results: IQueryReportResultRow[];
report_clipped: boolean;
}