@seamapi/types 1.306.0 → 1.307.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 +64 -23
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +228 -91
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +13 -13
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +13 -13
- package/lib/seam/connect/models/action-attempts/scan-credential.js +7 -2
- package/lib/seam/connect/models/action-attempts/scan-credential.js.map +1 -1
- package/lib/seam/connect/models/devices/device-metadata.d.ts +23 -0
- package/lib/seam/connect/models/devices/device-metadata.js +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-type.js +1 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +36 -3
- package/lib/seam/connect/models/devices/phone.d.ts +24 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +26 -3
- package/lib/seam/connect/openapi.d.ts +16 -0
- package/lib/seam/connect/openapi.js +35 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +137 -72
- package/package.json +1 -1
- package/src/lib/seam/connect/models/action-attempts/scan-credential.ts +7 -4
- package/src/lib/seam/connect/models/devices/device-metadata.ts +6 -0
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +35 -1
- package/src/lib/seam/connect/route-types.ts +205 -42
|
@@ -123,7 +123,7 @@ export interface Routes {
|
|
|
123
123
|
common_acs_entrance_ids?: string[] | undefined
|
|
124
124
|
}
|
|
125
125
|
| undefined
|
|
126
|
-
}
|
|
126
|
+
} | null
|
|
127
127
|
/** Matching acs_credential currently encoded on this card. */
|
|
128
128
|
acs_credential_on_seam:
|
|
129
129
|
| (
|
|
@@ -342,7 +342,9 @@ export interface Routes {
|
|
|
342
342
|
)
|
|
343
343
|
| null
|
|
344
344
|
warnings: Array<{
|
|
345
|
-
warning_code:
|
|
345
|
+
warning_code:
|
|
346
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
347
|
+
| 'acs_credential_on_seam_not_found'
|
|
346
348
|
warning_message: string
|
|
347
349
|
}>
|
|
348
350
|
}
|
|
@@ -1303,7 +1305,7 @@ export interface Routes {
|
|
|
1303
1305
|
common_acs_entrance_ids?: string[] | undefined
|
|
1304
1306
|
}
|
|
1305
1307
|
| undefined
|
|
1306
|
-
}
|
|
1308
|
+
} | null
|
|
1307
1309
|
/** Matching acs_credential currently encoded on this card. */
|
|
1308
1310
|
acs_credential_on_seam:
|
|
1309
1311
|
| (
|
|
@@ -1522,7 +1524,9 @@ export interface Routes {
|
|
|
1522
1524
|
)
|
|
1523
1525
|
| null
|
|
1524
1526
|
warnings: Array<{
|
|
1525
|
-
warning_code:
|
|
1527
|
+
warning_code:
|
|
1528
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
1529
|
+
| 'acs_credential_on_seam_not_found'
|
|
1526
1530
|
warning_message: string
|
|
1527
1531
|
}>
|
|
1528
1532
|
}
|
|
@@ -2713,7 +2717,7 @@ export interface Routes {
|
|
|
2713
2717
|
common_acs_entrance_ids?: string[] | undefined
|
|
2714
2718
|
}
|
|
2715
2719
|
| undefined
|
|
2716
|
-
}
|
|
2720
|
+
} | null
|
|
2717
2721
|
/** Matching acs_credential currently encoded on this card. */
|
|
2718
2722
|
acs_credential_on_seam:
|
|
2719
2723
|
| (
|
|
@@ -2932,7 +2936,9 @@ export interface Routes {
|
|
|
2932
2936
|
)
|
|
2933
2937
|
| null
|
|
2934
2938
|
warnings: Array<{
|
|
2935
|
-
warning_code:
|
|
2939
|
+
warning_code:
|
|
2940
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
2941
|
+
| 'acs_credential_on_seam_not_found'
|
|
2936
2942
|
warning_message: string
|
|
2937
2943
|
}>
|
|
2938
2944
|
}
|
|
@@ -3880,7 +3886,7 @@ export interface Routes {
|
|
|
3880
3886
|
common_acs_entrance_ids?: string[] | undefined
|
|
3881
3887
|
}
|
|
3882
3888
|
| undefined
|
|
3883
|
-
}
|
|
3889
|
+
} | null
|
|
3884
3890
|
/** Matching acs_credential currently encoded on this card. */
|
|
3885
3891
|
acs_credential_on_seam:
|
|
3886
3892
|
| (
|
|
@@ -4099,7 +4105,9 @@ export interface Routes {
|
|
|
4099
4105
|
)
|
|
4100
4106
|
| null
|
|
4101
4107
|
warnings: Array<{
|
|
4102
|
-
warning_code:
|
|
4108
|
+
warning_code:
|
|
4109
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
4110
|
+
| 'acs_credential_on_seam_not_found'
|
|
4103
4111
|
warning_message: string
|
|
4104
4112
|
}>
|
|
4105
4113
|
}
|
|
@@ -6618,7 +6626,7 @@ export interface Routes {
|
|
|
6618
6626
|
common_acs_entrance_ids?: string[] | undefined
|
|
6619
6627
|
}
|
|
6620
6628
|
| undefined
|
|
6621
|
-
}
|
|
6629
|
+
} | null
|
|
6622
6630
|
/** Matching acs_credential currently encoded on this card. */
|
|
6623
6631
|
acs_credential_on_seam:
|
|
6624
6632
|
| (
|
|
@@ -6837,7 +6845,9 @@ export interface Routes {
|
|
|
6837
6845
|
)
|
|
6838
6846
|
| null
|
|
6839
6847
|
warnings: Array<{
|
|
6840
|
-
warning_code:
|
|
6848
|
+
warning_code:
|
|
6849
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
6850
|
+
| 'acs_credential_on_seam_not_found'
|
|
6841
6851
|
warning_message: string
|
|
6842
6852
|
}>
|
|
6843
6853
|
}
|
|
@@ -7687,7 +7697,7 @@ export interface Routes {
|
|
|
7687
7697
|
common_acs_entrance_ids?: string[] | undefined
|
|
7688
7698
|
}
|
|
7689
7699
|
| undefined
|
|
7690
|
-
}
|
|
7700
|
+
} | null
|
|
7691
7701
|
/** Matching acs_credential currently encoded on this card. */
|
|
7692
7702
|
acs_credential_on_seam:
|
|
7693
7703
|
| (
|
|
@@ -7906,7 +7916,9 @@ export interface Routes {
|
|
|
7906
7916
|
)
|
|
7907
7917
|
| null
|
|
7908
7918
|
warnings: Array<{
|
|
7909
|
-
warning_code:
|
|
7919
|
+
warning_code:
|
|
7920
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
7921
|
+
| 'acs_credential_on_seam_not_found'
|
|
7910
7922
|
warning_message: string
|
|
7911
7923
|
}>
|
|
7912
7924
|
}
|
|
@@ -10300,7 +10312,7 @@ export interface Routes {
|
|
|
10300
10312
|
common_acs_entrance_ids?: string[] | undefined
|
|
10301
10313
|
}
|
|
10302
10314
|
| undefined
|
|
10303
|
-
}
|
|
10315
|
+
} | null
|
|
10304
10316
|
/** Matching acs_credential currently encoded on this card. */
|
|
10305
10317
|
acs_credential_on_seam:
|
|
10306
10318
|
| (
|
|
@@ -10519,7 +10531,9 @@ export interface Routes {
|
|
|
10519
10531
|
)
|
|
10520
10532
|
| null
|
|
10521
10533
|
warnings: Array<{
|
|
10522
|
-
warning_code:
|
|
10534
|
+
warning_code:
|
|
10535
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
10536
|
+
| 'acs_credential_on_seam_not_found'
|
|
10523
10537
|
warning_message: string
|
|
10524
10538
|
}>
|
|
10525
10539
|
}
|
|
@@ -11321,7 +11335,7 @@ export interface Routes {
|
|
|
11321
11335
|
common_acs_entrance_ids?: string[] | undefined
|
|
11322
11336
|
}
|
|
11323
11337
|
| undefined
|
|
11324
|
-
}
|
|
11338
|
+
} | null
|
|
11325
11339
|
/** Matching acs_credential currently encoded on this card. */
|
|
11326
11340
|
acs_credential_on_seam:
|
|
11327
11341
|
| (
|
|
@@ -11540,7 +11554,9 @@ export interface Routes {
|
|
|
11540
11554
|
)
|
|
11541
11555
|
| null
|
|
11542
11556
|
warnings: Array<{
|
|
11543
|
-
warning_code:
|
|
11557
|
+
warning_code:
|
|
11558
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
11559
|
+
| 'acs_credential_on_seam_not_found'
|
|
11544
11560
|
warning_message: string
|
|
11545
11561
|
}>
|
|
11546
11562
|
}
|
|
@@ -12777,6 +12793,7 @@ export interface Routes {
|
|
|
12777
12793
|
| 'ecobee_thermostat'
|
|
12778
12794
|
| 'nest_thermostat'
|
|
12779
12795
|
| 'honeywell_resideo_thermostat'
|
|
12796
|
+
| 'tado_thermostat'
|
|
12780
12797
|
)
|
|
12781
12798
|
| ('ios_phone' | 'android_phone')
|
|
12782
12799
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -13171,6 +13188,13 @@ export interface Routes {
|
|
|
13171
13188
|
encoder_name: string
|
|
13172
13189
|
}
|
|
13173
13190
|
| undefined
|
|
13191
|
+
tado_metadata?:
|
|
13192
|
+
| {
|
|
13193
|
+
serial_number: string
|
|
13194
|
+
device_name: string
|
|
13195
|
+
device_type: string
|
|
13196
|
+
}
|
|
13197
|
+
| undefined
|
|
13174
13198
|
}) &
|
|
13175
13199
|
({
|
|
13176
13200
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -13484,6 +13508,7 @@ export interface Routes {
|
|
|
13484
13508
|
| 'ecobee_thermostat'
|
|
13485
13509
|
| 'nest_thermostat'
|
|
13486
13510
|
| 'honeywell_resideo_thermostat'
|
|
13511
|
+
| 'tado_thermostat'
|
|
13487
13512
|
)
|
|
13488
13513
|
| ('ios_phone' | 'android_phone')
|
|
13489
13514
|
)
|
|
@@ -13525,6 +13550,7 @@ export interface Routes {
|
|
|
13525
13550
|
| 'ecobee_thermostat'
|
|
13526
13551
|
| 'nest_thermostat'
|
|
13527
13552
|
| 'honeywell_resideo_thermostat'
|
|
13553
|
+
| 'tado_thermostat'
|
|
13528
13554
|
)
|
|
13529
13555
|
| ('ios_phone' | 'android_phone')
|
|
13530
13556
|
>
|
|
@@ -13567,6 +13593,7 @@ export interface Routes {
|
|
|
13567
13593
|
| 'tedee'
|
|
13568
13594
|
| 'honeywell_resideo'
|
|
13569
13595
|
| 'akiles'
|
|
13596
|
+
| 'tado'
|
|
13570
13597
|
)
|
|
13571
13598
|
| undefined
|
|
13572
13599
|
/** Array of device IDs by which to filter devices. */
|
|
@@ -13653,6 +13680,7 @@ export interface Routes {
|
|
|
13653
13680
|
| 'ecobee_thermostat'
|
|
13654
13681
|
| 'nest_thermostat'
|
|
13655
13682
|
| 'honeywell_resideo_thermostat'
|
|
13683
|
+
| 'tado_thermostat'
|
|
13656
13684
|
)
|
|
13657
13685
|
| ('ios_phone' | 'android_phone')
|
|
13658
13686
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -14047,6 +14075,13 @@ export interface Routes {
|
|
|
14047
14075
|
encoder_name: string
|
|
14048
14076
|
}
|
|
14049
14077
|
| undefined
|
|
14078
|
+
tado_metadata?:
|
|
14079
|
+
| {
|
|
14080
|
+
serial_number: string
|
|
14081
|
+
device_name: string
|
|
14082
|
+
device_type: string
|
|
14083
|
+
}
|
|
14084
|
+
| undefined
|
|
14050
14085
|
}) &
|
|
14051
14086
|
({
|
|
14052
14087
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -14481,6 +14516,7 @@ export interface Routes {
|
|
|
14481
14516
|
| 'ecobee_thermostat'
|
|
14482
14517
|
| 'nest_thermostat'
|
|
14483
14518
|
| 'honeywell_resideo_thermostat'
|
|
14519
|
+
| 'tado_thermostat'
|
|
14484
14520
|
)
|
|
14485
14521
|
| ('ios_phone' | 'android_phone')
|
|
14486
14522
|
/** Unique identifier for the account associated with the device. */
|
|
@@ -14643,6 +14679,7 @@ export interface Routes {
|
|
|
14643
14679
|
| 'ecobee_thermostat'
|
|
14644
14680
|
| 'nest_thermostat'
|
|
14645
14681
|
| 'honeywell_resideo_thermostat'
|
|
14682
|
+
| 'tado_thermostat'
|
|
14646
14683
|
)
|
|
14647
14684
|
| ('ios_phone' | 'android_phone')
|
|
14648
14685
|
)
|
|
@@ -14684,6 +14721,7 @@ export interface Routes {
|
|
|
14684
14721
|
| 'ecobee_thermostat'
|
|
14685
14722
|
| 'nest_thermostat'
|
|
14686
14723
|
| 'honeywell_resideo_thermostat'
|
|
14724
|
+
| 'tado_thermostat'
|
|
14687
14725
|
)
|
|
14688
14726
|
| ('ios_phone' | 'android_phone')
|
|
14689
14727
|
>
|
|
@@ -14726,6 +14764,7 @@ export interface Routes {
|
|
|
14726
14764
|
| 'tedee'
|
|
14727
14765
|
| 'honeywell_resideo'
|
|
14728
14766
|
| 'akiles'
|
|
14767
|
+
| 'tado'
|
|
14729
14768
|
)
|
|
14730
14769
|
| undefined
|
|
14731
14770
|
/** Array of device IDs by which to filter devices. */
|
|
@@ -14812,6 +14851,7 @@ export interface Routes {
|
|
|
14812
14851
|
| 'ecobee_thermostat'
|
|
14813
14852
|
| 'nest_thermostat'
|
|
14814
14853
|
| 'honeywell_resideo_thermostat'
|
|
14854
|
+
| 'tado_thermostat'
|
|
14815
14855
|
)
|
|
14816
14856
|
| ('ios_phone' | 'android_phone')
|
|
14817
14857
|
/** Unique identifier for the account associated with the device. */
|
|
@@ -15246,6 +15286,7 @@ export interface Routes {
|
|
|
15246
15286
|
| 'ecobee_thermostat'
|
|
15247
15287
|
| 'nest_thermostat'
|
|
15248
15288
|
| 'honeywell_resideo_thermostat'
|
|
15289
|
+
| 'tado_thermostat'
|
|
15249
15290
|
)
|
|
15250
15291
|
| ('ios_phone' | 'android_phone')
|
|
15251
15292
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -15640,6 +15681,13 @@ export interface Routes {
|
|
|
15640
15681
|
encoder_name: string
|
|
15641
15682
|
}
|
|
15642
15683
|
| undefined
|
|
15684
|
+
tado_metadata?:
|
|
15685
|
+
| {
|
|
15686
|
+
serial_number: string
|
|
15687
|
+
device_name: string
|
|
15688
|
+
device_type: string
|
|
15689
|
+
}
|
|
15690
|
+
| undefined
|
|
15643
15691
|
}) &
|
|
15644
15692
|
({
|
|
15645
15693
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -15941,6 +15989,7 @@ export interface Routes {
|
|
|
15941
15989
|
| 'ecobee_thermostat'
|
|
15942
15990
|
| 'nest_thermostat'
|
|
15943
15991
|
| 'honeywell_resideo_thermostat'
|
|
15992
|
+
| 'tado_thermostat'
|
|
15944
15993
|
)
|
|
15945
15994
|
| ('ios_phone' | 'android_phone')
|
|
15946
15995
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -16335,6 +16384,13 @@ export interface Routes {
|
|
|
16335
16384
|
encoder_name: string
|
|
16336
16385
|
}
|
|
16337
16386
|
| undefined
|
|
16387
|
+
tado_metadata?:
|
|
16388
|
+
| {
|
|
16389
|
+
serial_number: string
|
|
16390
|
+
device_name: string
|
|
16391
|
+
device_type: string
|
|
16392
|
+
}
|
|
16393
|
+
| undefined
|
|
16338
16394
|
}) &
|
|
16339
16395
|
({
|
|
16340
16396
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -16648,6 +16704,7 @@ export interface Routes {
|
|
|
16648
16704
|
| 'ecobee_thermostat'
|
|
16649
16705
|
| 'nest_thermostat'
|
|
16650
16706
|
| 'honeywell_resideo_thermostat'
|
|
16707
|
+
| 'tado_thermostat'
|
|
16651
16708
|
)
|
|
16652
16709
|
| ('ios_phone' | 'android_phone')
|
|
16653
16710
|
)
|
|
@@ -16689,6 +16746,7 @@ export interface Routes {
|
|
|
16689
16746
|
| 'ecobee_thermostat'
|
|
16690
16747
|
| 'nest_thermostat'
|
|
16691
16748
|
| 'honeywell_resideo_thermostat'
|
|
16749
|
+
| 'tado_thermostat'
|
|
16692
16750
|
)
|
|
16693
16751
|
| ('ios_phone' | 'android_phone')
|
|
16694
16752
|
>
|
|
@@ -16731,6 +16789,7 @@ export interface Routes {
|
|
|
16731
16789
|
| 'tedee'
|
|
16732
16790
|
| 'honeywell_resideo'
|
|
16733
16791
|
| 'akiles'
|
|
16792
|
+
| 'tado'
|
|
16734
16793
|
)
|
|
16735
16794
|
| undefined
|
|
16736
16795
|
/** Array of device IDs by which to filter devices. */
|
|
@@ -16817,6 +16876,7 @@ export interface Routes {
|
|
|
16817
16876
|
| 'ecobee_thermostat'
|
|
16818
16877
|
| 'nest_thermostat'
|
|
16819
16878
|
| 'honeywell_resideo_thermostat'
|
|
16879
|
+
| 'tado_thermostat'
|
|
16820
16880
|
)
|
|
16821
16881
|
| ('ios_phone' | 'android_phone')
|
|
16822
16882
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -17211,6 +17271,13 @@ export interface Routes {
|
|
|
17211
17271
|
encoder_name: string
|
|
17212
17272
|
}
|
|
17213
17273
|
| undefined
|
|
17274
|
+
tado_metadata?:
|
|
17275
|
+
| {
|
|
17276
|
+
serial_number: string
|
|
17277
|
+
device_name: string
|
|
17278
|
+
device_type: string
|
|
17279
|
+
}
|
|
17280
|
+
| undefined
|
|
17214
17281
|
}) &
|
|
17215
17282
|
({
|
|
17216
17283
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -17512,6 +17579,7 @@ export interface Routes {
|
|
|
17512
17579
|
| 'ecobee_thermostat'
|
|
17513
17580
|
| 'nest_thermostat'
|
|
17514
17581
|
| 'honeywell_resideo_thermostat'
|
|
17582
|
+
| 'tado_thermostat'
|
|
17515
17583
|
)
|
|
17516
17584
|
| ('ios_phone' | 'android_phone')
|
|
17517
17585
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -17906,6 +17974,13 @@ export interface Routes {
|
|
|
17906
17974
|
encoder_name: string
|
|
17907
17975
|
}
|
|
17908
17976
|
| undefined
|
|
17977
|
+
tado_metadata?:
|
|
17978
|
+
| {
|
|
17979
|
+
serial_number: string
|
|
17980
|
+
device_name: string
|
|
17981
|
+
device_type: string
|
|
17982
|
+
}
|
|
17983
|
+
| undefined
|
|
17909
17984
|
}) &
|
|
17910
17985
|
({
|
|
17911
17986
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -18279,7 +18354,7 @@ export interface Routes {
|
|
|
18279
18354
|
common_acs_entrance_ids?: string[] | undefined
|
|
18280
18355
|
}
|
|
18281
18356
|
| undefined
|
|
18282
|
-
}
|
|
18357
|
+
} | null
|
|
18283
18358
|
/** Matching acs_credential currently encoded on this card. */
|
|
18284
18359
|
acs_credential_on_seam:
|
|
18285
18360
|
| (
|
|
@@ -18498,7 +18573,9 @@ export interface Routes {
|
|
|
18498
18573
|
)
|
|
18499
18574
|
| null
|
|
18500
18575
|
warnings: Array<{
|
|
18501
|
-
warning_code:
|
|
18576
|
+
warning_code:
|
|
18577
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
18578
|
+
| 'acs_credential_on_seam_not_found'
|
|
18502
18579
|
warning_message: string
|
|
18503
18580
|
}>
|
|
18504
18581
|
}
|
|
@@ -19301,7 +19378,7 @@ export interface Routes {
|
|
|
19301
19378
|
common_acs_entrance_ids?: string[] | undefined
|
|
19302
19379
|
}
|
|
19303
19380
|
| undefined
|
|
19304
|
-
}
|
|
19381
|
+
} | null
|
|
19305
19382
|
/** Matching acs_credential currently encoded on this card. */
|
|
19306
19383
|
acs_credential_on_seam:
|
|
19307
19384
|
| (
|
|
@@ -19520,7 +19597,9 @@ export interface Routes {
|
|
|
19520
19597
|
)
|
|
19521
19598
|
| null
|
|
19522
19599
|
warnings: Array<{
|
|
19523
|
-
warning_code:
|
|
19600
|
+
warning_code:
|
|
19601
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
19602
|
+
| 'acs_credential_on_seam_not_found'
|
|
19524
19603
|
warning_message: string
|
|
19525
19604
|
}>
|
|
19526
19605
|
}
|
|
@@ -20297,6 +20376,7 @@ export interface Routes {
|
|
|
20297
20376
|
| 'ecobee_thermostat'
|
|
20298
20377
|
| 'nest_thermostat'
|
|
20299
20378
|
| 'honeywell_resideo_thermostat'
|
|
20379
|
+
| 'tado_thermostat'
|
|
20300
20380
|
)
|
|
20301
20381
|
| ('ios_phone' | 'android_phone')
|
|
20302
20382
|
)
|
|
@@ -20338,6 +20418,7 @@ export interface Routes {
|
|
|
20338
20418
|
| 'ecobee_thermostat'
|
|
20339
20419
|
| 'nest_thermostat'
|
|
20340
20420
|
| 'honeywell_resideo_thermostat'
|
|
20421
|
+
| 'tado_thermostat'
|
|
20341
20422
|
)
|
|
20342
20423
|
| ('ios_phone' | 'android_phone')
|
|
20343
20424
|
>
|
|
@@ -20380,6 +20461,7 @@ export interface Routes {
|
|
|
20380
20461
|
| 'tedee'
|
|
20381
20462
|
| 'honeywell_resideo'
|
|
20382
20463
|
| 'akiles'
|
|
20464
|
+
| 'tado'
|
|
20383
20465
|
)
|
|
20384
20466
|
| undefined
|
|
20385
20467
|
/** Array of device IDs by which to filter devices. */
|
|
@@ -20466,6 +20548,7 @@ export interface Routes {
|
|
|
20466
20548
|
| 'ecobee_thermostat'
|
|
20467
20549
|
| 'nest_thermostat'
|
|
20468
20550
|
| 'honeywell_resideo_thermostat'
|
|
20551
|
+
| 'tado_thermostat'
|
|
20469
20552
|
)
|
|
20470
20553
|
| ('ios_phone' | 'android_phone')
|
|
20471
20554
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -20860,6 +20943,13 @@ export interface Routes {
|
|
|
20860
20943
|
encoder_name: string
|
|
20861
20944
|
}
|
|
20862
20945
|
| undefined
|
|
20946
|
+
tado_metadata?:
|
|
20947
|
+
| {
|
|
20948
|
+
serial_number: string
|
|
20949
|
+
device_name: string
|
|
20950
|
+
device_type: string
|
|
20951
|
+
}
|
|
20952
|
+
| undefined
|
|
20863
20953
|
}) &
|
|
20864
20954
|
({
|
|
20865
20955
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -21161,6 +21251,7 @@ export interface Routes {
|
|
|
21161
21251
|
| 'ecobee_thermostat'
|
|
21162
21252
|
| 'nest_thermostat'
|
|
21163
21253
|
| 'honeywell_resideo_thermostat'
|
|
21254
|
+
| 'tado_thermostat'
|
|
21164
21255
|
)
|
|
21165
21256
|
| ('ios_phone' | 'android_phone')
|
|
21166
21257
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -21555,6 +21646,13 @@ export interface Routes {
|
|
|
21555
21646
|
encoder_name: string
|
|
21556
21647
|
}
|
|
21557
21648
|
| undefined
|
|
21649
|
+
tado_metadata?:
|
|
21650
|
+
| {
|
|
21651
|
+
serial_number: string
|
|
21652
|
+
device_name: string
|
|
21653
|
+
device_type: string
|
|
21654
|
+
}
|
|
21655
|
+
| undefined
|
|
21558
21656
|
}) &
|
|
21559
21657
|
({
|
|
21560
21658
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -21933,7 +22031,7 @@ export interface Routes {
|
|
|
21933
22031
|
common_acs_entrance_ids?: string[] | undefined
|
|
21934
22032
|
}
|
|
21935
22033
|
| undefined
|
|
21936
|
-
}
|
|
22034
|
+
} | null
|
|
21937
22035
|
/** Matching acs_credential currently encoded on this card. */
|
|
21938
22036
|
acs_credential_on_seam:
|
|
21939
22037
|
| (
|
|
@@ -22152,7 +22250,9 @@ export interface Routes {
|
|
|
22152
22250
|
)
|
|
22153
22251
|
| null
|
|
22154
22252
|
warnings: Array<{
|
|
22155
|
-
warning_code:
|
|
22253
|
+
warning_code:
|
|
22254
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
22255
|
+
| 'acs_credential_on_seam_not_found'
|
|
22156
22256
|
warning_message: string
|
|
22157
22257
|
}>
|
|
22158
22258
|
}
|
|
@@ -22965,7 +23065,7 @@ export interface Routes {
|
|
|
22965
23065
|
common_acs_entrance_ids?: string[] | undefined
|
|
22966
23066
|
}
|
|
22967
23067
|
| undefined
|
|
22968
|
-
}
|
|
23068
|
+
} | null
|
|
22969
23069
|
/** Matching acs_credential currently encoded on this card. */
|
|
22970
23070
|
acs_credential_on_seam:
|
|
22971
23071
|
| (
|
|
@@ -23184,7 +23284,9 @@ export interface Routes {
|
|
|
23184
23284
|
)
|
|
23185
23285
|
| null
|
|
23186
23286
|
warnings: Array<{
|
|
23187
|
-
warning_code:
|
|
23287
|
+
warning_code:
|
|
23288
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
23289
|
+
| 'acs_credential_on_seam_not_found'
|
|
23188
23290
|
warning_message: string
|
|
23189
23291
|
}>
|
|
23190
23292
|
}
|
|
@@ -24036,7 +24138,7 @@ export interface Routes {
|
|
|
24036
24138
|
common_acs_entrance_ids?: string[] | undefined
|
|
24037
24139
|
}
|
|
24038
24140
|
| undefined
|
|
24039
|
-
}
|
|
24141
|
+
} | null
|
|
24040
24142
|
/** Matching acs_credential currently encoded on this card. */
|
|
24041
24143
|
acs_credential_on_seam:
|
|
24042
24144
|
| (
|
|
@@ -24255,7 +24357,9 @@ export interface Routes {
|
|
|
24255
24357
|
)
|
|
24256
24358
|
| null
|
|
24257
24359
|
warnings: Array<{
|
|
24258
|
-
warning_code:
|
|
24360
|
+
warning_code:
|
|
24361
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
24362
|
+
| 'acs_credential_on_seam_not_found'
|
|
24259
24363
|
warning_message: string
|
|
24260
24364
|
}>
|
|
24261
24365
|
}
|
|
@@ -25266,7 +25370,7 @@ export interface Routes {
|
|
|
25266
25370
|
common_acs_entrance_ids?: string[] | undefined
|
|
25267
25371
|
}
|
|
25268
25372
|
| undefined
|
|
25269
|
-
}
|
|
25373
|
+
} | null
|
|
25270
25374
|
/** Matching acs_credential currently encoded on this card. */
|
|
25271
25375
|
acs_credential_on_seam:
|
|
25272
25376
|
| (
|
|
@@ -25485,7 +25589,9 @@ export interface Routes {
|
|
|
25485
25589
|
)
|
|
25486
25590
|
| null
|
|
25487
25591
|
warnings: Array<{
|
|
25488
|
-
warning_code:
|
|
25592
|
+
warning_code:
|
|
25593
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
25594
|
+
| 'acs_credential_on_seam_not_found'
|
|
25489
25595
|
warning_message: string
|
|
25490
25596
|
}>
|
|
25491
25597
|
}
|
|
@@ -26294,7 +26400,7 @@ export interface Routes {
|
|
|
26294
26400
|
common_acs_entrance_ids?: string[] | undefined
|
|
26295
26401
|
}
|
|
26296
26402
|
| undefined
|
|
26297
|
-
}
|
|
26403
|
+
} | null
|
|
26298
26404
|
/** Matching acs_credential currently encoded on this card. */
|
|
26299
26405
|
acs_credential_on_seam:
|
|
26300
26406
|
| (
|
|
@@ -26513,7 +26619,9 @@ export interface Routes {
|
|
|
26513
26619
|
)
|
|
26514
26620
|
| null
|
|
26515
26621
|
warnings: Array<{
|
|
26516
|
-
warning_code:
|
|
26622
|
+
warning_code:
|
|
26623
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
26624
|
+
| 'acs_credential_on_seam_not_found'
|
|
26517
26625
|
warning_message: string
|
|
26518
26626
|
}>
|
|
26519
26627
|
}
|
|
@@ -27302,6 +27410,7 @@ export interface Routes {
|
|
|
27302
27410
|
| 'ecobee_thermostat'
|
|
27303
27411
|
| 'nest_thermostat'
|
|
27304
27412
|
| 'honeywell_resideo_thermostat'
|
|
27413
|
+
| 'tado_thermostat'
|
|
27305
27414
|
)
|
|
27306
27415
|
| ('ios_phone' | 'android_phone')
|
|
27307
27416
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -27696,6 +27805,13 @@ export interface Routes {
|
|
|
27696
27805
|
encoder_name: string
|
|
27697
27806
|
}
|
|
27698
27807
|
| undefined
|
|
27808
|
+
tado_metadata?:
|
|
27809
|
+
| {
|
|
27810
|
+
serial_number: string
|
|
27811
|
+
device_name: string
|
|
27812
|
+
device_type: string
|
|
27813
|
+
}
|
|
27814
|
+
| undefined
|
|
27699
27815
|
}) &
|
|
27700
27816
|
({
|
|
27701
27817
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -28075,7 +28191,7 @@ export interface Routes {
|
|
|
28075
28191
|
common_acs_entrance_ids?: string[] | undefined
|
|
28076
28192
|
}
|
|
28077
28193
|
| undefined
|
|
28078
|
-
}
|
|
28194
|
+
} | null
|
|
28079
28195
|
/** Matching acs_credential currently encoded on this card. */
|
|
28080
28196
|
acs_credential_on_seam:
|
|
28081
28197
|
| (
|
|
@@ -28294,7 +28410,9 @@ export interface Routes {
|
|
|
28294
28410
|
)
|
|
28295
28411
|
| null
|
|
28296
28412
|
warnings: Array<{
|
|
28297
|
-
warning_code:
|
|
28413
|
+
warning_code:
|
|
28414
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
28415
|
+
| 'acs_credential_on_seam_not_found'
|
|
28298
28416
|
warning_message: string
|
|
28299
28417
|
}>
|
|
28300
28418
|
}
|
|
@@ -29107,7 +29225,7 @@ export interface Routes {
|
|
|
29107
29225
|
common_acs_entrance_ids?: string[] | undefined
|
|
29108
29226
|
}
|
|
29109
29227
|
| undefined
|
|
29110
|
-
}
|
|
29228
|
+
} | null
|
|
29111
29229
|
/** Matching acs_credential currently encoded on this card. */
|
|
29112
29230
|
acs_credential_on_seam:
|
|
29113
29231
|
| (
|
|
@@ -29326,7 +29444,9 @@ export interface Routes {
|
|
|
29326
29444
|
)
|
|
29327
29445
|
| null
|
|
29328
29446
|
warnings: Array<{
|
|
29329
|
-
warning_code:
|
|
29447
|
+
warning_code:
|
|
29448
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
29449
|
+
| 'acs_credential_on_seam_not_found'
|
|
29330
29450
|
warning_message: string
|
|
29331
29451
|
}>
|
|
29332
29452
|
}
|
|
@@ -30069,6 +30189,7 @@ export interface Routes {
|
|
|
30069
30189
|
| 'ecobee_thermostat'
|
|
30070
30190
|
| 'nest_thermostat'
|
|
30071
30191
|
| 'honeywell_resideo_thermostat'
|
|
30192
|
+
| 'tado_thermostat'
|
|
30072
30193
|
)
|
|
30073
30194
|
| ('ios_phone' | 'android_phone')
|
|
30074
30195
|
)
|
|
@@ -30110,6 +30231,7 @@ export interface Routes {
|
|
|
30110
30231
|
| 'ecobee_thermostat'
|
|
30111
30232
|
| 'nest_thermostat'
|
|
30112
30233
|
| 'honeywell_resideo_thermostat'
|
|
30234
|
+
| 'tado_thermostat'
|
|
30113
30235
|
)
|
|
30114
30236
|
| ('ios_phone' | 'android_phone')
|
|
30115
30237
|
>
|
|
@@ -30152,6 +30274,7 @@ export interface Routes {
|
|
|
30152
30274
|
| 'tedee'
|
|
30153
30275
|
| 'honeywell_resideo'
|
|
30154
30276
|
| 'akiles'
|
|
30277
|
+
| 'tado'
|
|
30155
30278
|
)
|
|
30156
30279
|
| undefined
|
|
30157
30280
|
/** Array of device IDs by which to filter devices. */
|
|
@@ -30238,6 +30361,7 @@ export interface Routes {
|
|
|
30238
30361
|
| 'ecobee_thermostat'
|
|
30239
30362
|
| 'nest_thermostat'
|
|
30240
30363
|
| 'honeywell_resideo_thermostat'
|
|
30364
|
+
| 'tado_thermostat'
|
|
30241
30365
|
)
|
|
30242
30366
|
| ('ios_phone' | 'android_phone')
|
|
30243
30367
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -30632,6 +30756,13 @@ export interface Routes {
|
|
|
30632
30756
|
encoder_name: string
|
|
30633
30757
|
}
|
|
30634
30758
|
| undefined
|
|
30759
|
+
tado_metadata?:
|
|
30760
|
+
| {
|
|
30761
|
+
serial_number: string
|
|
30762
|
+
device_name: string
|
|
30763
|
+
device_type: string
|
|
30764
|
+
}
|
|
30765
|
+
| undefined
|
|
30635
30766
|
}) &
|
|
30636
30767
|
({
|
|
30637
30768
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -30933,6 +31064,7 @@ export interface Routes {
|
|
|
30933
31064
|
| 'ecobee_thermostat'
|
|
30934
31065
|
| 'nest_thermostat'
|
|
30935
31066
|
| 'honeywell_resideo_thermostat'
|
|
31067
|
+
| 'tado_thermostat'
|
|
30936
31068
|
)
|
|
30937
31069
|
| ('ios_phone' | 'android_phone')
|
|
30938
31070
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -31327,6 +31459,13 @@ export interface Routes {
|
|
|
31327
31459
|
encoder_name: string
|
|
31328
31460
|
}
|
|
31329
31461
|
| undefined
|
|
31462
|
+
tado_metadata?:
|
|
31463
|
+
| {
|
|
31464
|
+
serial_number: string
|
|
31465
|
+
device_name: string
|
|
31466
|
+
device_type: string
|
|
31467
|
+
}
|
|
31468
|
+
| undefined
|
|
31330
31469
|
}) &
|
|
31331
31470
|
({
|
|
31332
31471
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -31702,7 +31841,7 @@ export interface Routes {
|
|
|
31702
31841
|
common_acs_entrance_ids?: string[] | undefined
|
|
31703
31842
|
}
|
|
31704
31843
|
| undefined
|
|
31705
|
-
}
|
|
31844
|
+
} | null
|
|
31706
31845
|
/** Matching acs_credential currently encoded on this card. */
|
|
31707
31846
|
acs_credential_on_seam:
|
|
31708
31847
|
| (
|
|
@@ -31921,7 +32060,9 @@ export interface Routes {
|
|
|
31921
32060
|
)
|
|
31922
32061
|
| null
|
|
31923
32062
|
warnings: Array<{
|
|
31924
|
-
warning_code:
|
|
32063
|
+
warning_code:
|
|
32064
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
32065
|
+
| 'acs_credential_on_seam_not_found'
|
|
31925
32066
|
warning_message: string
|
|
31926
32067
|
}>
|
|
31927
32068
|
}
|
|
@@ -32899,7 +33040,7 @@ export interface Routes {
|
|
|
32899
33040
|
common_acs_entrance_ids?: string[] | undefined
|
|
32900
33041
|
}
|
|
32901
33042
|
| undefined
|
|
32902
|
-
}
|
|
33043
|
+
} | null
|
|
32903
33044
|
/** Matching acs_credential currently encoded on this card. */
|
|
32904
33045
|
acs_credential_on_seam:
|
|
32905
33046
|
| (
|
|
@@ -33118,7 +33259,9 @@ export interface Routes {
|
|
|
33118
33259
|
)
|
|
33119
33260
|
| null
|
|
33120
33261
|
warnings: Array<{
|
|
33121
|
-
warning_code:
|
|
33262
|
+
warning_code:
|
|
33263
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
33264
|
+
| 'acs_credential_on_seam_not_found'
|
|
33122
33265
|
warning_message: string
|
|
33123
33266
|
}>
|
|
33124
33267
|
}
|
|
@@ -33954,7 +34097,7 @@ export interface Routes {
|
|
|
33954
34097
|
common_acs_entrance_ids?: string[] | undefined
|
|
33955
34098
|
}
|
|
33956
34099
|
| undefined
|
|
33957
|
-
}
|
|
34100
|
+
} | null
|
|
33958
34101
|
/** Matching acs_credential currently encoded on this card. */
|
|
33959
34102
|
acs_credential_on_seam:
|
|
33960
34103
|
| (
|
|
@@ -34173,7 +34316,9 @@ export interface Routes {
|
|
|
34173
34316
|
)
|
|
34174
34317
|
| null
|
|
34175
34318
|
warnings: Array<{
|
|
34176
|
-
warning_code:
|
|
34319
|
+
warning_code:
|
|
34320
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
34321
|
+
| 'acs_credential_on_seam_not_found'
|
|
34177
34322
|
warning_message: string
|
|
34178
34323
|
}>
|
|
34179
34324
|
}
|
|
@@ -35198,6 +35343,7 @@ export interface Routes {
|
|
|
35198
35343
|
| 'ecobee_thermostat'
|
|
35199
35344
|
| 'nest_thermostat'
|
|
35200
35345
|
| 'honeywell_resideo_thermostat'
|
|
35346
|
+
| 'tado_thermostat'
|
|
35201
35347
|
)
|
|
35202
35348
|
| ('ios_phone' | 'android_phone')
|
|
35203
35349
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -35592,6 +35738,13 @@ export interface Routes {
|
|
|
35592
35738
|
encoder_name: string
|
|
35593
35739
|
}
|
|
35594
35740
|
| undefined
|
|
35741
|
+
tado_metadata?:
|
|
35742
|
+
| {
|
|
35743
|
+
serial_number: string
|
|
35744
|
+
device_name: string
|
|
35745
|
+
device_type: string
|
|
35746
|
+
}
|
|
35747
|
+
| undefined
|
|
35595
35748
|
}) &
|
|
35596
35749
|
({
|
|
35597
35750
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -35895,6 +36048,7 @@ export interface Routes {
|
|
|
35895
36048
|
| 'ecobee_thermostat'
|
|
35896
36049
|
| 'nest_thermostat'
|
|
35897
36050
|
| 'honeywell_resideo_thermostat'
|
|
36051
|
+
| 'tado_thermostat'
|
|
35898
36052
|
)
|
|
35899
36053
|
| ('ios_phone' | 'android_phone')
|
|
35900
36054
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -36289,6 +36443,13 @@ export interface Routes {
|
|
|
36289
36443
|
encoder_name: string
|
|
36290
36444
|
}
|
|
36291
36445
|
| undefined
|
|
36446
|
+
tado_metadata?:
|
|
36447
|
+
| {
|
|
36448
|
+
serial_number: string
|
|
36449
|
+
device_name: string
|
|
36450
|
+
device_type: string
|
|
36451
|
+
}
|
|
36452
|
+
| undefined
|
|
36292
36453
|
}) &
|
|
36293
36454
|
({
|
|
36294
36455
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -37127,7 +37288,7 @@ export interface Routes {
|
|
|
37127
37288
|
common_acs_entrance_ids?: string[] | undefined
|
|
37128
37289
|
}
|
|
37129
37290
|
| undefined
|
|
37130
|
-
}
|
|
37291
|
+
} | null
|
|
37131
37292
|
/** Matching acs_credential currently encoded on this card. */
|
|
37132
37293
|
acs_credential_on_seam:
|
|
37133
37294
|
| (
|
|
@@ -37346,7 +37507,9 @@ export interface Routes {
|
|
|
37346
37507
|
)
|
|
37347
37508
|
| null
|
|
37348
37509
|
warnings: Array<{
|
|
37349
|
-
warning_code:
|
|
37510
|
+
warning_code:
|
|
37511
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
37512
|
+
| 'acs_credential_on_seam_not_found'
|
|
37350
37513
|
warning_message: string
|
|
37351
37514
|
}>
|
|
37352
37515
|
}
|