@seamapi/types 0.10.0 → 0.11.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.
|
@@ -1582,6 +1582,19 @@ export interface Routes {
|
|
|
1582
1582
|
}>;
|
|
1583
1583
|
};
|
|
1584
1584
|
};
|
|
1585
|
+
'/thermostats/set_fan_mode': {
|
|
1586
|
+
route: '/thermostats/set_fan_mode';
|
|
1587
|
+
method: 'POST';
|
|
1588
|
+
queryParams: {};
|
|
1589
|
+
jsonBody: {
|
|
1590
|
+
device_id: string;
|
|
1591
|
+
fan_mode: 'auto' | 'on';
|
|
1592
|
+
sync?: boolean;
|
|
1593
|
+
};
|
|
1594
|
+
commonParams: {};
|
|
1595
|
+
formData: {};
|
|
1596
|
+
jsonResponse: {};
|
|
1597
|
+
};
|
|
1585
1598
|
'/thermostats/update': {
|
|
1586
1599
|
route: '/thermostats/update';
|
|
1587
1600
|
method: 'POST';
|
package/package.json
CHANGED
|
@@ -2213,6 +2213,19 @@ export interface Routes {
|
|
|
2213
2213
|
}>
|
|
2214
2214
|
}
|
|
2215
2215
|
}
|
|
2216
|
+
'/thermostats/set_fan_mode': {
|
|
2217
|
+
route: '/thermostats/set_fan_mode'
|
|
2218
|
+
method: 'POST'
|
|
2219
|
+
queryParams: {}
|
|
2220
|
+
jsonBody: {
|
|
2221
|
+
device_id: string
|
|
2222
|
+
fan_mode: 'auto' | 'on'
|
|
2223
|
+
sync?: boolean
|
|
2224
|
+
}
|
|
2225
|
+
commonParams: {}
|
|
2226
|
+
formData: {}
|
|
2227
|
+
jsonResponse: {}
|
|
2228
|
+
}
|
|
2216
2229
|
'/thermostats/update': {
|
|
2217
2230
|
route: '/thermostats/update'
|
|
2218
2231
|
method: 'POST'
|