@seamapi/types 1.933.0 → 1.935.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.
Files changed (29) hide show
  1. package/dist/connect.cjs +93 -21
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +345 -43
  4. package/dist/index.cjs +93 -21
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/devices/device-metadata.d.ts +33 -0
  7. package/lib/seam/connect/models/devices/device-metadata.js +18 -0
  8. package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
  9. package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
  10. package/lib/seam/connect/models/devices/device-provider.js +2 -1
  11. package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
  12. package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
  13. package/lib/seam/connect/models/devices/device-type.js +1 -0
  14. package/lib/seam/connect/models/devices/device-type.js.map +1 -1
  15. package/lib/seam/connect/models/devices/device.d.ts +50 -3
  16. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +36 -3
  17. package/lib/seam/connect/models/events/access-codes.d.ts +12 -12
  18. package/lib/seam/connect/models/events/seam-event.d.ts +6 -6
  19. package/lib/seam/connect/openapi.js +63 -0
  20. package/lib/seam/connect/openapi.js.map +1 -1
  21. package/lib/seam/connect/route-types.d.ts +252 -31
  22. package/lib/seam/devicedb/models/device-model.d.ts +4 -4
  23. package/lib/seam/devicedb/route-specs.d.ts +8 -8
  24. package/package.json +1 -1
  25. package/src/lib/seam/connect/models/devices/device-metadata.ts +19 -0
  26. package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
  27. package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
  28. package/src/lib/seam/connect/openapi.ts +64 -0
  29. package/src/lib/seam/connect/route-types.ts +289 -0
