Skip to content

Commit 965a904

Browse files
authored
1 parent e1eb6e8 commit 965a904

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/lib/seam/connect/openapi.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3063,9 +3063,10 @@ export default {
30633063
properties: {
30643064
device_id: { type: 'string', format: 'uuid' },
30653065
fan_mode: { type: 'string', enum: ['auto', 'on'] },
3066+
fan_mode_setting: { type: 'string', enum: ['auto', 'on'] },
30663067
sync: { default: false, type: 'boolean' },
30673068
},
3068-
required: ['device_id', 'fan_mode'],
3069+
required: ['device_id'],
30693070
},
30703071
},
30713072
},

src/lib/seam/connect/route-types.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4776,7 +4776,8 @@ export interface Routes {
47764776
queryParams: {}
47774777
jsonBody: {
47784778
device_id: string
4779-
fan_mode: 'auto' | 'on'
4779+
fan_mode?: ('auto' | 'on') | undefined
4780+
fan_mode_setting?: ('auto' | 'on') | undefined
47804781
sync?: boolean
47814782
}
47824783
commonParams: {}

0 commit comments

Comments
 (0)