@kohost/api-client 3.3.18 → 3.3.19
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.
- package/dist/cjs/schemas/space.json +21 -1
- package/dist/esm/Models.js +21 -1
- package/dist/esm/Models.js.map +2 -2
- package/dist/esm/utils.js +21 -1
- package/dist/esm/utils.js.map +2 -2
- package/dist/types/schemas/SpaceSchema.d.ts +22 -0
- package/package.json +1 -1
|
@@ -59,7 +59,8 @@
|
|
|
59
59
|
"additionalProperties": false,
|
|
60
60
|
"default": {
|
|
61
61
|
"active": false,
|
|
62
|
-
"allowed": false
|
|
62
|
+
"allowed": false,
|
|
63
|
+
"previousState": null
|
|
63
64
|
},
|
|
64
65
|
"properties": {
|
|
65
66
|
"active": {
|
|
@@ -73,6 +74,25 @@
|
|
|
73
74
|
"allowed": {
|
|
74
75
|
"type": "boolean",
|
|
75
76
|
"default": false
|
|
77
|
+
},
|
|
78
|
+
"previousState": {
|
|
79
|
+
"type": ["object", "null"],
|
|
80
|
+
"properties": {
|
|
81
|
+
"thermostats": {
|
|
82
|
+
"type": "object",
|
|
83
|
+
"patternProperties": {
|
|
84
|
+
".*": {
|
|
85
|
+
"type": "object",
|
|
86
|
+
"properties": {
|
|
87
|
+
"setpoints": {
|
|
88
|
+
"$ref": "thermostat.json#/properties/setpoints"
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"additionalProperties": false
|
|
76
96
|
}
|
|
77
97
|
}
|
|
78
98
|
},
|
package/dist/esm/Models.js
CHANGED
|
@@ -11324,7 +11324,8 @@ var require_space = __commonJS({
|
|
|
11324
11324
|
additionalProperties: false,
|
|
11325
11325
|
default: {
|
|
11326
11326
|
active: false,
|
|
11327
|
-
allowed: false
|
|
11327
|
+
allowed: false,
|
|
11328
|
+
previousState: null
|
|
11328
11329
|
},
|
|
11329
11330
|
properties: {
|
|
11330
11331
|
active: {
|
|
@@ -11338,6 +11339,25 @@ var require_space = __commonJS({
|
|
|
11338
11339
|
allowed: {
|
|
11339
11340
|
type: "boolean",
|
|
11340
11341
|
default: false
|
|
11342
|
+
},
|
|
11343
|
+
previousState: {
|
|
11344
|
+
type: ["object", "null"],
|
|
11345
|
+
properties: {
|
|
11346
|
+
thermostats: {
|
|
11347
|
+
type: "object",
|
|
11348
|
+
patternProperties: {
|
|
11349
|
+
".*": {
|
|
11350
|
+
type: "object",
|
|
11351
|
+
properties: {
|
|
11352
|
+
setpoints: {
|
|
11353
|
+
$ref: "thermostat.json#/properties/setpoints"
|
|
11354
|
+
}
|
|
11355
|
+
}
|
|
11356
|
+
}
|
|
11357
|
+
}
|
|
11358
|
+
}
|
|
11359
|
+
},
|
|
11360
|
+
additionalProperties: false
|
|
11341
11361
|
}
|
|
11342
11362
|
}
|
|
11343
11363
|
},
|