@kohost/api-client 3.1.5 → 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.
@@ -38,6 +38,7 @@ export interface Property {
38
38
  longitude?: number;
39
39
  appFeatures?: {
40
40
  RoomControl?: {
41
+ disabledSystems?: ("climate" | "lights" | "shades" | "tv" | "doors")[];
41
42
  commonAreas?: {
42
43
  spaces?: string[];
43
44
  [k: string]: unknown;
@@ -73,6 +73,13 @@
73
73
  "RoomControl": {
74
74
  "type": "object",
75
75
  "properties": {
76
+ "disabledSystems": {
77
+ "type": "array",
78
+ "items": {
79
+ "type": "string",
80
+ "enum": ["climate", "lights", "shades", "tv", "doors"]
81
+ }
82
+ },
76
83
  "commonAreas": {
77
84
  "type": "object",
78
85
  "properties": {
@@ -13029,6 +13029,13 @@ var require_property = __commonJS({
13029
13029
  RoomControl: {
13030
13030
  type: "object",
13031
13031
  properties: {
13032
+ disabledSystems: {
13033
+ type: "array",
13034
+ items: {
13035
+ type: "string",
13036
+ enum: ["climate", "lights", "shades", "tv", "doors"]
13037
+ }
13038
+ },
13032
13039
  commonAreas: {
13033
13040
  type: "object",
13034
13041
  properties: {