@seamapi/types 0.12.1 → 0.14.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.
|
@@ -1584,6 +1584,18 @@ export interface Routes {
|
|
|
1584
1584
|
}>;
|
|
1585
1585
|
};
|
|
1586
1586
|
};
|
|
1587
|
+
'/thermostats/off': {
|
|
1588
|
+
route: '/thermostats/off';
|
|
1589
|
+
method: 'POST';
|
|
1590
|
+
queryParams: {};
|
|
1591
|
+
jsonBody: {
|
|
1592
|
+
device_id: string;
|
|
1593
|
+
sync?: boolean;
|
|
1594
|
+
};
|
|
1595
|
+
commonParams: {};
|
|
1596
|
+
formData: {};
|
|
1597
|
+
jsonResponse: {};
|
|
1598
|
+
};
|
|
1587
1599
|
'/thermostats/set_fan_mode': {
|
|
1588
1600
|
route: '/thermostats/set_fan_mode';
|
|
1589
1601
|
method: 'POST';
|
package/package.json
CHANGED
|
@@ -2222,6 +2222,18 @@ export interface Routes {
|
|
|
2222
2222
|
}>
|
|
2223
2223
|
}
|
|
2224
2224
|
}
|
|
2225
|
+
'/thermostats/off': {
|
|
2226
|
+
route: '/thermostats/off'
|
|
2227
|
+
method: 'POST'
|
|
2228
|
+
queryParams: {}
|
|
2229
|
+
jsonBody: {
|
|
2230
|
+
device_id: string
|
|
2231
|
+
sync?: boolean
|
|
2232
|
+
}
|
|
2233
|
+
commonParams: {}
|
|
2234
|
+
formData: {}
|
|
2235
|
+
jsonResponse: {}
|
|
2236
|
+
}
|
|
2225
2237
|
'/thermostats/set_fan_mode': {
|
|
2226
2238
|
route: '/thermostats/set_fan_mode'
|
|
2227
2239
|
method: 'POST'
|