Skip to content

Commit

Permalink
feat: add /thermostats/set_fan_mode (#51)
Browse files Browse the repository at this point in the history
seambot authored Jul 26, 2023

Verified

This commit was signed with the committer’s verified signature.
sagikazarmark Márk Sági-Kazár
1 parent 9660ad0 commit ca49769
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
@@ -2213,6 +2213,19 @@ export interface Routes {
}>
}
}
'/thermostats/set_fan_mode': {
route: '/thermostats/set_fan_mode'
method: 'POST'
queryParams: {}
jsonBody: {
device_id: string
fan_mode: 'auto' | 'on'
sync?: boolean
}
commonParams: {}
formData: {}
jsonResponse: {}
}
'/thermostats/update': {
route: '/thermostats/update'
method: 'POST'

0 comments on commit ca49769

Please sign in to comment.