@seamapi/types 1.110.0 → 1.111.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/dist/connect.cjs +66 -14
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +71 -23
- package/lib/seam/connect/openapi.d.ts +12 -0
- package/lib/seam/connect/openapi.js +62 -10
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +59 -23
- package/lib/seam/connect/unstable/models/devices/device-metadata.d.ts +18 -0
- package/lib/seam/connect/unstable/models/devices/device-metadata.js +4 -0
- package/lib/seam/connect/unstable/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/device-type.d.ts +1 -0
- package/lib/seam/connect/unstable/models/devices/device-type.js +1 -0
- package/lib/seam/connect/unstable/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +37 -3
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.d.ts +3 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +62 -10
- package/src/lib/seam/connect/route-types.ts +77 -19
- package/src/lib/seam/connect/unstable/models/devices/device-metadata.ts +5 -0
- package/src/lib/seam/connect/unstable/models/devices/device-type.ts +1 -0
|
@@ -600,7 +600,11 @@ export default {
|
|
|
600
600
|
type: 'string',
|
|
601
601
|
},
|
|
602
602
|
{
|
|
603
|
-
enum: [
|
|
603
|
+
enum: [
|
|
604
|
+
'ecobee_thermostat',
|
|
605
|
+
'nest_thermostat',
|
|
606
|
+
'honeywell_thermostat',
|
|
607
|
+
],
|
|
604
608
|
type: 'string',
|
|
605
609
|
},
|
|
606
610
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
@@ -916,6 +920,14 @@ export default {
|
|
|
916
920
|
required: ['device_name', 'door_name'],
|
|
917
921
|
type: 'object',
|
|
918
922
|
},
|
|
923
|
+
honeywell_metadata: {
|
|
924
|
+
properties: {
|
|
925
|
+
device_name: { type: 'string' },
|
|
926
|
+
honeywell_device_id: { type: 'string' },
|
|
927
|
+
},
|
|
928
|
+
required: ['honeywell_device_id', 'device_name'],
|
|
929
|
+
type: 'object',
|
|
930
|
+
},
|
|
919
931
|
hubitat_metadata: {
|
|
920
932
|
properties: {
|
|
921
933
|
device_id: { type: 'string' },
|
|
@@ -2066,7 +2078,11 @@ export default {
|
|
|
2066
2078
|
type: 'string',
|
|
2067
2079
|
},
|
|
2068
2080
|
{
|
|
2069
|
-
enum: [
|
|
2081
|
+
enum: [
|
|
2082
|
+
'ecobee_thermostat',
|
|
2083
|
+
'nest_thermostat',
|
|
2084
|
+
'honeywell_thermostat',
|
|
2085
|
+
],
|
|
2070
2086
|
type: 'string',
|
|
2071
2087
|
},
|
|
2072
2088
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
@@ -7614,7 +7630,11 @@ export default {
|
|
|
7614
7630
|
type: 'string',
|
|
7615
7631
|
},
|
|
7616
7632
|
{
|
|
7617
|
-
enum: [
|
|
7633
|
+
enum: [
|
|
7634
|
+
'ecobee_thermostat',
|
|
7635
|
+
'nest_thermostat',
|
|
7636
|
+
'honeywell_thermostat',
|
|
7637
|
+
],
|
|
7618
7638
|
type: 'string',
|
|
7619
7639
|
},
|
|
7620
7640
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
@@ -7659,7 +7679,11 @@ export default {
|
|
|
7659
7679
|
type: 'string',
|
|
7660
7680
|
},
|
|
7661
7681
|
{
|
|
7662
|
-
enum: [
|
|
7682
|
+
enum: [
|
|
7683
|
+
'ecobee_thermostat',
|
|
7684
|
+
'nest_thermostat',
|
|
7685
|
+
'honeywell_thermostat',
|
|
7686
|
+
],
|
|
7663
7687
|
type: 'string',
|
|
7664
7688
|
},
|
|
7665
7689
|
{
|
|
@@ -7706,6 +7730,7 @@ export default {
|
|
|
7706
7730
|
'smartthings',
|
|
7707
7731
|
'dormakaba_oracode',
|
|
7708
7732
|
'tedee',
|
|
7733
|
+
'honeywell',
|
|
7709
7734
|
],
|
|
7710
7735
|
type: 'string',
|
|
7711
7736
|
},
|
|
@@ -7926,7 +7951,11 @@ export default {
|
|
|
7926
7951
|
type: 'string',
|
|
7927
7952
|
},
|
|
7928
7953
|
{
|
|
7929
|
-
enum: [
|
|
7954
|
+
enum: [
|
|
7955
|
+
'ecobee_thermostat',
|
|
7956
|
+
'nest_thermostat',
|
|
7957
|
+
'honeywell_thermostat',
|
|
7958
|
+
],
|
|
7930
7959
|
type: 'string',
|
|
7931
7960
|
},
|
|
7932
7961
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
@@ -7971,7 +8000,11 @@ export default {
|
|
|
7971
8000
|
type: 'string',
|
|
7972
8001
|
},
|
|
7973
8002
|
{
|
|
7974
|
-
enum: [
|
|
8003
|
+
enum: [
|
|
8004
|
+
'ecobee_thermostat',
|
|
8005
|
+
'nest_thermostat',
|
|
8006
|
+
'honeywell_thermostat',
|
|
8007
|
+
],
|
|
7975
8008
|
type: 'string',
|
|
7976
8009
|
},
|
|
7977
8010
|
{
|
|
@@ -8018,6 +8051,7 @@ export default {
|
|
|
8018
8051
|
'smartthings',
|
|
8019
8052
|
'dormakaba_oracode',
|
|
8020
8053
|
'tedee',
|
|
8054
|
+
'honeywell',
|
|
8021
8055
|
],
|
|
8022
8056
|
type: 'string',
|
|
8023
8057
|
},
|
|
@@ -8842,7 +8876,11 @@ export default {
|
|
|
8842
8876
|
type: 'string',
|
|
8843
8877
|
},
|
|
8844
8878
|
{
|
|
8845
|
-
enum: [
|
|
8879
|
+
enum: [
|
|
8880
|
+
'ecobee_thermostat',
|
|
8881
|
+
'nest_thermostat',
|
|
8882
|
+
'honeywell_thermostat',
|
|
8883
|
+
],
|
|
8846
8884
|
type: 'string',
|
|
8847
8885
|
},
|
|
8848
8886
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
@@ -8887,7 +8925,11 @@ export default {
|
|
|
8887
8925
|
type: 'string',
|
|
8888
8926
|
},
|
|
8889
8927
|
{
|
|
8890
|
-
enum: [
|
|
8928
|
+
enum: [
|
|
8929
|
+
'ecobee_thermostat',
|
|
8930
|
+
'nest_thermostat',
|
|
8931
|
+
'honeywell_thermostat',
|
|
8932
|
+
],
|
|
8891
8933
|
type: 'string',
|
|
8892
8934
|
},
|
|
8893
8935
|
{
|
|
@@ -8934,6 +8976,7 @@ export default {
|
|
|
8934
8976
|
'smartthings',
|
|
8935
8977
|
'dormakaba_oracode',
|
|
8936
8978
|
'tedee',
|
|
8979
|
+
'honeywell',
|
|
8937
8980
|
],
|
|
8938
8981
|
type: 'string',
|
|
8939
8982
|
},
|
|
@@ -10518,7 +10561,11 @@ export default {
|
|
|
10518
10561
|
type: 'string',
|
|
10519
10562
|
},
|
|
10520
10563
|
{
|
|
10521
|
-
enum: [
|
|
10564
|
+
enum: [
|
|
10565
|
+
'ecobee_thermostat',
|
|
10566
|
+
'nest_thermostat',
|
|
10567
|
+
'honeywell_thermostat',
|
|
10568
|
+
],
|
|
10522
10569
|
type: 'string',
|
|
10523
10570
|
},
|
|
10524
10571
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
@@ -10563,7 +10610,11 @@ export default {
|
|
|
10563
10610
|
type: 'string',
|
|
10564
10611
|
},
|
|
10565
10612
|
{
|
|
10566
|
-
enum: [
|
|
10613
|
+
enum: [
|
|
10614
|
+
'ecobee_thermostat',
|
|
10615
|
+
'nest_thermostat',
|
|
10616
|
+
'honeywell_thermostat',
|
|
10617
|
+
],
|
|
10567
10618
|
type: 'string',
|
|
10568
10619
|
},
|
|
10569
10620
|
{
|
|
@@ -10610,6 +10661,7 @@ export default {
|
|
|
10610
10661
|
'smartthings',
|
|
10611
10662
|
'dormakaba_oracode',
|
|
10612
10663
|
'tedee',
|
|
10664
|
+
'honeywell',
|
|
10613
10665
|
],
|
|
10614
10666
|
type: 'string',
|
|
10615
10667
|
},
|
|
@@ -2207,7 +2207,7 @@ export interface Routes {
|
|
|
2207
2207
|
| 'tedee_lock'
|
|
2208
2208
|
)
|
|
2209
2209
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
2210
|
-
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
2210
|
+
| ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat')
|
|
2211
2211
|
| ('ios_phone' | 'android_phone')
|
|
2212
2212
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
2213
2213
|
capabilities_supported: Array<
|
|
@@ -2454,6 +2454,12 @@ export interface Routes {
|
|
|
2454
2454
|
device_name: string
|
|
2455
2455
|
}
|
|
2456
2456
|
| undefined
|
|
2457
|
+
honeywell_metadata?:
|
|
2458
|
+
| {
|
|
2459
|
+
honeywell_device_id: string
|
|
2460
|
+
device_name: string
|
|
2461
|
+
}
|
|
2462
|
+
| undefined
|
|
2457
2463
|
hubitat_metadata?:
|
|
2458
2464
|
| {
|
|
2459
2465
|
device_id: string
|
|
@@ -2886,7 +2892,7 @@ export interface Routes {
|
|
|
2886
2892
|
| 'tedee_lock'
|
|
2887
2893
|
)
|
|
2888
2894
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
2889
|
-
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
2895
|
+
| ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat')
|
|
2890
2896
|
| ('ios_phone' | 'android_phone')
|
|
2891
2897
|
)
|
|
2892
2898
|
| undefined
|
|
@@ -2921,7 +2927,7 @@ export interface Routes {
|
|
|
2921
2927
|
| 'tedee_lock'
|
|
2922
2928
|
)
|
|
2923
2929
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
2924
|
-
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
2930
|
+
| ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat')
|
|
2925
2931
|
| ('ios_phone' | 'android_phone')
|
|
2926
2932
|
>
|
|
2927
2933
|
| undefined
|
|
@@ -2960,6 +2966,7 @@ export interface Routes {
|
|
|
2960
2966
|
| 'smartthings'
|
|
2961
2967
|
| 'dormakaba_oracode'
|
|
2962
2968
|
| 'tedee'
|
|
2969
|
+
| 'honeywell'
|
|
2963
2970
|
)
|
|
2964
2971
|
| undefined
|
|
2965
2972
|
device_ids?: string[] | undefined
|
|
@@ -3004,7 +3011,7 @@ export interface Routes {
|
|
|
3004
3011
|
| 'tedee_lock'
|
|
3005
3012
|
)
|
|
3006
3013
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
3007
|
-
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
3014
|
+
| ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat')
|
|
3008
3015
|
| ('ios_phone' | 'android_phone')
|
|
3009
3016
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
3010
3017
|
capabilities_supported: Array<
|
|
@@ -3251,6 +3258,12 @@ export interface Routes {
|
|
|
3251
3258
|
device_name: string
|
|
3252
3259
|
}
|
|
3253
3260
|
| undefined
|
|
3261
|
+
honeywell_metadata?:
|
|
3262
|
+
| {
|
|
3263
|
+
honeywell_device_id: string
|
|
3264
|
+
device_name: string
|
|
3265
|
+
}
|
|
3266
|
+
| undefined
|
|
3254
3267
|
hubitat_metadata?:
|
|
3255
3268
|
| {
|
|
3256
3269
|
device_id: string
|
|
@@ -3705,7 +3718,7 @@ export interface Routes {
|
|
|
3705
3718
|
| 'tedee_lock'
|
|
3706
3719
|
)
|
|
3707
3720
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
3708
|
-
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
3721
|
+
| ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat')
|
|
3709
3722
|
| ('ios_phone' | 'android_phone')
|
|
3710
3723
|
/** Unique identifier for the account associated with the device. */
|
|
3711
3724
|
connected_account_id: string
|
|
@@ -3814,7 +3827,7 @@ export interface Routes {
|
|
|
3814
3827
|
| 'tedee_lock'
|
|
3815
3828
|
)
|
|
3816
3829
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
3817
|
-
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
3830
|
+
| ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat')
|
|
3818
3831
|
| ('ios_phone' | 'android_phone')
|
|
3819
3832
|
)
|
|
3820
3833
|
| undefined
|
|
@@ -3849,7 +3862,7 @@ export interface Routes {
|
|
|
3849
3862
|
| 'tedee_lock'
|
|
3850
3863
|
)
|
|
3851
3864
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
3852
|
-
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
3865
|
+
| ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat')
|
|
3853
3866
|
| ('ios_phone' | 'android_phone')
|
|
3854
3867
|
>
|
|
3855
3868
|
| undefined
|
|
@@ -3888,6 +3901,7 @@ export interface Routes {
|
|
|
3888
3901
|
| 'smartthings'
|
|
3889
3902
|
| 'dormakaba_oracode'
|
|
3890
3903
|
| 'tedee'
|
|
3904
|
+
| 'honeywell'
|
|
3891
3905
|
)
|
|
3892
3906
|
| undefined
|
|
3893
3907
|
device_ids?: string[] | undefined
|
|
@@ -3932,7 +3946,7 @@ export interface Routes {
|
|
|
3932
3946
|
| 'tedee_lock'
|
|
3933
3947
|
)
|
|
3934
3948
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
3935
|
-
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
3949
|
+
| ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat')
|
|
3936
3950
|
| ('ios_phone' | 'android_phone')
|
|
3937
3951
|
/** Unique identifier for the account associated with the device. */
|
|
3938
3952
|
connected_account_id: string
|
|
@@ -4302,7 +4316,7 @@ export interface Routes {
|
|
|
4302
4316
|
| 'tedee_lock'
|
|
4303
4317
|
)
|
|
4304
4318
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
4305
|
-
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
4319
|
+
| ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat')
|
|
4306
4320
|
| ('ios_phone' | 'android_phone')
|
|
4307
4321
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
4308
4322
|
capabilities_supported: Array<
|
|
@@ -4549,6 +4563,12 @@ export interface Routes {
|
|
|
4549
4563
|
device_name: string
|
|
4550
4564
|
}
|
|
4551
4565
|
| undefined
|
|
4566
|
+
honeywell_metadata?:
|
|
4567
|
+
| {
|
|
4568
|
+
honeywell_device_id: string
|
|
4569
|
+
device_name: string
|
|
4570
|
+
}
|
|
4571
|
+
| undefined
|
|
4552
4572
|
hubitat_metadata?:
|
|
4553
4573
|
| {
|
|
4554
4574
|
device_id: string
|
|
@@ -4972,7 +4992,7 @@ export interface Routes {
|
|
|
4972
4992
|
| 'tedee_lock'
|
|
4973
4993
|
)
|
|
4974
4994
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
4975
|
-
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
4995
|
+
| ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat')
|
|
4976
4996
|
| ('ios_phone' | 'android_phone')
|
|
4977
4997
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
4978
4998
|
capabilities_supported: Array<
|
|
@@ -5219,6 +5239,12 @@ export interface Routes {
|
|
|
5219
5239
|
device_name: string
|
|
5220
5240
|
}
|
|
5221
5241
|
| undefined
|
|
5242
|
+
honeywell_metadata?:
|
|
5243
|
+
| {
|
|
5244
|
+
honeywell_device_id: string
|
|
5245
|
+
device_name: string
|
|
5246
|
+
}
|
|
5247
|
+
| undefined
|
|
5222
5248
|
hubitat_metadata?:
|
|
5223
5249
|
| {
|
|
5224
5250
|
device_id: string
|
|
@@ -5651,7 +5677,7 @@ export interface Routes {
|
|
|
5651
5677
|
| 'tedee_lock'
|
|
5652
5678
|
)
|
|
5653
5679
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
5654
|
-
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
5680
|
+
| ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat')
|
|
5655
5681
|
| ('ios_phone' | 'android_phone')
|
|
5656
5682
|
)
|
|
5657
5683
|
| undefined
|
|
@@ -5686,7 +5712,7 @@ export interface Routes {
|
|
|
5686
5712
|
| 'tedee_lock'
|
|
5687
5713
|
)
|
|
5688
5714
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
5689
|
-
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
5715
|
+
| ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat')
|
|
5690
5716
|
| ('ios_phone' | 'android_phone')
|
|
5691
5717
|
>
|
|
5692
5718
|
| undefined
|
|
@@ -5725,6 +5751,7 @@ export interface Routes {
|
|
|
5725
5751
|
| 'smartthings'
|
|
5726
5752
|
| 'dormakaba_oracode'
|
|
5727
5753
|
| 'tedee'
|
|
5754
|
+
| 'honeywell'
|
|
5728
5755
|
)
|
|
5729
5756
|
| undefined
|
|
5730
5757
|
device_ids?: string[] | undefined
|
|
@@ -5769,7 +5796,7 @@ export interface Routes {
|
|
|
5769
5796
|
| 'tedee_lock'
|
|
5770
5797
|
)
|
|
5771
5798
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
5772
|
-
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
5799
|
+
| ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat')
|
|
5773
5800
|
| ('ios_phone' | 'android_phone')
|
|
5774
5801
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
5775
5802
|
capabilities_supported: Array<
|
|
@@ -6016,6 +6043,12 @@ export interface Routes {
|
|
|
6016
6043
|
device_name: string
|
|
6017
6044
|
}
|
|
6018
6045
|
| undefined
|
|
6046
|
+
honeywell_metadata?:
|
|
6047
|
+
| {
|
|
6048
|
+
honeywell_device_id: string
|
|
6049
|
+
device_name: string
|
|
6050
|
+
}
|
|
6051
|
+
| undefined
|
|
6019
6052
|
hubitat_metadata?:
|
|
6020
6053
|
| {
|
|
6021
6054
|
device_id: string
|
|
@@ -6439,7 +6472,7 @@ export interface Routes {
|
|
|
6439
6472
|
| 'tedee_lock'
|
|
6440
6473
|
)
|
|
6441
6474
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
6442
|
-
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
6475
|
+
| ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat')
|
|
6443
6476
|
| ('ios_phone' | 'android_phone')
|
|
6444
6477
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
6445
6478
|
capabilities_supported: Array<
|
|
@@ -6686,6 +6719,12 @@ export interface Routes {
|
|
|
6686
6719
|
device_name: string
|
|
6687
6720
|
}
|
|
6688
6721
|
| undefined
|
|
6722
|
+
honeywell_metadata?:
|
|
6723
|
+
| {
|
|
6724
|
+
honeywell_device_id: string
|
|
6725
|
+
device_name: string
|
|
6726
|
+
}
|
|
6727
|
+
| undefined
|
|
6689
6728
|
hubitat_metadata?:
|
|
6690
6729
|
| {
|
|
6691
6730
|
device_id: string
|
|
@@ -7745,7 +7784,7 @@ export interface Routes {
|
|
|
7745
7784
|
| 'tedee_lock'
|
|
7746
7785
|
)
|
|
7747
7786
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
7748
|
-
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
7787
|
+
| ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat')
|
|
7749
7788
|
| ('ios_phone' | 'android_phone')
|
|
7750
7789
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
7751
7790
|
capabilities_supported: Array<
|
|
@@ -7992,6 +8031,12 @@ export interface Routes {
|
|
|
7992
8031
|
device_name: string
|
|
7993
8032
|
}
|
|
7994
8033
|
| undefined
|
|
8034
|
+
honeywell_metadata?:
|
|
8035
|
+
| {
|
|
8036
|
+
honeywell_device_id: string
|
|
8037
|
+
device_name: string
|
|
8038
|
+
}
|
|
8039
|
+
| undefined
|
|
7995
8040
|
hubitat_metadata?:
|
|
7996
8041
|
| {
|
|
7997
8042
|
device_id: string
|
|
@@ -8454,7 +8499,7 @@ export interface Routes {
|
|
|
8454
8499
|
| 'tedee_lock'
|
|
8455
8500
|
)
|
|
8456
8501
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
8457
|
-
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
8502
|
+
| ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat')
|
|
8458
8503
|
| ('ios_phone' | 'android_phone')
|
|
8459
8504
|
)
|
|
8460
8505
|
| undefined
|
|
@@ -8489,7 +8534,7 @@ export interface Routes {
|
|
|
8489
8534
|
| 'tedee_lock'
|
|
8490
8535
|
)
|
|
8491
8536
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
8492
|
-
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
8537
|
+
| ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat')
|
|
8493
8538
|
| ('ios_phone' | 'android_phone')
|
|
8494
8539
|
>
|
|
8495
8540
|
| undefined
|
|
@@ -8528,6 +8573,7 @@ export interface Routes {
|
|
|
8528
8573
|
| 'smartthings'
|
|
8529
8574
|
| 'dormakaba_oracode'
|
|
8530
8575
|
| 'tedee'
|
|
8576
|
+
| 'honeywell'
|
|
8531
8577
|
)
|
|
8532
8578
|
| undefined
|
|
8533
8579
|
device_ids?: string[] | undefined
|
|
@@ -8572,7 +8618,7 @@ export interface Routes {
|
|
|
8572
8618
|
| 'tedee_lock'
|
|
8573
8619
|
)
|
|
8574
8620
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
8575
|
-
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
8621
|
+
| ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat')
|
|
8576
8622
|
| ('ios_phone' | 'android_phone')
|
|
8577
8623
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
8578
8624
|
capabilities_supported: Array<
|
|
@@ -8819,6 +8865,12 @@ export interface Routes {
|
|
|
8819
8865
|
device_name: string
|
|
8820
8866
|
}
|
|
8821
8867
|
| undefined
|
|
8868
|
+
honeywell_metadata?:
|
|
8869
|
+
| {
|
|
8870
|
+
honeywell_device_id: string
|
|
8871
|
+
device_name: string
|
|
8872
|
+
}
|
|
8873
|
+
| undefined
|
|
8822
8874
|
hubitat_metadata?:
|
|
8823
8875
|
| {
|
|
8824
8876
|
device_id: string
|
|
@@ -9469,7 +9521,7 @@ export interface Routes {
|
|
|
9469
9521
|
| 'tedee_lock'
|
|
9470
9522
|
)
|
|
9471
9523
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
9472
|
-
| ('ecobee_thermostat' | 'nest_thermostat')
|
|
9524
|
+
| ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat')
|
|
9473
9525
|
| ('ios_phone' | 'android_phone')
|
|
9474
9526
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
9475
9527
|
capabilities_supported: Array<
|
|
@@ -9716,6 +9768,12 @@ export interface Routes {
|
|
|
9716
9768
|
device_name: string
|
|
9717
9769
|
}
|
|
9718
9770
|
| undefined
|
|
9771
|
+
honeywell_metadata?:
|
|
9772
|
+
| {
|
|
9773
|
+
honeywell_device_id: string
|
|
9774
|
+
device_name: string
|
|
9775
|
+
}
|
|
9776
|
+
| undefined
|
|
9719
9777
|
hubitat_metadata?:
|
|
9720
9778
|
| {
|
|
9721
9779
|
device_id: string
|
|
@@ -174,6 +174,11 @@ export const device_metadata = z
|
|
|
174
174
|
device_name: z.string(),
|
|
175
175
|
}),
|
|
176
176
|
|
|
177
|
+
honeywell_metadata: z.object({
|
|
178
|
+
honeywell_device_id: z.string(),
|
|
179
|
+
device_name: z.string(),
|
|
180
|
+
}),
|
|
181
|
+
|
|
177
182
|
hubitat_metadata: z.object({
|
|
178
183
|
device_id: z.string(),
|
|
179
184
|
device_name: z.string(),
|
|
@@ -66,6 +66,7 @@ export type NoiseSensorDeviceType = z.infer<typeof noise_sensor_device_type>
|
|
|
66
66
|
export const THERMOSTAT_DEVICE_TYPE = {
|
|
67
67
|
ECOBEE_THERMOSTAT: 'ecobee_thermostat',
|
|
68
68
|
NEST_THERMOSTAT: 'nest_thermostat',
|
|
69
|
+
HONEYWELL_THERMOSTAT: 'honeywell_thermostat',
|
|
69
70
|
} as const
|
|
70
71
|
|
|
71
72
|
type ThermostatDeviceTypeFromMapping =
|