@kohost/api-client 3.1.4 → 3.1.6
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.
|
@@ -19,6 +19,10 @@ export interface Property {
|
|
|
19
19
|
organization: string | null;
|
|
20
20
|
testModeEnabled?: boolean;
|
|
21
21
|
testMode?: {
|
|
22
|
+
/**
|
|
23
|
+
* Only users with these email addresses will receive notifications in test mode, including sms, email, or push.
|
|
24
|
+
*/
|
|
25
|
+
notificationEmails?: string[];
|
|
22
26
|
/**
|
|
23
27
|
* Only users with email addreses ending in these domains will receive notifications in test mode, including sms, email, or push.
|
|
24
28
|
*/
|
|
@@ -34,6 +38,7 @@ export interface Property {
|
|
|
34
38
|
longitude?: number;
|
|
35
39
|
appFeatures?: {
|
|
36
40
|
RoomControl?: {
|
|
41
|
+
disabledSystems?: ("climate" | "lights" | "shades" | "tv" | "doors")[];
|
|
37
42
|
commonAreas?: {
|
|
38
43
|
spaces?: string[];
|
|
39
44
|
[k: string]: unknown;
|
|
@@ -30,6 +30,13 @@
|
|
|
30
30
|
"testMode": {
|
|
31
31
|
"type": "object",
|
|
32
32
|
"properties": {
|
|
33
|
+
"notificationEmails": {
|
|
34
|
+
"type": "array",
|
|
35
|
+
"items": {
|
|
36
|
+
"type": "string"
|
|
37
|
+
},
|
|
38
|
+
"description": "Only users with these email addresses will receive notifications in test mode, including sms, email, or push."
|
|
39
|
+
},
|
|
33
40
|
"notificationEmailDomains": {
|
|
34
41
|
"type": "array",
|
|
35
42
|
"items": {
|
|
@@ -66,6 +73,13 @@
|
|
|
66
73
|
"RoomControl": {
|
|
67
74
|
"type": "object",
|
|
68
75
|
"properties": {
|
|
76
|
+
"disabledSystems": {
|
|
77
|
+
"type": "array",
|
|
78
|
+
"items": {
|
|
79
|
+
"type": "string",
|
|
80
|
+
"enum": ["climate", "lights", "shades", "tv", "doors"]
|
|
81
|
+
}
|
|
82
|
+
},
|
|
69
83
|
"commonAreas": {
|
|
70
84
|
"type": "object",
|
|
71
85
|
"properties": {
|
package/dist/esm/Models.js
CHANGED
|
@@ -12986,6 +12986,13 @@ var require_property = __commonJS({
|
|
|
12986
12986
|
testMode: {
|
|
12987
12987
|
type: "object",
|
|
12988
12988
|
properties: {
|
|
12989
|
+
notificationEmails: {
|
|
12990
|
+
type: "array",
|
|
12991
|
+
items: {
|
|
12992
|
+
type: "string"
|
|
12993
|
+
},
|
|
12994
|
+
description: "Only users with these email addresses will receive notifications in test mode, including sms, email, or push."
|
|
12995
|
+
},
|
|
12989
12996
|
notificationEmailDomains: {
|
|
12990
12997
|
type: "array",
|
|
12991
12998
|
items: {
|
|
@@ -13022,6 +13029,13 @@ var require_property = __commonJS({
|
|
|
13022
13029
|
RoomControl: {
|
|
13023
13030
|
type: "object",
|
|
13024
13031
|
properties: {
|
|
13032
|
+
disabledSystems: {
|
|
13033
|
+
type: "array",
|
|
13034
|
+
items: {
|
|
13035
|
+
type: "string",
|
|
13036
|
+
enum: ["climate", "lights", "shades", "tv", "doors"]
|
|
13037
|
+
}
|
|
13038
|
+
},
|
|
13025
13039
|
commonAreas: {
|
|
13026
13040
|
type: "object",
|
|
13027
13041
|
properties: {
|