@seamapi/types 1.977.0 → 1.979.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 +185 -22
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +722 -57
- package/dist/index.cjs +185 -22
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +49 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +4 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-system.js +1 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/akiles.d.ts +33 -0
- package/lib/seam/connect/models/acs/metadata/akiles.js +25 -0
- package/lib/seam/connect/models/acs/metadata/akiles.js.map +1 -0
- package/lib/seam/connect/models/devices/device-metadata.d.ts +48 -0
- package/lib/seam/connect/models/devices/device-metadata.js +40 -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 +71 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +51 -3
- package/lib/seam/connect/models/phones/phone-session.d.ts +188 -0
- package/lib/seam/connect/openapi.js +136 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +544 -45
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +6 -0
- package/src/lib/seam/connect/models/acs/acs-system.ts +1 -0
- package/src/lib/seam/connect/models/acs/metadata/akiles.ts +31 -0
- package/src/lib/seam/connect/models/devices/device-metadata.ts +41 -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 +147 -0
- package/src/lib/seam/connect/route-types.ts +663 -0
|
@@ -11554,7 +11554,7 @@ export type Routes = {
|
|
|
11554
11554
|
/** ID of the device. */
|
|
11555
11555
|
device_id: string;
|
|
11556
11556
|
/** Type of the device. */
|
|
11557
|
-
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';
|
|
11557
|
+
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';
|
|
11558
11558
|
/** IDs of the spaces the device is in. */
|
|
11559
11559
|
space_ids: string[];
|
|
11560
11560
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -12216,6 +12216,25 @@ export type Routes = {
|
|
|
12216
12216
|
/** Description for a Kisi device. */
|
|
12217
12217
|
description?: ((string | null) | undefined) | undefined;
|
|
12218
12218
|
} | undefined;
|
|
12219
|
+
/** Metadata for an Aqara device. */
|
|
12220
|
+
aqara_metadata?: {
|
|
12221
|
+
/** Device ID (did) for an Aqara device. */
|
|
12222
|
+
did?: (string | undefined) | undefined;
|
|
12223
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
12224
|
+
parent_did?: (string | undefined) | undefined;
|
|
12225
|
+
/** Device name for an Aqara device. */
|
|
12226
|
+
device_name?: (string | undefined) | undefined;
|
|
12227
|
+
/** Model identifier for an Aqara device. */
|
|
12228
|
+
model?: (string | undefined) | undefined;
|
|
12229
|
+
/** Model type for an Aqara device. */
|
|
12230
|
+
model_type?: (number | undefined) | undefined;
|
|
12231
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
12232
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
12233
|
+
/** Position (room) ID for an Aqara device. */
|
|
12234
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
12235
|
+
/** Firmware version for an Aqara device. */
|
|
12236
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
12237
|
+
} | undefined;
|
|
12219
12238
|
}) & ({
|
|
12220
12239
|
/** */
|
|
12221
12240
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -13175,6 +13194,22 @@ export type Routes = {
|
|
|
13175
13194
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
13176
13195
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
13177
13196
|
} | undefined;
|
|
13197
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
13198
|
+
akiles_metadata?: {
|
|
13199
|
+
/** ID of the Akiles gadget. */
|
|
13200
|
+
gadget_id?: (string | undefined) | undefined;
|
|
13201
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
13202
|
+
site_id?: (string | undefined) | undefined;
|
|
13203
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
13204
|
+
site_name?: (string | undefined) | undefined;
|
|
13205
|
+
/** Actions the gadget exposes (for example, open). */
|
|
13206
|
+
actions?: ({
|
|
13207
|
+
/** ID of the gadget action. */
|
|
13208
|
+
id?: (string | undefined) | undefined;
|
|
13209
|
+
/** Name of the gadget action. */
|
|
13210
|
+
name?: (string | undefined) | undefined;
|
|
13211
|
+
}[] | undefined) | undefined;
|
|
13212
|
+
} | undefined;
|
|
13178
13213
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
13179
13214
|
is_locked?: boolean | undefined;
|
|
13180
13215
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -13378,7 +13413,7 @@ export type Routes = {
|
|
|
13378
13413
|
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
13379
13414
|
acs_access_group_count?: number | undefined;
|
|
13380
13415
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
13381
|
-
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
13416
|
+
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
13382
13417
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
13383
13418
|
external_type_display_name?: string | undefined;
|
|
13384
13419
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -13394,7 +13429,7 @@ export type Routes = {
|
|
|
13394
13429
|
} | undefined;
|
|
13395
13430
|
/**
|
|
13396
13431
|
* @deprecated Use `external_type`.*/
|
|
13397
|
-
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
13432
|
+
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
13398
13433
|
/**
|
|
13399
13434
|
* @deprecated Use `external_type_display_name`.*/
|
|
13400
13435
|
system_type_display_name?: string | undefined;
|
|
@@ -18353,7 +18388,7 @@ export type Routes = {
|
|
|
18353
18388
|
/** ID of the device. */
|
|
18354
18389
|
device_id: string;
|
|
18355
18390
|
/** Type of the device. */
|
|
18356
|
-
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';
|
|
18391
|
+
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';
|
|
18357
18392
|
/** IDs of the spaces the device is in. */
|
|
18358
18393
|
space_ids: string[];
|
|
18359
18394
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -19015,6 +19050,25 @@ export type Routes = {
|
|
|
19015
19050
|
/** Description for a Kisi device. */
|
|
19016
19051
|
description?: ((string | null) | undefined) | undefined;
|
|
19017
19052
|
} | undefined;
|
|
19053
|
+
/** Metadata for an Aqara device. */
|
|
19054
|
+
aqara_metadata?: {
|
|
19055
|
+
/** Device ID (did) for an Aqara device. */
|
|
19056
|
+
did?: (string | undefined) | undefined;
|
|
19057
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
19058
|
+
parent_did?: (string | undefined) | undefined;
|
|
19059
|
+
/** Device name for an Aqara device. */
|
|
19060
|
+
device_name?: (string | undefined) | undefined;
|
|
19061
|
+
/** Model identifier for an Aqara device. */
|
|
19062
|
+
model?: (string | undefined) | undefined;
|
|
19063
|
+
/** Model type for an Aqara device. */
|
|
19064
|
+
model_type?: (number | undefined) | undefined;
|
|
19065
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
19066
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
19067
|
+
/** Position (room) ID for an Aqara device. */
|
|
19068
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
19069
|
+
/** Firmware version for an Aqara device. */
|
|
19070
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
19071
|
+
} | undefined;
|
|
19018
19072
|
}) & ({
|
|
19019
19073
|
/** */
|
|
19020
19074
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -19974,6 +20028,22 @@ export type Routes = {
|
|
|
19974
20028
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
19975
20029
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
19976
20030
|
} | undefined;
|
|
20031
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
20032
|
+
akiles_metadata?: {
|
|
20033
|
+
/** ID of the Akiles gadget. */
|
|
20034
|
+
gadget_id?: (string | undefined) | undefined;
|
|
20035
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
20036
|
+
site_id?: (string | undefined) | undefined;
|
|
20037
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
20038
|
+
site_name?: (string | undefined) | undefined;
|
|
20039
|
+
/** Actions the gadget exposes (for example, open). */
|
|
20040
|
+
actions?: ({
|
|
20041
|
+
/** ID of the gadget action. */
|
|
20042
|
+
id?: (string | undefined) | undefined;
|
|
20043
|
+
/** Name of the gadget action. */
|
|
20044
|
+
name?: (string | undefined) | undefined;
|
|
20045
|
+
}[] | undefined) | undefined;
|
|
20046
|
+
} | undefined;
|
|
19977
20047
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
19978
20048
|
is_locked?: boolean | undefined;
|
|
19979
20049
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -23222,6 +23292,22 @@ export type Routes = {
|
|
|
23222
23292
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
23223
23293
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
23224
23294
|
} | undefined;
|
|
23295
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
23296
|
+
akiles_metadata?: {
|
|
23297
|
+
/** ID of the Akiles gadget. */
|
|
23298
|
+
gadget_id?: (string | undefined) | undefined;
|
|
23299
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
23300
|
+
site_id?: (string | undefined) | undefined;
|
|
23301
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
23302
|
+
site_name?: (string | undefined) | undefined;
|
|
23303
|
+
/** Actions the gadget exposes (for example, open). */
|
|
23304
|
+
actions?: ({
|
|
23305
|
+
/** ID of the gadget action. */
|
|
23306
|
+
id?: (string | undefined) | undefined;
|
|
23307
|
+
/** Name of the gadget action. */
|
|
23308
|
+
name?: (string | undefined) | undefined;
|
|
23309
|
+
}[] | undefined) | undefined;
|
|
23310
|
+
} | undefined;
|
|
23225
23311
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
23226
23312
|
is_locked?: boolean | undefined;
|
|
23227
23313
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -25018,6 +25104,22 @@ export type Routes = {
|
|
|
25018
25104
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
25019
25105
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
25020
25106
|
} | undefined;
|
|
25107
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
25108
|
+
akiles_metadata?: {
|
|
25109
|
+
/** ID of the Akiles gadget. */
|
|
25110
|
+
gadget_id?: (string | undefined) | undefined;
|
|
25111
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
25112
|
+
site_id?: (string | undefined) | undefined;
|
|
25113
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
25114
|
+
site_name?: (string | undefined) | undefined;
|
|
25115
|
+
/** Actions the gadget exposes (for example, open). */
|
|
25116
|
+
actions?: ({
|
|
25117
|
+
/** ID of the gadget action. */
|
|
25118
|
+
id?: (string | undefined) | undefined;
|
|
25119
|
+
/** Name of the gadget action. */
|
|
25120
|
+
name?: (string | undefined) | undefined;
|
|
25121
|
+
}[] | undefined) | undefined;
|
|
25122
|
+
} | undefined;
|
|
25021
25123
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
25022
25124
|
is_locked?: boolean | undefined;
|
|
25023
25125
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -31182,6 +31284,22 @@ export type Routes = {
|
|
|
31182
31284
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
31183
31285
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
31184
31286
|
} | undefined;
|
|
31287
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
31288
|
+
akiles_metadata?: {
|
|
31289
|
+
/** ID of the Akiles gadget. */
|
|
31290
|
+
gadget_id?: (string | undefined) | undefined;
|
|
31291
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
31292
|
+
site_id?: (string | undefined) | undefined;
|
|
31293
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
31294
|
+
site_name?: (string | undefined) | undefined;
|
|
31295
|
+
/** Actions the gadget exposes (for example, open). */
|
|
31296
|
+
actions?: ({
|
|
31297
|
+
/** ID of the gadget action. */
|
|
31298
|
+
id?: (string | undefined) | undefined;
|
|
31299
|
+
/** Name of the gadget action. */
|
|
31300
|
+
name?: (string | undefined) | undefined;
|
|
31301
|
+
}[] | undefined) | undefined;
|
|
31302
|
+
} | undefined;
|
|
31185
31303
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
31186
31304
|
is_locked?: boolean | undefined;
|
|
31187
31305
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -31421,6 +31539,22 @@ export type Routes = {
|
|
|
31421
31539
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
31422
31540
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
31423
31541
|
} | undefined;
|
|
31542
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
31543
|
+
akiles_metadata?: {
|
|
31544
|
+
/** ID of the Akiles gadget. */
|
|
31545
|
+
gadget_id?: (string | undefined) | undefined;
|
|
31546
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
31547
|
+
site_id?: (string | undefined) | undefined;
|
|
31548
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
31549
|
+
site_name?: (string | undefined) | undefined;
|
|
31550
|
+
/** Actions the gadget exposes (for example, open). */
|
|
31551
|
+
actions?: ({
|
|
31552
|
+
/** ID of the gadget action. */
|
|
31553
|
+
id?: (string | undefined) | undefined;
|
|
31554
|
+
/** Name of the gadget action. */
|
|
31555
|
+
name?: (string | undefined) | undefined;
|
|
31556
|
+
}[] | undefined) | undefined;
|
|
31557
|
+
} | undefined;
|
|
31424
31558
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
31425
31559
|
is_locked?: boolean | undefined;
|
|
31426
31560
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -33331,7 +33465,7 @@ export type Routes = {
|
|
|
33331
33465
|
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
33332
33466
|
acs_access_group_count?: number | undefined;
|
|
33333
33467
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
33334
|
-
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
33468
|
+
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
33335
33469
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
33336
33470
|
external_type_display_name?: string | undefined;
|
|
33337
33471
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -33347,7 +33481,7 @@ export type Routes = {
|
|
|
33347
33481
|
} | undefined;
|
|
33348
33482
|
/**
|
|
33349
33483
|
* @deprecated Use `external_type`.*/
|
|
33350
|
-
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
33484
|
+
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
33351
33485
|
/**
|
|
33352
33486
|
* @deprecated Use `external_type_display_name`.*/
|
|
33353
33487
|
system_type_display_name?: string | undefined;
|
|
@@ -33486,7 +33620,7 @@ export type Routes = {
|
|
|
33486
33620
|
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
33487
33621
|
acs_access_group_count?: number | undefined;
|
|
33488
33622
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
33489
|
-
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
33623
|
+
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
33490
33624
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
33491
33625
|
external_type_display_name?: string | undefined;
|
|
33492
33626
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -33502,7 +33636,7 @@ export type Routes = {
|
|
|
33502
33636
|
} | undefined;
|
|
33503
33637
|
/**
|
|
33504
33638
|
* @deprecated Use `external_type`.*/
|
|
33505
|
-
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
33639
|
+
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
33506
33640
|
/**
|
|
33507
33641
|
* @deprecated Use `external_type_display_name`.*/
|
|
33508
33642
|
system_type_display_name?: string | undefined;
|
|
@@ -33637,7 +33771,7 @@ export type Routes = {
|
|
|
33637
33771
|
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
33638
33772
|
acs_access_group_count?: number | undefined;
|
|
33639
33773
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
33640
|
-
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
33774
|
+
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
33641
33775
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
33642
33776
|
external_type_display_name?: string | undefined;
|
|
33643
33777
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -33653,7 +33787,7 @@ export type Routes = {
|
|
|
33653
33787
|
} | undefined;
|
|
33654
33788
|
/**
|
|
33655
33789
|
* @deprecated Use `external_type`.*/
|
|
33656
|
-
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
33790
|
+
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
33657
33791
|
/**
|
|
33658
33792
|
* @deprecated Use `external_type_display_name`.*/
|
|
33659
33793
|
system_type_display_name?: string | undefined;
|
|
@@ -34920,6 +35054,22 @@ export type Routes = {
|
|
|
34920
35054
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
34921
35055
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
34922
35056
|
} | undefined;
|
|
35057
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
35058
|
+
akiles_metadata?: {
|
|
35059
|
+
/** ID of the Akiles gadget. */
|
|
35060
|
+
gadget_id?: (string | undefined) | undefined;
|
|
35061
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
35062
|
+
site_id?: (string | undefined) | undefined;
|
|
35063
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
35064
|
+
site_name?: (string | undefined) | undefined;
|
|
35065
|
+
/** Actions the gadget exposes (for example, open). */
|
|
35066
|
+
actions?: ({
|
|
35067
|
+
/** ID of the gadget action. */
|
|
35068
|
+
id?: (string | undefined) | undefined;
|
|
35069
|
+
/** Name of the gadget action. */
|
|
35070
|
+
name?: (string | undefined) | undefined;
|
|
35071
|
+
}[] | undefined) | undefined;
|
|
35072
|
+
} | undefined;
|
|
34923
35073
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
34924
35074
|
is_locked?: boolean | undefined;
|
|
34925
35075
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -39398,7 +39548,7 @@ export type Routes = {
|
|
|
39398
39548
|
/** 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. */
|
|
39399
39549
|
customer_key?: string | undefined;
|
|
39400
39550
|
/** 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. */
|
|
39401
|
-
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' | 'yale_access' | 'hid_cm' | 'google_nest' | 'slack')[] | undefined;
|
|
39551
|
+
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;
|
|
39402
39552
|
/** 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. */
|
|
39403
39553
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors' | 'internal_beta') | undefined;
|
|
39404
39554
|
/** 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). */
|
|
@@ -41227,7 +41377,7 @@ export type Routes = {
|
|
|
41227
41377
|
/** ID of the device. */
|
|
41228
41378
|
device_id: string;
|
|
41229
41379
|
/** Type of the device. */
|
|
41230
|
-
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';
|
|
41380
|
+
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';
|
|
41231
41381
|
/** IDs of the spaces the device is in. */
|
|
41232
41382
|
space_ids: string[];
|
|
41233
41383
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -41889,6 +42039,25 @@ export type Routes = {
|
|
|
41889
42039
|
/** Description for a Kisi device. */
|
|
41890
42040
|
description?: ((string | null) | undefined) | undefined;
|
|
41891
42041
|
} | undefined;
|
|
42042
|
+
/** Metadata for an Aqara device. */
|
|
42043
|
+
aqara_metadata?: {
|
|
42044
|
+
/** Device ID (did) for an Aqara device. */
|
|
42045
|
+
did?: (string | undefined) | undefined;
|
|
42046
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
42047
|
+
parent_did?: (string | undefined) | undefined;
|
|
42048
|
+
/** Device name for an Aqara device. */
|
|
42049
|
+
device_name?: (string | undefined) | undefined;
|
|
42050
|
+
/** Model identifier for an Aqara device. */
|
|
42051
|
+
model?: (string | undefined) | undefined;
|
|
42052
|
+
/** Model type for an Aqara device. */
|
|
42053
|
+
model_type?: (number | undefined) | undefined;
|
|
42054
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
42055
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
42056
|
+
/** Position (room) ID for an Aqara device. */
|
|
42057
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
42058
|
+
/** Firmware version for an Aqara device. */
|
|
42059
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
42060
|
+
} | undefined;
|
|
41892
42061
|
}) & ({
|
|
41893
42062
|
/** */
|
|
41894
42063
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -42690,11 +42859,11 @@ export type Routes = {
|
|
|
42690
42859
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
42691
42860
|
connect_webview_id?: string | undefined;
|
|
42692
42861
|
/** Device type for which you want to list devices. */
|
|
42693
|
-
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;
|
|
42862
|
+
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;
|
|
42694
42863
|
/** Array of device types for which you want to list devices. */
|
|
42695
|
-
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;
|
|
42864
|
+
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;
|
|
42696
42865
|
/** Manufacturer for which you want to list devices. */
|
|
42697
|
-
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' | 'kisi' | 'slack') | undefined;
|
|
42866
|
+
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;
|
|
42698
42867
|
/** Array of device IDs for which you want to list devices. */
|
|
42699
42868
|
device_ids?: string[] | undefined;
|
|
42700
42869
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -42727,7 +42896,7 @@ export type Routes = {
|
|
|
42727
42896
|
/** ID of the device. */
|
|
42728
42897
|
device_id: string;
|
|
42729
42898
|
/** Type of the device. */
|
|
42730
|
-
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';
|
|
42899
|
+
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';
|
|
42731
42900
|
/** IDs of the spaces the device is in. */
|
|
42732
42901
|
space_ids: string[];
|
|
42733
42902
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -43389,6 +43558,25 @@ export type Routes = {
|
|
|
43389
43558
|
/** Description for a Kisi device. */
|
|
43390
43559
|
description?: ((string | null) | undefined) | undefined;
|
|
43391
43560
|
} | undefined;
|
|
43561
|
+
/** Metadata for an Aqara device. */
|
|
43562
|
+
aqara_metadata?: {
|
|
43563
|
+
/** Device ID (did) for an Aqara device. */
|
|
43564
|
+
did?: (string | undefined) | undefined;
|
|
43565
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
43566
|
+
parent_did?: (string | undefined) | undefined;
|
|
43567
|
+
/** Device name for an Aqara device. */
|
|
43568
|
+
device_name?: (string | undefined) | undefined;
|
|
43569
|
+
/** Model identifier for an Aqara device. */
|
|
43570
|
+
model?: (string | undefined) | undefined;
|
|
43571
|
+
/** Model type for an Aqara device. */
|
|
43572
|
+
model_type?: (number | undefined) | undefined;
|
|
43573
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
43574
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
43575
|
+
/** Position (room) ID for an Aqara device. */
|
|
43576
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
43577
|
+
/** Firmware version for an Aqara device. */
|
|
43578
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
43579
|
+
} | undefined;
|
|
43392
43580
|
}) & ({
|
|
43393
43581
|
/** */
|
|
43394
43582
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -44197,7 +44385,7 @@ export type Routes = {
|
|
|
44197
44385
|
jsonResponse: {
|
|
44198
44386
|
device_providers: {
|
|
44199
44387
|
/** Name of the device provider. */
|
|
44200
|
-
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';
|
|
44388
|
+
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';
|
|
44201
44389
|
/** Display name for the device provider. */
|
|
44202
44390
|
display_name: string;
|
|
44203
44391
|
/** Image URL for the device provider. */
|
|
@@ -44375,7 +44563,7 @@ export type Routes = {
|
|
|
44375
44563
|
/** ID of the device. */
|
|
44376
44564
|
device_id: string;
|
|
44377
44565
|
/** Type of the device. */
|
|
44378
|
-
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';
|
|
44566
|
+
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';
|
|
44379
44567
|
/** Unique identifier for the account associated with the device. */
|
|
44380
44568
|
connected_account_id: string;
|
|
44381
44569
|
/** Location information for the device. */
|
|
@@ -44862,11 +45050,11 @@ export type Routes = {
|
|
|
44862
45050
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
44863
45051
|
connect_webview_id?: string | undefined;
|
|
44864
45052
|
/** Device type for which you want to list devices. */
|
|
44865
|
-
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;
|
|
45053
|
+
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;
|
|
44866
45054
|
/** Array of device types for which you want to list devices. */
|
|
44867
|
-
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;
|
|
45055
|
+
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;
|
|
44868
45056
|
/** Manufacturer for which you want to list devices. */
|
|
44869
|
-
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' | 'kisi' | 'slack') | undefined;
|
|
45057
|
+
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;
|
|
44870
45058
|
/** Array of device IDs for which you want to list devices. */
|
|
44871
45059
|
device_ids?: string[] | undefined;
|
|
44872
45060
|
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
@@ -44899,7 +45087,7 @@ export type Routes = {
|
|
|
44899
45087
|
/** ID of the device. */
|
|
44900
45088
|
device_id: string;
|
|
44901
45089
|
/** Type of the device. */
|
|
44902
|
-
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';
|
|
45090
|
+
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';
|
|
44903
45091
|
/** Unique identifier for the account associated with the device. */
|
|
44904
45092
|
connected_account_id: string;
|
|
44905
45093
|
/** Location information for the device. */
|
|
@@ -53858,7 +54046,7 @@ export type Routes = {
|
|
|
53858
54046
|
/** ID of the device. */
|
|
53859
54047
|
device_id: string;
|
|
53860
54048
|
/** Type of the device. */
|
|
53861
|
-
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';
|
|
54049
|
+
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';
|
|
53862
54050
|
/** IDs of the spaces the device is in. */
|
|
53863
54051
|
space_ids: string[];
|
|
53864
54052
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -54520,6 +54708,25 @@ export type Routes = {
|
|
|
54520
54708
|
/** Description for a Kisi device. */
|
|
54521
54709
|
description?: ((string | null) | undefined) | undefined;
|
|
54522
54710
|
} | undefined;
|
|
54711
|
+
/** Metadata for an Aqara device. */
|
|
54712
|
+
aqara_metadata?: {
|
|
54713
|
+
/** Device ID (did) for an Aqara device. */
|
|
54714
|
+
did?: (string | undefined) | undefined;
|
|
54715
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
54716
|
+
parent_did?: (string | undefined) | undefined;
|
|
54717
|
+
/** Device name for an Aqara device. */
|
|
54718
|
+
device_name?: (string | undefined) | undefined;
|
|
54719
|
+
/** Model identifier for an Aqara device. */
|
|
54720
|
+
model?: (string | undefined) | undefined;
|
|
54721
|
+
/** Model type for an Aqara device. */
|
|
54722
|
+
model_type?: (number | undefined) | undefined;
|
|
54723
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
54724
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
54725
|
+
/** Position (room) ID for an Aqara device. */
|
|
54726
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
54727
|
+
/** Firmware version for an Aqara device. */
|
|
54728
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
54729
|
+
} | undefined;
|
|
54523
54730
|
}) & ({
|
|
54524
54731
|
/** */
|
|
54525
54732
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -55308,7 +55515,7 @@ export type Routes = {
|
|
|
55308
55515
|
/** ID of the device. */
|
|
55309
55516
|
device_id: string;
|
|
55310
55517
|
/** Type of the device. */
|
|
55311
|
-
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';
|
|
55518
|
+
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';
|
|
55312
55519
|
/** IDs of the spaces the device is in. */
|
|
55313
55520
|
space_ids: string[];
|
|
55314
55521
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -55970,6 +56177,25 @@ export type Routes = {
|
|
|
55970
56177
|
/** Description for a Kisi device. */
|
|
55971
56178
|
description?: ((string | null) | undefined) | undefined;
|
|
55972
56179
|
} | undefined;
|
|
56180
|
+
/** Metadata for an Aqara device. */
|
|
56181
|
+
aqara_metadata?: {
|
|
56182
|
+
/** Device ID (did) for an Aqara device. */
|
|
56183
|
+
did?: (string | undefined) | undefined;
|
|
56184
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
56185
|
+
parent_did?: (string | undefined) | undefined;
|
|
56186
|
+
/** Device name for an Aqara device. */
|
|
56187
|
+
device_name?: (string | undefined) | undefined;
|
|
56188
|
+
/** Model identifier for an Aqara device. */
|
|
56189
|
+
model?: (string | undefined) | undefined;
|
|
56190
|
+
/** Model type for an Aqara device. */
|
|
56191
|
+
model_type?: (number | undefined) | undefined;
|
|
56192
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
56193
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
56194
|
+
/** Position (room) ID for an Aqara device. */
|
|
56195
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
56196
|
+
/** Firmware version for an Aqara device. */
|
|
56197
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
56198
|
+
} | undefined;
|
|
55973
56199
|
}) & ({
|
|
55974
56200
|
/** */
|
|
55975
56201
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -56771,11 +56997,11 @@ export type Routes = {
|
|
|
56771
56997
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
56772
56998
|
connect_webview_id?: string | undefined;
|
|
56773
56999
|
/** Device type of the locks that you want to list. */
|
|
56774
|
-
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;
|
|
57000
|
+
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;
|
|
56775
57001
|
/** Device types of the locks that you want to list. */
|
|
56776
|
-
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;
|
|
57002
|
+
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;
|
|
56777
57003
|
/** Manufacturer of the locks that you want to list. */
|
|
56778
|
-
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' | 'kisi') | undefined;
|
|
57004
|
+
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;
|
|
56779
57005
|
/** Array of device IDs for which you want to list devices. */
|
|
56780
57006
|
device_ids?: string[] | undefined;
|
|
56781
57007
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -56808,7 +57034,7 @@ export type Routes = {
|
|
|
56808
57034
|
/** ID of the device. */
|
|
56809
57035
|
device_id: string;
|
|
56810
57036
|
/** Type of the device. */
|
|
56811
|
-
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';
|
|
57037
|
+
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';
|
|
56812
57038
|
/** IDs of the spaces the device is in. */
|
|
56813
57039
|
space_ids: string[];
|
|
56814
57040
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -57470,6 +57696,25 @@ export type Routes = {
|
|
|
57470
57696
|
/** Description for a Kisi device. */
|
|
57471
57697
|
description?: ((string | null) | undefined) | undefined;
|
|
57472
57698
|
} | undefined;
|
|
57699
|
+
/** Metadata for an Aqara device. */
|
|
57700
|
+
aqara_metadata?: {
|
|
57701
|
+
/** Device ID (did) for an Aqara device. */
|
|
57702
|
+
did?: (string | undefined) | undefined;
|
|
57703
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
57704
|
+
parent_did?: (string | undefined) | undefined;
|
|
57705
|
+
/** Device name for an Aqara device. */
|
|
57706
|
+
device_name?: (string | undefined) | undefined;
|
|
57707
|
+
/** Model identifier for an Aqara device. */
|
|
57708
|
+
model?: (string | undefined) | undefined;
|
|
57709
|
+
/** Model type for an Aqara device. */
|
|
57710
|
+
model_type?: (number | undefined) | undefined;
|
|
57711
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
57712
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
57713
|
+
/** Position (room) ID for an Aqara device. */
|
|
57714
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
57715
|
+
/** Firmware version for an Aqara device. */
|
|
57716
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
57717
|
+
} | undefined;
|
|
57473
57718
|
}) & ({
|
|
57474
57719
|
/** */
|
|
57475
57720
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -58257,7 +58502,7 @@ export type Routes = {
|
|
|
58257
58502
|
/** ID of the device. */
|
|
58258
58503
|
device_id: string;
|
|
58259
58504
|
/** Type of the device. */
|
|
58260
|
-
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';
|
|
58505
|
+
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';
|
|
58261
58506
|
/** IDs of the spaces the device is in. */
|
|
58262
58507
|
space_ids: string[];
|
|
58263
58508
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -58919,6 +59164,25 @@ export type Routes = {
|
|
|
58919
59164
|
/** Description for a Kisi device. */
|
|
58920
59165
|
description?: ((string | null) | undefined) | undefined;
|
|
58921
59166
|
} | undefined;
|
|
59167
|
+
/** Metadata for an Aqara device. */
|
|
59168
|
+
aqara_metadata?: {
|
|
59169
|
+
/** Device ID (did) for an Aqara device. */
|
|
59170
|
+
did?: (string | undefined) | undefined;
|
|
59171
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
59172
|
+
parent_did?: (string | undefined) | undefined;
|
|
59173
|
+
/** Device name for an Aqara device. */
|
|
59174
|
+
device_name?: (string | undefined) | undefined;
|
|
59175
|
+
/** Model identifier for an Aqara device. */
|
|
59176
|
+
model?: (string | undefined) | undefined;
|
|
59177
|
+
/** Model type for an Aqara device. */
|
|
59178
|
+
model_type?: (number | undefined) | undefined;
|
|
59179
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
59180
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
59181
|
+
/** Position (room) ID for an Aqara device. */
|
|
59182
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
59183
|
+
/** Firmware version for an Aqara device. */
|
|
59184
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
59185
|
+
} | undefined;
|
|
58922
59186
|
}) & ({
|
|
58923
59187
|
/** */
|
|
58924
59188
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -66587,7 +66851,7 @@ export type Routes = {
|
|
|
66587
66851
|
/** ID of the device. */
|
|
66588
66852
|
device_id: string;
|
|
66589
66853
|
/** Type of the device. */
|
|
66590
|
-
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';
|
|
66854
|
+
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';
|
|
66591
66855
|
/** IDs of the spaces the device is in. */
|
|
66592
66856
|
space_ids: string[];
|
|
66593
66857
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -67249,6 +67513,25 @@ export type Routes = {
|
|
|
67249
67513
|
/** Description for a Kisi device. */
|
|
67250
67514
|
description?: ((string | null) | undefined) | undefined;
|
|
67251
67515
|
} | undefined;
|
|
67516
|
+
/** Metadata for an Aqara device. */
|
|
67517
|
+
aqara_metadata?: {
|
|
67518
|
+
/** Device ID (did) for an Aqara device. */
|
|
67519
|
+
did?: (string | undefined) | undefined;
|
|
67520
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
67521
|
+
parent_did?: (string | undefined) | undefined;
|
|
67522
|
+
/** Device name for an Aqara device. */
|
|
67523
|
+
device_name?: (string | undefined) | undefined;
|
|
67524
|
+
/** Model identifier for an Aqara device. */
|
|
67525
|
+
model?: (string | undefined) | undefined;
|
|
67526
|
+
/** Model type for an Aqara device. */
|
|
67527
|
+
model_type?: (number | undefined) | undefined;
|
|
67528
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
67529
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
67530
|
+
/** Position (room) ID for an Aqara device. */
|
|
67531
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
67532
|
+
/** Firmware version for an Aqara device. */
|
|
67533
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
67534
|
+
} | undefined;
|
|
67252
67535
|
}) & ({
|
|
67253
67536
|
/** */
|
|
67254
67537
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -68036,7 +68319,7 @@ export type Routes = {
|
|
|
68036
68319
|
/** ID of the device. */
|
|
68037
68320
|
device_id: string;
|
|
68038
68321
|
/** Type of the device. */
|
|
68039
|
-
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';
|
|
68322
|
+
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';
|
|
68040
68323
|
/** IDs of the spaces the device is in. */
|
|
68041
68324
|
space_ids: string[];
|
|
68042
68325
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -68698,6 +68981,25 @@ export type Routes = {
|
|
|
68698
68981
|
/** Description for a Kisi device. */
|
|
68699
68982
|
description?: ((string | null) | undefined) | undefined;
|
|
68700
68983
|
} | undefined;
|
|
68984
|
+
/** Metadata for an Aqara device. */
|
|
68985
|
+
aqara_metadata?: {
|
|
68986
|
+
/** Device ID (did) for an Aqara device. */
|
|
68987
|
+
did?: (string | undefined) | undefined;
|
|
68988
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
68989
|
+
parent_did?: (string | undefined) | undefined;
|
|
68990
|
+
/** Device name for an Aqara device. */
|
|
68991
|
+
device_name?: (string | undefined) | undefined;
|
|
68992
|
+
/** Model identifier for an Aqara device. */
|
|
68993
|
+
model?: (string | undefined) | undefined;
|
|
68994
|
+
/** Model type for an Aqara device. */
|
|
68995
|
+
model_type?: (number | undefined) | undefined;
|
|
68996
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
68997
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
68998
|
+
/** Position (room) ID for an Aqara device. */
|
|
68999
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
69000
|
+
/** Firmware version for an Aqara device. */
|
|
69001
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
69002
|
+
} | undefined;
|
|
68701
69003
|
}) & ({
|
|
68702
69004
|
/** */
|
|
68703
69005
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -84228,6 +84530,22 @@ export type Routes = {
|
|
|
84228
84530
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
84229
84531
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
84230
84532
|
} | undefined;
|
|
84533
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
84534
|
+
akiles_metadata?: {
|
|
84535
|
+
/** ID of the Akiles gadget. */
|
|
84536
|
+
gadget_id?: (string | undefined) | undefined;
|
|
84537
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
84538
|
+
site_id?: (string | undefined) | undefined;
|
|
84539
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
84540
|
+
site_name?: (string | undefined) | undefined;
|
|
84541
|
+
/** Actions the gadget exposes (for example, open). */
|
|
84542
|
+
actions?: ({
|
|
84543
|
+
/** ID of the gadget action. */
|
|
84544
|
+
id?: (string | undefined) | undefined;
|
|
84545
|
+
/** Name of the gadget action. */
|
|
84546
|
+
name?: (string | undefined) | undefined;
|
|
84547
|
+
}[] | undefined) | undefined;
|
|
84548
|
+
} | undefined;
|
|
84231
84549
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
84232
84550
|
is_locked?: boolean | undefined;
|
|
84233
84551
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -84623,7 +84941,7 @@ export type Routes = {
|
|
|
84623
84941
|
/** ID of the device. */
|
|
84624
84942
|
device_id: string;
|
|
84625
84943
|
/** Type of the device. */
|
|
84626
|
-
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';
|
|
84944
|
+
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';
|
|
84627
84945
|
/** IDs of the spaces the device is in. */
|
|
84628
84946
|
space_ids: string[];
|
|
84629
84947
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -85285,6 +85603,25 @@ export type Routes = {
|
|
|
85285
85603
|
/** Description for a Kisi device. */
|
|
85286
85604
|
description?: ((string | null) | undefined) | undefined;
|
|
85287
85605
|
} | undefined;
|
|
85606
|
+
/** Metadata for an Aqara device. */
|
|
85607
|
+
aqara_metadata?: {
|
|
85608
|
+
/** Device ID (did) for an Aqara device. */
|
|
85609
|
+
did?: (string | undefined) | undefined;
|
|
85610
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
85611
|
+
parent_did?: (string | undefined) | undefined;
|
|
85612
|
+
/** Device name for an Aqara device. */
|
|
85613
|
+
device_name?: (string | undefined) | undefined;
|
|
85614
|
+
/** Model identifier for an Aqara device. */
|
|
85615
|
+
model?: (string | undefined) | undefined;
|
|
85616
|
+
/** Model type for an Aqara device. */
|
|
85617
|
+
model_type?: (number | undefined) | undefined;
|
|
85618
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
85619
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
85620
|
+
/** Position (room) ID for an Aqara device. */
|
|
85621
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
85622
|
+
/** Firmware version for an Aqara device. */
|
|
85623
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
85624
|
+
} | undefined;
|
|
85288
85625
|
}) & ({
|
|
85289
85626
|
/** */
|
|
85290
85627
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -86244,6 +86581,22 @@ export type Routes = {
|
|
|
86244
86581
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
86245
86582
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
86246
86583
|
} | undefined;
|
|
86584
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
86585
|
+
akiles_metadata?: {
|
|
86586
|
+
/** ID of the Akiles gadget. */
|
|
86587
|
+
gadget_id?: (string | undefined) | undefined;
|
|
86588
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
86589
|
+
site_id?: (string | undefined) | undefined;
|
|
86590
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
86591
|
+
site_name?: (string | undefined) | undefined;
|
|
86592
|
+
/** Actions the gadget exposes (for example, open). */
|
|
86593
|
+
actions?: ({
|
|
86594
|
+
/** ID of the gadget action. */
|
|
86595
|
+
id?: (string | undefined) | undefined;
|
|
86596
|
+
/** Name of the gadget action. */
|
|
86597
|
+
name?: (string | undefined) | undefined;
|
|
86598
|
+
}[] | undefined) | undefined;
|
|
86599
|
+
} | undefined;
|
|
86247
86600
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
86248
86601
|
is_locked?: boolean | undefined;
|
|
86249
86602
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -86447,7 +86800,7 @@ export type Routes = {
|
|
|
86447
86800
|
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
86448
86801
|
acs_access_group_count?: number | undefined;
|
|
86449
86802
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
86450
|
-
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
86803
|
+
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
86451
86804
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
86452
86805
|
external_type_display_name?: string | undefined;
|
|
86453
86806
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -86463,7 +86816,7 @@ export type Routes = {
|
|
|
86463
86816
|
} | undefined;
|
|
86464
86817
|
/**
|
|
86465
86818
|
* @deprecated Use `external_type`.*/
|
|
86466
|
-
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
86819
|
+
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
86467
86820
|
/**
|
|
86468
86821
|
* @deprecated Use `external_type_display_name`.*/
|
|
86469
86822
|
system_type_display_name?: string | undefined;
|
|
@@ -92183,7 +92536,7 @@ export type Routes = {
|
|
|
92183
92536
|
/** ID of the device. */
|
|
92184
92537
|
device_id: string;
|
|
92185
92538
|
/** Type of the device. */
|
|
92186
|
-
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';
|
|
92539
|
+
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';
|
|
92187
92540
|
/** IDs of the spaces the device is in. */
|
|
92188
92541
|
space_ids: string[];
|
|
92189
92542
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -92845,6 +93198,25 @@ export type Routes = {
|
|
|
92845
93198
|
/** Description for a Kisi device. */
|
|
92846
93199
|
description?: ((string | null) | undefined) | undefined;
|
|
92847
93200
|
} | undefined;
|
|
93201
|
+
/** Metadata for an Aqara device. */
|
|
93202
|
+
aqara_metadata?: {
|
|
93203
|
+
/** Device ID (did) for an Aqara device. */
|
|
93204
|
+
did?: (string | undefined) | undefined;
|
|
93205
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
93206
|
+
parent_did?: (string | undefined) | undefined;
|
|
93207
|
+
/** Device name for an Aqara device. */
|
|
93208
|
+
device_name?: (string | undefined) | undefined;
|
|
93209
|
+
/** Model identifier for an Aqara device. */
|
|
93210
|
+
model?: (string | undefined) | undefined;
|
|
93211
|
+
/** Model type for an Aqara device. */
|
|
93212
|
+
model_type?: (number | undefined) | undefined;
|
|
93213
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
93214
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
93215
|
+
/** Position (room) ID for an Aqara device. */
|
|
93216
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
93217
|
+
/** Firmware version for an Aqara device. */
|
|
93218
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
93219
|
+
} | undefined;
|
|
92848
93220
|
}) & ({
|
|
92849
93221
|
/** */
|
|
92850
93222
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -97111,7 +97483,7 @@ export type Routes = {
|
|
|
97111
97483
|
/** ID of the device. */
|
|
97112
97484
|
device_id: string;
|
|
97113
97485
|
/** Type of the device. */
|
|
97114
|
-
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';
|
|
97486
|
+
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';
|
|
97115
97487
|
/** IDs of the spaces the device is in. */
|
|
97116
97488
|
space_ids: string[];
|
|
97117
97489
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -97773,6 +98145,25 @@ export type Routes = {
|
|
|
97773
98145
|
/** Description for a Kisi device. */
|
|
97774
98146
|
description?: ((string | null) | undefined) | undefined;
|
|
97775
98147
|
} | undefined;
|
|
98148
|
+
/** Metadata for an Aqara device. */
|
|
98149
|
+
aqara_metadata?: {
|
|
98150
|
+
/** Device ID (did) for an Aqara device. */
|
|
98151
|
+
did?: (string | undefined) | undefined;
|
|
98152
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
98153
|
+
parent_did?: (string | undefined) | undefined;
|
|
98154
|
+
/** Device name for an Aqara device. */
|
|
98155
|
+
device_name?: (string | undefined) | undefined;
|
|
98156
|
+
/** Model identifier for an Aqara device. */
|
|
98157
|
+
model?: (string | undefined) | undefined;
|
|
98158
|
+
/** Model type for an Aqara device. */
|
|
98159
|
+
model_type?: (number | undefined) | undefined;
|
|
98160
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
98161
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
98162
|
+
/** Position (room) ID for an Aqara device. */
|
|
98163
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
98164
|
+
/** Firmware version for an Aqara device. */
|
|
98165
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
98166
|
+
} | undefined;
|
|
97776
98167
|
}) & ({
|
|
97777
98168
|
/** */
|
|
97778
98169
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -98560,7 +98951,7 @@ export type Routes = {
|
|
|
98560
98951
|
/** ID of the device. */
|
|
98561
98952
|
device_id: string;
|
|
98562
98953
|
/** Type of the device. */
|
|
98563
|
-
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';
|
|
98954
|
+
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';
|
|
98564
98955
|
/** IDs of the spaces the device is in. */
|
|
98565
98956
|
space_ids: string[];
|
|
98566
98957
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -99222,6 +99613,25 @@ export type Routes = {
|
|
|
99222
99613
|
/** Description for a Kisi device. */
|
|
99223
99614
|
description?: ((string | null) | undefined) | undefined;
|
|
99224
99615
|
} | undefined;
|
|
99616
|
+
/** Metadata for an Aqara device. */
|
|
99617
|
+
aqara_metadata?: {
|
|
99618
|
+
/** Device ID (did) for an Aqara device. */
|
|
99619
|
+
did?: (string | undefined) | undefined;
|
|
99620
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
99621
|
+
parent_did?: (string | undefined) | undefined;
|
|
99622
|
+
/** Device name for an Aqara device. */
|
|
99623
|
+
device_name?: (string | undefined) | undefined;
|
|
99624
|
+
/** Model identifier for an Aqara device. */
|
|
99625
|
+
model?: (string | undefined) | undefined;
|
|
99626
|
+
/** Model type for an Aqara device. */
|
|
99627
|
+
model_type?: (number | undefined) | undefined;
|
|
99628
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
99629
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
99630
|
+
/** Position (room) ID for an Aqara device. */
|
|
99631
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
99632
|
+
/** Firmware version for an Aqara device. */
|
|
99633
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
99634
|
+
} | undefined;
|
|
99225
99635
|
}) & ({
|
|
99226
99636
|
/** */
|
|
99227
99637
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -107835,7 +108245,7 @@ export type Routes = {
|
|
|
107835
108245
|
/** ID of the device. */
|
|
107836
108246
|
device_id: string;
|
|
107837
108247
|
/** Type of the device. */
|
|
107838
|
-
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';
|
|
108248
|
+
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';
|
|
107839
108249
|
/** IDs of the spaces the device is in. */
|
|
107840
108250
|
space_ids: string[];
|
|
107841
108251
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -108497,6 +108907,25 @@ export type Routes = {
|
|
|
108497
108907
|
/** Description for a Kisi device. */
|
|
108498
108908
|
description?: ((string | null) | undefined) | undefined;
|
|
108499
108909
|
} | undefined;
|
|
108910
|
+
/** Metadata for an Aqara device. */
|
|
108911
|
+
aqara_metadata?: {
|
|
108912
|
+
/** Device ID (did) for an Aqara device. */
|
|
108913
|
+
did?: (string | undefined) | undefined;
|
|
108914
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
108915
|
+
parent_did?: (string | undefined) | undefined;
|
|
108916
|
+
/** Device name for an Aqara device. */
|
|
108917
|
+
device_name?: (string | undefined) | undefined;
|
|
108918
|
+
/** Model identifier for an Aqara device. */
|
|
108919
|
+
model?: (string | undefined) | undefined;
|
|
108920
|
+
/** Model type for an Aqara device. */
|
|
108921
|
+
model_type?: (number | undefined) | undefined;
|
|
108922
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
108923
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
108924
|
+
/** Position (room) ID for an Aqara device. */
|
|
108925
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
108926
|
+
/** Firmware version for an Aqara device. */
|
|
108927
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
108928
|
+
} | undefined;
|
|
108500
108929
|
}) & ({
|
|
108501
108930
|
/** */
|
|
108502
108931
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -109286,7 +109715,7 @@ export type Routes = {
|
|
|
109286
109715
|
/** ID of the device. */
|
|
109287
109716
|
device_id: string;
|
|
109288
109717
|
/** Type of the device. */
|
|
109289
|
-
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';
|
|
109718
|
+
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';
|
|
109290
109719
|
/** IDs of the spaces the device is in. */
|
|
109291
109720
|
space_ids: string[];
|
|
109292
109721
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -109948,6 +110377,25 @@ export type Routes = {
|
|
|
109948
110377
|
/** Description for a Kisi device. */
|
|
109949
110378
|
description?: ((string | null) | undefined) | undefined;
|
|
109950
110379
|
} | undefined;
|
|
110380
|
+
/** Metadata for an Aqara device. */
|
|
110381
|
+
aqara_metadata?: {
|
|
110382
|
+
/** Device ID (did) for an Aqara device. */
|
|
110383
|
+
did?: (string | undefined) | undefined;
|
|
110384
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
110385
|
+
parent_did?: (string | undefined) | undefined;
|
|
110386
|
+
/** Device name for an Aqara device. */
|
|
110387
|
+
device_name?: (string | undefined) | undefined;
|
|
110388
|
+
/** Model identifier for an Aqara device. */
|
|
110389
|
+
model?: (string | undefined) | undefined;
|
|
110390
|
+
/** Model type for an Aqara device. */
|
|
110391
|
+
model_type?: (number | undefined) | undefined;
|
|
110392
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
110393
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
110394
|
+
/** Position (room) ID for an Aqara device. */
|
|
110395
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
110396
|
+
/** Firmware version for an Aqara device. */
|
|
110397
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
110398
|
+
} | undefined;
|
|
109951
110399
|
}) & ({
|
|
109952
110400
|
/** */
|
|
109953
110401
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -110921,6 +111369,22 @@ export type Routes = {
|
|
|
110921
111369
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
110922
111370
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
110923
111371
|
} | undefined;
|
|
111372
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
111373
|
+
akiles_metadata?: {
|
|
111374
|
+
/** ID of the Akiles gadget. */
|
|
111375
|
+
gadget_id?: (string | undefined) | undefined;
|
|
111376
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
111377
|
+
site_id?: (string | undefined) | undefined;
|
|
111378
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
111379
|
+
site_name?: (string | undefined) | undefined;
|
|
111380
|
+
/** Actions the gadget exposes (for example, open). */
|
|
111381
|
+
actions?: ({
|
|
111382
|
+
/** ID of the gadget action. */
|
|
111383
|
+
id?: (string | undefined) | undefined;
|
|
111384
|
+
/** Name of the gadget action. */
|
|
111385
|
+
name?: (string | undefined) | undefined;
|
|
111386
|
+
}[] | undefined) | undefined;
|
|
111387
|
+
} | undefined;
|
|
110924
111388
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
110925
111389
|
is_locked?: boolean | undefined;
|
|
110926
111390
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -110958,7 +111422,7 @@ export type Routes = {
|
|
|
110958
111422
|
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
110959
111423
|
acs_access_group_count?: number | undefined;
|
|
110960
111424
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
110961
|
-
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
111425
|
+
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
110962
111426
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
110963
111427
|
external_type_display_name?: string | undefined;
|
|
110964
111428
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -110974,7 +111438,7 @@ export type Routes = {
|
|
|
110974
111438
|
} | undefined;
|
|
110975
111439
|
/**
|
|
110976
111440
|
* @deprecated Use `external_type`.*/
|
|
110977
|
-
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
111441
|
+
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
110978
111442
|
/**
|
|
110979
111443
|
* @deprecated Use `external_type_display_name`.*/
|
|
110980
111444
|
system_type_display_name?: string | undefined;
|
|
@@ -112012,7 +112476,7 @@ export type Routes = {
|
|
|
112012
112476
|
/** ID of the device. */
|
|
112013
112477
|
device_id: string;
|
|
112014
112478
|
/** Type of the device. */
|
|
112015
|
-
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';
|
|
112479
|
+
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';
|
|
112016
112480
|
/** IDs of the spaces the device is in. */
|
|
112017
112481
|
space_ids: string[];
|
|
112018
112482
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -112674,6 +113138,25 @@ export type Routes = {
|
|
|
112674
113138
|
/** Description for a Kisi device. */
|
|
112675
113139
|
description?: ((string | null) | undefined) | undefined;
|
|
112676
113140
|
} | undefined;
|
|
113141
|
+
/** Metadata for an Aqara device. */
|
|
113142
|
+
aqara_metadata?: {
|
|
113143
|
+
/** Device ID (did) for an Aqara device. */
|
|
113144
|
+
did?: (string | undefined) | undefined;
|
|
113145
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
113146
|
+
parent_did?: (string | undefined) | undefined;
|
|
113147
|
+
/** Device name for an Aqara device. */
|
|
113148
|
+
device_name?: (string | undefined) | undefined;
|
|
113149
|
+
/** Model identifier for an Aqara device. */
|
|
113150
|
+
model?: (string | undefined) | undefined;
|
|
113151
|
+
/** Model type for an Aqara device. */
|
|
113152
|
+
model_type?: (number | undefined) | undefined;
|
|
113153
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
113154
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
113155
|
+
/** Position (room) ID for an Aqara device. */
|
|
113156
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
113157
|
+
/** Firmware version for an Aqara device. */
|
|
113158
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
113159
|
+
} | undefined;
|
|
112677
113160
|
}) & ({
|
|
112678
113161
|
/** */
|
|
112679
113162
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -113633,6 +114116,22 @@ export type Routes = {
|
|
|
113633
114116
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
113634
114117
|
entry_relays_total_count?: (number | undefined) | undefined;
|
|
113635
114118
|
} | undefined;
|
|
114119
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
114120
|
+
akiles_metadata?: {
|
|
114121
|
+
/** ID of the Akiles gadget. */
|
|
114122
|
+
gadget_id?: (string | undefined) | undefined;
|
|
114123
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
114124
|
+
site_id?: (string | undefined) | undefined;
|
|
114125
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
114126
|
+
site_name?: (string | undefined) | undefined;
|
|
114127
|
+
/** Actions the gadget exposes (for example, open). */
|
|
114128
|
+
actions?: ({
|
|
114129
|
+
/** ID of the gadget action. */
|
|
114130
|
+
id?: (string | undefined) | undefined;
|
|
114131
|
+
/** Name of the gadget action. */
|
|
114132
|
+
name?: (string | undefined) | undefined;
|
|
114133
|
+
}[] | undefined) | undefined;
|
|
114134
|
+
} | undefined;
|
|
113636
114135
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
113637
114136
|
is_locked?: boolean | undefined;
|
|
113638
114137
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -113656,7 +114155,7 @@ export type Routes = {
|
|
|
113656
114155
|
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
113657
114156
|
acs_access_group_count?: number | undefined;
|
|
113658
114157
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
113659
|
-
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
114158
|
+
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
113660
114159
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
113661
114160
|
external_type_display_name?: string | undefined;
|
|
113662
114161
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
@@ -113672,7 +114171,7 @@ export type Routes = {
|
|
|
113672
114171
|
} | undefined;
|
|
113673
114172
|
/**
|
|
113674
114173
|
* @deprecated Use `external_type`.*/
|
|
113675
|
-
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization') | undefined;
|
|
114174
|
+
system_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site' | 'kisi_organization' | 'akiles_organization') | undefined;
|
|
113676
114175
|
/**
|
|
113677
114176
|
* @deprecated Use `external_type_display_name`.*/
|
|
113678
114177
|
system_type_display_name?: string | undefined;
|
|
@@ -116384,7 +116883,7 @@ export type Routes = {
|
|
|
116384
116883
|
/** ID of the device. */
|
|
116385
116884
|
device_id: string;
|
|
116386
116885
|
/** Type of the device. */
|
|
116387
|
-
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';
|
|
116886
|
+
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';
|
|
116388
116887
|
/** Unique identifier for the account associated with the device. */
|
|
116389
116888
|
connected_account_id: string;
|
|
116390
116889
|
/** Location information for the device. */
|