@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
|
@@ -5976,7 +5976,7 @@ export interface Routes {
|
|
|
5976
5976
|
/** Unique identifier for the device. */
|
|
5977
5977
|
device_id: string;
|
|
5978
5978
|
/** Type of the device. */
|
|
5979
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
5979
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
5980
5980
|
/** Optional nickname to describe the device, settable through Seam */
|
|
5981
5981
|
nickname?: string | undefined;
|
|
5982
5982
|
/** 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. */
|
|
@@ -6262,6 +6262,9 @@ export interface Routes {
|
|
|
6262
6262
|
bridge_name: string;
|
|
6263
6263
|
keypad_id?: number | undefined;
|
|
6264
6264
|
} | undefined;
|
|
6265
|
+
visionline_metadata?: {
|
|
6266
|
+
encoder_id: string;
|
|
6267
|
+
} | undefined;
|
|
6265
6268
|
}) & ({
|
|
6266
6269
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
6267
6270
|
code_constraints?: (Array<{
|
|
@@ -6297,7 +6300,7 @@ export interface Routes {
|
|
|
6297
6300
|
climate_preset_key?: string | undefined;
|
|
6298
6301
|
can_edit?: boolean | undefined;
|
|
6299
6302
|
can_delete?: boolean | undefined;
|
|
6300
|
-
name?: (string | null) | undefined;
|
|
6303
|
+
name?: ((string | null) | undefined) | undefined;
|
|
6301
6304
|
display_name?: string | undefined;
|
|
6302
6305
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
6303
6306
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -6313,7 +6316,7 @@ export interface Routes {
|
|
|
6313
6316
|
climate_preset_key?: string | undefined;
|
|
6314
6317
|
can_edit?: boolean | undefined;
|
|
6315
6318
|
can_delete?: boolean | undefined;
|
|
6316
|
-
name?: (string | null) | undefined;
|
|
6319
|
+
name?: ((string | null) | undefined) | undefined;
|
|
6317
6320
|
display_name?: string | undefined;
|
|
6318
6321
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
6319
6322
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -6327,7 +6330,7 @@ export interface Routes {
|
|
|
6327
6330
|
climate_preset_key: string;
|
|
6328
6331
|
can_edit: boolean;
|
|
6329
6332
|
can_delete: boolean;
|
|
6330
|
-
name?: string | null;
|
|
6333
|
+
name?: (string | null) | undefined;
|
|
6331
6334
|
display_name: string;
|
|
6332
6335
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
6333
6336
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -6416,8 +6419,8 @@ export interface Routes {
|
|
|
6416
6419
|
connected_account_id?: string | undefined;
|
|
6417
6420
|
connected_account_ids?: string[] | undefined;
|
|
6418
6421
|
connect_webview_id?: string | undefined;
|
|
6419
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
6420
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
6422
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
6423
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
6421
6424
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
6422
6425
|
device_ids?: string[] | undefined;
|
|
6423
6426
|
limit?: number;
|
|
@@ -6433,7 +6436,7 @@ export interface Routes {
|
|
|
6433
6436
|
/** Unique identifier for the device. */
|
|
6434
6437
|
device_id: string;
|
|
6435
6438
|
/** Type of the device. */
|
|
6436
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
6439
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
6437
6440
|
/** Optional nickname to describe the device, settable through Seam */
|
|
6438
6441
|
nickname?: string | undefined;
|
|
6439
6442
|
/** 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. */
|
|
@@ -6719,6 +6722,9 @@ export interface Routes {
|
|
|
6719
6722
|
bridge_name: string;
|
|
6720
6723
|
keypad_id?: number | undefined;
|
|
6721
6724
|
} | undefined;
|
|
6725
|
+
visionline_metadata?: {
|
|
6726
|
+
encoder_id: string;
|
|
6727
|
+
} | undefined;
|
|
6722
6728
|
}) & ({
|
|
6723
6729
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
6724
6730
|
code_constraints?: (Array<{
|
|
@@ -6754,7 +6760,7 @@ export interface Routes {
|
|
|
6754
6760
|
climate_preset_key?: string | undefined;
|
|
6755
6761
|
can_edit?: boolean | undefined;
|
|
6756
6762
|
can_delete?: boolean | undefined;
|
|
6757
|
-
name?: (string | null) | undefined;
|
|
6763
|
+
name?: ((string | null) | undefined) | undefined;
|
|
6758
6764
|
display_name?: string | undefined;
|
|
6759
6765
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
6760
6766
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -6770,7 +6776,7 @@ export interface Routes {
|
|
|
6770
6776
|
climate_preset_key?: string | undefined;
|
|
6771
6777
|
can_edit?: boolean | undefined;
|
|
6772
6778
|
can_delete?: boolean | undefined;
|
|
6773
|
-
name?: (string | null) | undefined;
|
|
6779
|
+
name?: ((string | null) | undefined) | undefined;
|
|
6774
6780
|
display_name?: string | undefined;
|
|
6775
6781
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
6776
6782
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -6784,7 +6790,7 @@ export interface Routes {
|
|
|
6784
6790
|
climate_preset_key: string;
|
|
6785
6791
|
can_edit: boolean;
|
|
6786
6792
|
can_delete: boolean;
|
|
6787
|
-
name?: string | null;
|
|
6793
|
+
name?: (string | null) | undefined;
|
|
6788
6794
|
display_name: string;
|
|
6789
6795
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
6790
6796
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -6940,7 +6946,7 @@ export interface Routes {
|
|
|
6940
6946
|
/** Unique identifier for the device. */
|
|
6941
6947
|
device_id: string;
|
|
6942
6948
|
/** Type of the device. */
|
|
6943
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
6949
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
6944
6950
|
/** Unique identifier for the account associated with the device. */
|
|
6945
6951
|
connected_account_id: string;
|
|
6946
6952
|
/** Location information for the device. */
|
|
@@ -7046,8 +7052,8 @@ export interface Routes {
|
|
|
7046
7052
|
connected_account_id?: string | undefined;
|
|
7047
7053
|
connected_account_ids?: string[] | undefined;
|
|
7048
7054
|
connect_webview_id?: string | undefined;
|
|
7049
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
7050
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
7055
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
7056
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
7051
7057
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
7052
7058
|
device_ids?: string[] | undefined;
|
|
7053
7059
|
limit?: number;
|
|
@@ -7063,7 +7069,7 @@ export interface Routes {
|
|
|
7063
7069
|
/** Unique identifier for the device. */
|
|
7064
7070
|
device_id: string;
|
|
7065
7071
|
/** Type of the device. */
|
|
7066
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
7072
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
7067
7073
|
/** Unique identifier for the account associated with the device. */
|
|
7068
7074
|
connected_account_id: string;
|
|
7069
7075
|
/** Location information for the device. */
|
|
@@ -7270,7 +7276,7 @@ export interface Routes {
|
|
|
7270
7276
|
/** Unique identifier for the device. */
|
|
7271
7277
|
device_id: string;
|
|
7272
7278
|
/** Type of the device. */
|
|
7273
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
7279
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
7274
7280
|
/** Optional nickname to describe the device, settable through Seam */
|
|
7275
7281
|
nickname?: string | undefined;
|
|
7276
7282
|
/** 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. */
|
|
@@ -7556,6 +7562,9 @@ export interface Routes {
|
|
|
7556
7562
|
bridge_name: string;
|
|
7557
7563
|
keypad_id?: number | undefined;
|
|
7558
7564
|
} | undefined;
|
|
7565
|
+
visionline_metadata?: {
|
|
7566
|
+
encoder_id: string;
|
|
7567
|
+
} | undefined;
|
|
7559
7568
|
}) & ({
|
|
7560
7569
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
7561
7570
|
code_constraints?: (Array<{
|
|
@@ -7591,7 +7600,7 @@ export interface Routes {
|
|
|
7591
7600
|
climate_preset_key?: string | undefined;
|
|
7592
7601
|
can_edit?: boolean | undefined;
|
|
7593
7602
|
can_delete?: boolean | undefined;
|
|
7594
|
-
name?: (string | null) | undefined;
|
|
7603
|
+
name?: ((string | null) | undefined) | undefined;
|
|
7595
7604
|
display_name?: string | undefined;
|
|
7596
7605
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
7597
7606
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -7607,7 +7616,7 @@ export interface Routes {
|
|
|
7607
7616
|
climate_preset_key?: string | undefined;
|
|
7608
7617
|
can_edit?: boolean | undefined;
|
|
7609
7618
|
can_delete?: boolean | undefined;
|
|
7610
|
-
name?: (string | null) | undefined;
|
|
7619
|
+
name?: ((string | null) | undefined) | undefined;
|
|
7611
7620
|
display_name?: string | undefined;
|
|
7612
7621
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
7613
7622
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -7621,7 +7630,7 @@ export interface Routes {
|
|
|
7621
7630
|
climate_preset_key: string;
|
|
7622
7631
|
can_edit: boolean;
|
|
7623
7632
|
can_delete: boolean;
|
|
7624
|
-
name?: string | null;
|
|
7633
|
+
name?: (string | null) | undefined;
|
|
7625
7634
|
display_name: string;
|
|
7626
7635
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
7627
7636
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -7702,7 +7711,7 @@ export interface Routes {
|
|
|
7702
7711
|
/** Unique identifier for the device. */
|
|
7703
7712
|
device_id: string;
|
|
7704
7713
|
/** Type of the device. */
|
|
7705
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
7714
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
7706
7715
|
/** Optional nickname to describe the device, settable through Seam */
|
|
7707
7716
|
nickname?: string | undefined;
|
|
7708
7717
|
/** 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,9 @@ export interface Routes {
|
|
|
7988
7997
|
bridge_name: string;
|
|
7989
7998
|
keypad_id?: number | undefined;
|
|
7990
7999
|
} | undefined;
|
|
8000
|
+
visionline_metadata?: {
|
|
8001
|
+
encoder_id: string;
|
|
8002
|
+
} | undefined;
|
|
7991
8003
|
}) & ({
|
|
7992
8004
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
7993
8005
|
code_constraints?: (Array<{
|
|
@@ -8023,7 +8035,7 @@ export interface Routes {
|
|
|
8023
8035
|
climate_preset_key?: string | undefined;
|
|
8024
8036
|
can_edit?: boolean | undefined;
|
|
8025
8037
|
can_delete?: boolean | undefined;
|
|
8026
|
-
name?: (string | null) | undefined;
|
|
8038
|
+
name?: ((string | null) | undefined) | undefined;
|
|
8027
8039
|
display_name?: string | undefined;
|
|
8028
8040
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
8029
8041
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -8039,7 +8051,7 @@ export interface Routes {
|
|
|
8039
8051
|
climate_preset_key?: string | undefined;
|
|
8040
8052
|
can_edit?: boolean | undefined;
|
|
8041
8053
|
can_delete?: boolean | undefined;
|
|
8042
|
-
name?: (string | null) | undefined;
|
|
8054
|
+
name?: ((string | null) | undefined) | undefined;
|
|
8043
8055
|
display_name?: string | undefined;
|
|
8044
8056
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
8045
8057
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -8053,7 +8065,7 @@ export interface Routes {
|
|
|
8053
8065
|
climate_preset_key: string;
|
|
8054
8066
|
can_edit: boolean;
|
|
8055
8067
|
can_delete: boolean;
|
|
8056
|
-
name?: string | null;
|
|
8068
|
+
name?: (string | null) | undefined;
|
|
8057
8069
|
display_name: string;
|
|
8058
8070
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
8059
8071
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -8142,8 +8154,8 @@ export interface Routes {
|
|
|
8142
8154
|
connected_account_id?: string | undefined;
|
|
8143
8155
|
connected_account_ids?: string[] | undefined;
|
|
8144
8156
|
connect_webview_id?: string | undefined;
|
|
8145
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
8146
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
8157
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
8158
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
8147
8159
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
8148
8160
|
device_ids?: string[] | undefined;
|
|
8149
8161
|
limit?: number;
|
|
@@ -8159,7 +8171,7 @@ export interface Routes {
|
|
|
8159
8171
|
/** Unique identifier for the device. */
|
|
8160
8172
|
device_id: string;
|
|
8161
8173
|
/** Type of the device. */
|
|
8162
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
8174
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
8163
8175
|
/** Optional nickname to describe the device, settable through Seam */
|
|
8164
8176
|
nickname?: string | undefined;
|
|
8165
8177
|
/** 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. */
|
|
@@ -8445,6 +8457,9 @@ export interface Routes {
|
|
|
8445
8457
|
bridge_name: string;
|
|
8446
8458
|
keypad_id?: number | undefined;
|
|
8447
8459
|
} | undefined;
|
|
8460
|
+
visionline_metadata?: {
|
|
8461
|
+
encoder_id: string;
|
|
8462
|
+
} | undefined;
|
|
8448
8463
|
}) & ({
|
|
8449
8464
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
8450
8465
|
code_constraints?: (Array<{
|
|
@@ -8480,7 +8495,7 @@ export interface Routes {
|
|
|
8480
8495
|
climate_preset_key?: string | undefined;
|
|
8481
8496
|
can_edit?: boolean | undefined;
|
|
8482
8497
|
can_delete?: boolean | undefined;
|
|
8483
|
-
name?: (string | null) | undefined;
|
|
8498
|
+
name?: ((string | null) | undefined) | undefined;
|
|
8484
8499
|
display_name?: string | undefined;
|
|
8485
8500
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
8486
8501
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -8496,7 +8511,7 @@ export interface Routes {
|
|
|
8496
8511
|
climate_preset_key?: string | undefined;
|
|
8497
8512
|
can_edit?: boolean | undefined;
|
|
8498
8513
|
can_delete?: boolean | undefined;
|
|
8499
|
-
name?: (string | null) | undefined;
|
|
8514
|
+
name?: ((string | null) | undefined) | undefined;
|
|
8500
8515
|
display_name?: string | undefined;
|
|
8501
8516
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
8502
8517
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -8510,7 +8525,7 @@ export interface Routes {
|
|
|
8510
8525
|
climate_preset_key: string;
|
|
8511
8526
|
can_edit: boolean;
|
|
8512
8527
|
can_delete: boolean;
|
|
8513
|
-
name?: string | null;
|
|
8528
|
+
name?: (string | null) | undefined;
|
|
8514
8529
|
display_name: string;
|
|
8515
8530
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
8516
8531
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -8591,7 +8606,7 @@ export interface Routes {
|
|
|
8591
8606
|
/** Unique identifier for the device. */
|
|
8592
8607
|
device_id: string;
|
|
8593
8608
|
/** Type of the device. */
|
|
8594
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
8609
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
8595
8610
|
/** Optional nickname to describe the device, settable through Seam */
|
|
8596
8611
|
nickname?: string | undefined;
|
|
8597
8612
|
/** 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. */
|
|
@@ -8877,6 +8892,9 @@ export interface Routes {
|
|
|
8877
8892
|
bridge_name: string;
|
|
8878
8893
|
keypad_id?: number | undefined;
|
|
8879
8894
|
} | undefined;
|
|
8895
|
+
visionline_metadata?: {
|
|
8896
|
+
encoder_id: string;
|
|
8897
|
+
} | undefined;
|
|
8880
8898
|
}) & ({
|
|
8881
8899
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
8882
8900
|
code_constraints?: (Array<{
|
|
@@ -8912,7 +8930,7 @@ export interface Routes {
|
|
|
8912
8930
|
climate_preset_key?: string | undefined;
|
|
8913
8931
|
can_edit?: boolean | undefined;
|
|
8914
8932
|
can_delete?: boolean | undefined;
|
|
8915
|
-
name?: (string | null) | undefined;
|
|
8933
|
+
name?: ((string | null) | undefined) | undefined;
|
|
8916
8934
|
display_name?: string | undefined;
|
|
8917
8935
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
8918
8936
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -8928,7 +8946,7 @@ export interface Routes {
|
|
|
8928
8946
|
climate_preset_key?: string | undefined;
|
|
8929
8947
|
can_edit?: boolean | undefined;
|
|
8930
8948
|
can_delete?: boolean | undefined;
|
|
8931
|
-
name?: (string | null) | undefined;
|
|
8949
|
+
name?: ((string | null) | undefined) | undefined;
|
|
8932
8950
|
display_name?: string | undefined;
|
|
8933
8951
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
8934
8952
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -8942,7 +8960,7 @@ export interface Routes {
|
|
|
8942
8960
|
climate_preset_key: string;
|
|
8943
8961
|
can_edit: boolean;
|
|
8944
8962
|
can_delete: boolean;
|
|
8945
|
-
name?: string | null;
|
|
8963
|
+
name?: (string | null) | undefined;
|
|
8946
8964
|
display_name: string;
|
|
8947
8965
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
8948
8966
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -9919,8 +9937,8 @@ export interface Routes {
|
|
|
9919
9937
|
connected_account_id?: string | undefined;
|
|
9920
9938
|
connected_account_ids?: string[] | undefined;
|
|
9921
9939
|
connect_webview_id?: string | undefined;
|
|
9922
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
9923
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
9940
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
9941
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
9924
9942
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
9925
9943
|
device_ids?: string[] | undefined;
|
|
9926
9944
|
limit?: number;
|
|
@@ -9936,7 +9954,7 @@ export interface Routes {
|
|
|
9936
9954
|
/** Unique identifier for the device. */
|
|
9937
9955
|
device_id: string;
|
|
9938
9956
|
/** Type of the device. */
|
|
9939
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
9957
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
9940
9958
|
/** Optional nickname to describe the device, settable through Seam */
|
|
9941
9959
|
nickname?: string | undefined;
|
|
9942
9960
|
/** 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. */
|
|
@@ -10222,6 +10240,9 @@ export interface Routes {
|
|
|
10222
10240
|
bridge_name: string;
|
|
10223
10241
|
keypad_id?: number | undefined;
|
|
10224
10242
|
} | undefined;
|
|
10243
|
+
visionline_metadata?: {
|
|
10244
|
+
encoder_id: string;
|
|
10245
|
+
} | undefined;
|
|
10225
10246
|
}) & ({
|
|
10226
10247
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
10227
10248
|
code_constraints?: (Array<{
|
|
@@ -10257,7 +10278,7 @@ export interface Routes {
|
|
|
10257
10278
|
climate_preset_key?: string | undefined;
|
|
10258
10279
|
can_edit?: boolean | undefined;
|
|
10259
10280
|
can_delete?: boolean | undefined;
|
|
10260
|
-
name?: (string | null) | undefined;
|
|
10281
|
+
name?: ((string | null) | undefined) | undefined;
|
|
10261
10282
|
display_name?: string | undefined;
|
|
10262
10283
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
10263
10284
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -10273,7 +10294,7 @@ export interface Routes {
|
|
|
10273
10294
|
climate_preset_key?: string | undefined;
|
|
10274
10295
|
can_edit?: boolean | undefined;
|
|
10275
10296
|
can_delete?: boolean | undefined;
|
|
10276
|
-
name?: (string | null) | undefined;
|
|
10297
|
+
name?: ((string | null) | undefined) | undefined;
|
|
10277
10298
|
display_name?: string | undefined;
|
|
10278
10299
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
10279
10300
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -10287,7 +10308,7 @@ export interface Routes {
|
|
|
10287
10308
|
climate_preset_key: string;
|
|
10288
10309
|
can_edit: boolean;
|
|
10289
10310
|
can_delete: boolean;
|
|
10290
|
-
name?: string | null;
|
|
10311
|
+
name?: (string | null) | undefined;
|
|
10291
10312
|
display_name: string;
|
|
10292
10313
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
10293
10314
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -10368,7 +10389,7 @@ export interface Routes {
|
|
|
10368
10389
|
/** Unique identifier for the device. */
|
|
10369
10390
|
device_id: string;
|
|
10370
10391
|
/** Type of the device. */
|
|
10371
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
10392
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
10372
10393
|
/** Optional nickname to describe the device, settable through Seam */
|
|
10373
10394
|
nickname?: string | undefined;
|
|
10374
10395
|
/** 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. */
|
|
@@ -10654,6 +10675,9 @@ export interface Routes {
|
|
|
10654
10675
|
bridge_name: string;
|
|
10655
10676
|
keypad_id?: number | undefined;
|
|
10656
10677
|
} | undefined;
|
|
10678
|
+
visionline_metadata?: {
|
|
10679
|
+
encoder_id: string;
|
|
10680
|
+
} | undefined;
|
|
10657
10681
|
}) & ({
|
|
10658
10682
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
10659
10683
|
code_constraints?: (Array<{
|
|
@@ -10689,7 +10713,7 @@ export interface Routes {
|
|
|
10689
10713
|
climate_preset_key?: string | undefined;
|
|
10690
10714
|
can_edit?: boolean | undefined;
|
|
10691
10715
|
can_delete?: boolean | undefined;
|
|
10692
|
-
name?: (string | null) | undefined;
|
|
10716
|
+
name?: ((string | null) | undefined) | undefined;
|
|
10693
10717
|
display_name?: string | undefined;
|
|
10694
10718
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
10695
10719
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -10705,7 +10729,7 @@ export interface Routes {
|
|
|
10705
10729
|
climate_preset_key?: string | undefined;
|
|
10706
10730
|
can_edit?: boolean | undefined;
|
|
10707
10731
|
can_delete?: boolean | undefined;
|
|
10708
|
-
name?: (string | null) | undefined;
|
|
10732
|
+
name?: ((string | null) | undefined) | undefined;
|
|
10709
10733
|
display_name?: string | undefined;
|
|
10710
10734
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
10711
10735
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -10719,7 +10743,7 @@ export interface Routes {
|
|
|
10719
10743
|
climate_preset_key: string;
|
|
10720
10744
|
can_edit: boolean;
|
|
10721
10745
|
can_delete: boolean;
|
|
10722
|
-
name?: string | null;
|
|
10746
|
+
name?: (string | null) | undefined;
|
|
10723
10747
|
display_name: string;
|
|
10724
10748
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
10725
10749
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -13188,7 +13212,7 @@ export interface Routes {
|
|
|
13188
13212
|
jsonBody: {
|
|
13189
13213
|
device_id: string;
|
|
13190
13214
|
climate_preset_key: string;
|
|
13191
|
-
name?: string | null;
|
|
13215
|
+
name?: (string | null) | undefined;
|
|
13192
13216
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
13193
13217
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
13194
13218
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -13204,7 +13228,7 @@ export interface Routes {
|
|
|
13204
13228
|
climate_preset_key: string;
|
|
13205
13229
|
can_edit: boolean;
|
|
13206
13230
|
can_delete: boolean;
|
|
13207
|
-
name?: string | null;
|
|
13231
|
+
name?: (string | null) | undefined;
|
|
13208
13232
|
display_name: string;
|
|
13209
13233
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
13210
13234
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -13243,7 +13267,7 @@ export interface Routes {
|
|
|
13243
13267
|
/** Unique identifier for the device. */
|
|
13244
13268
|
device_id: string;
|
|
13245
13269
|
/** Type of the device. */
|
|
13246
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
13270
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
13247
13271
|
/** Optional nickname to describe the device, settable through Seam */
|
|
13248
13272
|
nickname?: string | undefined;
|
|
13249
13273
|
/** 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. */
|
|
@@ -13529,6 +13553,9 @@ export interface Routes {
|
|
|
13529
13553
|
bridge_name: string;
|
|
13530
13554
|
keypad_id?: number | undefined;
|
|
13531
13555
|
} | undefined;
|
|
13556
|
+
visionline_metadata?: {
|
|
13557
|
+
encoder_id: string;
|
|
13558
|
+
} | undefined;
|
|
13532
13559
|
}) & ({
|
|
13533
13560
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
13534
13561
|
code_constraints?: (Array<{
|
|
@@ -13564,7 +13591,7 @@ export interface Routes {
|
|
|
13564
13591
|
climate_preset_key?: string | undefined;
|
|
13565
13592
|
can_edit?: boolean | undefined;
|
|
13566
13593
|
can_delete?: boolean | undefined;
|
|
13567
|
-
name?: (string | null) | undefined;
|
|
13594
|
+
name?: ((string | null) | undefined) | undefined;
|
|
13568
13595
|
display_name?: string | undefined;
|
|
13569
13596
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
13570
13597
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -13580,7 +13607,7 @@ export interface Routes {
|
|
|
13580
13607
|
climate_preset_key?: string | undefined;
|
|
13581
13608
|
can_edit?: boolean | undefined;
|
|
13582
13609
|
can_delete?: boolean | undefined;
|
|
13583
|
-
name?: (string | null) | undefined;
|
|
13610
|
+
name?: ((string | null) | undefined) | undefined;
|
|
13584
13611
|
display_name?: string | undefined;
|
|
13585
13612
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
13586
13613
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -13594,7 +13621,7 @@ export interface Routes {
|
|
|
13594
13621
|
climate_preset_key: string;
|
|
13595
13622
|
can_edit: boolean;
|
|
13596
13623
|
can_delete: boolean;
|
|
13597
|
-
name?: string | null;
|
|
13624
|
+
name?: (string | null) | undefined;
|
|
13598
13625
|
display_name: string;
|
|
13599
13626
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
13600
13627
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -14543,8 +14570,8 @@ export interface Routes {
|
|
|
14543
14570
|
connected_account_id?: string | undefined;
|
|
14544
14571
|
connected_account_ids?: string[] | undefined;
|
|
14545
14572
|
connect_webview_id?: string | undefined;
|
|
14546
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
14547
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
14573
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
14574
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
14548
14575
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
14549
14576
|
device_ids?: string[] | undefined;
|
|
14550
14577
|
limit?: number;
|
|
@@ -14560,7 +14587,7 @@ export interface Routes {
|
|
|
14560
14587
|
/** Unique identifier for the device. */
|
|
14561
14588
|
device_id: string;
|
|
14562
14589
|
/** Type of the device. */
|
|
14563
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
14590
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
14564
14591
|
/** Optional nickname to describe the device, settable through Seam */
|
|
14565
14592
|
nickname?: string | undefined;
|
|
14566
14593
|
/** 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. */
|
|
@@ -14846,6 +14873,9 @@ export interface Routes {
|
|
|
14846
14873
|
bridge_name: string;
|
|
14847
14874
|
keypad_id?: number | undefined;
|
|
14848
14875
|
} | undefined;
|
|
14876
|
+
visionline_metadata?: {
|
|
14877
|
+
encoder_id: string;
|
|
14878
|
+
} | undefined;
|
|
14849
14879
|
}) & ({
|
|
14850
14880
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
14851
14881
|
code_constraints?: (Array<{
|
|
@@ -14881,7 +14911,7 @@ export interface Routes {
|
|
|
14881
14911
|
climate_preset_key?: string | undefined;
|
|
14882
14912
|
can_edit?: boolean | undefined;
|
|
14883
14913
|
can_delete?: boolean | undefined;
|
|
14884
|
-
name?: (string | null) | undefined;
|
|
14914
|
+
name?: ((string | null) | undefined) | undefined;
|
|
14885
14915
|
display_name?: string | undefined;
|
|
14886
14916
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
14887
14917
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -14897,7 +14927,7 @@ export interface Routes {
|
|
|
14897
14927
|
climate_preset_key?: string | undefined;
|
|
14898
14928
|
can_edit?: boolean | undefined;
|
|
14899
14929
|
can_delete?: boolean | undefined;
|
|
14900
|
-
name?: (string | null) | undefined;
|
|
14930
|
+
name?: ((string | null) | undefined) | undefined;
|
|
14901
14931
|
display_name?: string | undefined;
|
|
14902
14932
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
14903
14933
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -14911,7 +14941,7 @@ export interface Routes {
|
|
|
14911
14941
|
climate_preset_key: string;
|
|
14912
14942
|
can_edit: boolean;
|
|
14913
14943
|
can_delete: boolean;
|
|
14914
|
-
name?: string | null;
|
|
14944
|
+
name?: (string | null) | undefined;
|
|
14915
14945
|
display_name: string;
|
|
14916
14946
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
14917
14947
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -15972,7 +16002,7 @@ export interface Routes {
|
|
|
15972
16002
|
jsonBody: {
|
|
15973
16003
|
device_id: string;
|
|
15974
16004
|
climate_preset_key: string;
|
|
15975
|
-
name?: string | null;
|
|
16005
|
+
name?: (string | null) | undefined;
|
|
15976
16006
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
15977
16007
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
15978
16008
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -16178,7 +16208,7 @@ export interface Routes {
|
|
|
16178
16208
|
/** Unique identifier for the device. */
|
|
16179
16209
|
device_id: string;
|
|
16180
16210
|
/** Type of the device. */
|
|
16181
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
16211
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
16182
16212
|
/** Optional nickname to describe the device, settable through Seam */
|
|
16183
16213
|
nickname?: string | undefined;
|
|
16184
16214
|
/** 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. */
|
|
@@ -16464,6 +16494,9 @@ export interface Routes {
|
|
|
16464
16494
|
bridge_name: string;
|
|
16465
16495
|
keypad_id?: number | undefined;
|
|
16466
16496
|
} | undefined;
|
|
16497
|
+
visionline_metadata?: {
|
|
16498
|
+
encoder_id: string;
|
|
16499
|
+
} | undefined;
|
|
16467
16500
|
}) & ({
|
|
16468
16501
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
16469
16502
|
code_constraints?: (Array<{
|
|
@@ -16499,7 +16532,7 @@ export interface Routes {
|
|
|
16499
16532
|
climate_preset_key?: string | undefined;
|
|
16500
16533
|
can_edit?: boolean | undefined;
|
|
16501
16534
|
can_delete?: boolean | undefined;
|
|
16502
|
-
name?: (string | null) | undefined;
|
|
16535
|
+
name?: ((string | null) | undefined) | undefined;
|
|
16503
16536
|
display_name?: string | undefined;
|
|
16504
16537
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
16505
16538
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -16515,7 +16548,7 @@ export interface Routes {
|
|
|
16515
16548
|
climate_preset_key?: string | undefined;
|
|
16516
16549
|
can_edit?: boolean | undefined;
|
|
16517
16550
|
can_delete?: boolean | undefined;
|
|
16518
|
-
name?: (string | null) | undefined;
|
|
16551
|
+
name?: ((string | null) | undefined) | undefined;
|
|
16519
16552
|
display_name?: string | undefined;
|
|
16520
16553
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
16521
16554
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -16529,7 +16562,7 @@ export interface Routes {
|
|
|
16529
16562
|
climate_preset_key: string;
|
|
16530
16563
|
can_edit: boolean;
|
|
16531
16564
|
can_delete: boolean;
|
|
16532
|
-
name?: string | null;
|
|
16565
|
+
name?: (string | null) | undefined;
|
|
16533
16566
|
display_name: string;
|
|
16534
16567
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
16535
16568
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -16612,7 +16645,7 @@ export interface Routes {
|
|
|
16612
16645
|
/** Unique identifier for the device. */
|
|
16613
16646
|
device_id: string;
|
|
16614
16647
|
/** Type of the device. */
|
|
16615
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
16648
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
16616
16649
|
/** Optional nickname to describe the device, settable through Seam */
|
|
16617
16650
|
nickname?: string | undefined;
|
|
16618
16651
|
/** 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. */
|
|
@@ -16898,6 +16931,9 @@ export interface Routes {
|
|
|
16898
16931
|
bridge_name: string;
|
|
16899
16932
|
keypad_id?: number | undefined;
|
|
16900
16933
|
} | undefined;
|
|
16934
|
+
visionline_metadata?: {
|
|
16935
|
+
encoder_id: string;
|
|
16936
|
+
} | undefined;
|
|
16901
16937
|
}) & ({
|
|
16902
16938
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
16903
16939
|
code_constraints?: (Array<{
|
|
@@ -16933,7 +16969,7 @@ export interface Routes {
|
|
|
16933
16969
|
climate_preset_key?: string | undefined;
|
|
16934
16970
|
can_edit?: boolean | undefined;
|
|
16935
16971
|
can_delete?: boolean | undefined;
|
|
16936
|
-
name?: (string | null) | undefined;
|
|
16972
|
+
name?: ((string | null) | undefined) | undefined;
|
|
16937
16973
|
display_name?: string | undefined;
|
|
16938
16974
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
16939
16975
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -16949,7 +16985,7 @@ export interface Routes {
|
|
|
16949
16985
|
climate_preset_key?: string | undefined;
|
|
16950
16986
|
can_edit?: boolean | undefined;
|
|
16951
16987
|
can_delete?: boolean | undefined;
|
|
16952
|
-
name?: (string | null) | undefined;
|
|
16988
|
+
name?: ((string | null) | undefined) | undefined;
|
|
16953
16989
|
display_name?: string | undefined;
|
|
16954
16990
|
fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
|
|
16955
16991
|
hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
|
|
@@ -16963,7 +16999,7 @@ export interface Routes {
|
|
|
16963
16999
|
climate_preset_key: string;
|
|
16964
17000
|
can_edit: boolean;
|
|
16965
17001
|
can_delete: boolean;
|
|
16966
|
-
name?: string | null;
|
|
17002
|
+
name?: (string | null) | undefined;
|
|
16967
17003
|
display_name: string;
|
|
16968
17004
|
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
16969
17005
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|