@hedia/types 2.3.12 → 2.3.13-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -36,8 +36,10 @@ export declare namespace ForecastService {
|
|
|
36
36
|
interface IForecastNotificationSettings {
|
|
37
37
|
enableHighAlerts: boolean;
|
|
38
38
|
enableLowAlerts: boolean;
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
/** integer in the range of [0,23] representing the starting hour for alerts */
|
|
40
|
+
lowAlertTimeSpanStart?: number;
|
|
41
|
+
/** integer in the range of [0,23] representing the ending hour for alerts */
|
|
42
|
+
lowAlertTimeSpanEnd?: number;
|
|
41
43
|
}
|
|
42
44
|
}
|
|
43
45
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hedia/types",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.13-alpha.0",
|
|
4
4
|
"description": "Enums, interfaces, and other common types for use in Hedia's software.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"build": "rm -rf dist/ && tsc --build",
|
|
17
17
|
"clean": "tsc --build --clean && rm -rf dist/",
|
|
18
18
|
"build-guards": "ts-auto-guard src/**/[!index]*.ts",
|
|
19
|
-
"
|
|
19
|
+
"eslint": "tslint --project .",
|
|
20
20
|
"lint-fix": "tslint --fix --project .",
|
|
21
21
|
"prettier": "prettier --check \"**/*.{ts,tsx}\"",
|
|
22
22
|
"prettier-fix": "prettier --write \"**/*.{ts,tsx}\"",
|