@seamapi/types 1.252.2 → 1.253.1
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 +42 -14
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +197 -120
- package/lib/seam/connect/models/acs/acs-credential.d.ts +36 -36
- package/lib/seam/connect/models/acs/acs-system.d.ts +4 -4
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +5 -5
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +5 -5
- package/lib/seam/connect/models/devices/device-metadata.d.ts +13 -0
- package/lib/seam/connect/models/devices/device-metadata.js +3 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +8 -1
- package/lib/seam/connect/models/devices/device-type.js +7 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +28 -9
- package/lib/seam/connect/models/devices/phone.d.ts +19 -6
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +21 -8
- package/lib/seam/connect/models/events/devices.d.ts +1 -1
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +3 -3
- package/lib/seam/connect/models/thermostats/climate-preset.js +1 -1
- package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +9 -0
- package/lib/seam/connect/openapi.js +17 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +99 -63
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +4 -0
- package/src/lib/seam/connect/models/devices/device-type.ts +17 -0
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +17 -0
- package/src/lib/seam/connect/route-types.ts +123 -39
|
@@ -6863,6 +6863,7 @@ export interface Routes {
|
|
|
6863
6863
|
| 'honeywell_resideo_thermostat'
|
|
6864
6864
|
)
|
|
6865
6865
|
| ('ios_phone' | 'android_phone')
|
|
6866
|
+
| 'visionline_encoder'
|
|
6866
6867
|
/** Optional nickname to describe the device, settable through Seam */
|
|
6867
6868
|
nickname?: string | undefined
|
|
6868
6869
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -7222,6 +7223,11 @@ export interface Routes {
|
|
|
7222
7223
|
keypad_id?: number | undefined
|
|
7223
7224
|
}
|
|
7224
7225
|
| undefined
|
|
7226
|
+
visionline_metadata?:
|
|
7227
|
+
| {
|
|
7228
|
+
encoder_id: string
|
|
7229
|
+
}
|
|
7230
|
+
| undefined
|
|
7225
7231
|
}) &
|
|
7226
7232
|
({
|
|
7227
7233
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -7288,7 +7294,7 @@ export interface Routes {
|
|
|
7288
7294
|
climate_preset_key?: string | undefined
|
|
7289
7295
|
can_edit?: boolean | undefined
|
|
7290
7296
|
can_delete?: boolean | undefined
|
|
7291
|
-
name?: (string | null) | undefined
|
|
7297
|
+
name?: ((string | null) | undefined) | undefined
|
|
7292
7298
|
display_name?: string | undefined
|
|
7293
7299
|
fan_mode_setting?:
|
|
7294
7300
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -7314,7 +7320,7 @@ export interface Routes {
|
|
|
7314
7320
|
climate_preset_key?: string | undefined
|
|
7315
7321
|
can_edit?: boolean | undefined
|
|
7316
7322
|
can_delete?: boolean | undefined
|
|
7317
|
-
name?: (string | null) | undefined
|
|
7323
|
+
name?: ((string | null) | undefined) | undefined
|
|
7318
7324
|
display_name?: string | undefined
|
|
7319
7325
|
fan_mode_setting?:
|
|
7320
7326
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -7338,7 +7344,7 @@ export interface Routes {
|
|
|
7338
7344
|
climate_preset_key: string
|
|
7339
7345
|
can_edit: boolean
|
|
7340
7346
|
can_delete: boolean
|
|
7341
|
-
name?: string | null
|
|
7347
|
+
name?: (string | null) | undefined
|
|
7342
7348
|
display_name: string
|
|
7343
7349
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
7344
7350
|
hvac_mode_setting?:
|
|
@@ -7472,6 +7478,7 @@ export interface Routes {
|
|
|
7472
7478
|
| 'honeywell_resideo_thermostat'
|
|
7473
7479
|
)
|
|
7474
7480
|
| ('ios_phone' | 'android_phone')
|
|
7481
|
+
| 'visionline_encoder'
|
|
7475
7482
|
)
|
|
7476
7483
|
| undefined
|
|
7477
7484
|
device_types?:
|
|
@@ -7511,6 +7518,7 @@ export interface Routes {
|
|
|
7511
7518
|
| 'honeywell_resideo_thermostat'
|
|
7512
7519
|
)
|
|
7513
7520
|
| ('ios_phone' | 'android_phone')
|
|
7521
|
+
| 'visionline_encoder'
|
|
7514
7522
|
>
|
|
7515
7523
|
| undefined
|
|
7516
7524
|
manufacturer?:
|
|
@@ -7629,6 +7637,7 @@ export interface Routes {
|
|
|
7629
7637
|
| 'honeywell_resideo_thermostat'
|
|
7630
7638
|
)
|
|
7631
7639
|
| ('ios_phone' | 'android_phone')
|
|
7640
|
+
| 'visionline_encoder'
|
|
7632
7641
|
/** Optional nickname to describe the device, settable through Seam */
|
|
7633
7642
|
nickname?: string | undefined
|
|
7634
7643
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -7988,6 +7997,11 @@ export interface Routes {
|
|
|
7988
7997
|
keypad_id?: number | undefined
|
|
7989
7998
|
}
|
|
7990
7999
|
| undefined
|
|
8000
|
+
visionline_metadata?:
|
|
8001
|
+
| {
|
|
8002
|
+
encoder_id: string
|
|
8003
|
+
}
|
|
8004
|
+
| undefined
|
|
7991
8005
|
}) &
|
|
7992
8006
|
({
|
|
7993
8007
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -8054,7 +8068,7 @@ export interface Routes {
|
|
|
8054
8068
|
climate_preset_key?: string | undefined
|
|
8055
8069
|
can_edit?: boolean | undefined
|
|
8056
8070
|
can_delete?: boolean | undefined
|
|
8057
|
-
name?: (string | null) | undefined
|
|
8071
|
+
name?: ((string | null) | undefined) | undefined
|
|
8058
8072
|
display_name?: string | undefined
|
|
8059
8073
|
fan_mode_setting?:
|
|
8060
8074
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -8080,7 +8094,7 @@ export interface Routes {
|
|
|
8080
8094
|
climate_preset_key?: string | undefined
|
|
8081
8095
|
can_edit?: boolean | undefined
|
|
8082
8096
|
can_delete?: boolean | undefined
|
|
8083
|
-
name?: (string | null) | undefined
|
|
8097
|
+
name?: ((string | null) | undefined) | undefined
|
|
8084
8098
|
display_name?: string | undefined
|
|
8085
8099
|
fan_mode_setting?:
|
|
8086
8100
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -8104,7 +8118,7 @@ export interface Routes {
|
|
|
8104
8118
|
climate_preset_key: string
|
|
8105
8119
|
can_edit: boolean
|
|
8106
8120
|
can_delete: boolean
|
|
8107
|
-
name?: string | null
|
|
8121
|
+
name?: (string | null) | undefined
|
|
8108
8122
|
display_name: string
|
|
8109
8123
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
8110
8124
|
hvac_mode_setting?:
|
|
@@ -8356,6 +8370,7 @@ export interface Routes {
|
|
|
8356
8370
|
| 'honeywell_resideo_thermostat'
|
|
8357
8371
|
)
|
|
8358
8372
|
| ('ios_phone' | 'android_phone')
|
|
8373
|
+
| 'visionline_encoder'
|
|
8359
8374
|
/** Unique identifier for the account associated with the device. */
|
|
8360
8375
|
connected_account_id: string
|
|
8361
8376
|
/** Location information for the device. */
|
|
@@ -8514,6 +8529,7 @@ export interface Routes {
|
|
|
8514
8529
|
| 'honeywell_resideo_thermostat'
|
|
8515
8530
|
)
|
|
8516
8531
|
| ('ios_phone' | 'android_phone')
|
|
8532
|
+
| 'visionline_encoder'
|
|
8517
8533
|
)
|
|
8518
8534
|
| undefined
|
|
8519
8535
|
device_types?:
|
|
@@ -8553,6 +8569,7 @@ export interface Routes {
|
|
|
8553
8569
|
| 'honeywell_resideo_thermostat'
|
|
8554
8570
|
)
|
|
8555
8571
|
| ('ios_phone' | 'android_phone')
|
|
8572
|
+
| 'visionline_encoder'
|
|
8556
8573
|
>
|
|
8557
8574
|
| undefined
|
|
8558
8575
|
manufacturer?:
|
|
@@ -8671,6 +8688,7 @@ export interface Routes {
|
|
|
8671
8688
|
| 'honeywell_resideo_thermostat'
|
|
8672
8689
|
)
|
|
8673
8690
|
| ('ios_phone' | 'android_phone')
|
|
8691
|
+
| 'visionline_encoder'
|
|
8674
8692
|
/** Unique identifier for the account associated with the device. */
|
|
8675
8693
|
connected_account_id: string
|
|
8676
8694
|
/** Location information for the device. */
|
|
@@ -9063,6 +9081,7 @@ export interface Routes {
|
|
|
9063
9081
|
| 'honeywell_resideo_thermostat'
|
|
9064
9082
|
)
|
|
9065
9083
|
| ('ios_phone' | 'android_phone')
|
|
9084
|
+
| 'visionline_encoder'
|
|
9066
9085
|
/** Optional nickname to describe the device, settable through Seam */
|
|
9067
9086
|
nickname?: string | undefined
|
|
9068
9087
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -9422,6 +9441,11 @@ export interface Routes {
|
|
|
9422
9441
|
keypad_id?: number | undefined
|
|
9423
9442
|
}
|
|
9424
9443
|
| undefined
|
|
9444
|
+
visionline_metadata?:
|
|
9445
|
+
| {
|
|
9446
|
+
encoder_id: string
|
|
9447
|
+
}
|
|
9448
|
+
| undefined
|
|
9425
9449
|
}) &
|
|
9426
9450
|
({
|
|
9427
9451
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -9488,7 +9512,7 @@ export interface Routes {
|
|
|
9488
9512
|
climate_preset_key?: string | undefined
|
|
9489
9513
|
can_edit?: boolean | undefined
|
|
9490
9514
|
can_delete?: boolean | undefined
|
|
9491
|
-
name?: (string | null) | undefined
|
|
9515
|
+
name?: ((string | null) | undefined) | undefined
|
|
9492
9516
|
display_name?: string | undefined
|
|
9493
9517
|
fan_mode_setting?:
|
|
9494
9518
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -9514,7 +9538,7 @@ export interface Routes {
|
|
|
9514
9538
|
climate_preset_key?: string | undefined
|
|
9515
9539
|
can_edit?: boolean | undefined
|
|
9516
9540
|
can_delete?: boolean | undefined
|
|
9517
|
-
name?: (string | null) | undefined
|
|
9541
|
+
name?: ((string | null) | undefined) | undefined
|
|
9518
9542
|
display_name?: string | undefined
|
|
9519
9543
|
fan_mode_setting?:
|
|
9520
9544
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -9538,7 +9562,7 @@ export interface Routes {
|
|
|
9538
9562
|
climate_preset_key: string
|
|
9539
9563
|
can_edit: boolean
|
|
9540
9564
|
can_delete: boolean
|
|
9541
|
-
name?: string | null
|
|
9565
|
+
name?: (string | null) | undefined
|
|
9542
9566
|
display_name: string
|
|
9543
9567
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
9544
9568
|
hvac_mode_setting?:
|
|
@@ -9663,6 +9687,7 @@ export interface Routes {
|
|
|
9663
9687
|
| 'honeywell_resideo_thermostat'
|
|
9664
9688
|
)
|
|
9665
9689
|
| ('ios_phone' | 'android_phone')
|
|
9690
|
+
| 'visionline_encoder'
|
|
9666
9691
|
/** Optional nickname to describe the device, settable through Seam */
|
|
9667
9692
|
nickname?: string | undefined
|
|
9668
9693
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -10022,6 +10047,11 @@ export interface Routes {
|
|
|
10022
10047
|
keypad_id?: number | undefined
|
|
10023
10048
|
}
|
|
10024
10049
|
| undefined
|
|
10050
|
+
visionline_metadata?:
|
|
10051
|
+
| {
|
|
10052
|
+
encoder_id: string
|
|
10053
|
+
}
|
|
10054
|
+
| undefined
|
|
10025
10055
|
}) &
|
|
10026
10056
|
({
|
|
10027
10057
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -10088,7 +10118,7 @@ export interface Routes {
|
|
|
10088
10118
|
climate_preset_key?: string | undefined
|
|
10089
10119
|
can_edit?: boolean | undefined
|
|
10090
10120
|
can_delete?: boolean | undefined
|
|
10091
|
-
name?: (string | null) | undefined
|
|
10121
|
+
name?: ((string | null) | undefined) | undefined
|
|
10092
10122
|
display_name?: string | undefined
|
|
10093
10123
|
fan_mode_setting?:
|
|
10094
10124
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -10114,7 +10144,7 @@ export interface Routes {
|
|
|
10114
10144
|
climate_preset_key?: string | undefined
|
|
10115
10145
|
can_edit?: boolean | undefined
|
|
10116
10146
|
can_delete?: boolean | undefined
|
|
10117
|
-
name?: (string | null) | undefined
|
|
10147
|
+
name?: ((string | null) | undefined) | undefined
|
|
10118
10148
|
display_name?: string | undefined
|
|
10119
10149
|
fan_mode_setting?:
|
|
10120
10150
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -10138,7 +10168,7 @@ export interface Routes {
|
|
|
10138
10168
|
climate_preset_key: string
|
|
10139
10169
|
can_edit: boolean
|
|
10140
10170
|
can_delete: boolean
|
|
10141
|
-
name?: string | null
|
|
10171
|
+
name?: (string | null) | undefined
|
|
10142
10172
|
display_name: string
|
|
10143
10173
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
10144
10174
|
hvac_mode_setting?:
|
|
@@ -10272,6 +10302,7 @@ export interface Routes {
|
|
|
10272
10302
|
| 'honeywell_resideo_thermostat'
|
|
10273
10303
|
)
|
|
10274
10304
|
| ('ios_phone' | 'android_phone')
|
|
10305
|
+
| 'visionline_encoder'
|
|
10275
10306
|
)
|
|
10276
10307
|
| undefined
|
|
10277
10308
|
device_types?:
|
|
@@ -10311,6 +10342,7 @@ export interface Routes {
|
|
|
10311
10342
|
| 'honeywell_resideo_thermostat'
|
|
10312
10343
|
)
|
|
10313
10344
|
| ('ios_phone' | 'android_phone')
|
|
10345
|
+
| 'visionline_encoder'
|
|
10314
10346
|
>
|
|
10315
10347
|
| undefined
|
|
10316
10348
|
manufacturer?:
|
|
@@ -10429,6 +10461,7 @@ export interface Routes {
|
|
|
10429
10461
|
| 'honeywell_resideo_thermostat'
|
|
10430
10462
|
)
|
|
10431
10463
|
| ('ios_phone' | 'android_phone')
|
|
10464
|
+
| 'visionline_encoder'
|
|
10432
10465
|
/** Optional nickname to describe the device, settable through Seam */
|
|
10433
10466
|
nickname?: string | undefined
|
|
10434
10467
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -10788,6 +10821,11 @@ export interface Routes {
|
|
|
10788
10821
|
keypad_id?: number | undefined
|
|
10789
10822
|
}
|
|
10790
10823
|
| undefined
|
|
10824
|
+
visionline_metadata?:
|
|
10825
|
+
| {
|
|
10826
|
+
encoder_id: string
|
|
10827
|
+
}
|
|
10828
|
+
| undefined
|
|
10791
10829
|
}) &
|
|
10792
10830
|
({
|
|
10793
10831
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -10854,7 +10892,7 @@ export interface Routes {
|
|
|
10854
10892
|
climate_preset_key?: string | undefined
|
|
10855
10893
|
can_edit?: boolean | undefined
|
|
10856
10894
|
can_delete?: boolean | undefined
|
|
10857
|
-
name?: (string | null) | undefined
|
|
10895
|
+
name?: ((string | null) | undefined) | undefined
|
|
10858
10896
|
display_name?: string | undefined
|
|
10859
10897
|
fan_mode_setting?:
|
|
10860
10898
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -10880,7 +10918,7 @@ export interface Routes {
|
|
|
10880
10918
|
climate_preset_key?: string | undefined
|
|
10881
10919
|
can_edit?: boolean | undefined
|
|
10882
10920
|
can_delete?: boolean | undefined
|
|
10883
|
-
name?: (string | null) | undefined
|
|
10921
|
+
name?: ((string | null) | undefined) | undefined
|
|
10884
10922
|
display_name?: string | undefined
|
|
10885
10923
|
fan_mode_setting?:
|
|
10886
10924
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -10904,7 +10942,7 @@ export interface Routes {
|
|
|
10904
10942
|
climate_preset_key: string
|
|
10905
10943
|
can_edit: boolean
|
|
10906
10944
|
can_delete: boolean
|
|
10907
|
-
name?: string | null
|
|
10945
|
+
name?: (string | null) | undefined
|
|
10908
10946
|
display_name: string
|
|
10909
10947
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
10910
10948
|
hvac_mode_setting?:
|
|
@@ -11029,6 +11067,7 @@ export interface Routes {
|
|
|
11029
11067
|
| 'honeywell_resideo_thermostat'
|
|
11030
11068
|
)
|
|
11031
11069
|
| ('ios_phone' | 'android_phone')
|
|
11070
|
+
| 'visionline_encoder'
|
|
11032
11071
|
/** Optional nickname to describe the device, settable through Seam */
|
|
11033
11072
|
nickname?: string | undefined
|
|
11034
11073
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -11388,6 +11427,11 @@ export interface Routes {
|
|
|
11388
11427
|
keypad_id?: number | undefined
|
|
11389
11428
|
}
|
|
11390
11429
|
| undefined
|
|
11430
|
+
visionline_metadata?:
|
|
11431
|
+
| {
|
|
11432
|
+
encoder_id: string
|
|
11433
|
+
}
|
|
11434
|
+
| undefined
|
|
11391
11435
|
}) &
|
|
11392
11436
|
({
|
|
11393
11437
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -11454,7 +11498,7 @@ export interface Routes {
|
|
|
11454
11498
|
climate_preset_key?: string | undefined
|
|
11455
11499
|
can_edit?: boolean | undefined
|
|
11456
11500
|
can_delete?: boolean | undefined
|
|
11457
|
-
name?: (string | null) | undefined
|
|
11501
|
+
name?: ((string | null) | undefined) | undefined
|
|
11458
11502
|
display_name?: string | undefined
|
|
11459
11503
|
fan_mode_setting?:
|
|
11460
11504
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -11480,7 +11524,7 @@ export interface Routes {
|
|
|
11480
11524
|
climate_preset_key?: string | undefined
|
|
11481
11525
|
can_edit?: boolean | undefined
|
|
11482
11526
|
can_delete?: boolean | undefined
|
|
11483
|
-
name?: (string | null) | undefined
|
|
11527
|
+
name?: ((string | null) | undefined) | undefined
|
|
11484
11528
|
display_name?: string | undefined
|
|
11485
11529
|
fan_mode_setting?:
|
|
11486
11530
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -11504,7 +11548,7 @@ export interface Routes {
|
|
|
11504
11548
|
climate_preset_key: string
|
|
11505
11549
|
can_edit: boolean
|
|
11506
11550
|
can_delete: boolean
|
|
11507
|
-
name?: string | null
|
|
11551
|
+
name?: (string | null) | undefined
|
|
11508
11552
|
display_name: string
|
|
11509
11553
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
11510
11554
|
hvac_mode_setting?:
|
|
@@ -12628,6 +12672,7 @@ export interface Routes {
|
|
|
12628
12672
|
| 'honeywell_resideo_thermostat'
|
|
12629
12673
|
)
|
|
12630
12674
|
| ('ios_phone' | 'android_phone')
|
|
12675
|
+
| 'visionline_encoder'
|
|
12631
12676
|
)
|
|
12632
12677
|
| undefined
|
|
12633
12678
|
device_types?:
|
|
@@ -12667,6 +12712,7 @@ export interface Routes {
|
|
|
12667
12712
|
| 'honeywell_resideo_thermostat'
|
|
12668
12713
|
)
|
|
12669
12714
|
| ('ios_phone' | 'android_phone')
|
|
12715
|
+
| 'visionline_encoder'
|
|
12670
12716
|
>
|
|
12671
12717
|
| undefined
|
|
12672
12718
|
manufacturer?:
|
|
@@ -12785,6 +12831,7 @@ export interface Routes {
|
|
|
12785
12831
|
| 'honeywell_resideo_thermostat'
|
|
12786
12832
|
)
|
|
12787
12833
|
| ('ios_phone' | 'android_phone')
|
|
12834
|
+
| 'visionline_encoder'
|
|
12788
12835
|
/** Optional nickname to describe the device, settable through Seam */
|
|
12789
12836
|
nickname?: string | undefined
|
|
12790
12837
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -13144,6 +13191,11 @@ export interface Routes {
|
|
|
13144
13191
|
keypad_id?: number | undefined
|
|
13145
13192
|
}
|
|
13146
13193
|
| undefined
|
|
13194
|
+
visionline_metadata?:
|
|
13195
|
+
| {
|
|
13196
|
+
encoder_id: string
|
|
13197
|
+
}
|
|
13198
|
+
| undefined
|
|
13147
13199
|
}) &
|
|
13148
13200
|
({
|
|
13149
13201
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -13210,7 +13262,7 @@ export interface Routes {
|
|
|
13210
13262
|
climate_preset_key?: string | undefined
|
|
13211
13263
|
can_edit?: boolean | undefined
|
|
13212
13264
|
can_delete?: boolean | undefined
|
|
13213
|
-
name?: (string | null) | undefined
|
|
13265
|
+
name?: ((string | null) | undefined) | undefined
|
|
13214
13266
|
display_name?: string | undefined
|
|
13215
13267
|
fan_mode_setting?:
|
|
13216
13268
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -13236,7 +13288,7 @@ export interface Routes {
|
|
|
13236
13288
|
climate_preset_key?: string | undefined
|
|
13237
13289
|
can_edit?: boolean | undefined
|
|
13238
13290
|
can_delete?: boolean | undefined
|
|
13239
|
-
name?: (string | null) | undefined
|
|
13291
|
+
name?: ((string | null) | undefined) | undefined
|
|
13240
13292
|
display_name?: string | undefined
|
|
13241
13293
|
fan_mode_setting?:
|
|
13242
13294
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -13260,7 +13312,7 @@ export interface Routes {
|
|
|
13260
13312
|
climate_preset_key: string
|
|
13261
13313
|
can_edit: boolean
|
|
13262
13314
|
can_delete: boolean
|
|
13263
|
-
name?: string | null
|
|
13315
|
+
name?: (string | null) | undefined
|
|
13264
13316
|
display_name: string
|
|
13265
13317
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
13266
13318
|
hvac_mode_setting?:
|
|
@@ -13385,6 +13437,7 @@ export interface Routes {
|
|
|
13385
13437
|
| 'honeywell_resideo_thermostat'
|
|
13386
13438
|
)
|
|
13387
13439
|
| ('ios_phone' | 'android_phone')
|
|
13440
|
+
| 'visionline_encoder'
|
|
13388
13441
|
/** Optional nickname to describe the device, settable through Seam */
|
|
13389
13442
|
nickname?: string | undefined
|
|
13390
13443
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -13744,6 +13797,11 @@ export interface Routes {
|
|
|
13744
13797
|
keypad_id?: number | undefined
|
|
13745
13798
|
}
|
|
13746
13799
|
| undefined
|
|
13800
|
+
visionline_metadata?:
|
|
13801
|
+
| {
|
|
13802
|
+
encoder_id: string
|
|
13803
|
+
}
|
|
13804
|
+
| undefined
|
|
13747
13805
|
}) &
|
|
13748
13806
|
({
|
|
13749
13807
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -13810,7 +13868,7 @@ export interface Routes {
|
|
|
13810
13868
|
climate_preset_key?: string | undefined
|
|
13811
13869
|
can_edit?: boolean | undefined
|
|
13812
13870
|
can_delete?: boolean | undefined
|
|
13813
|
-
name?: (string | null) | undefined
|
|
13871
|
+
name?: ((string | null) | undefined) | undefined
|
|
13814
13872
|
display_name?: string | undefined
|
|
13815
13873
|
fan_mode_setting?:
|
|
13816
13874
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -13836,7 +13894,7 @@ export interface Routes {
|
|
|
13836
13894
|
climate_preset_key?: string | undefined
|
|
13837
13895
|
can_edit?: boolean | undefined
|
|
13838
13896
|
can_delete?: boolean | undefined
|
|
13839
|
-
name?: (string | null) | undefined
|
|
13897
|
+
name?: ((string | null) | undefined) | undefined
|
|
13840
13898
|
display_name?: string | undefined
|
|
13841
13899
|
fan_mode_setting?:
|
|
13842
13900
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -13860,7 +13918,7 @@ export interface Routes {
|
|
|
13860
13918
|
climate_preset_key: string
|
|
13861
13919
|
can_edit: boolean
|
|
13862
13920
|
can_delete: boolean
|
|
13863
|
-
name?: string | null
|
|
13921
|
+
name?: (string | null) | undefined
|
|
13864
13922
|
display_name: string
|
|
13865
13923
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
13866
13924
|
hvac_mode_setting?:
|
|
@@ -16616,7 +16674,7 @@ export interface Routes {
|
|
|
16616
16674
|
jsonBody: {
|
|
16617
16675
|
device_id: string
|
|
16618
16676
|
climate_preset_key: string
|
|
16619
|
-
name?: string | null
|
|
16677
|
+
name?: (string | null) | undefined
|
|
16620
16678
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
16621
16679
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined
|
|
16622
16680
|
cooling_set_point_celsius?: number | undefined
|
|
@@ -16632,7 +16690,7 @@ export interface Routes {
|
|
|
16632
16690
|
climate_preset_key: string
|
|
16633
16691
|
can_edit: boolean
|
|
16634
16692
|
can_delete: boolean
|
|
16635
|
-
name?: string | null
|
|
16693
|
+
name?: (string | null) | undefined
|
|
16636
16694
|
display_name: string
|
|
16637
16695
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
16638
16696
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined
|
|
@@ -16707,6 +16765,7 @@ export interface Routes {
|
|
|
16707
16765
|
| 'honeywell_resideo_thermostat'
|
|
16708
16766
|
)
|
|
16709
16767
|
| ('ios_phone' | 'android_phone')
|
|
16768
|
+
| 'visionline_encoder'
|
|
16710
16769
|
/** Optional nickname to describe the device, settable through Seam */
|
|
16711
16770
|
nickname?: string | undefined
|
|
16712
16771
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -17066,6 +17125,11 @@ export interface Routes {
|
|
|
17066
17125
|
keypad_id?: number | undefined
|
|
17067
17126
|
}
|
|
17068
17127
|
| undefined
|
|
17128
|
+
visionline_metadata?:
|
|
17129
|
+
| {
|
|
17130
|
+
encoder_id: string
|
|
17131
|
+
}
|
|
17132
|
+
| undefined
|
|
17069
17133
|
}) &
|
|
17070
17134
|
({
|
|
17071
17135
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -17132,7 +17196,7 @@ export interface Routes {
|
|
|
17132
17196
|
climate_preset_key?: string | undefined
|
|
17133
17197
|
can_edit?: boolean | undefined
|
|
17134
17198
|
can_delete?: boolean | undefined
|
|
17135
|
-
name?: (string | null) | undefined
|
|
17199
|
+
name?: ((string | null) | undefined) | undefined
|
|
17136
17200
|
display_name?: string | undefined
|
|
17137
17201
|
fan_mode_setting?:
|
|
17138
17202
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -17158,7 +17222,7 @@ export interface Routes {
|
|
|
17158
17222
|
climate_preset_key?: string | undefined
|
|
17159
17223
|
can_edit?: boolean | undefined
|
|
17160
17224
|
can_delete?: boolean | undefined
|
|
17161
|
-
name?: (string | null) | undefined
|
|
17225
|
+
name?: ((string | null) | undefined) | undefined
|
|
17162
17226
|
display_name?: string | undefined
|
|
17163
17227
|
fan_mode_setting?:
|
|
17164
17228
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -17182,7 +17246,7 @@ export interface Routes {
|
|
|
17182
17246
|
climate_preset_key: string
|
|
17183
17247
|
can_edit: boolean
|
|
17184
17248
|
can_delete: boolean
|
|
17185
|
-
name?: string | null
|
|
17249
|
+
name?: (string | null) | undefined
|
|
17186
17250
|
display_name: string
|
|
17187
17251
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
17188
17252
|
hvac_mode_setting?:
|
|
@@ -18278,6 +18342,7 @@ export interface Routes {
|
|
|
18278
18342
|
| 'honeywell_resideo_thermostat'
|
|
18279
18343
|
)
|
|
18280
18344
|
| ('ios_phone' | 'android_phone')
|
|
18345
|
+
| 'visionline_encoder'
|
|
18281
18346
|
)
|
|
18282
18347
|
| undefined
|
|
18283
18348
|
device_types?:
|
|
@@ -18317,6 +18382,7 @@ export interface Routes {
|
|
|
18317
18382
|
| 'honeywell_resideo_thermostat'
|
|
18318
18383
|
)
|
|
18319
18384
|
| ('ios_phone' | 'android_phone')
|
|
18385
|
+
| 'visionline_encoder'
|
|
18320
18386
|
>
|
|
18321
18387
|
| undefined
|
|
18322
18388
|
manufacturer?:
|
|
@@ -18435,6 +18501,7 @@ export interface Routes {
|
|
|
18435
18501
|
| 'honeywell_resideo_thermostat'
|
|
18436
18502
|
)
|
|
18437
18503
|
| ('ios_phone' | 'android_phone')
|
|
18504
|
+
| 'visionline_encoder'
|
|
18438
18505
|
/** Optional nickname to describe the device, settable through Seam */
|
|
18439
18506
|
nickname?: string | undefined
|
|
18440
18507
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -18794,6 +18861,11 @@ export interface Routes {
|
|
|
18794
18861
|
keypad_id?: number | undefined
|
|
18795
18862
|
}
|
|
18796
18863
|
| undefined
|
|
18864
|
+
visionline_metadata?:
|
|
18865
|
+
| {
|
|
18866
|
+
encoder_id: string
|
|
18867
|
+
}
|
|
18868
|
+
| undefined
|
|
18797
18869
|
}) &
|
|
18798
18870
|
({
|
|
18799
18871
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -18860,7 +18932,7 @@ export interface Routes {
|
|
|
18860
18932
|
climate_preset_key?: string | undefined
|
|
18861
18933
|
can_edit?: boolean | undefined
|
|
18862
18934
|
can_delete?: boolean | undefined
|
|
18863
|
-
name?: (string | null) | undefined
|
|
18935
|
+
name?: ((string | null) | undefined) | undefined
|
|
18864
18936
|
display_name?: string | undefined
|
|
18865
18937
|
fan_mode_setting?:
|
|
18866
18938
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -18886,7 +18958,7 @@ export interface Routes {
|
|
|
18886
18958
|
climate_preset_key?: string | undefined
|
|
18887
18959
|
can_edit?: boolean | undefined
|
|
18888
18960
|
can_delete?: boolean | undefined
|
|
18889
|
-
name?: (string | null) | undefined
|
|
18961
|
+
name?: ((string | null) | undefined) | undefined
|
|
18890
18962
|
display_name?: string | undefined
|
|
18891
18963
|
fan_mode_setting?:
|
|
18892
18964
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -18910,7 +18982,7 @@ export interface Routes {
|
|
|
18910
18982
|
climate_preset_key: string
|
|
18911
18983
|
can_edit: boolean
|
|
18912
18984
|
can_delete: boolean
|
|
18913
|
-
name?: string | null
|
|
18985
|
+
name?: (string | null) | undefined
|
|
18914
18986
|
display_name: string
|
|
18915
18987
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
18916
18988
|
hvac_mode_setting?:
|
|
@@ -20081,7 +20153,7 @@ export interface Routes {
|
|
|
20081
20153
|
jsonBody: {
|
|
20082
20154
|
device_id: string
|
|
20083
20155
|
climate_preset_key: string
|
|
20084
|
-
name?: string | null
|
|
20156
|
+
name?: (string | null) | undefined
|
|
20085
20157
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
20086
20158
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined
|
|
20087
20159
|
cooling_set_point_celsius?: number | undefined
|
|
@@ -20325,6 +20397,7 @@ export interface Routes {
|
|
|
20325
20397
|
| 'honeywell_resideo_thermostat'
|
|
20326
20398
|
)
|
|
20327
20399
|
| ('ios_phone' | 'android_phone')
|
|
20400
|
+
| 'visionline_encoder'
|
|
20328
20401
|
/** Optional nickname to describe the device, settable through Seam */
|
|
20329
20402
|
nickname?: string | undefined
|
|
20330
20403
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -20684,6 +20757,11 @@ export interface Routes {
|
|
|
20684
20757
|
keypad_id?: number | undefined
|
|
20685
20758
|
}
|
|
20686
20759
|
| undefined
|
|
20760
|
+
visionline_metadata?:
|
|
20761
|
+
| {
|
|
20762
|
+
encoder_id: string
|
|
20763
|
+
}
|
|
20764
|
+
| undefined
|
|
20687
20765
|
}) &
|
|
20688
20766
|
({
|
|
20689
20767
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -20750,7 +20828,7 @@ export interface Routes {
|
|
|
20750
20828
|
climate_preset_key?: string | undefined
|
|
20751
20829
|
can_edit?: boolean | undefined
|
|
20752
20830
|
can_delete?: boolean | undefined
|
|
20753
|
-
name?: (string | null) | undefined
|
|
20831
|
+
name?: ((string | null) | undefined) | undefined
|
|
20754
20832
|
display_name?: string | undefined
|
|
20755
20833
|
fan_mode_setting?:
|
|
20756
20834
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -20776,7 +20854,7 @@ export interface Routes {
|
|
|
20776
20854
|
climate_preset_key?: string | undefined
|
|
20777
20855
|
can_edit?: boolean | undefined
|
|
20778
20856
|
can_delete?: boolean | undefined
|
|
20779
|
-
name?: (string | null) | undefined
|
|
20857
|
+
name?: ((string | null) | undefined) | undefined
|
|
20780
20858
|
display_name?: string | undefined
|
|
20781
20859
|
fan_mode_setting?:
|
|
20782
20860
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -20800,7 +20878,7 @@ export interface Routes {
|
|
|
20800
20878
|
climate_preset_key: string
|
|
20801
20879
|
can_edit: boolean
|
|
20802
20880
|
can_delete: boolean
|
|
20803
|
-
name?: string | null
|
|
20881
|
+
name?: (string | null) | undefined
|
|
20804
20882
|
display_name: string
|
|
20805
20883
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
20806
20884
|
hvac_mode_setting?:
|
|
@@ -20927,6 +21005,7 @@ export interface Routes {
|
|
|
20927
21005
|
| 'honeywell_resideo_thermostat'
|
|
20928
21006
|
)
|
|
20929
21007
|
| ('ios_phone' | 'android_phone')
|
|
21008
|
+
| 'visionline_encoder'
|
|
20930
21009
|
/** Optional nickname to describe the device, settable through Seam */
|
|
20931
21010
|
nickname?: string | undefined
|
|
20932
21011
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -21286,6 +21365,11 @@ export interface Routes {
|
|
|
21286
21365
|
keypad_id?: number | undefined
|
|
21287
21366
|
}
|
|
21288
21367
|
| undefined
|
|
21368
|
+
visionline_metadata?:
|
|
21369
|
+
| {
|
|
21370
|
+
encoder_id: string
|
|
21371
|
+
}
|
|
21372
|
+
| undefined
|
|
21289
21373
|
}) &
|
|
21290
21374
|
({
|
|
21291
21375
|
_experimental_supported_code_from_access_codes_lengths?:
|
|
@@ -21352,7 +21436,7 @@ export interface Routes {
|
|
|
21352
21436
|
climate_preset_key?: string | undefined
|
|
21353
21437
|
can_edit?: boolean | undefined
|
|
21354
21438
|
can_delete?: boolean | undefined
|
|
21355
|
-
name?: (string | null) | undefined
|
|
21439
|
+
name?: ((string | null) | undefined) | undefined
|
|
21356
21440
|
display_name?: string | undefined
|
|
21357
21441
|
fan_mode_setting?:
|
|
21358
21442
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -21378,7 +21462,7 @@ export interface Routes {
|
|
|
21378
21462
|
climate_preset_key?: string | undefined
|
|
21379
21463
|
can_edit?: boolean | undefined
|
|
21380
21464
|
can_delete?: boolean | undefined
|
|
21381
|
-
name?: (string | null) | undefined
|
|
21465
|
+
name?: ((string | null) | undefined) | undefined
|
|
21382
21466
|
display_name?: string | undefined
|
|
21383
21467
|
fan_mode_setting?:
|
|
21384
21468
|
| (('auto' | 'on' | 'circulate') | undefined)
|
|
@@ -21402,7 +21486,7 @@ export interface Routes {
|
|
|
21402
21486
|
climate_preset_key: string
|
|
21403
21487
|
can_edit: boolean
|
|
21404
21488
|
can_delete: boolean
|
|
21405
|
-
name?: string | null
|
|
21489
|
+
name?: (string | null) | undefined
|
|
21406
21490
|
display_name: string
|
|
21407
21491
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
21408
21492
|
hvac_mode_setting?:
|