@seamapi/types 1.305.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 +78 -28
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +271 -95
- 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-provider.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-provider.js +1 -0
- package/lib/seam/connect/models/devices/device-provider.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 +56 -2
- package/lib/seam/connect/openapi.js +44 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +139 -74
- package/package.json +2 -2
- 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-provider.ts +1 -0
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +44 -2
- package/src/lib/seam/connect/route-types.ts +207 -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
|
}
|
|
@@ -12442,6 +12458,7 @@ export interface Routes {
|
|
|
12442
12458
|
| 'akiles'
|
|
12443
12459
|
| 'assa_abloy_vostio'
|
|
12444
12460
|
| 'assa_abloy_vostio_credential_service'
|
|
12461
|
+
| 'tado'
|
|
12445
12462
|
| 'yale_access'
|
|
12446
12463
|
| 'hid_cm'
|
|
12447
12464
|
| 'google_nest'
|
|
@@ -12776,6 +12793,7 @@ export interface Routes {
|
|
|
12776
12793
|
| 'ecobee_thermostat'
|
|
12777
12794
|
| 'nest_thermostat'
|
|
12778
12795
|
| 'honeywell_resideo_thermostat'
|
|
12796
|
+
| 'tado_thermostat'
|
|
12779
12797
|
)
|
|
12780
12798
|
| ('ios_phone' | 'android_phone')
|
|
12781
12799
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -13170,6 +13188,13 @@ export interface Routes {
|
|
|
13170
13188
|
encoder_name: string
|
|
13171
13189
|
}
|
|
13172
13190
|
| undefined
|
|
13191
|
+
tado_metadata?:
|
|
13192
|
+
| {
|
|
13193
|
+
serial_number: string
|
|
13194
|
+
device_name: string
|
|
13195
|
+
device_type: string
|
|
13196
|
+
}
|
|
13197
|
+
| undefined
|
|
13173
13198
|
}) &
|
|
13174
13199
|
({
|
|
13175
13200
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -13483,6 +13508,7 @@ export interface Routes {
|
|
|
13483
13508
|
| 'ecobee_thermostat'
|
|
13484
13509
|
| 'nest_thermostat'
|
|
13485
13510
|
| 'honeywell_resideo_thermostat'
|
|
13511
|
+
| 'tado_thermostat'
|
|
13486
13512
|
)
|
|
13487
13513
|
| ('ios_phone' | 'android_phone')
|
|
13488
13514
|
)
|
|
@@ -13524,6 +13550,7 @@ export interface Routes {
|
|
|
13524
13550
|
| 'ecobee_thermostat'
|
|
13525
13551
|
| 'nest_thermostat'
|
|
13526
13552
|
| 'honeywell_resideo_thermostat'
|
|
13553
|
+
| 'tado_thermostat'
|
|
13527
13554
|
)
|
|
13528
13555
|
| ('ios_phone' | 'android_phone')
|
|
13529
13556
|
>
|
|
@@ -13566,6 +13593,7 @@ export interface Routes {
|
|
|
13566
13593
|
| 'tedee'
|
|
13567
13594
|
| 'honeywell_resideo'
|
|
13568
13595
|
| 'akiles'
|
|
13596
|
+
| 'tado'
|
|
13569
13597
|
)
|
|
13570
13598
|
| undefined
|
|
13571
13599
|
/** Array of device IDs by which to filter devices. */
|
|
@@ -13652,6 +13680,7 @@ export interface Routes {
|
|
|
13652
13680
|
| 'ecobee_thermostat'
|
|
13653
13681
|
| 'nest_thermostat'
|
|
13654
13682
|
| 'honeywell_resideo_thermostat'
|
|
13683
|
+
| 'tado_thermostat'
|
|
13655
13684
|
)
|
|
13656
13685
|
| ('ios_phone' | 'android_phone')
|
|
13657
13686
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -14046,6 +14075,13 @@ export interface Routes {
|
|
|
14046
14075
|
encoder_name: string
|
|
14047
14076
|
}
|
|
14048
14077
|
| undefined
|
|
14078
|
+
tado_metadata?:
|
|
14079
|
+
| {
|
|
14080
|
+
serial_number: string
|
|
14081
|
+
device_name: string
|
|
14082
|
+
device_type: string
|
|
14083
|
+
}
|
|
14084
|
+
| undefined
|
|
14049
14085
|
}) &
|
|
14050
14086
|
({
|
|
14051
14087
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -14373,6 +14409,7 @@ export interface Routes {
|
|
|
14373
14409
|
| 'akiles'
|
|
14374
14410
|
| 'assa_abloy_vostio'
|
|
14375
14411
|
| 'assa_abloy_vostio_credential_service'
|
|
14412
|
+
| 'tado'
|
|
14376
14413
|
display_name: string
|
|
14377
14414
|
image_url: string
|
|
14378
14415
|
provider_categories: Array<
|
|
@@ -14479,6 +14516,7 @@ export interface Routes {
|
|
|
14479
14516
|
| 'ecobee_thermostat'
|
|
14480
14517
|
| 'nest_thermostat'
|
|
14481
14518
|
| 'honeywell_resideo_thermostat'
|
|
14519
|
+
| 'tado_thermostat'
|
|
14482
14520
|
)
|
|
14483
14521
|
| ('ios_phone' | 'android_phone')
|
|
14484
14522
|
/** Unique identifier for the account associated with the device. */
|
|
@@ -14641,6 +14679,7 @@ export interface Routes {
|
|
|
14641
14679
|
| 'ecobee_thermostat'
|
|
14642
14680
|
| 'nest_thermostat'
|
|
14643
14681
|
| 'honeywell_resideo_thermostat'
|
|
14682
|
+
| 'tado_thermostat'
|
|
14644
14683
|
)
|
|
14645
14684
|
| ('ios_phone' | 'android_phone')
|
|
14646
14685
|
)
|
|
@@ -14682,6 +14721,7 @@ export interface Routes {
|
|
|
14682
14721
|
| 'ecobee_thermostat'
|
|
14683
14722
|
| 'nest_thermostat'
|
|
14684
14723
|
| 'honeywell_resideo_thermostat'
|
|
14724
|
+
| 'tado_thermostat'
|
|
14685
14725
|
)
|
|
14686
14726
|
| ('ios_phone' | 'android_phone')
|
|
14687
14727
|
>
|
|
@@ -14724,6 +14764,7 @@ export interface Routes {
|
|
|
14724
14764
|
| 'tedee'
|
|
14725
14765
|
| 'honeywell_resideo'
|
|
14726
14766
|
| 'akiles'
|
|
14767
|
+
| 'tado'
|
|
14727
14768
|
)
|
|
14728
14769
|
| undefined
|
|
14729
14770
|
/** Array of device IDs by which to filter devices. */
|
|
@@ -14810,6 +14851,7 @@ export interface Routes {
|
|
|
14810
14851
|
| 'ecobee_thermostat'
|
|
14811
14852
|
| 'nest_thermostat'
|
|
14812
14853
|
| 'honeywell_resideo_thermostat'
|
|
14854
|
+
| 'tado_thermostat'
|
|
14813
14855
|
)
|
|
14814
14856
|
| ('ios_phone' | 'android_phone')
|
|
14815
14857
|
/** Unique identifier for the account associated with the device. */
|
|
@@ -15244,6 +15286,7 @@ export interface Routes {
|
|
|
15244
15286
|
| 'ecobee_thermostat'
|
|
15245
15287
|
| 'nest_thermostat'
|
|
15246
15288
|
| 'honeywell_resideo_thermostat'
|
|
15289
|
+
| 'tado_thermostat'
|
|
15247
15290
|
)
|
|
15248
15291
|
| ('ios_phone' | 'android_phone')
|
|
15249
15292
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -15638,6 +15681,13 @@ export interface Routes {
|
|
|
15638
15681
|
encoder_name: string
|
|
15639
15682
|
}
|
|
15640
15683
|
| undefined
|
|
15684
|
+
tado_metadata?:
|
|
15685
|
+
| {
|
|
15686
|
+
serial_number: string
|
|
15687
|
+
device_name: string
|
|
15688
|
+
device_type: string
|
|
15689
|
+
}
|
|
15690
|
+
| undefined
|
|
15641
15691
|
}) &
|
|
15642
15692
|
({
|
|
15643
15693
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -15939,6 +15989,7 @@ export interface Routes {
|
|
|
15939
15989
|
| 'ecobee_thermostat'
|
|
15940
15990
|
| 'nest_thermostat'
|
|
15941
15991
|
| 'honeywell_resideo_thermostat'
|
|
15992
|
+
| 'tado_thermostat'
|
|
15942
15993
|
)
|
|
15943
15994
|
| ('ios_phone' | 'android_phone')
|
|
15944
15995
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -16333,6 +16384,13 @@ export interface Routes {
|
|
|
16333
16384
|
encoder_name: string
|
|
16334
16385
|
}
|
|
16335
16386
|
| undefined
|
|
16387
|
+
tado_metadata?:
|
|
16388
|
+
| {
|
|
16389
|
+
serial_number: string
|
|
16390
|
+
device_name: string
|
|
16391
|
+
device_type: string
|
|
16392
|
+
}
|
|
16393
|
+
| undefined
|
|
16336
16394
|
}) &
|
|
16337
16395
|
({
|
|
16338
16396
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -16646,6 +16704,7 @@ export interface Routes {
|
|
|
16646
16704
|
| 'ecobee_thermostat'
|
|
16647
16705
|
| 'nest_thermostat'
|
|
16648
16706
|
| 'honeywell_resideo_thermostat'
|
|
16707
|
+
| 'tado_thermostat'
|
|
16649
16708
|
)
|
|
16650
16709
|
| ('ios_phone' | 'android_phone')
|
|
16651
16710
|
)
|
|
@@ -16687,6 +16746,7 @@ export interface Routes {
|
|
|
16687
16746
|
| 'ecobee_thermostat'
|
|
16688
16747
|
| 'nest_thermostat'
|
|
16689
16748
|
| 'honeywell_resideo_thermostat'
|
|
16749
|
+
| 'tado_thermostat'
|
|
16690
16750
|
)
|
|
16691
16751
|
| ('ios_phone' | 'android_phone')
|
|
16692
16752
|
>
|
|
@@ -16729,6 +16789,7 @@ export interface Routes {
|
|
|
16729
16789
|
| 'tedee'
|
|
16730
16790
|
| 'honeywell_resideo'
|
|
16731
16791
|
| 'akiles'
|
|
16792
|
+
| 'tado'
|
|
16732
16793
|
)
|
|
16733
16794
|
| undefined
|
|
16734
16795
|
/** Array of device IDs by which to filter devices. */
|
|
@@ -16815,6 +16876,7 @@ export interface Routes {
|
|
|
16815
16876
|
| 'ecobee_thermostat'
|
|
16816
16877
|
| 'nest_thermostat'
|
|
16817
16878
|
| 'honeywell_resideo_thermostat'
|
|
16879
|
+
| 'tado_thermostat'
|
|
16818
16880
|
)
|
|
16819
16881
|
| ('ios_phone' | 'android_phone')
|
|
16820
16882
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -17209,6 +17271,13 @@ export interface Routes {
|
|
|
17209
17271
|
encoder_name: string
|
|
17210
17272
|
}
|
|
17211
17273
|
| undefined
|
|
17274
|
+
tado_metadata?:
|
|
17275
|
+
| {
|
|
17276
|
+
serial_number: string
|
|
17277
|
+
device_name: string
|
|
17278
|
+
device_type: string
|
|
17279
|
+
}
|
|
17280
|
+
| undefined
|
|
17212
17281
|
}) &
|
|
17213
17282
|
({
|
|
17214
17283
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -17510,6 +17579,7 @@ export interface Routes {
|
|
|
17510
17579
|
| 'ecobee_thermostat'
|
|
17511
17580
|
| 'nest_thermostat'
|
|
17512
17581
|
| 'honeywell_resideo_thermostat'
|
|
17582
|
+
| 'tado_thermostat'
|
|
17513
17583
|
)
|
|
17514
17584
|
| ('ios_phone' | 'android_phone')
|
|
17515
17585
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -17904,6 +17974,13 @@ export interface Routes {
|
|
|
17904
17974
|
encoder_name: string
|
|
17905
17975
|
}
|
|
17906
17976
|
| undefined
|
|
17977
|
+
tado_metadata?:
|
|
17978
|
+
| {
|
|
17979
|
+
serial_number: string
|
|
17980
|
+
device_name: string
|
|
17981
|
+
device_type: string
|
|
17982
|
+
}
|
|
17983
|
+
| undefined
|
|
17907
17984
|
}) &
|
|
17908
17985
|
({
|
|
17909
17986
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -18277,7 +18354,7 @@ export interface Routes {
|
|
|
18277
18354
|
common_acs_entrance_ids?: string[] | undefined
|
|
18278
18355
|
}
|
|
18279
18356
|
| undefined
|
|
18280
|
-
}
|
|
18357
|
+
} | null
|
|
18281
18358
|
/** Matching acs_credential currently encoded on this card. */
|
|
18282
18359
|
acs_credential_on_seam:
|
|
18283
18360
|
| (
|
|
@@ -18496,7 +18573,9 @@ export interface Routes {
|
|
|
18496
18573
|
)
|
|
18497
18574
|
| null
|
|
18498
18575
|
warnings: Array<{
|
|
18499
|
-
warning_code:
|
|
18576
|
+
warning_code:
|
|
18577
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
18578
|
+
| 'acs_credential_on_seam_not_found'
|
|
18500
18579
|
warning_message: string
|
|
18501
18580
|
}>
|
|
18502
18581
|
}
|
|
@@ -19299,7 +19378,7 @@ export interface Routes {
|
|
|
19299
19378
|
common_acs_entrance_ids?: string[] | undefined
|
|
19300
19379
|
}
|
|
19301
19380
|
| undefined
|
|
19302
|
-
}
|
|
19381
|
+
} | null
|
|
19303
19382
|
/** Matching acs_credential currently encoded on this card. */
|
|
19304
19383
|
acs_credential_on_seam:
|
|
19305
19384
|
| (
|
|
@@ -19518,7 +19597,9 @@ export interface Routes {
|
|
|
19518
19597
|
)
|
|
19519
19598
|
| null
|
|
19520
19599
|
warnings: Array<{
|
|
19521
|
-
warning_code:
|
|
19600
|
+
warning_code:
|
|
19601
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
19602
|
+
| 'acs_credential_on_seam_not_found'
|
|
19522
19603
|
warning_message: string
|
|
19523
19604
|
}>
|
|
19524
19605
|
}
|
|
@@ -20295,6 +20376,7 @@ export interface Routes {
|
|
|
20295
20376
|
| 'ecobee_thermostat'
|
|
20296
20377
|
| 'nest_thermostat'
|
|
20297
20378
|
| 'honeywell_resideo_thermostat'
|
|
20379
|
+
| 'tado_thermostat'
|
|
20298
20380
|
)
|
|
20299
20381
|
| ('ios_phone' | 'android_phone')
|
|
20300
20382
|
)
|
|
@@ -20336,6 +20418,7 @@ export interface Routes {
|
|
|
20336
20418
|
| 'ecobee_thermostat'
|
|
20337
20419
|
| 'nest_thermostat'
|
|
20338
20420
|
| 'honeywell_resideo_thermostat'
|
|
20421
|
+
| 'tado_thermostat'
|
|
20339
20422
|
)
|
|
20340
20423
|
| ('ios_phone' | 'android_phone')
|
|
20341
20424
|
>
|
|
@@ -20378,6 +20461,7 @@ export interface Routes {
|
|
|
20378
20461
|
| 'tedee'
|
|
20379
20462
|
| 'honeywell_resideo'
|
|
20380
20463
|
| 'akiles'
|
|
20464
|
+
| 'tado'
|
|
20381
20465
|
)
|
|
20382
20466
|
| undefined
|
|
20383
20467
|
/** Array of device IDs by which to filter devices. */
|
|
@@ -20464,6 +20548,7 @@ export interface Routes {
|
|
|
20464
20548
|
| 'ecobee_thermostat'
|
|
20465
20549
|
| 'nest_thermostat'
|
|
20466
20550
|
| 'honeywell_resideo_thermostat'
|
|
20551
|
+
| 'tado_thermostat'
|
|
20467
20552
|
)
|
|
20468
20553
|
| ('ios_phone' | 'android_phone')
|
|
20469
20554
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -20858,6 +20943,13 @@ export interface Routes {
|
|
|
20858
20943
|
encoder_name: string
|
|
20859
20944
|
}
|
|
20860
20945
|
| undefined
|
|
20946
|
+
tado_metadata?:
|
|
20947
|
+
| {
|
|
20948
|
+
serial_number: string
|
|
20949
|
+
device_name: string
|
|
20950
|
+
device_type: string
|
|
20951
|
+
}
|
|
20952
|
+
| undefined
|
|
20861
20953
|
}) &
|
|
20862
20954
|
({
|
|
20863
20955
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -21159,6 +21251,7 @@ export interface Routes {
|
|
|
21159
21251
|
| 'ecobee_thermostat'
|
|
21160
21252
|
| 'nest_thermostat'
|
|
21161
21253
|
| 'honeywell_resideo_thermostat'
|
|
21254
|
+
| 'tado_thermostat'
|
|
21162
21255
|
)
|
|
21163
21256
|
| ('ios_phone' | 'android_phone')
|
|
21164
21257
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -21553,6 +21646,13 @@ export interface Routes {
|
|
|
21553
21646
|
encoder_name: string
|
|
21554
21647
|
}
|
|
21555
21648
|
| undefined
|
|
21649
|
+
tado_metadata?:
|
|
21650
|
+
| {
|
|
21651
|
+
serial_number: string
|
|
21652
|
+
device_name: string
|
|
21653
|
+
device_type: string
|
|
21654
|
+
}
|
|
21655
|
+
| undefined
|
|
21556
21656
|
}) &
|
|
21557
21657
|
({
|
|
21558
21658
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -21931,7 +22031,7 @@ export interface Routes {
|
|
|
21931
22031
|
common_acs_entrance_ids?: string[] | undefined
|
|
21932
22032
|
}
|
|
21933
22033
|
| undefined
|
|
21934
|
-
}
|
|
22034
|
+
} | null
|
|
21935
22035
|
/** Matching acs_credential currently encoded on this card. */
|
|
21936
22036
|
acs_credential_on_seam:
|
|
21937
22037
|
| (
|
|
@@ -22150,7 +22250,9 @@ export interface Routes {
|
|
|
22150
22250
|
)
|
|
22151
22251
|
| null
|
|
22152
22252
|
warnings: Array<{
|
|
22153
|
-
warning_code:
|
|
22253
|
+
warning_code:
|
|
22254
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
22255
|
+
| 'acs_credential_on_seam_not_found'
|
|
22154
22256
|
warning_message: string
|
|
22155
22257
|
}>
|
|
22156
22258
|
}
|
|
@@ -22963,7 +23065,7 @@ export interface Routes {
|
|
|
22963
23065
|
common_acs_entrance_ids?: string[] | undefined
|
|
22964
23066
|
}
|
|
22965
23067
|
| undefined
|
|
22966
|
-
}
|
|
23068
|
+
} | null
|
|
22967
23069
|
/** Matching acs_credential currently encoded on this card. */
|
|
22968
23070
|
acs_credential_on_seam:
|
|
22969
23071
|
| (
|
|
@@ -23182,7 +23284,9 @@ export interface Routes {
|
|
|
23182
23284
|
)
|
|
23183
23285
|
| null
|
|
23184
23286
|
warnings: Array<{
|
|
23185
|
-
warning_code:
|
|
23287
|
+
warning_code:
|
|
23288
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
23289
|
+
| 'acs_credential_on_seam_not_found'
|
|
23186
23290
|
warning_message: string
|
|
23187
23291
|
}>
|
|
23188
23292
|
}
|
|
@@ -24034,7 +24138,7 @@ export interface Routes {
|
|
|
24034
24138
|
common_acs_entrance_ids?: string[] | undefined
|
|
24035
24139
|
}
|
|
24036
24140
|
| undefined
|
|
24037
|
-
}
|
|
24141
|
+
} | null
|
|
24038
24142
|
/** Matching acs_credential currently encoded on this card. */
|
|
24039
24143
|
acs_credential_on_seam:
|
|
24040
24144
|
| (
|
|
@@ -24253,7 +24357,9 @@ export interface Routes {
|
|
|
24253
24357
|
)
|
|
24254
24358
|
| null
|
|
24255
24359
|
warnings: Array<{
|
|
24256
|
-
warning_code:
|
|
24360
|
+
warning_code:
|
|
24361
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
24362
|
+
| 'acs_credential_on_seam_not_found'
|
|
24257
24363
|
warning_message: string
|
|
24258
24364
|
}>
|
|
24259
24365
|
}
|
|
@@ -25264,7 +25370,7 @@ export interface Routes {
|
|
|
25264
25370
|
common_acs_entrance_ids?: string[] | undefined
|
|
25265
25371
|
}
|
|
25266
25372
|
| undefined
|
|
25267
|
-
}
|
|
25373
|
+
} | null
|
|
25268
25374
|
/** Matching acs_credential currently encoded on this card. */
|
|
25269
25375
|
acs_credential_on_seam:
|
|
25270
25376
|
| (
|
|
@@ -25483,7 +25589,9 @@ export interface Routes {
|
|
|
25483
25589
|
)
|
|
25484
25590
|
| null
|
|
25485
25591
|
warnings: Array<{
|
|
25486
|
-
warning_code:
|
|
25592
|
+
warning_code:
|
|
25593
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
25594
|
+
| 'acs_credential_on_seam_not_found'
|
|
25487
25595
|
warning_message: string
|
|
25488
25596
|
}>
|
|
25489
25597
|
}
|
|
@@ -26292,7 +26400,7 @@ export interface Routes {
|
|
|
26292
26400
|
common_acs_entrance_ids?: string[] | undefined
|
|
26293
26401
|
}
|
|
26294
26402
|
| undefined
|
|
26295
|
-
}
|
|
26403
|
+
} | null
|
|
26296
26404
|
/** Matching acs_credential currently encoded on this card. */
|
|
26297
26405
|
acs_credential_on_seam:
|
|
26298
26406
|
| (
|
|
@@ -26511,7 +26619,9 @@ export interface Routes {
|
|
|
26511
26619
|
)
|
|
26512
26620
|
| null
|
|
26513
26621
|
warnings: Array<{
|
|
26514
|
-
warning_code:
|
|
26622
|
+
warning_code:
|
|
26623
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
26624
|
+
| 'acs_credential_on_seam_not_found'
|
|
26515
26625
|
warning_message: string
|
|
26516
26626
|
}>
|
|
26517
26627
|
}
|
|
@@ -27300,6 +27410,7 @@ export interface Routes {
|
|
|
27300
27410
|
| 'ecobee_thermostat'
|
|
27301
27411
|
| 'nest_thermostat'
|
|
27302
27412
|
| 'honeywell_resideo_thermostat'
|
|
27413
|
+
| 'tado_thermostat'
|
|
27303
27414
|
)
|
|
27304
27415
|
| ('ios_phone' | 'android_phone')
|
|
27305
27416
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -27694,6 +27805,13 @@ export interface Routes {
|
|
|
27694
27805
|
encoder_name: string
|
|
27695
27806
|
}
|
|
27696
27807
|
| undefined
|
|
27808
|
+
tado_metadata?:
|
|
27809
|
+
| {
|
|
27810
|
+
serial_number: string
|
|
27811
|
+
device_name: string
|
|
27812
|
+
device_type: string
|
|
27813
|
+
}
|
|
27814
|
+
| undefined
|
|
27697
27815
|
}) &
|
|
27698
27816
|
({
|
|
27699
27817
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -28073,7 +28191,7 @@ export interface Routes {
|
|
|
28073
28191
|
common_acs_entrance_ids?: string[] | undefined
|
|
28074
28192
|
}
|
|
28075
28193
|
| undefined
|
|
28076
|
-
}
|
|
28194
|
+
} | null
|
|
28077
28195
|
/** Matching acs_credential currently encoded on this card. */
|
|
28078
28196
|
acs_credential_on_seam:
|
|
28079
28197
|
| (
|
|
@@ -28292,7 +28410,9 @@ export interface Routes {
|
|
|
28292
28410
|
)
|
|
28293
28411
|
| null
|
|
28294
28412
|
warnings: Array<{
|
|
28295
|
-
warning_code:
|
|
28413
|
+
warning_code:
|
|
28414
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
28415
|
+
| 'acs_credential_on_seam_not_found'
|
|
28296
28416
|
warning_message: string
|
|
28297
28417
|
}>
|
|
28298
28418
|
}
|
|
@@ -29105,7 +29225,7 @@ export interface Routes {
|
|
|
29105
29225
|
common_acs_entrance_ids?: string[] | undefined
|
|
29106
29226
|
}
|
|
29107
29227
|
| undefined
|
|
29108
|
-
}
|
|
29228
|
+
} | null
|
|
29109
29229
|
/** Matching acs_credential currently encoded on this card. */
|
|
29110
29230
|
acs_credential_on_seam:
|
|
29111
29231
|
| (
|
|
@@ -29324,7 +29444,9 @@ export interface Routes {
|
|
|
29324
29444
|
)
|
|
29325
29445
|
| null
|
|
29326
29446
|
warnings: Array<{
|
|
29327
|
-
warning_code:
|
|
29447
|
+
warning_code:
|
|
29448
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
29449
|
+
| 'acs_credential_on_seam_not_found'
|
|
29328
29450
|
warning_message: string
|
|
29329
29451
|
}>
|
|
29330
29452
|
}
|
|
@@ -30067,6 +30189,7 @@ export interface Routes {
|
|
|
30067
30189
|
| 'ecobee_thermostat'
|
|
30068
30190
|
| 'nest_thermostat'
|
|
30069
30191
|
| 'honeywell_resideo_thermostat'
|
|
30192
|
+
| 'tado_thermostat'
|
|
30070
30193
|
)
|
|
30071
30194
|
| ('ios_phone' | 'android_phone')
|
|
30072
30195
|
)
|
|
@@ -30108,6 +30231,7 @@ export interface Routes {
|
|
|
30108
30231
|
| 'ecobee_thermostat'
|
|
30109
30232
|
| 'nest_thermostat'
|
|
30110
30233
|
| 'honeywell_resideo_thermostat'
|
|
30234
|
+
| 'tado_thermostat'
|
|
30111
30235
|
)
|
|
30112
30236
|
| ('ios_phone' | 'android_phone')
|
|
30113
30237
|
>
|
|
@@ -30150,6 +30274,7 @@ export interface Routes {
|
|
|
30150
30274
|
| 'tedee'
|
|
30151
30275
|
| 'honeywell_resideo'
|
|
30152
30276
|
| 'akiles'
|
|
30277
|
+
| 'tado'
|
|
30153
30278
|
)
|
|
30154
30279
|
| undefined
|
|
30155
30280
|
/** Array of device IDs by which to filter devices. */
|
|
@@ -30236,6 +30361,7 @@ export interface Routes {
|
|
|
30236
30361
|
| 'ecobee_thermostat'
|
|
30237
30362
|
| 'nest_thermostat'
|
|
30238
30363
|
| 'honeywell_resideo_thermostat'
|
|
30364
|
+
| 'tado_thermostat'
|
|
30239
30365
|
)
|
|
30240
30366
|
| ('ios_phone' | 'android_phone')
|
|
30241
30367
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -30630,6 +30756,13 @@ export interface Routes {
|
|
|
30630
30756
|
encoder_name: string
|
|
30631
30757
|
}
|
|
30632
30758
|
| undefined
|
|
30759
|
+
tado_metadata?:
|
|
30760
|
+
| {
|
|
30761
|
+
serial_number: string
|
|
30762
|
+
device_name: string
|
|
30763
|
+
device_type: string
|
|
30764
|
+
}
|
|
30765
|
+
| undefined
|
|
30633
30766
|
}) &
|
|
30634
30767
|
({
|
|
30635
30768
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -30931,6 +31064,7 @@ export interface Routes {
|
|
|
30931
31064
|
| 'ecobee_thermostat'
|
|
30932
31065
|
| 'nest_thermostat'
|
|
30933
31066
|
| 'honeywell_resideo_thermostat'
|
|
31067
|
+
| 'tado_thermostat'
|
|
30934
31068
|
)
|
|
30935
31069
|
| ('ios_phone' | 'android_phone')
|
|
30936
31070
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -31325,6 +31459,13 @@ export interface Routes {
|
|
|
31325
31459
|
encoder_name: string
|
|
31326
31460
|
}
|
|
31327
31461
|
| undefined
|
|
31462
|
+
tado_metadata?:
|
|
31463
|
+
| {
|
|
31464
|
+
serial_number: string
|
|
31465
|
+
device_name: string
|
|
31466
|
+
device_type: string
|
|
31467
|
+
}
|
|
31468
|
+
| undefined
|
|
31328
31469
|
}) &
|
|
31329
31470
|
({
|
|
31330
31471
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -31700,7 +31841,7 @@ export interface Routes {
|
|
|
31700
31841
|
common_acs_entrance_ids?: string[] | undefined
|
|
31701
31842
|
}
|
|
31702
31843
|
| undefined
|
|
31703
|
-
}
|
|
31844
|
+
} | null
|
|
31704
31845
|
/** Matching acs_credential currently encoded on this card. */
|
|
31705
31846
|
acs_credential_on_seam:
|
|
31706
31847
|
| (
|
|
@@ -31919,7 +32060,9 @@ export interface Routes {
|
|
|
31919
32060
|
)
|
|
31920
32061
|
| null
|
|
31921
32062
|
warnings: Array<{
|
|
31922
|
-
warning_code:
|
|
32063
|
+
warning_code:
|
|
32064
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
32065
|
+
| 'acs_credential_on_seam_not_found'
|
|
31923
32066
|
warning_message: string
|
|
31924
32067
|
}>
|
|
31925
32068
|
}
|
|
@@ -32897,7 +33040,7 @@ export interface Routes {
|
|
|
32897
33040
|
common_acs_entrance_ids?: string[] | undefined
|
|
32898
33041
|
}
|
|
32899
33042
|
| undefined
|
|
32900
|
-
}
|
|
33043
|
+
} | null
|
|
32901
33044
|
/** Matching acs_credential currently encoded on this card. */
|
|
32902
33045
|
acs_credential_on_seam:
|
|
32903
33046
|
| (
|
|
@@ -33116,7 +33259,9 @@ export interface Routes {
|
|
|
33116
33259
|
)
|
|
33117
33260
|
| null
|
|
33118
33261
|
warnings: Array<{
|
|
33119
|
-
warning_code:
|
|
33262
|
+
warning_code:
|
|
33263
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
33264
|
+
| 'acs_credential_on_seam_not_found'
|
|
33120
33265
|
warning_message: string
|
|
33121
33266
|
}>
|
|
33122
33267
|
}
|
|
@@ -33952,7 +34097,7 @@ export interface Routes {
|
|
|
33952
34097
|
common_acs_entrance_ids?: string[] | undefined
|
|
33953
34098
|
}
|
|
33954
34099
|
| undefined
|
|
33955
|
-
}
|
|
34100
|
+
} | null
|
|
33956
34101
|
/** Matching acs_credential currently encoded on this card. */
|
|
33957
34102
|
acs_credential_on_seam:
|
|
33958
34103
|
| (
|
|
@@ -34171,7 +34316,9 @@ export interface Routes {
|
|
|
34171
34316
|
)
|
|
34172
34317
|
| null
|
|
34173
34318
|
warnings: Array<{
|
|
34174
|
-
warning_code:
|
|
34319
|
+
warning_code:
|
|
34320
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
34321
|
+
| 'acs_credential_on_seam_not_found'
|
|
34175
34322
|
warning_message: string
|
|
34176
34323
|
}>
|
|
34177
34324
|
}
|
|
@@ -35196,6 +35343,7 @@ export interface Routes {
|
|
|
35196
35343
|
| 'ecobee_thermostat'
|
|
35197
35344
|
| 'nest_thermostat'
|
|
35198
35345
|
| 'honeywell_resideo_thermostat'
|
|
35346
|
+
| 'tado_thermostat'
|
|
35199
35347
|
)
|
|
35200
35348
|
| ('ios_phone' | 'android_phone')
|
|
35201
35349
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -35590,6 +35738,13 @@ export interface Routes {
|
|
|
35590
35738
|
encoder_name: string
|
|
35591
35739
|
}
|
|
35592
35740
|
| undefined
|
|
35741
|
+
tado_metadata?:
|
|
35742
|
+
| {
|
|
35743
|
+
serial_number: string
|
|
35744
|
+
device_name: string
|
|
35745
|
+
device_type: string
|
|
35746
|
+
}
|
|
35747
|
+
| undefined
|
|
35593
35748
|
}) &
|
|
35594
35749
|
({
|
|
35595
35750
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -35893,6 +36048,7 @@ export interface Routes {
|
|
|
35893
36048
|
| 'ecobee_thermostat'
|
|
35894
36049
|
| 'nest_thermostat'
|
|
35895
36050
|
| 'honeywell_resideo_thermostat'
|
|
36051
|
+
| 'tado_thermostat'
|
|
35896
36052
|
)
|
|
35897
36053
|
| ('ios_phone' | 'android_phone')
|
|
35898
36054
|
/** Optional nickname to describe the device, settable through Seam */
|
|
@@ -36287,6 +36443,13 @@ export interface Routes {
|
|
|
36287
36443
|
encoder_name: string
|
|
36288
36444
|
}
|
|
36289
36445
|
| undefined
|
|
36446
|
+
tado_metadata?:
|
|
36447
|
+
| {
|
|
36448
|
+
serial_number: string
|
|
36449
|
+
device_name: string
|
|
36450
|
+
device_type: string
|
|
36451
|
+
}
|
|
36452
|
+
| undefined
|
|
36290
36453
|
}) &
|
|
36291
36454
|
({
|
|
36292
36455
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -37125,7 +37288,7 @@ export interface Routes {
|
|
|
37125
37288
|
common_acs_entrance_ids?: string[] | undefined
|
|
37126
37289
|
}
|
|
37127
37290
|
| undefined
|
|
37128
|
-
}
|
|
37291
|
+
} | null
|
|
37129
37292
|
/** Matching acs_credential currently encoded on this card. */
|
|
37130
37293
|
acs_credential_on_seam:
|
|
37131
37294
|
| (
|
|
@@ -37344,7 +37507,9 @@ export interface Routes {
|
|
|
37344
37507
|
)
|
|
37345
37508
|
| null
|
|
37346
37509
|
warnings: Array<{
|
|
37347
|
-
warning_code:
|
|
37510
|
+
warning_code:
|
|
37511
|
+
| 'acs_credential_on_encoder_out_of_sync'
|
|
37512
|
+
| 'acs_credential_on_seam_not_found'
|
|
37348
37513
|
warning_message: string
|
|
37349
37514
|
}>
|
|
37350
37515
|
}
|