@seamapi/types 1.933.0 → 1.934.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 +88 -21
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +299 -43
- package/dist/index.cjs +88 -21
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/devices/device-metadata.d.ts +28 -0
- package/lib/seam/connect/models/devices/device-metadata.js +14 -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/models/events/access-codes.d.ts +12 -12
- package/lib/seam/connect/models/events/seam-event.d.ts +6 -6
- package/lib/seam/connect/openapi.js +59 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +218 -31
- package/lib/seam/devicedb/models/device-model.d.ts +4 -4
- package/lib/seam/devicedb/route-specs.d.ts +8 -8
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +15 -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 +59 -0
- package/src/lib/seam/connect/route-types.ts +255 -0
|
@@ -11871,7 +11871,7 @@ export type Routes = {
|
|
|
11871
11871
|
/** ID of the device. */
|
|
11872
11872
|
device_id: string;
|
|
11873
11873
|
/** Type of the device. */
|
|
11874
|
-
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') | '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';
|
|
11874
|
+
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') | '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';
|
|
11875
11875
|
/** IDs of the spaces the device is in. */
|
|
11876
11876
|
space_ids: string[];
|
|
11877
11877
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -12518,6 +12518,17 @@ export type Routes = {
|
|
|
12518
12518
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
12519
12519
|
location_id?: (string | null) | undefined;
|
|
12520
12520
|
} | undefined;
|
|
12521
|
+
/** Metadata for a Kisi device. */
|
|
12522
|
+
kisi_metadata?: {
|
|
12523
|
+
/** Lock ID for a Kisi device. */
|
|
12524
|
+
lock_id: number;
|
|
12525
|
+
/** Lock name for a Kisi device. */
|
|
12526
|
+
lock_name: string;
|
|
12527
|
+
/** Place name for a Kisi device. */
|
|
12528
|
+
place_name: string | null;
|
|
12529
|
+
/** Description for a Kisi device. */
|
|
12530
|
+
description: string | null;
|
|
12531
|
+
} | undefined;
|
|
12521
12532
|
}) & ({
|
|
12522
12533
|
/** */
|
|
12523
12534
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -18571,7 +18582,7 @@ export type Routes = {
|
|
|
18571
18582
|
/** ID of the device. */
|
|
18572
18583
|
device_id: string;
|
|
18573
18584
|
/** Type of the device. */
|
|
18574
|
-
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') | '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';
|
|
18585
|
+
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') | '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';
|
|
18575
18586
|
/** IDs of the spaces the device is in. */
|
|
18576
18587
|
space_ids: string[];
|
|
18577
18588
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -19218,6 +19229,17 @@ export type Routes = {
|
|
|
19218
19229
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
19219
19230
|
location_id?: (string | null) | undefined;
|
|
19220
19231
|
} | undefined;
|
|
19232
|
+
/** Metadata for a Kisi device. */
|
|
19233
|
+
kisi_metadata?: {
|
|
19234
|
+
/** Lock ID for a Kisi device. */
|
|
19235
|
+
lock_id: number;
|
|
19236
|
+
/** Lock name for a Kisi device. */
|
|
19237
|
+
lock_name: string;
|
|
19238
|
+
/** Place name for a Kisi device. */
|
|
19239
|
+
place_name: string | null;
|
|
19240
|
+
/** Description for a Kisi device. */
|
|
19241
|
+
description: string | null;
|
|
19242
|
+
} | undefined;
|
|
19221
19243
|
}) & ({
|
|
19222
19244
|
/** */
|
|
19223
19245
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -39222,7 +39244,7 @@ export type Routes = {
|
|
|
39222
39244
|
/** 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. */
|
|
39223
39245
|
customer_key?: string | undefined;
|
|
39224
39246
|
/** 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. */
|
|
39225
|
-
accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | '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' | 'yale_access' | 'hid_cm' | 'google_nest' | 'slack')[] | undefined;
|
|
39247
|
+
accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | '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' | 'yale_access' | 'hid_cm' | 'google_nest' | 'slack')[] | undefined;
|
|
39226
39248
|
/** 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. */
|
|
39227
39249
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors' | 'internal_beta') | undefined;
|
|
39228
39250
|
/** 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). */
|
|
@@ -41043,7 +41065,7 @@ export type Routes = {
|
|
|
41043
41065
|
/** ID of the device. */
|
|
41044
41066
|
device_id: string;
|
|
41045
41067
|
/** Type of the device. */
|
|
41046
|
-
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') | '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';
|
|
41068
|
+
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') | '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';
|
|
41047
41069
|
/** IDs of the spaces the device is in. */
|
|
41048
41070
|
space_ids: string[];
|
|
41049
41071
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -41690,6 +41712,17 @@ export type Routes = {
|
|
|
41690
41712
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
41691
41713
|
location_id?: (string | null) | undefined;
|
|
41692
41714
|
} | undefined;
|
|
41715
|
+
/** Metadata for a Kisi device. */
|
|
41716
|
+
kisi_metadata?: {
|
|
41717
|
+
/** Lock ID for a Kisi device. */
|
|
41718
|
+
lock_id: number;
|
|
41719
|
+
/** Lock name for a Kisi device. */
|
|
41720
|
+
lock_name: string;
|
|
41721
|
+
/** Place name for a Kisi device. */
|
|
41722
|
+
place_name: string | null;
|
|
41723
|
+
/** Description for a Kisi device. */
|
|
41724
|
+
description: string | null;
|
|
41725
|
+
} | undefined;
|
|
41693
41726
|
}) & ({
|
|
41694
41727
|
/** */
|
|
41695
41728
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -42500,11 +42533,11 @@ export type Routes = {
|
|
|
42500
42533
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
42501
42534
|
connect_webview_id?: string | undefined;
|
|
42502
42535
|
/** Device type for which you want to list devices. */
|
|
42503
|
-
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') | '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;
|
|
42536
|
+
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') | '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;
|
|
42504
42537
|
/** Array of device types for which you want to list devices. */
|
|
42505
|
-
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') | '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;
|
|
42538
|
+
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') | '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;
|
|
42506
42539
|
/** Manufacturer for which you want to list devices. */
|
|
42507
|
-
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' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'slack') | undefined;
|
|
42540
|
+
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' | 'kisi' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'slack') | undefined;
|
|
42508
42541
|
/** Array of device IDs for which you want to list devices. */
|
|
42509
42542
|
device_ids?: string[] | undefined;
|
|
42510
42543
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -42537,7 +42570,7 @@ export type Routes = {
|
|
|
42537
42570
|
/** ID of the device. */
|
|
42538
42571
|
device_id: string;
|
|
42539
42572
|
/** Type of the device. */
|
|
42540
|
-
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') | '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';
|
|
42573
|
+
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') | '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';
|
|
42541
42574
|
/** IDs of the spaces the device is in. */
|
|
42542
42575
|
space_ids: string[];
|
|
42543
42576
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -43184,6 +43217,17 @@ export type Routes = {
|
|
|
43184
43217
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
43185
43218
|
location_id?: (string | null) | undefined;
|
|
43186
43219
|
} | undefined;
|
|
43220
|
+
/** Metadata for a Kisi device. */
|
|
43221
|
+
kisi_metadata?: {
|
|
43222
|
+
/** Lock ID for a Kisi device. */
|
|
43223
|
+
lock_id: number;
|
|
43224
|
+
/** Lock name for a Kisi device. */
|
|
43225
|
+
lock_name: string;
|
|
43226
|
+
/** Place name for a Kisi device. */
|
|
43227
|
+
place_name: string | null;
|
|
43228
|
+
/** Description for a Kisi device. */
|
|
43229
|
+
description: string | null;
|
|
43230
|
+
} | undefined;
|
|
43187
43231
|
}) & ({
|
|
43188
43232
|
/** */
|
|
43189
43233
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -44001,7 +44045,7 @@ export type Routes = {
|
|
|
44001
44045
|
jsonResponse: {
|
|
44002
44046
|
device_providers: {
|
|
44003
44047
|
/** Name of the device provider. */
|
|
44004
|
-
device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | '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';
|
|
44048
|
+
device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | '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';
|
|
44005
44049
|
/** Display name for the device provider. */
|
|
44006
44050
|
display_name: string;
|
|
44007
44051
|
/** Image URL for the device provider. */
|
|
@@ -44179,7 +44223,7 @@ export type Routes = {
|
|
|
44179
44223
|
/** ID of the device. */
|
|
44180
44224
|
device_id: string;
|
|
44181
44225
|
/** Type of the device. */
|
|
44182
|
-
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') | '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';
|
|
44226
|
+
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') | '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';
|
|
44183
44227
|
/** Unique identifier for the account associated with the device. */
|
|
44184
44228
|
connected_account_id: string;
|
|
44185
44229
|
/** Location information for the device. */
|
|
@@ -44679,11 +44723,11 @@ export type Routes = {
|
|
|
44679
44723
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
44680
44724
|
connect_webview_id?: string | undefined;
|
|
44681
44725
|
/** Device type for which you want to list devices. */
|
|
44682
|
-
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') | '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;
|
|
44726
|
+
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') | '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;
|
|
44683
44727
|
/** Array of device types for which you want to list devices. */
|
|
44684
|
-
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') | '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;
|
|
44728
|
+
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') | '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;
|
|
44685
44729
|
/** Manufacturer for which you want to list devices. */
|
|
44686
|
-
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' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'slack') | undefined;
|
|
44730
|
+
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' | 'kisi' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'slack') | undefined;
|
|
44687
44731
|
/** Array of device IDs for which you want to list devices. */
|
|
44688
44732
|
device_ids?: string[] | undefined;
|
|
44689
44733
|
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
@@ -44716,7 +44760,7 @@ export type Routes = {
|
|
|
44716
44760
|
/** ID of the device. */
|
|
44717
44761
|
device_id: string;
|
|
44718
44762
|
/** Type of the device. */
|
|
44719
|
-
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') | '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';
|
|
44763
|
+
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') | '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';
|
|
44720
44764
|
/** Unique identifier for the account associated with the device. */
|
|
44721
44765
|
connected_account_id: string;
|
|
44722
44766
|
/** Location information for the device. */
|
|
@@ -53098,7 +53142,7 @@ export type Routes = {
|
|
|
53098
53142
|
/** ID of the device. */
|
|
53099
53143
|
device_id: string;
|
|
53100
53144
|
/** Type of the device. */
|
|
53101
|
-
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') | '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';
|
|
53145
|
+
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') | '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';
|
|
53102
53146
|
/** IDs of the spaces the device is in. */
|
|
53103
53147
|
space_ids: string[];
|
|
53104
53148
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -53745,6 +53789,17 @@ export type Routes = {
|
|
|
53745
53789
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
53746
53790
|
location_id?: (string | null) | undefined;
|
|
53747
53791
|
} | undefined;
|
|
53792
|
+
/** Metadata for a Kisi device. */
|
|
53793
|
+
kisi_metadata?: {
|
|
53794
|
+
/** Lock ID for a Kisi device. */
|
|
53795
|
+
lock_id: number;
|
|
53796
|
+
/** Lock name for a Kisi device. */
|
|
53797
|
+
lock_name: string;
|
|
53798
|
+
/** Place name for a Kisi device. */
|
|
53799
|
+
place_name: string | null;
|
|
53800
|
+
/** Description for a Kisi device. */
|
|
53801
|
+
description: string | null;
|
|
53802
|
+
} | undefined;
|
|
53748
53803
|
}) & ({
|
|
53749
53804
|
/** */
|
|
53750
53805
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -54542,7 +54597,7 @@ export type Routes = {
|
|
|
54542
54597
|
/** ID of the device. */
|
|
54543
54598
|
device_id: string;
|
|
54544
54599
|
/** Type of the device. */
|
|
54545
|
-
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') | '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';
|
|
54600
|
+
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') | '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';
|
|
54546
54601
|
/** IDs of the spaces the device is in. */
|
|
54547
54602
|
space_ids: string[];
|
|
54548
54603
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -55189,6 +55244,17 @@ export type Routes = {
|
|
|
55189
55244
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
55190
55245
|
location_id?: (string | null) | undefined;
|
|
55191
55246
|
} | undefined;
|
|
55247
|
+
/** Metadata for a Kisi device. */
|
|
55248
|
+
kisi_metadata?: {
|
|
55249
|
+
/** Lock ID for a Kisi device. */
|
|
55250
|
+
lock_id: number;
|
|
55251
|
+
/** Lock name for a Kisi device. */
|
|
55252
|
+
lock_name: string;
|
|
55253
|
+
/** Place name for a Kisi device. */
|
|
55254
|
+
place_name: string | null;
|
|
55255
|
+
/** Description for a Kisi device. */
|
|
55256
|
+
description: string | null;
|
|
55257
|
+
} | undefined;
|
|
55192
55258
|
}) & ({
|
|
55193
55259
|
/** */
|
|
55194
55260
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -55999,11 +56065,11 @@ export type Routes = {
|
|
|
55999
56065
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
56000
56066
|
connect_webview_id?: string | undefined;
|
|
56001
56067
|
/** Device type of the locks that you want to list. */
|
|
56002
|
-
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') | undefined;
|
|
56068
|
+
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') | undefined;
|
|
56003
56069
|
/** Device types of the locks that you want to list. */
|
|
56004
|
-
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')[] | undefined;
|
|
56070
|
+
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')[] | undefined;
|
|
56005
56071
|
/** Manufacturer of the locks that you want to list. */
|
|
56006
|
-
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' | 'korelock' | 'smartthings' | 'ultraloq' | 'omnitec') | undefined;
|
|
56072
|
+
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' | 'kisi' | 'akiles' | 'korelock' | 'smartthings' | 'ultraloq' | 'omnitec' | 'kisi') | undefined;
|
|
56007
56073
|
/** Array of device IDs for which you want to list devices. */
|
|
56008
56074
|
device_ids?: string[] | undefined;
|
|
56009
56075
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -56036,7 +56102,7 @@ export type Routes = {
|
|
|
56036
56102
|
/** ID of the device. */
|
|
56037
56103
|
device_id: string;
|
|
56038
56104
|
/** Type of the device. */
|
|
56039
|
-
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') | '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';
|
|
56105
|
+
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') | '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';
|
|
56040
56106
|
/** IDs of the spaces the device is in. */
|
|
56041
56107
|
space_ids: string[];
|
|
56042
56108
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -56683,6 +56749,17 @@ export type Routes = {
|
|
|
56683
56749
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
56684
56750
|
location_id?: (string | null) | undefined;
|
|
56685
56751
|
} | undefined;
|
|
56752
|
+
/** Metadata for a Kisi device. */
|
|
56753
|
+
kisi_metadata?: {
|
|
56754
|
+
/** Lock ID for a Kisi device. */
|
|
56755
|
+
lock_id: number;
|
|
56756
|
+
/** Lock name for a Kisi device. */
|
|
56757
|
+
lock_name: string;
|
|
56758
|
+
/** Place name for a Kisi device. */
|
|
56759
|
+
place_name: string | null;
|
|
56760
|
+
/** Description for a Kisi device. */
|
|
56761
|
+
description: string | null;
|
|
56762
|
+
} | undefined;
|
|
56686
56763
|
}) & ({
|
|
56687
56764
|
/** */
|
|
56688
56765
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -57479,7 +57556,7 @@ export type Routes = {
|
|
|
57479
57556
|
/** ID of the device. */
|
|
57480
57557
|
device_id: string;
|
|
57481
57558
|
/** Type of the device. */
|
|
57482
|
-
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') | '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';
|
|
57559
|
+
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') | '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';
|
|
57483
57560
|
/** IDs of the spaces the device is in. */
|
|
57484
57561
|
space_ids: string[];
|
|
57485
57562
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -58126,6 +58203,17 @@ export type Routes = {
|
|
|
58126
58203
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
58127
58204
|
location_id?: (string | null) | undefined;
|
|
58128
58205
|
} | undefined;
|
|
58206
|
+
/** Metadata for a Kisi device. */
|
|
58207
|
+
kisi_metadata?: {
|
|
58208
|
+
/** Lock ID for a Kisi device. */
|
|
58209
|
+
lock_id: number;
|
|
58210
|
+
/** Lock name for a Kisi device. */
|
|
58211
|
+
lock_name: string;
|
|
58212
|
+
/** Place name for a Kisi device. */
|
|
58213
|
+
place_name: string | null;
|
|
58214
|
+
/** Description for a Kisi device. */
|
|
58215
|
+
description: string | null;
|
|
58216
|
+
} | undefined;
|
|
58129
58217
|
}) & ({
|
|
58130
58218
|
/** */
|
|
58131
58219
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -65699,7 +65787,7 @@ export type Routes = {
|
|
|
65699
65787
|
/** ID of the device. */
|
|
65700
65788
|
device_id: string;
|
|
65701
65789
|
/** Type of the device. */
|
|
65702
|
-
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') | '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';
|
|
65790
|
+
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') | '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';
|
|
65703
65791
|
/** IDs of the spaces the device is in. */
|
|
65704
65792
|
space_ids: string[];
|
|
65705
65793
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -66346,6 +66434,17 @@ export type Routes = {
|
|
|
66346
66434
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
66347
66435
|
location_id?: (string | null) | undefined;
|
|
66348
66436
|
} | undefined;
|
|
66437
|
+
/** Metadata for a Kisi device. */
|
|
66438
|
+
kisi_metadata?: {
|
|
66439
|
+
/** Lock ID for a Kisi device. */
|
|
66440
|
+
lock_id: number;
|
|
66441
|
+
/** Lock name for a Kisi device. */
|
|
66442
|
+
lock_name: string;
|
|
66443
|
+
/** Place name for a Kisi device. */
|
|
66444
|
+
place_name: string | null;
|
|
66445
|
+
/** Description for a Kisi device. */
|
|
66446
|
+
description: string | null;
|
|
66447
|
+
} | undefined;
|
|
66349
66448
|
}) & ({
|
|
66350
66449
|
/** */
|
|
66351
66450
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -67142,7 +67241,7 @@ export type Routes = {
|
|
|
67142
67241
|
/** ID of the device. */
|
|
67143
67242
|
device_id: string;
|
|
67144
67243
|
/** Type of the device. */
|
|
67145
|
-
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') | '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';
|
|
67244
|
+
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') | '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';
|
|
67146
67245
|
/** IDs of the spaces the device is in. */
|
|
67147
67246
|
space_ids: string[];
|
|
67148
67247
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -67789,6 +67888,17 @@ export type Routes = {
|
|
|
67789
67888
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
67790
67889
|
location_id?: (string | null) | undefined;
|
|
67791
67890
|
} | undefined;
|
|
67891
|
+
/** Metadata for a Kisi device. */
|
|
67892
|
+
kisi_metadata?: {
|
|
67893
|
+
/** Lock ID for a Kisi device. */
|
|
67894
|
+
lock_id: number;
|
|
67895
|
+
/** Lock name for a Kisi device. */
|
|
67896
|
+
lock_name: string;
|
|
67897
|
+
/** Place name for a Kisi device. */
|
|
67898
|
+
place_name: string | null;
|
|
67899
|
+
/** Description for a Kisi device. */
|
|
67900
|
+
description: string | null;
|
|
67901
|
+
} | undefined;
|
|
67792
67902
|
}) & ({
|
|
67793
67903
|
/** */
|
|
67794
67904
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -82654,7 +82764,7 @@ export type Routes = {
|
|
|
82654
82764
|
/** ID of the device. */
|
|
82655
82765
|
device_id: string;
|
|
82656
82766
|
/** Type of the device. */
|
|
82657
|
-
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') | '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';
|
|
82767
|
+
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') | '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';
|
|
82658
82768
|
/** IDs of the spaces the device is in. */
|
|
82659
82769
|
space_ids: string[];
|
|
82660
82770
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -83301,6 +83411,17 @@ export type Routes = {
|
|
|
83301
83411
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
83302
83412
|
location_id?: (string | null) | undefined;
|
|
83303
83413
|
} | undefined;
|
|
83414
|
+
/** Metadata for a Kisi device. */
|
|
83415
|
+
kisi_metadata?: {
|
|
83416
|
+
/** Lock ID for a Kisi device. */
|
|
83417
|
+
lock_id: number;
|
|
83418
|
+
/** Lock name for a Kisi device. */
|
|
83419
|
+
lock_name: string;
|
|
83420
|
+
/** Place name for a Kisi device. */
|
|
83421
|
+
place_name: string | null;
|
|
83422
|
+
/** Description for a Kisi device. */
|
|
83423
|
+
description: string | null;
|
|
83424
|
+
} | undefined;
|
|
83304
83425
|
}) & ({
|
|
83305
83426
|
/** */
|
|
83306
83427
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -90105,7 +90226,7 @@ export type Routes = {
|
|
|
90105
90226
|
/** ID of the device. */
|
|
90106
90227
|
device_id: string;
|
|
90107
90228
|
/** Type of the device. */
|
|
90108
|
-
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') | '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';
|
|
90229
|
+
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') | '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';
|
|
90109
90230
|
/** IDs of the spaces the device is in. */
|
|
90110
90231
|
space_ids: string[];
|
|
90111
90232
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -90752,6 +90873,17 @@ export type Routes = {
|
|
|
90752
90873
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
90753
90874
|
location_id?: (string | null) | undefined;
|
|
90754
90875
|
} | undefined;
|
|
90876
|
+
/** Metadata for a Kisi device. */
|
|
90877
|
+
kisi_metadata?: {
|
|
90878
|
+
/** Lock ID for a Kisi device. */
|
|
90879
|
+
lock_id: number;
|
|
90880
|
+
/** Lock name for a Kisi device. */
|
|
90881
|
+
lock_name: string;
|
|
90882
|
+
/** Place name for a Kisi device. */
|
|
90883
|
+
place_name: string | null;
|
|
90884
|
+
/** Description for a Kisi device. */
|
|
90885
|
+
description: string | null;
|
|
90886
|
+
} | undefined;
|
|
90755
90887
|
}) & ({
|
|
90756
90888
|
/** */
|
|
90757
90889
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -94975,7 +95107,7 @@ export type Routes = {
|
|
|
94975
95107
|
/** ID of the device. */
|
|
94976
95108
|
device_id: string;
|
|
94977
95109
|
/** Type of the device. */
|
|
94978
|
-
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') | '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';
|
|
95110
|
+
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') | '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';
|
|
94979
95111
|
/** IDs of the spaces the device is in. */
|
|
94980
95112
|
space_ids: string[];
|
|
94981
95113
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -95622,6 +95754,17 @@ export type Routes = {
|
|
|
95622
95754
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
95623
95755
|
location_id?: (string | null) | undefined;
|
|
95624
95756
|
} | undefined;
|
|
95757
|
+
/** Metadata for a Kisi device. */
|
|
95758
|
+
kisi_metadata?: {
|
|
95759
|
+
/** Lock ID for a Kisi device. */
|
|
95760
|
+
lock_id: number;
|
|
95761
|
+
/** Lock name for a Kisi device. */
|
|
95762
|
+
lock_name: string;
|
|
95763
|
+
/** Place name for a Kisi device. */
|
|
95764
|
+
place_name: string | null;
|
|
95765
|
+
/** Description for a Kisi device. */
|
|
95766
|
+
description: string | null;
|
|
95767
|
+
} | undefined;
|
|
95625
95768
|
}) & ({
|
|
95626
95769
|
/** */
|
|
95627
95770
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -96418,7 +96561,7 @@ export type Routes = {
|
|
|
96418
96561
|
/** ID of the device. */
|
|
96419
96562
|
device_id: string;
|
|
96420
96563
|
/** Type of the device. */
|
|
96421
|
-
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') | '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';
|
|
96564
|
+
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') | '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';
|
|
96422
96565
|
/** IDs of the spaces the device is in. */
|
|
96423
96566
|
space_ids: string[];
|
|
96424
96567
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -97065,6 +97208,17 @@ export type Routes = {
|
|
|
97065
97208
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
97066
97209
|
location_id?: (string | null) | undefined;
|
|
97067
97210
|
} | undefined;
|
|
97211
|
+
/** Metadata for a Kisi device. */
|
|
97212
|
+
kisi_metadata?: {
|
|
97213
|
+
/** Lock ID for a Kisi device. */
|
|
97214
|
+
lock_id: number;
|
|
97215
|
+
/** Lock name for a Kisi device. */
|
|
97216
|
+
lock_name: string;
|
|
97217
|
+
/** Place name for a Kisi device. */
|
|
97218
|
+
place_name: string | null;
|
|
97219
|
+
/** Description for a Kisi device. */
|
|
97220
|
+
description: string | null;
|
|
97221
|
+
} | undefined;
|
|
97068
97222
|
}) & ({
|
|
97069
97223
|
/** */
|
|
97070
97224
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -105577,7 +105731,7 @@ export type Routes = {
|
|
|
105577
105731
|
/** ID of the device. */
|
|
105578
105732
|
device_id: string;
|
|
105579
105733
|
/** Type of the device. */
|
|
105580
|
-
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') | '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';
|
|
105734
|
+
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') | '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';
|
|
105581
105735
|
/** IDs of the spaces the device is in. */
|
|
105582
105736
|
space_ids: string[];
|
|
105583
105737
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -106224,6 +106378,17 @@ export type Routes = {
|
|
|
106224
106378
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
106225
106379
|
location_id?: (string | null) | undefined;
|
|
106226
106380
|
} | undefined;
|
|
106381
|
+
/** Metadata for a Kisi device. */
|
|
106382
|
+
kisi_metadata?: {
|
|
106383
|
+
/** Lock ID for a Kisi device. */
|
|
106384
|
+
lock_id: number;
|
|
106385
|
+
/** Lock name for a Kisi device. */
|
|
106386
|
+
lock_name: string;
|
|
106387
|
+
/** Place name for a Kisi device. */
|
|
106388
|
+
place_name: string | null;
|
|
106389
|
+
/** Description for a Kisi device. */
|
|
106390
|
+
description: string | null;
|
|
106391
|
+
} | undefined;
|
|
106227
106392
|
}) & ({
|
|
106228
106393
|
/** */
|
|
106229
106394
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -107022,7 +107187,7 @@ export type Routes = {
|
|
|
107022
107187
|
/** ID of the device. */
|
|
107023
107188
|
device_id: string;
|
|
107024
107189
|
/** Type of the device. */
|
|
107025
|
-
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') | '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';
|
|
107190
|
+
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') | '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';
|
|
107026
107191
|
/** IDs of the spaces the device is in. */
|
|
107027
107192
|
space_ids: string[];
|
|
107028
107193
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -107669,6 +107834,17 @@ export type Routes = {
|
|
|
107669
107834
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
107670
107835
|
location_id?: (string | null) | undefined;
|
|
107671
107836
|
} | undefined;
|
|
107837
|
+
/** Metadata for a Kisi device. */
|
|
107838
|
+
kisi_metadata?: {
|
|
107839
|
+
/** Lock ID for a Kisi device. */
|
|
107840
|
+
lock_id: number;
|
|
107841
|
+
/** Lock name for a Kisi device. */
|
|
107842
|
+
lock_name: string;
|
|
107843
|
+
/** Place name for a Kisi device. */
|
|
107844
|
+
place_name: string | null;
|
|
107845
|
+
/** Description for a Kisi device. */
|
|
107846
|
+
description: string | null;
|
|
107847
|
+
} | undefined;
|
|
107672
107848
|
}) & ({
|
|
107673
107849
|
/** */
|
|
107674
107850
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -109722,7 +109898,7 @@ export type Routes = {
|
|
|
109722
109898
|
/** ID of the device. */
|
|
109723
109899
|
device_id: string;
|
|
109724
109900
|
/** Type of the device. */
|
|
109725
|
-
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') | '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';
|
|
109901
|
+
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') | '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';
|
|
109726
109902
|
/** IDs of the spaces the device is in. */
|
|
109727
109903
|
space_ids: string[];
|
|
109728
109904
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -110369,6 +110545,17 @@ export type Routes = {
|
|
|
110369
110545
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
110370
110546
|
location_id?: (string | null) | undefined;
|
|
110371
110547
|
} | undefined;
|
|
110548
|
+
/** Metadata for a Kisi device. */
|
|
110549
|
+
kisi_metadata?: {
|
|
110550
|
+
/** Lock ID for a Kisi device. */
|
|
110551
|
+
lock_id: number;
|
|
110552
|
+
/** Lock name for a Kisi device. */
|
|
110553
|
+
lock_name: string;
|
|
110554
|
+
/** Place name for a Kisi device. */
|
|
110555
|
+
place_name: string | null;
|
|
110556
|
+
/** Description for a Kisi device. */
|
|
110557
|
+
description: string | null;
|
|
110558
|
+
} | undefined;
|
|
110372
110559
|
}) & ({
|
|
110373
110560
|
/** */
|
|
110374
110561
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -114031,7 +114218,7 @@ export type Routes = {
|
|
|
114031
114218
|
/** ID of the device. */
|
|
114032
114219
|
device_id: string;
|
|
114033
114220
|
/** Type of the device. */
|
|
114034
|
-
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') | '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';
|
|
114221
|
+
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') | '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';
|
|
114035
114222
|
/** Unique identifier for the account associated with the device. */
|
|
114036
114223
|
connected_account_id: string;
|
|
114037
114224
|
/** Location information for the device. */
|