@seamapi/types 0.15.0 → 0.17.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.
@@ -569,6 +569,8 @@ export interface Routes {
569
569
  user_identifier_key: string | null;
570
570
  created_at: string;
571
571
  device_count: number;
572
+ connected_account_ids: string[];
573
+ connect_webview_ids: string[];
572
574
  workspace_id: string;
573
575
  }>;
574
576
  };
@@ -1553,6 +1555,22 @@ export interface Routes {
1553
1555
  formData: {};
1554
1556
  jsonResponse: {};
1555
1557
  };
1558
+ '/thermostats/heat_cool': {
1559
+ route: '/thermostats/heat_cool';
1560
+ method: 'POST';
1561
+ queryParams: {};
1562
+ jsonBody: {
1563
+ device_id: string;
1564
+ heating_set_point_celsius?: number | undefined;
1565
+ heating_set_point_fahrenheit?: number | undefined;
1566
+ cooling_set_point_celsius?: number | undefined;
1567
+ cooling_set_point_fahrenheit?: number | undefined;
1568
+ sync?: boolean;
1569
+ };
1570
+ commonParams: {};
1571
+ formData: {};
1572
+ jsonResponse: {};
1573
+ };
1556
1574
  '/thermostats/list': {
1557
1575
  route: '/thermostats/list';
1558
1576
  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.17.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -590,6 +590,8 @@ export interface Routes {
590
590
  user_identifier_key: string | null
591
591
  created_at: string
592
592
  device_count: number
593
+ connected_account_ids: string[]
594
+ connect_webview_ids: string[]
593
595
  workspace_id: string
594
596
  }>
595
597
  }
@@ -2077,6 +2079,22 @@ export interface Routes {
2077
2079
  formData: {}
2078
2080
  jsonResponse: {}
2079
2081
  }
2082
+ '/thermostats/heat_cool': {
2083
+ route: '/thermostats/heat_cool'
2084
+ method: 'POST'
2085
+ queryParams: {}
2086
+ jsonBody: {
2087
+ device_id: string
2088
+ heating_set_point_celsius?: number | undefined
2089
+ heating_set_point_fahrenheit?: number | undefined
2090
+ cooling_set_point_celsius?: number | undefined
2091
+ cooling_set_point_fahrenheit?: number | undefined
2092
+ sync?: boolean
2093
+ }
2094
+ commonParams: {}
2095
+ formData: {}
2096
+ jsonResponse: {}
2097
+ }
2080
2098
  '/thermostats/list': {
2081
2099
  route: '/thermostats/list'
2082
2100
  method: 'GET' | 'POST'