@seamapi/types 1.599.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 +255 -20
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +487 -77
- package/dist/index.cjs +255 -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 +285 -0
- package/lib/seam/connect/openapi.js +236 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +160 -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 +242 -3
- package/src/lib/seam/connect/route-types.ts +164 -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
|
/** */
|
|
@@ -56660,6 +56680,58 @@ export type Routes = {
|
|
|
56660
56680
|
formData: {};
|
|
56661
56681
|
jsonResponse: {};
|
|
56662
56682
|
};
|
|
56683
|
+
'/seam/customer/v1/connectors/create': {
|
|
56684
|
+
route: '/seam/customer/v1/connectors/create';
|
|
56685
|
+
method: 'POST';
|
|
56686
|
+
queryParams: {};
|
|
56687
|
+
jsonBody: {
|
|
56688
|
+
/** Type of connector to create */
|
|
56689
|
+
connector_type: 'mews' | 'mock';
|
|
56690
|
+
/** Key identifying the customer */
|
|
56691
|
+
customer_key: string;
|
|
56692
|
+
/** Instance-specific configuration for the connector */
|
|
56693
|
+
config: {
|
|
56694
|
+
client_token: string;
|
|
56695
|
+
access_token: string;
|
|
56696
|
+
client: string;
|
|
56697
|
+
enterprise_ids?: string[] | undefined;
|
|
56698
|
+
} | {};
|
|
56699
|
+
};
|
|
56700
|
+
commonParams: {};
|
|
56701
|
+
formData: {};
|
|
56702
|
+
jsonResponse: {
|
|
56703
|
+
connector: {
|
|
56704
|
+
connector_id: string;
|
|
56705
|
+
connector_type: string;
|
|
56706
|
+
status: 'active' | 'inactive' | 'error';
|
|
56707
|
+
webhook_subscription?: {
|
|
56708
|
+
subscription_id: string;
|
|
56709
|
+
webhook_url: string;
|
|
56710
|
+
events: string[];
|
|
56711
|
+
status: 'active' | 'inactive' | 'error';
|
|
56712
|
+
} | undefined;
|
|
56713
|
+
error?: string | undefined;
|
|
56714
|
+
};
|
|
56715
|
+
};
|
|
56716
|
+
};
|
|
56717
|
+
'/seam/customer/v1/connectors/sync': {
|
|
56718
|
+
route: '/seam/customer/v1/connectors/sync';
|
|
56719
|
+
method: 'POST';
|
|
56720
|
+
queryParams: {};
|
|
56721
|
+
jsonBody: {};
|
|
56722
|
+
commonParams: {
|
|
56723
|
+
/** ID of the connector to sync */
|
|
56724
|
+
connector_id: string;
|
|
56725
|
+
};
|
|
56726
|
+
formData: {};
|
|
56727
|
+
jsonResponse: {
|
|
56728
|
+
connector_sync: {
|
|
56729
|
+
connector_id: string;
|
|
56730
|
+
status: string;
|
|
56731
|
+
message: string;
|
|
56732
|
+
};
|
|
56733
|
+
};
|
|
56734
|
+
};
|
|
56663
56735
|
'/seam/customer/v1/events/list': {
|
|
56664
56736
|
route: '/seam/customer/v1/events/list';
|
|
56665
56737
|
method: 'GET' | 'POST';
|
|
@@ -58862,6 +58934,19 @@ export type Routes = {
|
|
|
58862
58934
|
}[];
|
|
58863
58935
|
};
|
|
58864
58936
|
};
|
|
58937
|
+
'/seam/customer/v1/webhooks/connectors/[workspace_id]/[connector_id]': {
|
|
58938
|
+
route: '/seam/customer/v1/webhooks/connectors/[workspace_id]/[connector_id]';
|
|
58939
|
+
method: 'POST';
|
|
58940
|
+
queryParams: {};
|
|
58941
|
+
jsonBody: {};
|
|
58942
|
+
commonParams: {};
|
|
58943
|
+
formData: {};
|
|
58944
|
+
jsonResponse: {
|
|
58945
|
+
success: boolean;
|
|
58946
|
+
processed_events: number;
|
|
58947
|
+
error?: string | undefined;
|
|
58948
|
+
};
|
|
58949
|
+
};
|
|
58865
58950
|
'/seam/instant_key/v1/client_sessions/exchange_short_code': {
|
|
58866
58951
|
route: '/seam/instant_key/v1/client_sessions/exchange_short_code';
|
|
58867
58952
|
method: 'POST';
|
|
@@ -59637,7 +59722,7 @@ export type Routes = {
|
|
|
59637
59722
|
/** ID of the device. */
|
|
59638
59723
|
device_id: string;
|
|
59639
59724
|
/** Type of the device. */
|
|
59640
|
-
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');
|
|
59641
59726
|
/** IDs of the spaces the device is in. */
|
|
59642
59727
|
space_ids: string[];
|
|
59643
59728
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -60225,10 +60310,12 @@ export type Routes = {
|
|
|
60225
60310
|
/** Whether the KeyNest device has a photo. */
|
|
60226
60311
|
has_photo?: boolean | undefined;
|
|
60227
60312
|
} | undefined;
|
|
60228
|
-
/** Metadata for
|
|
60313
|
+
/** Metadata for an Ultraloq device. */
|
|
60229
60314
|
ultraloq_metadata?: {
|
|
60230
|
-
/** Device ID for
|
|
60315
|
+
/** Device ID for an Ultraloq device. */
|
|
60231
60316
|
device_id: string;
|
|
60317
|
+
/** Device name for an Ultraloq device. */
|
|
60318
|
+
device_name: string;
|
|
60232
60319
|
} | undefined;
|
|
60233
60320
|
}) & ({
|
|
60234
60321
|
/** */
|
|
@@ -65248,7 +65335,7 @@ export type Routes = {
|
|
|
65248
65335
|
/** ID of the device. */
|
|
65249
65336
|
device_id: string;
|
|
65250
65337
|
/** Type of the device. */
|
|
65251
|
-
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');
|
|
65252
65339
|
/** IDs of the spaces the device is in. */
|
|
65253
65340
|
space_ids: string[];
|
|
65254
65341
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -65836,10 +65923,12 @@ export type Routes = {
|
|
|
65836
65923
|
/** Whether the KeyNest device has a photo. */
|
|
65837
65924
|
has_photo?: boolean | undefined;
|
|
65838
65925
|
} | undefined;
|
|
65839
|
-
/** Metadata for
|
|
65926
|
+
/** Metadata for an Ultraloq device. */
|
|
65840
65927
|
ultraloq_metadata?: {
|
|
65841
|
-
/** Device ID for
|
|
65928
|
+
/** Device ID for an Ultraloq device. */
|
|
65842
65929
|
device_id: string;
|
|
65930
|
+
/** Device name for an Ultraloq device. */
|
|
65931
|
+
device_name: string;
|
|
65843
65932
|
} | undefined;
|
|
65844
65933
|
}) & ({
|
|
65845
65934
|
/** */
|
|
@@ -69041,7 +69130,7 @@ export type Routes = {
|
|
|
69041
69130
|
/** ID of the device. */
|
|
69042
69131
|
device_id: string;
|
|
69043
69132
|
/** Type of the device. */
|
|
69044
|
-
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');
|
|
69045
69134
|
/** IDs of the spaces the device is in. */
|
|
69046
69135
|
space_ids: string[];
|
|
69047
69136
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -69629,10 +69718,12 @@ export type Routes = {
|
|
|
69629
69718
|
/** Whether the KeyNest device has a photo. */
|
|
69630
69719
|
has_photo?: boolean | undefined;
|
|
69631
69720
|
} | undefined;
|
|
69632
|
-
/** Metadata for
|
|
69721
|
+
/** Metadata for an Ultraloq device. */
|
|
69633
69722
|
ultraloq_metadata?: {
|
|
69634
|
-
/** Device ID for
|
|
69723
|
+
/** Device ID for an Ultraloq device. */
|
|
69635
69724
|
device_id: string;
|
|
69725
|
+
/** Device name for an Ultraloq device. */
|
|
69726
|
+
device_name: string;
|
|
69636
69727
|
} | undefined;
|
|
69637
69728
|
}) & ({
|
|
69638
69729
|
/** */
|
|
@@ -70252,7 +70343,7 @@ export type Routes = {
|
|
|
70252
70343
|
/** ID of the device. */
|
|
70253
70344
|
device_id: string;
|
|
70254
70345
|
/** Type of the device. */
|
|
70255
|
-
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');
|
|
70256
70347
|
/** IDs of the spaces the device is in. */
|
|
70257
70348
|
space_ids: string[];
|
|
70258
70349
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -70840,10 +70931,12 @@ export type Routes = {
|
|
|
70840
70931
|
/** Whether the KeyNest device has a photo. */
|
|
70841
70932
|
has_photo?: boolean | undefined;
|
|
70842
70933
|
} | undefined;
|
|
70843
|
-
/** Metadata for
|
|
70934
|
+
/** Metadata for an Ultraloq device. */
|
|
70844
70935
|
ultraloq_metadata?: {
|
|
70845
|
-
/** Device ID for
|
|
70936
|
+
/** Device ID for an Ultraloq device. */
|
|
70846
70937
|
device_id: string;
|
|
70938
|
+
/** Device name for an Ultraloq device. */
|
|
70939
|
+
device_name: string;
|
|
70847
70940
|
} | undefined;
|
|
70848
70941
|
}) & ({
|
|
70849
70942
|
/** */
|
|
@@ -77406,7 +77499,7 @@ export type Routes = {
|
|
|
77406
77499
|
/** ID of the device. */
|
|
77407
77500
|
device_id: string;
|
|
77408
77501
|
/** Type of the device. */
|
|
77409
|
-
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');
|
|
77410
77503
|
/** IDs of the spaces the device is in. */
|
|
77411
77504
|
space_ids: string[];
|
|
77412
77505
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -77994,10 +78087,12 @@ export type Routes = {
|
|
|
77994
78087
|
/** Whether the KeyNest device has a photo. */
|
|
77995
78088
|
has_photo?: boolean | undefined;
|
|
77996
78089
|
} | undefined;
|
|
77997
|
-
/** Metadata for
|
|
78090
|
+
/** Metadata for an Ultraloq device. */
|
|
77998
78091
|
ultraloq_metadata?: {
|
|
77999
|
-
/** Device ID for
|
|
78092
|
+
/** Device ID for an Ultraloq device. */
|
|
78000
78093
|
device_id: string;
|
|
78094
|
+
/** Device name for an Ultraloq device. */
|
|
78095
|
+
device_name: string;
|
|
78001
78096
|
} | undefined;
|
|
78002
78097
|
}) & ({
|
|
78003
78098
|
/** */
|
|
@@ -78619,7 +78714,7 @@ export type Routes = {
|
|
|
78619
78714
|
/** ID of the device. */
|
|
78620
78715
|
device_id: string;
|
|
78621
78716
|
/** Type of the device. */
|
|
78622
|
-
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');
|
|
78623
78718
|
/** IDs of the spaces the device is in. */
|
|
78624
78719
|
space_ids: string[];
|
|
78625
78720
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -79207,10 +79302,12 @@ export type Routes = {
|
|
|
79207
79302
|
/** Whether the KeyNest device has a photo. */
|
|
79208
79303
|
has_photo?: boolean | undefined;
|
|
79209
79304
|
} | undefined;
|
|
79210
|
-
/** Metadata for
|
|
79305
|
+
/** Metadata for an Ultraloq device. */
|
|
79211
79306
|
ultraloq_metadata?: {
|
|
79212
|
-
/** Device ID for
|
|
79307
|
+
/** Device ID for an Ultraloq device. */
|
|
79213
79308
|
device_id: string;
|
|
79309
|
+
/** Device name for an Ultraloq device. */
|
|
79310
|
+
device_name: string;
|
|
79214
79311
|
} | undefined;
|
|
79215
79312
|
}) & ({
|
|
79216
79313
|
/** */
|
|
@@ -80739,7 +80836,7 @@ export type Routes = {
|
|
|
80739
80836
|
/** ID of the device. */
|
|
80740
80837
|
device_id: string;
|
|
80741
80838
|
/** Type of the device. */
|
|
80742
|
-
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');
|
|
80743
80840
|
/** IDs of the spaces the device is in. */
|
|
80744
80841
|
space_ids: string[];
|
|
80745
80842
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -81327,10 +81424,12 @@ export type Routes = {
|
|
|
81327
81424
|
/** Whether the KeyNest device has a photo. */
|
|
81328
81425
|
has_photo?: boolean | undefined;
|
|
81329
81426
|
} | undefined;
|
|
81330
|
-
/** Metadata for
|
|
81427
|
+
/** Metadata for an Ultraloq device. */
|
|
81331
81428
|
ultraloq_metadata?: {
|
|
81332
|
-
/** Device ID for
|
|
81429
|
+
/** Device ID for an Ultraloq device. */
|
|
81333
81430
|
device_id: string;
|
|
81431
|
+
/** Device name for an Ultraloq device. */
|
|
81432
|
+
device_name: string;
|
|
81334
81433
|
} | undefined;
|
|
81335
81434
|
}) & ({
|
|
81336
81435
|
/** */
|
|
@@ -84225,7 +84324,7 @@ export type Routes = {
|
|
|
84225
84324
|
/** ID of the device. */
|
|
84226
84325
|
device_id: string;
|
|
84227
84326
|
/** Type of the device. */
|
|
84228
|
-
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');
|
|
84229
84328
|
/** Unique identifier for the account associated with the device. */
|
|
84230
84329
|
connected_account_id: string;
|
|
84231
84330
|
/** Location information for the device. */
|