-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(history-query): add backend endpoint and repository for history …
…queries
- Loading branch information
1 parent
066e522
commit b7ffefd
Showing
11 changed files
with
658 additions
and
118 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import { | ||
NorthArchiveSettings, | ||
NorthCacheSettingsDTO, | ||
} from "./north-connector.model"; | ||
|
||
/** | ||
* DTO for history queries | ||
*/ | ||
export interface HistoryQueryDTO { | ||
id: string; | ||
name: string; | ||
description: string; | ||
enabled: boolean; | ||
startTime: string; | ||
endTime: string; | ||
southType: string; | ||
northType: string; | ||
southSettings: object; | ||
northSettings: object; | ||
caching: NorthCacheSettingsDTO; | ||
archive: NorthArchiveSettings; | ||
} | ||
|
||
/** | ||
* Command DTO for history queries | ||
*/ | ||
export interface HistoryQueryCommandDTO { | ||
name: string; | ||
description: string; | ||
enabled: boolean; | ||
startTime: string; | ||
endTime: string; | ||
southType: string; | ||
northType: string; | ||
southSettings: object; | ||
northSettings: object; | ||
caching: NorthCacheSettingsDTO; | ||
archive: NorthArchiveSettings; | ||
} |
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.