@seamapi/types 1.600.0 → 1.601.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +40 -20
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +141 -77
- package/dist/index.cjs +40 -20
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +90 -35
- package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js +3 -2
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-type.js +1 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +10 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +8 -3
- package/lib/seam/connect/openapi.d.ts +4 -0
- package/lib/seam/connect/openapi.js +21 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +95 -61
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +4 -2
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +21 -3
- package/src/lib/seam/connect/route-types.ts +95 -34
|
@@ -10092,7 +10092,7 @@ export type Routes = {
|
|
|
10092
10092
|
/** ID of the device. */
|
|
10093
10093
|
device_id: string;
|
|
10094
10094
|
/** Type of the device. */
|
|
10095
|
-
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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
10095
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
10096
10096
|
/** IDs of the spaces the device is in. */
|
|
10097
10097
|
space_ids: string[];
|
|
10098
10098
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -10680,10 +10680,12 @@ export type Routes = {
|
|
|
10680
10680
|
/** Whether the KeyNest device has a photo. */
|
|
10681
10681
|
has_photo?: boolean | undefined;
|
|
10682
10682
|
} | undefined;
|
|
10683
|
-
/** Metadata for
|
|
10683
|
+
/** Metadata for an Ultraloq device. */
|
|
10684
10684
|
ultraloq_metadata?: {
|
|
10685
|
-
/** Device ID for
|
|
10685
|
+
/** Device ID for an Ultraloq device. */
|
|
10686
10686
|
device_id: string;
|
|
10687
|
+
/** Device name for an Ultraloq device. */
|
|
10688
|
+
device_name: string;
|
|
10687
10689
|
} | undefined;
|
|
10688
10690
|
}) & ({
|
|
10689
10691
|
/** */
|
|
@@ -13504,7 +13506,7 @@ export type Routes = {
|
|
|
13504
13506
|
/** ID of the device. */
|
|
13505
13507
|
device_id: string;
|
|
13506
13508
|
/** Type of the device. */
|
|
13507
|
-
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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
13509
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
13508
13510
|
/** IDs of the spaces the device is in. */
|
|
13509
13511
|
space_ids: string[];
|
|
13510
13512
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -14092,10 +14094,12 @@ export type Routes = {
|
|
|
14092
14094
|
/** Whether the KeyNest device has a photo. */
|
|
14093
14095
|
has_photo?: boolean | undefined;
|
|
14094
14096
|
} | undefined;
|
|
14095
|
-
/** Metadata for
|
|
14097
|
+
/** Metadata for an Ultraloq device. */
|
|
14096
14098
|
ultraloq_metadata?: {
|
|
14097
|
-
/** Device ID for
|
|
14099
|
+
/** Device ID for an Ultraloq device. */
|
|
14098
14100
|
device_id: string;
|
|
14101
|
+
/** Device name for an Ultraloq device. */
|
|
14102
|
+
device_name: string;
|
|
14099
14103
|
} | undefined;
|
|
14100
14104
|
}) & ({
|
|
14101
14105
|
/** */
|
|
@@ -16990,7 +16994,7 @@ export type Routes = {
|
|
|
16990
16994
|
/** ID of the device. */
|
|
16991
16995
|
device_id: string;
|
|
16992
16996
|
/** Type of the device. */
|
|
16993
|
-
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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
16997
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
16994
16998
|
/** Unique identifier for the account associated with the device. */
|
|
16995
16999
|
connected_account_id: string;
|
|
16996
17000
|
/** Location information for the device. */
|
|
@@ -32126,7 +32130,7 @@ export type Routes = {
|
|
|
32126
32130
|
/** ID of the device. */
|
|
32127
32131
|
device_id: string;
|
|
32128
32132
|
/** Type of the device. */
|
|
32129
|
-
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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
32133
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
32130
32134
|
/** IDs of the spaces the device is in. */
|
|
32131
32135
|
space_ids: string[];
|
|
32132
32136
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -32714,10 +32718,12 @@ export type Routes = {
|
|
|
32714
32718
|
/** Whether the KeyNest device has a photo. */
|
|
32715
32719
|
has_photo?: boolean | undefined;
|
|
32716
32720
|
} | undefined;
|
|
32717
|
-
/** Metadata for
|
|
32721
|
+
/** Metadata for an Ultraloq device. */
|
|
32718
32722
|
ultraloq_metadata?: {
|
|
32719
|
-
/** Device ID for
|
|
32723
|
+
/** Device ID for an Ultraloq device. */
|
|
32720
32724
|
device_id: string;
|
|
32725
|
+
/** Device name for an Ultraloq device. */
|
|
32726
|
+
device_name: string;
|
|
32721
32727
|
} | undefined;
|
|
32722
32728
|
}) & ({
|
|
32723
32729
|
/** */
|
|
@@ -33350,9 +33356,9 @@ export type Routes = {
|
|
|
33350
33356
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
33351
33357
|
connect_webview_id?: string | undefined;
|
|
33352
33358
|
/** Device type for which you want to list devices. */
|
|
33353
|
-
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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
33359
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
33354
33360
|
/** Array of device types for which you want to list devices. */
|
|
33355
|
-
device_types?: (('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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
|
|
33361
|
+
device_types?: (('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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
|
|
33356
33362
|
/** Manufacturer for which you want to list devices. */
|
|
33357
33363
|
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' | 'two_n' | 'ttlock' | 'igloohome' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'tado' | 'sensi' | 'smartthings' | 'keynest' | 'ultraloq') | undefined;
|
|
33358
33364
|
/** Array of device IDs for which you want to list devices. */
|
|
@@ -33387,7 +33393,7 @@ export type Routes = {
|
|
|
33387
33393
|
/** ID of the device. */
|
|
33388
33394
|
device_id: string;
|
|
33389
33395
|
/** Type of the device. */
|
|
33390
|
-
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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
33396
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
33391
33397
|
/** IDs of the spaces the device is in. */
|
|
33392
33398
|
space_ids: string[];
|
|
33393
33399
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -33975,10 +33981,12 @@ export type Routes = {
|
|
|
33975
33981
|
/** Whether the KeyNest device has a photo. */
|
|
33976
33982
|
has_photo?: boolean | undefined;
|
|
33977
33983
|
} | undefined;
|
|
33978
|
-
/** Metadata for
|
|
33984
|
+
/** Metadata for an Ultraloq device. */
|
|
33979
33985
|
ultraloq_metadata?: {
|
|
33980
|
-
/** Device ID for
|
|
33986
|
+
/** Device ID for an Ultraloq device. */
|
|
33981
33987
|
device_id: string;
|
|
33988
|
+
/** Device name for an Ultraloq device. */
|
|
33989
|
+
device_name: string;
|
|
33982
33990
|
} | undefined;
|
|
33983
33991
|
}) & ({
|
|
33984
33992
|
/** */
|
|
@@ -34733,7 +34741,7 @@ export type Routes = {
|
|
|
34733
34741
|
/** ID of the device. */
|
|
34734
34742
|
device_id: string;
|
|
34735
34743
|
/** Type of the device. */
|
|
34736
|
-
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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
34744
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
34737
34745
|
/** Unique identifier for the account associated with the device. */
|
|
34738
34746
|
connected_account_id: string;
|
|
34739
34747
|
/** Location information for the device. */
|
|
@@ -35129,9 +35137,9 @@ export type Routes = {
|
|
|
35129
35137
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
35130
35138
|
connect_webview_id?: string | undefined;
|
|
35131
35139
|
/** Device type for which you want to list devices. */
|
|
35132
|
-
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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
35140
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
35133
35141
|
/** Array of device types for which you want to list devices. */
|
|
35134
|
-
device_types?: (('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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
|
|
35142
|
+
device_types?: (('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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
|
|
35135
35143
|
/** Manufacturer for which you want to list devices. */
|
|
35136
35144
|
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' | 'two_n' | 'ttlock' | 'igloohome' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'tado' | 'sensi' | 'smartthings' | 'keynest' | 'ultraloq') | undefined;
|
|
35137
35145
|
/** Array of device IDs for which you want to list devices. */
|
|
@@ -35166,7 +35174,7 @@ export type Routes = {
|
|
|
35166
35174
|
/** ID of the device. */
|
|
35167
35175
|
device_id: string;
|
|
35168
35176
|
/** Type of the device. */
|
|
35169
|
-
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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
35177
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
35170
35178
|
/** Unique identifier for the account associated with the device. */
|
|
35171
35179
|
connected_account_id: string;
|
|
35172
35180
|
/** Location information for the device. */
|
|
@@ -39569,7 +39577,7 @@ export type Routes = {
|
|
|
39569
39577
|
/** ID of the device. */
|
|
39570
39578
|
device_id: string;
|
|
39571
39579
|
/** Type of the device. */
|
|
39572
|
-
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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
39580
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
39573
39581
|
/** IDs of the spaces the device is in. */
|
|
39574
39582
|
space_ids: string[];
|
|
39575
39583
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -40157,10 +40165,12 @@ export type Routes = {
|
|
|
40157
40165
|
/** Whether the KeyNest device has a photo. */
|
|
40158
40166
|
has_photo?: boolean | undefined;
|
|
40159
40167
|
} | undefined;
|
|
40160
|
-
/** Metadata for
|
|
40168
|
+
/** Metadata for an Ultraloq device. */
|
|
40161
40169
|
ultraloq_metadata?: {
|
|
40162
|
-
/** Device ID for
|
|
40170
|
+
/** Device ID for an Ultraloq device. */
|
|
40163
40171
|
device_id: string;
|
|
40172
|
+
/** Device name for an Ultraloq device. */
|
|
40173
|
+
device_name: string;
|
|
40164
40174
|
} | undefined;
|
|
40165
40175
|
}) & ({
|
|
40166
40176
|
/** */
|
|
@@ -40781,7 +40791,7 @@ export type Routes = {
|
|
|
40781
40791
|
/** ID of the device. */
|
|
40782
40792
|
device_id: string;
|
|
40783
40793
|
/** Type of the device. */
|
|
40784
|
-
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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
40794
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
40785
40795
|
/** IDs of the spaces the device is in. */
|
|
40786
40796
|
space_ids: string[];
|
|
40787
40797
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -41369,10 +41379,12 @@ export type Routes = {
|
|
|
41369
41379
|
/** Whether the KeyNest device has a photo. */
|
|
41370
41380
|
has_photo?: boolean | undefined;
|
|
41371
41381
|
} | undefined;
|
|
41372
|
-
/** Metadata for
|
|
41382
|
+
/** Metadata for an Ultraloq device. */
|
|
41373
41383
|
ultraloq_metadata?: {
|
|
41374
|
-
/** Device ID for
|
|
41384
|
+
/** Device ID for an Ultraloq device. */
|
|
41375
41385
|
device_id: string;
|
|
41386
|
+
/** Device name for an Ultraloq device. */
|
|
41387
|
+
device_name: string;
|
|
41376
41388
|
} | undefined;
|
|
41377
41389
|
}) & ({
|
|
41378
41390
|
/** */
|
|
@@ -42005,9 +42017,9 @@ export type Routes = {
|
|
|
42005
42017
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
42006
42018
|
connect_webview_id?: string | undefined;
|
|
42007
42019
|
/** Device type of the locks that you want to list. */
|
|
42008
|
-
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' | 'akiles_lock') | undefined;
|
|
42020
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | undefined;
|
|
42009
42021
|
/** Device types of the locks that you want to list. */
|
|
42010
|
-
device_types?: ('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' | 'akiles_lock')[] | undefined;
|
|
42022
|
+
device_types?: ('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' | 'akiles_lock' | 'ultraloq_lock')[] | undefined;
|
|
42011
42023
|
/** Manufacturer of the locks that you want to list. */
|
|
42012
42024
|
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'kwikset2' | 'smartthings' | 'ultraloq') | undefined;
|
|
42013
42025
|
/** Array of device IDs for which you want to list devices. */
|
|
@@ -42042,7 +42054,7 @@ export type Routes = {
|
|
|
42042
42054
|
/** ID of the device. */
|
|
42043
42055
|
device_id: string;
|
|
42044
42056
|
/** Type of the device. */
|
|
42045
|
-
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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
42057
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
42046
42058
|
/** IDs of the spaces the device is in. */
|
|
42047
42059
|
space_ids: string[];
|
|
42048
42060
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -42630,10 +42642,12 @@ export type Routes = {
|
|
|
42630
42642
|
/** Whether the KeyNest device has a photo. */
|
|
42631
42643
|
has_photo?: boolean | undefined;
|
|
42632
42644
|
} | undefined;
|
|
42633
|
-
/** Metadata for
|
|
42645
|
+
/** Metadata for an Ultraloq device. */
|
|
42634
42646
|
ultraloq_metadata?: {
|
|
42635
|
-
/** Device ID for
|
|
42647
|
+
/** Device ID for an Ultraloq device. */
|
|
42636
42648
|
device_id: string;
|
|
42649
|
+
/** Device name for an Ultraloq device. */
|
|
42650
|
+
device_name: string;
|
|
42637
42651
|
} | undefined;
|
|
42638
42652
|
}) & ({
|
|
42639
42653
|
/** */
|
|
@@ -43253,7 +43267,7 @@ export type Routes = {
|
|
|
43253
43267
|
/** ID of the device. */
|
|
43254
43268
|
device_id: string;
|
|
43255
43269
|
/** Type of the device. */
|
|
43256
|
-
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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
43270
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
43257
43271
|
/** IDs of the spaces the device is in. */
|
|
43258
43272
|
space_ids: string[];
|
|
43259
43273
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -43841,10 +43855,12 @@ export type Routes = {
|
|
|
43841
43855
|
/** Whether the KeyNest device has a photo. */
|
|
43842
43856
|
has_photo?: boolean | undefined;
|
|
43843
43857
|
} | undefined;
|
|
43844
|
-
/** Metadata for
|
|
43858
|
+
/** Metadata for an Ultraloq device. */
|
|
43845
43859
|
ultraloq_metadata?: {
|
|
43846
|
-
/** Device ID for
|
|
43860
|
+
/** Device ID for an Ultraloq device. */
|
|
43847
43861
|
device_id: string;
|
|
43862
|
+
/** Device name for an Ultraloq device. */
|
|
43863
|
+
device_name: string;
|
|
43848
43864
|
} | undefined;
|
|
43849
43865
|
}) & ({
|
|
43850
43866
|
/** */
|
|
@@ -49552,7 +49568,7 @@ export type Routes = {
|
|
|
49552
49568
|
/** ID of the device. */
|
|
49553
49569
|
device_id: string;
|
|
49554
49570
|
/** Type of the device. */
|
|
49555
|
-
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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
49571
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
49556
49572
|
/** IDs of the spaces the device is in. */
|
|
49557
49573
|
space_ids: string[];
|
|
49558
49574
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -50140,10 +50156,12 @@ export type Routes = {
|
|
|
50140
50156
|
/** Whether the KeyNest device has a photo. */
|
|
50141
50157
|
has_photo?: boolean | undefined;
|
|
50142
50158
|
} | undefined;
|
|
50143
|
-
/** Metadata for
|
|
50159
|
+
/** Metadata for an Ultraloq device. */
|
|
50144
50160
|
ultraloq_metadata?: {
|
|
50145
|
-
/** Device ID for
|
|
50161
|
+
/** Device ID for an Ultraloq device. */
|
|
50146
50162
|
device_id: string;
|
|
50163
|
+
/** Device name for an Ultraloq device. */
|
|
50164
|
+
device_name: string;
|
|
50147
50165
|
} | undefined;
|
|
50148
50166
|
}) & ({
|
|
50149
50167
|
/** */
|
|
@@ -50763,7 +50781,7 @@ export type Routes = {
|
|
|
50763
50781
|
/** ID of the device. */
|
|
50764
50782
|
device_id: string;
|
|
50765
50783
|
/** Type of the device. */
|
|
50766
|
-
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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
50784
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
50767
50785
|
/** IDs of the spaces the device is in. */
|
|
50768
50786
|
space_ids: string[];
|
|
50769
50787
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -51351,10 +51369,12 @@ export type Routes = {
|
|
|
51351
51369
|
/** Whether the KeyNest device has a photo. */
|
|
51352
51370
|
has_photo?: boolean | undefined;
|
|
51353
51371
|
} | undefined;
|
|
51354
|
-
/** Metadata for
|
|
51372
|
+
/** Metadata for an Ultraloq device. */
|
|
51355
51373
|
ultraloq_metadata?: {
|
|
51356
|
-
/** Device ID for
|
|
51374
|
+
/** Device ID for an Ultraloq device. */
|
|
51357
51375
|
device_id: string;
|
|
51376
|
+
/** Device name for an Ultraloq device. */
|
|
51377
|
+
device_name: string;
|
|
51358
51378
|
} | undefined;
|
|
51359
51379
|
}) & ({
|
|
51360
51380
|
/** */
|
|
@@ -59702,7 +59722,7 @@ export type Routes = {
|
|
|
59702
59722
|
/** ID of the device. */
|
|
59703
59723
|
device_id: string;
|
|
59704
59724
|
/** Type of the device. */
|
|
59705
|
-
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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
59725
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
59706
59726
|
/** IDs of the spaces the device is in. */
|
|
59707
59727
|
space_ids: string[];
|
|
59708
59728
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -60290,10 +60310,12 @@ export type Routes = {
|
|
|
60290
60310
|
/** Whether the KeyNest device has a photo. */
|
|
60291
60311
|
has_photo?: boolean | undefined;
|
|
60292
60312
|
} | undefined;
|
|
60293
|
-
/** Metadata for
|
|
60313
|
+
/** Metadata for an Ultraloq device. */
|
|
60294
60314
|
ultraloq_metadata?: {
|
|
60295
|
-
/** Device ID for
|
|
60315
|
+
/** Device ID for an Ultraloq device. */
|
|
60296
60316
|
device_id: string;
|
|
60317
|
+
/** Device name for an Ultraloq device. */
|
|
60318
|
+
device_name: string;
|
|
60297
60319
|
} | undefined;
|
|
60298
60320
|
}) & ({
|
|
60299
60321
|
/** */
|
|
@@ -65313,7 +65335,7 @@ export type Routes = {
|
|
|
65313
65335
|
/** ID of the device. */
|
|
65314
65336
|
device_id: string;
|
|
65315
65337
|
/** Type of the device. */
|
|
65316
|
-
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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
65338
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
65317
65339
|
/** IDs of the spaces the device is in. */
|
|
65318
65340
|
space_ids: string[];
|
|
65319
65341
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -65901,10 +65923,12 @@ export type Routes = {
|
|
|
65901
65923
|
/** Whether the KeyNest device has a photo. */
|
|
65902
65924
|
has_photo?: boolean | undefined;
|
|
65903
65925
|
} | undefined;
|
|
65904
|
-
/** Metadata for
|
|
65926
|
+
/** Metadata for an Ultraloq device. */
|
|
65905
65927
|
ultraloq_metadata?: {
|
|
65906
|
-
/** Device ID for
|
|
65928
|
+
/** Device ID for an Ultraloq device. */
|
|
65907
65929
|
device_id: string;
|
|
65930
|
+
/** Device name for an Ultraloq device. */
|
|
65931
|
+
device_name: string;
|
|
65908
65932
|
} | undefined;
|
|
65909
65933
|
}) & ({
|
|
65910
65934
|
/** */
|
|
@@ -69106,7 +69130,7 @@ export type Routes = {
|
|
|
69106
69130
|
/** ID of the device. */
|
|
69107
69131
|
device_id: string;
|
|
69108
69132
|
/** Type of the device. */
|
|
69109
|
-
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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
69133
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
69110
69134
|
/** IDs of the spaces the device is in. */
|
|
69111
69135
|
space_ids: string[];
|
|
69112
69136
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -69694,10 +69718,12 @@ export type Routes = {
|
|
|
69694
69718
|
/** Whether the KeyNest device has a photo. */
|
|
69695
69719
|
has_photo?: boolean | undefined;
|
|
69696
69720
|
} | undefined;
|
|
69697
|
-
/** Metadata for
|
|
69721
|
+
/** Metadata for an Ultraloq device. */
|
|
69698
69722
|
ultraloq_metadata?: {
|
|
69699
|
-
/** Device ID for
|
|
69723
|
+
/** Device ID for an Ultraloq device. */
|
|
69700
69724
|
device_id: string;
|
|
69725
|
+
/** Device name for an Ultraloq device. */
|
|
69726
|
+
device_name: string;
|
|
69701
69727
|
} | undefined;
|
|
69702
69728
|
}) & ({
|
|
69703
69729
|
/** */
|
|
@@ -70317,7 +70343,7 @@ export type Routes = {
|
|
|
70317
70343
|
/** ID of the device. */
|
|
70318
70344
|
device_id: string;
|
|
70319
70345
|
/** Type of the device. */
|
|
70320
|
-
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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
70346
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
70321
70347
|
/** IDs of the spaces the device is in. */
|
|
70322
70348
|
space_ids: string[];
|
|
70323
70349
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -70905,10 +70931,12 @@ export type Routes = {
|
|
|
70905
70931
|
/** Whether the KeyNest device has a photo. */
|
|
70906
70932
|
has_photo?: boolean | undefined;
|
|
70907
70933
|
} | undefined;
|
|
70908
|
-
/** Metadata for
|
|
70934
|
+
/** Metadata for an Ultraloq device. */
|
|
70909
70935
|
ultraloq_metadata?: {
|
|
70910
|
-
/** Device ID for
|
|
70936
|
+
/** Device ID for an Ultraloq device. */
|
|
70911
70937
|
device_id: string;
|
|
70938
|
+
/** Device name for an Ultraloq device. */
|
|
70939
|
+
device_name: string;
|
|
70912
70940
|
} | undefined;
|
|
70913
70941
|
}) & ({
|
|
70914
70942
|
/** */
|
|
@@ -77471,7 +77499,7 @@ export type Routes = {
|
|
|
77471
77499
|
/** ID of the device. */
|
|
77472
77500
|
device_id: string;
|
|
77473
77501
|
/** Type of the device. */
|
|
77474
|
-
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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
77502
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
77475
77503
|
/** IDs of the spaces the device is in. */
|
|
77476
77504
|
space_ids: string[];
|
|
77477
77505
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -78059,10 +78087,12 @@ export type Routes = {
|
|
|
78059
78087
|
/** Whether the KeyNest device has a photo. */
|
|
78060
78088
|
has_photo?: boolean | undefined;
|
|
78061
78089
|
} | undefined;
|
|
78062
|
-
/** Metadata for
|
|
78090
|
+
/** Metadata for an Ultraloq device. */
|
|
78063
78091
|
ultraloq_metadata?: {
|
|
78064
|
-
/** Device ID for
|
|
78092
|
+
/** Device ID for an Ultraloq device. */
|
|
78065
78093
|
device_id: string;
|
|
78094
|
+
/** Device name for an Ultraloq device. */
|
|
78095
|
+
device_name: string;
|
|
78066
78096
|
} | undefined;
|
|
78067
78097
|
}) & ({
|
|
78068
78098
|
/** */
|
|
@@ -78684,7 +78714,7 @@ export type Routes = {
|
|
|
78684
78714
|
/** ID of the device. */
|
|
78685
78715
|
device_id: string;
|
|
78686
78716
|
/** Type of the device. */
|
|
78687
|
-
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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
78717
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
78688
78718
|
/** IDs of the spaces the device is in. */
|
|
78689
78719
|
space_ids: string[];
|
|
78690
78720
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -79272,10 +79302,12 @@ export type Routes = {
|
|
|
79272
79302
|
/** Whether the KeyNest device has a photo. */
|
|
79273
79303
|
has_photo?: boolean | undefined;
|
|
79274
79304
|
} | undefined;
|
|
79275
|
-
/** Metadata for
|
|
79305
|
+
/** Metadata for an Ultraloq device. */
|
|
79276
79306
|
ultraloq_metadata?: {
|
|
79277
|
-
/** Device ID for
|
|
79307
|
+
/** Device ID for an Ultraloq device. */
|
|
79278
79308
|
device_id: string;
|
|
79309
|
+
/** Device name for an Ultraloq device. */
|
|
79310
|
+
device_name: string;
|
|
79279
79311
|
} | undefined;
|
|
79280
79312
|
}) & ({
|
|
79281
79313
|
/** */
|
|
@@ -80804,7 +80836,7 @@ export type Routes = {
|
|
|
80804
80836
|
/** ID of the device. */
|
|
80805
80837
|
device_id: string;
|
|
80806
80838
|
/** Type of the device. */
|
|
80807
|
-
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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
80839
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
80808
80840
|
/** IDs of the spaces the device is in. */
|
|
80809
80841
|
space_ids: string[];
|
|
80810
80842
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -81392,10 +81424,12 @@ export type Routes = {
|
|
|
81392
81424
|
/** Whether the KeyNest device has a photo. */
|
|
81393
81425
|
has_photo?: boolean | undefined;
|
|
81394
81426
|
} | undefined;
|
|
81395
|
-
/** Metadata for
|
|
81427
|
+
/** Metadata for an Ultraloq device. */
|
|
81396
81428
|
ultraloq_metadata?: {
|
|
81397
|
-
/** Device ID for
|
|
81429
|
+
/** Device ID for an Ultraloq device. */
|
|
81398
81430
|
device_id: string;
|
|
81431
|
+
/** Device name for an Ultraloq device. */
|
|
81432
|
+
device_name: string;
|
|
81399
81433
|
} | undefined;
|
|
81400
81434
|
}) & ({
|
|
81401
81435
|
/** */
|
|
@@ -84290,7 +84324,7 @@ export type Routes = {
|
|
|
84290
84324
|
/** ID of the device. */
|
|
84291
84325
|
device_id: string;
|
|
84292
84326
|
/** Type of the device. */
|
|
84293
|
-
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' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
84327
|
+
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' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
84294
84328
|
/** Unique identifier for the account associated with the device. */
|
|
84295
84329
|
connected_account_id: string;
|
|
84296
84330
|
/** Location information for the device. */
|
package/package.json
CHANGED
|
@@ -684,11 +684,13 @@ export const device_metadata = z
|
|
|
684
684
|
})
|
|
685
685
|
.partial()
|
|
686
686
|
.describe(`Metadata for a KeyNest device.`),
|
|
687
|
+
|
|
687
688
|
ultraloq_metadata: z
|
|
688
689
|
.object({
|
|
689
|
-
device_id: z.string().describe(`Device ID for
|
|
690
|
+
device_id: z.string().describe(`Device ID for an Ultraloq device.`),
|
|
691
|
+
device_name: z.string().describe(`Device name for an Ultraloq device.`),
|
|
690
692
|
})
|
|
691
|
-
.describe(`Metadata for
|
|
693
|
+
.describe(`Metadata for an Ultraloq device.`),
|
|
692
694
|
})
|
|
693
695
|
.partial().describe(`
|
|
694
696
|
---
|