@seamapi/types 1.997.0 → 1.999.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/lib/seam/connect/models/devices/device-metadata.d.ts +28 -0
- package/lib/seam/connect/models/devices/device-metadata.js +21 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-type.js +1 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +43 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +31 -3
- package/lib/seam/connect/openapi.js +1610 -1566
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +218 -31
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +22 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +1610 -1566
- package/src/lib/seam/connect/route-types.ts +252 -0
|
@@ -11689,7 +11689,7 @@ export type Routes = {
|
|
|
11689
11689
|
/** ID of the device. */
|
|
11690
11690
|
device_id: string;
|
|
11691
11691
|
/** Type of the device. */
|
|
11692
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
11692
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
11693
11693
|
/** IDs of the spaces the device is in. */
|
|
11694
11694
|
space_ids: string[];
|
|
11695
11695
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -12320,6 +12320,17 @@ export type Routes = {
|
|
|
12320
12320
|
/** IANA timezone for the Ultraloq device. */
|
|
12321
12321
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
12322
12322
|
} | undefined;
|
|
12323
|
+
/** Metadata for a Yacan device. */
|
|
12324
|
+
yacan_metadata?: {
|
|
12325
|
+
/** Device ID for a Yacan device. */
|
|
12326
|
+
device_id?: (string | undefined) | undefined;
|
|
12327
|
+
/** Device name for a Yacan device. */
|
|
12328
|
+
device_name?: (string | undefined) | undefined;
|
|
12329
|
+
/** Device type for a Yacan device. */
|
|
12330
|
+
device_type?: (string | undefined) | undefined;
|
|
12331
|
+
/** Serial number for a Yacan device. */
|
|
12332
|
+
serial_number?: (string | undefined) | undefined;
|
|
12333
|
+
} | undefined;
|
|
12323
12334
|
/** Metadata for a Ring device. */
|
|
12324
12335
|
ring_metadata?: {
|
|
12325
12336
|
/** Device ID for a Ring device. */
|
|
@@ -18614,7 +18625,7 @@ export type Routes = {
|
|
|
18614
18625
|
/** ID of the device. */
|
|
18615
18626
|
device_id: string;
|
|
18616
18627
|
/** Type of the device. */
|
|
18617
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
18628
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
18618
18629
|
/** IDs of the spaces the device is in. */
|
|
18619
18630
|
space_ids: string[];
|
|
18620
18631
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -19245,6 +19256,17 @@ export type Routes = {
|
|
|
19245
19256
|
/** IANA timezone for the Ultraloq device. */
|
|
19246
19257
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
19247
19258
|
} | undefined;
|
|
19259
|
+
/** Metadata for a Yacan device. */
|
|
19260
|
+
yacan_metadata?: {
|
|
19261
|
+
/** Device ID for a Yacan device. */
|
|
19262
|
+
device_id?: (string | undefined) | undefined;
|
|
19263
|
+
/** Device name for a Yacan device. */
|
|
19264
|
+
device_name?: (string | undefined) | undefined;
|
|
19265
|
+
/** Device type for a Yacan device. */
|
|
19266
|
+
device_type?: (string | undefined) | undefined;
|
|
19267
|
+
/** Serial number for a Yacan device. */
|
|
19268
|
+
serial_number?: (string | undefined) | undefined;
|
|
19269
|
+
} | undefined;
|
|
19248
19270
|
/** Metadata for a Ring device. */
|
|
19249
19271
|
ring_metadata?: {
|
|
19250
19272
|
/** Device ID for a Ring device. */
|
|
@@ -40128,7 +40150,7 @@ export type Routes = {
|
|
|
40128
40150
|
/** Associate the Connect Webview, the connected account, and all resources under the connected account with a customer. If the connected account already exists, it will be associated with the customer. If the connected account already exists, but is already associated with a customer, the Connect Webview will show an error. */
|
|
40129
40151
|
customer_key?: string | undefined;
|
|
40130
40152
|
/** Accepted device provider keys as an alternative to `provider_category`. Use this parameter to specify accepted providers explicitly. See [Customize the Brands to Display in Your Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). To list all provider keys, use [`/devices/list_device_providers`](https://docs.seam.co/api/devices/list_device_providers) with no filters. */
|
|
40131
|
-
accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'salto_ks_accept' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'aqara' | 'yale_access' | 'hid_cm' | 'google_nest' | 'slack')[] | undefined;
|
|
40153
|
+
accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'salto_ks_accept' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'yacan' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'aqara' | 'yale_access' | 'hid_cm' | 'google_nest' | 'slack')[] | undefined;
|
|
40132
40154
|
/** Specifies the category of providers that you want to include. To list all providers within a category, use [`/devices/list_device_providers`](https://docs.seam.co/api/devices/list_device_providers) with the desired `provider_category` filter. */
|
|
40133
40155
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors' | 'internal_beta') | undefined;
|
|
40134
40156
|
/** Custom metadata that you want to associate with the Connect Webview. Supports up to 50 JSON key:value pairs. [Adding custom metadata to a Connect Webview](https://docs.seam.co/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview) enables you to store custom information, like customer details or internal IDs from your application. The custom metadata is then transferred to any [connected accounts](https://docs.seam.co/core-concepts/connected-accounts) that were connected using the Connect Webview, making it easy to find and filter these resources in your [workspace](https://docs.seam.co/core-concepts/workspaces). You can also [filter Connect Webviews by custom metadata](https://docs.seam.co/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). */
|
|
@@ -41957,7 +41979,7 @@ export type Routes = {
|
|
|
41957
41979
|
/** ID of the device. */
|
|
41958
41980
|
device_id: string;
|
|
41959
41981
|
/** Type of the device. */
|
|
41960
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
41982
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
41961
41983
|
/** IDs of the spaces the device is in. */
|
|
41962
41984
|
space_ids: string[];
|
|
41963
41985
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -42588,6 +42610,17 @@ export type Routes = {
|
|
|
42588
42610
|
/** IANA timezone for the Ultraloq device. */
|
|
42589
42611
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
42590
42612
|
} | undefined;
|
|
42613
|
+
/** Metadata for a Yacan device. */
|
|
42614
|
+
yacan_metadata?: {
|
|
42615
|
+
/** Device ID for a Yacan device. */
|
|
42616
|
+
device_id?: (string | undefined) | undefined;
|
|
42617
|
+
/** Device name for a Yacan device. */
|
|
42618
|
+
device_name?: (string | undefined) | undefined;
|
|
42619
|
+
/** Device type for a Yacan device. */
|
|
42620
|
+
device_type?: (string | undefined) | undefined;
|
|
42621
|
+
/** Serial number for a Yacan device. */
|
|
42622
|
+
serial_number?: (string | undefined) | undefined;
|
|
42623
|
+
} | undefined;
|
|
42591
42624
|
/** Metadata for a Ring device. */
|
|
42592
42625
|
ring_metadata?: {
|
|
42593
42626
|
/** Device ID for a Ring device. */
|
|
@@ -43450,11 +43483,11 @@ export type Routes = {
|
|
|
43450
43483
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
43451
43484
|
connect_webview_id?: string | undefined;
|
|
43452
43485
|
/** Device type for which you want to list devices. */
|
|
43453
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera') | undefined;
|
|
43486
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera') | undefined;
|
|
43454
43487
|
/** Array of device types for which you want to list devices. */
|
|
43455
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera')[] | undefined;
|
|
43488
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera')[] | undefined;
|
|
43456
43489
|
/** Manufacturer for which you want to list devices. */
|
|
43457
|
-
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' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'aqara' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'slack') | undefined;
|
|
43490
|
+
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' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'aqara' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'slack' | 'yacan') | undefined;
|
|
43458
43491
|
/** Array of device IDs for which you want to list devices. */
|
|
43459
43492
|
device_ids?: string[] | undefined;
|
|
43460
43493
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -43487,7 +43520,7 @@ export type Routes = {
|
|
|
43487
43520
|
/** ID of the device. */
|
|
43488
43521
|
device_id: string;
|
|
43489
43522
|
/** Type of the device. */
|
|
43490
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
43523
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
43491
43524
|
/** IDs of the spaces the device is in. */
|
|
43492
43525
|
space_ids: string[];
|
|
43493
43526
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -44118,6 +44151,17 @@ export type Routes = {
|
|
|
44118
44151
|
/** IANA timezone for the Ultraloq device. */
|
|
44119
44152
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
44120
44153
|
} | undefined;
|
|
44154
|
+
/** Metadata for a Yacan device. */
|
|
44155
|
+
yacan_metadata?: {
|
|
44156
|
+
/** Device ID for a Yacan device. */
|
|
44157
|
+
device_id?: (string | undefined) | undefined;
|
|
44158
|
+
/** Device name for a Yacan device. */
|
|
44159
|
+
device_name?: (string | undefined) | undefined;
|
|
44160
|
+
/** Device type for a Yacan device. */
|
|
44161
|
+
device_type?: (string | undefined) | undefined;
|
|
44162
|
+
/** Serial number for a Yacan device. */
|
|
44163
|
+
serial_number?: (string | undefined) | undefined;
|
|
44164
|
+
} | undefined;
|
|
44121
44165
|
/** Metadata for a Ring device. */
|
|
44122
44166
|
ring_metadata?: {
|
|
44123
44167
|
/** Device ID for a Ring device. */
|
|
@@ -44987,7 +45031,7 @@ export type Routes = {
|
|
|
44987
45031
|
jsonResponse: {
|
|
44988
45032
|
device_providers: {
|
|
44989
45033
|
/** Name of the device provider. */
|
|
44990
|
-
device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'salto_ks_accept' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'aqara';
|
|
45034
|
+
device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'salto_ks_accept' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'yacan' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'aqara';
|
|
44991
45035
|
/** Display name for the device provider. */
|
|
44992
45036
|
display_name: string;
|
|
44993
45037
|
/** Image URL for the device provider. */
|
|
@@ -45165,7 +45209,7 @@ export type Routes = {
|
|
|
45165
45209
|
/** ID of the device. */
|
|
45166
45210
|
device_id: string;
|
|
45167
45211
|
/** Type of the device. */
|
|
45168
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
45212
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
45169
45213
|
/** Unique identifier for the account associated with the device. */
|
|
45170
45214
|
connected_account_id: string;
|
|
45171
45215
|
/** Location information for the device. */
|
|
@@ -45659,11 +45703,11 @@ export type Routes = {
|
|
|
45659
45703
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
45660
45704
|
connect_webview_id?: string | undefined;
|
|
45661
45705
|
/** Device type for which you want to list devices. */
|
|
45662
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera') | undefined;
|
|
45706
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera') | undefined;
|
|
45663
45707
|
/** Array of device types for which you want to list devices. */
|
|
45664
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera')[] | undefined;
|
|
45708
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera')[] | undefined;
|
|
45665
45709
|
/** Manufacturer for which you want to list devices. */
|
|
45666
|
-
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' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'aqara' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'slack') | undefined;
|
|
45710
|
+
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' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'aqara' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'slack' | 'yacan') | undefined;
|
|
45667
45711
|
/** Array of device IDs for which you want to list devices. */
|
|
45668
45712
|
device_ids?: string[] | undefined;
|
|
45669
45713
|
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
@@ -45685,7 +45729,7 @@ export type Routes = {
|
|
|
45685
45729
|
/** ID of the device. */
|
|
45686
45730
|
device_id: string;
|
|
45687
45731
|
/** Type of the device. */
|
|
45688
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
45732
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
45689
45733
|
/** Unique identifier for the account associated with the device. */
|
|
45690
45734
|
connected_account_id: string;
|
|
45691
45735
|
/** Location information for the device. */
|
|
@@ -54588,7 +54632,7 @@ export type Routes = {
|
|
|
54588
54632
|
/** ID of the device. */
|
|
54589
54633
|
device_id: string;
|
|
54590
54634
|
/** Type of the device. */
|
|
54591
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
54635
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
54592
54636
|
/** IDs of the spaces the device is in. */
|
|
54593
54637
|
space_ids: string[];
|
|
54594
54638
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -55219,6 +55263,17 @@ export type Routes = {
|
|
|
55219
55263
|
/** IANA timezone for the Ultraloq device. */
|
|
55220
55264
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
55221
55265
|
} | undefined;
|
|
55266
|
+
/** Metadata for a Yacan device. */
|
|
55267
|
+
yacan_metadata?: {
|
|
55268
|
+
/** Device ID for a Yacan device. */
|
|
55269
|
+
device_id?: (string | undefined) | undefined;
|
|
55270
|
+
/** Device name for a Yacan device. */
|
|
55271
|
+
device_name?: (string | undefined) | undefined;
|
|
55272
|
+
/** Device type for a Yacan device. */
|
|
55273
|
+
device_type?: (string | undefined) | undefined;
|
|
55274
|
+
/** Serial number for a Yacan device. */
|
|
55275
|
+
serial_number?: (string | undefined) | undefined;
|
|
55276
|
+
} | undefined;
|
|
55222
55277
|
/** Metadata for a Ring device. */
|
|
55223
55278
|
ring_metadata?: {
|
|
55224
55279
|
/** Device ID for a Ring device. */
|
|
@@ -56068,7 +56123,7 @@ export type Routes = {
|
|
|
56068
56123
|
/** ID of the device. */
|
|
56069
56124
|
device_id: string;
|
|
56070
56125
|
/** Type of the device. */
|
|
56071
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
56126
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
56072
56127
|
/** IDs of the spaces the device is in. */
|
|
56073
56128
|
space_ids: string[];
|
|
56074
56129
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -56699,6 +56754,17 @@ export type Routes = {
|
|
|
56699
56754
|
/** IANA timezone for the Ultraloq device. */
|
|
56700
56755
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
56701
56756
|
} | undefined;
|
|
56757
|
+
/** Metadata for a Yacan device. */
|
|
56758
|
+
yacan_metadata?: {
|
|
56759
|
+
/** Device ID for a Yacan device. */
|
|
56760
|
+
device_id?: (string | undefined) | undefined;
|
|
56761
|
+
/** Device name for a Yacan device. */
|
|
56762
|
+
device_name?: (string | undefined) | undefined;
|
|
56763
|
+
/** Device type for a Yacan device. */
|
|
56764
|
+
device_type?: (string | undefined) | undefined;
|
|
56765
|
+
/** Serial number for a Yacan device. */
|
|
56766
|
+
serial_number?: (string | undefined) | undefined;
|
|
56767
|
+
} | undefined;
|
|
56702
56768
|
/** Metadata for a Ring device. */
|
|
56703
56769
|
ring_metadata?: {
|
|
56704
56770
|
/** Device ID for a Ring device. */
|
|
@@ -57559,11 +57625,11 @@ export type Routes = {
|
|
|
57559
57625
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
57560
57626
|
connect_webview_id?: string | undefined;
|
|
57561
57627
|
/** Device type of the locks that you want to list. */
|
|
57562
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | undefined;
|
|
57628
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | undefined;
|
|
57563
57629
|
/** Device types of the locks that you want to list. */
|
|
57564
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock')[] | undefined;
|
|
57630
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock')[] | undefined;
|
|
57565
57631
|
/** Manufacturer of the locks that you want to list. */
|
|
57566
|
-
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'aqara' | 'korelock' | 'smartthings' | 'ultraloq' | 'omnitec' | 'kisi') | undefined;
|
|
57632
|
+
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'aqara' | 'korelock' | 'smartthings' | 'ultraloq' | 'omnitec' | 'kisi' | 'yacan') | undefined;
|
|
57567
57633
|
};
|
|
57568
57634
|
formData: {};
|
|
57569
57635
|
jsonResponse: {
|
|
@@ -57571,7 +57637,7 @@ export type Routes = {
|
|
|
57571
57637
|
/** ID of the device. */
|
|
57572
57638
|
device_id: string;
|
|
57573
57639
|
/** Type of the device. */
|
|
57574
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
57640
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
57575
57641
|
/** IDs of the spaces the device is in. */
|
|
57576
57642
|
space_ids: string[];
|
|
57577
57643
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -58202,6 +58268,17 @@ export type Routes = {
|
|
|
58202
58268
|
/** IANA timezone for the Ultraloq device. */
|
|
58203
58269
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
58204
58270
|
} | undefined;
|
|
58271
|
+
/** Metadata for a Yacan device. */
|
|
58272
|
+
yacan_metadata?: {
|
|
58273
|
+
/** Device ID for a Yacan device. */
|
|
58274
|
+
device_id?: (string | undefined) | undefined;
|
|
58275
|
+
/** Device name for a Yacan device. */
|
|
58276
|
+
device_name?: (string | undefined) | undefined;
|
|
58277
|
+
/** Device type for a Yacan device. */
|
|
58278
|
+
device_type?: (string | undefined) | undefined;
|
|
58279
|
+
/** Serial number for a Yacan device. */
|
|
58280
|
+
serial_number?: (string | undefined) | undefined;
|
|
58281
|
+
} | undefined;
|
|
58205
58282
|
/** Metadata for a Ring device. */
|
|
58206
58283
|
ring_metadata?: {
|
|
58207
58284
|
/** Device ID for a Ring device. */
|
|
@@ -59050,7 +59127,7 @@ export type Routes = {
|
|
|
59050
59127
|
/** ID of the device. */
|
|
59051
59128
|
device_id: string;
|
|
59052
59129
|
/** Type of the device. */
|
|
59053
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
59130
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
59054
59131
|
/** IDs of the spaces the device is in. */
|
|
59055
59132
|
space_ids: string[];
|
|
59056
59133
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -59681,6 +59758,17 @@ export type Routes = {
|
|
|
59681
59758
|
/** IANA timezone for the Ultraloq device. */
|
|
59682
59759
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
59683
59760
|
} | undefined;
|
|
59761
|
+
/** Metadata for a Yacan device. */
|
|
59762
|
+
yacan_metadata?: {
|
|
59763
|
+
/** Device ID for a Yacan device. */
|
|
59764
|
+
device_id?: (string | undefined) | undefined;
|
|
59765
|
+
/** Device name for a Yacan device. */
|
|
59766
|
+
device_name?: (string | undefined) | undefined;
|
|
59767
|
+
/** Device type for a Yacan device. */
|
|
59768
|
+
device_type?: (string | undefined) | undefined;
|
|
59769
|
+
/** Serial number for a Yacan device. */
|
|
59770
|
+
serial_number?: (string | undefined) | undefined;
|
|
59771
|
+
} | undefined;
|
|
59684
59772
|
/** Metadata for a Ring device. */
|
|
59685
59773
|
ring_metadata?: {
|
|
59686
59774
|
/** Device ID for a Ring device. */
|
|
@@ -67515,7 +67603,7 @@ export type Routes = {
|
|
|
67515
67603
|
/** ID of the device. */
|
|
67516
67604
|
device_id: string;
|
|
67517
67605
|
/** Type of the device. */
|
|
67518
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
67606
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
67519
67607
|
/** IDs of the spaces the device is in. */
|
|
67520
67608
|
space_ids: string[];
|
|
67521
67609
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -68146,6 +68234,17 @@ export type Routes = {
|
|
|
68146
68234
|
/** IANA timezone for the Ultraloq device. */
|
|
68147
68235
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
68148
68236
|
} | undefined;
|
|
68237
|
+
/** Metadata for a Yacan device. */
|
|
68238
|
+
yacan_metadata?: {
|
|
68239
|
+
/** Device ID for a Yacan device. */
|
|
68240
|
+
device_id?: (string | undefined) | undefined;
|
|
68241
|
+
/** Device name for a Yacan device. */
|
|
68242
|
+
device_name?: (string | undefined) | undefined;
|
|
68243
|
+
/** Device type for a Yacan device. */
|
|
68244
|
+
device_type?: (string | undefined) | undefined;
|
|
68245
|
+
/** Serial number for a Yacan device. */
|
|
68246
|
+
serial_number?: (string | undefined) | undefined;
|
|
68247
|
+
} | undefined;
|
|
68149
68248
|
/** Metadata for a Ring device. */
|
|
68150
68249
|
ring_metadata?: {
|
|
68151
68250
|
/** Device ID for a Ring device. */
|
|
@@ -68994,7 +69093,7 @@ export type Routes = {
|
|
|
68994
69093
|
/** ID of the device. */
|
|
68995
69094
|
device_id: string;
|
|
68996
69095
|
/** Type of the device. */
|
|
68997
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
69096
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
68998
69097
|
/** IDs of the spaces the device is in. */
|
|
68999
69098
|
space_ids: string[];
|
|
69000
69099
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -69625,6 +69724,17 @@ export type Routes = {
|
|
|
69625
69724
|
/** IANA timezone for the Ultraloq device. */
|
|
69626
69725
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
69627
69726
|
} | undefined;
|
|
69727
|
+
/** Metadata for a Yacan device. */
|
|
69728
|
+
yacan_metadata?: {
|
|
69729
|
+
/** Device ID for a Yacan device. */
|
|
69730
|
+
device_id?: (string | undefined) | undefined;
|
|
69731
|
+
/** Device name for a Yacan device. */
|
|
69732
|
+
device_name?: (string | undefined) | undefined;
|
|
69733
|
+
/** Device type for a Yacan device. */
|
|
69734
|
+
device_type?: (string | undefined) | undefined;
|
|
69735
|
+
/** Serial number for a Yacan device. */
|
|
69736
|
+
serial_number?: (string | undefined) | undefined;
|
|
69737
|
+
} | undefined;
|
|
69628
69738
|
/** Metadata for a Ring device. */
|
|
69629
69739
|
ring_metadata?: {
|
|
69630
69740
|
/** Device ID for a Ring device. */
|
|
@@ -85725,7 +85835,7 @@ export type Routes = {
|
|
|
85725
85835
|
/** ID of the device. */
|
|
85726
85836
|
device_id: string;
|
|
85727
85837
|
/** Type of the device. */
|
|
85728
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
85838
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
85729
85839
|
/** IDs of the spaces the device is in. */
|
|
85730
85840
|
space_ids: string[];
|
|
85731
85841
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -86356,6 +86466,17 @@ export type Routes = {
|
|
|
86356
86466
|
/** IANA timezone for the Ultraloq device. */
|
|
86357
86467
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
86358
86468
|
} | undefined;
|
|
86469
|
+
/** Metadata for a Yacan device. */
|
|
86470
|
+
yacan_metadata?: {
|
|
86471
|
+
/** Device ID for a Yacan device. */
|
|
86472
|
+
device_id?: (string | undefined) | undefined;
|
|
86473
|
+
/** Device name for a Yacan device. */
|
|
86474
|
+
device_name?: (string | undefined) | undefined;
|
|
86475
|
+
/** Device type for a Yacan device. */
|
|
86476
|
+
device_type?: (string | undefined) | undefined;
|
|
86477
|
+
/** Serial number for a Yacan device. */
|
|
86478
|
+
serial_number?: (string | undefined) | undefined;
|
|
86479
|
+
} | undefined;
|
|
86359
86480
|
/** Metadata for a Ring device. */
|
|
86360
86481
|
ring_metadata?: {
|
|
86361
86482
|
/** Device ID for a Ring device. */
|
|
@@ -93444,7 +93565,7 @@ export type Routes = {
|
|
|
93444
93565
|
/** ID of the device. */
|
|
93445
93566
|
device_id: string;
|
|
93446
93567
|
/** Type of the device. */
|
|
93447
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
93568
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
93448
93569
|
/** IDs of the spaces the device is in. */
|
|
93449
93570
|
space_ids: string[];
|
|
93450
93571
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -94075,6 +94196,17 @@ export type Routes = {
|
|
|
94075
94196
|
/** IANA timezone for the Ultraloq device. */
|
|
94076
94197
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
94077
94198
|
} | undefined;
|
|
94199
|
+
/** Metadata for a Yacan device. */
|
|
94200
|
+
yacan_metadata?: {
|
|
94201
|
+
/** Device ID for a Yacan device. */
|
|
94202
|
+
device_id?: (string | undefined) | undefined;
|
|
94203
|
+
/** Device name for a Yacan device. */
|
|
94204
|
+
device_name?: (string | undefined) | undefined;
|
|
94205
|
+
/** Device type for a Yacan device. */
|
|
94206
|
+
device_type?: (string | undefined) | undefined;
|
|
94207
|
+
/** Serial number for a Yacan device. */
|
|
94208
|
+
serial_number?: (string | undefined) | undefined;
|
|
94209
|
+
} | undefined;
|
|
94078
94210
|
/** Metadata for a Ring device. */
|
|
94079
94211
|
ring_metadata?: {
|
|
94080
94212
|
/** Device ID for a Ring device. */
|
|
@@ -98441,7 +98573,7 @@ export type Routes = {
|
|
|
98441
98573
|
/** ID of the device. */
|
|
98442
98574
|
device_id: string;
|
|
98443
98575
|
/** Type of the device. */
|
|
98444
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
98576
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
98445
98577
|
/** IDs of the spaces the device is in. */
|
|
98446
98578
|
space_ids: string[];
|
|
98447
98579
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -99072,6 +99204,17 @@ export type Routes = {
|
|
|
99072
99204
|
/** IANA timezone for the Ultraloq device. */
|
|
99073
99205
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
99074
99206
|
} | undefined;
|
|
99207
|
+
/** Metadata for a Yacan device. */
|
|
99208
|
+
yacan_metadata?: {
|
|
99209
|
+
/** Device ID for a Yacan device. */
|
|
99210
|
+
device_id?: (string | undefined) | undefined;
|
|
99211
|
+
/** Device name for a Yacan device. */
|
|
99212
|
+
device_name?: (string | undefined) | undefined;
|
|
99213
|
+
/** Device type for a Yacan device. */
|
|
99214
|
+
device_type?: (string | undefined) | undefined;
|
|
99215
|
+
/** Serial number for a Yacan device. */
|
|
99216
|
+
serial_number?: (string | undefined) | undefined;
|
|
99217
|
+
} | undefined;
|
|
99075
99218
|
/** Metadata for a Ring device. */
|
|
99076
99219
|
ring_metadata?: {
|
|
99077
99220
|
/** Device ID for a Ring device. */
|
|
@@ -99920,7 +100063,7 @@ export type Routes = {
|
|
|
99920
100063
|
/** ID of the device. */
|
|
99921
100064
|
device_id: string;
|
|
99922
100065
|
/** Type of the device. */
|
|
99923
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
100066
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
99924
100067
|
/** IDs of the spaces the device is in. */
|
|
99925
100068
|
space_ids: string[];
|
|
99926
100069
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -100551,6 +100694,17 @@ export type Routes = {
|
|
|
100551
100694
|
/** IANA timezone for the Ultraloq device. */
|
|
100552
100695
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
100553
100696
|
} | undefined;
|
|
100697
|
+
/** Metadata for a Yacan device. */
|
|
100698
|
+
yacan_metadata?: {
|
|
100699
|
+
/** Device ID for a Yacan device. */
|
|
100700
|
+
device_id?: (string | undefined) | undefined;
|
|
100701
|
+
/** Device name for a Yacan device. */
|
|
100702
|
+
device_name?: (string | undefined) | undefined;
|
|
100703
|
+
/** Device type for a Yacan device. */
|
|
100704
|
+
device_type?: (string | undefined) | undefined;
|
|
100705
|
+
/** Serial number for a Yacan device. */
|
|
100706
|
+
serial_number?: (string | undefined) | undefined;
|
|
100707
|
+
} | undefined;
|
|
100554
100708
|
/** Metadata for a Ring device. */
|
|
100555
100709
|
ring_metadata?: {
|
|
100556
100710
|
/** Device ID for a Ring device. */
|
|
@@ -109357,7 +109511,7 @@ export type Routes = {
|
|
|
109357
109511
|
/** ID of the device. */
|
|
109358
109512
|
device_id: string;
|
|
109359
109513
|
/** Type of the device. */
|
|
109360
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
109514
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
109361
109515
|
/** IDs of the spaces the device is in. */
|
|
109362
109516
|
space_ids: string[];
|
|
109363
109517
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -109988,6 +110142,17 @@ export type Routes = {
|
|
|
109988
110142
|
/** IANA timezone for the Ultraloq device. */
|
|
109989
110143
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
109990
110144
|
} | undefined;
|
|
110145
|
+
/** Metadata for a Yacan device. */
|
|
110146
|
+
yacan_metadata?: {
|
|
110147
|
+
/** Device ID for a Yacan device. */
|
|
110148
|
+
device_id?: (string | undefined) | undefined;
|
|
110149
|
+
/** Device name for a Yacan device. */
|
|
110150
|
+
device_name?: (string | undefined) | undefined;
|
|
110151
|
+
/** Device type for a Yacan device. */
|
|
110152
|
+
device_type?: (string | undefined) | undefined;
|
|
110153
|
+
/** Serial number for a Yacan device. */
|
|
110154
|
+
serial_number?: (string | undefined) | undefined;
|
|
110155
|
+
} | undefined;
|
|
109991
110156
|
/** Metadata for a Ring device. */
|
|
109992
110157
|
ring_metadata?: {
|
|
109993
110158
|
/** Device ID for a Ring device. */
|
|
@@ -110838,7 +111003,7 @@ export type Routes = {
|
|
|
110838
111003
|
/** ID of the device. */
|
|
110839
111004
|
device_id: string;
|
|
110840
111005
|
/** Type of the device. */
|
|
110841
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
111006
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
110842
111007
|
/** IDs of the spaces the device is in. */
|
|
110843
111008
|
space_ids: string[];
|
|
110844
111009
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -111469,6 +111634,17 @@ export type Routes = {
|
|
|
111469
111634
|
/** IANA timezone for the Ultraloq device. */
|
|
111470
111635
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
111471
111636
|
} | undefined;
|
|
111637
|
+
/** Metadata for a Yacan device. */
|
|
111638
|
+
yacan_metadata?: {
|
|
111639
|
+
/** Device ID for a Yacan device. */
|
|
111640
|
+
device_id?: (string | undefined) | undefined;
|
|
111641
|
+
/** Device name for a Yacan device. */
|
|
111642
|
+
device_name?: (string | undefined) | undefined;
|
|
111643
|
+
/** Device type for a Yacan device. */
|
|
111644
|
+
device_type?: (string | undefined) | undefined;
|
|
111645
|
+
/** Serial number for a Yacan device. */
|
|
111646
|
+
serial_number?: (string | undefined) | undefined;
|
|
111647
|
+
} | undefined;
|
|
111472
111648
|
/** Metadata for a Ring device. */
|
|
111473
111649
|
ring_metadata?: {
|
|
111474
111650
|
/** Device ID for a Ring device. */
|
|
@@ -113624,7 +113800,7 @@ export type Routes = {
|
|
|
113624
113800
|
/** ID of the device. */
|
|
113625
113801
|
device_id: string;
|
|
113626
113802
|
/** Type of the device. */
|
|
113627
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
113803
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
113628
113804
|
/** IDs of the spaces the device is in. */
|
|
113629
113805
|
space_ids: string[];
|
|
113630
113806
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -114255,6 +114431,17 @@ export type Routes = {
|
|
|
114255
114431
|
/** IANA timezone for the Ultraloq device. */
|
|
114256
114432
|
time_zone?: ((string | null) | undefined) | undefined;
|
|
114257
114433
|
} | undefined;
|
|
114434
|
+
/** Metadata for a Yacan device. */
|
|
114435
|
+
yacan_metadata?: {
|
|
114436
|
+
/** Device ID for a Yacan device. */
|
|
114437
|
+
device_id?: (string | undefined) | undefined;
|
|
114438
|
+
/** Device name for a Yacan device. */
|
|
114439
|
+
device_name?: (string | undefined) | undefined;
|
|
114440
|
+
/** Device type for a Yacan device. */
|
|
114441
|
+
device_type?: (string | undefined) | undefined;
|
|
114442
|
+
/** Serial number for a Yacan device. */
|
|
114443
|
+
serial_number?: (string | undefined) | undefined;
|
|
114444
|
+
} | undefined;
|
|
114258
114445
|
/** Metadata for a Ring device. */
|
|
114259
114446
|
ring_metadata?: {
|
|
114260
114447
|
/** Device ID for a Ring device. */
|
|
@@ -118089,7 +118276,7 @@ export type Routes = {
|
|
|
118089
118276
|
/** ID of the device. */
|
|
118090
118277
|
device_id: string;
|
|
118091
118278
|
/** Type of the device. */
|
|
118092
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
118279
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'yacan_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_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') | 'ring_camera';
|
|
118093
118280
|
/** Unique identifier for the account associated with the device. */
|
|
118094
118281
|
connected_account_id: string;
|
|
118095
118282
|
/** Location information for the device. */
|