@@ -11871,7 +11871,7 @@ export type Routes = {
11871
11871
  /** ID of the device. */
11872
11872
  device_id: string;
11873
11873
  /** Type of the device. */
11874
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
11874
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
11875
11875
  /** IDs of the spaces the device is in. */
11876
11876
  space_ids: string[];
11877
11877
  /** Optional nickname to describe the device, settable through Seam. */
@@ -12411,6 +12411,8 @@ export type Routes = {
12411
12411
  lock_id: number;
12412
12412
  /** Lock name for an Omnitec device. */
12413
12413
  lock_name: string;
12414
+ /** Operator-assigned alias for an Omnitec device. */
12415
+ lock_alias?: string | undefined;
12414
12416
  /** Bluetooth MAC address for an Omnitec device. */
12415
12417
  lock_mac: string;
12416
12418
  /** Whether the Omnitec lock has a connected gateway for remote operations. */
@@ -12518,6 +12520,17 @@ export type Routes = {
12518
12520
  /** Location ID for a Korelock device. Required for timebound access codes. */
12519
12521
  location_id?: (string | null) | undefined;
12520
12522
  } | undefined;
12523
+ /** Metadata for a Kisi device. */
12524
+ kisi_metadata?: {
12525
+ /** Lock ID for a Kisi device. */
12526
+ lock_id: number;
12527
+ /** Lock name for a Kisi device. */
12528
+ lock_name: string;
12529
+ /** Place name for a Kisi device. */
12530
+ place_name: string | null;
12531
+ /** Description for a Kisi device. */
12532
+ description: string | null;
12533
+ } | undefined;
12521
12534
  }) & ({
12522
12535
  /** */
12523
12536
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -18571,7 +18584,7 @@ export type Routes = {
18571
18584
  /** ID of the device. */
18572
18585
  device_id: string;
18573
18586
  /** Type of the device. */
18574
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
18587
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
18575
18588
  /** IDs of the spaces the device is in. */
18576
18589
  space_ids: string[];
18577
18590
  /** Optional nickname to describe the device, settable through Seam. */
@@ -19111,6 +19124,8 @@ export type Routes = {
19111
19124
  lock_id: number;
19112
19125
  /** Lock name for an Omnitec device. */
19113
19126
  lock_name: string;
19127
+ /** Operator-assigned alias for an Omnitec device. */
19128
+ lock_alias?: string | undefined;
19114
19129
  /** Bluetooth MAC address for an Omnitec device. */
19115
19130
  lock_mac: string;
19116
19131
  /** Whether the Omnitec lock has a connected gateway for remote operations. */
@@ -19218,6 +19233,17 @@ export type Routes = {
19218
19233
  /** Location ID for a Korelock device. Required for timebound access codes. */
19219
19234
  location_id?: (string | null) | undefined;
19220
19235
  } | undefined;
19236
+ /** Metadata for a Kisi device. */
19237
+ kisi_metadata?: {
19238
+ /** Lock ID for a Kisi device. */
19239
+ lock_id: number;
19240
+ /** Lock name for a Kisi device. */
19241
+ lock_name: string;
19242
+ /** Place name for a Kisi device. */
19243
+ place_name: string | null;
19244
+ /** Description for a Kisi device. */
19245
+ description: string | null;
19246
+ } | undefined;
19221
19247
  }) & ({
19222
19248
  /** */
19223
19249
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -39222,7 +39248,7 @@ export type Routes = {
39222
39248
  /** Associate the Connect Webview, the connected account, and all resources under the connected account with a customer. If the connected account already exists, it will be associated with the customer. If the connected account already exists, but is already associated with a customer, the Connect Webview will show an error. */
39223
39249
  customer_key?: string | undefined;
39224
39250
  /** Accepted device provider keys as an alternative to `provider_category`. Use this parameter to specify accepted providers explicitly. See [Customize the Brands to Display in Your Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). To list all provider keys, use [`/devices/list_device_providers`](https://docs.seam.co/api/devices/list_device_providers) with no filters. */
39225
- accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'yale_access' | 'hid_cm' | 'google_nest' | 'slack')[] | undefined;
39251
+ accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'yale_access' | 'hid_cm' | 'google_nest' | 'slack')[] | undefined;
39226
39252
  /** Specifies the category of providers that you want to include. To list all providers within a category, use [`/devices/list_device_providers`](https://docs.seam.co/api/devices/list_device_providers) with the desired `provider_category` filter. */
39227
39253
  provider_category?: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors' | 'internal_beta') | undefined;
39228
39254
  /** Custom metadata that you want to associate with the Connect Webview. Supports up to 50 JSON key:value pairs. [Adding custom metadata to a Connect Webview](https://docs.seam.co/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview) enables you to store custom information, like customer details or internal IDs from your application. The custom metadata is then transferred to any [connected accounts](https://docs.seam.co/core-concepts/connected-accounts) that were connected using the Connect Webview, making it easy to find and filter these resources in your [workspace](https://docs.seam.co/core-concepts/workspaces). You can also [filter Connect Webviews by custom metadata](https://docs.seam.co/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). */
@@ -41043,7 +41069,7 @@ export type Routes = {
41043
41069
  /** ID of the device. */
41044
41070
  device_id: string;
41045
41071
  /** Type of the device. */
41046
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
41072
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
41047
41073
  /** IDs of the spaces the device is in. */
41048
41074
  space_ids: string[];
41049
41075
  /** Optional nickname to describe the device, settable through Seam. */
@@ -41583,6 +41609,8 @@ export type Routes = {
41583
41609
  lock_id: number;
41584
41610
  /** Lock name for an Omnitec device. */
41585
41611
  lock_name: string;
41612
+ /** Operator-assigned alias for an Omnitec device. */
41613
+ lock_alias?: string | undefined;
41586
41614
  /** Bluetooth MAC address for an Omnitec device. */
41587
41615
  lock_mac: string;
41588
41616
  /** Whether the Omnitec lock has a connected gateway for remote operations. */
@@ -41690,6 +41718,17 @@ export type Routes = {
41690
41718
  /** Location ID for a Korelock device. Required for timebound access codes. */
41691
41719
  location_id?: (string | null) | undefined;
41692
41720
  } | undefined;
41721
+ /** Metadata for a Kisi device. */
41722
+ kisi_metadata?: {
41723
+ /** Lock ID for a Kisi device. */
41724
+ lock_id: number;
41725
+ /** Lock name for a Kisi device. */
41726
+ lock_name: string;
41727
+ /** Place name for a Kisi device. */
41728
+ place_name: string | null;
41729
+ /** Description for a Kisi device. */
41730
+ description: string | null;
41731
+ } | undefined;
41693
41732
  }) & ({
41694
41733
  /** */
41695
41734
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -42500,11 +42539,11 @@ export type Routes = {
42500
42539
  /** ID of the Connect Webview for which you want to list devices. */
42501
42540
  connect_webview_id?: string | undefined;
42502
42541
  /** Device type for which you want to list devices. */
42503
- device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera') | undefined;
42542
+ device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera') | undefined;
42504
42543
  /** Array of device types for which you want to list devices. */
42505
- device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera')[] | undefined;
42544
+ device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera')[] | undefined;
42506
42545
  /** Manufacturer for which you want to list devices. */
42507
- manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'slack') | undefined;
42546
+ manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'kisi' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'slack') | undefined;
42508
42547
  /** Array of device IDs for which you want to list devices. */
42509
42548
  device_ids?: string[] | undefined;
42510
42549
  /** Numerical limit on the number of devices to return. */
@@ -42537,7 +42576,7 @@ export type Routes = {
42537
42576
  /** ID of the device. */
42538
42577
  device_id: string;
42539
42578
  /** Type of the device. */
42540
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
42579
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
42541
42580
  /** IDs of the spaces the device is in. */
42542
42581
  space_ids: string[];
42543
42582
  /** Optional nickname to describe the device, settable through Seam. */
@@ -43077,6 +43116,8 @@ export type Routes = {
43077
43116
  lock_id: number;
43078
43117
  /** Lock name for an Omnitec device. */
43079
43118
  lock_name: string;
43119
+ /** Operator-assigned alias for an Omnitec device. */
43120
+ lock_alias?: string | undefined;
43080
43121
  /** Bluetooth MAC address for an Omnitec device. */
43081
43122
  lock_mac: string;
43082
43123
  /** Whether the Omnitec lock has a connected gateway for remote operations. */
@@ -43184,6 +43225,17 @@ export type Routes = {
43184
43225
  /** Location ID for a Korelock device. Required for timebound access codes. */
43185
43226
  location_id?: (string | null) | undefined;
43186
43227
  } | undefined;
43228
+ /** Metadata for a Kisi device. */
43229
+ kisi_metadata?: {
43230
+ /** Lock ID for a Kisi device. */
43231
+ lock_id: number;
43232
+ /** Lock name for a Kisi device. */
43233
+ lock_name: string;
43234
+ /** Place name for a Kisi device. */
43235
+ place_name: string | null;
43236
+ /** Description for a Kisi device. */
43237
+ description: string | null;
43238
+ } | undefined;
43187
43239
  }) & ({
43188
43240
  /** */
43189
43241
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -44001,7 +44053,7 @@ export type Routes = {
44001
44053
  jsonResponse: {
44002
44054
  device_providers: {
44003
44055
  /** Name of the device provider. */
44004
- device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec';
44056
+ device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi';
44005
44057
  /** Display name for the device provider. */
44006
44058
  display_name: string;
44007
44059
  /** Image URL for the device provider. */
@@ -44179,7 +44231,7 @@ export type Routes = {
44179
44231
  /** ID of the device. */
44180
44232
  device_id: string;
44181
44233
  /** Type of the device. */
44182
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
44234
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
44183
44235
  /** Unique identifier for the account associated with the device. */
44184
44236
  connected_account_id: string;
44185
44237
  /** Location information for the device. */
@@ -44679,11 +44731,11 @@ export type Routes = {
44679
44731
  /** ID of the Connect Webview for which you want to list devices. */
44680
44732
  connect_webview_id?: string | undefined;
44681
44733
  /** Device type for which you want to list devices. */
44682
- device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera') | undefined;
44734
+ device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera') | undefined;
44683
44735
  /** Array of device types for which you want to list devices. */
44684
- device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera')[] | undefined;
44736
+ device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera')[] | undefined;
44685
44737
  /** Manufacturer for which you want to list devices. */
44686
- manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'slack') | undefined;
44738
+ manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'kisi' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'slack') | undefined;
44687
44739
  /** Array of device IDs for which you want to list devices. */
44688
44740
  device_ids?: string[] | undefined;
44689
44741
  /** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
@@ -44716,7 +44768,7 @@ export type Routes = {
44716
44768
  /** ID of the device. */
44717
44769
  device_id: string;
44718
44770
  /** Type of the device. */
44719
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
44771
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
44720
44772
  /** Unique identifier for the account associated with the device. */
44721
44773
  connected_account_id: string;
44722
44774
  /** Location information for the device. */
@@ -53098,7 +53150,7 @@ export type Routes = {
53098
53150
  /** ID of the device. */
53099
53151
  device_id: string;
53100
53152
  /** Type of the device. */
53101
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
53153
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
53102
53154
  /** IDs of the spaces the device is in. */
53103
53155
  space_ids: string[];
53104
53156
  /** Optional nickname to describe the device, settable through Seam. */
@@ -53638,6 +53690,8 @@ export type Routes = {
53638
53690
  lock_id: number;
53639
53691
  /** Lock name for an Omnitec device. */
53640
53692
  lock_name: string;
53693
+ /** Operator-assigned alias for an Omnitec device. */
53694
+ lock_alias?: string | undefined;
53641
53695
  /** Bluetooth MAC address for an Omnitec device. */
53642
53696
  lock_mac: string;
53643
53697
  /** Whether the Omnitec lock has a connected gateway for remote operations. */
@@ -53745,6 +53799,17 @@ export type Routes = {
53745
53799
  /** Location ID for a Korelock device. Required for timebound access codes. */
53746
53800
  location_id?: (string | null) | undefined;
53747
53801
  } | undefined;
53802
+ /** Metadata for a Kisi device. */
53803
+ kisi_metadata?: {
53804
+ /** Lock ID for a Kisi device. */
53805
+ lock_id: number;
53806
+ /** Lock name for a Kisi device. */
53807
+ lock_name: string;
53808
+ /** Place name for a Kisi device. */
53809
+ place_name: string | null;
53810
+ /** Description for a Kisi device. */
53811
+ description: string | null;
53812
+ } | undefined;
53748
53813
  }) & ({
53749
53814
  /** */
53750
53815
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -54542,7 +54607,7 @@ export type Routes = {
54542
54607
  /** ID of the device. */
54543
54608
  device_id: string;
54544
54609
  /** Type of the device. */
54545
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
54610
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
54546
54611
  /** IDs of the spaces the device is in. */
54547
54612
  space_ids: string[];
54548
54613
  /** Optional nickname to describe the device, settable through Seam. */
@@ -55082,6 +55147,8 @@ export type Routes = {
55082
55147
  lock_id: number;
55083
55148
  /** Lock name for an Omnitec device. */
55084
55149
  lock_name: string;
55150
+ /** Operator-assigned alias for an Omnitec device. */
55151
+ lock_alias?: string | undefined;
55085
55152
  /** Bluetooth MAC address for an Omnitec device. */
55086
55153
  lock_mac: string;
55087
55154
  /** Whether the Omnitec lock has a connected gateway for remote operations. */
@@ -55189,6 +55256,17 @@ export type Routes = {
55189
55256
  /** Location ID for a Korelock device. Required for timebound access codes. */
55190
55257
  location_id?: (string | null) | undefined;
55191
55258
  } | undefined;
55259
+ /** Metadata for a Kisi device. */
55260
+ kisi_metadata?: {
55261
+ /** Lock ID for a Kisi device. */
55262
+ lock_id: number;
55263
+ /** Lock name for a Kisi device. */
55264
+ lock_name: string;
55265
+ /** Place name for a Kisi device. */
55266
+ place_name: string | null;
55267
+ /** Description for a Kisi device. */
55268
+ description: string | null;
55269
+ } | undefined;
55192
55270
  }) & ({
55193
55271
  /** */
55194
55272
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -55999,11 +56077,11 @@ export type Routes = {
55999
56077
  /** ID of the Connect Webview for which you want to list devices. */
56000
56078
  connect_webview_id?: string | undefined;
56001
56079
  /** Device type of the locks that you want to list. */
56002
- device_type?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | undefined;
56080
+ device_type?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | undefined;
56003
56081
  /** Device types of the locks that you want to list. */
56004
- device_types?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock')[] | undefined;
56082
+ device_types?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock')[] | undefined;
56005
56083
  /** Manufacturer of the locks that you want to list. */
56006
- manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'korelock' | 'smartthings' | 'ultraloq' | 'omnitec') | undefined;
56084
+ manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'kisi' | 'akiles' | 'korelock' | 'smartthings' | 'ultraloq' | 'omnitec' | 'kisi') | undefined;
56007
56085
  /** Array of device IDs for which you want to list devices. */
56008
56086
  device_ids?: string[] | undefined;
56009
56087
  /** Numerical limit on the number of devices to return. */
@@ -56036,7 +56114,7 @@ export type Routes = {
56036
56114
  /** ID of the device. */
56037
56115
  device_id: string;
56038
56116
  /** Type of the device. */
56039
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
56117
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
56040
56118
  /** IDs of the spaces the device is in. */
56041
56119
  space_ids: string[];
56042
56120
  /** Optional nickname to describe the device, settable through Seam. */
@@ -56576,6 +56654,8 @@ export type Routes = {
56576
56654
  lock_id: number;
56577
56655
  /** Lock name for an Omnitec device. */
56578
56656
  lock_name: string;
56657
+ /** Operator-assigned alias for an Omnitec device. */
56658
+ lock_alias?: string | undefined;
56579
56659
  /** Bluetooth MAC address for an Omnitec device. */
56580
56660
  lock_mac: string;
56581
56661
  /** Whether the Omnitec lock has a connected gateway for remote operations. */
@@ -56683,6 +56763,17 @@ export type Routes = {
56683
56763
  /** Location ID for a Korelock device. Required for timebound access codes. */
56684
56764
  location_id?: (string | null) | undefined;
56685
56765
  } | undefined;
56766
+ /** Metadata for a Kisi device. */
56767
+ kisi_metadata?: {
56768
+ /** Lock ID for a Kisi device. */
56769
+ lock_id: number;
56770
+ /** Lock name for a Kisi device. */
56771
+ lock_name: string;
56772
+ /** Place name for a Kisi device. */
56773
+ place_name: string | null;
56774
+ /** Description for a Kisi device. */
56775
+ description: string | null;
56776
+ } | undefined;
56686
56777
  }) & ({
56687
56778
  /** */
56688
56779
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -57479,7 +57570,7 @@ export type Routes = {
57479
57570
  /** ID of the device. */
57480
57571
  device_id: string;
57481
57572
  /** Type of the device. */
57482
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
57573
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
57483
57574
  /** IDs of the spaces the device is in. */
57484
57575
  space_ids: string[];
57485
57576
  /** Optional nickname to describe the device, settable through Seam. */
@@ -58019,6 +58110,8 @@ export type Routes = {
58019
58110
  lock_id: number;
58020
58111
  /** Lock name for an Omnitec device. */
58021
58112
  lock_name: string;
58113
+ /** Operator-assigned alias for an Omnitec device. */
58114
+ lock_alias?: string | undefined;
58022
58115
  /** Bluetooth MAC address for an Omnitec device. */
58023
58116
  lock_mac: string;
58024
58117
  /** Whether the Omnitec lock has a connected gateway for remote operations. */
@@ -58126,6 +58219,17 @@ export type Routes = {
58126
58219
  /** Location ID for a Korelock device. Required for timebound access codes. */
58127
58220
  location_id?: (string | null) | undefined;
58128
58221
  } | undefined;
58222
+ /** Metadata for a Kisi device. */
58223
+ kisi_metadata?: {
58224
+ /** Lock ID for a Kisi device. */
58225
+ lock_id: number;
58226
+ /** Lock name for a Kisi device. */
58227
+ lock_name: string;
58228
+ /** Place name for a Kisi device. */
58229
+ place_name: string | null;
58230
+ /** Description for a Kisi device. */
58231
+ description: string | null;
58232
+ } | undefined;
58129
58233
  }) & ({
58130
58234
  /** */
58131
58235
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -65699,7 +65803,7 @@ export type Routes = {
65699
65803
  /** ID of the device. */
65700
65804
  device_id: string;
65701
65805
  /** Type of the device. */
65702
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
65806
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
65703
65807
  /** IDs of the spaces the device is in. */
65704
65808
  space_ids: string[];
65705
65809
  /** Optional nickname to describe the device, settable through Seam. */
@@ -66239,6 +66343,8 @@ export type Routes = {
66239
66343
  lock_id: number;
66240
66344
  /** Lock name for an Omnitec device. */
66241
66345
  lock_name: string;
66346
+ /** Operator-assigned alias for an Omnitec device. */
66347
+ lock_alias?: string | undefined;
66242
66348
  /** Bluetooth MAC address for an Omnitec device. */
66243
66349
  lock_mac: string;
66244
66350
  /** Whether the Omnitec lock has a connected gateway for remote operations. */
@@ -66346,6 +66452,17 @@ export type Routes = {
66346
66452
  /** Location ID for a Korelock device. Required for timebound access codes. */
66347
66453
  location_id?: (string | null) | undefined;
66348
66454
  } | undefined;
66455
+ /** Metadata for a Kisi device. */
66456
+ kisi_metadata?: {
66457
+ /** Lock ID for a Kisi device. */
66458
+ lock_id: number;
66459
+ /** Lock name for a Kisi device. */
66460
+ lock_name: string;
66461
+ /** Place name for a Kisi device. */
66462
+ place_name: string | null;
66463
+ /** Description for a Kisi device. */
66464
+ description: string | null;
66465
+ } | undefined;
66349
66466
  }) & ({
66350
66467
  /** */
66351
66468
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -67142,7 +67259,7 @@ export type Routes = {
67142
67259
  /** ID of the device. */
67143
67260
  device_id: string;
67144
67261
  /** Type of the device. */
67145
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
67262
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
67146
67263
  /** IDs of the spaces the device is in. */
67147
67264
  space_ids: string[];
67148
67265
  /** Optional nickname to describe the device, settable through Seam. */
@@ -67682,6 +67799,8 @@ export type Routes = {
67682
67799
  lock_id: number;
67683
67800
  /** Lock name for an Omnitec device. */
67684
67801
  lock_name: string;
67802
+ /** Operator-assigned alias for an Omnitec device. */
67803
+ lock_alias?: string | undefined;
67685
67804
  /** Bluetooth MAC address for an Omnitec device. */
67686
67805
  lock_mac: string;
67687
67806
  /** Whether the Omnitec lock has a connected gateway for remote operations. */
@@ -67789,6 +67908,17 @@ export type Routes = {
67789
67908
  /** Location ID for a Korelock device. Required for timebound access codes. */
67790
67909
  location_id?: (string | null) | undefined;
67791
67910
  } | undefined;
67911
+ /** Metadata for a Kisi device. */
67912
+ kisi_metadata?: {
67913
+ /** Lock ID for a Kisi device. */
67914
+ lock_id: number;
67915
+ /** Lock name for a Kisi device. */
67916
+ lock_name: string;
67917
+ /** Place name for a Kisi device. */
67918
+ place_name: string | null;
67919
+ /** Description for a Kisi device. */
67920
+ description: string | null;
67921
+ } | undefined;
67792
67922
  }) & ({
67793
67923
  /** */
67794
67924
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -82654,7 +82784,7 @@ export type Routes = {
82654
82784
  /** ID of the device. */
82655
82785
  device_id: string;
82656
82786
  /** Type of the device. */
82657
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
82787
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
82658
82788
  /** IDs of the spaces the device is in. */
82659
82789
  space_ids: string[];
82660
82790
  /** Optional nickname to describe the device, settable through Seam. */
@@ -83194,6 +83324,8 @@ export type Routes = {
83194
83324
  lock_id: number;
83195
83325
  /** Lock name for an Omnitec device. */
83196
83326
  lock_name: string;
83327
+ /** Operator-assigned alias for an Omnitec device. */
83328
+ lock_alias?: string | undefined;
83197
83329
  /** Bluetooth MAC address for an Omnitec device. */
83198
83330
  lock_mac: string;
83199
83331
  /** Whether the Omnitec lock has a connected gateway for remote operations. */
@@ -83301,6 +83433,17 @@ export type Routes = {
83301
83433
  /** Location ID for a Korelock device. Required for timebound access codes. */
83302
83434
  location_id?: (string | null) | undefined;
83303
83435
  } | undefined;
83436
+ /** Metadata for a Kisi device. */
83437
+ kisi_metadata?: {
83438
+ /** Lock ID for a Kisi device. */
83439
+ lock_id: number;
83440
+ /** Lock name for a Kisi device. */
83441
+ lock_name: string;
83442
+ /** Place name for a Kisi device. */
83443
+ place_name: string | null;
83444
+ /** Description for a Kisi device. */
83445
+ description: string | null;
83446
+ } | undefined;
83304
83447
  }) & ({
83305
83448
  /** */
83306
83449
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -90105,7 +90248,7 @@ export type Routes = {
90105
90248
  /** ID of the device. */
90106
90249
  device_id: string;
90107
90250
  /** Type of the device. */
90108
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
90251
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
90109
90252
  /** IDs of the spaces the device is in. */
90110
90253
  space_ids: string[];
90111
90254
  /** Optional nickname to describe the device, settable through Seam. */
@@ -90645,6 +90788,8 @@ export type Routes = {
90645
90788
  lock_id: number;
90646
90789
  /** Lock name for an Omnitec device. */
90647
90790
  lock_name: string;
90791
+ /** Operator-assigned alias for an Omnitec device. */
90792
+ lock_alias?: string | undefined;
90648
90793
  /** Bluetooth MAC address for an Omnitec device. */
90649
90794
  lock_mac: string;
90650
90795
  /** Whether the Omnitec lock has a connected gateway for remote operations. */
@@ -90752,6 +90897,17 @@ export type Routes = {
90752
90897
  /** Location ID for a Korelock device. Required for timebound access codes. */
90753
90898
  location_id?: (string | null) | undefined;
90754
90899
  } | undefined;
90900
+ /** Metadata for a Kisi device. */
90901
+ kisi_metadata?: {
90902
+ /** Lock ID for a Kisi device. */
90903
+ lock_id: number;
90904
+ /** Lock name for a Kisi device. */
90905
+ lock_name: string;
90906
+ /** Place name for a Kisi device. */
90907
+ place_name: string | null;
90908
+ /** Description for a Kisi device. */
90909
+ description: string | null;
90910
+ } | undefined;
90755
90911
  }) & ({
90756
90912
  /** */
90757
90913
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -94975,7 +95131,7 @@ export type Routes = {
94975
95131
  /** ID of the device. */
94976
95132
  device_id: string;
94977
95133
  /** Type of the device. */
94978
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
95134
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
94979
95135
  /** IDs of the spaces the device is in. */
94980
95136
  space_ids: string[];
94981
95137
  /** Optional nickname to describe the device, settable through Seam. */
@@ -95515,6 +95671,8 @@ export type Routes = {
95515
95671
  lock_id: number;
95516
95672
  /** Lock name for an Omnitec device. */
95517
95673
  lock_name: string;
95674
+ /** Operator-assigned alias for an Omnitec device. */
95675
+ lock_alias?: string | undefined;
95518
95676
  /** Bluetooth MAC address for an Omnitec device. */
95519
95677
  lock_mac: string;
95520
95678
  /** Whether the Omnitec lock has a connected gateway for remote operations. */
@@ -95622,6 +95780,17 @@ export type Routes = {
95622
95780
  /** Location ID for a Korelock device. Required for timebound access codes. */
95623
95781
  location_id?: (string | null) | undefined;
95624
95782
  } | undefined;
95783
+ /** Metadata for a Kisi device. */
95784
+ kisi_metadata?: {
95785
+ /** Lock ID for a Kisi device. */
95786
+ lock_id: number;
95787
+ /** Lock name for a Kisi device. */
95788
+ lock_name: string;
95789
+ /** Place name for a Kisi device. */
95790
+ place_name: string | null;
95791
+ /** Description for a Kisi device. */
95792
+ description: string | null;
95793
+ } | undefined;
95625
95794
  }) & ({
95626
95795
  /** */
95627
95796
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -96418,7 +96587,7 @@ export type Routes = {
96418
96587
  /** ID of the device. */
96419
96588
  device_id: string;
96420
96589
  /** Type of the device. */
96421
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
96590
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
96422
96591
  /** IDs of the spaces the device is in. */
96423
96592
  space_ids: string[];
96424
96593
  /** Optional nickname to describe the device, settable through Seam. */
@@ -96958,6 +97127,8 @@ export type Routes = {
96958
97127
  lock_id: number;
96959
97128
  /** Lock name for an Omnitec device. */
96960
97129
  lock_name: string;
97130
+ /** Operator-assigned alias for an Omnitec device. */
97131
+ lock_alias?: string | undefined;
96961
97132
  /** Bluetooth MAC address for an Omnitec device. */
96962
97133
  lock_mac: string;
96963
97134
  /** Whether the Omnitec lock has a connected gateway for remote operations. */
@@ -97065,6 +97236,17 @@ export type Routes = {
97065
97236
  /** Location ID for a Korelock device. Required for timebound access codes. */
97066
97237
  location_id?: (string | null) | undefined;
97067
97238
  } | undefined;
97239
+ /** Metadata for a Kisi device. */
97240
+ kisi_metadata?: {
97241
+ /** Lock ID for a Kisi device. */
97242
+ lock_id: number;
97243
+ /** Lock name for a Kisi device. */
97244
+ lock_name: string;
97245
+ /** Place name for a Kisi device. */
97246
+ place_name: string | null;
97247
+ /** Description for a Kisi device. */
97248
+ description: string | null;
97249
+ } | undefined;
97068
97250
  }) & ({
97069
97251
  /** */
97070
97252
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -105577,7 +105759,7 @@ export type Routes = {
105577
105759
  /** ID of the device. */
105578
105760
  device_id: string;
105579
105761
  /** Type of the device. */
105580
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
105762
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
105581
105763
  /** IDs of the spaces the device is in. */
105582
105764
  space_ids: string[];
105583
105765
  /** Optional nickname to describe the device, settable through Seam. */
@@ -106117,6 +106299,8 @@ export type Routes = {
106117
106299
  lock_id: number;
106118
106300
  /** Lock name for an Omnitec device. */
106119
106301
  lock_name: string;
106302
+ /** Operator-assigned alias for an Omnitec device. */
106303
+ lock_alias?: string | undefined;
106120
106304
  /** Bluetooth MAC address for an Omnitec device. */
106121
106305
  lock_mac: string;
106122
106306
  /** Whether the Omnitec lock has a connected gateway for remote operations. */
@@ -106224,6 +106408,17 @@ export type Routes = {
106224
106408
  /** Location ID for a Korelock device. Required for timebound access codes. */
106225
106409
  location_id?: (string | null) | undefined;
106226
106410
  } | undefined;
106411
+ /** Metadata for a Kisi device. */
106412
+ kisi_metadata?: {
106413
+ /** Lock ID for a Kisi device. */
106414
+ lock_id: number;
106415
+ /** Lock name for a Kisi device. */
106416
+ lock_name: string;
106417
+ /** Place name for a Kisi device. */
106418
+ place_name: string | null;
106419
+ /** Description for a Kisi device. */
106420
+ description: string | null;
106421
+ } | undefined;
106227
106422
  }) & ({
106228
106423
  /** */
106229
106424
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -107022,7 +107217,7 @@ export type Routes = {
107022
107217
  /** ID of the device. */
107023
107218
  device_id: string;
107024
107219
  /** Type of the device. */
107025
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
107220
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
107026
107221
  /** IDs of the spaces the device is in. */
107027
107222
  space_ids: string[];
107028
107223
  /** Optional nickname to describe the device, settable through Seam. */
@@ -107562,6 +107757,8 @@ export type Routes = {
107562
107757
  lock_id: number;
107563
107758
  /** Lock name for an Omnitec device. */
107564
107759
  lock_name: string;
107760
+ /** Operator-assigned alias for an Omnitec device. */
107761
+ lock_alias?: string | undefined;
107565
107762
  /** Bluetooth MAC address for an Omnitec device. */
107566
107763
  lock_mac: string;
107567
107764
  /** Whether the Omnitec lock has a connected gateway for remote operations. */
@@ -107669,6 +107866,17 @@ export type Routes = {
107669
107866
  /** Location ID for a Korelock device. Required for timebound access codes. */
107670
107867
  location_id?: (string | null) | undefined;
107671
107868
  } | undefined;
107869
+ /** Metadata for a Kisi device. */
107870
+ kisi_metadata?: {
107871
+ /** Lock ID for a Kisi device. */
107872
+ lock_id: number;
107873
+ /** Lock name for a Kisi device. */
107874
+ lock_name: string;
107875
+ /** Place name for a Kisi device. */
107876
+ place_name: string | null;
107877
+ /** Description for a Kisi device. */
107878
+ description: string | null;
107879
+ } | undefined;
107672
107880
  }) & ({
107673
107881
  /** */
107674
107882
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -109722,7 +109930,7 @@ export type Routes = {
109722
109930
  /** ID of the device. */
109723
109931
  device_id: string;
109724
109932
  /** Type of the device. */
109725
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
109933
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
109726
109934
  /** IDs of the spaces the device is in. */
109727
109935
  space_ids: string[];
109728
109936
  /** Optional nickname to describe the device, settable through Seam. */
@@ -110262,6 +110470,8 @@ export type Routes = {
110262
110470
  lock_id: number;
110263
110471
  /** Lock name for an Omnitec device. */
110264
110472
  lock_name: string;
110473
+ /** Operator-assigned alias for an Omnitec device. */
110474
+ lock_alias?: string | undefined;
110265
110475
  /** Bluetooth MAC address for an Omnitec device. */
110266
110476
  lock_mac: string;
110267
110477
  /** Whether the Omnitec lock has a connected gateway for remote operations. */
@@ -110369,6 +110579,17 @@ export type Routes = {
110369
110579
  /** Location ID for a Korelock device. Required for timebound access codes. */
110370
110580
  location_id?: (string | null) | undefined;
110371
110581
  } | undefined;
110582
+ /** Metadata for a Kisi device. */
110583
+ kisi_metadata?: {
110584
+ /** Lock ID for a Kisi device. */
110585
+ lock_id: number;
110586
+ /** Lock name for a Kisi device. */
110587
+ lock_name: string;
110588
+ /** Place name for a Kisi device. */
110589
+ place_name: string | null;
110590
+ /** Description for a Kisi device. */
110591
+ description: string | null;
110592
+ } | undefined;
110372
110593
  }) & ({
110373
110594
  /** */
110374
110595
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -114031,7 +114252,7 @@ export type Routes = {
114031
114252
  /** ID of the device. */
114032
114253
  device_id: string;
114033
114254
  /** Type of the device. */
114034
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
114255
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
114035
114256
  /** Unique identifier for the account associated with the device. */
114036
114257
  connected_account_id: string;
114037
114258
  /** Location information for the device. */