@seamapi/types 0.14.0 → 0.16.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';
|
|
@@ -1539,6 +1553,22 @@ export interface Routes {
|
|
|
1539
1553
|
formData: {};
|
|
1540
1554
|
jsonResponse: {};
|
|
1541
1555
|
};
|
|
1556
|
+
'/thermostats/heat_cool': {
|
|
1557
|
+
route: '/thermostats/heat_cool';
|
|
1558
|
+
method: 'POST';
|
|
1559
|
+
queryParams: {};
|
|
1560
|
+
jsonBody: {
|
|
1561
|
+
device_id: string;
|
|
1562
|
+
heating_set_point_celsius?: number | undefined;
|
|
1563
|
+
heating_set_point_fahrenheit?: number | undefined;
|
|
1564
|
+
cooling_set_point_celsius?: number | undefined;
|
|
1565
|
+
cooling_set_point_fahrenheit?: number | undefined;
|
|
1566
|
+
sync?: boolean;
|
|
1567
|
+
};
|
|
1568
|
+
commonParams: {};
|
|
1569
|
+
formData: {};
|
|
1570
|
+
jsonResponse: {};
|
|
1571
|
+
};
|
|
1542
1572
|
'/thermostats/list': {
|
|
1543
1573
|
route: '/thermostats/list';
|
|
1544
1574
|
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'
|
|
@@ -2063,6 +2077,22 @@ export interface Routes {
|
|
|
2063
2077
|
formData: {}
|
|
2064
2078
|
jsonResponse: {}
|
|
2065
2079
|
}
|
|
2080
|
+
'/thermostats/heat_cool': {
|
|
2081
|
+
route: '/thermostats/heat_cool'
|
|
2082
|
+
method: 'POST'
|
|
2083
|
+
queryParams: {}
|
|
2084
|
+
jsonBody: {
|
|
2085
|
+
device_id: string
|
|
2086
|
+
heating_set_point_celsius?: number | undefined
|
|
2087
|
+
heating_set_point_fahrenheit?: number | undefined
|
|
2088
|
+
cooling_set_point_celsius?: number | undefined
|
|
2089
|
+
cooling_set_point_fahrenheit?: number | undefined
|
|
2090
|
+
sync?: boolean
|
|
2091
|
+
}
|
|
2092
|
+
commonParams: {}
|
|
2093
|
+
formData: {}
|
|
2094
|
+
jsonResponse: {}
|
|
2095
|
+
}
|
|
2066
2096
|
'/thermostats/list': {
|
|
2067
2097
|
route: '/thermostats/list'
|
|
2068
2098
|
method: 'GET' | 'POST'
|