@kohost/api-client 3.3.12 → 3.3.14

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.
@@ -17,6 +17,7 @@ export type SupportedNotifications = (
17
17
  | "acMainsReconnected"
18
18
  | "replaceBatterySoon"
19
19
  | "replaceBatteryNow"
20
+ | "batteryOk"
20
21
  | "hardwareFailure"
21
22
  | "softwareFailure"
22
23
  | "hardwareFailureWithCode"
@@ -30,6 +31,8 @@ export type SupportedNotifications = (
30
31
  | "scheduleMaintenance"
31
32
  | "doorAjar"
32
33
  | "communicationFailure"
34
+ | "burglarAlarm"
35
+ | "fireAlarm"
33
36
  )[];
34
37
  export type Notification = {
35
38
  name?:
@@ -44,6 +47,7 @@ export type Notification = {
44
47
  | "acMainsReconnected"
45
48
  | "replaceBatterySoon"
46
49
  | "replaceBatteryNow"
50
+ | "batteryOk"
47
51
  | "hardwareFailure"
48
52
  | "softwareFailure"
49
53
  | "hardwareFailureWithCode"
@@ -56,7 +60,9 @@ export type Notification = {
56
60
  | "outsideSafeHumidityRange"
57
61
  | "scheduleMaintenance"
58
62
  | "doorAjar"
59
- | "communicationFailure";
63
+ | "communicationFailure"
64
+ | "burglarAlarm"
65
+ | "fireAlarm";
60
66
  timestamp?: number;
61
67
  description?: string;
62
68
  [k: string]: unknown;
@@ -73,6 +79,7 @@ export type Notification = {
73
79
  | "acMainsReconnected"
74
80
  | "replaceBatterySoon"
75
81
  | "replaceBatteryNow"
82
+ | "batteryOk"
76
83
  | "hardwareFailure"
77
84
  | "softwareFailure"
78
85
  | "hardwareFailureWithCode"
@@ -85,7 +92,9 @@ export type Notification = {
85
92
  | "outsideSafeHumidityRange"
86
93
  | "scheduleMaintenance"
87
94
  | "doorAjar"
88
- | "communicationFailure";
95
+ | "communicationFailure"
96
+ | "burglarAlarm"
97
+ | "fireAlarm";
89
98
  timestamp?: number;
90
99
  description?: string;
91
100
  [k: string]: unknown;
@@ -17,6 +17,7 @@ export type SupportedNotifications = (
17
17
  | "acMainsReconnected"
18
18
  | "replaceBatterySoon"
19
19
  | "replaceBatteryNow"
20
+ | "batteryOk"
20
21
  | "hardwareFailure"
21
22
  | "softwareFailure"
22
23
  | "hardwareFailureWithCode"
@@ -30,6 +31,8 @@ export type SupportedNotifications = (
30
31
  | "scheduleMaintenance"
31
32
  | "doorAjar"
32
33
  | "communicationFailure"
34
+ | "burglarAlarm"
35
+ | "fireAlarm"
33
36
  )[];
34
37
  export type Notification = {
35
38
  name?:
@@ -44,6 +47,7 @@ export type Notification = {
44
47
  | "acMainsReconnected"
45
48
  | "replaceBatterySoon"
46
49
  | "replaceBatteryNow"
50
+ | "batteryOk"
47
51
  | "hardwareFailure"
48
52
  | "softwareFailure"
49
53
  | "hardwareFailureWithCode"
@@ -56,7 +60,9 @@ export type Notification = {
56
60
  | "outsideSafeHumidityRange"
57
61
  | "scheduleMaintenance"
58
62
  | "doorAjar"
59
- | "communicationFailure";
63
+ | "communicationFailure"
64
+ | "burglarAlarm"
65
+ | "fireAlarm";
60
66
  timestamp?: number;
61
67
  description?: string;
62
68
  [k: string]: unknown;
@@ -73,6 +79,7 @@ export type Notification = {
73
79
  | "acMainsReconnected"
74
80
  | "replaceBatterySoon"
75
81
  | "replaceBatteryNow"
82
+ | "batteryOk"
76
83
  | "hardwareFailure"
77
84
  | "softwareFailure"
78
85
  | "hardwareFailureWithCode"
@@ -85,7 +92,9 @@ export type Notification = {
85
92
  | "outsideSafeHumidityRange"
86
93
  | "scheduleMaintenance"
87
94
  | "doorAjar"
88
- | "communicationFailure";
95
+ | "communicationFailure"
96
+ | "burglarAlarm"
97
+ | "fireAlarm";
89
98
  timestamp?: number;
90
99
  description?: string;
91
100
  [k: string]: unknown;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kohost/api-client",
3
- "version": "3.3.12",
3
+ "version": "3.3.14",
4
4
  "description": "API client, models, schemas, commands, and events for Kohost applications",
5
5
  "author": "Ian Rogers",
6
6
  "readme": "README.md",