@robotbas/robotcloud-client 0.0.7 → 0.0.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robotbas/robotcloud-client",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "RobotCloud API client",
5
5
  "author": {
6
6
  "name": "Bernat Galmés Rubert",
@@ -19,4 +19,15 @@ export interface RoomClimeConfigurationParams {
19
19
  high_humidity_level?: number;
20
20
  fancoil_on_time_limit?: number;
21
21
  temperature_units?: TemperatureUnit;
22
- }
22
+ }
23
+
24
+ export interface RoomGuestStatusConfigurationParams {
25
+ sold?: boolean;
26
+ vip?: boolean;
27
+ do_not_disturb?: boolean;
28
+ make_up_room?: boolean;
29
+ remote_occupation?: boolean;
30
+ door_open_time_limit?: number;
31
+ window_open_time_limit?: number;
32
+ medical_alarm?: boolean;
33
+ }
@@ -36,3 +36,16 @@ export interface RoomConsumes1Data {
36
36
  guest_co2_footprint: number;
37
37
  guest_tree_equivalent: number;
38
38
  }
39
+
40
+ export interface RoomGuestStatus1Data {
41
+ sold: boolean;
42
+ vip: boolean;
43
+ occupied: boolean;
44
+ do_not_disturb: boolean;
45
+ make_up_room: boolean;
46
+ tray_status: "IDLE"|'READY'|'FINISH';
47
+ remote_occupation: boolean;
48
+ door_open: boolean;
49
+ window_open: boolean;
50
+ medical_alarm: boolean;
51
+ }
@@ -37,27 +37,7 @@ export interface RoomGuestStatus1AlertEventValue {
37
37
  medical_alarm: boolean;
38
38
  }
39
39
 
40
- export interface RoomGuestStatus1EventValue {
41
- sold: boolean;
42
- occupied: boolean;
43
- do_not_disturb: boolean;
44
- make_up_room: boolean;
45
- tray_status: "IDLE"|'READY'|'FINISH';
46
- remote_occupation: boolean;
47
- door_open: boolean;
48
- window_open: boolean;
49
- medical_alarm: boolean; // TODO: ???
50
- }
51
40
 
52
- export interface RoomGuestStatusInstanceConfigParams {
53
- sold?: boolean;
54
- do_not_disturb?: boolean;
55
- make_up_room?: boolean;
56
- remote_occupation?: boolean;
57
- door_open_time_limit?: number;
58
- window_open_time_limit?: number;
59
- medical_alarm?: boolean;
60
- }
61
41
 
62
42
 
63
43
  ////