-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SIMSBIOHUB-627: Find Telemetry (#1434)
- Update telemetry find endpoint and summary list components. - Update summary container loading animation triggers - Remove old telemetry-service.ts
- Loading branch information
Showing
25 changed files
with
1,075 additions
and
388 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,61 @@ | ||
export interface IObservationAdvancedFilters { | ||
keyword?: string; | ||
/** | ||
* Filter results by ITIS TSNs. | ||
* | ||
* @type {number[]} | ||
* @memberof IObservationAdvancedFilters | ||
*/ | ||
itis_tsns?: number[]; | ||
/** | ||
* Filter results by ITIS TSN. | ||
* | ||
* @type {number} | ||
* @memberof IObservationAdvancedFilters | ||
*/ | ||
itis_tsn?: number; | ||
/** | ||
* Filter results by start date. | ||
* | ||
* @type {string} | ||
* @memberof IObservationAdvancedFilters | ||
*/ | ||
start_date?: string; | ||
/** | ||
* Filter results by end date. | ||
* | ||
* @type {string} | ||
* @memberof IObservationAdvancedFilters | ||
*/ | ||
end_date?: string; | ||
/** | ||
* Filter results by start time. | ||
* | ||
* @type {string} | ||
* @memberof IObservationAdvancedFilters | ||
*/ | ||
start_time?: string; | ||
/** | ||
* Filter results by end time. | ||
* | ||
* @type {string} | ||
* @memberof IObservationAdvancedFilters | ||
*/ | ||
end_time?: string; | ||
/** | ||
* Filter results by minimum count. | ||
* | ||
* @type {number} | ||
* @memberof IObservationAdvancedFilters | ||
*/ | ||
min_count?: number; | ||
/** | ||
* Filter results by system user id. | ||
* | ||
* Note: This is not the id of the user making the request. | ||
* | ||
* @type {number} | ||
* @memberof IObservationAdvancedFilters | ||
*/ | ||
system_user_id?: number; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.