@seamapi/types 0.14.0 → 0.15.0
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.
|
@@ -1487,6 +1487,20 @@ export interface Routes {
|
|
|
1487
1487
|
};
|
|
1488
1488
|
};
|
|
1489
1489
|
};
|
|
1490
|
+
'/thermostats/cool': {
|
|
1491
|
+
route: '/thermostats/cool';
|
|
1492
|
+
method: 'POST';
|
|
1493
|
+
queryParams: {};
|
|
1494
|
+
jsonBody: {
|
|
1495
|
+
device_id: string;
|
|
1496
|
+
cooling_set_point_celsius?: number | undefined;
|
|
1497
|
+
cooling_set_point_fahrenheit?: number | undefined;
|
|
1498
|
+
sync?: boolean;
|
|
1499
|
+
};
|
|
1500
|
+
commonParams: {};
|
|
1501
|
+
formData: {};
|
|
1502
|
+
jsonResponse: {};
|
|
1503
|
+
};
|
|
1490
1504
|
'/thermostats/get': {
|
|
1491
1505
|
route: '/thermostats/get';
|
|
1492
1506
|
method: 'GET' | 'POST';
|
package/package.json
CHANGED
|
@@ -1984,6 +1984,20 @@ export interface Routes {
|
|
|
1984
1984
|
}
|
|
1985
1985
|
}
|
|
1986
1986
|
}
|
|
1987
|
+
'/thermostats/cool': {
|
|
1988
|
+
route: '/thermostats/cool'
|
|
1989
|
+
method: 'POST'
|
|
1990
|
+
queryParams: {}
|
|
1991
|
+
jsonBody: {
|
|
1992
|
+
device_id: string
|
|
1993
|
+
cooling_set_point_celsius?: number | undefined
|
|
1994
|
+
cooling_set_point_fahrenheit?: number | undefined
|
|
1995
|
+
sync?: boolean
|
|
1996
|
+
}
|
|
1997
|
+
commonParams: {}
|
|
1998
|
+
formData: {}
|
|
1999
|
+
jsonResponse: {}
|
|
2000
|
+
}
|
|
1987
2001
|
'/thermostats/get': {
|
|
1988
2002
|
route: '/thermostats/get'
|
|
1989
2003
|
method: 'GET' | 'POST'
|