@seamapi/types 0.30.1 → 1.0.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.
- package/lib/seam/connect/route-types.d.ts +146 -74
- package/lib/seam/connect/unstable/models/capability-properties/index.d.ts +54 -54
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.d.ts +116 -116
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.js +2 -2
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/unstable/models/device-metadata.d.ts +33 -0
- package/lib/seam/connect/unstable/models/device-metadata.js +7 -0
- package/lib/seam/connect/unstable/models/device-metadata.js.map +1 -1
- package/lib/seam/connect/unstable/models/device-type.d.ts +1 -0
- package/lib/seam/connect/unstable/models/device-type.js +1 -0
- package/lib/seam/connect/unstable/models/device-type.js.map +1 -1
- package/lib/seam/connect/unstable/models/managed-device.d.ts +166 -105
- package/lib/seam/connect/unstable/models/unmanaged-device.d.ts +3 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/route-types.ts +186 -55
- package/src/lib/seam/connect/unstable/models/capability-properties/thermostat.ts +5 -5
- package/src/lib/seam/connect/unstable/models/device-metadata.ts +8 -0
- package/src/lib/seam/connect/unstable/models/device-type.ts +1 -0
|
@@ -14,6 +14,7 @@ export interface Routes {
|
|
|
14
14
|
common_code_key?: string | undefined
|
|
15
15
|
prefer_native_scheduling?: boolean | undefined
|
|
16
16
|
use_backup_access_code_pool?: boolean | undefined
|
|
17
|
+
allow_external_modification?: boolean | undefined
|
|
17
18
|
}
|
|
18
19
|
commonParams: {}
|
|
19
20
|
formData: {}
|
|
@@ -79,6 +80,7 @@ export interface Routes {
|
|
|
79
80
|
attempt_for_offline_device?: boolean
|
|
80
81
|
prefer_native_scheduling?: boolean | undefined
|
|
81
82
|
use_backup_access_code_pool?: boolean | undefined
|
|
83
|
+
allow_external_modification?: boolean | undefined
|
|
82
84
|
}
|
|
83
85
|
commonParams: {}
|
|
84
86
|
formData: {}
|
|
@@ -425,6 +427,7 @@ export interface Routes {
|
|
|
425
427
|
attempt_for_offline_device?: boolean
|
|
426
428
|
prefer_native_scheduling?: boolean | undefined
|
|
427
429
|
use_backup_access_code_pool?: boolean | undefined
|
|
430
|
+
allow_external_modification?: boolean | undefined
|
|
428
431
|
access_code_id: string
|
|
429
432
|
device_id?: string | undefined
|
|
430
433
|
type?: ('ongoing' | 'time_bound') | undefined
|
|
@@ -904,6 +907,7 @@ export interface Routes {
|
|
|
904
907
|
| 'igloohome_lock'
|
|
905
908
|
| 'hubitat_lock'
|
|
906
909
|
| 'four_suites_door'
|
|
910
|
+
| 'dormakaba_oracode_door'
|
|
907
911
|
)
|
|
908
912
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
909
913
|
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
@@ -1114,6 +1118,15 @@ export interface Routes {
|
|
|
1114
1118
|
device_label: string
|
|
1115
1119
|
}
|
|
1116
1120
|
| undefined
|
|
1121
|
+
dormakaba_oracode_metadata?:
|
|
1122
|
+
| {
|
|
1123
|
+
door_id: number
|
|
1124
|
+
door_name: string
|
|
1125
|
+
device_id?: number | undefined
|
|
1126
|
+
site_id: number
|
|
1127
|
+
site_name: string
|
|
1128
|
+
}
|
|
1129
|
+
| undefined
|
|
1117
1130
|
}) &
|
|
1118
1131
|
({
|
|
1119
1132
|
code_constraints?:
|
|
@@ -1159,7 +1172,7 @@ export interface Routes {
|
|
|
1159
1172
|
can_enable_automatic_heating?: boolean | undefined
|
|
1160
1173
|
can_enable_automatic_cooling?: boolean | undefined
|
|
1161
1174
|
available_hvac_mode_settings?:
|
|
1162
|
-
| Array<'off' | 'heat' | 'cool' | '
|
|
1175
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
1163
1176
|
| undefined
|
|
1164
1177
|
is_heating_available?: true | undefined
|
|
1165
1178
|
is_cooling_available?: true | undefined
|
|
@@ -1171,7 +1184,7 @@ export interface Routes {
|
|
|
1171
1184
|
| {
|
|
1172
1185
|
automatic_heating_enabled: boolean
|
|
1173
1186
|
automatic_cooling_enabled: boolean
|
|
1174
|
-
hvac_mode_setting: 'off' | 'heat' | 'cool' | '
|
|
1187
|
+
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool'
|
|
1175
1188
|
cooling_set_point_celsius?: number | undefined
|
|
1176
1189
|
heating_set_point_celsius?: number | undefined
|
|
1177
1190
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -1188,7 +1201,7 @@ export interface Routes {
|
|
|
1188
1201
|
| 'off'
|
|
1189
1202
|
| 'heat'
|
|
1190
1203
|
| 'cool'
|
|
1191
|
-
| '
|
|
1204
|
+
| 'heat_cool'
|
|
1192
1205
|
cooling_set_point_celsius?: number | undefined
|
|
1193
1206
|
heating_set_point_celsius?: number | undefined
|
|
1194
1207
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -1212,7 +1225,7 @@ export interface Routes {
|
|
|
1212
1225
|
automatic_heating_enabled?: boolean | undefined
|
|
1213
1226
|
automatic_cooling_enabled?: boolean | undefined
|
|
1214
1227
|
hvac_mode_setting?:
|
|
1215
|
-
| ('off' | 'heat' | 'cool' | '
|
|
1228
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
1216
1229
|
| undefined
|
|
1217
1230
|
cooling_set_point_celsius?:
|
|
1218
1231
|
| (number | undefined)
|
|
@@ -1249,7 +1262,7 @@ export interface Routes {
|
|
|
1249
1262
|
can_enable_automatic_heating?: boolean | undefined
|
|
1250
1263
|
can_enable_automatic_cooling?: boolean | undefined
|
|
1251
1264
|
available_hvac_mode_settings?:
|
|
1252
|
-
| Array<'off' | 'heat' | 'cool' | '
|
|
1265
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
1253
1266
|
| undefined
|
|
1254
1267
|
is_heating_available?: true | undefined
|
|
1255
1268
|
is_cooling_available?: false | undefined
|
|
@@ -1261,7 +1274,7 @@ export interface Routes {
|
|
|
1261
1274
|
| {
|
|
1262
1275
|
automatic_heating_enabled: boolean
|
|
1263
1276
|
automatic_cooling_enabled: boolean
|
|
1264
|
-
hvac_mode_setting: 'off' | 'heat' | 'cool' | '
|
|
1277
|
+
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool'
|
|
1265
1278
|
cooling_set_point_celsius?: number | undefined
|
|
1266
1279
|
heating_set_point_celsius?: number | undefined
|
|
1267
1280
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -1278,7 +1291,7 @@ export interface Routes {
|
|
|
1278
1291
|
| 'off'
|
|
1279
1292
|
| 'heat'
|
|
1280
1293
|
| 'cool'
|
|
1281
|
-
| '
|
|
1294
|
+
| 'heat_cool'
|
|
1282
1295
|
cooling_set_point_celsius?: number | undefined
|
|
1283
1296
|
heating_set_point_celsius?: number | undefined
|
|
1284
1297
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -1302,7 +1315,7 @@ export interface Routes {
|
|
|
1302
1315
|
automatic_heating_enabled?: boolean | undefined
|
|
1303
1316
|
automatic_cooling_enabled?: boolean | undefined
|
|
1304
1317
|
hvac_mode_setting?:
|
|
1305
|
-
| ('off' | 'heat' | 'cool' | '
|
|
1318
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
1306
1319
|
| undefined
|
|
1307
1320
|
cooling_set_point_celsius?:
|
|
1308
1321
|
| (number | undefined)
|
|
@@ -1333,7 +1346,7 @@ export interface Routes {
|
|
|
1333
1346
|
can_enable_automatic_heating?: boolean | undefined
|
|
1334
1347
|
can_enable_automatic_cooling?: boolean | undefined
|
|
1335
1348
|
available_hvac_mode_settings?:
|
|
1336
|
-
| Array<'off' | 'heat' | 'cool' | '
|
|
1349
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
1337
1350
|
| undefined
|
|
1338
1351
|
is_heating_available?: false | undefined
|
|
1339
1352
|
is_cooling_available?: true | undefined
|
|
@@ -1345,7 +1358,7 @@ export interface Routes {
|
|
|
1345
1358
|
| {
|
|
1346
1359
|
automatic_heating_enabled: boolean
|
|
1347
1360
|
automatic_cooling_enabled: boolean
|
|
1348
|
-
hvac_mode_setting: 'off' | 'heat' | 'cool' | '
|
|
1361
|
+
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool'
|
|
1349
1362
|
cooling_set_point_celsius?: number | undefined
|
|
1350
1363
|
heating_set_point_celsius?: number | undefined
|
|
1351
1364
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -1362,7 +1375,7 @@ export interface Routes {
|
|
|
1362
1375
|
| 'off'
|
|
1363
1376
|
| 'heat'
|
|
1364
1377
|
| 'cool'
|
|
1365
|
-
| '
|
|
1378
|
+
| 'heat_cool'
|
|
1366
1379
|
cooling_set_point_celsius?: number | undefined
|
|
1367
1380
|
heating_set_point_celsius?: number | undefined
|
|
1368
1381
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -1386,7 +1399,7 @@ export interface Routes {
|
|
|
1386
1399
|
automatic_heating_enabled?: boolean | undefined
|
|
1387
1400
|
automatic_cooling_enabled?: boolean | undefined
|
|
1388
1401
|
hvac_mode_setting?:
|
|
1389
|
-
| ('off' | 'heat' | 'cool' | '
|
|
1402
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
1390
1403
|
| undefined
|
|
1391
1404
|
cooling_set_point_celsius?:
|
|
1392
1405
|
| (number | undefined)
|
|
@@ -1465,6 +1478,7 @@ export interface Routes {
|
|
|
1465
1478
|
| 'igloohome_lock'
|
|
1466
1479
|
| 'hubitat_lock'
|
|
1467
1480
|
| 'four_suites_door'
|
|
1481
|
+
| 'dormakaba_oracode_door'
|
|
1468
1482
|
)
|
|
1469
1483
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
1470
1484
|
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
@@ -1496,6 +1510,7 @@ export interface Routes {
|
|
|
1496
1510
|
| 'igloohome_lock'
|
|
1497
1511
|
| 'hubitat_lock'
|
|
1498
1512
|
| 'four_suites_door'
|
|
1513
|
+
| 'dormakaba_oracode_door'
|
|
1499
1514
|
)
|
|
1500
1515
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
1501
1516
|
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
@@ -1533,6 +1548,7 @@ export interface Routes {
|
|
|
1533
1548
|
| 'hubitat'
|
|
1534
1549
|
| 'controlbyweb'
|
|
1535
1550
|
| 'smartthings'
|
|
1551
|
+
| 'dormakaba_oracode'
|
|
1536
1552
|
)
|
|
1537
1553
|
| undefined
|
|
1538
1554
|
device_ids?: string[] | undefined
|
|
@@ -1568,6 +1584,7 @@ export interface Routes {
|
|
|
1568
1584
|
| 'igloohome_lock'
|
|
1569
1585
|
| 'hubitat_lock'
|
|
1570
1586
|
| 'four_suites_door'
|
|
1587
|
+
| 'dormakaba_oracode_door'
|
|
1571
1588
|
)
|
|
1572
1589
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
1573
1590
|
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
@@ -1778,6 +1795,15 @@ export interface Routes {
|
|
|
1778
1795
|
device_label: string
|
|
1779
1796
|
}
|
|
1780
1797
|
| undefined
|
|
1798
|
+
dormakaba_oracode_metadata?:
|
|
1799
|
+
| {
|
|
1800
|
+
door_id: number
|
|
1801
|
+
door_name: string
|
|
1802
|
+
device_id?: number | undefined
|
|
1803
|
+
site_id: number
|
|
1804
|
+
site_name: string
|
|
1805
|
+
}
|
|
1806
|
+
| undefined
|
|
1781
1807
|
}) &
|
|
1782
1808
|
({
|
|
1783
1809
|
code_constraints?:
|
|
@@ -1823,7 +1849,7 @@ export interface Routes {
|
|
|
1823
1849
|
can_enable_automatic_heating?: boolean | undefined
|
|
1824
1850
|
can_enable_automatic_cooling?: boolean | undefined
|
|
1825
1851
|
available_hvac_mode_settings?:
|
|
1826
|
-
| Array<'off' | 'heat' | 'cool' | '
|
|
1852
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
1827
1853
|
| undefined
|
|
1828
1854
|
is_heating_available?: true | undefined
|
|
1829
1855
|
is_cooling_available?: true | undefined
|
|
@@ -1835,7 +1861,7 @@ export interface Routes {
|
|
|
1835
1861
|
| {
|
|
1836
1862
|
automatic_heating_enabled: boolean
|
|
1837
1863
|
automatic_cooling_enabled: boolean
|
|
1838
|
-
hvac_mode_setting: 'off' | 'heat' | 'cool' | '
|
|
1864
|
+
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool'
|
|
1839
1865
|
cooling_set_point_celsius?: number | undefined
|
|
1840
1866
|
heating_set_point_celsius?: number | undefined
|
|
1841
1867
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -1852,7 +1878,7 @@ export interface Routes {
|
|
|
1852
1878
|
| 'off'
|
|
1853
1879
|
| 'heat'
|
|
1854
1880
|
| 'cool'
|
|
1855
|
-
| '
|
|
1881
|
+
| 'heat_cool'
|
|
1856
1882
|
cooling_set_point_celsius?: number | undefined
|
|
1857
1883
|
heating_set_point_celsius?: number | undefined
|
|
1858
1884
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -1876,7 +1902,7 @@ export interface Routes {
|
|
|
1876
1902
|
automatic_heating_enabled?: boolean | undefined
|
|
1877
1903
|
automatic_cooling_enabled?: boolean | undefined
|
|
1878
1904
|
hvac_mode_setting?:
|
|
1879
|
-
| ('off' | 'heat' | 'cool' | '
|
|
1905
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
1880
1906
|
| undefined
|
|
1881
1907
|
cooling_set_point_celsius?:
|
|
1882
1908
|
| (number | undefined)
|
|
@@ -1913,7 +1939,7 @@ export interface Routes {
|
|
|
1913
1939
|
can_enable_automatic_heating?: boolean | undefined
|
|
1914
1940
|
can_enable_automatic_cooling?: boolean | undefined
|
|
1915
1941
|
available_hvac_mode_settings?:
|
|
1916
|
-
| Array<'off' | 'heat' | 'cool' | '
|
|
1942
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
1917
1943
|
| undefined
|
|
1918
1944
|
is_heating_available?: true | undefined
|
|
1919
1945
|
is_cooling_available?: false | undefined
|
|
@@ -1925,7 +1951,7 @@ export interface Routes {
|
|
|
1925
1951
|
| {
|
|
1926
1952
|
automatic_heating_enabled: boolean
|
|
1927
1953
|
automatic_cooling_enabled: boolean
|
|
1928
|
-
hvac_mode_setting: 'off' | 'heat' | 'cool' | '
|
|
1954
|
+
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool'
|
|
1929
1955
|
cooling_set_point_celsius?: number | undefined
|
|
1930
1956
|
heating_set_point_celsius?: number | undefined
|
|
1931
1957
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -1942,7 +1968,7 @@ export interface Routes {
|
|
|
1942
1968
|
| 'off'
|
|
1943
1969
|
| 'heat'
|
|
1944
1970
|
| 'cool'
|
|
1945
|
-
| '
|
|
1971
|
+
| 'heat_cool'
|
|
1946
1972
|
cooling_set_point_celsius?: number | undefined
|
|
1947
1973
|
heating_set_point_celsius?: number | undefined
|
|
1948
1974
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -1966,7 +1992,7 @@ export interface Routes {
|
|
|
1966
1992
|
automatic_heating_enabled?: boolean | undefined
|
|
1967
1993
|
automatic_cooling_enabled?: boolean | undefined
|
|
1968
1994
|
hvac_mode_setting?:
|
|
1969
|
-
| ('off' | 'heat' | 'cool' | '
|
|
1995
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
1970
1996
|
| undefined
|
|
1971
1997
|
cooling_set_point_celsius?:
|
|
1972
1998
|
| (number | undefined)
|
|
@@ -1997,7 +2023,7 @@ export interface Routes {
|
|
|
1997
2023
|
can_enable_automatic_heating?: boolean | undefined
|
|
1998
2024
|
can_enable_automatic_cooling?: boolean | undefined
|
|
1999
2025
|
available_hvac_mode_settings?:
|
|
2000
|
-
| Array<'off' | 'heat' | 'cool' | '
|
|
2026
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
2001
2027
|
| undefined
|
|
2002
2028
|
is_heating_available?: false | undefined
|
|
2003
2029
|
is_cooling_available?: true | undefined
|
|
@@ -2009,7 +2035,7 @@ export interface Routes {
|
|
|
2009
2035
|
| {
|
|
2010
2036
|
automatic_heating_enabled: boolean
|
|
2011
2037
|
automatic_cooling_enabled: boolean
|
|
2012
|
-
hvac_mode_setting: 'off' | 'heat' | 'cool' | '
|
|
2038
|
+
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool'
|
|
2013
2039
|
cooling_set_point_celsius?: number | undefined
|
|
2014
2040
|
heating_set_point_celsius?: number | undefined
|
|
2015
2041
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -2026,7 +2052,7 @@ export interface Routes {
|
|
|
2026
2052
|
| 'off'
|
|
2027
2053
|
| 'heat'
|
|
2028
2054
|
| 'cool'
|
|
2029
|
-
| '
|
|
2055
|
+
| 'heat_cool'
|
|
2030
2056
|
cooling_set_point_celsius?: number | undefined
|
|
2031
2057
|
heating_set_point_celsius?: number | undefined
|
|
2032
2058
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -2050,7 +2076,7 @@ export interface Routes {
|
|
|
2050
2076
|
automatic_heating_enabled?: boolean | undefined
|
|
2051
2077
|
automatic_cooling_enabled?: boolean | undefined
|
|
2052
2078
|
hvac_mode_setting?:
|
|
2053
|
-
| ('off' | 'heat' | 'cool' | '
|
|
2079
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
2054
2080
|
| undefined
|
|
2055
2081
|
cooling_set_point_celsius?:
|
|
2056
2082
|
| (number | undefined)
|
|
@@ -2112,6 +2138,77 @@ export interface Routes {
|
|
|
2112
2138
|
}>
|
|
2113
2139
|
}
|
|
2114
2140
|
}
|
|
2141
|
+
'/devices/unmanaged/get': {
|
|
2142
|
+
route: '/devices/unmanaged/get'
|
|
2143
|
+
method: 'GET' | 'POST'
|
|
2144
|
+
queryParams: {}
|
|
2145
|
+
jsonBody: {}
|
|
2146
|
+
commonParams: {
|
|
2147
|
+
device_id?: string | undefined
|
|
2148
|
+
name?: string | undefined
|
|
2149
|
+
}
|
|
2150
|
+
formData: {}
|
|
2151
|
+
jsonResponse: {
|
|
2152
|
+
device: {
|
|
2153
|
+
device_id: string
|
|
2154
|
+
device_type:
|
|
2155
|
+
| (
|
|
2156
|
+
| 'akuvox_lock'
|
|
2157
|
+
| 'august_lock'
|
|
2158
|
+
| 'brivo_access_point'
|
|
2159
|
+
| 'butterflymx_panel'
|
|
2160
|
+
| 'avigilon_alta_entry'
|
|
2161
|
+
| 'doorking_lock'
|
|
2162
|
+
| 'genie_door'
|
|
2163
|
+
| 'igloo_lock'
|
|
2164
|
+
| 'linear_lock'
|
|
2165
|
+
| 'lockly_lock'
|
|
2166
|
+
| 'kwikset_lock'
|
|
2167
|
+
| 'nuki_lock'
|
|
2168
|
+
| 'salto_lock'
|
|
2169
|
+
| 'schlage_lock'
|
|
2170
|
+
| 'seam_relay'
|
|
2171
|
+
| 'smartthings_lock'
|
|
2172
|
+
| 'yale_lock'
|
|
2173
|
+
| 'two_n_intercom'
|
|
2174
|
+
| 'controlbyweb_device'
|
|
2175
|
+
| 'ttlock_lock'
|
|
2176
|
+
| 'igloohome_lock'
|
|
2177
|
+
| 'hubitat_lock'
|
|
2178
|
+
| 'four_suites_door'
|
|
2179
|
+
| 'dormakaba_oracode_door'
|
|
2180
|
+
)
|
|
2181
|
+
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
2182
|
+
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
2183
|
+
connected_account_id: string
|
|
2184
|
+
capabilities_supported: Array<
|
|
2185
|
+
'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
|
|
2186
|
+
>
|
|
2187
|
+
workspace_id: string
|
|
2188
|
+
errors: Array<{
|
|
2189
|
+
error_code: string
|
|
2190
|
+
message: string
|
|
2191
|
+
}>
|
|
2192
|
+
warnings: Array<{
|
|
2193
|
+
warning_code: string
|
|
2194
|
+
message: string
|
|
2195
|
+
}>
|
|
2196
|
+
created_at: string
|
|
2197
|
+
is_managed: false
|
|
2198
|
+
properties: {
|
|
2199
|
+
name: string
|
|
2200
|
+
online: boolean
|
|
2201
|
+
manufacturer?: string | undefined
|
|
2202
|
+
image_url?: string | undefined
|
|
2203
|
+
image_alt_text?: string | undefined
|
|
2204
|
+
model: {
|
|
2205
|
+
display_name: string
|
|
2206
|
+
manufacturer_display_name: string
|
|
2207
|
+
}
|
|
2208
|
+
}
|
|
2209
|
+
}
|
|
2210
|
+
}
|
|
2211
|
+
}
|
|
2115
2212
|
'/devices/unmanaged/list': {
|
|
2116
2213
|
route: '/devices/unmanaged/list'
|
|
2117
2214
|
method: 'GET' | 'POST'
|
|
@@ -2147,6 +2244,7 @@ export interface Routes {
|
|
|
2147
2244
|
| 'igloohome_lock'
|
|
2148
2245
|
| 'hubitat_lock'
|
|
2149
2246
|
| 'four_suites_door'
|
|
2247
|
+
| 'dormakaba_oracode_door'
|
|
2150
2248
|
)
|
|
2151
2249
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
2152
2250
|
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
@@ -2178,6 +2276,7 @@ export interface Routes {
|
|
|
2178
2276
|
| 'igloohome_lock'
|
|
2179
2277
|
| 'hubitat_lock'
|
|
2180
2278
|
| 'four_suites_door'
|
|
2279
|
+
| 'dormakaba_oracode_door'
|
|
2181
2280
|
)
|
|
2182
2281
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
2183
2282
|
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
@@ -2215,6 +2314,7 @@ export interface Routes {
|
|
|
2215
2314
|
| 'hubitat'
|
|
2216
2315
|
| 'controlbyweb'
|
|
2217
2316
|
| 'smartthings'
|
|
2317
|
+
| 'dormakaba_oracode'
|
|
2218
2318
|
)
|
|
2219
2319
|
| undefined
|
|
2220
2320
|
device_ids?: string[] | undefined
|
|
@@ -2250,6 +2350,7 @@ export interface Routes {
|
|
|
2250
2350
|
| 'igloohome_lock'
|
|
2251
2351
|
| 'hubitat_lock'
|
|
2252
2352
|
| 'four_suites_door'
|
|
2353
|
+
| 'dormakaba_oracode_door'
|
|
2253
2354
|
)
|
|
2254
2355
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
2255
2356
|
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
@@ -2372,6 +2473,7 @@ export interface Routes {
|
|
|
2372
2473
|
| 'access_code.delay_in_setting_on_device'
|
|
2373
2474
|
| 'access_code.failed_to_remove_from_device'
|
|
2374
2475
|
| 'access_code.delay_in_removing_from_device'
|
|
2476
|
+
| 'access_code.modified_external_to_seam'
|
|
2375
2477
|
| 'access_code.unmanaged.converted_to_managed'
|
|
2376
2478
|
| 'access_code.unmanaged.failed_to_convert_to_managed'
|
|
2377
2479
|
| 'access_code.unmanaged.created'
|
|
@@ -2380,6 +2482,7 @@ export interface Routes {
|
|
|
2380
2482
|
| 'lock.unlocked'
|
|
2381
2483
|
| 'connected_account.connected'
|
|
2382
2484
|
| 'connected_account.created'
|
|
2485
|
+
| 'connected_account.deleted'
|
|
2383
2486
|
| 'connected_account.disconnected'
|
|
2384
2487
|
| 'connected_account.completed_first_sync'
|
|
2385
2488
|
| 'noise_sensor.noise_threshold_triggered'
|
|
@@ -2408,6 +2511,7 @@ export interface Routes {
|
|
|
2408
2511
|
| 'access_code.delay_in_setting_on_device'
|
|
2409
2512
|
| 'access_code.failed_to_remove_from_device'
|
|
2410
2513
|
| 'access_code.delay_in_removing_from_device'
|
|
2514
|
+
| 'access_code.modified_external_to_seam'
|
|
2411
2515
|
| 'access_code.unmanaged.converted_to_managed'
|
|
2412
2516
|
| 'access_code.unmanaged.failed_to_convert_to_managed'
|
|
2413
2517
|
| 'access_code.unmanaged.created'
|
|
@@ -2416,6 +2520,7 @@ export interface Routes {
|
|
|
2416
2520
|
| 'lock.unlocked'
|
|
2417
2521
|
| 'connected_account.connected'
|
|
2418
2522
|
| 'connected_account.created'
|
|
2523
|
+
| 'connected_account.deleted'
|
|
2419
2524
|
| 'connected_account.disconnected'
|
|
2420
2525
|
| 'connected_account.completed_first_sync'
|
|
2421
2526
|
| 'noise_sensor.noise_threshold_triggered'
|
|
@@ -2563,6 +2668,7 @@ export interface Routes {
|
|
|
2563
2668
|
| 'igloohome_lock'
|
|
2564
2669
|
| 'hubitat_lock'
|
|
2565
2670
|
| 'four_suites_door'
|
|
2671
|
+
| 'dormakaba_oracode_door'
|
|
2566
2672
|
)
|
|
2567
2673
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
2568
2674
|
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
@@ -2594,6 +2700,7 @@ export interface Routes {
|
|
|
2594
2700
|
| 'igloohome_lock'
|
|
2595
2701
|
| 'hubitat_lock'
|
|
2596
2702
|
| 'four_suites_door'
|
|
2703
|
+
| 'dormakaba_oracode_door'
|
|
2597
2704
|
)
|
|
2598
2705
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
2599
2706
|
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
@@ -2631,6 +2738,7 @@ export interface Routes {
|
|
|
2631
2738
|
| 'hubitat'
|
|
2632
2739
|
| 'controlbyweb'
|
|
2633
2740
|
| 'smartthings'
|
|
2741
|
+
| 'dormakaba_oracode'
|
|
2634
2742
|
)
|
|
2635
2743
|
| undefined
|
|
2636
2744
|
device_ids?: string[] | undefined
|
|
@@ -2910,7 +3018,7 @@ export interface Routes {
|
|
|
2910
3018
|
schedule_ends_at: string
|
|
2911
3019
|
automatic_heating_enabled?: boolean | undefined
|
|
2912
3020
|
automatic_cooling_enabled?: boolean | undefined
|
|
2913
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | '
|
|
3021
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined
|
|
2914
3022
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
2915
3023
|
heating_set_point_celsius?: (number | undefined) | undefined
|
|
2916
3024
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined
|
|
@@ -2930,7 +3038,7 @@ export interface Routes {
|
|
|
2930
3038
|
created_at: string
|
|
2931
3039
|
automatic_heating_enabled?: boolean | undefined
|
|
2932
3040
|
automatic_cooling_enabled?: boolean | undefined
|
|
2933
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | '
|
|
3041
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined
|
|
2934
3042
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
2935
3043
|
heating_set_point_celsius?: (number | undefined) | undefined
|
|
2936
3044
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined
|
|
@@ -2971,7 +3079,7 @@ export interface Routes {
|
|
|
2971
3079
|
created_at: string
|
|
2972
3080
|
automatic_heating_enabled?: boolean | undefined
|
|
2973
3081
|
automatic_cooling_enabled?: boolean | undefined
|
|
2974
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | '
|
|
3082
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined
|
|
2975
3083
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
2976
3084
|
heating_set_point_celsius?: (number | undefined) | undefined
|
|
2977
3085
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined
|
|
@@ -3000,7 +3108,7 @@ export interface Routes {
|
|
|
3000
3108
|
created_at: string
|
|
3001
3109
|
automatic_heating_enabled?: boolean | undefined
|
|
3002
3110
|
automatic_cooling_enabled?: boolean | undefined
|
|
3003
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | '
|
|
3111
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined
|
|
3004
3112
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
3005
3113
|
heating_set_point_celsius?: (number | undefined) | undefined
|
|
3006
3114
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined
|
|
@@ -3021,7 +3129,7 @@ export interface Routes {
|
|
|
3021
3129
|
schedule_ends_at?: string | undefined
|
|
3022
3130
|
automatic_heating_enabled?: boolean | undefined
|
|
3023
3131
|
automatic_cooling_enabled?: boolean | undefined
|
|
3024
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | '
|
|
3132
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined
|
|
3025
3133
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
3026
3134
|
heating_set_point_celsius?: (number | undefined) | undefined
|
|
3027
3135
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined
|
|
@@ -3041,7 +3149,7 @@ export interface Routes {
|
|
|
3041
3149
|
created_at: string
|
|
3042
3150
|
automatic_heating_enabled?: boolean | undefined
|
|
3043
3151
|
automatic_cooling_enabled?: boolean | undefined
|
|
3044
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | '
|
|
3152
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined
|
|
3045
3153
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
3046
3154
|
heating_set_point_celsius?: (number | undefined) | undefined
|
|
3047
3155
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined
|
|
@@ -3102,6 +3210,7 @@ export interface Routes {
|
|
|
3102
3210
|
| 'igloohome_lock'
|
|
3103
3211
|
| 'hubitat_lock'
|
|
3104
3212
|
| 'four_suites_door'
|
|
3213
|
+
| 'dormakaba_oracode_door'
|
|
3105
3214
|
)
|
|
3106
3215
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
3107
3216
|
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
@@ -3312,6 +3421,15 @@ export interface Routes {
|
|
|
3312
3421
|
device_label: string
|
|
3313
3422
|
}
|
|
3314
3423
|
| undefined
|
|
3424
|
+
dormakaba_oracode_metadata?:
|
|
3425
|
+
| {
|
|
3426
|
+
door_id: number
|
|
3427
|
+
door_name: string
|
|
3428
|
+
device_id?: number | undefined
|
|
3429
|
+
site_id: number
|
|
3430
|
+
site_name: string
|
|
3431
|
+
}
|
|
3432
|
+
| undefined
|
|
3315
3433
|
}) &
|
|
3316
3434
|
({
|
|
3317
3435
|
code_constraints?:
|
|
@@ -3357,7 +3475,7 @@ export interface Routes {
|
|
|
3357
3475
|
can_enable_automatic_heating?: boolean | undefined
|
|
3358
3476
|
can_enable_automatic_cooling?: boolean | undefined
|
|
3359
3477
|
available_hvac_mode_settings?:
|
|
3360
|
-
| Array<'off' | 'heat' | 'cool' | '
|
|
3478
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
3361
3479
|
| undefined
|
|
3362
3480
|
is_heating_available?: true | undefined
|
|
3363
3481
|
is_cooling_available?: true | undefined
|
|
@@ -3369,7 +3487,7 @@ export interface Routes {
|
|
|
3369
3487
|
| {
|
|
3370
3488
|
automatic_heating_enabled: boolean
|
|
3371
3489
|
automatic_cooling_enabled: boolean
|
|
3372
|
-
hvac_mode_setting: 'off' | 'heat' | 'cool' | '
|
|
3490
|
+
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool'
|
|
3373
3491
|
cooling_set_point_celsius?: number | undefined
|
|
3374
3492
|
heating_set_point_celsius?: number | undefined
|
|
3375
3493
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -3386,7 +3504,7 @@ export interface Routes {
|
|
|
3386
3504
|
| 'off'
|
|
3387
3505
|
| 'heat'
|
|
3388
3506
|
| 'cool'
|
|
3389
|
-
| '
|
|
3507
|
+
| 'heat_cool'
|
|
3390
3508
|
cooling_set_point_celsius?: number | undefined
|
|
3391
3509
|
heating_set_point_celsius?: number | undefined
|
|
3392
3510
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -3410,7 +3528,7 @@ export interface Routes {
|
|
|
3410
3528
|
automatic_heating_enabled?: boolean | undefined
|
|
3411
3529
|
automatic_cooling_enabled?: boolean | undefined
|
|
3412
3530
|
hvac_mode_setting?:
|
|
3413
|
-
| ('off' | 'heat' | 'cool' | '
|
|
3531
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
3414
3532
|
| undefined
|
|
3415
3533
|
cooling_set_point_celsius?:
|
|
3416
3534
|
| (number | undefined)
|
|
@@ -3447,7 +3565,7 @@ export interface Routes {
|
|
|
3447
3565
|
can_enable_automatic_heating?: boolean | undefined
|
|
3448
3566
|
can_enable_automatic_cooling?: boolean | undefined
|
|
3449
3567
|
available_hvac_mode_settings?:
|
|
3450
|
-
| Array<'off' | 'heat' | 'cool' | '
|
|
3568
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
3451
3569
|
| undefined
|
|
3452
3570
|
is_heating_available?: true | undefined
|
|
3453
3571
|
is_cooling_available?: false | undefined
|
|
@@ -3459,7 +3577,7 @@ export interface Routes {
|
|
|
3459
3577
|
| {
|
|
3460
3578
|
automatic_heating_enabled: boolean
|
|
3461
3579
|
automatic_cooling_enabled: boolean
|
|
3462
|
-
hvac_mode_setting: 'off' | 'heat' | 'cool' | '
|
|
3580
|
+
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool'
|
|
3463
3581
|
cooling_set_point_celsius?: number | undefined
|
|
3464
3582
|
heating_set_point_celsius?: number | undefined
|
|
3465
3583
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -3476,7 +3594,7 @@ export interface Routes {
|
|
|
3476
3594
|
| 'off'
|
|
3477
3595
|
| 'heat'
|
|
3478
3596
|
| 'cool'
|
|
3479
|
-
| '
|
|
3597
|
+
| 'heat_cool'
|
|
3480
3598
|
cooling_set_point_celsius?: number | undefined
|
|
3481
3599
|
heating_set_point_celsius?: number | undefined
|
|
3482
3600
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -3500,7 +3618,7 @@ export interface Routes {
|
|
|
3500
3618
|
automatic_heating_enabled?: boolean | undefined
|
|
3501
3619
|
automatic_cooling_enabled?: boolean | undefined
|
|
3502
3620
|
hvac_mode_setting?:
|
|
3503
|
-
| ('off' | 'heat' | 'cool' | '
|
|
3621
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
3504
3622
|
| undefined
|
|
3505
3623
|
cooling_set_point_celsius?:
|
|
3506
3624
|
| (number | undefined)
|
|
@@ -3531,7 +3649,7 @@ export interface Routes {
|
|
|
3531
3649
|
can_enable_automatic_heating?: boolean | undefined
|
|
3532
3650
|
can_enable_automatic_cooling?: boolean | undefined
|
|
3533
3651
|
available_hvac_mode_settings?:
|
|
3534
|
-
| Array<'off' | 'heat' | 'cool' | '
|
|
3652
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
3535
3653
|
| undefined
|
|
3536
3654
|
is_heating_available?: false | undefined
|
|
3537
3655
|
is_cooling_available?: true | undefined
|
|
@@ -3543,7 +3661,7 @@ export interface Routes {
|
|
|
3543
3661
|
| {
|
|
3544
3662
|
automatic_heating_enabled: boolean
|
|
3545
3663
|
automatic_cooling_enabled: boolean
|
|
3546
|
-
hvac_mode_setting: 'off' | 'heat' | 'cool' | '
|
|
3664
|
+
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool'
|
|
3547
3665
|
cooling_set_point_celsius?: number | undefined
|
|
3548
3666
|
heating_set_point_celsius?: number | undefined
|
|
3549
3667
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -3560,7 +3678,7 @@ export interface Routes {
|
|
|
3560
3678
|
| 'off'
|
|
3561
3679
|
| 'heat'
|
|
3562
3680
|
| 'cool'
|
|
3563
|
-
| '
|
|
3681
|
+
| 'heat_cool'
|
|
3564
3682
|
cooling_set_point_celsius?: number | undefined
|
|
3565
3683
|
heating_set_point_celsius?: number | undefined
|
|
3566
3684
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -3584,7 +3702,7 @@ export interface Routes {
|
|
|
3584
3702
|
automatic_heating_enabled?: boolean | undefined
|
|
3585
3703
|
automatic_cooling_enabled?: boolean | undefined
|
|
3586
3704
|
hvac_mode_setting?:
|
|
3587
|
-
| ('off' | 'heat' | 'cool' | '
|
|
3705
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
3588
3706
|
| undefined
|
|
3589
3707
|
cooling_set_point_celsius?:
|
|
3590
3708
|
| (number | undefined)
|
|
@@ -3693,6 +3811,7 @@ export interface Routes {
|
|
|
3693
3811
|
| 'igloohome_lock'
|
|
3694
3812
|
| 'hubitat_lock'
|
|
3695
3813
|
| 'four_suites_door'
|
|
3814
|
+
| 'dormakaba_oracode_door'
|
|
3696
3815
|
)
|
|
3697
3816
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
3698
3817
|
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
@@ -3724,6 +3843,7 @@ export interface Routes {
|
|
|
3724
3843
|
| 'igloohome_lock'
|
|
3725
3844
|
| 'hubitat_lock'
|
|
3726
3845
|
| 'four_suites_door'
|
|
3846
|
+
| 'dormakaba_oracode_door'
|
|
3727
3847
|
)
|
|
3728
3848
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
3729
3849
|
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
@@ -3761,6 +3881,7 @@ export interface Routes {
|
|
|
3761
3881
|
| 'hubitat'
|
|
3762
3882
|
| 'controlbyweb'
|
|
3763
3883
|
| 'smartthings'
|
|
3884
|
+
| 'dormakaba_oracode'
|
|
3764
3885
|
)
|
|
3765
3886
|
| undefined
|
|
3766
3887
|
device_ids?: string[] | undefined
|
|
@@ -3796,6 +3917,7 @@ export interface Routes {
|
|
|
3796
3917
|
| 'igloohome_lock'
|
|
3797
3918
|
| 'hubitat_lock'
|
|
3798
3919
|
| 'four_suites_door'
|
|
3920
|
+
| 'dormakaba_oracode_door'
|
|
3799
3921
|
)
|
|
3800
3922
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
3801
3923
|
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
@@ -4006,6 +4128,15 @@ export interface Routes {
|
|
|
4006
4128
|
device_label: string
|
|
4007
4129
|
}
|
|
4008
4130
|
| undefined
|
|
4131
|
+
dormakaba_oracode_metadata?:
|
|
4132
|
+
| {
|
|
4133
|
+
door_id: number
|
|
4134
|
+
door_name: string
|
|
4135
|
+
device_id?: number | undefined
|
|
4136
|
+
site_id: number
|
|
4137
|
+
site_name: string
|
|
4138
|
+
}
|
|
4139
|
+
| undefined
|
|
4009
4140
|
}) &
|
|
4010
4141
|
({
|
|
4011
4142
|
code_constraints?:
|
|
@@ -4051,7 +4182,7 @@ export interface Routes {
|
|
|
4051
4182
|
can_enable_automatic_heating?: boolean | undefined
|
|
4052
4183
|
can_enable_automatic_cooling?: boolean | undefined
|
|
4053
4184
|
available_hvac_mode_settings?:
|
|
4054
|
-
| Array<'off' | 'heat' | 'cool' | '
|
|
4185
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
4055
4186
|
| undefined
|
|
4056
4187
|
is_heating_available?: true | undefined
|
|
4057
4188
|
is_cooling_available?: true | undefined
|
|
@@ -4063,7 +4194,7 @@ export interface Routes {
|
|
|
4063
4194
|
| {
|
|
4064
4195
|
automatic_heating_enabled: boolean
|
|
4065
4196
|
automatic_cooling_enabled: boolean
|
|
4066
|
-
hvac_mode_setting: 'off' | 'heat' | 'cool' | '
|
|
4197
|
+
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool'
|
|
4067
4198
|
cooling_set_point_celsius?: number | undefined
|
|
4068
4199
|
heating_set_point_celsius?: number | undefined
|
|
4069
4200
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -4080,7 +4211,7 @@ export interface Routes {
|
|
|
4080
4211
|
| 'off'
|
|
4081
4212
|
| 'heat'
|
|
4082
4213
|
| 'cool'
|
|
4083
|
-
| '
|
|
4214
|
+
| 'heat_cool'
|
|
4084
4215
|
cooling_set_point_celsius?: number | undefined
|
|
4085
4216
|
heating_set_point_celsius?: number | undefined
|
|
4086
4217
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -4104,7 +4235,7 @@ export interface Routes {
|
|
|
4104
4235
|
automatic_heating_enabled?: boolean | undefined
|
|
4105
4236
|
automatic_cooling_enabled?: boolean | undefined
|
|
4106
4237
|
hvac_mode_setting?:
|
|
4107
|
-
| ('off' | 'heat' | 'cool' | '
|
|
4238
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
4108
4239
|
| undefined
|
|
4109
4240
|
cooling_set_point_celsius?:
|
|
4110
4241
|
| (number | undefined)
|
|
@@ -4141,7 +4272,7 @@ export interface Routes {
|
|
|
4141
4272
|
can_enable_automatic_heating?: boolean | undefined
|
|
4142
4273
|
can_enable_automatic_cooling?: boolean | undefined
|
|
4143
4274
|
available_hvac_mode_settings?:
|
|
4144
|
-
| Array<'off' | 'heat' | 'cool' | '
|
|
4275
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
4145
4276
|
| undefined
|
|
4146
4277
|
is_heating_available?: true | undefined
|
|
4147
4278
|
is_cooling_available?: false | undefined
|
|
@@ -4153,7 +4284,7 @@ export interface Routes {
|
|
|
4153
4284
|
| {
|
|
4154
4285
|
automatic_heating_enabled: boolean
|
|
4155
4286
|
automatic_cooling_enabled: boolean
|
|
4156
|
-
hvac_mode_setting: 'off' | 'heat' | 'cool' | '
|
|
4287
|
+
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool'
|
|
4157
4288
|
cooling_set_point_celsius?: number | undefined
|
|
4158
4289
|
heating_set_point_celsius?: number | undefined
|
|
4159
4290
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -4170,7 +4301,7 @@ export interface Routes {
|
|
|
4170
4301
|
| 'off'
|
|
4171
4302
|
| 'heat'
|
|
4172
4303
|
| 'cool'
|
|
4173
|
-
| '
|
|
4304
|
+
| 'heat_cool'
|
|
4174
4305
|
cooling_set_point_celsius?: number | undefined
|
|
4175
4306
|
heating_set_point_celsius?: number | undefined
|
|
4176
4307
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -4194,7 +4325,7 @@ export interface Routes {
|
|
|
4194
4325
|
automatic_heating_enabled?: boolean | undefined
|
|
4195
4326
|
automatic_cooling_enabled?: boolean | undefined
|
|
4196
4327
|
hvac_mode_setting?:
|
|
4197
|
-
| ('off' | 'heat' | 'cool' | '
|
|
4328
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
4198
4329
|
| undefined
|
|
4199
4330
|
cooling_set_point_celsius?:
|
|
4200
4331
|
| (number | undefined)
|
|
@@ -4225,7 +4356,7 @@ export interface Routes {
|
|
|
4225
4356
|
can_enable_automatic_heating?: boolean | undefined
|
|
4226
4357
|
can_enable_automatic_cooling?: boolean | undefined
|
|
4227
4358
|
available_hvac_mode_settings?:
|
|
4228
|
-
| Array<'off' | 'heat' | 'cool' | '
|
|
4359
|
+
| Array<'off' | 'heat' | 'cool' | 'heat_cool'>
|
|
4229
4360
|
| undefined
|
|
4230
4361
|
is_heating_available?: false | undefined
|
|
4231
4362
|
is_cooling_available?: true | undefined
|
|
@@ -4237,7 +4368,7 @@ export interface Routes {
|
|
|
4237
4368
|
| {
|
|
4238
4369
|
automatic_heating_enabled: boolean
|
|
4239
4370
|
automatic_cooling_enabled: boolean
|
|
4240
|
-
hvac_mode_setting: 'off' | 'heat' | 'cool' | '
|
|
4371
|
+
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool'
|
|
4241
4372
|
cooling_set_point_celsius?: number | undefined
|
|
4242
4373
|
heating_set_point_celsius?: number | undefined
|
|
4243
4374
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -4254,7 +4385,7 @@ export interface Routes {
|
|
|
4254
4385
|
| 'off'
|
|
4255
4386
|
| 'heat'
|
|
4256
4387
|
| 'cool'
|
|
4257
|
-
| '
|
|
4388
|
+
| 'heat_cool'
|
|
4258
4389
|
cooling_set_point_celsius?: number | undefined
|
|
4259
4390
|
heating_set_point_celsius?: number | undefined
|
|
4260
4391
|
cooling_set_point_fahrenheit?: number | undefined
|
|
@@ -4278,7 +4409,7 @@ export interface Routes {
|
|
|
4278
4409
|
automatic_heating_enabled?: boolean | undefined
|
|
4279
4410
|
automatic_cooling_enabled?: boolean | undefined
|
|
4280
4411
|
hvac_mode_setting?:
|
|
4281
|
-
| ('off' | 'heat' | 'cool' | '
|
|
4412
|
+
| ('off' | 'heat' | 'cool' | 'heat_cool')
|
|
4282
4413
|
| undefined
|
|
4283
4414
|
cooling_set_point_celsius?:
|
|
4284
4415
|
| (number | undefined)
|
|
@@ -4356,7 +4487,7 @@ export interface Routes {
|
|
|
4356
4487
|
default_climate_setting: {
|
|
4357
4488
|
automatic_heating_enabled?: boolean | undefined
|
|
4358
4489
|
automatic_cooling_enabled?: boolean | undefined
|
|
4359
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | '
|
|
4490
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined
|
|
4360
4491
|
cooling_set_point_celsius?: (number | undefined) | undefined
|
|
4361
4492
|
heating_set_point_celsius?: (number | undefined) | undefined
|
|
4362
4493
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined
|