@seamapi/types 0.15.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.
@@ -1553,6 +1553,22 @@ export interface Routes {
1553
1553
  formData: {};
1554
1554
  jsonResponse: {};
1555
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
+ };
1556
1572
  '/thermostats/list': {
1557
1573
  route: '/thermostats/list';
1558
1574
  method: 'GET' | 'POST';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "0.15.0",
3
+ "version": "0.16.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -2077,6 +2077,22 @@ export interface Routes {
2077
2077
  formData: {}
2078
2078
  jsonResponse: {}
2079
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
+ }
2080
2096
  '/thermostats/list': {
2081
2097
  route: '/thermostats/list'
2082
2098
  method: 'GET' | 'POST'