@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
|
@@ -75,6 +75,18 @@ export interface Space {
|
|
|
75
75
|
[k: string]: unknown;
|
|
76
76
|
};
|
|
77
77
|
allowed?: boolean;
|
|
78
|
+
previousState?: {
|
|
79
|
+
thermostats?: {
|
|
80
|
+
/**
|
|
81
|
+
* This interface was referenced by `undefined`'s JSON-Schema definition
|
|
82
|
+
* via the `patternProperty` ".*".
|
|
83
|
+
*/
|
|
84
|
+
[k: string]: {
|
|
85
|
+
setpoints?: Setpoints;
|
|
86
|
+
[k: string]: unknown;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
} | null;
|
|
78
90
|
};
|
|
79
91
|
features?: "pet"[];
|
|
80
92
|
maximumOccupancy?: number;
|
|
@@ -83,3 +95,13 @@ export interface Space {
|
|
|
83
95
|
systemId?: string;
|
|
84
96
|
[k: string]: unknown;
|
|
85
97
|
}
|
|
98
|
+
export interface Setpoints {
|
|
99
|
+
cool?: Setpoint;
|
|
100
|
+
heat?: Setpoint;
|
|
101
|
+
auto?: Setpoint;
|
|
102
|
+
}
|
|
103
|
+
export interface Setpoint {
|
|
104
|
+
value?: number;
|
|
105
|
+
min?: number | null;
|
|
106
|
+
max?: number | null;
|
|
107
|
+
}
|